/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 1, 2019, 3:19:27 PM
    Author     : gasper
*/

:root {

    /* Font families */
    --font-inter: 'Inter', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;

    /* Font weights */
    --fw-light:     300;
    --fw-regular:   400;
    --fw-medium:    500;
    --fw-semibold:  600;
    --fw-bold:      700;

    
    /* Colors */
    /* d - dark, m - medium, l - light */
    /* Primary */
    --color-black:    #000000;
    --color-white:    #FFFFFF;
    --color-grey:     #F1F1F1;
    --color-d-blue:   #0F0137;
    --color-pink:     #D7609D;
    --color-glass:    rgba(255, 255, 255, 0.3);

    /* Secondary */
    --color-violet:     #8A38F5;
    --color-m-violet:   #D1B3F7;
    --color-l-violet:   #E9D7FF;
    --color-l-violet2:  #E0C7FF;
    --color-blue:       #3AB3FF;
    --color-m-blue:     #7ACCFF;
    --color-l-blue:     #E4F5FF;
    --color-l-pink:     #FFE7F3;
    --color-d-grey:     #9D9D9D;

    /* Gradients */
    --color-gradient-main: linear-gradient(
        90deg,
        var(--color-violet) 0%,
        var(--color-d-blue) 50%,
        #DE3E91 100%
    );
    --color-gradient-heading: linear-gradient(
        90deg,
        var(--color-d-blue) 20%,
        var(--color-pink) 80%
    );
    --color-gradient-others: linear-gradient(
        180deg,
        var(--color-l-pink) 0%,
        var(--color-violet) 51%,
        var(--color-blue) 100%
    );


    --border-radius: 30px;

}

.glass {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset -6px -4px 4px rgba(255, 255, 255, 0.1),
        inset 6px 4px 10px rgba(255, 255, 255, 0.1);
}

/* Gradient border */
.gradient-border {
    --angle: -90deg;
    --background: var(--color-white);
    border: 3px solid transparent;
    background:
        linear-gradient(var(--background), var(--background)) padding-box,
        conic-gradient(from var(--angle),
            var(--color-violet),
            var(--color-d-blue),
            #DE3E91,
            var(--color-d-blue),
            var(--color-violet)
        ) border-box;
}

.gradient-btn-border {
    --angle: 90deg;
    --background: var(--color-white);
    border: 3px solid transparent;
    background:
        linear-gradient(var(--background), var(--background)) padding-box,
        var(--color-gradient-heading) border-box;
}

.gradient-border--pink {
    --background: var(--color-l-violet);
}

.gradient-border-animated:hover {
    animation: rotate 2s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
  
@keyframes rotate {
    to {
      --angle: 360deg;
    }
}

.gradient-border.competitions-outer-card {
    border: 3px solid var(--color-white);
    background: var(--color-white);
}
.gradient-border.competitions-outer-card:hover {
    border: 3px solid transparent;
    background:
        linear-gradient(var(--background), var(--background)) padding-box,
        conic-gradient(from var(--angle),
            var(--color-l-pink),
            var(--color-violet),
            var(--color-blue),
            var(--color-violet),
            var(--color-l-pink)
        ) border-box;
}
.gradient-border-animated.competitions-outer-card:hover {
    animation: rotate 5s linear infinite;
}
/* Gradient border end */

.gradient-text-heading,
h1, h2 {
    background: var(--color-gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: fit-content;
}

/* HELPERS */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.position-relative {
    position: relative;
}
/* HELPERS END */

.dsireschedule{
    display: none;
}
.text-box a, .pageDescription a, .singleSpeakerDescription a, .descriptionText a, .contestCondition a, .committeesCondition a{
    text-decoration: underline!Important;
}

html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-inter);
    font-size: 18px;
    letter-spacing: 0;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden !important;
}

.container {
    width: 90% !important;
    padding: 0;
}

@media screen and (min-width: 1690px) {
    .container {
        width: 80% !important;
    }
}

@media screen and (min-width: 1960px) {
    .container {
        width: 75% !important;
    }
}

.contests .container {
    width: 80% !important;
    padding: 0;
}

@media screen and (min-width: 1690px) {
    .contests .container {
        width: 70% !important;
    }
}

@media screen and (min-width: 1960px) {
    .contests .container {
        width: 65% !important;
    }
}

.confirm-row{
  margin: 30px 0;
}
.landingSubSubTitle:hover, .productTitleLanding:hover{
    opacity: 0.5;
    color: var(--color-black);
}
table{
    width: 100%;
}
.table th{
    font-weight: 300;
}

.mobile {
    display: none !important;
}

h1, h2, h3 {
    font-family: var(--font-montserrat);
    margin: 0;
    padding: 0;
}

h1 {
   font-weight: var(--fw-bold);
   font-size: clamp(39px, calc(80 / 1440 * 100vw), 100px);
   text-transform: uppercase;
   text-align: center;
   text-wrap: pretty;
}

h2 {
    font-weight: var(--fw-semibold);
    font-size: clamp(30px, calc(54 / 1440 * 100vw), 54px);
    letter-spacing: 0;
}

h3 {
    font-weight: var(--fw-semibold);
    font-size: clamp(28px, calc(30 / 1440 * 100vw), 38px);
    line-height: 24px;
}

*:focus {
    outline: 0;
    outline: none !important;
    color: var(--color-black) !important;
}

a {
    text-decoration: none !Important;
    color: var(--color-black) !important;
}

b, strong {
    font-weight: 700;
}

p{
    margin: 0;
    padding: 0;
}

section {
    margin-top: 80px;
}

section:first-of-type {
    margin-top: 0;
}

.page-container {
    margin-top: 112px;
    margin-bottom: 80px;
}

img:focus {
    outline:none !important;
}


.float-right{
    float: right;
}


.loginCard{
    background-color: #ffffff;
    padding: 40px;
    width: 400px;
    margin: 0 auto;
    margin-top: 30vh;
}

.loginImage {
    margin-bottom: 20px;
}

.loginInput {
    margin-bottom: 20px;
    margin-top: 20px;
}

.loginLink {
    padding-top: 10px;
    color: #333333;
    font-size: 12px;
}

/* NAVBAR */
.nav>li>a:hover, .nav>li>a:focus{
    color: #ed1d25;
}

.navbar-default {
    height: 52px;
    border-color: transparent;
    background: transparent;
    margin: 24px auto 0;
    -webkit-transition: padding .4s;
    -moz-transition: padding .4s;
    transition: padding .4s;
    width: 90%;
}

body.menu-open .navbar-default {
    margin: 0;
    width: 100%;
}

.navbar-default .container-fluid {
    padding-inline: 0;
}

.navbar-header {
    height: 52px;
}

.navbar-brand {
    height: 100%;
    padding: 0;
    margin: 0 !important;
    line-height: normal;
}

.navbar-brand img {
    height: 100%;
}

.navbar-nav{
    margin-right:0px!important;
}

