@font-face {
    font-family: 'Roboto-Black';
    src: url("./fonts/Roboto-Black.ttf") format("opentype");
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url("./fonts/Roboto-Bold.ttf") format("opentype");
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url("./fonts/Roboto-Medium.ttf") format("opentype");
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url("./fonts/Roboto-Regular.ttf") format("opentype");
}

@font-face {
    font-family: 'Roboto-Light';
    src: url("./fonts/Roboto-Light.ttf") format("opentype");
}

@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost.ttf") format("opentype");
}

:root {
    --white: #fff;
    --black: #000000;
    --skyblue: #e2eeff;
    --darkblue: #33405e;
    --darkblue2: #242633;
    --darkblue3: rgb(51, 62, 99);
    --gray: #3d3d3d;
    --orange: #f98133;
    --orange2: #fe6800;
    --orange3: rgb(255, 102, 0);
    --orange4: rgb(160, 65, 1);
    --text: rgb(82, 87, 109);
    --title: rgb(61, 61, 61);
    --yellow: #ffb44d;
    --ft-sm: 'Roboto-Light';
    --ft-base: 'Roboto-Regular';
    --ft-medium: 'Roboto-Medium';
    --ft-bold: 'Roboto-Bold';
    --fs-base: clamp(1rem, 0.9517326732673267rem + 0.19801980198019803vw, 1.125rem);
    --fs-md: clamp(1rem, 0.806930693069307rem + 0.7920792079207921vw, 1.5rem);
    --fs-b-xxl: 2.25rem;
    --fs-xxl: clamp(2.25rem, 0.4272151898734178rem + 3.79746835443038vw, 3.75rem);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body {
    min-height: 100dvh;
    max-width: 100dvw;
    overflow-x: hidden;
    margin-inline: auto;
    font-family: var(--ft-base);
    color: var(--text);
    font-size: 15px;
}

h1 {
    font-size: 55px;
    line-height: 1.27;
    font-family: var(--ft-bold);
    color: var(--title);
    margin-bottom: 20px;
}

h2 {
    font-size: 40px;
    line-height: 1.27;
    font-family: var(--ft-bold);
    color: var(--title);
    margin-bottom: 20px;
}

h3 {
    font-size: 30px;
    font-family: var(--ft-bold);
    color: var(--title);
    line-height: 1.3;
}

h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--ft-bold);
    letter-spacing: 2.4px;
    margin-bottom: 1rem;
}

p {
    margin: 0;
}

ul {
    text-decoration: none;
    padding: 0;
}

a {
    text-decoration: none;
}

/*Generales*/
.mw-33 {
    max-width: 33%;
    margin: 0;
}

.text-orange {
    color: var(--orange2) !important;
}

.text-gray {
    color: var(--title) !important;
}

.bg-gray {
    background-color: #f8f8f8;
}

.text-title {
    font-family: var(--ft-bold);
    color: var(--title);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.italic {
    color: var(--orange2);
    font-size: 24px;
    font-style: italic;
    letter-spacing: 0.2;
}

.subtitulo {
    font-weight: bold;
    margin: 1rem 0;
}

.pt-110 {
    padding-top: 110px;
}

.img-dark {
    filter: brightness(0.8);
}

/*Negrita*/

.fw-300{
    font-weight: 300;
}


.fw-500{
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-family: 'Roboto-Black';
    font-size: 48px;
}

/*Tamaños*/
.ft-9 {
    font-size: 9px;
}

.ft-10 {
    font-size: 10px !important;
}

.ft-11 {
    font-size: 11px !important;
}

.ft-12 {
    font-size: 12px !important;
}

.ft-14 {
    font-size: 14px !important;
}

.ft-18 {
    font-size: 18px !important;
}


/*Colores*/

.text-purple {
    color: var(--purple);
}

.activo::after {
    content: "";
    height: 1.5px;
    width: 100%;
    left: 0;
    bottom: -5px;
    background-color: var(--orange);
    position: absolute;
}

/*Distribuciones*/

.start-x, .start-y, .center-x, .center-y, 
.between-x, .between-y, .end-y, .end-x, .around-x {
    display: flex;
    flex-wrap: wrap;
}

.start-y, .center-y, .between-y, .end-y {
    flex-direction: column;
}

.start-x, .start-y {
    justify-content: start;
    align-items: start;
}

.center-x, .center-y {
    justify-content: center;
    align-items: center;
}

.between-x, .between-y {
    justify-content: space-between;
    align-items: center;
}

.around-x {
    justify-content: space-around;
    align-items: start;
}

.end-y, .end-x {
    justify-content: end;
}

/*Imagen de fondo*/

.imagen-fondo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*Estilos*/
.text-sub {
    position: relative;
    display: inline-flex;
}

button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
}

.text-sub::after {
    content: "";
    height: 3px;
    width: 100%;
    left: 0;
    bottom: -12px;
    background-color: var(--yellow);
    position: absolute;
}

section {
    padding: 4rem 0;
}

.btn-base {
    display: inline-flex;
    background-color: var(--orange2);
    color: var(--white) !important;
    padding: 5px 40px;
    border-radius: 2rem;
    font-size: 15px;
    transition: all 0.5s ease;

    &:hover {
        background-color: var(--yellow);
    }

    &.blue {
        background-color: var(--darkblue2);

        &:hover {
            background-color: var(--darkblue);
        }
    }

    &.red {
        background-color: var(--darkblue2);
        background-color: #EF4444;

        &:hover {
            filter: brightness(1.1);
        }
    }
}

.btn-base2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: rgb(167, 175, 214) !important;
    padding: 13px 25px;
    font-family: 'Jost';
    font-weight: 600;
    border-radius: 2rem;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    border: 1px solid rgb(167, 175, 214) ;

    & i {
        font-size: 18px;
        font-weight: 300;
    }

    &:hover {
        background-color: var(--orange2);
        border-color: var(--orange2);
        color: var(--white) !important;
    }
}

.btn-base3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 25px;
    font-family: 'Jost';
    font-weight: 600;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.5s ease;

    &:hover {
        background-color: var(--orange2);
        transform: scale(1.05);
    }

    &.green {
        background-color:  #16A34A;

        &:hover {
            filter: brightness(1.1);
        }
    }

    &.red {
        background-color: var(--darkblue2);
        background-color: #EF4444;

        &:hover {
            filter: brightness(1.1);
        }
    }
}

