﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hexagon Akkurat';
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

    .main-header.transparent {
        background: transparent;
    }

    .main-header.scrolled {
        background: #fff;
        border-bottom: 1px solid #b9b9bd;
    }

.logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.main-nav .nav-link {
    margin-left: 28px;
    color: #fff !important;
    font-size: 14px;
    text-decoration: none;
}


    .main-nav .nav-link:hover {
        text-decoration: underline !important;
        color: #005198 !important;
    }

.main-header.scrolled .nav-link {
    color: #000 !important;
}

    .main-header.scrolled .nav-link:hover {
        text-decoration: underline !important;
        color: #01adff !important;
    }


/* HAMBURGER */
.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

.main-header.scrolled .menu-toggle span {
    background: #000;
}

/* MOBILE NAV */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

    .mobile-nav a {
        padding: 12px 0;
        color: #000;
        text-decoration: none;
        font-size: 16px;
    }

    /* OPEN STATE */
    .mobile-nav.open {
        display: flex;
    }

.mobile-user {
    padding: 12px 16px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.mobile-username {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.mobile-logout {
    background: none;
    border: none;
    color: #0d6efd;
    font-weight: 500;
}

.gap-box {
    position: relative;
    padding-left: 32px;
}

    .gap-box::before {
        content: "";
        position: absolute;
        left: 32px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #b9b9bd;
    }

.february-2026 {
    position: relative;
    font-size: 44px;
    letter-spacing: -1.7px;
    line-height: 48px;
    font-family: 'Hexagon Akkurat';
    color: #fff;
    text-align: center;
    padding-top: 24px;
}

.about-parent {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #b9b9bd;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0px;
    gap: 40px;
    text-align: center;
    font-size: 38px;
    color: #000;
    font-family: 'Hexagon Akkurat';
}

.about-hxgn {
    align-self: stretch;
    position: relative;
    letter-spacing: -0.03em;
    line-height: 48px;
}

.about-frame-parent {
    /*    height: 444px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    text-align: left;
    font-size: 18px;
}

.hexagon-technology-day-unites-wrapper {
    align-self: flex-start;
    width: 635px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hexagon-technology-day-hxgn {
    align-self: stretch;
    position: relative;
    letter-spacing: -0.14px;
    line-height: 28px;
}

.frame-child-hxgn {
    align-self: stretch;
    /*width: 581px;*/
    position: relative;
    max-height: 100%;
    object-fit: cover;
    clip-path: polygon( 0 0, 100% 0, 100% 100%, 45% 100%, 0 70% );
}

.about-frame-parent {
    max-width: 1280px;
    width: 100%;
    padding: 10px 24px;
}

@media (max-width: 1024px) {

    .about-frame-parent {
        gap: 40px;
    }

    .hexagon-technology-day-unites-wrapper,
    .frame-child-hxgn {
        width: 100%;
        max-width: 100%;
    }

    .frame-child-hxgn {
        height: 380px;
    }
}

@media (min-width: 1025px) {
    .about-frame-parent {
        height: 444px;
    }
}

@media (max-width: 1024px) {
    .about-frame-parent {
        height: auto;
    }
}

@media (max-width: 768px) {

    .about-parent {
        padding: 48px 16px;
        gap: 24px;
        font-size: 28px;
    }

    .about-hxgn {
        line-height: 36px;
    }

    .about-frame-parent {
        flex-direction: column;
        height: auto;
        gap: 24px;
        text-align: left;
    }

    .hexagon-technology-day-unites-wrapper {
        width: 100%;
    }

    .hexagon-technology-day-hxgn {
        font-size: 16px;
        line-height: 26px;
    }

    .frame-child-hxgn {
        width: 100%;
        height: 260px;
        clip-path: polygon( 0 0, 100% 0, 100% 100%, 30% 100%, 0 80% );
    }
}

@media (max-width: 480px) {

    .about-parent {
        font-size: 24px;
    }

    .frame-child-hxgn {
        height: 220px;
    }
}


/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 360px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35) );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-content img {
        width: 100%;
        /*width: 436px;*/
        height: 162px;
    }

