@import "design.css";
:root {
    --location-bg-img: url("./imgs/location-bg.png")
}

html, body {
    scroll-behavior: smooth;
    font-family: var(--primary-font);
}

#ajaxload {
    background-color: var(--bg-color);
}

.content {
    color: var(--text-color);
}

.bg-color { background-color: var(--bg-color); }
.text-color { color: var(--text-color); }
.text-color-bg { background-color: var(--text-color); }
.primary-color { color: var(--primary-color); }
.secondary-color-dark { color: var(--secondary-color-dark); }
.secondary-color-light { color: var(--secondary-color-light); }
.secondary-color-light-bg { background-color: var(--secondary-color-light); }
.additional-color { color: var(--additional-color); }
.flekk-bg { background-color: var(--flekk-bg); }
.border-color { border-color: var(--border-color); }
.disabled-color { color: var(--disabled-color); }
.primary-font { font-family: var(--primary-font);}
.secondary-font { font-family: var(--secondary-font);}


.text-content h1, .text-content h3, .text-content h5, .text-content span, .text-content div {
    color: var(--text-color);
}

.topic-card-text, .flekk-content div {
    color: var(--text-color);
}

.text-color-primary {
    color: var(--primary-color);
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    position: relative;
}

h1, h2 {
    padding-left: 20px;
}

h1:before, h2:before {
    content: '';
    position: absolute;
    display: block;
    background: var(--primary-color);
    width: 10px;
    height: 50%;
    left: 0;
    top: 50%;
    transform: skewY(-45deg) translateY(-50%);
}

/* Hack for embedded consent */
.css-1unuaz2.css-1unuaz2 .qc-cmp2-consent-info h2:before {
    display: none !important;
}

.taller-before:before, .taller-before:before {
    height: 75%;
}

h1.no-pre:before, h2.no-pre:before {
    display: none;
}

.border-bottom-decor {
    border-bottom: 3px solid var(--primary-color);
}

.img-cover {
    object-fit: cover;
}

#event-content {
    transition: all 1s;
}

#div_personal_information, #div_billing_information {
    background-color: #fff;
}

/* Landing Navbar display on event page */
.landing-navbar {
    width: 100%;
    background-color: #fff; /* Adjust the background color as needed */
    z-index: 1000;
}

.footer-navbar {
    width: 100%;
    color: var(--text-color);
    border-bottom: 1px solid var(--additional-color);
}

.footer-navbar a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
}

.footer-navbar .footer_icons a {
    color: #ffffff
}

.footer-copy {
    font-size: 12px;
    color: var(--text-color);
}

.footer-copy a {
    color: var(--text-color);
}

/*EVENT HAMBURGER ICON*/
.custom-toggler.navbar-toggler {
    border-color: var(--primary-color);
}
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,72,56, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

#event-nav {
    font-family: var(--secondary-font);
}



.primary-color {
    color:  var(--primary-color);
}
.dark-bg {
    background-color: var(--secondary-color-dark);
}
.light-bg {
    background-color: var(--secondary-color-light);
}


/* EVEN BUTTON */
.event-btn
{
    font-family: var(--secondary-font);
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 0;
    color: var(--secondary-color-dark);
    text-transform: uppercase;
}
.event-btn:hover
{
    font-family: var(--secondary-font);
    text-decoration: none;
    background-color: var(--additional-color);
    color: white;
}


.event-reversed-btn
{
    font-family: var(--secondary-font);
    background-color: var(--secondary-color-light);
    padding: 8px 20px;
    border-radius: 0;
    color: white;
    text-transform: uppercase;
}
.event-reversed-btn:hover
{
    font-family: var(--secondary-font);
    text-decoration: none;
    background-color: var(--additional-color);
    color: white;
}

.event-border-btn {
    font-family: var(--secondary-font);
    font-size: 14px;
    background-color: transparent;
    padding: 8px 20px;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}
.event-border-btn:hover {
    font-family: var(--secondary-font);
    border: 1px solid var(--border-color);
    color: var(--border-color);
}

.event-price-btn {
    font-family: var(--secondary-font);
    background-color: #27baad;
    padding: 10px 20px;
    border-radius: 0;
    color: white;
    text-transform: uppercase;
}