.mw-60 {
    max-width: 60%;
}

/* From Uiverse.io by iZOXVL */ 
.btn-valoracion {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    height: 30px;
    width: 50px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 70%
        );
        transform: scale(0);
        transition: transform 0.5s ease;
    }

    &:hover::after {
        transform: scale(4);
    }

    &.si {
        background-color: #8bc34a;
    
        &:hover {
            background-color: #93cf4d;
        }
    }

    &.no {
        background-color: #d02020;
    
        &:hover {
            background-color: #e52121;
        }
    }

}

/*Header*/
/* Nav */

nav {
    position: fixed;
    width: 100%;
    transition: all 0.5s ease-in;
    z-index: 100;
    background-color: var(--skyblue);
    border-bottom: 1px solid var(--white);
    font-family: "Jost";
}

.navbar {
    font-size: 15px;
    font-weight: 500;
    height: 84px;

    & .acciones {
        display: flex;
        position: relative;
        padding-left: 110px;
        
    }

    & .acciones .btn-base {
        background-color: var(--orange);
        display: flex;
        align-items: center;
        padding: 15px 40px;
        
        &:first-of-type {
            background-color: var(--orange2);
            position: absolute;
            left: 0;

            &:hover {
                background-color: var(--yellow);
            }
        }

        &:last-of-type {
            padding-left: 60px;

            &:hover {
                background-color: var(--yellow);
            }
        }
    }
}

.categorias li {
    & a {
        color: var(--darkblue3) !important;
        &:hover {
            color: var(--darkblue3) !important;
        }
    }
}


.categorias li:not(.close):not(.mega-dropdown) {
    margin-inline: 1rem;
    transition: 0.2s all ease;
    margin-bottom: 0;
    font-weight: 500;
    display: flex;
    align-items: center;

    & a {
        position: relative;
        color: var(--darkblue3);
    }

    & a:hover::after {
        content: "";
        height: 1.5px;
        width: 100%;
        left: 0;
        bottom: -5px;
        background-color: var(--orange);
        position: absolute;
    }
}


/* Estado inicial del menú */
.offcanvas-top {
    top: 69.7px !important;
    height: 0;
    background-color: var(--skyblue);
}

/* Animación para expandir el menú */
@keyframes expandMenu {
    from {
        height: 0;
    }
    to {
        height: 430px;
    }
}

/* Animación para colapsar el menú */
@keyframes collapseMenu {
    from {
        height: 430px;
    }
    to {
        height: 0;
    }
}

/* Cuando el menú esté visible */
.offcanvas-top.show {
    animation: expandMenu 0.5s ease-in-out forwards;
}

/* Cuando el menú se oculta */
.offcanvas-top:not(.show) {
    animation: collapseMenu 0.5s ease-in-out forwards;
}

.offcanvas-backdrop.show {
    display: none;
}

.navbar-nav::-webkit-scrollbar{
    width: 0px;
}


/* From Uiverse.io by JulanDeAlb */ 
.navbar-toggler {
    border: none;
}

.hamburger {
    width: 32px;
    height: 32px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    &:focus {
        box-shadow: none;
    }

    & span {
        width: 100%;
        height: 0.125rem;
        border-radius: 0.125rem;
        background-color: var(--orange2);
        box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
        transition: transform .4s, background-color .4s, opacity .4s;
    }
}

.offcanvas-top.show + .hamburger {
    &:hover span:nth-child(1) {
        transform: translateY(11px) rotate(-45deg);
    }

    &:hover span:nth-child(2) {
        transform: translate(-50%);
        opacity: 0;
    }

    &:hover span:nth-child(3) {
        transform: translateY(-11px) rotate(45deg);
    }
}

.logo {
    width: 210px;
}

.mega-menu {
    background-color: #ffc288;
    border-radius: 0.5rem;
    border: none;
    min-width: 200px;
    padding: 10px 0;
    position: relative;
    margin-left: 10px;
}