.navbar-collapse.collapse {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-wrapper {
    height: 100%;
    width: 95%;
    display: flex;
    justify-content: center;
    position: relative;

}

.navbar-nav.nav-center {
    float: none;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex-wrap: nowrap;
    gap: 31px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    width: 90%;
    height: 100%;
    scrollbar-width: none;
    border-radius: var(--border-radius);
    padding-left: 5%;
    padding-right: 5%;
    cursor: grab;
}

.navbar-nav.nav-center {
    scroll-snap-type: x mandatory;
}

.navbar-nav.nav-center:active {
    cursor: grabbing;
}

/* @media screen and (min-width: 1350px) {
    .navbar-nav.nav-center {
        padding-left: 55%;
    }
}

@media screen and (min-width: 1590px) {
    .navbar-nav.nav-center {
        padding-left: 40%;
    }
}

@media screen and (min-width: 1760px) {
    .navbar-nav.nav-center {
        padding-left: 30%;
    }
}

@media screen and (min-width: 1960px) {
    .navbar-nav.nav-center {
        padding-left: 10%;
    }
} */

.navbar-nav.nav-center::-webkit-scrollbar {
    display: none;
}


.blur-box {
    position: absolute;
    top: 0;
    bottom: 0;
    align-self: center;
    width: 80px;
    height: 54px;
    border-radius: var(--border-radius);
    pointer-events: none;
    z-index: 5;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateZ(0);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset -6px -4px 4px rgba(255, 255, 255, 0.1),
        inset 6px 4px 10px rgba(255, 255, 255, 0.1);
}

.blur-box.left {
    left: 4.96%;
    mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 40%,
        transparent 90%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 40%,
        transparent 90%
    );
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.blur-box.right {
    right: 4.96%;
    mask-image: linear-gradient(
        to left,
        #000 0%,
        #000 40%,
        transparent 90%
    );
    -webkit-mask-image: linear-gradient(
        to left,
        #000 0%,
        #000 40%,
        transparent 90%
    );
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.navbar-nav.nav-center li {
    height: 100%;
}

.navbar-title {
    font-family: var(--font-montserrat);

    font-size: 14px;
    letter-spacing: 0;
    color: var(--color-black) !important;
    margin: 13px 0 !important;
    padding: 4px 10px !important;
    height: 100%;
    align-content: center;
    border-radius: var(--border-radius);
}

.navbar-title:hover {
    background: var(--color-pink) !important;
    color: var(--color-white) !important;
}

.navbar-nav.navbar-right {
    width: fit-content;
}

.registration-link {
    padding: 0 !important;
    margin-bottom: -10px;
}

.registration-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    width: 51px;
    padding: 10px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold);
    color: var(--color-black);
}

.registration-page .registration-btn {
    width: fit-content;
    border-radius: var(--border-radius);
    gap: 20px;
    justify-self: center;
    padding: 14px 75px;
}

.registration-btn:hover {
    --background: var(--color-white);
}

.registration-btn .registration-icon-path {
    fill: var(--color-black);
}

.registration-btn:hover .registration-icon-path {
    fill: url(#grad1);
}

.disabled-application .registration-btn {
    color: var(--color-white);
    background: var(--color-d-grey);
    cursor: not-allowed;
}

.disabled-application .registration-btn::before {
    background: var(--color-d-grey);
}

.disabled-application .registration-btn .registration-icon-path {
    fill: var(--color-white);
}

.disabled-application .registration-btn:hover {
    background: var(--color-d-grey);
}
.disabled-application .registration-btn:hover .registration-icon-path {
    fill: var(--color-white);
}


.navbar-brand-scroll{
    margin-left: 35px;
}


.navbar-brand-scroll img{
    width: 90px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.active-nav a {
    pointer-events: none;
    position: relative;
    display: inline-block;
}

.active-nav a::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 89%;
    height: 10px;
    background: var(--color-pink);
    border-radius: var(--border-radius);
}

.active-navSub{
    text-decoration: underline!important;
}

.navbar-default.navbar-second .navbar-nav>li>a{
    color: #ed1d25;
}



.navigationBorder{
    position: absolute;
    height: 17px;
    width: 1px;
    background-color: var(--color-white);
}


/*******************************/ 
.mega-menu {
    width: 190px;
    border-radius: 0;
    background-color: #00cded;
    padding: 15px;
    padding-left:0px;
}

.navbar-nav>li>.dropdown-menu{
    margin-top: -3px;
}

.mega-menu li {
    display: inline-block;
    float: left;
    font-size: 0.94rem;
    padding: 8px 0px;
    width: 100%;
}

.mega-menu .nav-header {
    padding: 0 !important;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.mega-menu img {
    padding-bottom: 10px;
}

.mega-menu-column li:hover{
    opacity: 0.7;
}

.mega-menu-column ul{
    padding-left:10px;
}




/* Disable Toggle style
********************************/  

/* Dropdown Toggle on style */
.navbar .nav li.dropdown.open > .dropdown-toggle, 
.navbar .nav li.dropdown.active > .dropdown-toggle, 
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
    background: inherit; /* Set to inherit when using mouse hover to open dropdown */
    color: inherit;
}   
/* Toggle off style */
.navbar .nav li.dropdown.open.active > .dropdown-toggle,
.navbar .nav > li.dropdown > a:focus { 
    background: blue;
    color: red;
}
/* Toggle hover */
.navbar .nav li.dropdown > .dropdown-toggle:hover,
.navbar .nav li.dropdown.open > .dropdown-toggle:hover {
    background-color: #00cded;
}


/* Toggle caret*/
.navbar .nav li.dropdown > .dropdown-toggle .caret {
    border-bottom-color: #ffffff;
    border-top-color: #ffffff;
}
/* Toggle caret hover */
.navbar .nav li.dropdown > a:hover .caret, 
.navbar .nav li.dropdown > a:focus .caret {
    border-bottom-color: #333;
    border-top-color: #333;
}
/* Toggle caret active */
.navbar .nav li.dropdown.open > .dropdown-toggle .caret, 
.navbar .nav li.dropdown.active > .dropdown-toggle .caret, 
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
    border-bottom-color:#333;
    border-top-color: #333;
    background: red;

}



/* Hover style
********************************/ 
.navbar-title,
.mega-menu a { 
    text-transform: uppercase;
    font-style: normal;
    max-width: none;
}

.mega-menu-column a{
    color:var(--color-white);
}

.mega-menu a:hover{
    cursor: pointer;
    transition: .3s;
}


.navbar-right{
    transition: .3s;
}

.navbar-right .dropdown-menu{
    right: auto;
}


.mega-menu a{
    padding-left: 10px;
    display: inline-block;
}


.mega-menu::before{
    content: '';
    display: block;
    height: 49px;
    width: 20px;
    background-color: #00cded;
    position: absolute;
    top: -48px;
    min-width: 115px;
    left: 0;
}
/* END OF NAVBAR */


/* LANDING PAGE */
/* HEADER */

.header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header-banner-container {
    width: 100%;
    aspect-ratio: 16 / 7;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

/* .header-banner-container .header-banner-image {
    width: 100%;
    height: auto;
    display: block;
} */

.header-banner-title {
    color: var(--color-white);
    font-size: clamp(13px, 1.3vw, 36px);
    text-align: start;
    width: fit-content;
    max-width: 80%;
    display: grid;
    gap: clamp(20px, 3.5vw, 100px);
}

.header-date-location {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    background: rgba(212, 220, 255, 0.28);
    width: fit-content;
}

.header-banner-text {
    line-height: 1.2;
    font-size: clamp(13px, 1.3vw, 36px);
}

/* DSI 2026 */
.header-banner-text p:nth-of-type(1) {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-bold);
    font-size: clamp(50px, 6vw, 160px);
}

/* 33. konferenca */
.header-banner-text p:nth-of-type(3),
.header-banner-text p:nth-of-type(4) {
    font-weight: var(--fw-regular);
}

/* Digitalna druzba */
.header-banner-text p:nth-of-type(6),
.header-banner-text p:nth-of-type(7) {
    font-weight: var(--fw-semibold);
}

