#container{
    position: relative;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    width: 768px;
    height: 578px;
    overflow: hidden;
}
header{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
}
.row{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.row-header1{
    background: #FFFFFF;
    background: linear-gradient(to left, #FFFFFF, #F1F1F1);
    background: -webkit-linear-gradient(to left, #FFFFFF, #F1F1F1);
    background: -o-linear-gradient(to left, #FFFFFF, #F1F1F1);
    height: 50px;
    align-content: center;
}
.logo-sura{
    display: flex;
    width: 73px;
    height: 100%;
    position: relative;
    margin-left: 20px;

    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/logo-sura.svg);
}
.titulo{
    position: relative;
    display: flex;
    height: 100%;
    justify-content: right;
    margin-right: 20px;
    align-items: center;
}
.titulo h1{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: 'Barlow-Medium';
    font-size: 14px;
    font-weight: normal;
    color: #0033A0;
    text-align: right;
    line-height: normal;
}
.titulo h1 > span{
    font-family: 'Barlow-SemiBold';
    font-size: 
}
.row-header2{
    background: #0033A0;
    height: 23px;
    align-content: center;
}
.logo-arl{
    display: flex;
    width: 25px;
    height: 100%;
    position: relative;
    margin-left: 20px;

    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/logo-arl.svg);
}
#oficio-title{
    position: relative;
    display: flex;
    height: 100%;
    justify-content: right;
    margin-right: 20px;
    align-items: center;
}
#oficio-title h2{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: 'Barlow-Medium';
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: right;
    line-height: normal;
}

#game{
    position: relative;
    display: block;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    height: calc(100% - 73px);
    height: -moz-calc(100% - 73px);
    box-sizing: border-box;
}
        
#home-scene{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.fondo{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: url(../images/fondo.jpg);
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}
#fondo-win{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
#fondo-win-img{
    position: absolute;
    width: 1280px;
    height: 1200px;
    left: 50%;
    left: calc(50% - (1280px / 2));
    left: -moz-calc(50% - (1280px / 2));
    top: 50%;
    top: calc(50% - (1200px / 2));
    top: -moz-calc(50% - (1200px / 2));

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(0,0,0,0.5);
}
.fondo-win-off{
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s;
    -webkit-transition: visibility 1s, opacity 1s;
}
.fondo-win-on{
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 1s;
    -webkit-transition: visibility 0s, opacity 1s;
}
/*.fondo-win-on #fondo-win-img{    
    animation-name: animacion-fondo-win;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: animacion-fondo-win;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
@keyframes animacion-fondo-win{
    0% {
        transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}*/
#polvora-content{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.polvora-particle{
    position: absolute;
    width: 10px;
    height: 10px;
}

.polvora-particle > div{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;

    transform: translateX(-5px) translateY(-5px);
    -webkit-transform: translateX(-5px) translateY(-5px);
    -o-transform: translateX(-5px) translateY(-5px);

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../images/star.svg);
}

.polvora-particle-on-1{
    transition: top 1s ease-out, opacity 2s ease-out;
    -webkit-transition: top 1s ease-out, opacity 2s ease-out;
}
.polvora-particle-on-2{
    transition: top 2s ease-out, opacity 2s ease-out;
    -webkit-transition: top 2s ease-out, opacity 2s ease-out;
}
.polvora-particle-on-3{
    transition: top 3s ease-out, opacity 3s ease-out;
    -webkit-transition: top 3s ease-out, opacity 3s ease-out;
}

.polvora-particle-off div{
    animation: none;
    animation: unset;
    -webkit-animation: none;
    -webkit-animation: unset;
}

.polvora-particle-on .polvora1{
    animation-name: animacion-particula-polvora-1;
    -webkit-animation-name: animacion-particula-polvora-1;    
}
.polvora-particle-on .polvora2{
    animation-name: animacion-particula-polvora-2;
    -webkit-animation-name: animacion-particula-polvora-2;
}
.polvora-particle-on .polvora3{
    animation-name: animacion-particula-polvora-3;
    -webkit-animation-name: animacion-particula-polvora-3;
}
.polvora-particle-on .polvora4{
    animation-name: animacion-particula-polvora-4;
    -webkit-animation-name: animacion-particula-polvora-4;
}
.polvora-particle-on-1 div{
    animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
}
.polvora-particle-on-2 div{
    animation-delay: 1.75s;
    -webkit-animation-delay: 1.75s;
}
.polvora-particle-on-3 div{
    animation-delay: 2.75s;
    -webkit-animation-delay: 2.75s;
}