.mega-menu::before {
    content: "";
    width: 25px;
    height: 25px;
    background-color: #ffc288;
    position: absolute;
    top: -10px;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.mega-menu ul {
    list-style: none;
}

.mega-menu ul li {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400 !important;
    color: var(--orange4);
}

.mega-menu ul li:hover {
    color: rgb(207, 83, 0);
}

.mega-menu a {
    text-decoration: none;
    color: var(--orange4);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


/*Footer*/

footer {
    background-color: var(--darkblue2);
    color: rgb(167, 175, 214);
}

.footer-top {
    & .botones {
        padding: 40px 0;

        & a {
            margin-inline: 1rem;
            text-align: center;
            
        }
    }
}

.footer {
    margin-top: 2rem;
    display: block;
    font-size: 14px;
    background-size: cover;
    min-height: 410px;

    & .entradas li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}

.cantidad {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange2);
    height: 25px;
    width: 25px;
    min-width: 25px;
    border-radius: 50%;
    font-size: 12px;
    color: var(--white);
    padding-top: 1px;
}

footer hr {
    color: var(--white);
    opacity: 0.1;
    position: absolute;
    left: 0;
    width: 100%;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    line-height: normal;
    font-weight: 500;

    & ul {
        margin-bottom: 0;

        & li {
            margin-inline: 0.5rem;
        }
    }
}

.footer a {
    color: rgb(167, 175, 214);
    font-weight: 400;
    transition: all 0.5s ease;

    &:hover {
        color: var(--orange2);
    }
}

.footer h4 {
    font-family: 'Jost';
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.info-empresa {
    max-width: 300px;
}

.eslogan {
    font-size: 1.5rem;
    font-weight: 700; width: 100%;
}

.footer .list-unstyled li{
    margin-top: 0.5rem;
}

.footer .around-x{
    width: 100%;
    max-width: 90%;
}

/*Main*/
main {
    padding-top: 60px;
}


.section-recursos {
    background-color: var(--skyblue);
    padding: 100px 0;

    & p {
        font-size: 17px;
        line-height: 1.52;
    }

    & .form-buscar {
        display: flex;
        width: 100%;
        height: 58px;
        padding: 10px 25px;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
        background: #FFF;
        margin-top: 1.5rem;
        border-radius: 30px;
        border: 2px solid #1a1f25;
        background: #FFF;
    
        & input[type="text"] {
            border: none;
            width: 100%;
            height: 35px;
    
            & button {
                border: none;
                background-color: white;
    
                & i {
                    width: 20px;
                    height: 20px;
                    color: #1a1f25;
                }
            }
    
            &:focus{
                border: none;
                outline: none;
                box-shadow: none;
            }
        }
    }

    & span {
        font-size: 14px;
    }

    & a {
        font-style: italic;
        font-size: 14px;
        color: rgb(255, 102, 0);
        font-family: var(--ft-medium);
    }

    .end-x a span {
        font-style: normal;
        color: var(--black);
        font-family: var(--ft-bold);
        font-size: 27px;
        margin-right: 3rem;
    }

    & .scroll-gif {
        width: 42px;
        margin: 0;
        padding: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }
}

.section-noticias {
    margin: 100px 0;

    & h2 {
        font-size: 30px;
    }

    & .contenedor-noticia {
        height: 100%;
        position: relative;
        margin: 0 0.5;

        & .img-fluid {
            width: 100%;
            height: 190px;
            flex-shrink: 0;
            margin-bottom: 1rem;
        }

        & .tag {
            position: absolute;
            top: 0;
            left: 0;
            padding: 5px 12px;
            background-color: #ffb54c;
            color: var(--black);
            font-size: 11px;
            text-transform: uppercase;
            font-family: 'Jost';
            font-weight: 500;
        }

        &  .info {
            font-family: 'Jost';

            & .titulo {
                font-weight: 600;
                font-size: 22px;
                line-height: 1.3;
                color: #394f71;
                transition: all 0.5s ease;

                &:hover {
                    color: var(--orange2);
                }
            }

            & .fecha {
                padding-top: 1rem;
                text-transform: uppercase;
                font-size: 11px;
                font-family: var(--ft-bold);
                color: rgb(119, 126, 137);
            }

        }
        

    }

}

.section-secciones {
    & .parent {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 1fr 1fr minmax(0, 0.2fr) minmax(0, 1.5fr) minmax(0, 0.5fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    
        & div {
            padding: 50px;
            margin: 0.5rem;
            
            & h4 {
                font-size: 14px;
                text-transform: uppercase;
                font-family: var(--ft-bold);
                letter-spacing: 2.4px;
                margin-bottom: 1rem;
            }

            & p {
                line-height: 1.93;
                margin-bottom: 1rem;
            }

            & a {
                font-family: var(--ft-bold);
                color: var(--white);
                margin-bottom: 2rem;
            }

            & .img-fluid {
                display: block;
            }

        }
    }
        
    & .div1 { 
        grid-area: 1 / 1 / 3 / 3; 
        background-color: #e4e4e4;
        & a {
            color: var(--orange4) !important;
        }
    }
    & .div2 { 
        grid-area: 1 / 3 / 3 / 5;
        background-color: #60b0bb;
        color: var(--white);
    }
    & .div3 { 
        grid-area: 1 / 5 / 4 / 7; 
        background-color: #eece41;
        & a {
            color: rgb(82, 87, 109) !important;
        }
    }
    & .div4 {
        padding-right: 10px !important;
        grid-area: 3 / 1 / 5 / 5;
        background-color: #647a6b;
        color: var(--white);
        display: flex;
        align-items: start;

        & div {
            padding: 0 !important;
            width: 60%;
            margin: 0 !important;
        }
        
    }
    & .div5 {
        grid-area: 4 / 5 / 6 / 7;
        background-color: #348db5;
        color: var(--white);
    }
    & .div6 {
        grid-area: 5 / 1 / 6 / 5;
    }
}

.section-articulos {

    padding: 100px 0;

    & .n_articulos {
        display: block;
        color: rgb(82, 87, 109);
        font-size: 12px;
        margin: 0.5rem 0;
    }

    & p {
        color: rgb(82, 87, 109);
        margin-bottom: 1.5rem;
        line-height: 27px;
    }

    & ul {
        margin-bottom: 1.5rem;
    }

    & ul li {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(82, 87, 109, 0.3);

        & a{
            display: flex;
            align-items: start;
            color: rgba(82, 87, 109, 0.4);
            transition: all 0.5s ease;

            & i {
                margin-top: 3px;
                padding-right: 12px;
                font-size: 20px;
            }

            & span {
                color: var(--text);
                font-family: 'Jost';
                font-size: 18px;
                line-height: 22px;
                transition: all 0.5s ease;
                font-weight: 600;
            }

            &:hover {
                color: var(--yellow);
            }

            &:hover span {
                color: var(--orange2);
            }
        }
    }

    & .ver-mas {
        text-transform: uppercase;
        font-family: 'Jost';
        font-size: 12px;
        font-weight: 600;
        color: var(--orange2);
    }

}

.section-newsletter {
    & .container {
        background-color: #e5e5e5;
        padding: 100px;
    }
}

.foros-section {
    padding: 100px 0;

    & .col-xl-8 > div {
        box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 50px 0px;
    }

    & .panel {
        box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 50px 0px;
        padding: 30px 30px 20px 35px;
        margin-bottom: 40px;
        color: rgb(82, 87, 109);

        & p, & li {
            font-size: 16px;
            line-height: 30px;
        }
        
        & ul li{
            margin-left: 1.5rem;
        }
    }

    & .vista-noticia {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(82, 87, 109, 0.3);

        & img {
            flex-shrink: 0;
            margin-right: 1rem;
            width: 90px;
            height: 90px;
        }

        & a {
            font-family: 'Jost';
            font-weight: 600;
            font-size: 17px;
            color: var(--title);
            transition: all 0.5s ease;
            display: block;
        
            &:hover {
                color: var(--orange2);
            }
        }
    }
    
}

.table {

    & tbody tr:last-child {
        border-bottom: transparent;
    }

    & th {
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-color: #fcfcfc;

        &:first-of-type {
            padding-left: 1.5rem;
        }
        &:last-of-type {
            padding-right: 1.5rem;
        }
    }

    & td {
        padding-top: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px rgba(0, 0, 0, 0.08);
        position: relative;
        &:first-of-type {
            padding-left: 1.5rem;
        }
        &:last-of-type {
            padding-right: 1.5rem;
        }
    }

    & .t-body {
        & tr td:first-child {
            padding-right: 10px;
            min-width: 300px;
        }
    }

    & .delete {
        color: #e52121;
        background-color: #ffd8d8;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 22px;
        width: 22px;
        position: absolute;
        cursor: pointer;
        top: 10px;
        right: 10px;
    }
}

input[type="text"]:not(#buscador):focus, input[type="tel"]:focus, input[type="checkbox"]:focus, 
input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus, input[type="file"]:focus, input[type="date"]:focus, .ck-content:focus, input[type="time"]:focus {
    border: 1px solid var(--yellow) !important;
    box-shadow: 0 0 5px var(--yellow) !important;
}

.form-check-input:checked {
    background-color: var(--yellow) !important;
    border-color: var(--yellow) !important;
}

.portada-section {
    padding: 100px 0;

    & p {
        font-size: 17px;
        line-height: 1.52;
        font-family: var(--ft-medium);
    }
}

.nosotros-section {
    padding: 100px 0;

    & .end-x {
        margin-top: -20px;
        position: relative;
        z-index: -1;
        flex-wrap: nowrap !important;
        align-items: end;

        & img:first-of-type {
            width: 50%;
            height: 50%;
            aspect-ratio: initial;
        }
    }

    & p {
        font-size: 16px;
        line-height: 30px;
    }
}

.equipo-section {
    padding: 100px 0;
    background-color: #f1f1f1;
}

.contenedor-persona {
    text-align: center;
    background-color: var(--white);
    height: 100%;

    & img{
        width: 100%;
        height: 264px;
        flex-shrink: 0;
    }

    & .info {
        padding: 10px 30px 40px 30px;

        & .nombre {
            text-align: center;
            font-family: var(--ft-bold);
            color: #252525;
            font-size: 22px;
            line-height: 22px;
            margin: 1rem 0;
        }
    
        & .cargo {
            text-align: center;
            font-size: 14px;
            font-style: normal;
            line-height: 160%;
            margin: 8px 0 12px 0;
            
        }
    }
}

.razon-section {
    padding: 100px 0;

    & h3 {
        font-size: 18px;
        font-family: var(--ft-medium);
        line-height: 26px;
        letter-spacing: 0px;
        margin-bottom: 1.5rem;
    }

    & h4 {
        font-size: 15px;
        line-height: 1.5em;
        text-transform: none;
        letter-spacing: 0;
        margin-bottom: 1rem;
    }

    & ul li {
        margin-left: 1rem;
    }

    p, li {
        font-size: 16px;
        line-height: 30px;
        color: rgb(122, 122, 122);
    }
}


.indice {
    margin-bottom: 2rem;

    & .link {
        color: var(--black);
        transition: all 0.5s ease;

        &:hover {
            color: var(--orange2);
        }
    }
}

.indice * {
    color: var(--text);
    font-family: 'Jost';
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
    color: #777e89;
    font-size: 11px;
}

#contacto {
    & input {
        height: 40px;
    }

    & textarea {
        height: 150px;
    }
}

.ct-titulo {
    background-color: #fbfafa;
    border-left: 3px solid rgba(119, 126, 137, 0.3);
    margin-bottom: 3rem;

    & h3 {
        padding: 15px 30px;
        font-style: italic;
        font-family: var(--ft-medium);
    }
}

.ct-foro {
    padding: 80px 50px;
    color: rgb(82, 87, 109);
    position: relative;

    & p, & li {
        font-size: 16px;
        line-height: 30px;
    }
    
    & ul li{
        margin-left: 1.5rem;
    }

    & .img-foro {
        margin-inline: auto;
        display: flex;
        padding: 1rem 0 2rem 0;
        max-width: 80%;
    }

    & .form-buscar {
        display: flex;
        height: 40px;
        padding: 10px 20px;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
        background: #FFF;
        border-radius: 30px;
        border: 2px solid #1a1f25;
        background: #FFF;
        margin-top: 1rem;
    
        & input[type="text"] {
            border: none;
            width: 100%;
            height: 32px;
    
            & button {
                border: none;
                background-color: white;
    
                & i {
                    width: 20px;
                    height: 20px;
                    color: #1a1f25;
                }
            }
    
            &:focus{
                border: none;
                outline: none;
                box-shadow: none;
            }
        }
    }

}

.ct-cuenta {
    & h3 {
        font-size: 20px;
    }

    & p {
        font-size: 14px;
        line-height: 1.6;
    }
} 


.contacto-section {

    & p {
        font-size: 17px;
        line-height: 1.52;
        font-family: var(--ft-medium);
    }

    & .col-xxl-5 {
        height: 550px;
    }
}

.section-ubicacion {
    position: relative;
    background-color: #f8f8f8;
    padding-bottom: 100px;

    & .form-contacto {
        background-color: #f6f6f6;
        padding: 50px 30px;
        margin-top: -50px;
        box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 50px 0px;

        & p {
            color: rgb(50, 47, 63);
            font-family: var(--ft-medium);
            font-size: 18px;
            line-height: 26px;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1.5px solid var(--darkblue2);
        }

        & label {
            font-size: 16px;
        }
    }
}

.section-ubicacion label{
    opacity: 0.8;
}

.section-ubicacion textarea {
    height: 150px;
    resize: none;
}

.ct-mapa {
    position: absolute;
    width: 50%;
    top: 70px;
    left: 0;
    bottom: 0;
    z-index: 100;
    filter: grayscale(100);
}

.img-flotante {
    position: absolute;
    width: 40%;
    right: 0;
    top: 10dvh;
    z-index: 0;
}

.login-section {
    background-color: #f1f1f1;
    min-height: 100dvh;
}

.img-login {
    position: absolute;
    left: 3%;
    bottom: 0;
    max-width: 50%;
}


.login-section form {
    background-color: var(--white);
    padding: 50px;
    max-width: 450px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 50px 0px;


    & .p-add2 {
        padding-left: 150px !important;
    }

    & #input-pass {
        position: absolute;
        width: 16px;
        right: 20px;
        cursor: pointer;
    }

    & label, & a, & span{
        color: #000;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    & a {
        color: var(--orange2);
        transition: all 0.5s ease;

        &:hover {
            color: var(--yellow);
        }
    }

    & p {
        font-size: 12.5px;
        margin: 1rem 0;
    }

    & .instruccion {
        position: absolute;
        border-bottom: 1px solid rgba(119, 126, 137, 0.4);
        border-left: 4px solid #71aee5;
        left: 0;
        width: 100%;
        padding: 0 20px;
    }
}

.blog-section {
    padding: 100px 0;
    color: rgb(82, 87, 109);
    
    & p, & li {
        font-size: 16px;
        line-height: 30px;
    }

    & h3 {
        font-family: var(--ft-bold);
        font-size: 16px;
        line-height: 30px;
        color: rgb(82, 87, 109);
        margin: 1rem 0;
    }

    & li {
        margin-left: 1.5rem;
    }
}


.text-grey {
    color: #475569;
}

.opciones-vista {
    & i {
        cursor: pointer;
        transition: all 0.5s ease;

        &:nth-child(2) {
            margin-inline: 1rem;
        }
    }

    & i:hover, & i.selected {
        color: var(--orange2);
    }
}



/* Select personalizado */
.bootstrap-select .dropdown-menu li a:hover {
    background-color: var(--yellow);
}
.bootstrap-select .dropdown-menu li {
    margin: 0 !important;
    font-size: 14px;
}
.bootstrap-select .dropdown-menu li.selected a {
    background-color: var(--orange2) !important;
    color: #fff;
    box-shadow: none;
}


.bootstrap-select .btn.dropdown-toggle {
    background-color: transparent;
    color: rgb(82, 87, 109) !important;
    border-color: #dee2e6;
    height: 100%;
    font-size: 14px;
}
.bootstrap-select .btn.dropdown-toggle:focus {
    outline: none !important;
    border: 1px solid var(--orange2) !important;
    box-shadow: 0 0 5px var(--orange2) !important;
}

.form-orden {
    width: 150px;
    display: flex;
    cursor: pointer;
    margin-right: 1rem;
}

.cuadricula {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 4px 4px 80px 0px rgba(0, 0, 0, 0.06);
    min-height: 340px;
    padding-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    margin-inline: auto;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;

    & h5 {
        margin: 10px 0;
    }

    & .img-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        & .img-fluid {
            border-radius: 8px 8px 0 0;
            width: 100%;
            max-height: 170px;
            height: 170px;
            position: relative;
        }
    }

    & .ver-mas {
        position: absolute;
        z-index: 1;
        padding: 0.2rem 1rem;
        border-radius: 8px;
        opacity: 0;
        background-color: transparent;
        border: 1px solid var(--white);
    
        &:hover {
            background-color: var(--orange2);
            border-color: var(--orange2);
        }
    }

    &:hover {
        box-shadow: 4px 4px 80px 0px rgba(0, 0, 0, 0.15);
    }

    &:hover .ver-mas {
        opacity: 1;
    }

    &:hover .img-container {
        & .img-fluid {
            filter: blur(3px);
        }
    
        &::after {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.4);
        }
    }

    & .info {
        padding: 12px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    
    
        & a {
            color: var(--text);
            transition: all 0.5s ease;
            &:hover {
                color: var(--orange2);
            }
        }
    
    }

    & .descripcion {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        display: none;
    }

    & .between-x {
        padding-inline: 15px;
        align-items: start;
    }
    

}