@media (max-width: 1024px) {
    .hero {
        height: 50vh;
        min-height: 320px;
    }

    .hero-video {
        min-height: 320px;
    }

    .hero-content img {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 320px;
    }

    .hero-video {
        min-height: 320px;
    }

    .hero-content img {
        max-width: 300px;
        padding: 0 16px;
        height: auto;
    }

    .hero-overlay {
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35) );
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 320px;
    }

    .hero-video {
        min-height: 320px;
    }

    .hero-content img {
        max-width: 240px;
        height: auto;
    }

    .hero-overlay {
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35) );
    }
}


/*footer css*/
.hex-footer {
    background-color: #00284c;
    border-top: 1px solid #b9b9bd;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    /* Decorative Lines */
    .hex-footer::before,
    .hex-footer::after {
        content: "";
        position: absolute;
        top: 0;
        width: 200px;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
    }

.footer-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mail-icon {
    font-size: 20px;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
}

/* About */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-content {
    max-width: 520px;
}

    .about-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #000000 !important;
        margin-bottom: 16px;
    }

.about-image {
    width: 520px;
    overflow: hidden;
    clip-path: polygon( 0 0, 100% 0, 100% 100%, 45% 100%, 0 70% );
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        /*padding: 60px 24px;*/
        text-align: center;
    }

    .about-image {
        width: 100%;
        clip-path: none;
        border-radius: 6px;
    }

    .about-content {
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        text-align: center;
    }

        .about-image img {
            max-width: 90%;
        }
}


/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    font-size: 14px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer-brand img {
        height: 22px;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer-top h2 {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

.track-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.track-desc {
    font-size: 14px;
    margin: auto;
}


.speaker-img {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%) !important;
    margin: 10px;
}

.action-button {
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #005198;
    border-radius: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #005198 !important;
    font-weight: 400;
    background-color: #fff !important;
    cursor: pointer;
}

    .action-button:hover {
        background-color: #01adff !important;
        font-size: 18px !important;
        color: #005198 !important;
    }

/*CONTACT INFO*/
.contact-section {
    position: relative;
    width: 100%;
    height: 220px;
    background: #002b4f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Center content */
.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .contact-content h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

.footer-email {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

    .footer-email .mail-icon {
        margin-right: 8px;
    }

/* Vector images */
.contact-vector {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 992px) {
    .contact-vector {
        display: block;
    }

        /* Left Vector */
        .contact-vector.left {
            float: left;
            height: 236px;
            position: absolute;
            margin: 0 !important;
            top: -14.04px;
            left: -11px;
            max-width: 100%;
            overflow: hidden;
            flex-shrink: 0;
        }

        /* Right Vector */
        .contact-vector.right {
            right: -30px;
            height: 236px;
        }
}

@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 26px;
    }
}

/*ABOUT HXGN*/

/*.about-section {
    width: 100%;*/
/* padding: 100px 24px;*/
/*box-sizing: border-box;
}*/

/* MAIN WRAPPER */
/*.frame-parent-1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    text-align: left;
    font-family: 'Hexagon Akkurat';
    color: #000;
}*/

/* TEXT BLOCK */
/*.about-hexagon-technology-day-parent {
    width: 100%;
    max-width: 635px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}*/

/* TITLE */
/*.about-hexagon-technology {
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1.25;
}*/

/* DESCRIPTION */
/*.hexagon-technology-day {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.14px;
}*/

/* IMAGE */
/*.frame-child {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 45% 100%, 0 70%);
}

@media (max-width: 1024px) {

    .frame-parent-1 {
        gap: 40px;
    }

    .about-hexagon-technology {
        font-size: 32px;
    }

    .hexagon-technology-day {
        font-size: 17px;
        line-height: 26px;
    }

    .frame-child {
        max-width: 480px;
    }
}*/

/* ---------- MOBILE ---------- */
/*@media (max-width: 768px) {
    .about-section {
        padding: 64px 16px;
    }

    .frame-parent-1 {
        flex-direction: column;
        gap: 32px;
    }

    .about-hexagon-technology {
        font-size: 26px;
        line-height: 1.3;
    }

    .hexagon-technology-day {
        font-size: 16px;
        line-height: 24px;
    }

    .frame-child {
        max-width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    }
}*/

/* ---------- SMALL MOBILE ---------- */
/*@media (max-width: 480px) {
    .about-hexagon-technology {
        font-size: 22px;
    }

    .hexagon-technology-day {
        font-size: 15px;
    }
}*/

/* SECTION */
#TracksContainer {
    width: 100%;
    padding: 64px 0px;
    box-sizing: border-box;
    border-bottom: 1px solid #b9b9bd;
}

