:root {
    /****************** COLORS *****************/
    --color-background: #fff;
    --color-darker: #0c0e26;
    --color-dark: #13173f;
    --color-medium: #272a4e;
    --color-semi: #5AAC4E; /*#818181;*/
    --color-light: #898b9f;
    --color-lighter: #edf0ff;
    /* OTHERS */

    --color-white: #fff;
    --color-muted-white: #e5f1e6;
    --color-secondary-dark: #13173f;
    --color-secondary-medium: #232a73;
    --color-vertical1: #004185;
    --color-vertical2: #511c74;
    --color-vertical3: #008641;
    --color-vertical4: #00aeef;
    --color-vertical5: #f6871f;
    --color-vertical6: #2b457e;
    --color-vertical7: #1769a3;
    --color-unsuscribe: #d85e5e;
    --color-vertical-secondary1: #f6c79b;
    --color-vertical-secondary2: #bfe2ef;
    --color-vertical-secondary3: #93d4b2;
    /****************** TYPOGRAPHY *****************/

    --font-primary: "kanit", sans-serif;
    --font-secondary: "kanit", sans-serif;
    /******************* FONT SIZE ******************/

    --size-biggest: 22px;
    --size-bigger: 18px;
    --size-big: 16px;
    --size-intermediate: 14px;
    --size-medium: 13px;
    --size-small: 12px;
    --size-smaller: 11px;
    --size-smallest: 10px;
    /****************** FONT WEIGHT *****************/

    --weight-light: 400;
    --weight-medium: 600;
    --weight-strong: 700;
}
/*******************************************************
												GENERAL
********************************************************/
/**,
*::before,
*::after {
    font: inherit;
}*/

* {
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

h2 {
    font-size: var(--size-big);
    font-weight: var(--weight-medium);
    margin-bottom: 0;
}

select {
    background-color: var(--color-white);
    width: 98%;
    padding: 8px;
}

/*********CLASES GENERALES***********/
.f-col {
    display: flex;
    flex-direction: column;
}

.f-row {
    display: flex;
    flex-direction: row;
}


.btn-secondary {
    cursor: pointer;
}

/*******************************************************
												HEADER
********************************************************/
.navigation-bar {
    background-color: var(--color-white);
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    border: none;
    border-bottom: 1px solid #a5dc86;
    min-height: 109px !important;
}

.navigation-bar-container ul {
    padding: 30px 60px;
    position: absolute;
    top: 109px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #232323;
    display: none;
    overflow-y: scroll
}

    .navigation-bar-container ul::-webkit-scrollbar {
        display: none
    }

.navigation-bar-container a {
    width: fit-content;
    height: fit-content
}

    .navigation-bar-container a > img {
        max-width: 315px !important;
        max-height: 80px;
        margin: 15px 20px 0 0;
        width: 90%
    }

.navigation-bar-container li {
    background-color: #232323;
    border-bottom: 1px solid #3b373b;
    position: relative
}

    .navigation-bar-container li a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        color: #aaa;
        font-size: 14px;
        text-transform: uppercase;
        padding: 20px 0;
        justify-content: space-between
    }

.navigation-bar__menu li {
    transition: background-color 0.6s ease;
}

    .navigation-bar__menu li:hover {
        background-color: #28942D
    }

        .navigation-bar__menu li:hover a {
            color: #fff
        }

#menu__list .submenu {
    position: absolute;
    background-color: #232323;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: none;
    display: block;
    flex-direction: column;
    width: 100%;
    height: max-content;
    top: 77px;
    align-items: flex-start;
    z-index: 999;
}

    #menu__list .submenu.open {
        max-height: 500px;
        transition: max-height 0.8s ease;
        top: 62px;
    }

    #menu__list .submenu li {
        display: block;
        margin: 0
    }

        #menu__list .submenu li a {
            display: block;
            padding: 15px;
            color: #cbd6d6;
            background-color: #232323;
            text-decoration: none;
            text-transform: initial;
            font-weight: 300;
            font-size: 14px;
            transition: background-color 0.6s ease;
        }

        #menu__list .submenu li:hover a {
            background-color: #28942D;
            color: #fff;
            z-index: 999
        }

