

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url("../fonts/Montserrat-SemiBold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url("../fonts/Montserrat-Bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url("../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url("../fonts/OpenSans-SemiBold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url("../fonts/OpenSans-Bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Light';
    src: url("../fonts/OpenSans-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-SemiBoldItalic';
    src: url("../fonts/OpenSans-SemiBoldItalic.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-ExtraBold';
    src: url("../fonts/OpenSans-ExtraBold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-BoldItalic';
    src: url("../fonts/OpenSans-BoldItalic.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url("../fonts/OpenSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yamosty';
    src: url("../fonts/Yamosty-Trial.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
    line-height: normal;
}

select:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: #F4F7FA;
    color: rgba(0, 0, 0, 0.9);
    width: 100%;
    scroll-behavior: smooth;
}

button:disabled,
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Common Styles */
:root {
    --padding: 25px;
    --header-height: 86px;
    --footer-height: 161px;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

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

.flex-left {
    justify-content: flex-start;
}

.flex-right {
    justify-content: flex-end;
}

.flex-spread {
    justify-content: space-between;
}

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

.flex-vleft {
    align-items: flex-start;
}

.flex-vright {
    align-items: flex-end;
}

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

.container {
    padding: var(--padding);
    max-width: 1440px;
}

.max-width {
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

.main-content {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    padding-top: 40px;
}

button,
.dl-button {
    cursor: pointer;
    background-color: #8247FF;
    border: 2px solid #8247FF;
    border-radius: 30px;
    padding: 15px 20px;
    color: #F4F7FA !important;
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    outline: none !important;
    transition: all 300ms ease;
}

.dl-button:hover {
    background-color: transparent;
    color: #8247FF !important;
}

p,
td,
span,
.dl-para {
    font-family: 'OpenSans-SemiBold';
    font-size: 20px;
    color: #707070;
}

h1,
.dl-h1 {
    font-family: 'Montserrat-SemiBold';
    font-size: 70px;
    color: #1F2933;
}

h2,
.dl-h2 {
    font-family: 'Montserrat-SemiBold';
    font-size: 40px;
    color: #1F2933;
}

h3,
.dl-h3 {
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    color: #1F2933;
}

h4,
.dl-h4 {
    font-family: 'Montserrat-Bold';
    font-size: 40px;
    color: #1F2933;
}

h5,
.dl-h5 {
    font-family: 'Montserrat-SemiBold';
    font-size: 30px;
    color: #1F2933;
}

a,
.dl-link {
    color: #8247FF;
    outline: none !important;
    position: relative;
}

a:hover,
.dl-link:hover {
    color: #8247FF;
}

.error a,
.error .dl-link {
    color: #f00;
    text-decoration: underline;
}

a.dl-button::after {
    display: none;
}

.purple {
    color: #8247FF;
}

.section-background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
    max-height: 100vh;
    overflow: hidden;
}

.section-background img {
    width: 100%;
}

.mobile {
    display: none;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.hidden {
    display: none;
}

.form-group input,
.form-group textarea,
.form-group select,
.file-input-wrapper::after {
    border: 1px solid #888F95 !important;
    box-shadow: none !important;
    border-radius: 10px;
    outline: none !important;
    background-color: #F4F7FA !important;
    height: auto;
    font-family: 'OpenSans-SemiBold';
    font-size: 20px;
    color: #888F95;
    padding: 10px;
}

.form-group input:focus {
    border: 1px solid #8247FF;
}

.form-group input.label-up {
    color: #1F2933;
}

.form-check label {
    font-size: 20px;
    font-family: 'OpenSans-SemiBold';
}

.form-group input~label {
    position: absolute;
    z-index: 1;
    background-color: #F4F7FA !important;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888F95;
    font-size: 20px;
    font-family: 'OpenSans-SemiBold';
    padding-right: 50px;
    pointer-events: none;
    transition: all 300ms ease !important;
}

.form-group input.label-up~label {
    color: #8247FF;
    top: 0;
    font-size: 12px;
    padding: 0 2px;
}

.checkbox-group {
    padding-top: 8px;
}

.checkbox-group .form-check-label {
    border-radius: 10px;
    border: 1px solid #1F2933;
    opacity: 0.4;
    position: relative;
    padding: 10px;
    transition: all 300ms ease;
    cursor: pointer;
    width: 100%;
}

.checkbox-group .form-check-label span {
    padding-left: 40px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.checkbox-group .form-check-label svg {
    display: none;
    position: absolute;
    width: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
}

.checkbox-group .form-check-label::before {
    content: '';
    position: absolute;
    height: 28px;
    width: 28px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    border: 1px solid #1F2933;
    transition: all 300ms ease;
}

.checkbox-group .form-check-input:checked~.form-check-label {
    opacity: 1;
    border: 1px solid #8247FF;
}

.checkbox-group .form-check-input:checked~.form-check-label::before {
    border: 1px solid #8247FF;
    background-color: #8247FF;
}

.checkbox-group .form-check-input:checked~.form-check-label svg {
    display: block;
}

.form-check {
    padding-left: 0;
}

select.form-control {
    padding: 10px;
    border: 1px solid #888F95;
    outline: none !important;
    border-radius: 10px;
    height: auto;
    background-color: transparent !important;
    appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: calc(100% - 10px) center;
    font-size: 20px;
}

.file-input {
    position: absolute !important;
    opacity: 0 !important;
    width: 100%;
    height: 100% !important;
    display: block;
    z-index: 1;
    cursor: pointer;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 54px;
    border-radius: 10px;
    opacity: 1 !important;
    cursor: pointer;
    z-index: 2;
}


.form-group input~label.file-input-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    pointer-events: all;
}

.file-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.warning-container {
    background-color: #BA9EFC;
    border-radius: 30px 10px 10px 30px;
}

.warning-container span {
    padding: 10px;
    color: #F4F7FA;
}

.warning-container svg {
    height: 50px;
    width: 50px;
}

.back-button {
    column-gap: 10px;
}

.back-button span {
    font-family: 'Montserrat-Bold';
    font-size: 20px;
    color: #1F2933;
}

.error,
.invalid {
    color: #f00;
}

.ui-widget.ui-widget-content {
    outline: none;
    border: none;
    background-color: transparent;
}

#ui-datepicker-div {
    background-color: #fff;
}

.loading-splash {
    background-color: #f5f7fb;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    position: fixed;
    /* display: none; */
}

.loading-splash .loading-splash-wrapper {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.loading-splash p {
    font-family: 'OpenSans-Regular';
    font-size: 30px;
    color: #1F2933;
    text-align: center;
    margin-bottom: 20px;
}

.loading-splash .loading-bar {
    width: 100%;
    border-radius: 20px;
    height: 35px;
    background-color: #C9D8FF;
    position: relative;
    overflow: hidden;
}

.loading-splash .loading-bar .loading-progress {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 35px;
    z-index: 10;
    background-color: #6D87CB;
    transition: all 300ms ease;
}

.loading-splash img {
    max-width: 100%;
}

.tippy-box {
    max-width: 550px !important;
    width: 100%;
    background-color: #1F2933;
    padding: 10px;
}

.tippy-content p {
    color: #fff;
    font-family: 'OpenSans-SemiBold';
    font-size: 18px;

}


.dm-ud-slider-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transition: opacity linear 200ms;
    opacity: 0;
}

.dm-ud-slider-overlay.dm-ud-slider-overlay-open {
    opacity: 1;
    pointer-events: all;
}

.dm-ud-slider {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9998;
    width: 30%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform linear 200ms;
    box-shadow: 0px 0 10px 2px rgba(0, 0, 0, 0.1);
}

.dm-ud-slider.dm-ud-slider-open {
    transform: translateX(0);
}

.dm-ud-slider-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #dedede;
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 30px;
    z-index: 99999;
}

.dm-ud-slider-content {
    height: 100vh;
    overflow: auto;
    padding: 100px 30px 200px 30px !important;
    margin-left: 0;
}

.dm-ud-slider-header-title {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.dm-ud-slider-header-title>i {
    color: rgba(31, 41, 51, 0.80);
    margin-right: 10px;
}

.dm-ud-slider-header-title>span {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.dm-ud-slider-close-btn {
    margin-left: auto;
    background-color: transparent;
    border: none;
    width: 56px;
    height: 56px;
    padding: 0;
    color: #808080;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dm-ud-slider-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.dm-ud-slider-close-btn i {
    color: rgba(31, 41, 51, 0.80);
}

.dm-ud-slider-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    border-top: 1px solid #dedede;
    z-index: 9999;
    padding: 20px 30px;
}

#dm-ud-slider-add-new-company-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5a5a5;
}

#dm-ud-slider-add-new-company-btn:hover {
    /* background-color: rgba(0, 0, 0, 0.03); */
    color: #7f1eff;
}

#dm-ud-slider-add-new-company-btn>span {
    font-size: 14px;
    font-weight: 500;
}

#dm-ud-slider-add-new-company-btn>i {
    margin-right: 10px;
}

.dm-ud-slider-item {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #dedede;
    display: flex;
    align-items: center;
}

.dm-ud-no-slider-item-graphic {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dm-ud-no-slider-item-graphic>i {
    font-size: 96px;
    color: #959595;
    margin-bottom: 20px;
}

.dm-ud-no-slider-item-graphic>span {
    font-size: 16px;
    color: #959595;
    font-weight: 500;
}

/* notification */
.dm-ud-slider-item-notification {
    flex-direction: column;
    align-items: flex-start;
}

.dm-ud-slider-item-notification .dm-ud-slider-name {
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 14px;
    font-family: 'Montserrat-SemiBold';
}

.dm-ud-slider-item-noti-btns-wrapper {
    display: flex;
    width: 100%;
}

.dm-ud-slider-item-noti-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f1eff;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: rgba(127, 30, 255, 0.1);
    transition: transform .2s;
    width: 50%;
}

.dm-ud-slider-item-noti-btn:hover {
    transform: scale(1.1);
    color: #7f1eff;
}

.dm-ud-slider-item-noti-btns-wrapper .dm-ud-slider-item-noti-btn:first-child {
    margin-right: 10px;
}

.dm-ud-slider-item-noti-btn i {
    color: #1F2933;
    margin-right: 5px;
}

.dm-ud-slider-item-noti-btn-text {
    font-size: 14px;
    font-weight: 500;
}

.dm-ud-slider-noti-date {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

/* .dm-ud-notification-btn {
    position: relative;
  } */

.dm-ud-noti-count {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #ff1ea4;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    animation: pulse 1s infinite;
}

.dm-ud-noti-count-mobile {
    width: 14px;
    height: 14px;
    background-color: #ff1ea4;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -2px;
    bottom: 0;
    animation: pulse 1s infinite;
}

.count-notification {
    color: rgba(31, 41, 51, 0.80) !important;
}

@media screen and (max-width: 1080px) {
    :root {
        --padding: 20px;
        --header-height: 74px;
        --footer-height: 115px
    }

    button,
    .dl-button {
        font-size: 15px;
    }

    p,
    span,
    .dl-para {
        font-size: 15px;
    }

    h1,
    .dl-h1 {
        font-size: 30px;
    }

    h2,
    .dl-h2 {
        font-size: 20px;
    }

    h3,
    .dl-h3 {
        font-size: 15px;
    }

    h4,
    .dl-h4 {
        font-size: 15px;
    }

    h5,
    .dl-h5 {
        font-size: 15px;
    }

    .section-background img {
        width: 100%;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .form-group input~label,
    .form-group input,
    .file-input-wrapper::after {
        font-size: 14px;
    }

    .file-input-icon {
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .warning-container {
        border-radius: 10px;
    }

    .warning-container svg {
        padding-left: 10px;
    }

    .dm-ud-slider {
        width: 100%;
    }
}