/* HERO HEADER */
.hero-bg {
    position: relative;
    padding: 0;
    aspect-ratio: 16/9;
}
.hero-header-img {
    top:0;
    left: 0;
    position: absolute;
    aspect-ratio: 16/9;
    width: 100%;
    z-index: 100;
}

.hero-bg:after {
    content: '';
    position: absolute;
    top:0%;
    left: 0%;
    aspect-ratio: 16/9;
    width: 100%;
    /*box-shadow: 0 0 20px 20px var(--bg-color) inset;*/
    z-index: 101;
}
.hero-header-text {
    z-index: 102;
}

.hero-bg h1{
    font-weight: 700;
}

@media (max-width: 992px) {
    .hero-bg h1 {
        font-size: 3rem;
    }
    .hero-bg h3 {
        font-size: 1.5rem;
    }
    .hero-bg p {
        font-size: 1rem;
    }
}
@media (max-width: 700px) {
    .footer-copy{
        flex-direction: column;
    }
}
@media (max-width: 650px) {
    .conf-title{
        flex-direction: column;
    }
    .conf-title a{
        width: 250px!important;
    }
    #conference .btn{
        margin-top:0.5rem;
    }
}
@media (max-width: 600px) {
    .hero-bg h1 {
        font-size: 2.5rem;
    }
    .hero-bg h3 {
        font-size: 1.2rem;
    }
    .hero-bg p {
        font-size: 1rem;
    }
    .early-cta-text{
        flex-direction: column;
    }
}

/*About event */
#about-event-text-container ul li {
    position: relative;
    list-style: none;
    padding-left: 20px;
}
#about-event-text-container ul li:before {
    content: '';
    position: absolute;
    display: block;
    background: var(--primary-color);
    width: 10px;
    height: 10px;
    top: 25%;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 50% 50%, 0% 100%);
}

/* Sponsor */

.sponsor-title {
    color: var(--primary-color);
}

/* Speakers */

.speaker-img {
    position: relative;
}

.speaker-name {
    position: absolute;
    bottom: 0;
    color: var(--primary-color);
    background: var(--flekk-bg);
}

.card-body {
  color: var(--text-color);
}

.card-img-bubble {
    border-radius: 50% 50% 50% 0;
    filter: grayscale(100%);
    transition: all .5s;
}

.card-img-bubble:hover {
    filter: grayscale(0%);
}

.slick-prev {
    padding: .35rem .75rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
}
.slick-next {
    padding: .35rem .75rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.slick-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.slick-dots ul {
    margin: 0;
    padding: 0;
}

.slick-dots ul li {
    display: inline-block;
    list-style-type: none;
}

.slick-dots ul li:only-child {
    display: none;
}

.slick-dots li button {
    border: none;
    display: block;
    width: 10px;
    height: 10px;
    background: var(--text-color);
    margin-right: 5px;
    overflow: hidden;
    line-height: 10px;
    color: var(--text-color);
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
    color: var(--primary-color);
}

.speaker-contact a {
    color: #ffffff;
}

@media (max-width: 992px) {
    .slick-prev {
        right: 9%;
    }
}

/* PARTICIPANTS */
.participant-img {
    position: relative;
}

.participant-img:after {
    content: '';
    position: absolute;
    display: block;
    background: var(--additional-color);
    width: 30px;
    height: 10px;
    right: 40px;
    top: 50%;
    transform: skewX(45deg) translateY(-50%);
    z-index: -1;
}

/* NEWS */


.my-border {
    border: 1px solid var(--border-color);
    height: 100%;
    color: white;
}

/* NEWS LETTER */
#newsletter {
    background-position: center center;
    background-size: cover;
}


/* CONFERENCE */

.category-label-holder {
    bottom: 4%;
    left: 2%;
}

.category-label {
    background-color: white;
    padding: 3px 12px;
    font-size: 15px;
    display: inline-block;
    color: black;
}





/* PRICE */

#price {
    position: relative;
    background-position: center center;
    background-size: cover;
}

.popular-price {
    border: 1px solid var(--primary-color);
}
.popular-text {
    position: absolute;
    top:0;
    left:50%;
    transform: translate(-50%,-50%);
    background-color: var(--primary-color);
}