/* Submenú abierto al hacer hover sobre el elemento del menú */
.navigation-bar__menu > li .submenu li a:hover {
    display: block;
}

/* Submenú abierto cuando algún elemento dentro del submenú tiene foco */
.navigation-bar__menu > li .submenu li a:focus-within {
    display: block;
}

.glyphicon-menu-hamburger {
    color: #fff;
    display: inline-block;
    width: 20px;
    height: auto
}

.menu__icon,
.menu__icon-close {
    position: absolute;
    right: 20px;
    top: 40px;
    font-size: 25px;
    background-color: transparent;
    z-index: 999
}

.menu__icon-close {
    display: none
}

.icon-arrow-down {
    font-size: 12px
}

.navigation__media {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.navigation__media-container {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #3b373b
}

.icon-social {
    color: #AAAAAA;
    border-left: 1px solid #3b373b;
    padding: 20px 0px;
    width: 100%;
    text-align: center;
}

a.icon-social {
    height: 100%;
    width: 100%
}

.icon-twitter img {
    max-width: 16px
}

/********************* TITLE ************************/

.main-content__title-container {
    margin-top: 64px;
    height: 100vh;
    align-content: center;
    padding: 20px;
}

.main-content .main-content__title-container {
    margin-top: 0;
}

.main-content .top-bar{
    top:50px;
}

/*******************************************************
									    EXPOSITORES

											 MI AGENDA

							       MIS REUNIONES
********************************************************/
.modalover .exhibitors-detail__section .exhibitors-detail__list li a {
    text-decoration: none;
}

.info-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 11px 0px;
}

    .info-container > div {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.exhibitors-content,
.meetings,
.schedule,
.schedule__elements,
.meetings__elements,
.exhibitors-detail__logo,
.team {
    cursor: pointer;
}

.exhibitors-name {
    height: 40px;
    bottom: -47px;
}

.exhibitors-address {
    font-size: 11px;
    margin: 5px auto;
    text-align: center;
}


.stand-social {
    margin-top: 20px;
    margin: 5px auto;
    width: fit-content;
    background-color: white;
}

.stand-menu {
    display: flex;
    flex-wrap: wrap;
    order: 3;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #28942d;
    font-size: 14px;
}

    .stand-menu li a {
        padding: 0.5rem 1rem;
        background: 0 0;
        border: 0;
        border-radius: 0.25rem;
        box-shadow: rgb(17 17 26 / 10%) 0px 1px 0px;
        font-size: 16px;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
        position: relative;
        overflow: hidden
    }

        .stand-menu li a:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 1px;
            background: #28942d;
            transition: left .5s, width .5s;
            box-sizing: border-box;
        }

        .stand-menu li a:hover:after {
            left: 0;
            width: 100%; /* Cambia el ancho a 100% al hacer hover */
        }

.stand-social a {
    padding: 10px 10px 0px 10px;
}

.stand-social i {
    color: #28942d
}

    .stand-social i:hover {
        color: #1a601d
    }

.schedule__elements {
    height: fit-content;
}

.schedule-content__day,
.meetings-content__day,
.networking__assistants {
    padding-bottom: 11px;
}

.networking__elements-container, exhibitors-detail__list {
    overflow-y: visible;
}

#productos .exhibitors-detail__list {
/*    overflow-x: visible !important;
*/    column-count: 1;
    column-gap: 1em;
    height: 100%;
    padding: 0 0 40px;
/*    overflow-y: visible;
*/}

#productos .list__item {
    width: 100%;
    break-inside: avoid;
    padding: 10px;
    margin: 0 0 15px 0;
}

/*******************************************************
												EXPOSITORES
********************************************************/
#productos > ul > li > div > div > div > div, #productos > ul > li > div > div > div {
    /*text-align: left !important;*/
    width: 100%;
    font-size: 14px !important;
}

.htmlformat {
    text-align: left;
}

