/*General*/

.hot-fila-flex{
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
}

.hot-columna-flex{
    -ms-box-orient: vertical;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}

.hot-derecha-horizontal{
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}

.hot-centrar-horizontal{
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
}

.hot-izquierda-horizontal{
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
}

.hot-centrar-vertical{
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-align: center;
    align-self: center;
}

.hot-espacio-entre {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hot-cambio-linea{
   -webkit-flex-wrap: wrap;
   -ms-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   flex-wrap: wrap;
}

.hot-animaall{
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.hot-comprimir{
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    -ms-flex-pack: center;
    -moz-justify-content: space-around;
    justify-content: space-around;
}

.hot-extender{
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
}

.hot-nomodelocaja{
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*Titulos*/
h1 {
    background-color: #00857c;
    color: white;
    padding: 8px 16px;
}


h2 {
    color: #F37220;
    font-family: DosisBold;
    padding: 8px 16px;
}

/*Boton emergente pdf*/
.hot-emergente-pdf {
    background-color: #00857c;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    display: block;
    height: 40px;
    line-height: 40px;
    margin: auto;
    text-align: center;
    width: 40px;
}

.hot-emergente-pdf:hover {
    opacity: .8;
}

/*Boton emergente pdf*/

.hot-cont-enviar{
    text-align: center;
    margin-top: 20px;
}

.hot-enviar {
    background-color: #00857c;
    color: white;
    cursor: pointer;
    text-align: center;
    padding: 6px;
    border-radius: 2px;
}

.hot-enviar:hover {
    opacity: .8;
}

/*Emergente*/

.hot-aparecer {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: aparecer;
}

@keyframes aparecer{
    0% {opacity: 0; transform: scale(0,0);}
    100%{opacity: 1; transform: scale(1,1);}
}

@-webkit-keyframes aparecer{
    0% {opacity: 0; -webkit-transform: scale(0,0);}
    100%{opacity: 1; -webkit-transform: scale(1,1);}
}

.hot-terminando{
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-name: terminando;

    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: terminando;
}

@keyframes terminando{
    100% {opacity: 0; transform: scale(0,0);}
    0%{opacity: 1; transform: scale(1,1);}
}
@-webkit-keyframes terminando{
    0%{opacity: 1; -webkit-transform: scale(1,1);}
    100% {opacity: 0; -webkit-transform: scale(0,0);}
}

.hot-contenedor_completo {
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

.hot-cc {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.hot-contenedor_carga {
    background: rgba(0, 0, 0, 0) no-repeat scroll 0 0;
    bottom: 0;
    height: 600px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 900px;
}

.hot-close {
    color: white;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 0;
    cursor: pointer;
}
/* Feeback */

.feeback {
    height: auto;
    left: 50%;
    min-height: 100px;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.mal_feeback {
    background: #F66B1A none repeat scroll 0 0;
}

.bien_feeback, .bienfinal_feeback {
    background: #74B848 none repeat scroll 0 0;
}

.cerrar_feeback {
    color: white;
    height: 20px;
    line-height: 16px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 20px;
    cursor: pointer;
}

.texto_feeback {
    color: #fff;
    text-align: center;
}

/* Selección múltiple respuestas*/
.hot-act-smmr{
    width: 100%;
}

.hot-act-smmr > p {
    padding: 10px 40px;
    text-align: center;
}

.hot-act-smmr input[type="radio"], .hot-act-smmr input[type="checkbox"] {
    display: none;
}

.hot-act-smmr input[type="radio"]:checked + label::before, .hot-act-smmr input[type="checkbox"]:checked + label::before {
    color: rgba(0, 0, 0, 0.7);
    content: "•";
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

/*
.hot-act-smmr label::before {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    content: "";
    display: inline-block;
    height: 20px;
    opacity: 0.5;
    position: absolute;
    width: 20px;
    left: -40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}*/

.hot-act-smmr label {
    cursor: pointer;
    display: block;
    margin: 1px 10px 1px 0px;
    padding: 5px;
    position: relative;
    transition: all 0.3s ease 0s;
    background-color: #00857c;
    color: white;
}


/*picture */

.hot-picture{
    margin: 0 0px;
}

.hot-txt{
    width: 800px;
    text-align: justify;
}

.hot-txt>p{
     margin-top: 80px;
    text-align : justify;
}

.hot-txt>audio{
    margin-top: 100px;
}

/*Verdadero y Falso*/

.hot-act-vf{
    width: 100%;
}

.hot-act-vf > p {
    padding: 10px 40px;
    text-align: center;
}

.hot-act-vf > div {
    padding: 10px 40px;
}

.hot-act-vf .imagevf{
    background: url("../images/1.svg") no-repeat top left;
    background-size: contain;
    height: 32.4px;
    width: 75.6px;
    position: relative;
}


.hot-act-vf .imagevf div.bcenter {
    background: #146296;
    border-radius: 23px;
    cursor: pointer;
    height: 23px;
    left: 27px;
    position: absolute;
    top: 4px;
    width: 23px;
    opacity: 0;
}

.hot-act-vf .imagevf div.bleft {
    background: #146296;
    border-radius: 23px;
    cursor: pointer;
    height: 23px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 23px;
    opacity: 0;
}

.hot-act-vf .imagevf div.bright {
    background: #146296;
    border-radius: 23px;
    cursor: pointer;
    height: 23px;
    right: 4px;
    position: absolute;
    top: 4px;
    width: 23px;
    opacity: 0;
}
   
.hot-act-vf .imagevf div.bmarca {
    border: 2px solid #00857c;
    border-radius: 22px;
    cursor: pointer;
    height: 19px;
    left: 27px;
    position: absolute;
    top: 4px;
    width: 19px;
}

.hot-act-vf .hot-pregunta{
    width: calc(100% - 80px);
 }