#price .slick-track, #conference .slick-track
{
    display: flex !important;
}

#price .slick-slide, #conference .slick-slide
{
    height: inherit !important;
    position: relative;
}

.pricing-card-title {
    white-space: nowrap;
    padding: 0;
}

@media (max-width: 1000px) {
    .pricing-card-title {
        font-size: 26px;
    }
}

.ticket-desc ul {
    list-style-type: none;
    text-align: left;
    padding-left: 0;
}

.ticket-desc ul li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    padding-right: 10px;
}

#price .ticket-slider .slick-slide .card-body {
    padding-bottom: 90px;
}

/*#price .ticket-slider .slick-slide a.btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    font-weight: bold;
}*/

#price .ticket-slider .slick-slide a.btn {
    width: 90%;
    font-weight: bold;
}

#price .ticket-slider .slick-slide a.btn.disabled {
    background: var(--disabled-color);
    border: none;
    color: #FFFFFF;
}

/* QUOTE PAGE */
#quote-page {
    position: relative;
    background: url("./imgs/quote_bg.png");
    background-position: center center;
    background-size: cover;
    color: white;
}

/* FAQ */

.faq-box {
    border: none;
}

.faq-header {
    background-color: transparent;
    border-bottom: 1px solid var(--additional-color);
}

.btn-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 20px 0;
}
.btn-link:hover {
    color: var(--text-color);
}
.btn-link:focus, .btn-link:active {
    box-shadow: none;
}

.cp {
    cursor: pointer;
}

/* APP */
/*** APPLE BUTTON ***/
.bn45 {
    display: inline-block;
    width: 170px;
    height: 50px;
}
/*** ANDROID BUTTON ***/
.bn46 {
    display: inline-block;
    width: 170px;
    height: 50px;
}


/* AGENDA */
#custom-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

.agenda-item {
    margin-top: 20px;
    position: relative;
    border-bottom: 1px solid var(--additional-color);
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-time {
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -70px;
}

.agenda-title {
    font-weight: bold;
    padding-bottom: 20px;
    flex: 1 1 auto;
}

.atitle {
    font-size: 20px;
}

.agenda_speaker {
    cursor: pointer;
color: var(--additional-color);
}

.agenda_speaker .position {
    font-weight: normal;
    font-size: 12px;
}

.agenda_speaker .speaker-name {
    position: static;
    bottom: auto;
    padding: 0;
    background: transparent;
}

.agenda_speaker .speaker-img .card-img-bubble {
    height: 65px;
}

.agenda-type {
    background: var(--primary-color);
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    width: auto;
    display: inline-block;
    padding: 0 5px;
    margin-bottom: 5px;
}

.agenda-room {

}

.agenda-ear {
    margin-right: 15px;
    color:  var(--primary-color);
    font-weight: bold;
}

.agenda-ear button {
    background: none;
    border: none;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 20px 10px;
    position: relative;
    font-weight: bold;
    font-size: 13px;
}

.agenda-ear button.active {
    color:  var(--primary-color);
}

.agenda-ear button.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    display: block;
    background: var(--primary-color);
}

#page_event-agenda .agenda-time {
    position: static;
    left: auto;
    padding-right: 20px;
}

.room_info {
    align-self: start;
    padding: 30px;
    background: linear-gradient(135.27deg, #09242E 0%, rgba(9, 36, 46, 0) 54.57%);
    max-width: 430px;
    margin: 0 30px;
}

.room_info .title {
    font-size: 50px;
    font-weight: bold;
}

.room_info .logo img {
    max-width: 50%;
    max-height: 80px;
}

.custom-modal-dialog {
    width: 75%;
}

@media (max-width: 992px) {
    .agenda-tab {
        height: 300px;
    }
}

.modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 50%;
    max-width: 600px;
}


/* FADE-IN EFFECT */

.fade-in {
    /*transform: translateY(30px);*/
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-show {
    opacity: 1;
    /*transform: translateY(0);*/
}

#page_speaker-profile .speaker-img {
    max-width: 370px;
}

