/*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: 60px;
    color: white;
    cursor: pointer;
    display: block;
    height: 60px;
    line-height: 60px;
    margin: auto;
    text-align: center;
    width: 60px;
}

.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: 10px;
    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"].habilitado:checked + label::before, .hot-act-smmr input[type="checkbox"].habilitado: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: 10px 40px 10px 80px;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease 0s;
    background-color: #00857c;
    color: white;
}

/* Drag & Drop r1:1*/

.hot-act-dd11{
    width: 100%;
}

.hot-act-dd11 > p {
    padding: 1px 40px;
    text-align: center;
}
/*
.hot-act-dd11 div.hot-drag {
    height: 30px;
    width: 200px;
    margin: 5px;
    padding: 5px;
    background: #00857c;
    box-sizing: border-box;
    color: white;
}

.hot-act-dd11 div.hot-drop{
    height: 30px;
    width: 200px;
    margin: 5px;
    padding: 5px;
    background: #F37220;
    box-sizing: border-box;
    color: white;
}


.hot-act-dd11 div.hot-texto{
    width: 300px;
    margin: 5px;
    padding: 10px;
    background: #00857c;
    box-sizing: border-box;
    color: white;
}

.hot-act-dd11 div.hot-dropp{
    opacity: .3;
    border: 1px solid white;
}





/*picture */

.hot-picture{
    margin: 0px 0px;
}

.hot-txt{
    width: 800px;
    text-align: justify;
}

.hot-txt>p{
    margin-top: 80px;
    text-align : justify;

}
.hot-cabecera{
    width: 100%;
    height: 100%;
}

/* poppus*/
.cir-1 {
    background: #00857C none repeat scroll 0 0;
    border-radius: 50px;
    color: #fff;
    height: 20px;
    margin-top: 7px;
    padding: 10px;
    text-align: center;
    width: 20px;
}
/*animacion*/

element.style {
    animation-delay: 1s;
}
.zoomInDown {
    animation-name: zoomInDown;
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
element.style {
    cursor: auto;
    animation-delay: 1s;
    text-align: right;
}

/*pupsps*/


  .cajadrop .numeroV  .triangulo_inf {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 10px solid #fff;
        height: 0;
        width: 0;
        margin: auto;
    }
    .retro {
    min-height:20%;
    height: auto;
    width: 50%;
    padding:3%;
    position: fixed;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -40%);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}
.cierraRetro {
    background: none;
    border:none;
    height: 50px;
    left: 50%;
    margin: -25px;
    bottom: 50px;
    width: 50px;
    position: absolute;
    background-image:url(../images/interfaz/cierra.svg);
    background-position:center;
    background-repeat:no-repeat;
    cursor:pointer; 
    -webkit-transition:all 0.3s ease;
    -o-transition:all 0.3s ease;
    transition:all 0.3s ease;
}  

.cierraRetro:hover {
    opacity:0.4;
}