.header-banner-image {
    position: relative;
    height: 100%;
    height: -webkit-fill-available;
    max-height: 750px;
}

.header .registration-btn {
    position: relative;
    top: -55px;
    width: 20%;
    height: fit-content;
    font-size: clamp(12px, 1.5vw, 18px);
    border-radius: var(--border-radius);
    gap: 15px;
}

.header .registration-btn::before {
    border-radius: var(--border-radius);
}

/* HEADER SPONSORS */
.footer-sponsors,
.header-sponsors {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-sponsor-container,
.header-sponsor-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius);
    padding: 20px 45px;
}

.footer-sponsor-container {
    height: 100%;
    justify-content: center;
}

.footer-sponsor-container .blockImages {
    width: 100%;
}

.sponsors-page .footer-sponsor-container {
    background: var(--color-white);
    box-shadow: 0px 5px 20px #00000046;
}

.header-sponsor-images {
    display: flex;
    gap: 100px;
}

.header-sponsor-image {
    max-height: 54px;
}

.header-sponsor-title {
    font-weight: var(--fw-light);
    font-size: 16px;
}

.footer-marquee-wrapper,
.marquee-wrapper {
    position: relative;
}

.footer-marquee,
.marquee {
    display: flex;
    white-space: nowrap;
    overflow-x: clip;
}

.footer-marquee-item,
.marquee-item {
    width: 100%;
}

.footer-marquee-active .footer-marquee-item,
.marquee-active .marquee-item {
    padding-inline-end: 30px;
    animation: marquee-content 25s linear infinite;
    width: auto;
}

.footer-marquee-active .footer-marquee-item {
    animation: footer-marquee-content 45s linear infinite;
}

.footer-marquee:hover .footer-marquee-item,
.marquee:hover .marquee-item {
    animation-play-state: paused ;
}

@keyframes marquee-content {
    from {
        -webkit-transform: translateX( 0% );
        transform: translateX( 0% );
    }
    to {
        -webkit-transform: translateX( -100% );
        transform: translateX( -100% );
    }
}

@keyframes footer-marquee-content {
    from {
        transform: translateX( 0% );
    }
    to {
        transform: translateX( -50% );
    }
}

.footer-marquee-wrapper .blur-box,
.marquee-wrapper .blur-box {
    height: 120%;
    top: -10%;
}

.footer-marquee-wrapper .blur-box.left,
.marquee-wrapper .blur-box.left {
    left: -1.5%;
}

.footer-marquee-wrapper .blur-box.right,
.marquee-wrapper .blur-box.right {
    right: -1.5%;
}

/* HEADER SPONSORS END*/
/* HEADER END */

.sweetLine{
    width: 40px;
    border-bottom: solid 1px #545454;
    height: 10px;
    margin: 0 auto;
}
.sweetLineModal{
    width: 100%;
    border-bottom: solid 1px #949494;
    height: 1px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.section-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}

.registration-page .section-title-container {
    gap: 14;
}

/* TIMER */
.timer-countdown-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    color: var(--color-pink);
    font-weight: var(--fw-semibold);
    font-size: 64px;
}

.timer-countdown-divider {
    padding-bottom: 10px;
}

.timer-countdown-box {
    width: clamp(40px, 13vw, 200px);
    height: clamp(40px, 13vw, 150px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px;
    padding-bottom: clamp(10px, 2.5vw, 40px);
    border-radius: var(--border-radius);
}

.timer-countdown-number {
    font-family: var(--font-montserrat);
    line-height: 1;
}

.timer-countdown-text {
    font-size: 24px;
}

/* TIMER END */

.landingDescription p{
    padding-top:30px;
}

.landingSecondTitle {
    font-size: 38px;
    font-weight: 700;
    margin-top: 100px;
    line-height: 1.32;
    color: #434343;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold);
    font-size: 22px;
    color: var(--color-d-grey);
    line-height: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.registration-page .section-subtitle {
    margin-bottom: 5px;
}

.landingSubSubTitle{
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #434343;
    margin-bottom:10px;
}

.landingFormTitle{
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #434343;
    margin-bottom:10px;
}

.landingThirdTitle {
    font-size: 38px;
    font-weight: 700;
    margin-top: 100px;
    line-height: 1.32;
    color: #434343;
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* LANDING PAGE END */

/*********/

/* .landing1{
    padding-top: 80px;
} */


.subscription-form-container {
    /* background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    position: relative;
    background: var(--color-grey);
    border-radius: var(--border-radius);
    padding: 50px 80px;
}

.form-corner-mask-1 {
    position: absolute;
    transform: rotate(180deg);
    height: 20%;
    z-index: 2;
    top: -0.6px;
    left: -0.6px;
}

.form-corner-mask-2 {
    position: absolute;
    height: 20%;
    z-index: 2;
    bottom: -0.6px;
    right: -0.6px;
}

.subscription-form-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.subscription-form-title {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold);
    line-height: 60px;
    /* font-size: 64px; */
    font-size: clamp(46px, calc(64 / 1440 * 100vw), 64px);
}

.subscription-form-subtitle {
    /* font-size: 24px; */
    font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
    line-height: clamp(18px, 2.5vw, 32px);
}

.subscription-form-footer {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.subscription-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscription-form-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    /* font-size: 24px; */
    font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
    line-height: 32px;
}

.footer .subscription-form-contacts {
    color: var(--color-white);
    text-align: start;
    font-size: 24px !important;
}

.footer .subscription-form-contacts .contacts-links {
    justify-content: start;
}

.footer .subscription-form-contacts svg path {
    fill: var(--color-white);
}

.footer .contacts-icon-email {
    filter: invert(1);
}

.subscription-form-container .form-group {
    margin-bottom: 0;
}

#individualForm .form-control,
.organization-application .form-control,
.subscription-form-container .form-control {
    outline: none;
    border-radius: var(--border-radius);
    height: 60px;
    padding-left: 40px;
    color: var(--color-d-grey);
    padding-top: 6px;
}

.contacts-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    transition: .3s;
}

.contacts-links a:hover svg path {
    fill: var(--color-d-blue);
}

.footer .contacts-links a:hover svg path {
    fill: var(--color-white);
}

/* FOOOTER */
.footer {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    padding: 90px 130px 108px 120px;
}

.footer .row:first-child {
    display: flex;
    gap: 20px;
}

.footer .row:first-child::before,
.footer .row:first-child::after {
    display: none;
}

.footerLogo{
    margin-top: -20px;
}

.footer .subscription-form-contacts,
.footer p {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-regular);
    font-size: 24px;
    line-height: 30px;
    color: var(--color-white) !important;
}

.footerList p{
    padding-bottom:10px;
}



/* SUBPAGE */

.subpageHeader{
    height: 220px;
    background-repeat: no-repeat;
    background-size: cover;
}

.subpageHeader .breadcrumbs{
    margin-top: 180px;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Muli', sans-serif;
    font-weight: 400;
}

.subpageHeader .breadcrumbs a{
    color: #ffffff;
}

.subpageHeader .breadcrumbs img{
    padding-left: 10px;
    padding-right: 10px;
}

.breadcrumbs{
    padding-top: 80px;
}

.breadcrumbs span{
    font-size:12px;
}

.subpageContainer{
    padding-top: 60px;
    padding-bottom: 90px;
}

.subpageContainerSidebar{
    padding-top: 0px;
    padding-bottom: 90px;
}

.subpageBody h2{
    font-size: 80px;
    font-weight: 700;
    color: #edeef5;
    text-transform: uppercase;
}

.subpageBody h1{
    font-size: 36px;
    font-weight: 500;
    color: #373434;
    margin-top: -35px;
}

.subpageBody .text{
    margin-top: 30px;
    line-height: 1.5 !Important;
    color: #5c5b5b;
    font-family: 'Muli', sans-serif !Important;
    font-weight: 400;
    margin-bottom: 80px;
    font-size: 16px;
}

.justified-gallery > .entry-visible:hover{
    opacity: 0.9;
}

#mobile-navigation{
    display: none;
}

