* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: "EudoxusSans Bold";
    src: url("fonts/EudoxusSans-Bold-BF659b6cb1408e5.ttf") format("truetype");

    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "EudoxusSans Light";
    src: url("fonts/EudoxusSans-Light-BF659b6cb2036b5.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "EudoxusSans ExtraLight";
    src: url("fonts/EudoxusSans-ExtraLight-BF659b6cb1e7092.ttf")
        format("truetype");

    font-weight: lighter;
    font-style: normal;
}
@font-face {
    font-family: "EudoxusSans Medium";
    src: url("fonts/EudoxusSans-Medium-BF659b6cb1c14cb.ttf") format("truetype");

    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "EudoxusSans Regular";
    src: url("fonts/EudoxusSans-Regular-BF659b6cb1d4714.ttf") format("truetype");

    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "EudoxusSans ExtraBold";
    src: url("fonts/EudoxusSans-ExtraBold-BF659b6cb1b96c9.ttf")
        format("truetype");

    font-weight: 900;
    font-style: normal;
}

:root {
    --EudoxusSansRegular: "EudoxusSans Regular";
    --EudoxusSansMedium: "EudoxusSans Medium";
    --EudoxusSansBold: "EudoxusSans Bold";
    --EudoxusSansExtraBold: "EudoxusSans ExtraBold";
    --EudoxusSansExtraLight: "EudoxusSans ExtraLight";
    --EudoxusSansLight: "EudoxusSans Light";
    --text-color: #333333;

    --text-secondary-color: #0b393e;
    --primary-color: #083456;
    --blue-light-: #0ab4a1;
}

body {
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    background-color: white;
}
/* width */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--blue-light-);
    border-radius: 10px;
}

/* Styling For extra large devices */

.large-none {
    display: none !important;
}

.signup-wrapper .container-fluid {
    padding: 0px !important;
}
.signup-wrapper .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.signup-wrapper .row .padding0 {
    padding: 0px !important;
}
.signup-wrapper .left-section {
    height: 100vh;
}
.signup-wrapper .left-section .inner {
    padding: 32px 42px 0px 42px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}
.signup-wrapper .logo-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.signup-wrapper .logo-wrapper img {
    flex-shrink: 0;
    width: 194px;
    height: auto;
    object-fit: contain;
}
.signup-wrapper .logo-wrapper .already-account {
    font-family: var(--EudoxusSansMedium);
    font-size: 16px;

    color: var(--text-color);
    margin: 0px;
    margin-top: 10px;
}

.signup-wrapper .logo-wrapper .already-account a {
    text-decoration: none;
    cursor: pointer;
    color: var(--blue-light-);
}
.signup-wrapper .title {
    font-family: var(--EudoxusSansBold);
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 16px;
}
.signup-wrapper .input-wrapper {
    margin-bottom: 30px;
    position: relative;
}
.mb-22 {
    margin-bottom: 22px !important;
}
.mb-24 {
    margin-bottom: 24px !important;
}
.mb-16 {
    margin-bottom: 16px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-32 {
    margin-bottom: 32px !important;
}
.mb-8 {
    margin-bottom: 8px !important;
}
.mb-12 {
    margin-bottom: 12px !important;
}
.input-wrapper label {
    font-family: var(--EudoxusSansBold);
    margin-bottom: 13px;
    display: flex;
    gap: 5px;
    font-size: 16px;

    width: 100%;
}
.input-wrapper label .icon-wrapper {
    position: relative;
    cursor: pointer;
}
.input-wrapper .icon-wrapper .info {
    position: absolute;
    background-color: white;
    z-index: 9;
    left: 15px;
    bottom: 15px;
    padding: 16px;
    min-width: 266px;
    border-radius: 6px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: none;
    transition: all 0.3s ease-in-out;
}
.input-wrapper .icon-wrapper:hover .info {
    display: block !important;
}

.input-wrapper .icon-wrapper .info .title {
    font-size: 14px !important;
    font-weight: 700;
    font-family: var(--EudoxusSansBold);
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}
.input-wrapper .icon-wrapper .info .flex-item {
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 500;

    margin-bottom: 8px;
}
.input-wrapper .icon-wrapper .info .flex-item span {
    color: #00000040;
    font-family: var(--EudoxusSansMedium);
    font-size: 14px;
}
.input-wrapper .icon-wrapper .info .flex-item img {
    width: 16px;
    height: auto;
    object-fit: contain;
}
.input-wrapper .icon-wrapper .info .flex-item i {
    color: #00000040;
    font-size: 16px;
}
.input-wrapper .icon-wrapper .info .flex-item.verified span {
    color: rgba(11, 57, 62, 1);
    text-shadow: none;
}
.input-wrapper .icon-wrapper .info .flex-item.verified i {
    color: rgba(10, 180, 161, 1);
}
.input-wrapper label .icon-wrapper img {
    width: 16px;
    height: auto;
    object-fit: contain;
}
.input-wrapper .input,
.input {
    padding: 10px 22px;
    font-size: 16px;
    border: 1px solid #bababa;
    border-radius: 12px;
    height: 48px;
    font-family: var(--EudoxusSansRegular);
    display: block;
    width: 100%;
    background-color: transparent;
}
.input-wrapper .input:focus {
    box-shadow: none;
    outline: none;
}
::placeholder {
    color: #979797 !important;
    font-family: var(--EudoxusSansRegular);
}

.flex-input-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--EudoxusSansBold);
    margin-bottom: 16px;
}