.htmlformat * {
    font-size: 0.9em !important;
    line-height: 1.4em !important;
    overflow-wrap: break-word;
    text-align:left;
}

.htmlformat strong {
    font-size: 14px !important;
}

.exhibitors__container {
    overflow-x: hidden;
    height: 100%;
    overflow: visible;
}

.section__search-container {
    margin: 24px 0 15px 0;
}

.exhibitors__categories {
    display: flex;
    flex-direction: row;
    width: 100vw;
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 20px;
}

    .exhibitors__categories::-webkit-scrollbar {
        width: 0;
    }

    .exhibitors__categories div.dot {
        content: "";
        display: inline-block;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        margin-right: -3px;
    }

.exhibitors__category {
    margin-right: 25px;
    text-transform: uppercase;
    font-size: var(--size-small);
    font-family: var(--font-secondary);
    opacity: 0.5;
}

.modal__buttons-container {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.all-exhibitors__container {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    justify-items: center;
}

.all-exhibitors__element-container {
    width: 100%;
}

    .all-exhibitors__element-container .btn-general {
        margin: 12px 0px 0 0;
        border: 1px solid transparent;
        box-shadow: 1px 1px 3px #868686;
        box-sizing: border-box;
        position: relative;
        gap: 10px;
        width: 100%;
        transition: box-shadow 0.4s ease-in-out
    }

        .all-exhibitors__element-container .btn-general:hover {
            box-shadow: #28942da3 0px 5px 15px;
        }

            .all-exhibitors__element-container .btn-general:hover::after {
                opacity: 0.8
            }

        .all-exhibitors__element-container .btn-general > img {
            filter: saturate(0) brightness(100%) invert(100%);
        }

.all-exhibitors__element p {
    font-size: 14px;
    text-align: left;
    min-width: 160px;
}

.exhibitors__container .btn-general span {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    height: 100%
}

.all-exhibitors__element-logo {
    width: 100%;
    height: 110px;
    align-items: center;
    overflow: hidden;
    border-radius: 0px;
}

    .all-exhibitors__element-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        width: 100%;
    }

.exhibitors-detail__info .col2:empty {
    display: none
}

.exhibitors-detail__info:has(.col2:empty) {
    grid-template-columns: 1fr
}

@media(min-width:768px) {

    .exhibitors__container {
        max-width: 500px;
        margin: 0 auto;
        padding: 0
    }

    .all-exhibitors__element {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        height: 100%;
    }

    .exhibitors__search-container {
        margin: 24px 0 55px 0
    }

    .all-exhibitors__container {
        grid-template-columns: repeat(3,auto);
        gap: 24px;
        width: fit-content;
        justify-content: center;
    }

    .all-exhibitors__element-container {
        width: 150px;
        height: 150px;
        margin-bottom: 2px;
    }

        .all-exhibitors__element-container .btn-general {
            margin: 0;
            height: 100%;
            width: 100%;
            padding: 20px
        }

            .all-exhibitors__element-container .btn-general > img {
                display: none
            }

    .exhibitors__container .btn-general span {
        flex-direction: column;
        width: 100%
    }

    .all-exhibitors__element p {
        min-width: fit-content;
        text-align: center;
        font-size: 12px
    }

    #productos .exhibitors-detail__list {
        column-count: 2;
    }
}

@media(min-width:992px) {
    .all-exhibitors__container {
        grid-template-columns: repeat(4,auto);
    }

    .exhibitors__container {
        max-width: 675px;
    }

    #productos .exhibitors-detail__list {
        justify-content: space-evenly;
    }
}

/* DETALLE EXPOSITORES */
.modal__details {
    padding: 0;
}

.exhibitors-logo {
    width: auto;
    max-width: 90%;
    max-height: 90%;
}

.btn-location {
    margin: 5px auto;
}

.exhibitors-detail__sticky-bar {
    position: sticky;
    top: 0;
    width: 103%;
    background-color: white;
    z-index: 10;
    align-self: center;
}

.section-anchor {
    position: absolute;
    top: -140px;
}