.cuadricula.lista {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 30px;

    & .img-container {
        width: auto;

        & .img-fluid {
            border-radius: 8px 8px 0 0;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            position: relative;
        }
    }

    & .between-x {
        width: 100%;
    }

    & .ver-mas {
        display: none;
    }

    &:hover .img-container {
        & .img-fluid {
            filter: blur(0px);
        }
    
        &::after {
            display: none;
        }
    }

    & .info {
        padding: 12px 20px;
        flex-direction: column-reverse;
        padding: 10px 0 0 20px;
        justify-content: end;
        & a {
            color: var(--text);
            transition: all 0.5s ease;
            &:hover {
                color: var(--orange2);
            }
        }
    }

    & .descripcion {
        display: block;
    }
}


.redes {
    display: flex;

    & a{
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text);
        border: 1.5px solid var(--text);
        font-size: 14px;
        transition: all 0.5s ease;

        &:hover{
            opacity: 0.05;
            background-color: var(--orange2);
            border-color: var(--orange2);
            opacity: 1;
            color: var(--white);
        }
    }
}

/*Acordeon*/

.accordion {
    --bs-accordion-bg: var(--white);
}

.accordion-body {
    padding: 0;
    padding-bottom: 2rem;
}

.accordion-header button {
    border-radius: 0px !important;
}