#titulo-win{
    position: absolute;
    width: 190px;
    height: 40px;
    top: 87%;  
    left: 50%;
    left: calc(50% - (95px));
    left: -moz-calc(50% - (95px));
    margin: 0px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow-Bold';
    font-size: 35px;
    text-align: center;
    font-weight: normal;
    line-height: normal;
}
#titulo-win > span{
    display: block;
    width: 100%;
    z-index: 2;
}
#titulo-win::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0%;
    top: 100%;
    top: calc(100% - 5px);
    top: -moz-calc(100% - 5px);
    background-color: #000000;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -o-filter: blur(5px);
    opacity: 0.5;
    z-index: 0;
}
.fondo-win-on #titulo-win{
    animation-name: animacion-titulo-win;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: animacion-titulo-win;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
@keyframes animacion-titulo-win{
    0% {
        color: #FFFFFF;
    }
    50% {
        color: #FFFF00;
    }
    100% {
        color: #FFFFFF;
    }
}

#repetir-btn{
    bottom: 20px !important;
    left: initial !important;
    right: 15px !important;
}

#personaje-home{
    position: absolute;
    display: block;
    width: 132px;
    height: 370px;
    
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    top: calc(50% - (370px / 2));
    top: -moz-calc(50% - (370px / 2));
    right: 90px;
}
.personaje-1{
    background-image: url(../images/personaje-v1.png);
}
.personaje-2{
    background-image: url(../images/personaje-v2.png);
}
.personaje-3{
    background-image: url(../images/personaje-v3.png);
}
.personaje-ojos{
    position: absolute;
    width: 35px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/ojos.png);
    top: 35px;
    left: 44px;
}
.personaje-ojos::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    animation-name: animacion-ojos;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: animacion-ojos;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
@keyframes animacion-ojos{
    0%{
        background-image: none;
    }
    2%{
        background-image: url(../images/parpados1.png);
    }
    4%{
        background-image: url(../images/parpados2.png);
    }
    6%{
        background-image: url(../images/parpados1.png);
    }
    8%{
        background-image: none;
    }
    100%{
        background-image: none;
    }
}

#game-scene{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
#game-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}


/*********************CONTENT HERE*******************/
#cajas{
    position: absolute;
    top: 0px;
    left: 0px;
}
#zonas{
    position: absolute;
    top: 0px;
    left: 0px;
}
.caja{
    position: absolute;
    box-sizing: border-box;
    width: 125px;
    height: 102px;
    border: rgba(0,0,0,0) solid 1px;
    /*background-color: #FFFFFF;*/

    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 20px 0px;

    transform: translateX(-62.5px) translateY(-51px);
    -moz-transform: translateX(-62.5px) translateY(-51px);
    -webkit-transform: translateX(-62.5px) translateY(-51px);

    transition: left 1.5s linear, top 1.5s linear;
    -webkit-transition: left 1.5s linear, top 1.5s linear;
}
.caja-over{
    filter: brightness(1.5);
    -webkit-filter: brightness(1.5);
    -o-filter: brightness(1.5);
}
.caja-fill{

}
.caja-empty{

}

.caja-pos-initial{
    z-index: initial !important;
}

.caja-animada{
    position: absolute;
    top: 0px;
    left: 0px;
}
.caja-bola{
    position: absolute;
    box-sizing: border-box;
    width: 85px;
    height: 85px;
    left: 50%;
    left: calc(50% - (85px / 2));
    left: -moz-calc(50% - (85px / 2));

    display: flex;
    align-items: center;
    justify-content: center;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/burbuja.png);
}
.caja-opened .caja-bola{
    top: -60px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);

    transition: top 0.2s, visibility 0s, opacity 0.2s, transform 0.2s, -moz-transform 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
    -webkit-transition: top 0.2s, visibility 0s, opacity 0.2s, transform 0.2s, -moz-transform 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
}
.caja-closed .caja-bola{
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);

    transition: top 0.2s, visibility 0.2s, opacity 0.2s, transform 0.2s, -moz-transform 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
    -webkit-transition: top 0.2s, visibility 0.2s, opacity 0.2s, transform 0.2s, -moz-transform 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
}

