.cm-toggle {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	border: 0;
	outline: 0;
	cursor: pointer;
}

.cm-toggle:after {
	content: '';
	width: 60px;
	height: 30px;
	display: inline-block;
	background: #FFFFFF;
	border-radius: 20px;
	clear: both;
}

.cm-toggle:before {
	content: '';
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	left: 0;
	border-radius: 50%;
	background: #c3c3c380;
	box-shadow: 1px 1px 3px #00000099;
}

.cm-toggle:checked:before {
	left: 30px;
	box-shadow: -1px 1px 3px #00000099;
}

.cm-toggle:checked:after {
	background: #FBB24A;
}

.cm-toggle, .cm-toggle:before, .cm-toggle:after,
.cm-toggle:checked:before, .cm-toggle:checked:after {
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-moz-transition: ease .3s;
	-o-transition: ease .3s;
}
/*---- ----*/

.banner {
    background: url('../img/imagenfondocubierta.png') no-repeat;
	background-size: 100% 100%;
    width: 100%;
    height: 36rem;
    display: flex;
}

#bannerC1, #bannerC2 {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#bannerC1 {
    justify-content: start;
    align-items: start;
    a img {
        width: 28rem;
        height: 28rem;
        margin: 3rem;
    }
}

#bannerC2 {
    padding-left: 1rem;
    p {
        font-size: 24px;
    }
}

.videoSIS {
    width: 80%;
    margin: 1rem 0 0 0;
}

/* Pantallas pequeñas (móviles) */
@media only screen and (max-width: 600px) {
    .cm-toggle {
        visibility: hidden;
    }

    .colortituloP {
        text-shadow: 
        0px -1px 0px var(--color-TPborde1), /*Arriba*/
        0px 1px 0px var(--color-TPborde2), /*Abajo*/
        -1px 0px 0px var(--color-TPborde1), /*Izquierda*/
        1px 0px 0px var(--color-TPborde2), /*Derecha*/
        -1px 1px 0px var(--color-TPborde1), /*Izquierda-Abajo*/
        1px 1px 0px var(--color-TPborde2), /*Derecha-Abajo*/
        -1px -1px 0px var(--color-TPborde1), /*Izquierda-Arriba*/
        1px -1px 0px var(--color-TPborde2), /*Derecha-Arriba*/
        4px 4px 15px var(--color-TPborde1);
        a {
            color: var(--color-TPtexto);
        }
    }

    .banner {
        width: 100%;
        height: 14rem;
    }

    #bannerC1 {
        a img {
            width: 8rem;
            height: 8rem;
            margin: 1rem;
        }
    }

    #bannerC2 {
        padding-left: 1rem;
        h1 {
            font-size: 30px;
        }
        p {
            font-size: 10px;
        }
    }

    .videoSIS {
        width: 80%;
        margin: 1rem 0 0 0;
    }
}

/* Pantallas medianas (tablets) */
@media only screen and (min-width: 601px) and (max-width: 992px) {
    
}

/* Pantallas grandes (desktop) */
@media only screen and (min-width: 993px) {
    
}