.accordion-item {
    border: none;
    border-radius: 0px !important;
}

.accordion-button {
    padding: 30px 0;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--black);
}

.accordion-button.collapsed:focus, .accordion-button.collapsed:active {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed):focus, .accordion-button.collapsed:active {
    box-shadow: none !important;
}


/*configuracion inicial*/
.accordion-button::after {
    transform: var(--bs-accordion-btn-icon);
}


/*cuando no esta activo*/
.accordion-button:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon);
}

/*cuando esta activo*/
.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.filtro-seleccionados {
    display: flex;
    flex-wrap: wrap;

    & span {
        border: 1px solid var(--yellow);
        padding: 3px 5px;
        margin-right: 8px;
        border-radius: 8px;
        padding-right: 18px;
        position: relative;
        cursor: pointer;
        background-color: var(--yellow);
        margin-bottom: 0.5rem;
    }

    & span::after {
        content: "x";
        font-size: 12px;
        top: 0;
        right: 5px;
        position: absolute;
        color: var(--orange4);
    }

}

.portada {
    height: 300px;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: start;

    & .img-fluid {
        width: 170px;
        height: 170px;
    }


    & .info {
        padding-left: 2.5rem;
        color: var(--white);

        & h3, & a {
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        & p {
            padding-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
    }
}

/* From Uiverse.io by andrew-demchenk0 */ 
.like input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.like {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    user-select: none;
    

    & svg {
        position: relative;
        top: 0;
        left: 0;
        height: 35px;
        width: 35px;
        transition: all 0.3s;
        fill: rgba(255, 255, 255, 0.7);

        &:hover {
            transform: scale(1.1);
        }
    }

    & input:checked ~ svg {
        fill: #E3474F;
    }
}

.next i, .prev i {
    font-size: 28px;
    color: var(--white);

}

.next, .prev {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    top: calc(50% - 30px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.prev {
    right: 30px;
}

.next {
    left: 30px;
}

.table {
    border: 1px solid rgba(122, 122, 122, 0.2);
    
    & th {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    } 

    & td {
        padding: 1rem;
    }
}

.info-contacto {
    & a {
        display: block;
        color: var(--text);
        transition: all 0.5s ease;
        padding: 5px 0;

        &:hover {
            color: var(--orange2);
        }
    }
}

.tb-horario {
    width: 100%;
}

.ct-blog {
    margin-bottom: 3rem;

    & .img-fluid {
        flex-shrink: 0;
        width: 33%;
        height: auto;
        margin-right: 1rem;
    }

    & h3 a{
        font-size: 22px;
        line-height: 1;
        color: var(--title);

        &:hover {
            color: var(--orange2);
        }
    }

    & .cuerpo {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

.meta-data, .meta-data p {
    text-transform: uppercase;
    font-family: 'Jost';
    font-size: 11px;
    font-weight: 600;
    color: rgb(119, 126, 137);

    & .autor {
        color: rgb(28, 30, 48);
        margin-left: 1rem;
    }
}

.pagination_buttons{
    display: flex;
    gap: 20px;

    & button{
        border: none;
        background: transparent;
        height: 30px;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        color: var(--orange2);
        border-radius: 50%;
        cursor: pointer;

        &.active{
            background-color: var(--orange2);
            color: white;
        }

        &:hover{
            background-color: var(--orange2);
            color: white;
        }
    }
}

.img-portada {
    width: 100%;
}

.valoracion {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 0.4rem;
}

.locales-cerca {
    margin-bottom: 1rem;
}

.user-logeado {
    align-items: center;
    position: relative;

    & .img-user {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 0.5rem;
    }

    & .op-user {
        & a:first-child {
            font-family: 'Jost';
            font-weight: 700;
            color: rgb(11, 49, 79);
            font-size: 19px;
            display: block;
        }

        & a:last-child {
            color: var(--text);
            transition: all 0.5s ease;

            &:hover {
                color: var(--orange2);
            }
        }
    }
}


.opciones-cuenta {
    display: flex;
    align-items: start;
    background: var(--white);
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.opciones-cuenta ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin-left: 20px;
}

.opciones-cuenta ul li {
    min-height: 38px;
    color: var(--grey);
    width: 100%;
    transition: 0.2s all ease;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    margin: 4px 0;
}

.opciones-cuenta ul li.seleccionado {
    font-weight: 800;
    background-color: #ffe3bc;
    color: #474141;
    font-weight: 700;
}

.ct-mensaje {
    margin-top: 1rem;
    padding: 8px 10px;
    border: 1px solid var(--yellow);
    background-color: #ffffdf;
    border-radius: 3px;
    
    & p {
        font-size: 13px;
    }
}

.perfil-actual {
    max-width: 120px;
    text-align: center;
    margin-inline: auto;
}

.ct-cuenta span.btn-base {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text) !important;
    cursor: pointer;

    &:hover {
        background-color: var(--orange);
        color: var(--white) !important;
    }
}

.generar_pass {
    margin-top: 1rem;

    & .nivel {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        background-color: #c1e1b8;
        border: 1px solid #92b78b;
        margin-top: 1rem;
    }
}

.panel-dashboard {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 50px 0px;
    padding: 30px 20px 20px 20px;
    color: rgb(82, 87, 109);
    border-radius: 1rem;
    height: 100%;

    & p, & li {
        font-size: 16px;
        line-height: 30px;
    }
    
    & ul li{
        margin-left: 1.5rem;
    }

    &.encabezado {
        box-shadow: none;
        background: transparent;
        margin-bottom: 0 !important;
    }
}

.op-panel {
    list-style: none;

    & .user-logeado {
        padding: 15px 25px;
    }

    & li {
        padding: 15px 25px;
        border-radius: 1rem;
        margin: 0.5rem 0 !important;
        color: rgb(119, 126, 137);
        transition: all 0.5s ease;
        font-family: 'Jost';
        font-size: 14px;
        font-weight: 500;

        &:hover, &.selected {
            background-color: #8d9eae;
            color: var(--white);
        }
    }

    & .center-y {
        margin-top: 1rem;
        padding: 30px;
        border-radius: 0.5rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.panel-principal {
    margin-inline: 1rem;

    & h3 {
        font-size: 14px;
        line-height: 27px;
        color: rgb(106, 108, 111);
        font-weight: 600;
        margin-bottom: 0;
    }

    & h4 {
        font-size: 11px;
        line-height: 21px;
        color: rgb(106, 108, 111);
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0px;
    }

    & .icono {
        font-size: 30px;
    }

    & .digito {
        font-size: 22px;
        line-height: 26px;
        font-weight: 700;
        color: var(--orange2);
        text-align: center;
        margin-inline: auto;
        display: flex;
        justify-content: center;
    }

    & .total {
        font-family: 'Jost';
        font-size: 40px;
        line-height: 48px;
        color: var(--title);
        font-weight: 700;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .subtotal {
        font-family: 'Jost';
        font-size: 20px;
        line-height: 24px;
        color: var(--title);
        font-weight: 500;
    }

    & .encabezado {
        margin-bottom: 1.5rem;

        & h2 {
            font-size: 24px;
            line-height: 32px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0;
        }

        & span {
            font-size: 12px;
        }
    }

    & .indice {
        margin-bottom: 0;

        & * {
            font-size: 12px;
        }
    }

    & .indice * {
        color: var(--text);
        font-family: 'Jost';
        text-transform: none;
        font-weight: 500;
        font-style: normal;
        color: #777e89;
    }

    & input[type="date"] {
        max-width: 150px;
    }
}

.progress {
    height: 11px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.06);
}

.progress-bar {
    height: 11px;
    background: var(--orange2);
    position: relative;
    border-radius: 5px;
    /*Porcentaje de progreso*/
    &.listas {
        width: 100%;

    }

    &.oferta {
        width: 0%;
    }

    &.eventos {
        width: 0%;
    }
}

.acciones-panel {
    display: flex;
    justify-content: end;
    min-width: 140px;
}

.accion {
    border-radius: 8px;
    display: flex;
    padding: 6px;
    align-items: flex-start;
    gap: 10px;
    border: none;
    transition: all 0.5s ease;
    min-width: 30px;

    &.ver {
        background: #1E293B;
    }

    &.mensaje {
        background: #F97316;
    }

    &.editar {
        background: #22C55E;
    }

    &.eliminar {
        background: #EF4444;
    }

    &.estado {
        background-color: #2b9595;
        color: var(--white) !important;
        & i {
            font-weight: 300;
            font-size: 20px;
        }
    }

    &:hover {
        filter: brightness(1.1);
    }

}

.emprendimientos .ct-emprendimiento:not(:last-child) {
    margin: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
} 

.ct-emprendimiento {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(146, 151, 157);

    & .img-fluid {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    & .nombre {
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        display: block;
        color: var(--title);
    }

    & .info-add {
        font-size: 11px;
    }

    & .estado {
        font-size: 12px;
        color: rgb(146, 151, 157);
        margin-bottom: 0;
    }

    & .estadisticas {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    & .tag {
        font-weight: 400;
        font-size: 11px;
        min-width: 80px;
        height: 30px;
        border-radius: 30px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        color: var(--white);
        margin-right: 10px;
        padding-inline: 10px;
        text-transform: uppercase;
        margin-bottom: 10PX;
        width: 100px;
        text-align: center;
        
        &.style1 {
            background-color: #FEE2E2;
            color: #EF4444;
        }
        &.style2 {
            background-color: #FEFCE8;
            color: #EAB308;
        }
        &.style3 {
            background: #DCFCE7;
            color: #16A34A;
        }
    }
}

.acciones-lista {

    & > * {
        margin-bottom: 0.5rem;
        padding-inline: 1rem;
    }

    & > :nth-child(2), & > :nth-child(3) {
        margin-inline: 0.2rem;
    }
}

.lista {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 50px 0px;
    padding: 30px 20px 20px 20px;
    margin-bottom: 0.8rem;
    color: rgb(82, 87, 109);
    border-radius: 1rem;
    background-color: var(--white);
}

.op-filtros {
    & .form-buscar {
        border-radius: 30px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #FFF;
        display: flex;
        width: 200px;
        height: 40px;
        padding: 10px 20px;
        justify-content: space-between;
        align-items: center;
        position: relative;

        & input {
            max-width: 90%;
        }

        & button {
            position: absolute;
            right: 15px;
        }
    }
}

.ct-productos .cuadricula {
    min-height: 0;

    & .img-fluid {
        max-height: 150px;
        height: 150px;
    }
}

.formulario {
    padding: 50px 0;
}

.wizard-steps-block {
    margin-top: 39px;
}

#add-event-tab .step-steps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 0;
}

#add-event-tab .step-steps > li {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 0 0 25%;
}

#add-event-tab .step-steps > li:before {
	background-color: #ededed;
    height: 5px;
    left: 50%;
    top: 20px;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#add-event-tab .step-steps > li > a > .number {
	width: 24px;
	height: 24px;
	background-color: #d1d1d1;
	border: 0px solid;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#add-event-tab .step-steps > li > a > .number:before {
	background-color: rgba(221, 221, 211, 0.3);
	box-shadow: 0 0 0 rgba(221, 221, 211, 0);
	height: calc(100% + 16px);
	width: calc(100% + 16px);
	top: -8px;
	left: -8px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#add-event-tab .step-steps > li > a > .step-name {
	font-weight: 500;
	color: #b2b2b2;
	font-size: 14px;
	margin-top: 20px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-transform: none;
}

#add-event-tab .step-steps > li:last-child:before {
	width: 0;
}

#add-event-tab .step-steps > li.active > a > .number,
#add-event-tab .step-steps > li.done > a > .number {
	background-color: var(--orange3);
}

#add-event-tab .step-steps > li.active > a > .number:before,
#add-event-tab .step-steps > li.done > a > .number:before {
	background-color: rgba(255, 102, 0, 0.3);
}

#add-event-tab .step-steps > li.active > a > .step-name,
#add-eventevent-tab .step-steps > li.done > a > .step-name {
	color: #333;
}

#add-event-tab .step-steps > li.done:before {
	background-color: var(--orange3);
}

#add-event-tab .step-steps > li.done > a > .number:after {
	display: none;
}

