@font-face {
    font-family: 'poppins_regular';
    src: url('../../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../../fonts/poppins/Poppins-Regular.woff') format('woff'),
        url('../../fonts/poppins/Poppins-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppins_semibold';
    src: url('../../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
        url('../../fonts/poppins/Poppins-SemiBold.woff') format('woff'),
        url('../../fonts/poppins/Poppins-SemiBold.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'poppins_regular';
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    word-break: break-word;
    font-weight: normal;
    line-height: normal;
}
.disable_sec {
    opacity: .5;
    pointer-events: none;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}
html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    overflow: hidden;
}

a {
    color: #3D1CDE;
    text-decoration: none;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

b,
strong {
    font-family: 'poppins_semibold';
}

input,
textarea,
select,
.custom-dropdown-trigger {
    border: 1px solid transparent;
    border-radius: 7px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #40caff, #8a3ffc) border-box;
    font-size: 15px;
    padding: 15px 10px;
    width: 100%;
    color: black;
    transition: all .15s ease-in-out;
    resize: none;
    box-shadow: 0px 2px 4px 0px rgb(138 63 252 / 25%);
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #969696;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 14px;
    border-radius: 10px;
    background: linear-gradient(90deg,
            rgba(252, 76, 63, 0.9),
            rgba(253, 138, 94, 0.9),
            rgba(223, 0, 223, 0.9),
            rgba(81, 225, 226, 0.9));
    outline: none;
    margin: 20px 0 30px 0;
    border: 0 !important;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    background: #eeeeff;
    border: 2px solid #565ADD;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    height: 30px;
    width: 30px;
    background: #eeeeff;
    border: 2px solid #565ADD;
    border-radius: 50%;
    cursor: pointer;
}

.slider_labels {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding: 0 5px;
}

input.user_count {
    width: 190px;
    padding: 8px;
    font-weight: bold;
    text-align: center;
}

input:-webkit-autofill,
.custom-dropdown-trigger:-webkit-autofill {
    border-color: #8a3ffc;
    -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

input:focus,
textarea:focus,
select:focus,
.custom-dropdown-trigger:focus {}

input::placeholder,
textarea::placeholder,
select::placeholder,
.custom-dropdown-trigger:placeholder {
    color: rgba(166, 166, 166, 1);
    font-style: italic;
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-track {
    background: #eeeeee;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(rgb(172 196 220), rgb(126 163 204), rgb(115 142 198));
}

.loader {
    position: fixed;
    top: 54px;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 79px);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
}

.loader img {
    height: 250px;
    width: auto;
}

.btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 10px 20px;
    border-radius: 20px;
    transition: color .20s ease-in-out, background-color .20s ease-in-out, border-color .20s ease-in-out, box-shadow .20s ease-in-out;
    cursor: pointer;
    line-height: normal;
    font-size: 14px;
}

.mini_btn {
    padding: 8px 20px;
    border-radius: 14px;
    font-size: 12px;
}

.btn>span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn>span>img,
.btn_icon {
    height: 14px;
    width: 14px;
}

.btn_block {
    width: 100%;
}

.left_arrow,
.right_arrow {
    background: url('../../images/left_arrow.svg') no-repeat;
}

.dark_left_arrow,
.dark_right_arrow {
    background: url('../../images/dark_left_arrow.svg') no-repeat;
}

.right_arrow,
.dark_right_arrow {
    transform: rotate(180deg);
}

.btn_icon {
    background-size: contain !important;
    background-position: right !important;
}

.light_btn {
    background: white;
    border-color: white;
    color: #3D1CDE;
}

.light_btn:hover {
    box-shadow: #ff89c0 0px 7px 20px 10px;
}

.primary_btn {
    position: relative;
    color: #fff;
    border-color: #7128cd;
    background: linear-gradient(135.41deg, #461891 0%, #7a2bd9 100%);
    overflow: hidden;
    z-index: 0;
}

.primary_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
    opacity: 0;
}

.primary_btn:hover::before {
    background: linear-gradient(135.41deg, #7a2bd9 0%, #461891 100%);
    opacity: 1;
}

.secondary_btn {
    color: #461891;
    border-color: #461891;
    background: transparent;
}

.secondary_btn:hover {
    background-color: rgb(255 255 255 / 30%);
    backdrop-filter: blur(10px);
}

.tertiary_btn {
    background: #461891;
    border-color: #461891;
    color: white;
}

.tertiary_btn:hover {
    background: #7a2bd9;
    border-color: #7a2bd9;
}

.danger_btn {
    background: #e94444;
    border-color: #e94444;
    color: white;
}

.danger_btn:hover {
    background: #e72828;
    border-color: #e72828;
}

.dark_purple_border_btn {
    background: #ffffff;
    border-color: #565ADD;
    color: #565ADD;
}

.dark_purple_border_btn:hover {
    background: #3236d6;
    border-color: #3236d6;
    color: #ffffff;
}

.error_msg {
    color: red;
    font-size: 12px;
    margin-top: 6px;
    width: 100%;
}

/* Validation error styling - only error message, no field highlighting */
.validation_error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 6px;
    width: 100%;
    display: block;
}

.mandatory_field,
.mandatory_field:hover {
    background-color: #fd939317 !important;
    border-color: #ff1b1b !important;
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.custom-dropdown-trigger.mandatory_field {
    animation: unset !important;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.info_msg {
    color: #000000;
    font-size: 12px;
    margin-top: 6px;
    line-height: 16px;
}

.form_input label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-family: 'poppins_semibold';
}

.form_input {
    max-width: 100%;
    width: 800px;
}

.form_field_auto .form_input {
    max-width: auto;
    width: auto;
}

.tablist {
    float: right;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    padding: 4px;
    clear: both;
    margin-bottom: 10px;
    margin-right: 10px;
}

.left_tablist {
    float: unset;
    display: inline-block;
}

.tab {
    font-size: 12px;
    padding: 7px;
    border-radius: 20px;
    display: inline-block;
    font-family: 'poppins_semibold';
    color: #231D4F;
}

.tab.active {
    background: #231D4F;
    color: white;
}

.popup-content {
    overflow: hidden;
    border-radius: 12px;
    background: white;
    color: black;
}

.popup-dialog {
    margin: auto;
    padding: 10px;
    vertical-align: middle;
    top: 0;
    bottom: 0;
    transition: transform .3s ease-out;
    transform: translate(0, -25%);
    min-width: 300px;
}

.global_popup {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.popup_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 200ms;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    background: rgb(0 0 0);
    background: rgb(0 0 0 / 50%);
}

.popup_backdrop.show .popup-dialog {
    transform: translate(0, 0);
}

.popup-header .popup-title {
    margin: 0;
    width: 100%;
    font-size: 20px;
    clear: both;
    text-align: center;
    color: #3D1CDE;
    font-family: 'poppins_semibold';
}

.popup-header .popup_header_btn {
    background: no-repeat;
    font-size: 17px;
    font-weight: 700;
    padding: 11px 15px;
    cursor: pointer;
    color: #000000;
    border: 0;
    float: right;
}

.popup-header .popup_header_btn:hover {
    opacity: 1;
    color: #3D1CDE;
}

.popup-body {
    padding: 15px 15px 40px 15px;
    font-size: 13px;
    display: block;
    width: 100%;
    clear: both;
    text-align: center;
    line-height: 18px;
}

.popup-footer .btn-block {
    width: 100%;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    margin: 0;
    border-radius: 0 !important;
    min-width: 41px;
    border: 0;
    border-right: 1px solid #ffffff6b;
}

.popup-content:has(.popup-footer) .popup-body {
    max-height: calc(100dvh - 100px) !important;
}

.popup-footer {
    display: flex;
}

.popup-footer .btn-block:last-child {
    border-right: 0;
}

.popup-body ul {
    padding-left: 35px;
}

.info_body>* {
    margin-bottom: 15px;
}

.info_body {
    text-align: left;
}

.info_body>*:last-child {
    margin: 0;
}

#formContent {
    height: 100%;
}

@keyframes trainerview_popup_show {
    0% {
        opacity: 0;
        pointer-events: none;
    }

    100% {
        opacity: 1;
        pointer-events: auto;
    }
}

.popup_backdrop.show {
    animation-name: trainerview_popup_show;
    -webkit-animation-name: trainerview_popup_show;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

@keyframes popup_backdrop_hide {
    0% {
        opacity: 1;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

.popup_backdrop_hide {
    animation-name: popup_backdrop_hide;
    -webkit-animation-name: popup_backdrop_hide;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

@keyframes popup-dialog_show {
    0% {
        transform: translate(0, -25%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.popup_backdrop.show .popup-dialog {
    animation-name: popup-dialog_show;
    -webkit-animation-name: popup-dialog_show;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

@keyframes popup-dialog-hide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, -25%);
    }
}

.popup-dialog-hide {
    animation-name: popup-dialog-hide;
    -webkit-animation-name: popup-dialog-hide;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

header {
    background: white;
    padding: 7px 20px;
    box-shadow: 0px 2px 4px 0px #9f9f9f40;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.project_title {
    color: #3D1CDE;
    font-family: 'poppins_semibold';
    text-align: right;
    padding-left: 12px;
    font-size: 18px;
}

footer {
    background: white;
    font-size: 11px;
    padding: 7px 10px;
    box-shadow: 2px 0px 4px 0px #9f9f9f40;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

body {
    background: url('../../images/bg.png') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center right;
}

.body_section {
    height: calc(100dvh - 79px);
}

.header_logo>* {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.header_logo_section {
    border-right: 1px solid #000000;
    padding-right: 10px;
}

/* .welcome_screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-left: 14%;
    gap: 10px;
    text-align: center;
    overflow: auto;
    background: linear-gradient(306.81deg, rgba(252, 76, 63, 0.36) -0.19%, rgba(253, 138, 94, 0.36) 17.22%, rgba(223, 0, 223, 0.36) 50.37%, rgba(81, 225, 226, 0.36) 95.34%);
} */

/* .welcome_screen::before {
    content: "";
    background: url('../../images/flow.png') no-repeat;
    background-position: left bottom;
    height: calc(100dvh - 81px);
    width: 100%;
    background-size: contain;
    position: absolute;
    top: 55px;
    left: 0;
    bottom: auto;
    right: auto;
    background-attachment: fixed;
} */

.welcome_heading {
    font-size: 55px;
    color: #3D1CDE;
    font-family: 'poppins_semibold';
}

.welcome_disc {
    font-style: italic;
    font-size: 21px;
    width: 70%;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

.welcome_btn .start_icon {
    height: 27px;
    width: 27px;
}

.start_icon {
    background: url('../../images/start_icon.svg') no-repeat;
}

.otp_sec input {
    display: inline-block;
    width: 52px;
    padding: 17px 5px;
    margin-right: 5px;
    border-radius: 5px;
    text-align: center;
}

.custom-dropdown-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s ease;
    min-height: 38px;
}

.selected-text {
    flex: 1;
    color: #333;
}

.dropdown-arrow {
    color: #666;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 190px;
    overflow-y: auto;
}

.dropdown-search {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    width: calc(100% - 16px);
    margin: 8px;
    transition: border-color 0.3s ease;
}

.dropdown-search::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.dropdown-options {
    max-height: 140px;
    overflow-y: auto;
}

.dropdown-option {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
}

.dropdown-option:hover {
    background-color: #f2f0ff;
    color: #3D1CDE;
}

.dropdown-option.selected {
    background-color: #3D1CDE;
    color: #fff;
}

.dropdown-option[data-selected="true"] {
    background-color: #f2f0ff;
    color: #3D1CDE;
}

.dropdown-option.no-results {
    color: #6c757d;
    font-style: italic;
    cursor: default;
}

.dropdown-option.no-results:hover {
    background-color: transparent;
}

.tooltip {
    background: #000000;
    font-size: 12px;
    padding: 7px 9px;
    color: #ffffff;
    z-index: 999;
}

.full_popup {
    .popup-body {
        height: calc(100dvh - 42px);
        max-height: calc(100dvh - 42px) !important;
    }

    .popup-content:has(.popup-footer) .popup-body {
        height: calc(100dvh - 80px);
        max-height: calc(100dvh - 80px) !important;
    }

    .popup-dialog {
        padding: 0;
    }

    .popup-content {
        border-radius: 0;
    }

    .popup-dialog {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        max-width: 100% !important;
    }
}

.no_data_found>img {
    height: auto;
    max-width: 300px;
    width: 100%;
}

.no_data_found>p,
.no_data_found>a {
    margin-bottom: 15px;
}

.no_data_found {
    display: block;
    width: 100%;
    text-align: center;
    background: white;
}

/************************ Responsive styles ************************/
@media (max-width: 1024px) {

    /* .btn>span>img,
    .btn_icon {
        height: 16px;
        width: 16px;
    } */
}

@media (max-width: 768px) {
    footer {
        text-align: center;
        font-size: 10px;
        padding: 2px;
    }

    footer>p {
        width: 100%;
    }

    .page_heading {
        font-size: 18px;
    }

    .popup-header .popup_header_btn {
        padding: 11px;
    }

    header {
        padding: 7px 10px;
    }
}

@media (max-width: 426px) {

    /* .form_input {
        margin-bottom: 20px;
    } */

    .otp_sec input {
        width: 41px;
        padding: 12px 5px;
    }
}

@media (max-width: 354px) {
    .body_section {
        height: calc(100dvh - 92px);
    }

    footer {
        padding: 4px 5px;
    }
}