.exhibitors-detail__identity .details__info {
    flex: 40%;
    align-items: center;
    gap: 15px;
}

.exhibitors-detail__identity .details__multimedia {
    width: 100%;
    gap: 30px;
}

    .exhibitors-detail__identity .details__multimedia .container-img {
        flex: 1;
        width: 100%;
        height: 100%;
        min-width: 0;
        justify-content: center;
        display: flex;
        height: 400px
    }

        .exhibitors-detail__identity .details__multimedia .container-img img {
            width: auto;
            height: 100%;
            max-width: 100%;
            object-fit: contain;
            margin-top: 20px;
        }

.exhibitors-detail__container {
    padding: 45px 10px 10px 15px;
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 1100px;
    margin: 0 auto
}

.exhibitors-detail__identity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 30px;
}

    .exhibitors-detail__identity .btn-back {
        position: absolute;
        top: 45px;
        left: 20px;
    }

.exhibitors-detail__name {
    margin: 28px 0;
    order: 1;
    font-weight: 500;
    line-height: 1.2;
    font-size: 2.5rem;
    text-align: center;
}

.exhibitors-detail__logo {
    margin: 0;
    width: 160px;
    padding: 10px;
}

.exhibitors-detail__social {
    display: inline;
    margin-top: 10px;
}

.exhibitors-detail__info {
    order: 4;
    font-size: 12px;
    text-align: left;
}

    .exhibitors-detail__info .col1 {
        padding: 30px;
    }

    .exhibitors-detail__info .col2 {
        padding: 0 30px;
    }

.exhibitors-detail__list{
    overflow:visible;
}
.exhibitors-detail__container h2 {
    padding-top: 10px;
    font-size: 24px !important;
    font-weight: 300;
    color: #3B373B;
    height: fit-content;
}

    .exhibitors-detail__container h2:after {
        content: "";
        background: linear-gradient(102.9deg, rgba(31,115,47,0.7) 0%,rgba(40,142,193,0.7) 100%);
        display: inline-block;
        height: 3px;
        width: 100%;
        margin-bottom: 25px;
    }

.exhibitors-detail__info p {
    margin: 10px 0 10px;
}

.exhibitors-detail__section {
    margin-top: 30px;
    position: relative;
    text-align: left;
}

.team__member {
    font-size: 14px;
    line-height: 25px;
}

.exhibitors-detail__container .list__item {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 10px;
    margin: 0 0 16px;
    justify-content: center;
    border: none
}

#docs .exhibitors-detail__list .list__item,
#docs .exhibitors-detail__list .list__item .list__item-container {
    padding: 0
}

#docs .img-container {
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

#docs .list__item-info {
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding: 20px 15px 20px 0;
    text-align: left;
}

#productos .list__item-container,
#productos .list__item-info {
    height: 100%;
    width: 100%
}

#productos .list__item-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

    #productos .list__item-info p {
        grid-column: 2;
        order: 2
    }

        #productos .list__item-info p:not(:first-of-type) {
            margin-right: auto;
            order: 4
        }

        #productos .list__item-info p:first-of-type {
            font-size: 20px;
            color: #3B373B;
            margin-top: 15px;
            width: 100%;
        }

#productos p span {
    font-weight: 600;
    font-style: normal;
    color: #3B373B
}

#productos .list__item {
    border: none !important;
}

#productos .list__item-info img {
    order: 1;
    max-width: 100%;
/*    max-width: max-content !important;*/
    height: auto;
/*    max-height: 250px;*/
    display: block;
}

#productos .htmlformat {
    max-width: 100%;
    font-size: 14px;
    margin: 20px 0;
    order: 3
}

    #productos .htmlformat p,
    #productos .htmlformat li {
        font-size: 14px !important;
        color: #3B373B
    }

.exhibitors-detail__container .list__item-container,
.exhibitors-detail__container .profile__info-container {
    padding: 20px;
}

#marcas .list__item {
    width: 100%;
/*    height: 250px;*/
    padding: 0
}

#marcas .list__item-container {
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
}

#marcas .list__item-img-wider {
    margin-top: auto
}

