@import url('bulma.css');

*{
    font-family: 'Montserrat', sans-serif;
}

HTML{
    background-color: #232931;
}

.bg{
    position: fixed;
    bottom: -25px;
    left: -25px;
    opacity: .15;
    z-index: -30;
    transform: rotate(30deg);
    width: 200px;
}

body,
.title,
.subtitle{
    color: #FFFFFF;
}

.title:not(:last-child){
    margin-bottom: .5rem;
}

section{
    min-height: 95vh;
}

hr{
    background-color: #393e46;
}

.level-item.text{
    justify-content: flex-start;
}

.level-item .heading{
    margin-bottom: 0px;
}

.level-item .title{
    margin-bottom: 10px;
}

.stamp{
    width: 100px;
}

span.subtitle{
    margin-left: 10px;
}

.is-big{
    font-size: 1rem;
}

.desc .is-big{
    font-size: 1.5rem;
}

.up{
    margin-top: 10px !important;
}

.down{
    margin-bottom: 10px !important;
}

.no-up{
    margin-top: 0px !important;
}

.no-down{
    margin-bottom: 0px !important;
}

/* SMALL ONCLICK */

.stampclick{
    z-index: 10;
}

.stampclick:hover{
    opacity: .90;
}


.small{
    height: 25px;
    position: relative;
    visibility: hidden;
    pointer-events: none;
}

.smalls{
    position: relative;
    top: -35px;
    height: 0;
    pointer-events: none;
}

.animate {
    -webkit-animation: down .5s;
    -moz-animation: down .5s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
}
@-webkit-keyframes down {
    0%  {visibility: visible; top: 0px;}
    15% {opacity: 1;}
    90% {top: -100px; opacity: 0;}
    95% {visibility: hidden;}
    100%{top: 0px; opacity: 0;}
}
@-moz-keyframes down {
    0%  {visibility: visible; top: 0px;}
    15% {opacity: 1;}
    90% {top: -100px; opacity: 0;}
    95% {visibility: hidden;}
    100%{top: 0px; opacity: 0;}
}

/* TOOLTIPS */

.desc{
    z-index: 10;
    opacity: 0;
    position: fixed;
    bottom: 25px;
    left: -600px;
    max-width: 600px;
    text-align: justify;
    background-color: #FFF;
    color: #280C42;
    padding: 20px;
    border-radius: 3px;
    margin: 20px;
    -webkit-transition: all ease-in .5s;
    -moz-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s;
}

.element:hover .desc{
    opacity: 1;
    left: 0px;
}

/* SUCCÈS */

.success{
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.locked{
    opacity: .5;
}

.list-success .element{
    display: inline;
}

/* PROGRESS BAR*/

.progress{
    border-radius: 1.5px;
}

.progress.inn::-webkit-progress-value {
    -webkit-transition: all linear 1000ms;
    -moz-transition: all linear 1000ms;
    -o-transition: all linear 1000ms;
    transition: all linear 1000ms;
}

/* BOURSE */

button.charm{
    margin-bottom: 10px;
}

/* BOURSE */

.progress.stock{
    height: 7px;
}

.progress.stock::-webkit-progress-bar {
  background-color: #393e46;
}
.progress.stock::-moz-progress-bar {
  background-color: #393e46;
}
.progress.stock::-o-progress-bar {
  background-color: #393e46;
}

.progress.stock::-webkit-progress-value {
  background-color: #FFF;
}
.progress.stock::-moz-progress-value {
  background-color: #FFF;
}
.progress.stock::-o-progress-value {
  background-color: #FFF;
}

/* FOOTER */

footer{
    text-align: center;
    font-size: 0.7rem;
    margin-bottom: 20px;
}

footer a{
    color: #FFF;
    opacity: .5;
}
footer a:hover{
    color: #FFF;
    opacity: 1;
}

/* SAVE */

.savegame{
    z-index: 10;
    position: fixed;
    right: 10px;
    top: 10px;
}

.savegame a{
    color: #FFF;
    font-size: .9rem;
}

.savegame p{
    color: #FFF;
    font-size: .9rem;
}

.savegame a:hover{
    opacity: 1;
}

.alert{
    border-radius: 2.5px;
    margin-bottom: 10px;
    margin-left: 10px;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 1px;
    padding-top: 5px;
    background-color: hsl(348, 100%, 61%);
}