.caja-bola > div{
    display: block;
    box-sizing: border-box;
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0px auto;
    padding: 0px;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.caja-bola > p{
    position: relative;
    display: block;
    width: 100%;

    font-family: 'Barlow-Bold';
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    line-height: normal;
    font-weight: normal;
    text-shadow: 0px 0px 4px #00AEC7;
    -moz-text-shadow: 0px 0px 4px #00AEC7;
    -webkit-text-shadow: 0px 0px 4px #00AEC7;
}
.caja-fill .caja-bola > p{
    display: none;
}
.caja-empty .caja-bola > div{
    display: none;
}
.caja-number{
    position: absolute;
    top: 60px;
    left: 35px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'FSJoey-Regular';
    font-size: 14px;
    color: #5D4532;
    text-align: center;
    font-weight: normal;
    line-height: normal;

    transform: skewY(20deg);
    -webkit-transform: skewY(20deg);
    -o-transform: skewY(20deg);
}
.caja-zona{
    position: absolute;
    width: 80px;
    height: 70px;

    transform: translateX(-40px) translateY(-30px);
    -webkit-transform: translateX(-40px) translateY(-30px);
    -o-transform: translateX(-40px) translateY(-30px);

    background-color: #FF0000;
    opacity: 0;
    cursor: pointer;
}

#personaje{
    position: absolute;
    display: block;
    width: 132px;
    height: 370px;
    
    top: 50%;
    top: calc(50% - (370px / 2));
    top: -moz-calc(50% - (370px / 2));
    right: 10px;

    transition: right 1s linear;
    -webkit-transition: right 1s linear;
}

.personaje-win{
    right: 50% !important;
    right: calc(50% - (132px / 2)) !important;
    right: -moz-calc(50% - (132px / 2)) !important;
}

.personaje-off{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s;
    -webkit-transition: visibility 0.5s, opacity 0.5s;
}
.personaje-on{
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s;
    -webkit-transition: visibility 0s, opacity 0.5s;
}

#personaje-main,#personaje-main-responsive{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#personaje-ropas,#personaje-ropas-responsive{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.ropa{
    cursor: default;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.ropa div{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ropa-1-p1,.ropa-1-p2{top:42%; left:50%;}
.ropa-2-p1,.ropa-2-p2{top:10%; left:48%;}
.ropa-3-p1{top:89%; left:31%;}
.ropa-4-p1,.ropa-4-p2{top:3%; left:47%;}
.ropa-5-p1,.ropa-5-p2{top:65%; left:17%;}
.ropa-6-p1,.ropa-6-p2{top:11%; left:48%;}
.ropa-7-p1{top:55%; left:18%;}
.ropa-8-p1,.ropa-8-p2{top:17%; left:47%;}

.ropa-3-p2{top:89%; left:70%;}
.ropa-7-p2{top:55%; left:80%;}

#prenda1,#prenda2{
    box-sizing: border-box;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.prenda-move-on{
    z-index: 200;
    visibility: visible;
}
.prenda-move-put{
    z-index: 200;
    visibility: visible;
    transition: left 0.7s ease-out, top 0.7s ease-out;
    -webkit-transition: left 0.7s ease-out, top 0.7s ease-out;
}
.prenda-move-off{
    z-index: 0;
    visibility: hidden;
}

#menu{
    position: absolute;
    width: auto;
    height: auto;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    top: 15px;
    left: 15px;
}