.slicknav_menu{
    display: none;
}

/*custom*/

.landing-title {
    line-height: 32px;
}

.reasons .row:nth-of-type(2) {
    margin-bottom: 24px;
}

.reasons-outer-card,
.competitions-outer-card {
    border-radius: var(--border-radius);
    padding: 30px 20px;
    height: 100%;
}

.contests-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.competitions-outer-card {
    padding: 50px 35px;
    display: flex;
    align-items: stretch;
    gap: 15px;
}

.reasons .col-sm-6:first-child .reasons-outer-card {
    margin-right: 16px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.triangle{
    position: absolute;
    width: 0;
    height: 0;
    border-left: 125px solid transparent;
    border-bottom: 125px solid;
    bottom: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.reasons-outer-card:hover .triangle{
    border-left-width: 150px;
    border-bottom-width: 150px;
}

.reasons-text,
.competitions-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* .competitions-text {
    padding-right: 35px;
    } */

.competitions-text .btn-header-inverted {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competitions-text .btn-header-inverted svg {
    height: 60%;
}
    
/* #sponsorsFooter, #partnersFooter{
    padding-top:50px;
} */

.speakers-arrows {
    position: absolute;
    right: 0;
    top: 20%;
    display: flex;
    gap: 15px;
}

.speakers-arrow {
    background: var(--color-pink);
    border: 3px solid var(--color-pink);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.speakers-arrow:hover,
.speakers-arrow:active {
    background: var(--color-white);
}

.speakers-arrow svg path,
.speakers-arrow svg path, 
.competitions-text .btn-header-inverted svg path,
.competitions-text .btn-header-inverted svg path {
    transition: .3s;
}

.speakers-arrow:hover svg path,
.speakers-arrow:active svg path, 
.competitions-text .btn-header-inverted:hover svg path,
.competitions-text .btn-header-inverted:active svg path {
    fill: var(--color-pink);
}

.arrow-left {
    transform: rotate(180deg);
}

#contestSection p{
    color:#373434;
}

.competition{
    min-height:310px;
    background-repeat: no-repeat!Important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.cut{
    background: #fff;
    position: absolute;
    width: 100px;
    height: 400px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.cutRight{
    left: -70px;
    width: 140px;
    height: 500px;
    transform-origin: center top;
    transform: rotate(-21deg);
}
.competition-odd{
    background-position-x: 70px!Important;
}


.cutLeft{
    right: -80px;
    width: 150px;
    height: 500px;
    transform-origin: center top;
    transform: rotate(21deg);
}

.competition-even{
    background-position-x: -70px!Important;
}

.competition-title{
    font-weight: 600;
    font-size: 24px;
    padding-top:50px;
}
/* .contestCondition:before{
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background: var(--color-black);
    margin-top: -10px;
} */
.competition-description{
    padding-top:15px;
}

.competition-image {
    border-radius: var(--border-radius);
    width: 100%;
}

.contest-page .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contest-page .competition-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 700px;
    position: relative;
}

.contest-page .competition-image .competition-corner-mask {
    width: 85%;
    position: absolute;
    top: 0;
    left: -0.8px;
}

.contest-page .competition-image .form-corner-mask-2 {
    right: -0.9px;
}

.contest-title {
    position: absolute;
    top: 0;
    left: 0;
}

.galleryImage{
    width:100%;
}

.gallery-padding{
    padding:5px;
    margin: 10px;
}

.section-subtitle {
    margin-bottom: 20px;
}


.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-page .gallery-images-grid {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-image-item {
    width: 100%;
    aspect-ratio: 4 / 3; /* keeps them uniform */
    overflow: hidden;
    border-radius: 30px;
}

.gallery-page .gallery-image-item {
    border-radius: 18px;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.test-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    transition: height 0.4s ease;

    border-radius: var(--border-radius);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.test-container.expanded {
    height: 2200px;
}

.test-container-inner {
    height: 2200px;
}

.sponsors-wrapper,
.program-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 750px;
    transition: height 1s ease;
    border-radius: var(--border-radius);
    padding: 50px 60px;
}

.sponsors-wrapper {
    height: 100%;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.sponsors-block-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sponsor-title {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold);
    font-size: 30px;
    line-height: 40px;
}

.sponsor-blocks {
    display: flex;
    gap: 10px;
}

.sponsors-page .sponsor-blocks {
    flex-wrap: wrap;
}

/* .program-wrapper.expanded {
    max-height: 100%;
} */

.program-day[data-day="1"],
.program-timeline-wrapper[data-day="1"] {
    --primary-color: var(--color-violet);
    --secondary-color: var(--color-l-violet);
}

.program-day[data-day="2"],
.program-timeline-wrapper[ data-day="2"] {
    --primary-color: var(--color-pink);
    --secondary-color: var(--color-l-pink);
}

.program-day[data-day="3"],
.program-timeline-wrapper[data-day="3"] {
    --primary-color: var(--color-blue);
    --secondary-color: var(--color-l-blue);
}

.program-days {
    display: flex;
    gap: 8px;
}

.program-day {
    height: 75px;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 18px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
}

.program-day.col-sm-3 {
    width: 27%;
}

@media screen and (max-width: 1370px) {
    .program-day.col-sm-3 {
        width: 33.333333%;
    }
}

.program-day-icon {
    width: 15%;
    height: 100%;
}

.program-day-icon svg {
    width: 100%;
    height: 100%;
}

.program-day-icon svg path {
    transition: .3s;
}

/* .program-day-info {
    overflow: hidden;
} */

.program-day-count {
    font-size: 12px;
    line-height: 16px;
}

.program-day-date { 
    font-weight: var(--fw-semibold);
    line-height: 24px;
    white-space: nowrap;
}

.program-day:hover,
.program-day.active {
    background: var(--color-white);
    color: var(--color-black);
}

.program-day:hover svg path,
.program-day.active svg path {
   fill: var(--primary-color) !important;
}

.program-wrapper-toggle {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold);
    line-height: 24px;
    text-transform: uppercase;
    flex-direction: column;
    justify-self: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.program-wrapper-toggle img {
    transition: transform 0.3s ease;
}

.program-wrapper-toggle {
    display: inline-block;
    animation: arrowJump 1.2s ease-in-out infinite;
}

@keyframes arrowJump {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -6px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.program-wrapper-toggle.expanded {
    flex-direction: column-reverse;
}

.program-wrapper-toggle.expanded img {
    transform: rotate(180deg);
}

.program-timeline-wrapper {
    margin-top: 30px;
}

.program-timeline {
    position: relative;
    padding-left: 100px;
}

/* Main vertical line */
.program-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-white);
    z-index: 1;
}

.program-line {
    position: relative;
}

/* Time text */
.program-line::after {
    content: attr(data-time);
    color: var(--primary-color);
    background: var(--color-white);
    border-radius: 18px;
    padding: 5px 10px;
    position: absolute;
    left: -100px;
    top: 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 3;
}

.program-line:not(:first-child)::after {
    top: -5%;
}

.program-timeline .row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.program-timeline .row.no-gap {
    gap: 0;
    margin-top: 4px;
    margin-bottom: 4px;
}

.program-timeline .line:has(.row.no-gap) + .line:has(.row.no-gap) {
    margin-top: 6px;
}

.program-timeline .row.no-gap > [class*="col-"]:first-child {
    padding-left: 15px;
    padding-right: 3px;
}

.program-timeline .row.no-gap > [class*="col-"] {
    padding-inline: 3px;
}

.program-timeline .row.no-gap > [class*="col-"]:last-child {
    padding-left: 3px;
    padding-right: 15px;
}

.timeline li div{
    border-radius: 3px;
    font-size: 16px;
    z-index: 10;
}

.product-card {
    border-radius: 18px;
    background: var(--color-white);
    padding: 15px 25px;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card-time {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: var(--fw-semibold);
    padding: 5px 10px;
    border-radius: 18px;
    width: fit-content;
}

/*.product-card:hover p, .product-card:hover span, .product-card:hover strong {
    color:var(--color-white);
}*/
/*.product-card:hover{
    color:var(--color-white);
}*/
/* .timeline li div span{
    font-size: 12px;
    font-weight: 300;
    margin-top:5px;
} */

/*TIMELINE RESERVATIONS*/
/* .timeline {
    list-style: none;
}
.lineBig::after{
    height: 390px!important;
}
.lineSemi::after{
    height: 150px!important;
}
.line::after {
    content: " ";
    display: block;
    position: absolute;
    height: 90px;
    background: #dadada;
    width: 2px;
    left: -19px;
    top: 30px;
}
.active-line::after{
    background: #00cded;
}

.timeline:after {display: inline-block; content: ""; width: 100%;}

.timeline li {
    margin-top:20px;
    position:relative;
}

.timeline li:before {
    display: inline-block;
    content: attr(data-text);
    font-size: 12px;
    position: absolute;
    left: -110px;
    margin-top: 30px;
    font-weight:800;
}
.ball{
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100px!important;
    margin-top:30px;
    left: -26px;
    z-index:10000;
}
.special{
    height: auto!important;
}
.timeAndDate{
    text-align: left;
    padding-bottom:20px;
    font-size:12px;
    font-weight:700;
} */

/*ALL SPEAKER STYLES*/
.speaker-outer-card-landing a:focus{
    color:#fff;
    outline: none;
}

.carousel-landing .slick-list {
    overflow: visible;
}

.carousel-landing .slick-slide,
.carousel-landing .slick-slide * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
}

.carousel-landing .slick-track {
    user-select: text !important;
}

.slick-dots {
    display: none !important;
}

.speaker-outer-card-landing {
    width: 220px;
    margin:20px;
    border-radius: 3px;
    display: flex !important;
    flex-direction: column;
    gap: 7px;
}

.speaker-image {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    background-color: var(--color-grey);
}

.speakers-page .speaker-image {
    height: 400px;
}

.speaker-page .speaker-image {
    height: 100%;
    min-height: 250px;
    background-position: center 25%;
}

.speaker-image-mask {
    position: absolute;
    height: 70px;
    z-index: 2;
    bottom: -0.6px;
    right: -0.6px;
}

.speaker-info-back .speaker-image-mask {
    height: 90px;
}

.speaker-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.speakers-page .speaker-info {
    /* background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right; */
    gap: 0;
    height: 100%;
    border-radius: var(--border-radius);
    padding: 35px 70px;
    border-bottom-right-radius: 40px;
    position: relative;
}

.speaker-name {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold);
    font-size: 18px;
    line-height: 20px;
}
.speaker-page .speaker-name,
.speakers-page .speaker-name {
    /* font-size: 40px; */
    font-size: clamp(28px, calc(40 / 1440 * 100vw), 40px);
    line-height: normal;
}

.speaker-position {
    font-weight: var(--fw-light);
    font-size: 12px;
    line-height: 13px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.speakers-page .speaker-position {
    font-family: var(--font-montserrat);
    font-size: 22px;
    font-size: clamp(16px, calc(22 / 1440 * 100vw), 22px);
    line-height: normal;
    margin-top: 18px;
    display: block;
}

.speaker-positions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 55px;
}

.speaker-page .speaker-position {
    font-family: var(--font-montserrat);
    /* font-size: 18px; */
    font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
    line-height: normal;
    display: block;
    border-radius: var(--border-radius);
    padding: 6px 30px;
    width: fit-content;
    border: 2px solid transparent;
    text-transform: none;
}

.speaker-page .speaker-position::first-letter {
    text-transform: capitalize;
}

.text-box {
    border-radius: var(--border-radius);
    padding: 40px 85px;
    overflow: auto;
}

.text-box img {
    border-radius: 12px;
}

.speaker-page .text-box {
    margin-top: 40px;
}

.speaker-title {
    color: var(--color-white);
    font-size: 18px;
    line-height: 24px;
}

.speakers-page .speaker-title {
    color: var(--color-black);
    margin-top: 40px;
}

.speaker-link {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    width: 50px;
    height: 50px;
    transition: .3s;
}

.speakers-page .speaker-link {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
}

.speaker-header-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
    padding: 55px;
    display: flex;
}

.speaker-header-info {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    border-radius: var(--border-radius);
    height: 100%;
    padding: 20px 65px;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.flip-card {
    perspective: 1000px;
    width: 220px;
    height: 320px;
    margin: 0 auto;
    position: relative;
}

.footer-flip-card {
    perspective: 1000px;
    width: 220px;
    height: 90px;
    margin: 0 auto;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.footer-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.footer-flip-card:hover .footer-flip-card-inner {
    /* transform: rotateY(180deg); */
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.footer-flip-card-front,
.footer-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    inset: 0;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.footer-flip-card-front {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.flip-card-front .speaker-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.flip-card-back {
    background-color: var(--color-d-blue);
    transform: rotateY(180deg);
    padding: 20px;
}

.footer-flip-card-back {
    color: var(--color-white);
    font-weight: var(--fw-semibold);
    line-height: 24px;
    background-color: var(--color-d-blue);
    /* transform: rotateY(180deg); */
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.footer-flip-card:hover .footer-flip-card-front {
    opacity: 0;
    visibility: hidden;
}

.sponsors-page .footer-flip-card:hover .footer-flip-card-front {
    opacity: 1;
    visibility: visible;
}

.footer-flip-card:hover .footer-flip-card-back {
    opacity: 1;
    visibility: visible;
}

.cc-btn {
    color: var(--color-pink) !important;
    border-radius: var(--border-radius);
}

.speakers-link {
    font-family: var(--font-montserrat);
    font-weight: var(--fw-semibold) !important;
    font-size: 18px !important;
    line-height: 24px;
    padding: 14px 75px;
}

.speakerImage{
    border-radius: 3px;
    padding-left:0px;
    overflow: hidden;
}

.speaker-outer-card {
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: stretch;
}

.speaker-outer-card .col-sm-3 {
    padding-right: 9px;
}

.speaker-outer-card .col-sm-9 {
    padding-left: 9px;
}

.attendees-container {
    border-radius: var(--border-radius);
}

.parallelogram{
    position: absolute;
    width: 180px;
    height: 100%;
    transform: skew(-10deg);
    top: 0;
    left: -25px;
    z-index:-1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.speaker-outer-card:hover .parallelogram, .speaker-outer-card-landing:hover .parallelogram, .speakerImage:hover .parallelogram{
    width: 195px;
}
.speakerPosition{
    font-size: 16px;
    font-weight: 300;
    color: var(--color-black);
    font-size:13px;
}
.speakerPosition:before{
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    background:var(--color-black);
    margin-top:30px;
}
.slick-dots li button:before{
    font-size: 10px;
    color:#386178!important;
}
.slick-dots li{
    width: 5px;
}

.speakers-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.speakerTitle{
    font-weight: 800;
    padding-top:50px;
}
.speakerTitleLand{
    padding-top:30px;
    font-weight: 800;
}
.speakerDescription{
    padding-bottom:40px;
}
.singleSpeakerDescription{
    color:#373434!important;
    text-align: justify;
}
.speakerInfo{
    padding-bottom:10px;
}
.speakerInfo span{
    font-weight:800;
}

.speakerInfoLand{
    padding-bottom:30px;
}
.speakerInfoLand span{
    font-weight:800;
}
.equalHeight{
    min-height:350px;
}

/* END OF ALL SPEAKER STYLES*/

/*ALL INPUT STYLES*/
.form-control{
    border: solid 1px rgba(0, 0, 0, 0.32);
    padding-top: 10px;
    height:50px;
    padding-left: 20px;
    font-size: 16px;
    outline: 10px solid var(--color-white);
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    line-height: 1.5;
    letter-spacing: 0.15px;
    color: rgba(0, 0, 0, 0.6);
}
#inputContainer{
    padding-bottom:20px;
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    line-height: 1.5;
    letter-spacing: 0.15px;
    color: rgba(0, 0, 0, 0.6);
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    line-height: 1.5;
    letter-spacing: 0.15px;
    color: rgba(0, 0, 0, 0.6);
}
.form-control:focus{
    border: solid 2px #386178;
    box-shadow:none;
}
.label{
    display:none;
    position: absolute;
    top: -10px;
    left: 30px;
    line-height: 1.33;
    letter-spacing: 0.4px;
    color: #386178;
    height: 20px;
    background-color: #fff;
    font-size:12px;
    text-align: center;
    font-weight: 200;
    min-width:50px;
    border: dashed 1px #386178;
}
.actibeLabel{
    display:block;
}
.activeInput{
    border: solid 2px #386178;
}

/*END OF ALL INPUT STYLES*/

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

.footer a img{
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    width:26px;
}

.footer a:hover img{
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}
.committeesCondition{
    padding-bottom:40px;
}
.committeesCondition p{
    font-size:16px;
}

/*CHECKBOXES*/

.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 37px;
    margin-bottom: 12px;
    margin-top: 10px;
    padding-top: 4px;
    font-weight: 400;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkboxContainer.disabled{
    cursor: not-allowed;
    opacity: .7;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.disclaimer-text{
    font-size: 10px;
    font-weight: 300;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #2f363e;
}

.checkmark.disabled{
    background: #ccc;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkboxContainer.disabled:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: #f6f6f6;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0!Important;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tgl {
  position: relative;
  display: inline-block;
  height: 30px;
  cursor: pointer;
  margin-top: 10px;
}
.tgl > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  /* Put the input behind the label so it doesn't overlay text */
  visibility: hidden;
}
.tgl .tgl_body {
  width: 60px;
  height: 30px;
  background: var(--color-white);
  border: 1px solid #dadde1;
  display: inline-block;
  position: relative;
  border-radius: 50px;
}
.tgl .tgl_switch {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color: var(--color-white);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 50%;
  border: 1px solid #ccd0d6;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
  -moz-transition: left cubic-bezier(0.34, 1.61, 0.7, 1) 250ms, -moz-transform cubic-bezier(0.34, 1.61, 0.7, 1) 250ms;
  -o-transition: left cubic-bezier(0.34, 1.61, 0.7, 1) 250ms, -o-transform cubic-bezier(0.34, 1.61, 0.7, 1) 250ms;
  -webkit-transition: left cubic-bezier(0.34, 1.61, 0.7, 1), -webkit-transform cubic-bezier(0.34, 1.61, 0.7, 1);
  -webkit-transition-delay: 250ms, 250ms;
  transition: left cubic-bezier(0.34, 1.61, 0.7, 1) 250ms, transform cubic-bezier(0.34, 1.61, 0.7, 1) 250ms;
  z-index: 1;
}
.tgl .tgl_track {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 50px;
}
.tgl .tgl_bgd {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 55px;
  -moz-transition: left cubic-bezier(0.34, 1.61, 0.7, 1) 250ms, right cubic-bezier(0.34, 1.61, 0.7, 1) 250ms;
  -o-transition: left cubic-bezier(0.34, 1.61, 0.7, 1) 250ms, right cubic-bezier(0.34, 1.61, 0.7, 1) 250ms;
  -webkit-transition: left cubic-bezier(0.34, 1.61, 0.7, 1), right cubic-bezier(0.34, 1.61, 0.7, 1);
  -webkit-transition-delay: 250ms, 250ms;
  transition: left cubic-bezier(0.34, 1.61, 0.7, 1) 250ms, right cubic-bezier(0.34, 1.61, 0.7, 1) 250ms;
}
.tgl .tgl_bgd-negative {
  right: auto;
  left: -45px;
  background: var(--color-white) url("http://petelada.com/images/toggle/tgl_x.png") center center no-repeat;
}
.tgl:hover .tgl_switch {
  border-color: #b5bbc3;
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.tgl:active .tgl_switch {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.tgl > :not(:checked) ~ .tgl_body > .tgl_switch {
  left: 30px;
}
.tgl > :not(:checked) ~ .tgl_body .tgl_bgd {
  right: -45px;
}
.tgl > :not(:checked) ~ .tgl_body .tgl_bgd.tgl_bgd-negative {
  right: auto;
  left: -10px;
}
.switchText{
    position: absolute;
    top: 15px;
    font-weight: 100;
}

/*modal*/
.is-visible{
    display:block!Important;
}
.modal {
    position: fixed;
    display: block;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
}
.modal.is-visible {
    visibility: visible;
}
.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.modal-wrapper {
    position: absolute;
    z-index: 9999;
    top: 6em;
    left: 50%;
    width: 40em;
    margin-left: -20em;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    border-radius: 5px;
}

.modal-application-wrapper {
    position: absolute;
    z-index: 9999;
    top: 6em;
    left: 20%;
    width: 60%;
    background-color: var(--color-white);
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    border-radius: var(--border-radius);
    /* padding-left: 80px; */
    /* padding-right: 80px; */
    overflow: scroll;
}
.modal-wrapper section, .modal-application-wrapper section{
    padding: 80px;
    padding-top: 60px;
    /* padding-bottom: 60px; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-title{
    background-color: #fbfbfd;
    color: #3d465a;
    width: 100%;
    padding: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
}
.modal-title img{
    margin-right: 15px;
    margin-top: -3px;
}
.modal-transition {
    transition: all 0.3s 0.12s;
    transform: translateY(-10%);
    opacity: 0;
}
.modal.is-visible .modal-transition {
    transform: translateY(0);
    opacity: 1;
}

.applicationModalTopSection .btn-close {
    position: absolute;
    top: -35px;
    right: -30px;
}

.finish-modal-header .btn-close,
.registraion-modal-header .btn-close {
    position: absolute;
    top: 0;
    right: 0;
}

.finish-modal-footer {
    color: var(--color-black);
}

.finish-modal-footer p {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
}

.btn-close div{
    color: var(--color-white);
    float: right;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.modal-footer{
    text-align: left;
    border: none;
}
.cancelModal{
    font-size: 14px;
    font-weight: 600;
    color: #929eb8;
    margin-top: 15px;
    margin-left: 20px;
    cursor: pointer;
    transition: .3s;
}
.cancelModal:hover{
    color: #3b6a8d;
}
.modal-delete-icon img{
    width: 18px;
}



.element-text{
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}
.small-element-text{
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.big-element-text{
    text-align: center;
    font-size: 17px;
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: 900;
}
/*.modal-wrapper, .modal-application-wrapper{*/
/*    top: 25vh;*/
/*}*/
.attendeesList{
    padding:20px;
}
.applicationsWrap{
    border-bottom:1px solid var(--color-black);
    margin-bottom:10px;
}
.applicationsTitle{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}
.attendeesList .applications{
    display:inline-block;
    border-left:1px solid var(--color-black);
    padding-left:10px;
    padding-right:10px;
}

.applicationTypeCard{
    box-shadow: 0 4px 23px 0 rgba(219, 229, 236, 0.59);
    padding-top:30px;
    padding-bottom:10px;
}
.smallCard{
    width:30%;
    display:inline-block;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.smallCard:hover{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.bigCard{
    width:38%;
    display:inline-block;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.bigCard:hover{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.applicationTypeCard .type{
    font-size:20px;
    font-weight: 700;
    margin-bottom:10px;
}
.applicationTypeCard .price{
    font-size:18px;
}
.applicationTypeCard .price span{
    font-size:16px;
    font-weight: 700;
}

.applicationTypeCard .discount{
    font-size:17px;
    margin-top:5px;
    padding-bottom:20px;
}
/* .blockImages{
    padding-left:40px;
} */

.EarlyBirdDiscountText{
    font-weight:700;
    position:absolute;
    top:30px;
    left:0;
    right:0;
    color:var(--color-white);
    font-size: 12px;
}
.EarlyBirdDiscountText span{
    font-size:20px;
}


/*********************************
********APPLICATION CARD**********
*********************************/

.EarlyBirdDiscountText:before{
    content: '';
    position: absolute;
    width: 50px;
    background: red;
    height: 2px;
    bottom:calc(50% + 0px);
    left: calc(60% - 20px);
    -webkit-transform:rotate(-10deg);
    -moz-transform:rotate(-10deg);
    -ms-transform:rotate(-10deg);
    -o-transform:rotate(-10deg);
    transform:rotate(-10deg);
}
/* section {
  background: #fff;
  color: #7a90ff;
  position: relative;
  -webkit-font-smoothing: antialiased;
} */
.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 3em;
}
.pricing-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 330px;
  padding: 0px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  
}

label.error{color: red;}


.requiredInputCheck, .requiredCheckbox{
    background: #f9d8d863;
    border: 1px solid red !important;
}
.promocode_box{
    padding-top: 10px;
    position: relative;
}

.promocode_box img.img_promocode{
    width: 20px;
    position: absolute;
    left: 20px;
    top: 13px;
    filter: invert(65%) sepia(20%) saturate(622%) hue-rotate(287deg) brightness(87%) contrast(85%);
}

.promocode_box input{
    width: 100%;
    border-radius: 4px;
    border: solid 1px #ddd;
    height: 45px;
    font-size: 14px;
    color: #292828;
    padding-left: 10px;
    padding-right: 110px;
}

.promocode_box input::placeholder{
    color: #292828;
}

.promocode_box .btn_add_promocode{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: var(--color-pink);
    border: none;
    color: var(--color-white);
    font-size: 12px;
    font-family: 'Avenir-Black', sans-serif;
    font-weight: 700;
    text-align: center;
    height: 45px;
    margin-left: auto;
    margin-right: 0px;
    display: block;
    margin-top: -45px;
    z-index: 1;
    position: relative;
    padding: 0 30px;
    text-transform: uppercase;
    transition: .3s;
}

.promocode_box .btn_add_promocode:hover{
    opacity: 0.8;
}


.redBottomBorder{
    border-bottom: 1px solid red;
    padding-bottom: 4px;
}


.red-border {
    border: 1px solid red;



}
.blackInput{
    border: 1px solid rgba(0, 0, 0, 0.32) !important;
}

.invalid {

    border: 2px solid red !important;
    background-color: #f1847629 !Important;
    transition: .3s;

}

.notinvalid {
    border: 2px solid green !important;
    background-color: #F0FCF1 !Important;
    transition: .3s;
}

#PromocodeTitle::placeholder {
    color:#555;
}


.promocode_box .btn_add_promocode.active_promocode_btn{
    background-color: #c8e28d;
    color: #292828;
}


.error_box{
    padding: 10px;
    border: 1px solid #fd8a6e;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    display: none;
}
.core{

}
#invalid {
    border:1px solid var(--color-black) !important;
}
.valid {
    border:1px solid green
}


.radioBorder{
    border: 1px solid red;
}
.redBorder{
    border: 1px solid red;
}

.requiredInput2{
    border: 1px solid red;
}

.requiredBlackInput2{
    border: 1px solid var(--color-black) !important;
    color: red !important;
}
/*#email {*/
/*    border: 2px solid gray;*/
/*}*/

#email.valid-email {
    border: 2px solid var(--color-black) !important;
}

.requiredInput{
    border: 1px solid red !important;
}
.pricing-action {
  color: inherit;
  border: none;
  background: none;
}
input[type=radio] {
    border: 0px;
    width: 1.5em;
    height: 1.3em;
}

.pricing-action:focus {
  outline: none;
}

.pricing-feature-list {
  text-align: left;
}

.duration-hidden {
    display: none;
}

.pricing-palden .pricing-item {
  font-family: 'Open Sans', sans-serif;
  cursor: default;
  color: #84697c;
  background: #fff;
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  border-radius: 20px 20px 10px 10px;
  margin: 1em;
}

@media screen and (min-width: 66.25em) {
  .pricing-palden .pricing-item {
    margin: 1em -0.5em;
  }

  .pricing-palden .pricing__item--featured {
    margin: 0;
    z-index: 10;
    box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
  }
}
.pricing-palden .pricing-deco {
  border-radius: 10px 10px 0 0;
  padding-top:65px;
  padding-bottom:40px;
  position: relative;
}
.pricing-palden .pricing-deco-img {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 160px;
}
.pricing-palden .pricing-title {
  font-size: 0.75em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-black);
}
.pricing-palden .deco-layer {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.pricing-palden .pricing-item:hover .deco-layer--1 {
  -webkit-transform: translate3d(15px, 0, 0);
  transform: translate3d(15px, 0, 0);
}
.pricing-palden .pricing-item:hover .deco-layer--2 {
  -webkit-transform: translate3d(-15px, 0, 0);
  transform: translate3d(-15px, 0, 0);
}
.pricing-palden .icon {
  font-size: 2.5em;
}
.pricing-palden .pricing-price {
  font-size: 3em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}

.pricing-palden .pricing-period {
  font-size: 0.15em;
  padding: 0 0 0 0.5em;
  font-style: italic;
}
.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}
.pricing-palden .pricing-feature-list {
  margin: 0;
  padding: 0 0 0;
  list-style: none;
  text-align: center;
  z-index: 1;
}
.pricing-palden .pricing-feature {
  padding: 1em 0;
  font-size:14px;
}
.discount{
    font-size:10px!important;
}

.workshop{
    font-size:10px!important;
}
.pricing-palden .pricing-action {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  color: #fff;
  border-radius: var(--border-radius);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}
.pricing-currency{
    font-size:20px;
}
.pricing-item:hover{transform: scale(1.06);}
.cardCheckmarkContainer{
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    margin-top: 10px;
    padding-top: 1px;
}
.cardCheckmarkContainer .checkmark{
    height: 15px;
    width: 15px;
}
.cardCheckmarkContainer .checkmark:after{
    left: 4px;
    top: -0.5px;
    width:5px;
}
.earlyBirdValidityText{
    font-size:12px;
    padding-bottom:20px;
}
#error{
    color: red;
    font-size: 12px;
}

.error {
    border: 1px solid #f00;
}
/* .contestCondition{
    padding-top:40px;
} */
.agreementLink{
    text-decoration: underline!important;
}
.blockImages{
    /* max-width:180px; */
    max-height: 60px;
}

.bplanet-development {
    padding-top:10px;
    padding-bottom:10px;
    font-size:11px;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
}

.bplanet-development a{
    color: var(--color-white) !important;
}
@keyframes beat{
    to { transform: scale(1.2); }
}
.headerImage{
/*    min-width:400px;
    min-height:390px;*/
/*    width:100%;
    height:400px;*/
}
.imtip {
/*    position: absolute;
    top: 0;
    left: 130px;*/
    margin-top:-420px;
}

.workShopWrap{
    width:100%;
    border:1px solid var(--color-black);
    padding:10px;
    cursor:pointer;
    margin-top:10px;
    color:var(--color-black);
}
.workShopInfo{
    padding-top:10px;
    display: none;
    font-size:12px;
}
#workShopApplicationDiv{
    display: none;
    margin-top:20px;
}
.activeTab{
    background: #3385aa;
    color: #fff;
}
.AgreeToTermsSpan, .PreConferenceSpan, .WorkShopApplication, .NotifyMeSpan{
    color:var(--color-black);
    font-size: 14px;
    line-height: 14px;
}
.RegisteredStudentLabel{
    padding:10px;border: solid 1px rgba(0, 0, 0, 0.32);font-weight:100;cursor: pointer;border-radius: 4px;
}
.RegisteredStudentWrapper{
    display:none;color:var(--color-black);margin-top:10px;
    
}
.speakerImage img, .speakersImage{
    width:60%;
}
.arrow-right{
    width:auto!important;
}
.frozen-card{
    background-color: #c7c7c7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23fdf6f6' fill-opacity='0.34' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}
video {
  width: 100%;
  max-height: 100%;
}
.customLink{
    color: #337ab7;
}
.dates{
    font-size: 1em !important;
    font-weight: bold;
}
.application_card {
    height: 180px;
    border-radius: var(--border-radius);
}

.application_card h3 {
    text-align: center;
    font-size: 24px;
    display: inline-block;
}
.application_card_img {
    margin-left: 0;
    height: 180px;
}
.application_card_right{
    /* padding-left: 0; */
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.secondRowContainer{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.secondRowIcon{
    height: 25px;
}

.btn-application-card{
    /* position: relative;
    border-radius: 21px;
    background-color: #e87817;
    border: 1px solid #e87817;
    letter-spacing: 0.9px;
    color: #ffffff;
    transition: .3s;
    font-weight: 800;
    font-size: 12px;
    padding: 12px 45px;
    transition: all .4s;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center */
    width: 60%;
}

.btn-application-card .registration-btn {
    width: 100%;
    height: fit-content;
    font-size: clamp(12px, 1vw, 18px);
    border-radius: var(--border-radius);
    gap: 15px;
    padding: 7px;
}

.registration-btn::before {
    border-radius: var(--border-radius);
}


.btn-application-card img{
    position: absolute;
    right: 20px;
    transition: all .3s;
}
.btn-application-card:hover img {
    right: 15px; /* Adjust this value to move the arrow more to the right on hover */
}
.btn-application-card:hover{
    opacity: .7;
    color: #fff;
    /*border: 1px solid #ff9e4a;*/
}
.application-full{
    color: red;
    font-size: 12px;
}
.disabled-card{
    opacity: .65
}
#GzsDiscountWrapper{
    display: none;
}
.sectionTitle{
    color: var(--color-black);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.promocodeText{
    color: var(--color-pink);
    font-size: 14px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
}
.promocodeText span.bold{
    font-weight: 700;

}
.NopromocodeText{
    color: var(--color-black);
    font-size: 12px;
    transition: all .3s;
    margin-top: 10px;
}
.promocodeText:hover{
    text-decoration: underline;
    opacity: .75;
}
.modalDisclaimerText{
    font-size: 10px;
    font-weight: 300;
    color: #757575;
    text-transform: none;
}
#PromocodeError{
    color: red;
    font-size: 12px;
}
#PromocodeAccepted{
    color: #000;
    font-size: 14px;
    padding: 10px;
    background: #ebebeb;
    border-radius: 8px;
}
span.close{
    line-height: .8;
    opacity: .4;
}
.individual-modal{
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    border-radius: 5px;
    overflow: scroll;
}
.modal-form{
    max-width: 720px;
    margin: 0 auto;
    overflow: scroll;
}

/* Styling for individual radio boxes */
.radioBox {
    margin-bottom: 10px; /* Add margin between boxes */
    font-size: 14px;
}
/* Styling for radio buttons */
.radioBox input[type="radio"] {
    display: none; /* Hide the default radio buttons */
}

/* Styling for labels */
.radioBox label {
    display: block; /* Display labels as blocks */
    color: var(--color-black);
    position: relative;
    font-weight: normal;
    cursor: pointer;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid #ccc;
    text-align: center;
    transition: all .3s;
}
.radioBox label:hover{
    background-color: #f6f6f6;
    box-shadow: 0 4px 23px 0 #dbe5ec;
}
.radioBox label span{
    display: block;
}
/* Styling for labels when radio button is checked */
.radioBox input[type="radio"]:checked + label {
    border: 2px solid var(--color-pink); /* Blue border when radio button is checked */
    background-color: var(--color-l-pink);
    font-weight: 700;
}
#tableResults tr{
    cursor: pointer;
}
#tableResults tr:hover{
    background-color: #f6f6f6;
}
#tableResults .tableArrow{
    height: 10px;
    margin-right: 10px;
    transform: rotate(90deg);
}
#tableResults .tableArrow.rotateArrow{
    transform: rotate(270deg);
}
#tableResults .dropdown_content{
    font-size: 12px;
}
.uploadImage{
    height: 30px;
    display: block;
    margin: 0 auto;
}
/* .applicationTitleRow{
    padding-bottom:40px;
    padding-top:70px;
} */

.applicationModalTopSection{
    display: flex;
    align-items: center;
    justify-content: center;
}
.applicationModalTitle{
    font-family: var(--font-montserrat);
    font-size: 22px;
    line-height: normal;
    text-align: center;
    display: flex;
    justify-content: center;
}
.fixed{
    position: fixed;
}
#applicationModel{
    overflow: scroll;
    height: auto;
}
.studentDisclamerText{
    font-size: 12px;
    font-weight: 300;
    color: #757575;
    text-transform: none;
}
.AgreeToTermsSmallText{
    font-size: 10px;
    font-weight: 300;
    color: #757575;
    text-transform: none;
}
.durationSmall{
    font-size: 10px;
    font-weight: 300;
    color: #757575;
}
.preconferenceInviteText{
    font-size: 13px;
    margin-top: 5px;
    font-weight: 300;
    color: #757575;
    text-transform: none;
}
.certificateUploadText{
    font-size: 10px;
    color: #757575;
}
#myDiv{
    display: none;
    color: #000000;
}