#marcas .list__item-info {
    text-align: center;
    margin: auto 0 0
}

    #marcas .list__item-info p:first-child {
        font-weight: 600
    }

#marcas .exhibitors-detail__list {
    grid-template-columns: 1fr;
    overflow-y: visible;
}

#actividades .list__item {
    padding: 0
}

#actividades .list__item-container {
    flex-direction: column;
    padding: 0
}

#actividades .list__item-img-wider {
    width: 100%;
    background-color: #28943D;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

#actividades .list__item-info {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

    #actividades .list__item-info p {
        text-align: left
    }

        #actividades .list__item-info p:first-child {
            font-weight: 600;
            text-align: center
        }

#actividades p {
    margin: 5px auto;
    text-align: center
}

.list__item-img-wider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .list__item-img-wider p {
        margin: 0; /* Elimina el margen predeterminado del párrafo */
    }

@media(min-width:768px) {
    .exhibitors-detail__info {
        font-size: 14px
    }

    #marcas .exhibitors-detail__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(min-width: 992px) {
    #marcas .exhibitors-detail__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }
}

@media(max-width:480px) {
    .list__item-img-wider img {
        width: 25px;
        height: 25px;
    }

    .info-container > div {
        font-size: 14px;
        gap: 2px;
    }
}

/***************************************************
                    PROGRAMA
****************************************************/
.program__container {
    overflow-x: hidden;
    margin-top: 104px;
    padding: 24px 0 22px 20px;
    height: 100%;
}

    .program__container .exhibitors__categories {
        margin-top: 20px;
    }

    .program__container .exhibitors__search-container {
        margin: 12px 20px 24px 0;
    }

/*  DETALLE PROGRAMA  */
.program-detail__image {
    width: 100%;
}

.program-detail__container {
    margin-top: 104px;
}

    .program-detail__container .btn-location {
        text-transform: uppercase;
        margin: 0;
    }

    .program-detail__container .btn-verticals {
        background-color: var(--color-vertical7);
    }

.program-detail__title h3 {
    opacity: 0.5;
    font-size: var(--size-small);
    margin-top: 15px;
    font-family: var(--font-secondary);
}

.program-detail__title .logotipo-img {
    width:auto;
    align-self: center;
    height: auto;
    max-width: 60%;
}

.modalover .program-detail__title .location img {
    margin-right: 15px;
}

.speakers-detail__container{
max-width:650px;
margin:0 auto;
}
/***************************************************
                    NETWORKING
****************************************************/
.networking__search-container {
    position: relative;
    margin: 27px 0 31px 0;
}

.list__item {
    margin: 10px 0 0;
}

.list__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

#docs .list__item-img a {
    width: 100%;
    height: fit-content;
}

#docs .list__item-img {
    width: 100%;
    max-width: 120px;
    height: 100%;
    overflow: hidden;
    border-radius: 0
}

.list__item-img-wider img {
    max-width: 340px;
    width: 100%;
    height: 100%;
    max-height: 240px;
}

#actividades .list__item-img-wider img {
    object-fit: contain;
    width: 30px;
    height: 30px;
}

.list__item-info p:has(a:empty) {
    display: none
}

#docs .list__item-info a {
    background-color: #28943D;
    color: #fff;
    border-radius: 70px;
    padding: 5px 20px;
    width: 150px;
    text-align: center;
}

.networking__elements-container::-webkit-scrollbar {
    width: 0;
}
.exhibitors-detail__list::-webkit-scrollbar {
    width: 0;
}

.networking-content__container {
    padding-bottom: 0;
    justify-self: center;
    width: 100%;
}
/*
.networking-chat__container .input__chat-container {
    max-width: 90%;
}
*/
/***************************************************
                    NOTIFICACIONES
****************************************************/
.alerts__list.new .alert__item .alert {
    font-weight: 600;
}

.alerts__list:not(:last-of-type) {
    border-bottom: 1px solid var(--color-semi);
}

.alerts__list .btn-secondary {
    width: fit-content;
    padding: 10px 15px;
    font-size: var(--size-small);
    margin-left: 19px;
}