.input-wrapper .error {
    font-size: 13px !important;
}
.flex-input-wrapper .input {
    width: 80px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}
.flex-input-wrapper .input:focus {
    outline: none;
    box-shadow: none;
}
.flex-input-wrapper span {
    font-size: 20px;
    font-weight: 600;
}
.signup-wrapper .trial-wrapper {
    font-family: var(--EudoxusSansRegular);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 58px;
}

.signup-wrapper .bottom-section {
    border-top: 1px solid #d4d4d4;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 80px;
    width: 100%;
}

.signup-wrapper .bottom-section .left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.signup-wrapper .bottom-section label {
    font-family: var(--EudoxusSansRegular);
    font-size: 16px;
    margin: 0px;
}
.signup-wrapper .bottom-section label a {
    text-decoration: none;
    font-family: var(--EudoxusSansBold);
}
.signup-wrapper .bottom-section .left input {
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    height: 20px;
    border: none;
    width: 20px;
}
.signup-wrapper .bottom-section .left input:before {
    content: "";
    border-radius: 2px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border: 1px solid #BABABA;
    box-sizing: border-box;
}
.signup-wrapper .bottom-section .left input:checked:before {
    background-color: #0AB4A1;
    border: 1px solid #0AB4A1;
}

.signup-wrapper .bottom-section .left input:checked:after {
    content: "";
    background-image: url(../admin-assets/images/input-arrow.svg);
    width: 10px; /* Set appropriate width */
    height: 8px; /* Set appropriate height */
    background-size: contain;
    position: absolute;
    color: white;
    background-repeat: no-repeat;
    left: 5px;
    top: 6px;
}
.signup-wrapper .bottom-section .right {
    flex-shrink: 0;
}
.signup-wrapper .bottom-section .left a {
    color: var(--blue-light-);
}
.signup-wrapper .button {
    font-family: var(--EudoxusSansBold);
    padding: 8px 28px;
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;

    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 9px;
}
.signup-wrapper .button:hover {
    background-color: #07A392 !important;
    border: 1px solid #07A392 !important;
}
.signup-wrapper .button:focus {
    background-color: #068879 !important;
    border: 1px solid #068879 !important;
}
.signup-wrapper .right-section {
    padding-top: 200px;
    /* padding-bottom: 40px; */

    background: #e7f8f6;
    height: 100%;
}
.signup-wrapper .single-item {
    display: flex;
    flex-direction: column;
}
.signup-wrapper .right-section .content {
    padding: 10px 74px;
}
.signup-wrapper .right-section .title {
    font-family: var(--EudoxusSansBold);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}
.signup-wrapper .right-section .text {
    font-family: var(--EudoxusSansRegular);
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
}
.signup-wrapper .right-section .single-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.signup-wrapper .owl-dots {
    margin-top: 50px !important;
    display: flex;
    justify-content: center;
    gap: 11px;
}
.signup-wrapper .owl-theme .owl-dots .owl-dot span {
    height: 14px;
    width: 14px;
    margin: 0px !important;
    background: #0733551a !important;
}
.signup-wrapper .owl-dot span {
    border-radius: 1px !important;
}
.signup-wrapper .owl-theme .owl-dots .owl-dot.active span {
    background-color: #03af9f !important;
}
.signup-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    top: .8px;
    right: .51px;
}
.signup-wrapper .inner-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    top: -0.2px;
}
/* login styling  */
.login-wrapper {
    display: flex;
    height: 100%;
    min-height: 100vh;
}
.login-wrapper .left-section {
    max-width: 50%;
    flex-basis: 50%;
    flex-shrink: 0;

    background-color: rgb(232, 245, 241);
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-wrapper .left-section img {
    object-fit: contain;
    max-height: 500px;
    width: auto;
}
.login-wrapper .right-section {
    max-width: 50%;
    flex-basis: 50%;
    flex-shrink: 0;
    padding-top: 106px;
    padding-bottom: 106px;
    background-color: #fff;
    height: 100vh;
    overflow-y: auto;
}
.iti__search-input {
    padding: 8px 10px;
    border: 2px solid #ECF2F6 !important;
}
.iti__search-input:focus {
    box-shadow: none !important;
    border: 2px solid #ECF2F6 !important;
    outline: none;
    font-size: 14px !important;
    color: var(--text-color) !important;
}
.login-wrapper .right-section .inner {
    max-width: 536px;
    margin: 10px auto;
}
.login-wrapper .right-section .inner .detail-section {
    text-align: center;
    margin-top: 150px;
}
.login-wrapper .right-section .inner .detail-section .img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 24px;
}
.login-wrapper .right-section .inner .detail-section .title_med {
    font-family: var(--EudoxusSansBold);
    font-size: 48px;

    line-height: 1.4;
    text-align: center;
    color: #0B393E;
    margin-bottom: 18px;
}
.login-wrapper .right-section .inner .detail-section .text {
    font-family: var(--EudoxusSansRegular);
    font-size: 16px;
     color: #666666;
    line-height: 1.5;
    text-align: center;
}

.login-wrapper .right-section .inner .detail-section .text a {
     color: var(--blue-light-);
}