#reloj{
    margin: 0px;
    position: relative;
    width: 128px;
    height: 42px;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/reloj-pared.png);
    
    display: block;
    border: rgba(0,0,0,0) solid 1px;
    
    transform: skewY(-1deg);
    -webkit-transform: skewY(-1deg);
    -o-transform: skewY(-1deg);
}
#tiempo-txt{
    display: block;
    width: 70px;
    height: 30px;
    margin: 0px;
    padding: 0px;

    font-family: 'DS-DIGIB';
    font-size: 28px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    margin-top: 6px;
    margin-left: 53px;
}
#ayuda-btn{
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #00AEC7;

    padding: 0px;
    margin: 0px;
    margin-left: 10px;
    margin-top: 6px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    background-image: url(../images/help-icon.svg);
    cursor: pointer;

    transition: box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
    -webkit-transition: box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
}
#ayuda-btn:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    box-shadow: -1px 1px 2px 1px rgba(0,0,0,0.3);
}

/****************************************************/


/*************MODAL*************/
#modal{
    z-index: 500;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0px;
    left: 0px;
    
    align-items: center;
    justify-content: center;
}
.modal-off{
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,0,0,0);

    transition: opacity 0.5s, background-color 0.5s, visibility 0.5s;
    -webkit-transition: opacity 0.5s, background-color 0.5s, visibility 0.5s;
}
.modal-on{
    visibility: visible;
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
    
    transition: opacity 0.5s, background-color 0.5s, visibility 0s;
    -webkit-transition: opacity 0.5s, background-color 0.5s, visibility 0s;
}

#modal-box{
    width: 360px;
    position: relative;
    display: block;
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.2);
}
.modal-box-left{
    left: -13%;
}

#modal-title{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    border: none;
    margin-bottom: 10px;

    font-family: 'FSJoey-Bold';
    font-size: 19px;
    color: #0033A0;
    text-align: center;
    font-weight: normal;
    line-height: normal;
}
#modal-close-btn{
    display: block;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    position: absolute;

    background-color: #00AEC7;
    border: none;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;

    transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
    -webkit-transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
}
#modal-close-btn::after,
#modal-close-btn::before
{
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: #FFFFFF;
    transform-origin: center center;
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    top: 50%;
    top: calc(50% - 1px);
    top: -moz-calc(50% - 1px);
    left: 50%;
    left: calc(50% - 7.5px);
    left: -moz-calc(50% - 7.5px);
}
#modal-close-btn::after{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
#modal-close-btn::before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
#modal-close-btn:hover{
    background-color: #008B96;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}

#modal-content{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
    max-height: 450px;
    overflow: auto;
}

#personaje-responsive{
    display: none;
}

/***********ESTILOS CONTENT DEL MODAL*************/
.modal-instrucciones-gif{
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-instrucciones-gif > div{
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}
.modal-instrucciones-gif > div video{
    display: block;
    margin: 0px auto;
    cursor: pointer;
}
.modal-instrucciones-gif > div button{
    visibility: visible;
    cursor: pointer;
    position: absolute;
    background-color: rgba(0,0,0,0);
    border: none;
    padding: 0px;
    margin: 0px;
    width: 35px;
    height: 35px;
    top: 50%;
    top: calc(50% - 17.5px);
    top: -moz-calc(50% - 17.5px);
    left: 50%;
    left: calc(50% - 20px);
    left: -moz-calc(50% - 20px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
    -webkit-filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
    -o-filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
    background-image: url(../images/play.svg);
}
.video-playing{
    visibility: hidden !important;
    background-image: url(../images/pause.svg) !important;
}
.modal-instrucciones-gif > div:hover .video-playing{
    visibility: visible !important;
}


.modal-instrucciones-gif img{
    display: block;
}

#modal-content > p{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: 'Barlow-Medium';
    font-size: 13px;
    color: #53565A;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 10px;
}
#modal-content > p span{
    font-family: 'Barlow-Bold';
    color: #555555;
}   

#modal-content > h6{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: 'FSJoey-Bold';
    font-size: 14px;
    color: #0033A0;
    text-align: center;
    font-weight: normal;
    line-height: normal;
}
#modal-button,#repetir-btn{
    position: absolute;
    display: block;
    width: 160px;
    height: 41px;
    border-radius: 4px;
    background-color: #00AEC7;
    border: none;

    font-family: 'Barlow-Bold';
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    bottom: -20px;
    left: 50%;
    left: calc(50% - 80px);
    left: -moz-calc(50% - 80px);
    box-shadow: 0px 2px 3px 2px rgba(0,0,0,0.2);
    cursor: pointer;

    transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
    -webkit-transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
}
#modal-button:hover,#repetir-btn:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    background-color: #0097A3;
    
}