/* MAIN WRAPPER */
.frame-parent {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    font-family: 'Hexagon Akkurat';
    color: #000;
}

/* TITLE */
.tracks-wrapper {
    display: flex;
    justify-content: center;
}

.tracks {
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

/* TRACK CARDS CONTAINER */
.tracks-parent {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop */
    gap: 48px;
    padding: 0;
    box-sizing: border-box;
}






.tracks2 {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.track-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: auto;
}

.ring-svg {
    position: absolute;
    inset: 0;
}

.track-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* optional color variants */
.ring-blue circle:last-child {
    stroke: #4fc3f7;
}


/* TITLE */
.artificial-intelligence {
    font-size: 28px;
    letter-spacing: -0.63px;
    line-height: 1.3;
}

/* DESCRIPTION */
.discover-how-scalable {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.14px;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
    #TracksContainer {
        padding: 50px 20px;
    }

    .tracks {
        font-size: 32px;
    }

    .tracks-parent {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .artificial-intelligence {
        font-size: 24px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    #TracksContainer {
        padding: 40px 16px;
    }

    .tracks-parent {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tracks {
        font-size: 26px;
    }

    .artificial-intelligence {
        font-size: 22px;
    }

    .discover-how-scalable {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {
    .tracks {
        font-size: 22px;
    }

    .track-circle {
        width: 96px;
        height: 96px;
    }

        .track-circle img {
            width: 48px;
            height: 48px;
        }
}

.state-layer {
    height: 48px;
    position: relative;
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    color: #005198;
    font-family: 'Hexagon Akkurat';
}


/*WORKSHOPS*/

.workshop-holders {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #b9b9bd;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 24px;
    gap: 48px;
    text-align: center;
    font-size: 20px;
    color: #000;
    font-family: 'Hexagon Akkurat';
}

.workshop-frame-parent {
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.mask-group-parent {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mask-group-icon {
    width: clamp(80px, 25vw, 160px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
}

.sergiu-pop-parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sergiu-pop {
    align-self: stretch;
    position: relative;
    letter-spacing: -0.22px;
    line-height: 28px;
}

.data-ai {
    align-self: stretch;
    position: relative;
    font-size: 16px;
    letter-spacing: -0.08px;
    line-height: 24px;
}

.frame-group {
    align-self: stretch;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.frame-div {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.schedule-parent-new {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-size: 32px;
    color: #000;
}

.schedule-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #0997bb;
    font-size: 16px;
}

.schedule {
    height: 28px;
    width: 28px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.div {
    position: relative;
    letter-spacing: -0.22px;
    line-height: 28px;
}

.common-button {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #005198;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    color: #005198;
}

/*.state-layer {
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    box-sizing: border-box;
}*/

.techday-button {
    color: #005198 !important;
    position: relative;
    line-height: 27px;
    flex-shrink: 0;
}


/*WORKSHOP COMMON*/

.workshop-common-frame-parent {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #b9b9bd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    color: #000;
    font-family: 'Hexagon Akkurat';
}

.iocn-parent {
    width: min(100%, 590px);
    aspect-ratio: 590 / 365;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 24px);
    padding: clamp(16px, 4vw, 36px) 0;
    box-sizing: border-box;
    overflow: hidden;
}

.iocn {
    width: clamp(72px, 20vw, 134px);
    aspect-ratio: 1 / 1;
    position: relative;
}

.workshop-common-frame {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 999px;
    border: 1px solid #b9b9bd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.workshop-common-dining {
    height: 64px;
    width: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.arc {
    position: absolute;
    height: calc(100% + 6px);
    width: calc(100% + 6px);
    top: 131px;
    right: -3px;
    bottom: -137px;
    left: -3px;
    border-radius: 50%;
    border: 6px solid #01adff;
    box-sizing: border-box;
    transform: rotate(-90deg);
    transform-origin: 0 0;
}

.workshop-common-lunch-parent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.lunch {
    position: relative;
    letter-spacing: -1.14px;
    line-height: 40px;
}

.workshop-common-schedule-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: left;
    font-size: 16px;
    color: #0997bb;
    font-weight: bold;
}

.workshop-common-schedule {
    height: 28px;
    width: 28px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}


.vector-icon {
    position: absolute;
    height: 79.29%;
    width: 79.29%;
    top: 10.42%;
    right: 10.3%;
    bottom: 10.3%;
    left: 10.42%;
    max-width: 100%;
    overflow: hidden;
    max-height: 100%;
}



/*AGENDA RESPONSIVE*/

#Agenda {
    width: 100%;
    padding: 64px 16px;
    box-sizing: border-box;
    border-bottom: 1px solid #b9b9bd;
}

    #Agenda .card {
        border-radius: 0;
    }

#nav-tabContent {
    border: 1px solid #b9b9bd !important;
}

.agendaaccordiantabs {
    display: flex;
    justify-content: center;
    /*gap: 32px;*/
    border-bottom: 1px solid #ddd;
}

    .agendaaccordiantabs li {
        list-style: none;
    }

    .agendaaccordiantabs a {
        text-align: center;
        font-size: 18px;
    }

    .agendaaccordiantabs span {
        display: block;
        font-size: 14px;
        opacity: 0.7;
    }

    .agendaaccordiantabs a:not(.active):hover {
        background-color: rgba(18, 22, 35, 0.04) !important;
        border: 1px solid #b9b9bd !important;
    }

/* MOBILE TABS SCROLL */
@media (max-width: 768px) {
    .agendaaccordiantabs {
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
    }

        .agendaaccordiantabs li {
            flex: 0 0 auto;
        }
}


@media (max-width: 991px) {
    #Agenda .col-lg-4 {
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    #Agenda .col-lg-4 {
        width: 100%;
        max-width: 100%;
    }
}

.agendacontentinner {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .agendacontentinner {
        flex-direction: column;
        text-align: center;
    }
}


.sessionname {
    font-size: 20px;
}

.hexagon-font {
    font-size: 16px;
    margin-top: 2rem !important;
}

@media (max-width: 768px) {
    .sessionname {
        font-size: 18px;
        /*margin-top: 2rem !important;*/
    }

    .hexagon-font {
        font-size: 15px;
        line-height: 22px;
    }
}


.action-button,
.techday-button,
.btnSubscribeSession,
.btnUnSubscribeSession {
    min-width: 140px;
}

@media (max-width: 768px) {
    .action-button,
    .techday-button,
    .btnSubscribeSession,
    .btnUnSubscribeSession {
        width: 100%;
    }
}

.workshop-holders {
    display: flex;
    gap: 32px;
}

@media (max-width: 768px) {
    .workshop-holders {
        flex-direction: column;
    }

    .workshop-frame-parent {
        justify-content: center;
        width: unset !important;
    }

    .mask-group-parent {
        justify-content: center;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .cls-track-1 {
        padding-right: 0 !important;
    }

    .cls-track-2 {
        padding: 0 !important;
    }

    .cls-track-3 {
        padding-left: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .hide-common-empty {
        display: none !important;
    }
}

.about_smtext {
    min-height: clamp(3.5rem, 6vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #99D6FF;
    margin: 0;
}

    .about_smtext label {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

@media (max-width: 767px) {
    .about_smtext {
        min-height: clamp(4rem, 8vw, 5.5rem);
    }
}

.ring {
    animation: rotate 1.6s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.m-1 > .row {
    display: flex;
    /*flex-direction: column;*/
    height: 100%;
}

.state-layer {
    margin-top: auto;
}

.track-column {
    height: 100%;
}

.hi-tea-and-closing-ceremony-parent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.hi-tea-and-closing {
    position: relative;
    letter-spacing: -1.14px;
    line-height: 40px;
}

.button-unregister {
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #fa4c40;
    border-radius: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #fa4c40 !important;
    font-weight: 400;
    background-color: #fff !important;
    cursor: pointer;
}

.speaker-click:hover {
    opacity: 0.85;
}

.swal-speaker-font {
    font-family: 'Hexagon Akkurat';
}

.swal-title-left {
    text-align: left !important;
    padding-right: 2rem;
}

.logo-flag-wrapper {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 16px;
}

.logo-flag {
    width: 72px;
    height: 48px;
    border-radius: 0px 0px 12px 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.logos {
    height: 28px;
    width: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.ms-icon {
    position: static;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.security-background {
    background-color: rgba(18, 22, 35, 0.04) !important;
}

.clspaddingright {
    padding-right: 0px !important;
}

.clspaddingleft {
    padding-left: 0px !important;
}

@media (max-width: 991px) {
    .clspaddingright {
        padding-right: 15px !important;
    }

    .clspaddingleft {
        padding-left: 15px !important;
    }
}