.login-wrapper .right-section .inner .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 47px;
}
.login-wrapper .right-section .inner .logo img {
    width: 280px;
    height: auto;
}
.login-wrapper .right-section .inner .title {
    font-size: 48px;
    font-family: var(--EudoxusSansBold);
    color: var(--text-secondary-color);
    margin-bottom: 18px;
}
.login-wrapper .right-section .inner .text {
    font-size: 16px;
    font-family: var(--EudoxusSansRegular);
    color: #666666;
    line-height: 1.5;
    margin-bottom: 24px;
    word-break: break-all;
}
.login-wrapper .right-section .inner .social-login {
    font-family: var(--EudoxusSansMedium);
    border: 1px solid #979797;
    border-radius: 12px;
    background-color: white;
    padding: 16px;
    box-shadow: 0 8px 34px 0 rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 56px;
    margin-bottom: 30px;
}
.login-wrapper .right-section .inner .social-login img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.or-wrapper {
    position: relative;

    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.or-wrapper .line {
    flex-shrink: 0;
    height: 1px;
    background-color: #979797;

    flex-basis: 44%;
}
.or {
    padding: 10px;
    font-size: 16px;
    height: 30px;
    width: 30px;

    color: #979797;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-wrapper .input-wrapper {
    margin-bottom: 32px;
}
.login-wrapper .input-wrapper .relativ-input img {
    top: 19px;
}
.login-wrapper .input-wrapper label {
    font-size: 16px;
    font-family: var(--EudoxusSansBold);

    color: #0b3a3f;
    margin-bottom: 16px;
}
.login-wrapper .input-wrapper label.error {
    margin-bottom: 0px;
}

.login-wrapper .input-wrapper .input {
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #979797;
    background-color: transparent;
    font-family: var(--EudoxusSansRegular);
    padding-right: 56px;
    height: 56px;
}
.relativ-input {
    position: relative;
}
.relativ-input img {
    position: absolute;
    top: 16px;

    right: 16px;
    width: 24px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}
.relativ-input .password-eye {
    position: absolute;
    top: 10px;

    right: 16px;
    font-size: 22px;
    height: auto;
    cursor: pointer;
    color: #2d2d2d;
}
.remember-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.remember-section .left {
    display: flex;
    gap: 15px;
}

.remember-section .left input {
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    height: 24px;
    width: 24px;
    padding: 0px;
    border: none;
    border-radius: 6px;
}
.remember-section .left input:before {
    content: "";
    border-radius: 6px !important;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border: 1px solid #979797;
    box-sizing: border-box;
}
.remember-section .left input:checked:before {
    background-color: #0ab4a1;
    border: 1px solid #979797;
}

.remember-section .left input:checked:after {
    content: "";
    background-image: url(../admin-assets/images/input-arrow.svg);
    width: 10px; /* Set appropriate width */
    height: 8px; /* Set appropriate height */
    background-size: contain;
    position: absolute;
    color: white;
    background-repeat: no-repeat;
    left: 7px;
    top: 8px;
}
.remember-section .left label {
    font-size: 16px;
    color: var(--text-secondary-color);
    font-family: var(--EudoxusSansMedium);
}
.remember-section .forgot {
    font-size: 16px;
    color: var(--text-secondary-color);
    font-family: var(--EudoxusSansMedium);
    text-decoration: none;
}
.login-wrapper .button {
    background-color: var(--blue-light-);
    border-radius: 12px;
    border: 1px solid var(--blue-light-);
    font-size: 16px;
    font-family: var(--EudoxusSansBold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    padding: 16px;
    height: 56px;
    margin-bottom: 24px;
    box-shadow: 0px 8px 34px 0px #00000014;
}
.login-wrapper .button:hover {
    background-color: #07A392
}
.login-wrapper .button:focus {
    background-color: #068879;
}
.dont-have-account {
    text-align: center;
    font-family: var(--EudoxusSansRegular);
    color: #333333;
    font-size: 16px;
    margin-bottom: 24px;
}
.dont-have-account a {
    color: var(--blue-light-);
    font-weight: var(--EudoxusSansExtraBold) !important;
    text-decoration: none;
}
.dont-have-account a.color-black {
    font-weight: var(--EudoxusSansExtraBold) !important;
    color: #333333;
}
.small-modal-wrapper .modal-content {
    padding: 24px 36px;
    max-width: 628px !important;
    width: 100%;
    border-radius: 16px;
    margin: auto;
}
.small-modal-wrapper .modal-content .modal-body {
    padding: 0px;
}
.small-modal-wrapper .modal-content .image-small {
    display: flex;
    justify-content: center;
}
.small-modal-wrapper .modal-content .image-small img {
    width: 96px;
    height: auto;
    margin-bottom: 22px;
}
.small-modal-wrapper .modal-content .image-small.w100 img {
    width: 100px;
}
.small-modal-wrapper .modal-content .title {
    font-size: 24px;
    color: #0B393E;
    line-height: 2;
    font-weight: 600;
    margin-bottom: 22px;
    text-align: center;
}
.small-modal-wrapper .modal-content .text {
    font-size: 14px;
    color: #6C6C6C;
    line-height: 2;
   
    font-family: var(--EudoxusSansMedium);
    font-weight: 500;
    text-align: center;
    margin-bottom: 22px;
}

.small-modal-wrapper .modal-content .text strong {
    color: #6C6C6C;
    font-family: var(--EudoxusSansBold);
    font-weight: 700 !important;
}
.max-420 {
    max-width: 420px;
    margin: auto;
}
.small-modal-wrapper .modal-content .text a {
    color: #6C6C6C;
    text-decoration: underline;
    font-family: var(--EudoxusSansBold);
    font-weight: 700;
}
.small-modal-wrapper .modal-content .text-large {
    font-size: 16px;
    color: #6C6C6C;
    line-height: 2;
   
    font-family: var(--EudoxusSansRegular);
    font-weight: 400;
    text-align: center;
    margin-bottom: 22px;
}
.small-modal-wrapper .modal-content .text-large a {
    color: #0AB4A1;
    font-family: var(--EudoxusSansBold);
    font-weight: 700;
    cursor: pointer;
}
.small-modal-wrapper .modal-content .button {
    padding: 16px;
    color: white;
    text-align: center;
    background-color: var(--blue-light-);
    border: 1px solid var(--blue-light-);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--EudoxusSansMedium);
    font-weight: 500;
}
.small-modal-wrapper .modal-content .button:hover {
    background-color: #07a392;
    border: 1px solid #07a392;
}
.small-modal-wrapper .modal-content .button:focus {
    background-color: #068879;
    border: 1px solid #068879;
}
.buttons-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}
.buttons-flex button {
    flex: 0 0 50%;
}
.small-modal-wrapper .modal-content .social-button {
    border: 1px solid #979797;
    border-radius: 12px;
    background-color: transparent;
    padding: 16px;
    box-shadow: 0 8px 34px 0 rgba(0, 0, 0, 0.08);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    height: 56px;
    width: 100%;
}
.small-modal-wrapper .modal-content .social-button:hover {
    background-color: #e7f8f6;
}
.small-modal-wrapper .modal-content .social-button:focus {
    background-color: #068879;
    border: 1px solid #068879;
    color: white;
}
.small-modal-wrapper .modal-content .social-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.slider-wrapper {
    padding: 12px 0px;
    width: 100%;
    position: relative;
    margin-bottom: 16px;
}
.signup-wrapper .slider-wrapper input {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 8px;
    outline: none;
    border-radius: 24px;
    background-color:#D9D9D9;
}
.signup-wrapper .slider-wrapper input[type=range]::-webkit-slider-runnable-track {
    background: transparent !important;
    /* ...my custom edits...*/
}