.alert__time {
    min-width: 160px;
    text-align: right;
}

/***************************************************
                    PERFIL
****************************************************/
.profile__container {
    padding: 22px 0 22px 22px;
}

/***************************************************
                    PONENTES
****************************************************/

.speaker {
    border: 1px solid var(--color-light);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
}

    .speaker a {
        display: flex;
        align-items: center;
        gap: 19px;
    }

.speaker__img {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker a img {
    width: 100%
}

/* PONENTES DETALLE */
.speakers-detail__container {
    padding: 20px;
}

.speakers-detail__img {
    border-radius: 50%;
}

.speakers-detail__sesions {
    margin-top: 80px;
}

/***************************************************
           CLASES ACTIVAS / COMPARTIDO 
****************************************************/
/* FILTROS */

.modal__filters-list {
    max-height: 330px;
    overflow-y: scroll;
}

.modal__meeting-container {
    height: 100%;
}

/* COMPARTIDO */
.filter-number {
    background-color: var(--color-darker);
    color: #fff;
}

/****************** BUTTONS *****************/
.btn-all {
    width: 100%;
    display: flex;
    background-color: transparent;
    font-size: var(--size-smaller);
    font-weight: var(--weight-light);
    font-family: var(--font-secondary);
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    padding-bottom: 4px;
    color: black;
}

    .btn-all img {
        filter: invert(1);
    }

.btn-filters {
    right: 15px;
    top: 8px;
}

.btn-close {
    cursor: pointer;
    background-color: transparent;
}

.filters__container .btn-close {
    background-color: transparent;
}

/*******************************************************
												PRE-FOOTER
********************************************************/
.sponsor__img-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.sponsor__img {
    max-width: 65px;
}

/*******************************************************
												LOGIN
********************************************************/
.login__container {
    margin: 0;
    justify-self: center;
    align-items: flex-start;
    min-height: 70vh;

}

.login__input {
    border: 1px solid #333333;
    color: #333;
}

/*******************************************************
												FOOTER
********************************************************/
#img_carrusel {
    padding-right: 20px
}

/* top bar */
.top-bar {
    position: fixed;
    height: 65px;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 11;
    padding: 10px;
    box-sizing: border-box;
    background-color: transparent;
}

.top-bar__img {
    max-width: 40px;
    max-height: 40px;
    margin: 0 30px;
    border-radius: 50%;
}

.edit-profile__field span {
    font-size: var(--size-intermediate);
    font-weight: 600;
}

.container-video {
    flex: 1;
    object-fit: cover;
    align-items: center;
    display: flex;
}

.video-iframe {
    aspect-ratio: 16 / 9;
}

.accepted {
    margin: 10px 0px 10px 0px;
    background-color: #0b9d22;
    color: #fff;
    padding: 8px;
    width: 150px;
    text-align: center;
    border-radius: 20px;
}

.rejected {
    margin: 10px 0px 10px 0px;
    background-color: #ac2121;
    color: #fff;
    padding: 8px;
    width: 150px;
    text-align: center;
    border-radius: 20px;
}

.date-meeting {
    padding: 8px;
    margin: 5px 0px 5px;
    border-radius: 10px;
    border: 1px solid #8d8d8d9a;
}

.accept-btn {
    background-color: #0b9d22;
}

.reject-btn {
    background-color: #ac2121;
}

.location__option {
    margin-right: 25px;
    text-transform: uppercase;
    font-size: var(--size-small);
    font-family: var(--font-secondary);
    opacity: 0.5;
    padding-bottom: 6px;
}

    .location__option.selected {
        opacity: 1;
        border-bottom: 2px solid #40b757;
    }

.footer__up {
    padding: 0 40px 45px;
    background-color: #e0e1e3;
    clear: both;
    margin: 60px 0 0 0;
    float: left;
    width: 100%;
}

    .footer__up img {
        max-width: 205px;
        max-height: 70px;
        width: 75%;
    }