#add-event-tab > .step-content {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	border: 0px solid;
	border-radius: 0px;
	padding-top: 35px;
}

#add-event-tab > .step-content .title-icon {
	margin-bottom: 25px;
}

.default-event-thumb {
    border: 1px dashed #bbb;
    height: 200px;
    overflow: hidden;
    position: relative;

    &.icono {
        width: 200px;
    }
}

.default-event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-event-thumb-btn {
	display: inline-block;
    color: #e44d3a;
    font-size: 16px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 600;
    margin-right: 0;
    width: 100%;
}

.default-event-thumb-btn .thumb-change-btn [type="file"] {
	height: 0;
	overflow: hidden;
	width: 0;
	float: left;
}

.default-event-thumb-btn .thumb-change-btn [type="file"] + label {
	color: #000;
    background: #fff;
    Border: 1px solid #bbb;
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	font-size:14px;
	font-weight: 500;
	outline: none;
	padding: 12px 30px;
	position: relative;
	transition: all 0.3s;
	vertical-align: middle;
	margin: 0;
	float: right;
}

.default-event-thumb-btn .thumb-change-btn [type="file"] + label:hover {
	background: var(--orange);
	color: #fff;
}

.stepper-data-set .content-holder label {
    font-size: 14px;
    font-weight: 500;
}

