@keyframes slidein {
    0% {
        top: -400px;
        opacity: 0;
   }
    100% {
        opacity: 1;
        top: 0px;
   }
}
@keyframes slideout {
    0% {
        top: 0;
        opacity: 1;
   }
    100% {
        top: -400px;
        opacity: 0;
   }
}

#scene {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: left;
    width: 100%;
    height: 550px;    
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #000;    
    overflow: hidden;
    color: #fff;
}

.item{
    position: inherit;
}

.white_tabs #scene{
    height: 500px;
}

#scene form{
    display: contents;
}

#scene video{
    border-radius: 20px 0px 0px 20px;
}

#scene #left-zone {
    background: #000;
    height: auto;
    flex-grow: 0;    
    width: 35%;
    align-items: center;
    justify-content: left;
}

.white_tabs #scene #left-zone {
    width: 20%;
    overflow: auto;
}

#scene #left-zone .list {
    display: flex;
    list-style: none;
    align-content: stretch;
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
    padding: 0;
}
#scene #left-zone .list li.item input[type="radio"] {
    display: none;
}
#scene #left-zone .list li.item input[type="radio"] ~ label {
    display: block;
    opacity: 0.5;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
}

.white_tabs #scene #left-zone .list li.item input[type="radio"] ~ label {
    border: 1px solid #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'titles';
}

#scene #left-zone .list li.item input[type="radio"] ~ label:first-letter {
    text-transform: uppercase;
}
#scene #left-zone .list li.item input[type="radio"] ~ label:hover {
    opacity: 0.75;
    cursor: pointer;
}
#scene #left-zone .list li.item input[type="radio"] ~ label.label_1:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/agua_residual.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ label.label_2:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/agua_potable.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ label.label_3:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/recreativo.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ label.label_4:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/alimento.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ label.label_5:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/oil_and_gas.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ label.label_6:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/energetico.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ label.label_7:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url('../img/iconos/torres_de_enfriamiento.png');
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

#scene #left-zone .list li.item input[type="radio"] ~ .content {
    position: absolute;
    right: 0;
    top: -6500px;
    width: 65%;
    height: 550px;
    animation-duration: 0.75s;
    animation-name: slideout;
    animation-timing-function: ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tabs_button_content_left{
    width: 85%;
    margin-top: 30px;
}

.white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content{
    width: 80%;
}

#scene #left-zone .list li.item input[type="radio"] ~ .content.content_1 h1,
#scene #left-zone .list li.item input[type="radio"] ~ .content.content_2 h1,
#scene #left-zone .list li.item input[type="radio"] ~ .content.content_3 h1,
#scene #left-zone .list li.item input[type="radio"] ~ .content.content_4 h1,
#scene #left-zone .list li.item input[type="radio"] ~ .content.content_5 h1,
#scene #left-zone .list li.item input[type="radio"] ~ .content.content_6 h1,
#scene #left-zone .list li.item input[type="radio"] ~ .content.content_7 h1 {
    color: #06ff06;
}

.white_tabs h1, .white_tabs h2{
    width: 85%;
    text-align: left;
}

#scene #left-zone .list li.item input[type="radio"] ~ .content h1:first-letter {
    text-transform: uppercase;
}
#scene #left-zone .list li.item input[type="radio"] ~ .content p {    
    text-align: center;
    padding: 9px 12px;
    font-size: 15px;
    background: #333;  
    border-radius: 0px 0px 10px 10px;  
}

.white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content p {   
    width: 85%; 
    text-align: left;
    background: transparent;  
    border-radius: 0px;  
}

#scene #left-zone .list li.item input[type="radio"]:checked ~ label {
    opacity: 1;    
    animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.white_tabs #scene #left-zone .list li.item input[type="radio"]:checked ~ label {
    opacity: 1;
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 25px rgb(255, 255, 255, 1);
    animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_1,
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_2, 
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_3,
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_4,
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_5,
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_6,
#scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_7 {
    color: #06ff06;
    border-right: solid 4px #06ff06;
}

#scene #left-zone .list li.item input[type="radio"]:checked ~ .content {
    animation-duration: 0.75s;
    animation-name: slidein;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

