.content {
    width: 95%;
    margin: 0 auto;
}

.content__title {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
}

.content__title--m-sm {
    margin-bottom: 10px;
}

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    /* color: rgba(108, 117, 125, 0.7); */
    color: #FFF;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0;
    }
}


/* .multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
} */

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: currentColor;
    z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    color: #00A7E1;
}


/* .multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
} */

.multisteps-form__form {
    color: #000;
    position: relative;
}

.multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.multisteps-form__panel[data-animation="scaleOut"] {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.multisteps-form__panel[data-animation="scaleOut"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.multisteps-form__panel[data-animation="slideHorz"] {
    left: 50px;
}

.multisteps-form__panel[data-animation="slideHorz"].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
}

.multisteps-form__panel[data-animation="slideVert"] {
    top: 30px;
}

.multisteps-form__panel[data-animation="slideVert"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
}

.multisteps-form__panel[data-animation="fadeIn"].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* Overwrite */

.layer-eventSingle .panel-bannerImg {
    height: auto;
}

.layer-eventSingle .pre-line {
    white-space: pre-line;
}

.container.content-title {
    margin-bottom: 80px;
}

.multisteps-form__progress {
    border: 2px solid #FFF;
    border-radius: 40px;
}

.multisteps-form__progress-btn {
    border-radius: 40px;
    color: #F2EEEB;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 5px;
}

.multisteps-form__progress-btn:before,
.multisteps-form__progress-btn:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    background-color: #FC3312;
    color: #FFF;
}

.card,
.multisteps-form__panel.card {
    background-color: #F2EEEB;
    border-radius: 0;
}

.card .card-header,
.multisteps-form__panel.card .card-header {
    background-color: transparent;
    border-bottom: 0;
    padding: 15px;
}

