html,
body {
    background: #fefefe;
    margin: 0px;
    padding: 0px;
    height: 100%;
    font: 12px;
}


/* Grid */

.col-md-4 {
    margin-bottom: 30px;
}


/* Botones */

.btn {
    cursor: pointer;
}

.btn-secondary {
    border-radius: 30px;
    padding: 15px 50px;
    border: 0px solid #000;
}

.btn-secondary:focus {
    border-radius: 30px;
    padding: 15px 50px;
    border: 0px solid #000;
    -moz-box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.btn-secondary:active {
    border-radius: 30px;
    padding: 15px 50px;
    border: 0px solid #000;
    -moz-box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    background-color: #8e8e8e;
    border-color: #444444;
    cursor: pointer;
}

.btn-oscuro,
a.btn-oscuro {
    background-color: #666666;
    color: #fff;
    text-transform: uppercase;
}

.btn-oscuro:hover,
a.btn-oscuro:hover {
    background-color: #444444;
    color: #fff;
    text-transform: uppercase;
}

.btn-verde,
a.btn-verde {
    background-color: #8b14ac;
    color: #fff;
    text-transform: uppercase;
}

.btn-verde:hover,
a.btn-verde:hover {
    background-color: #8b14ac;
    color: #fff;
    text-transform: uppercase;
}

.btn-verde:focus,
a.btn-verde:focus {
    box-shadow: 0 0 0 0.2rem #8b14ac;
}

.btn-verde-oscuro,
a.btn-verde-oscuro {
    background-color: #8b14ac;
    color: #fff;
    text-transform: uppercase;
}

.btn-verde-oscuro:hover,
a.btn-verde-oscuro:hover {
    background-color: #8b14ac;
    color: #fff;
    text-transform: uppercase;
}

.btn-azul,
a.btn-azul {
    background-color: #329999;
    color: #fff;
    text-transform: uppercase;
}

.btn-azul:hover,
a.btn-azul:hover {
    background-color: #47aaaa;
    color: #fff;
    text-transform: uppercase;
}

.btn-azul-oscuro,
a.btn-azul-oscuro {
    background-color: #023399;
    color: #fff;
    text-transform: uppercase;
}

.btn-azul-oscuro:hover,
a.btn-azul-oscuro:hover {
    background-color: #1142a3;
    color: #fff;
    text-transform: uppercase;
}

.btn-morado,
a.btn-morado {
    background-color: #9a66ff;
    color: #fff;
    text-transform: uppercase;
}

.btn-morado:hover,
a.btn-morado:hover {
    background-color: #a47af9;
    color: #fff;
    text-transform: uppercase;
}


/* Form */

.form-control {
    font-size: 12px;
    border-radius: 0px;
}

.form-control:focus {
    border-color: #8e8e8e;
    border-radius: 0px;
    -moz-box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.form-control-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("img/verde-dropdown.png") right center no-repeat #fff;
}

.form-control-dropdown-bb {
    background: url("img/blanco-dropdown.png") right center no-repeat #fff;
}

.form-control-dropdown-azul {
    background: url("img/azul-dropdown.png") right center no-repeat #fff;
}

.form-control-dropdown-azul-oscuro {
    background: url("img/azulb-dropdown.png") right center no-repeat #fff;
}

.form-control-dropdown-morado {
    background: url("img/morado-dropdown.png") right center no-repeat #fff;
}

.form-control-dropdown-verde-oscuro {
    background: url("img/verdeb-dropdown.png") right center no-repeat #fff;
}


/* Icon Redes */

.aIcon,
.aIcon:hover {
    text-decoration: none;
}


/* encabezado_centro */

.k-widget {
    font-family: "DejaVu Sans", "Arial", sans-serif;
    font-size: 0.1em;
}


/* Menu */

.siteMenu {
    background: #8b14ac;
    width: 100%;
    display: block;
    padding-bottom: 15px;
}

.siteMenuContenidos {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
}

.ulSiteMenuContenidos,
.ulSiteMenuContenidosR {
    display: flex;
    flex-direction: row;
    padding: 0px;
}

.ulSiteMenuContenidos {
    justify-content: flex-start;
}

.ulSiteMenuContenidosR {
    justify-content: flex-end;
    position: absolute;
    right: 0px;
}

.ulSiteMenuContenidos li,
.ulSiteMenuContenidosR li {
    background: #333333;
    list-style: none;
    font-weight: bold;
    padding: 8px 10px;
    margin: 0px;
}

.ulSiteMenuContenidosR li {
    background-color: #28abe2;
}

.ulSiteMenuContenidos li:hover,
.ulSiteMenuContenidosR li:hover {
    background-color: #191919;
    transition-property: background-color;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.ulSiteMenuContenidosR li:hover {
    background-color: #249ac9;
}

.ulSiteMenuContenidos li>a,
.ulSiteMenuContenidosR li>a {
    color: #fff;
    font-size: 13px;
}

.ulSiteMenuContenidos li>a:hover,
.ulSiteMenuContenidosR li>a:hover {
    color: #fff;
    text-decoration: none;
}

.siteMenuLogo {
    padding-left: 10px;
}

.siteMenuLogo img {
    display: block;
    max-width: 290px;
}

.siteMenuOculto {
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
}

.dropdown-sitemenu {
    border: 0px solid #000;
    background-color: rgba(0, 0, 0, 0);
    padding: 20px;
    color: #fff;
}

.dropdown-sitemenu:hover {
    border: 0px solid #000;
    background-color: rgba(0, 0, 0, 0);
    color: #eeeeee;
}

.dropdown-sitemenu:focus {
    border: 0px solid #000;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0;
    color: #fff;
}

.show>.dropdown-sitemenu.dropdown-toggle {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-color: transparent;
    color: #eeeeee;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #8b14ac;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1164px) {
    .siteMenu {
        padding-top: 15px;
    }
    .siteMenuContenidos {
        display: none;
    }
    .siteMenuOculto {
        display: block;
    }
    .dropdown-menu {
        position: absolute;
        top: 129%;
        /*left: 0;*/
        right: -15px;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 10rem;
        padding: 0.5rem 0;
        margin: 0;
        font-size: 1rem;
        color: #fff;
        text-align: left;
        list-style: none;
        background-color: #8b14ac;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 0px solid rgba(0, 0, 0, 0);
        border-radius: 0rem;
    }
    .dropdown-item {
        color: #fff;
    }
}

@media only screen and (max-width: 490px) {
    .siteMenuLogo img {
        display: block;
        width: 98%;
        max-width: 270px;
    }
    .siteMenuOculto {
        display: block;
        position: absolute;
        right: 5px;
        top: 5px;
    }
    .dropdown-menu {
        position: absolute;
        top: 110%;
        /*left: 0;*/
        right: -5px;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 10rem;
        padding: 0.5rem 0;
        margin: 0;
        font-size: 1rem;
        color: #fff;
        text-align: left;
        list-style: none;
        background-color: #8b14ac;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 0px solid rgba(0, 0, 0, 0);
        border-radius: 0rem;
    }
    .dropdown-item {
        color: #fff;
    }
}


/* Footer */

.siteFooter {
    background: #333333;
    width: 100%;
    color: #fff;
    padding: 10px;
    padding-top: 30px;
}

.siteFooter a {
    color: #fff;
}

.footerFirtSection {
    margin-bottom: 50px;
}

.col-left-footer {
    text-align: left;
}

.col-center-footer {
    text-align: center;
}

.col-right-footer {
    text-align: right;
}

@media only screen and (max-width: 766px) {
    .col-left-footer {
        text-align: center !important;
    }
    .col-center-footer {
        text-align: center !important;
    }
    .col-right-footer {
        text-align: center !important;
    }
}

.newsletter h3,
.redesSociales h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

.redesSociales {
    padding-top: 50px;
}

.newsletter {
    color: #fff;
    text-align: center;
    margin: auto;
}

.formNewsletter {
    margin-top: 7px;
}

.copyRight {
    padding-top: 0px;
    padding-left: 0px;
    font-size: 11px;
}

.col-right-stores {
    padding-top: 60px;
}

.marginBottomNone {
    margin-bottom: 0px !important;
}


/* Alertas Globales */

.alertGlobal {
    display: none;
    position: fixed;
    z-index: 2;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

@media only screen and (max-width: 766px) {
    .alertGlobal {
        top: 0px;
        left: 0px;
        width: 100%;
        max-width: 100%;
    }
    .alert {
        padding: 0.75rem 1.25rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid transparent;
        border-radius: 0rem;
    }
}

.img-carousel-width {
    width: 100%;
    height: 550px;
}

@media only screen and (max-width: 900px) {
    .img-carousel-width {
        width: 100%;
        height: 340px;
    }
}

@media only screen and (max-width: 600px) {
    .img-carousel-width {
        width: 100%;
        height: 240px;
    }
}

@media only screen and (max-width: 400px) {
    .img-carousel-width {
        width: 100%;
        height: 180px;
    }
}

.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* .page-wrap:after {
    content: "";
    display: block;
} */

/* .appFooter,
.page-wrap:after {
    height: 120px;
} */

.appFooter {
    background: #333333;
    width: 100%;
    color: #fff;
    padding: 10px;
    padding-top: 30px;
    height: 150px; /* Ajusta esta altura según tus necesidades */
    position: relative; /* Asegura que el footer esté dentro del flujo del documento */
}

.subTituloLine {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 30px;
}

.subTituloLine h3 {
    font-size: 18px;
    font-weight: 300;
}

.col-center {
    text-align: center;
    /* display: flex;
    justify-content: center;  Center block-level elements */
}

.col-left {
    text-align: left;
}

.col-right {
    text-align: right;
}


/* over */

.over {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.loadOver {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
}

.form-control-label {
    font-weight: bold;
}

.row {
    margin-bottom: 30px;
}

.dropdown-menu-date {
    padding: 15px !important;
    border: 1px solid #bfbfbf !important;
}

.formPaddign {
    padding-top: 30px;
}

.col-indi-seccion {
    padding-bottom: 7px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    font-weight: bold;
    font-size: 16px;
}

.input-group .form-control:not(:last-child),
.input-group-addon:not(:last-child),
.input-group-btn:not(:last-child)>.btn,
.input-group-btn:not(:last-child)>.btn-group>.btn,
.input-group-btn:not(:last-child)>.dropdown-toggle,
.input-group-btn:not(:first-child)>.btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:not(:first-child)>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-addon {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    background-color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0px;
}

.btn {
    font-size: 12px;
}

.btn-outline-success {
    color: #8b14ac;
    background-image: none;
    background-color: transparent;
    border-color: #8b14ac;
}

#searchcliente,
#buscadorCliente {
    background-image: none;
    background-color: #8b14ac;
    ;
    border-color: #8b14ac;
    color: white;
}

#searchcliente:hover,
#buscadorCliente:hover {
    background-image: none;
    background-color: #72168b;
    ;
    border-color: #8b14ac;
    color: white;
}

.btn-outline-success:hover {
    color: #fff;
    background-image: none;
    background-color: #8b14ac;
    border-color: #8b14ac;
}

.btn-outline-success:focus,
.btn-outline-danger:focus {
    -moz-box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.btn-outline-success:active,
.btn-outline-danger:active {
    -moz-box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.seleccion_paquete:hover {
    font-weight: bold;
    color: #8b14ac;
}


/*ACORDION DE CURSOMODULOS*/

.accordion {
    width: 100%;
}

.accordion-item {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.accordion-header {
    background-color: #808080;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-weight: bold;
}

.accordion-content {
    display: none;
}

.answer-box {
    border: 1px solid #ddd;
    padding: 5px;
}


/*FONDO INICIO LECCIONES ACADEMICAS*/

.hero {
    background-color: #8b14ac;
    position: relative;
    height: 100vh;
    overflow: hidden;
    border-radius: 10px;
}

.hero__title {
    color: #fff;
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 50px;
    z-index: 1;
    text-align: center;
}

.hero__title2 {
    color: rgba(255, 255, 255, 0.151);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 55px;
    z-index: 0;
    opacity: 55%;
    font-weight: bold;
    min-width: 560px;
    text-align: center;
}

.cube {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 1px #72108d;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: scale(0) rotate(0deg) translate(-50%, -50%);
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    -webkit-animation: cube 12s ease-in forwards infinite;
    animation: cube 12s ease-in forwards infinite;
}

.cube:nth-child(2n) {
    border-color: #b018da;
}

.cube:nth-child(2) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    left: 25vw;
    top: 40vh;
}

.cube:nth-child(3) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    left: 75vw;
    top: 50vh;
}

.cube:nth-child(4) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
    left: 90vw;
    top: 10vh;
}

.cube:nth-child(5) {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    left: 10vw;
    top: 85vh;
}

.cube:nth-child(6) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
    left: 50vw;
    top: 10vh;
}

@-webkit-keyframes cube {
    from {
        -webkit-transform: scale(0) rotate(0deg) translate(-50%, -50%);
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(20) rotate(960deg) translate(-50%, -50%);
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

@keyframes cube {
    from {
        -webkit-transform: scale(0) rotate(0deg) translate(-50%, -50%);
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(20) rotate(960deg) translate(-50%, -50%);
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}


/*FIN DE FONDO*/

.btnPerso:active {
    border: none;
    border-radius: 100%;
}


/* Estilo cuando se arrastra */

.elemento.dragging {
    opacity: 0.6;
    /* Cambia la opacidad para indicar que se está arrastrando */
    transform: scale(1.05);
    /* Puedes aplicar una transformación para agrandar ligeramente el elemento */
    transition: opacity 0.2s ease, transform 0.2s ease;
    /* Agrega una transición suave para una experiencia de arrastre más agradable */
}

.accordion-content.valid-drop {
    border: 2px dashed #3498db;
    /* Cambia el borde para indicar una zona válida para soltar */
}

.botonesCitasDias {
    display: flex;
    justify-content: center;
    width: 50px;
    border: solid;
    border-color: #8b14ac;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.botonesCitasDias:hover {
    background-color: #8b14ac;
    color: white;
    cursor: pointer;
}

.botonesCitasDias:focus {
    background-color: #8b14ac;
    color: white;
    cursor: pointer;
}

.botonesCitasDiasSeleccionado {
    background-color: #8b14ac;
    color: white;
}

.optionService {
    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}