.signup-wrapper .slider-wrapper input[type=range]:hover::-webkit-slider-runnable-track {
    background: transparent !important;
    /* ...my custom edits... */
}
.signup-wrapper .slider-wrapper input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;


    background: url(../assets/images/range-icon.svg) no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    vertical-align:middle;
    z-index: 3;

}

.signup-wrapper .slider-wrapper input[type=range]::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: url(../assets/images/range-icon.svg) no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    vertical-align:middle;
    z-index: 3;

}
.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-size: 10px 6px;
    position: relative;
    background-image: url(../assets/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 97%;
}
.input-wrapper select:focus {
    background-image: url(../assets/images/arrow-up.svg);
    background-repeat: no-repeat;
    background-position: 97%;
}

.signup-wrapper .iti,
.iti {
    width: 100%;
}
.iti__selected-country {
    height: 46px !important;
}


.iti__selected-country-primary {
    background-color: #ECF2F6 !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    min-width: 48px !important;
}

.iti--inline-dropdown .iti__dropdown-content {
    padding: 4px 0px;
    margin-top: -7px !important;
    border: 2px solid #ECF2F6 !important;
    border-top: 0px !important;

    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    z-index: 5 !important;
    box-shadow: none !important;

}
.iti__search-input {
    margin-bottom: 4px !important;
    width: calc(100% - 8px) !important;
    margin-left: 4px !important;
    padding: 8px 16px !important;
    border: 2px solid #ECF2F6 !important;
    border-radius: 8px !important;
    color: #B7B7B7 !important;
    font-family: var(--EudoxusSansMedium);
}

select {
    -webkit-appearance: none;
    /* Safari and Chrome */
    -moz-appearance: none;
    /* Firefox */
    -ms-appearance: none;
    /* Internet Explorer */
    appearance: none;
    /* Standard */
    background: transparent;
    /* Ensures background is transparent */
    background-image: none;
    /* Removes any default background images */
}

.single-select span.select2-search.select2-search--dropdown {
    display: none !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #ECF2F6 !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    outline: none !important;
    color: #B7B7B7;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border: 2px solid #ECF2F6 !important;
    outline: none !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #0B393E !important;
}

.select2-container{
        z-index: 2;
}
.user-submission-dropdown select,
.select2-container--default .select2-selection--single {
    height: 48px;
    display: block;
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    padding: 8px 16px;
    border: 1px solid #bababa;
    border-radius: 9px;
    width: 100%;
}

#edit-field-form .select2-container--default.select2-container--disabled .select2-selection--single{
    background-color: #ECF2F6;
}
#edit-field-form .select2-container--default.select2-container--disabled .select2-selection__rendered{
    color: #0B393E!important;
}

#edit-field-form .select2-container--default.select2-container--disabled .select2-selection__arrow {
    display: none;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent transparent transparent !important;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent transparent transparent !important;
}