.footer__logos-container {
    display: flex;
    align-items: end;
    justify-content: center;
    margin: 0 auto;
}

    .footer__logos-container p {
        padding: 45px 0
    }

    .footer__logos-container li:first-of-type p {
        word-break: keep-all;
    }

.footer__down a {
    font-weight: 600
}

.footer__down {
    min-height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px
}

    .footer__down span {
        text-align: center
    }

@keyframes bullet {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.btn-general-home .dot::after {
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #bb002e;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -4px;
    margin-left: 12px;
    animation: bullet 1s infinite;
}

.field-validation-error {
    display: block !important;
}

.input-validation-error {
    border: thin solid #DC1B1B !important;
}

.field_success_text,
.field_error_text {
    display: none;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.87rem;
    color: #00E9B1;
    margin-top: 10px;
}

.field_success_text {
    color: #00E9B1;
}

.field_error_text {
    color: #FF1A1A;
}

.visible .field_success_text,
.visible .field_error_text {
    display: inherit;
}

@media(max-width:768px) {
    .all-exhibitors__element-logo img {
        max-width: 300px;
    }

    .section__search-container {
        margin: 24px 0 0px 0;
    }

    .exhibitors__container .btn-general span {
        height: 130px;
        width: 100%;
    }

    .all-exhibitors__container #loadMore {
        margin-top: 20px;
    }

    .all-exhibitors__element-logo {
        width: fit-content;
    }

    .all-exhibitors__container {
        margin: 0;
    }

    .exhibitors-detail__container {
        padding-top: 0 !important;
    }

    #divDetails > div > div.exhibitors-detail__identity > div:nth-child(1) {
        flex-direction: column;
    }

    .stand-menu {
        column-gap: 15px;
        row-gap: 0;
    }

    .exhibitors-detail__name {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .exhibitors-detail__identity .details__multimedia {
        flex-direction: column;
    }

    .video-iframe {
        height: auto;
        max-width: 600px;
        aspect-ratio: 16 / 9;
    }

    .container-video {
        justify-content: center;
        display: flex;
    }
}

@media(max-width:580px) {
    .exhibitors__container .btn-general span {
        height: 100px;
    }

    .all-exhibitors__element-logo img {
        padding: 5px;
    }

    .all-exhibitors__element-logo img {
        max-width: 150px;
    }

    .exhibitors-detail__name {
        font-size: 1.8rem;
    }
}

@media(max-width:410px) {
    .section-anchor {
        top: -180px;
    }

    .exhibitors__container .btn-general span {
        height: 80px;
    }

    .all-exhibitors__element-logo {
        height: 80px;
    }

    #docs .img-container svg {
        width: 120px;
        height: 120px;
    }

    #docs .list__item-info {
        margin-left: 0;
    }

    .all-exhibitors__element-logo img {
        max-width: 125px;
    }
}

/*.program-detail__container { margin-top:unset; }*/
.carousel-container {
    padding-bottom: 25px;
}

.schedule p {
    font-weight: 600
}

.exhibitors__categories {
    margin-top: unset;
}

li:nth-child(2) .exhibitors__category::before {
    background-color: unset;
}

li:nth-child(3) .exhibitors__category::before {
    background-color: unset;
}

li:nth-child(4) .exhibitors__category::before {
    background-color: unset;
}

li:nth-child(5) .exhibitors__category::before {
    background-color: unset;
}

li:nth-child(6) .exhibitors__category::before {
    background-color: unset;
}

li:nth-child(7) .exhibitors__category::before {
    background-color: unset;
}

li:nth-child(8) .exhibitors__category::before {
    background-color: unset;
}

.exhibitors-name {
    bottom: unset;
    top: 140px;
}

.exhibitors-name {
    color: #000;
}

.expo-carousel {
    min-height: 230px !important;
}

.speakers-detail__date::before {
    content: url(/content/icons/calendar-icon_dark.svg);
}

.activity-detail p {
    font-size: var(--size-small) !important;
}

.home-img {
    width: 100% !important;
    max-width:none;
}

.main-content > a {
    width: 100%;
}