.card .card-header .heading-cardTitle,
.multisteps-form__panel.card .card-header .heading-cardTitle,
.card .card-header .heading-cardSubTitle,
.multisteps-form__panel.card .card-header .heading-cardSubTitle,
.card .card-header .heading-cardSubSubTitle,
.multisteps-form__panel.card .card-header .heading-cardSubSubTitle {
    color: #8A6EFF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card .card-header .heading-cardSubTitle,
.multisteps-form__panel.card .card-header .heading-cardSubTitle {
    font-weight: 400;
    margin-bottom: 0;
}

.card .card-header .heading-cardSubSubTitle,
.multisteps-form__panel.card .card-header .heading-cardSubSubTitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.card .card-body,
.multisteps-form__panel.card .card-body {
    padding: 15px;
}

.card .card-footer,
.multisteps-form__panel.card .card-footer {
    background-color: transparent;
    padding: 15px;
}

.standardForm .multisteps-form__content .form-check-inline label.form-check-label {
    line-height: 20px;
}

.standardForm .multisteps-form__content a.btn {
    padding: 5px 15px;
}

@media (min-width: 768px) {
    .card .card-header .heading-cardTitle,
    .multisteps-form__panel.card .card-header .heading-cardTitle,
    .card .card-header .heading-cardSubTitle,
    .multisteps-form__panel.card .card-header .heading-cardSubTitle {
        font-size: 30px;
    }
    .card .card-header .heading-cardSubSubTitle,
    .multisteps-form__panel.card .card-header .heading-cardSubSubTitle {
        font-size: 24px;
    }
    .card .card-header,
    .multisteps-form__panel.card .card-header,
    .card .card-body,
    .multisteps-form__panel.card .card-body,
    .card .card-footer,
    .multisteps-form__panel.card .card-footer {
        /* padding: 20px 30px; */
        padding: 0;
    }
}


/* Overwrite 2024 */

.layer-content .content {
    width: 100%;
}

.col-sidebarRegister {
    padding-left: 0;
    padding-right: 0;
}

.layer-sidebarRegister .panel-logo {
    display: none;
}

.layer-sidebarRegister .panel-logo .img-fluid {}

.layer-sidebarRegister .panel-logo .img-fluid.logo-lead {
    max-height: 32px;
}

.layer-sidebarRegister .panel-logo .img-fluid.logo-group {}

.multisteps-form__progress {
    border: 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}

.multisteps-form__progress .multisteps-form__progress-btn {
    cursor: default;
    font-size: 1rem;
    margin: 0 0 0 5px;
    padding: 0 0 0 30px;
    position: relative;
    text-align: left;
    text-indent: 0;
}

.multisteps-form__progress .multisteps-form__progress-btn:before {
    background-color: #D1E68D;
    border: 0;
    border-radius: 0;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 44%;
    height: 2px;
    width: 45%;
}

.multisteps-form__progress .multisteps-form__progress-btn:first-of-type {
    margin-left: 0;
    padding-left: 0;
}

.multisteps-form__progress .multisteps-form__progress-btn:first-of-type::before {
    display: none;
}

.multisteps-form__progress .multisteps-form__progress-btn span {}

.multisteps-form__progress .multisteps-form__progress-btn span.span-circle {
    background-color: #D1E68D;
    border: 1px solid #D1E68D;
    border-radius: 100%;
    color: #008FDC;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    height: 24px;
    line-height: 24px;
    text-align: center;
    width: 24px;
}

.multisteps-form__progress .multisteps-form__progress-btn span.span-circle.no {
    background-color: transparent;
    display: none;
}

.multisteps-form__progress .multisteps-form__progress-btn span.span-circle.check {}

.multisteps-form__progress .multisteps-form__progress-btn span.span-label {
    display: none;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active {
    background-color: transparent;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn:before {
    background-color: rgba(255, 255, 255, 0.4);
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-circle.no,
.multisteps-form__progress .multisteps-form__progress-btn.js-active span.span-circle.no {
    display: flex;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-circle.no,
.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-label {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active span.span-circle.no {
    border-color: #FFF;
    color: #FFF;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-circle.check,
.multisteps-form__progress .multisteps-form__progress-btn.js-active span.span-circle.check {
    display: none;
}

@media (min-width: 375px) {
    .multisteps-form__progress .multisteps-form__progress-btn {
        margin: 0 0 0 10px;
        padding: 0 0 0 50px;
    }
    .multisteps-form__progress .multisteps-form__progress-btn:before {
        width: 55%;
    }
}

@media (min-width: 992px) {
    .col-sidebarRegister {
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
    }
    /* .layer-sidebarRegister {
        background-image: url(../images/auth-side.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: start;
        min-height: 80vh;
        padding: 3rem 2.5rem;
    }
    .layer-sidebarRegister .panel-logo {
        display: block;
        margin: 80px 0;
    } */
}


/* .layer-sidebarRegister {
    background-image: url(../images/auth-side.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
} */

.multisteps-form__progress {
    flex-direction: column;
    justify-content: start;
}

.multisteps-form__progress .multisteps-form__progress-btn {
    margin: 10px 0 0;
    padding: 50px 0 0;
}

.multisteps-form__progress .multisteps-form__progress-btn:before {
    left: 11px;
    top: 0;
    height: 55%;
    width: 2px;
}

.multisteps-form__progress .multisteps-form__progress-btn:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.multisteps-form__progress .multisteps-form__progress-btn span.span-label {
    display: inline-block;
    margin-left: 0.5rem;
}


/* @media (min-width: 1200px) {
    .layer-sidebarRegister {
        min-height: 900px;
    }
}

@media (min-width: 1400px) {
    .layer-sidebarRegister {
        min-height: 900px;
    }
} */

.col-contentRegister {
    padding-top: 4rem;
}

.card,
.multisteps-form__panel.card {
    background-color: transparent;
    border: 0;
    color: #FFF;
}

.card.card-authentication .card-header,
.card.card-authentication .card-body,
.card.card-authentication .card-footer,
.multisteps-form__panel.card .card-header,
.multisteps-form__panel.card .card-body,
.multisteps-form__panel.card .card-footer {
    padding: 0;
}

.card.card-authentication .card-header,
.multisteps-form__panel.card .card-header {
    padding-bottom: 0;
}

.card.card-authentication .card-footer,
.multisteps-form__panel.card .card-footer {
    border: 0;
    padding: 3rem 0 0;
}

.card.card-authentication a.btn,
.standardForm .multisteps-form__content a.btn {
    padding: 0.5rem 2rem;
}

.card.card-authentication .card-header .heading-cardTitle,
.card.card-authentication .card-header .heading-cardSubTitle,
.multisteps-form__panel.card .card-header .heading-cardTitle,
.multisteps-form__panel.card .card-header .heading-cardSubTitle {
    color: #FCFCFC;
}

.card.card-authentication .card-header .heading-cardTitle,
.multisteps-form__panel.card .card-header .heading-cardTitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card.card-authentication .card-header h2.heading-cardTitle,
.multisteps-form__panel.card .card-header h2.heading-cardTitle {
    font-size: 1.75rem;
}

.card.card-authentication .card-header .heading-cardSubTitle,
.multisteps-form__panel.card .card-header .heading-cardSubTitle {
    font-size: 1.25rem;
}

.card.card-authentication .card-header .panel-cardSubTitle,
.multisteps-form__panel.card .card-header .panel-cardSubTitle {
    color: #C8C8C8;
    margin-bottom: 0.5rem;
}

.card.card-authentication a {
    color: #D0DC30;
    text-decoration: none;
}

.card.card-authentication a:hover {
    color: #BDBDBD;
}

.card.card-authentication a.btn {
    color: #FFF;
}

.card.card-authentication a.btn:hover {
    color: #FFF;
}

@media (min-width: 992px) {
    .col-contentRegister {
        padding-top: 0;
    }
    .card.card-authentication .card-header h2.heading-cardTitle,
    .multisteps-form__panel.card .card-header h2.heading-cardTitle {
        font-size: 2.25rem;
    }
    .card.card-authentication .card-header h3.heading-cardTitle,
    .multisteps-form__panel.card .card-header h3.heading-cardTitle {
        font-size: 1.75rem;
    }
}


/* 2025 Overwrite */


/* .multisteps-form__progress .multisteps-form__progress-btn {
    margin: 0 5px 0 0;
    padding: 0 30px 0 0;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-circle.no,
.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-label {
    background-color: rgba(255, 255, 255, 0.5);
}

.multisteps-form__progress .multisteps-form__progress-btn:before {
    display: none;
}

.multisteps-form__progress .multisteps-form__progress-btn:after {
    background-color: #D1E68D;
    border: 0;
    border-radius: 0;
    content: '';
    display: block;
    left: auto;
    position: absolute;
    right: calc(-50% - 13px / 2);
    top: 44%;
    height: 2px;
    width: 45%;
} */

.multisteps-form__progress .multisteps-form__progress-btn {
    padding: 0 0 0 100px;
}

.multisteps-form__progress .multisteps-form__progress-btn:before {
    width: 77%;
}

.multisteps-form__progress-btn span.span-circle.no {
    border-color: rgba(255, 255, 255, 0.5);
}

.multisteps-form__progress .multisteps-form__progress-btn span.span-circle {
    background-color: transparent;
}

.multisteps-form__progress .multisteps-form__progress-btn span.span-circle.check:after {
    background-color: #FDFCBC;
    border-radius: 100%;
    box-shadow: 0 0 10px 0px #FDFCBC;
    content: '';
    display: block;
    height: 16px;
    width: 16px;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active span.span-circle.no {
    border-color: #FDFCBC;
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn span.span-circle.no {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.multisteps-form__progress .multisteps-form__progress-btn.js-active~.multisteps-form__progress-btn:nth-of-type(2)::before {
    background-color: #D1E68D;
}