/**********TOOLTIP*********/
#tooltip{
    z-index: 400;
    position: absolute;
    width: auto;
    max-width: 400px;
    border-radius: 0px 0px 0px 15px;
    background-color: #56AAC6;
    box-sizing: border-box;
    margin: 0px;
    padding: 10px;

    top: 13%;

    transition: right 0.4s;
    -webkit-transition: right 0.4s;
}
#tooltip::after{
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 50%;
    top: calc(50% - 6px);
    top: -moz-calc(50% - 6px);
    left: 100%;

    border-top: 6px solid rgba(0,0,0,0);
    border-bottom: 6px solid rgba(0,0,0,0);
    border-left: 7px solid #56AAC6;
}
.tooltip-off{
    right: -400px;
}
.tooltip-on{
    right: 15px;
}

#tooltip p{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: 'Barlow-Medium';
    font-size: 12px;
    color: #FFFFFF;
    text-align: left;
    font-weight: normal;
    line-height: normal;
}
#tooltip p span{
    font-family: 'Barlow-Bold';
}

/***************ALERT***************/
#alerta{
    z-index: 600;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0px;
    left: 0px;
}
.alerta-off{
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,0,0,0);

    transition: opacity 0.3s, background-color 0.3s, visibility 0.3s;
    -webkit-transition: opacity 0.3s, background-color 0.3s, visibility 0.3s;
}
.alerta-on{
    visibility: visible;
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
    
    transition: opacity 0.1s, background-color 0.1s, visibility 0s;
    -webkit-transition: opacity 0.1s, background-color 0.1s, visibility 0s;
}

#alerta-box{
    position: absolute;
    width: 200px;
    background-color: #D9DF59;
    box-sizing: border-box;
    margin: 0px;
    padding: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.alerta-right{
    border-radius: 0px 0px 20px 0px;
}
.alerta-right-on{
    opacity: 1;
    visibility: visible;
    transition: left 0.3s, opacity 0.3s, visibility 0s;
    -webkit-transition: left 0.3s, opacity 0.3s, visibility 0s;
}
.alerta-right-off{
    opacity: 0;
    visibility: hidden;
    transition: left 0.3s, opacity 0.3s, visibility 0.3s;
    -webkit-transition: left 0.3s, opacity 0.3s, visibility 0.3s;
}
.alerta-left{
    border-radius: 0px 0px 0px 20px;
}
.alerta-left-on{
    opacity: 1;
    visibility: visible;
    transition: right 0.3s, opacity 0.3s, visibility 0s;
    -webkit-transition: right 0.3s, opacity 0.3s, visibility 0s;
}
.alerta-left-off{
    opacity: 0;
    visibility: hidden;
    transition: right 0.3s, opacity 0.3s, visibility 0.3s;
    -webkit-transition: right 0.3s, opacity 0.3s, visibility 0.3s;
}

#alerta-box::after{
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 50%;
    top: calc(50% - 6px);
    top: -moz-calc(50% - 6px);
}
.alerta-right::after{
    left: -7px;

    border-top: 6px solid rgba(0,0,0,0);
    border-bottom: 6px solid rgba(0,0,0,0);
    border-right: 7px solid #D9DF59;
}
.alerta-left::after{
    left: 100%;

    border-top: 6px solid rgba(0,0,0,0);
    border-bottom: 6px solid rgba(0,0,0,0);
    border-left: 7px solid #D9DF59;
}

#alerta-box p{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: 'Barlow-Medium';
    font-size: 14px;
    color: #0033A0;
    text-align: left;
    font-weight: normal;
    line-height: normal;
}
#alerta-box p span{
    font-family: 'Barlow-Bold';
}

/**************CARGADOR***************/
#cargador{
    z-index: 700;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    background-color: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.cargador-on{
    display: flex;
}
.cargador-off{
    display: none;
}
.cargador-img{
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/cargador_v2g.gif);
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
}
.cargador-txt{
    display: block;
    font-family: 'Barlow-Medium';
    font-size: 14px;
    color: #000000;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    margin: 0px;
    padding: 0px;
}