#page_speaker-profile .speaker-details {
    grid-template-columns: 370px 2.5fr;
    width: 85%;
}

.grid-offset {
    grid-column-start: 2;
}

@media (max-width: 768px) {
    #page_speaker-profile .speaker-details {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
    }

    .speaker-info {
        max-width: 370px;
    }

    .grid-offset {
        grid-column-start: 1;
    }

    .agenda-time {
        position: relative;
        left: auto;
    }

    .agenda-title {
        padding-left: 20px;
    }
}

.event_info {
    gap: 20px;
    background: var(--flekk-bg);
    white-space: nowrap;
}

.event_info > div {
    flex: 0 0 auto;
}
@media (max-height: 1000px) {

    .modal-content {
        width: 100% !important;
        max-height: 80vh !important;
        overflow-x: auto;
    }

    #closeModalX {
        top: -10px;
        left: 10px;
    }
}

@media (max-width: 900px) {
    .modal-dialog {
        width: 90% !important;
    }

    .modal-dialog .form-group {
        width: 100% !important;
    }

    .event_info {
        flex-wrap: wrap;
    }
    .event_info > div {
        flex: 0 0 45%;
    }
}

.logo-img-container a img{
    max-width: 75px;
}

/* Loader */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader {
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
}

.loader #loadingIcon {
    position: absolute;
    left: calc(50% - 60px);
    top: 50%;
    transform: translate(-50%, -50%);
    border: 16px solid #24C2B6;
    border-top: 16px solid blue; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.loader #loadingText {
    position: absolute;
    left: calc(50%);
    bottom: 10%;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    width: auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 120%;
    color: white;
    background-color: black;
}

#newsletter_modal .close,
#newsletter_modal .modal-title {
    color: var(--primary-color);
}

#newsletter_modal .modal-body {
    text-align: center;
}

.explore-img {
    max-width: 400px;
}

.text-container {
    position: relative;
    margin: auto;
    text-align: center;
    max-width: 500px;

}

.text-container-img {
    position: absolute;
    max-width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}


.text-container-btn {
    padding: 10px 35px;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
}
.text-container-btn:hover {
    padding: 10px 35px;
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

#location {
    backdrop-filter: grayscale(50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.google-map {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all .3s;
}
.google-map:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}
/* FORM BOX */


.lostpass_form_cont {
    display: none;
}

.form-label{
    display: none !important;
}
.form-group input,
.form-group textarea
{
    border-radius: 0;
}

.form-group .alert {
    text-indent: 10px;
    line-height: 30px;
    padding: 0 !important;
    margin: 0 !important;
    color: white;
    background-color: darkred !important;
    border-radius: 0;
}

.form-check {
    padding: 10px !important;
    min-height: 34px;
    line-height: 34px;
    text-align: left;
}

.form-check input {
    position: absolute;
    opacity: 0;
}

.form-check input ~ label {
    position: relative;
    padding-left: 40px;
}

.form-check input ~ label:before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    border: 1px solid var(--bs-border-color);
}

.form-check input:checked ~ label:before {
    content: "✔";
    text-align: center;
}

.form-check-input:checked {
    background-color: var(--landing-secondary-color-dark);
    border-color: var(--landing-secondary-color-dark);
}

#submitContactFormButton {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0;
}

#closeModalX {
    color: white;
    background: var(--primary-color);
}
.contact_reg_type {
    display: none;
}

/* Select language */
.languagepicker {
    position: absolute;
    top: 15px;
    left: 130px;
    background-color: #FFF;
    display: none;
    padding: 0;
    height: 40px;
    overflow: hidden;
    transition: all .3s ease;
    margin: 0 0px 10px 0;
    vertical-align: top;
    z-index: 1100;
}

.languagepicker a {
    color: #000;
    text-decoration: none;
}

.languagepicker li {
    display: block;
    padding: 0 20px;
    line-height: 40px;
    border-top: 1px solid #EEE;
}

.languagepicker li:hover {
    background-color: #EEE;
}

.languagepicker a:first-child li {
    border: none;
    background: #FFF;
}

.languagepicker li img {
    margin-right: 5px;
    margin-top: -3px;
}
#accessibility_settings_toggle {
    bottom: 90px !important;
}