.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    top: 0px;
    width: 47px;
    right: 0px;
    height: 48px;
    border-radius: 0 9px 9px 0;
    background-color: #ecf2f6;
    background-image: url(../admin-assets/images/downactive.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow {
    background-image: url(../admin-assets/images/arrowup.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

.select2-container--default .select2-results__option {
    padding: 16px;
    font-size: 14px !important;
    background-color: transparent !important;
    color: #6c6c6c;
    /* Default color */
    border-bottom: 1px solid #ECF2F6 !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding: 0px !important;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background: #03af9f1a !important;
    color: #6c6c6c;
}

.select2-container--open .select2-dropdown--below {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border:2px solid #ECF2F6;
    border-top: 0px !important;
}
.ui-menu {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: white;
    max-height: 300px;
    overflow-y: auto;
}
.ui-menu:not(:hover) .ui-menu-item-wrapper,.ui-menu:hover .ui-menu-item-wrapper  {
    background-color: transparent !important;
    border: none !important;
    color:  #6C6C6C !important;
    padding: 0px !important;
    transform: none !important;
}


.ui-menu .ui-menu-item {
padding: 14px !important;
color: #6C6C6C !important;
font-size: 14px !important;
font-family: var(--EudoxusSansMedium) !important;
border-bottom: 1px solid #ECF2F6;
}
.ui-menu .ui-menu-item:hover {
    background-color: #03AF9F1A;
}
.ui-widget-content {
    color:  #6C6C6C !important;
    font-size: 14px !important;
    font-family: var(--EudoxusSansRegular);
}
.ui-menu .ui-menu-item:hover .ui-menu-item-wrapper {
    background-color: transparent !important;
    border: none !important;
    color:  #6C6C6C !important;
    transform: none !important;
}
.iti__country.iti__highlight{
    background-color: #03AF9F1A !important;

}
.iti__country{
    border-bottom: 1px solid #ECF2F6 !important;
    color: #6C6C6C !important;
    padding: 14px !important;
}

.iti__country:hover {
    background-color: #03AF9F1A !important;
}
.iti .iti__selected-dial-code {
    font-size: 16px;
    font-family: var(--EudoxusSansRegular);
    margin-top: 2px;
}
#end_subscription-error {
    position: absolute;
    bottom: -10px;
}
.pointer {
    cursor: pointer;
}

/* Styling For large devices */
@media (max-width: 1540px) {

    .iti .iti__selected-dial-code {
        font-size: 14px;
        margin-top:0px;
    }
    .signup-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px;
        right: 1px;
        top:.5px;
        width: 40px;
    }
    .signup-wrapper .inner-content .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px;
        right: 0px !important;
        top: 0.5px;
    }
    .select2-container--default .select2-selection--single {
        padding: 6px 22px;
        font-size: 14px;
        border: 1px solid #bababa;
        border-radius: 9px;
        height: 40px !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 0px;
        width: 45px;
        right: 0px;
        height: 40px;
        border-radius: 0 8px 8px 0;
        background-color: #ecf2f6;
        background-image: url(../admin-assets/images/downactive.svg);
        background-repeat: no-repeat;
        background-position: center;
    }
    .iti__selected-country {
        height: 38px !important;
    }
    .relativ-input img {
        top: 12px;
    }
    .small-modal-wrapper .modal-content .social-button {
        font-size: 14px;
        padding: 12px;
        height: auto;
    }
    /* .signup-wrapper .bottom-section .left input:checked:after {
        content: "\2713";
        position: absolute;
        color: white;
        left: 6px;
        top: 3px;
        font-size: 10px;
    } */
    .signup-wrapper .slider-wrapper input {
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        height: 8px;
        outline: none;
        border-radius: 24px;
        background-color: #D9D9D9;
    }
    .signup-wrapper .slider-wrapper input::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        background: url(../assets/images/range-icon.svg) no-repeat center center;
        background-size: contain; /* Resize the image to fit the thumb */
        border: none;

        cursor: pointer;
        z-index: 3;
        position: relative;
        vertical-align:middle;

    }

    .signup-wrapper .slider-wrapper input::-moz-range-thumb {
        width: 24px;
        height: 24px;
        background: url(../assets/images/range-icon.svg) no-repeat center center;
        background-size: contain; /* Resize the image to fit the thumb */
        border: none; /* Remove any border */
        cursor: pointer; /* Pointer cursor on hover */
        z-index: 3;
        vertical-align:middle;
        position: relative;
    }
    .signup-wrapper .bottom-section .left input {
        width: 20px;
        height: 20px;
    }


    .input-wrapper label {
        margin-bottom: 9px;
    }
    .signup-wrapper .bottom-section .left {
        gap: 11px;
    }
    .flex-input-wrapper {
        gap: 12px;
        margin-bottom: 12px;
    }
    .slider-wrapper {
        padding: 9px 0px;
        margin-bottom: 12px;
    }
    .login-wrapper .right-section {
        padding-top: 80px;
    }
    .signup-wrapper .left-section .inner {
        padding: 24px 32px 0px 32px;
        height: calc(100vh - 60px);
    }
    .signup-wrapper .trial-wrapper {
        margin-bottom: 34px;
    }
    .signup-wrapper .bottom-section {
        height: 60px;
    }
    .signup-wrapper .logo-wrapper img {
        width: 145px;
    }
    .signup-wrapper .logo-wrapper .already-account {
        font-size: 16px;
    }
    .input-wrapper .input,
    .input {
        height: 40px;
        padding: 8px 16px;
        border-radius: 9px;
        font-size: 14px;
    }
    .signup-wrapper .title {
        font-size: 18px;
        margin-bottom: 12px;
        margin-top: 8px;
    }
    .signup-wrapper .logo-wrapper {
        margin-bottom: 18px;
    }
    .signup-wrapper .input-wrapper {
        margin-bottom: 22px;
        position: relative;
    }
    .flex-input-wrapper span {
        font-size: 15px;
    }
    .signup-wrapper .trial-wrapper,
    .signup-wrapper .bottom-section label {
        font-size: 14px;
    }
    .signup-wrapper .right-section .title {
        font-size: 28px;
    }
    .signup-wrapper .button {
        padding: 10px 22px;
        font-size: 12px;
    }
    .signup-wrapper .right-section .text {
        font-size: 18px;
    }
    .small-modal-wrapper .modal-content {
        max-width: 500px !important;
        padding: 24px 36px;
        margin: auto;
    }
    .small-modal-wrapper .modal-content .image-small img {
        width: 86px;
    }
    .small-modal-wrapper .modal-content .title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .small-modal-wrapper .modal-content .text {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .small-modal-wrapper .modal-content .button,
    .small-modal-wrapper .modal-content .social-button {
        font-size: 14px;
        padding: 12px;
    }
    .signup-wrapper .right-section .content {
        padding: 10px 40px;
        font-size: 18px;
    }
    .signup-wrapper .right-section {
        padding-top: 130px;
    }
}



