
/*------------------------------
Specific pages container
------------------------------*/
.home-custom-css {}
.community-custom-css {}
.agenda-custom-css {}
.speakers-custom-css {}

/*------------------------------
Main container of each section
------------------------------*/
.main-app-container {}

/*------------------------------
Call-to-action buttons e.g: Register, Join The Community
------------------------------*/
.btn-register {}

/*------------------------------
Top navigation bar container
------------------------------*/
.template-nav {}

/*------------------------------
Top navigation bar items container
------------------------------*/
#bs-example-navbar-collapse-1 {}

/*------------------------------
Social share buttons container
------------------------------*/
.social-share-button {}
.social-share-button.facebook {}
.social-share-button.twitter {}
.social-share-button.linkedin {}
.social-share-button.google {}

/*------------------------------
Speaker image circle removed
------------------------------*/
.img-circle {
    border-radius: 0;
}

/*------------------------------
Agenda session preview description
------------------------------*/
.agenda-view .session-list-container .session-day-container .time-row .session-elem .session-container .preview-session-description {
    max-height: 100% !important;
}

/*------------------------------
Carousel session text adjustments
------------------------------*/
.agenda-view .session-list-container .session-carousel .slider-container .session-container .session-name a {
    text-overflow: clip;
    white-space: normal;
    overflow: visible;
    display: inline-block;
}

.agenda-view .session-list-container .session-carousel .slider-container .sbs-preview-session-description {
    overflow: visible;
    height: auto !important;
}

.agenda-view .session-list-container .session-carousel .slider-container .read-more {
    display: none;
}

.agenda-view .session-list-container .session-carousel .slider-container .session-container .session-name {
    height: auto !important;
}

/*------------------------------
Custom Buttons
------------------------------*/
a.button.custom-button {
    padding: 13px 30px 12px 30px;
    background-color: #ffffff;
    border-radius: 30px !important;
    color: #0D3B4B;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.5s ease;
}
a.button.custom-button:hover {
    background-color: #737373;
    color: #ffffff;
}

a.button.custom-button.turquoise {
    background-color: #a11f23;
    color: #ffffff;
}

a.button.custom-button.blue {
    background-color: #752164;
    color: #ffffff;
}

/*------------------------------
Menu color and highlight
------------------------------*/
.nav-menu-btn {
    color: #4A4A4A !important;
    font-weight: 600;
}

.nav-menu-btn.selected {
    color: #a11f23 !important;
    font-weight: 600;
}

.nav.navbar-nav li:nth-child(8) a div {
    background: #752164 !important;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: -10px;
    font-weight: 900;
    transition: all 0.5s ease;
}

.nav.navbar-nav li:nth-child(8) a div:hover {
    background: #4a4a4a !important;
    color: #ffffff !important;
}

/*------------------------------
Booking section color
------------------------------*/
.section-1699074 .element-8841045 .atom-main,
.section-1580090 .element-8139991 .atom-main {
    color: #752164;
    margin-bottom: 20px !important;
}

/*------------------------------
Contact our team headline
------------------------------*/
.section-2184972 .element-7969444 .atom-main {
    color: rgba(74,74,74,1);
    text-transform: none;
}

/*------------------------------
Team container adjustments
------------------------------*/
.element-7969445 .overflow-hidden {
    overflow: visible;
}

/*------------------------------
Hide all agenda times
------------------------------*/
.agenda-view .session-list-container .session-day-container .time-row .time-elem,
.agenda-view .session-list-container .session-day-container .time-row .session-elem .session-container .session-info-text {
    display: none !important;
}

/*------------------------------
Download Buttons
------------------------------*/
/* White Button */
.download-button-white {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #800000;
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    border-radius: 50px;
    padding: 15px 25px;
    gap: 12px;
    border: 2px solid #800000;
    transition: all 0.3s ease-in-out;
}

.download-button-white .icon {
    background-color: #800000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.download-button-white:hover {
    background-color: #F0E0E0;
    border-color: #800000;
}

.download-button-white:hover .icon {
    background-color: #660000;
}

/* Maroon Button */
.download-button-maroon {
    display: inline-flex;
    align-items: center;
    background-color: #800000;
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    border-radius: 50px;
    padding: 15px 25px;
    gap: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.download-button-maroon .icon {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800000;
    font-size: 18px;
}

.download-button-maroon:hover {
    background-color: #660000;
    border-color: #ffffff;
}

.download-button-maroon:hover .icon {
    background-color: #F0E0E0;
    color: #800000;
}