#scene #middle-border {
    background-color: #000;
    height: 75%;
    flex-grow: 1;
    max-width: 2px;
    z-index: 0;
}

.white_tabs #scene #middle-border {
    background-color: transparent;
}

#scene #right-zone {
    background: #000;
    height: 100%;
    flex-grow: 3;
}

.casos_agua_potable_blk{
    background: url('../img/casos_agua_Potable.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;    
}

.casos_osmosis_blk{
    background: url('../img/casos_osmosisi_inversa.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;    
}

.casos_ptar{
    background: url('../img/casos_ptar.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casos_oil_gas{
    background: url('../img/casos_oil_and_gas.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casos_delfinario{
    background: url('../img/casos_delfinario.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casos_alberca{
    background: url('../img/casos_centro_deportivo.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casos_parque_agua{
    background: url('../img/casos_parque_agua.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casos_piscinas{
    background: url('../img/casos_piscinas.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.toggle_info_controls_movil{
    position: absolute;
    top: 400px;
    z-index: 9;
}

.toggle_info_controls_movil label{
    display: inline-block;    
    width: calc(100% - 40px);
    margin: 0px 10px 10px 0px;
    padding: 8px 12px;
    border: 1px solid #fff;        
    cursor: pointer;
}

.toggle_info_controls_movil img{
    width: 50px;
    margin-right: 15px;
}

@media (min-width: 1560px) and (max-width: 99999px){
    #scene,
    .white_tabs #scene {
        height: 800px;    
    }

    #scene #left-zone .list li.item input[type="radio"] ~ .content,
    .white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content {        
        height: 800px;
    }
}

@media (min-width: 0px) and (max-width: 940px){
    #scene {
        height: 1270px;    
    }

    #scene #left-zone .list li.item input[type="radio"] ~ .content {        
        height: 910px;
    }

    .toggle_info_controls_movil {        
        top: 950px;        
    }

    .white_tabs #scene{
        height: 840px !important;
    }

    .white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content {
        height: 470px !important;
    }

    .white_tabs .toggle_info_controls_movil{
        top: 470px !important;
    }

    #scene #left-zone,
    .white_tabs #scene #left-zone {
        width: 100%;
    }

    #scene #left-zone .list li.item input[type="radio"] ~ .content,
    .white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content {
        width: 100%;
    }

    #scene video,
    .white_tabs #scene video{
        border-radius: 0px;
    }        
}

@media (min-width: 0px) and (max-width: 710px){
    #scene {
        height: 1070px !important;    
    }

    #scene #left-zone .list li.item input[type="radio"] ~ .content {        
        height: 720px !important;
    }

    .toggle_info_controls_movil {        
        top: 750px !important;        
    }

    .white_tabs #scene{
        height: 740px !important;
    }

    .white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content {
        height: 370px !important;
    }

    .white_tabs .toggle_info_controls_movil{
        top: 370px !important;
    }
}

@media (min-width: 0px) and (max-width: 520px){
    #scene {
        height: 870px !important;    
    }

    #scene #left-zone .list li.item input[type="radio"] ~ .content {        
        height: 520px !important;
    }

    .toggle_info_controls_movil {        
        top: 550px !important;        
    }

    .white_tabs #scene{
        height: 640px !important;
    }

    .white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content {
        height: 270px !important;
    }

    .white_tabs .toggle_info_controls_movil{
        top: 270px !important;
    }
}

@media (min-width: 0px) and (max-width: 400px){
    #scene {
        height: 790px !important;    
    }

    #scene #left-zone .list li.item input[type="radio"] ~ .content{        
        height: 400px !important;
    }

    .toggle_info_controls_movil {        
        top: 470px !important;        
    }

    .white_tabs #scene{
        height: 620px !important;
    }

    .white_tabs #scene #left-zone .list li.item input[type="radio"] ~ .content {
        height: 230px !important;
    }

    .white_tabs .toggle_info_controls_movil{
        top: 250px !important;
    }

    .mobile_app_top{
        bottom: -60px !important;
    }
}