#payment-checkout .modal-dialog {
    overflow-y: hidden !important;
}
.stripe-checkout {
    margin-bottom: 10px;
}

.loader-main-wrapper {
    display: flex;
    position: fixed;
    left: 0px;
    top: 0px;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    z-index: 999999999;
}
.loader-main-wrapper img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.loader-main-wrapper .text-animate {
    animation: hide-text 4.2s infinite;
    color: #0b393e;
    font-family: var(--EudoxusSansBold);
}
.loader-main-wrapper .text-animate span {
    font-size: 20px;
    opacity: 0;
    display: inline-block;
    animation: fade-in-out 2s ease-in-out infinite;
}
.otp-wrapper .info{
    text-align: left;
    font-family: var(--EudoxusSansRegular);
    color: #333333;
    font-size: 14px;
}

.otp-wrapper .info .send-otp{
    color: #0ab4a1;
    cursor: pointer;
}

.content-wrapper .dates {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.content-wrapper .dates .date {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

 .content-wrapper .dates .date .text {
    color: #a7a7a7;
    font-size: 12px;
    font-weight: 500;
    margin: 0px;
    text-align: left;
    flex-shrink: 0;
}
.content-wrapper .dates .input-group {
    border: 1px solid #bababa;
    border-radius: 12px;

    position: relative;
}
#end_subscription-error {
    position: absolute;
    bottom: -30px;
    margin: 0px;
}
.content-wrapper .dates .input-group input {
    padding: 8px 16px;
    height: 48px;
    border: none !important;
    font-size: 16px;
    color: #0B393E;
     width: 100%;
    cursor: pointer;
}
.form-notch-leading {
    border: none !important;
}
.form-notch-middle {
    border: none !important;
}
.form-notch-trailing {
    border: none !important;
}
.content-wrapper .dates .input-group .form-outline {
    width: calc(100% + 48px);
}
.content-wrapper .dates .input-group {
    flex-wrap: nowrap;
}
.content-wrapper
.dates
.input-group
.input-group-text {
    height: 48px;
    width: 48px;
    border-radius: 4px !important;
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    border: 0px !important;
    background-color: #ecf2f6 !important;
    cursor: pointer !important;
}
.dashboard-container .content-area .content-wrapper .inner-content .dates .input-group .input-group-text {
    border-bottom-right-radius: 12px !important;
    border-top-right-radius: 12px !important;
}
.datepicker-previous-button {
    margin: 0 16px 0 0 !important;
}
.datepicker-dropdown-container {
    height: auto !important;
    width: auto !important;
}
.datepicker-header {
    display: none !important;
}

.datepicker-previous-button,
.datepicker-next-button {
    height: 32px;
    width: 32px;
    background-color: #ecf2f6;
    border-radius: 6px;
    padding: 0px;
}

.datepicker-previous-button:hover,
.datepicker-previous-button:focus,
.datepicker-next-button:focus,
.datepicker-next-button:hover {
    border-radius: 6px !important;
}

.datepicker-previous-button:after,
.datepicker-next-button:after {
    margin: 12px;
    color: #2a2a2a !important;
}

.datepicker-large-cell-content {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 21px;
    margin-right: 11px;
}
.datepicker-next-button:after {
    border-width: 2.5px 2.5px 0 0;
}
.datepicker-previous-button:after {
    border-width: 2.5px 0 0 2.5px;
}
.datepicker-date-controls {
    margin-bottom: 16px;
}

.datepicker-cell:not(.disabled):not(.selected):hover .datepicker-cell-content,
.datepicker-cell.current .datepicker-cell-content,
.datepicker-cell.selected .datepicker-cell-content {
    background-color: #0ab4a1;
    border: 1px solid #0ab4a1;
    color: white;
    border-radius: 6px;
}

.datepicker-view-change-button {
    font-size: 16px;
    color: #2a2a2a;
    background-color: transparent !important;
    padding: 0px 14px !important;
}

.datepicker-modal-container {
    box-shadow: 0px 8px 34px 0px #00000014;
    padding: 10px;
    border-radius: 12px;
    max-width: 408px;
    width: 100%;
}

.datepicker-view {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.datepicker-footer {
    background-color: white;
    margin-top: 20px;
}
.legends-flex {
    display: flex;
    align-items: center;
    gap: 32px;
}
.datepicker-small-cell-content {
    border-radius: 8px;
    height: 42px;
    width: 42px;
    margin-right: 11px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #2a2a2a;
    font-weight: 600;
}

.datepicker-cell.disabled {
    color: #2a2a2a;
    opacity: 0.3;
}

.datepicker-day-cell.current .datepicker-cell-content,
td.datepicker-cell.datepicker-large-cell.datepicker-year-cell.current
    .datepicker-cell-content.datepicker-large-cell-content,
td.datepicker-cell.datepicker-large-cell.datepicker-month-cell.current
    .datepicker-cell-content.datepicker-large-cell-content {
    background-color: transparent;
    border: 1px solid #0ab4a1 !important;
    /*opacity: 70% !important;*/
    color: #000;
}
.desktop-text {
    display: block;
}
.mobile-text {
    display: none;
}
.mobile-show {
    display: none;
}
@media (max-width: 1200px)  {
    .mobile-show {
        display: inline-block;
    }
    .desktop-text {
        display: none;
    }
    .mobile-text {
        display: block;
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 0px;
        /* white-space: normal; */
        word-break: break-all;
    }
    .signup-wrapper .right-section {
        padding-top: 24px !important;
    }
    .signup-wrapper .right-section .title {
        font-size: 24px;
    }
}
@media (max-width: 769px) {
    .mobile-text {
        font-size: 14px;
    }
  
    .datepicker-modal-container {
        max-width: 340px;
        width: 100%;
    }

    .datepicker-small-cell-content,
    .datepicker-large-cell-content {
        margin-right: 0px;
    }

    .datepicker-view-change-button {
        font-size: 14px;
        padding: 0px 10px !important;
    }
    .input-wrapper .icon-wrapper .info {
        left: -120px;
    }
    .input-wrapper .icon-wrapper .info .title {
        background-color: transparent;
        color: #333;
        text-align: left;
        font-size: 14px;
        padding: 0px;
        margin-bottom: 8px;
    }
}

.datepicker-day-heading {
    padding-right: 10px !important;
}

.fa-calendar:before {
    display: none;
}

.dashboard-container .inner-content {
    background: white;
    height: 100%;
    padding: 32px;
}
 .inner-content .select2-container--default .select2-selection--single {
   border:  1px solid #bababa !important;
}
/* Styling For Tablets */
@media (max-width: 1024px) {
    .login-wrapper .left-section {
        display: none;
    }
    .login-wrapper .right-section {
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0px !important;
        
    }
    .login-wrapper .right-section .inner {
        margin: 0px auto !important;
    }
    .signup-wrapper .col-12.col-lg-8.order-2.order-lg-1.mobile-padding-0.padding0,
    .signup-wrapper .col-12.col-lg-4.padding0.order-1.order-lg-2 {
        max-width: 100% !important;
        flex:0 0 100% !important;
    }
    .signup-wrapper .owl-dots {
        margin-top: 10px !important;
    }
    .signup-wrapper .col-12.col-lg-8.order-2.order-lg-1.mobile-padding-0.padding0 {
        order: 2 !important;
    }
    .signup-wrapper .col-12.col-lg-4.padding0.order-1.order-lg-2 {
        order: 1 !important;
    }
    .signup-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 12px !important; 
        height: 12px !important;    
    }
    .signup-wrapper .single-item {
        flex-direction: row-reverse;
    }
    .signup-wrapper .logo-wrapper {
        margin-bottom: 32px;
    }
    .signup-wrapper .input-wrapper {
        margin-bottom: 22px;
    }
    .mobile-none {
        display: none !important;
    }
    .large-none {
        display: flex !important;
    }
    .signup-wrapper .right-section {
        background-color: white;
        padding: 24px 48px 0px 48px;
    }
    .signup-wrapper .trial-wrapper {
        margin-bottom: 28px;
    }
    .signup-wrapper .left-section,
    .signup-wrapper .left-section .inner {
        height: auto;
    }
    .signup-wrapper .single-item .content {
        padding: 29px;
    }
    .signup-wrapper .single-item img,
    .signup-wrapper .single-item .content {
        max-width: 50%;
        flex-shrink: 0;
    }
    .signup-wrapper .right-section .title.mb-12 {
        font-size: 24px;
        margin-bottom: 20px !important;
    }
    .signup-wrapper .right-section .text {
        font-size: 14px;
    }
    .signup-wrapper .single-item {
        background-color: #e7f8f6;
    }
    .signup-wrapper .mobile-padding-0 {
        padding: 0px !important;
    }
    .signup-wrapper .left-section .inner {
        padding: 12px 38px;
    }
    .mb-32 {
        margin-bottom: 28px !important;
    }
}
a {
    text-decoration: none;
}
/* Styling For Mobile devices */
@media (max-width: 769px) {
    .login-wrapper .right-section {
        padding: 24px;
       
    }
    .login-wrapper .input-wrapper .input,.login-wrapper .button,.login-wrapper .right-section .inner .social-login {
        height: 48px;
        font-size: 14px;
    }
    .dont-have-account,.remember-section .left label,.remember-section .forgot{
        font-size: 14px;
    }
    .login-wrapper .right-section .inner .text,.or-wrapper {
        margin-bottom: 16px;
    }
    .mb-24 {
        margin-bottom: 16px !important;
    }
    .login-wrapper .right-section .inner .logo {
        margin-bottom: 40px;
    }
    .login-wrapper .right-section .inner .logo img{
        width: 260px;
    }
    .login-wrapper .input-wrapper {
        margin-bottom: 22px;
    }
    .login-wrapper .right-section .inner .text {
        font-size: 14px;
    }
    .remember-section .left {
        gap: 10px;
    }
    .remember-section .left input {
        width: 20px;
        height: 20px;
    }
    .login-wrapper .input-wrapper label {
        font-size: 14px;
    }
   
    .login-wrapper .right-section .inner .title {
        font-size: 24px;
    }
    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .signup-wrapper .slider-wrapper input::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }
    .signup-wrapper .logo-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: baseline;
        margin-bottom: 0px;
    }
    .signup-wrapper .right-section {
        margin-bottom: 10px;
    }
    .signup-wrapper .bottom-section .button {
        justify-content: center;
        height: 40px;
    }
    .mobile-padding-x-24 .col-12 {
        margin: 0px !important;
        padding: 0px !important;
    }
    .signup-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
    }
    .signup-wrapper .logo-wrapper .already-account {
        margin-top: 0px;
        margin-bottom: 16px;
    }
    .small-modal-wrapper .modal-content {
        max-width: 344px !important;
    }
    .small-modal-wrapper .modal-content .image-small.w100 img {
        max-width: 64px;
    }
    .small-modal-wrapper .modal-content .title {
        font-size: 16px;
    }
    .buttons-flex {
        flex-wrap: wrap;
    }
    .buttons-flex button {
        flex: 0 0 100%;
    }
    .input-wrapper .icon-wrapper .info {
        left: -120px;
    }
    .input-wrapper .icon-wrapper .info .title {
        background-color: transparent;
        color: #333;
        text-align: left;
        font-size: 14px;
        padding: 0px;
        margin-bottom: 8px;
    }
    .signup-wrapper .left-section .inner {
        height: calc(100vh - 120px);
    }
    .signup-wrapper .logo-wrapper .already-account {
        font-size: 14px;
    }
    .signup-wrapper .logo-wrapper img {
        width: 124px;
    }
   
    .signup-wrapper .input-wrapper {
        margin-bottom: 16px;
    }
    .signup-wrapper .right-section {
        background-color: white;
        padding: 24px;
    }
    .signup-wrapper .right-section .owl-signup {
        background-color: #e7f8f6;
        padding: 0px;
        margin-top: 0px;
    }
    .signup-wrapper .single-item {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 40px;
    }
    .signup-wrapper .single-item img,
    .signup-wrapper .single-item .content {
        max-width: 50%;
        flex-shrink: 1;
    }
    .signup-wrapper .right-section .content {
        padding: 10px;
    }
    .signup-wrapper .right-section .title.mb-12 {
        font-size: 20px !important;
        line-height: 1.5 !important;
        margin-bottom: 3px !important;
    }
    .signup-wrapper .right-section .single-item img {
        
        margin-bottom: -17px;
    }
    .signup-wrapper .right-section .text {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 0px;
        white-space: normal;
        word-break: break-word;
    }
    .mobile-none {
        display: none;
    }
    .signup-wrapper .owl-dots {
        margin-top: 0px !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -24px !important;
    }
    .signup-wrapper .left-section .inner {
        padding: 0px;
    }
    .signup-wrapper .mobile-padding-0 {
        padding: 0px !important;
    }
    .signup-wrapper .title {
        background-color: #03af9f;
        color: white;
        padding: 12px 16px;
        font-size: 14px;
        text-align: center;
    }
    .signup-wrapper .right-section .title {
        background-color: transparent;
        color: var(--text-color);
        text-align: left;
        padding: 0px;
    }
    .mobile-padding-x-24 {
        padding: 0px 24px;
    }
    .input-wrapper label,
    .flex-input-wrapper span {
        font-size: 14px;
    }
    .input-wrapper label {
        margin-bottom: 13px;
    }
    .signup-wrapper .trial-wrapper {
        flex-wrap: wrap;
        gap: 5px;
    }
    .signup-wrapper .left-section,
    .signup-wrapper .left-section .inner {
        height: auto;
    }
    .signup-wrapper .left-section .inner {
        padding-bottom: 120px;
    }
    .signup-wrapper .bottom-section .left input {
        margin-top: 3px;
    }
    .input-wrapper .input,
    .input {
        border-radius: 12px;
    }
    .mb-32 {
        margin-bottom: 24px;
    }
    .signup-wrapper .bottom-section {
        flex-wrap: wrap;
        padding: 16px 24px;
        position: fixed;
        bottom: 0px;
        background-color: white;
        height: auto;
        gap: 14px;
        height: 120px;
        z-index: 99;
        width: 100%;
    }
    .signup-wrapper .bottom-section .left {
        align-items: flex-start;
    }
    .signup-wrapper .bottom-section .right {
        width: 100%;
    }
    .signup-wrapper .bottom-section .button {
        width: 100%;
        padding: 8px;
    }
}
@media(max-width:567px) {
    .signup-wrapper .right-section .title.mb-12 {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 3px !important;
    }
    

    .signup-wrapper .right-section .text {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 0px;
        white-space: normal;
        word-break: break-word;
    
}
.signup-wrapper .single-item {
    gap: 12px;
}
}