#add-event-tab .step-footer.step-tab-pager {
    text-align: center;
}

.input-content {
    padding-left: 75px;
}

.step-footer {
    & .btn-base3 {
        margin-inline: 0.5rem;
    }
}

.title-field {
    font-weight: 600;
}

.tab-from-content {
    & .selectpicker button {
        height: 30px;
    }

    & h4 {
        font-size: var(--fs-md);
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
    }

    & p {
        font-size: 14px;
    }

    & .descripcion {
        font-size: 16px;
    }

    & textarea, & .ck-content {
        min-height: 150px;
    }

    & .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 100%;
        height: 38px;
    }
}

#estado-oferta, #tiempo_restante {
    display: flex;
    align-items: center;

    & input {
        display: none;
    }

    & label {
        padding: 5px 10px;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.5s ease;

        &:first-of-type {
            border-radius: 5px 0 0 5px;
        }

        &:last-of-type {
            border-radius: 0 5px 5px 0;
        }
    } 
}

.si:checked  + label {
    background-color: #16A34A;
    color: var(--white);
}

.no:checked  + label {
    background-color: #EF4444;
    color: var(--white);
}

.link_video {
    margin-bottom: 1rem;
}

.lista-vacia {
    padding: 1rem;

    & .img-fluid {
        max-width: 400px;
        width: 100%;
    }

    & .mensaje {
        font-size: var(--fs-md);
        font-weight: 700;
        max-width: 500px;
        text-align: center;
        padding: 1.5rem 0;
    }

    & span {
        font-size: var(--fs-base);
        max-width: 500px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.carrusel-clientes .cliente {
    display: flex;
    align-items: center;
    justify-content: center;
}

.op-soluciones {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.op-soluciones li {
    display: flex;
    padding-inline: 1rem;
    margin-bottom: 1rem;
}

.op-soluciones li a {
    color: #002345;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    padding: 0.5rem;
    border-radius: 20px;
    transition: 0.5s ease all;
}

.op-soluciones li a:hover, .op-soluciones li.active a {
    background-color: var(--orange2);
    color: var(--white);
}

.op-soluciones li:not(:last-child){
    border-right: 2px solid var(--orange2);
}

.plan {
    margin: 75px 0;
}

.plan p{
    color: #525C66;
    font-size: 18px;
    font-style: normal;
    line-height: 1.51;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
    height: 35px;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: var(--orange2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    transition: all 0.5s ease;
    cursor: pointer;

    &:hover {
        filter: brightness(1.2);
    }
}

.paquete {
    color: #007AB8;
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
}

.plan .tag {
    display: inline-flex;
    height: 22px;
    padding: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    border-radius: 38px;
    background: linear-gradient(90deg, #007AB8 0%, #E07912 100%);
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    margin-left: 1rem;
}

.beneficio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 6px 24px -1px rgba(0, 0, 0, 0.06);
    padding: 25px 14px;
    margin-inline: auto;
    max-width: 300px;
    height: 100%;
}


.beneficio img {
    margin-bottom: 1rem;
}

.beneficio h3 {
    color: #011932;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.32;
    transition: all 0.5s ease;
}

.beneficio:hover h3 {
    color: var(--orange);
}

.beneficio p {
    color: #868F98;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.section-preguntas .accordion-item:not(:first-child) {
    border-top: 1px solid #F3F5F6;
}

.section-preguntas h2, .accordion-header span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
}

.accordion-header span {
    font-size: 20px;
}

.section-preguntas h3 {
    color: #011932;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.popup {
    max-width: 600px;
    width: 90%;
    min-height: 300px;
    max-height: 95dvh;
    padding: 30px 30px 30px 30px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFF 0%, #E2E8F0 100%);
    box-shadow: -15px 20px 50px 0px rgba(9, 39, 76, 0.50);
    position: relative;
    position: fixed;
    z-index: 1000 !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow: auto;
    scrollbar-width: none;

    & h2 {
        text-align: center;
        color: #09274C;
    }

    &::-webkit-scrollbar {
        display: none;
    }
}

.cerrar_modal{
    position: fixed;
    cursor: pointer;
    margin-inline: 0;
    font-weight: 700;
    top: 10px;
    right: 15px;
}

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100 !important;
    top: 0;
    left: 0;
    background-color: rgba(36, 34, 35, 0.8);
    backdrop-filter: blur(1px);
    z-index: 9;
    max-height: 100vh;
    overflow-y: auto;
    padding-bottom: 6rem;
}


.zoom-in-effect-2 {
    animation: zoomIn-2 0.5s forwards;
}

@keyframes zoomIn-2 {
    from {
        transform: scale(0) translate(-50%,-50%);
        opacity: 0;
    }
    to {
        transform: scale(1) translate(-50%,-50%);
        opacity: 1;
    }
}

.popup h2 {
    color: #007AB8;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.36;
}

.popup h3 {
    color: #525C66;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.52;
    max-width: 420px;
    margin-inline: auto;
}

.popup .center-x p {
    color: #007AB8;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    max-width: 300px;
    text-align: center;
}

.info-container {
    height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.info-container::-webkit-scrollbar {
    display: none;
}

/* From Uiverse.io by boryanakrasteva */ 
/* .ct-scroll {
    width: 30px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: none;
    outline: 2px solid var(--orange2);
    box-shadow: 0px 0px 10px var(--orange2);
    position: sticky;
    bottom: 20px;
    right: 0;
    left: 0;
    margin-inline: auto;
    z-index: 100;
}

.scroll {
    width: 5px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--orange2);
    box-shadow: 0px 0px 10px var(--orange2);
    animation: scroll_4013 2s linear infinite;
    transform: translateY(40%);
} */

.scrolldown {
    --sizeX: 30px;
    --sizeY: 50px;
    position: relative;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(sizeX / 2);
    border: calc(var(--sizeX) / 10) solid var(--orange2);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
    cursor: pointer;
    position: sticky;
    bottom: 20px;
    right: 0;
    left: 0;
    margin-inline: auto;

}

.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--orange2);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px rgba(0, 0, 0, 0.1);
}

@keyframes scrolldown-anim {
    0% {
        opacity: 0;
        height: 6px;
    }

    40% {
        opacity: 1;
        height: 10px;
    }

    80% {
        transform: translate(0, 20px);
        height: 10px;
        opacity: 0;
    }

    100% {
        height: 3px;
        opacity: 0;
    }
}

.chevrons {
    padding: 6px 0 0 0;
    margin-top: 48px;
    margin-left: -2px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    bottom: 20px;
    right: 0;
    left: 0;
}

.chevrondown {
    margin-top: -6px;
    position: relative;
    border: solid var(--orange2);
    border-width: 0 3px 3px 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
    animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
    animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
    from {
      opacity: 0;
    }

    to {
      opacity: 0.5;
    }
}

@keyframes scroll_4013 {
    0% {
        transform: translateY(40%);
    }

    50% {
        transform: translateY(90%);
    }
};


html {
    width: 100dvw !important;
    overflow-x: hidden !important;
}