:root {
    --Primary-primary-blue: #0046B1;
    --Primary-primary-dark-blue: #173283;
    --Primary-primary-lemon-green: #B3FE4A;
    --Primary-primary-lemon-dark-green: #a5ea44;
    --Primary-Primary-Light-Blue: #E6F0FF;
    --Primary-primary-black: #232323;
    --Primary-Primary-Light-Black: #E6E6E6;
    --Primary-primary-white: #FFF;


    --Text-primary: #232323;
    --Text-Secondary: #8E8E8E;
    --Text-Disabled: #D7D7D7;
    --Text-primary-white: #FFF;
    --Text-secondary-white: #D7D7D7;
    --Text-disabled-white: #cccccc;
    --Text-link: #2B8EF1;

    --BG-primary: #FFF;
    --BG-secondary: #F6F6F6;
    --BG-messanger: #F9FAFC;
    --BG-sms-01: #EEE;
    --BG-sms-02: #DEEAFE;
    --BG-text-input: #F0F1F2;

    --Action-default: #D9D9D9;
    --Action-active: #232323;
    --Action-active-light: #141414;
    --Action-disabled: #1C1C1C;


    --Alerts-error: #FF4C51;
    --Alerts-Success: #45C167;
    --Alerts-Info: #369BFF;
    --Alerts-warning: #F7B311;
    /* convert to hex, sample the final color if drawn over white */

    --Other-divider: #e7e7e7;

    --Backdrop: rgba(35, 35, 35, 0.5);
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--BG-secondary);
    font-family: 'Noto Sans Hebrew', sans-serif;
    text-align: right;
    direction: rtl;
    color: var(--Text-primary, #232323);

}

a {
    color: var(--Text-link);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;

}

.hidden {
    display: none;
}

.disabled {
    pointer-events: none;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: var(--BG-messanger);
}

.loader .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.loader .spinner-loader {
    display: none;
}

.loader.main_spinner {
    display: block;
    background-color: unset;
}

.loader.main_spinner .loader-dots {
    display: none;
}

.loader.main_spinner .spinner-loader {
    display: block;
    border: 4px solid rgb(0 133 5 / 40%);
    border-left-color: #b3fe4a;
    width: 30px;
    height: 30px;


}



.loader.loader-skeleton {
    user-select: none;
    pointer-events: all;
}

.loader.loader-search .loader_search,
.loader.loader-home .loader_home,
.loader.loader-projects .loader_projects,
.loader.loader-fullmenu .loader_fullmenu,
.loader.loader-employees .loader_employees {
    display: block;
}

.loader .loader_search,
.loader .loader_home,
.loader .loader_projects,
.loader .loader_fullmenu,
.loader .loader_employees {
    width: 100%;
    height: 100%;
    display: none;
}

.loader .loader_home {

    background-color: var(--BG-secondary);
}

.loader.loader-skeleton .loader-container {
    pointer-events: none;

}

.loader.loader-skeleton .loader-dots {
    display: none;
}

.loader .loader-dots {
    display: flex;
    justify-content: space-between;
    width: 80px;
}

.loader .loader-dots div {
    width: 16px;
    height: 16px;
    background-color: var(--Primary-primary-blue);
    border-radius: 50%;
    animation: grow-shrink 1s infinite;
}

.loader .loader-dots div:nth-child(1) {
    animation-delay: 0s;
}

.loader .loader-dots div:nth-child(2) {
    animation-delay: 0.3s;
}

.loader .loader-dots div:nth-child(3) {
    animation-delay: 0.6s;
}

.loader .skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    background-color: hsl(200, 20%, 80%);
    /* Set initial background color */
    /* display: block; */
    /* Ensure the skeleton is displayed immediately */
    width: 100%;
    /* Ensure it takes the full width */
    height: 100%;
    /* Ensure it takes the full height */
}

.loader .skeleton.dark {
    animation: skeleton-loading-dark 1s linear infinite alternate;
}

.loader .skeleton.empty {
    animation: none;
    background-color: transparent;
}

.loader .card.skeleton {}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

@keyframes skeleton-loading-dark {
    0% {
        background-color: hsl(200, 20%, 60%);
    }

    100% {
        background-color: hsl(200, 20%, 75%);
    }
}


@keyframes grow-shrink {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.mobile_safe_bar.refresher {
    background-color: #000;
    color: white;
    height: 35px;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 10000;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.bottom_bar.dev {
    background-color: #f00;
}

.bottom_bar.staging {
    background-color: #f0f;
}

.mobile-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    height: 100%;
    /* max-height: 800px; */
    max-height: calc(100vh - 90px);
    border: 1px solid #ccc;
    /* background-color: #fff; */
    position: relative;
    margin-top: 35px;
    overflow: hidden;
}

.session_parameters {

    position: fixed;
    left: 0;
    direction: ltr;
    text-align: left;


}

.img {
    display: flex;
}

.img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.h-10p {
    height: 10%;
    width: 100%;

}

.h-20p {
    height: 20%;
    width: 100%;
}

.h-60p {
    height: 60%;
    width: 100%;
}

.h-40p {
    height: 40%;
    width: 100%;
}

.w-100px {
    width: 100px;
}

.bg-primary-dark-blue {
    background-color: var(--Primary-primary-dark-blue);
}

.bg-primary-blue {
    background-color: var(--Primary-primary-blue);
}

.bg_image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
}

.content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 40px;
}

.content.register,
.content.login,
.content.intro,
.content.intro-2 {
    padding-bottom: 0px;
    background-color: var(--BG-primary);

}

.content.terminate_employment,
.content.edit_project,
.content.add_employee_to_project_s1,
.content.add_employee_to_project_s2,
.content.add_employee_to_project_s3 {
    background-color: var(--BG-primary);

}

.content.register {
    display: flex;
    flex-direction: column;
}

.content.register>div {
    /* flex-grow: 1; */
    /* flex-basis: 0; */
}


.d-flex {
    display: flex;
}

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

.p-16 {
    padding: 16px;
    box-sizing: border-box;
}

.pt-50 {
    padding-top: 50px;
    box-sizing: border-box;
}

.h-10 {
    height: 10px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

.w-100 {
    width: 100%;
}

.mr-auto {
    margin-right: auto;
}

.seperator-1px {
    border-bottom: 1px solid var(--Other-divider);
}

body.intro .bottom-menu,
body.intro-2 .bottom-menu,
body.login .bottom-menu,
body.register .bottom-menu {
    display: none;
}

.bottom-menu {
    background-color: var(--BG-primary);
    padding-bottom: 16px;
    z-index: 11;
    padding-top: 16px;
    box-shadow: 0px -2px 12px 0px rgba(35, 35, 35, 0.18);

}

.bottom-menu .menu_container {
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bottom-menu .menu_container .menu-item {
    padding: 8px 14px;
    -webkit-tap-highlight-color: transparent;

}

.bottom-menu .menu_container .menu-item .menu-item-text {
    display: none
}

.bottom-menu .menu_container .menu-item .icon {
    color: var(--Text-Disabled);
    font-size: 24px;
}

.bottom-menu.home .menu_container .menu-item[href="home"],
.bottom-menu.search .menu_container .menu-item[href="search"],
.bottom-menu.employees .menu_container .menu-item[href="employees"],
.bottom-menu.projects .menu_container .menu-item[href="projects"],
.bottom-menu.fullmenu .menu_container .menu-item[href="fullmenu"] {
    color: var(--Primary-primary-blue);

    background-color: var(--Primary-primary-lemon-green);
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bottom-menu.home .menu_container .menu-item[href="home"] .icon,
.bottom-menu.search .menu_container .menu-item[href="search"] .icon,
.bottom-menu.employees .menu_container .menu-item[href="employees"] .icon,
.bottom-menu.projects .menu_container .menu-item[href="projects"] .icon,
.bottom-menu.fullmenu .menu_container .menu-item[href="fullmenu"] .icon {
    color: var(--Primary-primary-blue);
    margin-left: 5px;
}

.bottom-menu.home .menu_container .menu-item[href="home"] .menu-item-text,
.bottom-menu.search .menu_container .menu-item[href="search"] .menu-item-text,
.bottom-menu.employees .menu_container .menu-item[href="employees"] .menu-item-text,
.bottom-menu.projects .menu_container .menu-item[href="projects"] .menu-item-text,
.bottom-menu.fullmenu .menu_container .menu-item[href="fullmenu"] .menu-item-text {
    display: block;
    color: var(--Primary-primary-blue);
}

.content_area.intro {
    background-color: var(--Primary-primary-blue);
}

.intro h1 {
    color: var(--Text-primary-white);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 112.5% */
    margin: 14px 0;
}

.intro h2 {
    color: var(--Text-primary-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.vertical_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

.gap-20 {
    gap: 20px;
}

.register .back_link,
.login .back_link {
    position: absolute;
    right: 16px;
    top: 16px;
}

.back_link {
    font-size: 24px;
    color: var(--Text-primary);
}

.big-btn {
    height: 45px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 100px;
    background: var(--Primary-primary-lemon-green);
    color: var(--Primary-primary-blue, #0046B1);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.big-btn.btn-danger {
    background-color: var(--Alerts-error);
    color: var(--Primary-primary-white);
}

.big-btn.loading {
    background-color: var(--Primary-primary-lemon-dark-green);
    color: var(--Primary-primary-dark-blue);
    pointer-events: none;
    cursor: not-allowed;
}

form.loading {
    pointer-events: none;
    cursor: not-allowed;

}

.btn .btn-loader {
    display: none;
}

.btn .string {
    display: block;

}

.btn.loading .btn-loader {
    display: flex;
    align-items: center;
}

.btn.loading .string {
    display: none;
}

.spinner-loader {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin-left: 5px;
    width: 14px;
    height: 14px;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text-btn {
    color: var(--Text-Secondary);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-decoration-line: underline;
}

.decor_underline {
    text-decoration: underline;
    color: var(--Text-link) !important;

}

.no_decoration {
    text-decoration: none !important;

}

.h-10p .title_logo,

.h-20p .title_logo {
    color: var(--Text-primary);
    text-align: center;
    font-family: "Work Sans";
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.68px;
    margin-bottom: 10px;
    margin-top: auto;
}

.slick-dotted.slick-slider.intro-carousel {
    margin-bottom: 70px;
}

.intro-carousel .slick-slide {
    height: 50vh;
    max-height: 400px;
    /* Ensure the container does not exceed 400px */
    display: flex;
    flex-direction: column;
}

.intro-carousel .slick-slide .img {
    height: calc(100% - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-carousel .text {
    color: var(--Text-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    padding: 0px 16px;
    margin: auto 0;
}

/* Custom styles for Slick slider dots */
.slick-dots {
    bottom: -30px;
    /* Adjust the position of the dots */
}

.slick-dots li button:before {
    font-size: 20px;
    /* Adjust the size of the dots */
    color: var(--Primary-Primary-Light-Black);
    /* Change the color of the dots */
    opacity: 1;
    /* Ensure the dots are fully visible */
}

.slick-dots li.slick-active button:before {
    color: var(--Primary-primary-blue);
    /* Change the color of the active dot */
    opacity: 1;
    /* Ensure the dots are fully visible */
}

.register h1,
.login h1 {
    color: var(--Text-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

/* form */
.form-container {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.form-container.hidden {
    display: none;
}


.form-container>*:not(:hidden) {
    margin-bottom: 16px;
    /* Adjust the margin as needed */
}

.form-group {
    width: 100%;
    position: relative;
}

.form-group a {
    color: inherit;
}

.form-group.hidden-container {
    display: none;

}

.form-group .dropdown-label,

.form-group input,
.form-group textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--BG-primary);
    font-family: 'Noto Sans Hebrew', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 44px;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid var(--Action-default);
    width: 100%;
    resize: none;
}

/* Hide the spinners for input type number */
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group textarea {
    height: 90px;
    padding: 10px;

}

.form-group textarea:focus {
    border-color: var(--Action-active);
    outline: none;
    box-shadow: none;
}

.form-group.error input,
.form-group.error input:focus {
    border-color: var(--Alerts-error);
}

/* Checkbox container */
.form-group .checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-top: 1px;
}

/* Hide the default checkbox */
.form-group .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-group .checkbox-container .text {

    padding-right: 35px;
}

.form-group .checkbox-container .text a {
    text-decoration: underline;
}

/* Custom checkbox */
.form-group .custom-checkbox {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: var(--BG-primary);
    border: 2px solid var(--Action-default);
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}

.form-group.error .custom-checkbox {
    border-color: var(--Alerts-error);
}

/* On mouse-over, add a grey background color */
.form-group .checkbox-container:hover input~.custom-checkbox {
    border-color: var(--Action-active);
}

/* When the checkbox is checked, add a blue background */
.form-group .checkbox-container input:checked~.custom-checkbox {
    background-color: var(--Primary-primary-blue);
    border-color: var(--Primary-primary-blue);
}

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

/* Show the checkmark when checked */
.form-group .checkbox-container input:checked~.custom-checkbox:after {
    display: block;
}

/* Style the checkmark/indicator */
.form-group .checkbox-container .custom-checkbox:after {
    right: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--Primary-primary-white);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Disabled state */
.form-group .checkbox-container input:disabled~.custom-checkbox {
    background-color: var(--Action-disabled);
    border-color: var(--Action-disabled);
    cursor: not-allowed;
}

.form-group .checkbox-container input:disabled:checked~.custom-checkbox:after {
    border-color: var(--Text-disabled-white);
}

/* Radio container */
.form-group .radio-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-top: 1px;
}

/* Hide the default radio button */
.form-group .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-group .radio-container .text {
    padding-right: 35px;
}

.form-group .radio-container .text a {
    text-decoration: underline;
}

/* Custom radio button */
.form-group .custom-radio {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: var(--BG-primary);
    border: 2px solid var(--Action-default);
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.form-group.error .custom-radio {
    border-color: var(--Alerts-error);
}

/* On mouse-over, add a grey background color */
.form-group .radio-container:hover input~.custom-radio {
    border-color: var(--Action-active);
}

/* When the radio button is checked, add a blue background */
.form-group .radio-container input:checked~.custom-radio {
    border-color: var(--Primary-primary-blue);
}

/* Create the indicator (hidden when not checked) */
.form-group .custom-radio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator when checked */
.form-group .radio-container input:checked~.custom-radio:after {
    display: block;
}

/* Style the indicator */
.form-group .radio-container .custom-radio:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--Primary-primary-blue);
}

/* Disabled state */
.form-group .radio-container input:disabled~.custom-radio {
    background-color: var(--Action-disabled);
    border-color: var(--Action-disabled);
    cursor: not-allowed;
}

.form-group .radio-container input:disabled:checked~.custom-radio:after {
    background: var(--Text-disabled-white);
}

.form-group.error .hover-label {
    color: var(--Alerts-error);
}

.form-group input:focus {
    border-color: var(--Action-active);
    outline: none;
    box-shadow: none;
}

.form-group input:focus+label.hover-label {
    color: var(--Action-active);
}


.form-group .hover-label {
    color: var(--Text-Secondary);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15px;
    position: absolute;
    top: -9px;
    right: 10px;
    background-color: var(--BG-primary);
    padding: 0px 5px;
}

.form-group .error_message {
    display: none;

    color: var(--Alerts-error);
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    padding-right: 15px;
}

.form-group.checkbox-container .error_message {
    padding-right: 0;
    margin-top: 5px;

}

.form_explainer {
    text-align: center;
    font-size: 14px;
    color: var(--Text-Secondary);
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.form_explainer.big {
    color: var(--Text-primary);
    font-size: 16px;
    font-weight: 700;
}

.form_explainer a {
    text-decoration: underline;
}

.form_explainer.otp_timer.counting i,
.form_explainer.otp_timer.counting .timer {
    color: var(--Text-primary);
}

.form_explainer.otp_timer.counting .timer {
    font-weight: 700;
}

.form_explainer.otp_timer.counting a {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
}

.form_explainer.otp_timer:not(.counting) a {
    color: var(--Text-primary);
    text-decoration: underline;
    cursor: pointer;
    pointer-events: all;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    direction: ltr;
}

.otp-inputs input.otp-input {
    aspect-ratio: 1 / 2;
    width: 38px;
    text-align: center;
    font-size: 24px;
}



/* form */


/* modal */
/* The Modal (background) */
.modal {
    /* Hidden by default */
    position: absolute;
    /* Stay in place */
    z-index: 12;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: hidden;
    /* Enable scroll if needed */
    opacity: 0;
    user-select: none;
    pointer-events: none;

}

.modal .modal_content_container {

    overflow-y: auto;
}

.modal.show {
    opacity: 1;
    pointer-events: all;

}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    display: flex;
    flex-direction: column;
    height: 80%;

}

.modal.drawer .modal-content {
    width: 100%;
    height: 90%;
    box-sizing: border-box;
    border: none;
    margin-top: calc(10% + 20px);
    margin-bottom: 0;
    border-radius: 20px 20px 0px 0px;
    padding: 0;
}

.modal.drawer {
    top: 100%;

}

.modal.drawer.show {
    transition: all 0.3s;
    top: 0;

}

.modal.drawer .modal-content .modal_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 20px;
}

.modal.drawer .modal-content .modal_top .title,
.modal.drawer .modal-content .modal_top .modal-top-row {
    margin: 0;
}

.modal.drawer .modal-content .modal_content_container {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: var(--BG-secondary);
    height: 100%;

}

.modal-content .modal-top-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

/* The Close Button */
.modal-content .close-button {
    color: var(--Primary-primary-black);
    font-size: 28px;
}

.modal-content .close-button .icon-arrow-right {
    display: none;
}

.modal-content .close-button:hover,
.modal-content .close-button:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-content .title {
    color: var(--Text-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal.full {}

.modal.full .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
}

.modal.dialog {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    height: 100%;
    /* Full viewport height */
}

.modal.dialog .modal-content .modal_top {
    display: none;

}

.modal.dialog .modal-content {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0;
    border-radius: 6px;
    padding: 0;
    box-shadow: 0px 2px 12px -4px rgba(35, 35, 35, 0.08), 0px 2px 12px -4px rgba(35, 35, 35, 0.08);
    border: none;

}

.modal.dialog .modal-content .modal_content_container {
    padding: 20px;
}

.modal.dialog .icon_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.dialog .icon_container .icon_holder {

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    height: 65px;
    width: 65px;
    border-radius: 50%;
    font-size: 36px;
}

.modal.dialog .icon_container .icon_holder .icon {
    font-size: 36px;
}

.modal.dialog .text_container {
    text-align: center;
    margin-bottom: 10px;
}

.modal.dialog .text_container .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--Text-primary);
    margin-bottom: 10px;
}

.modal.dialog .text_container .text {

    font-size: 14px;
    color: var(--Text-primary);
}

.modal_dialog_buttons {
    border-top: 1px solid var(--Other-divider);
    display: flex;
    gap: 10px;
}

.modal_dialog_buttons .btn_modal {
    border-left: 1px solid var(--Other-divider);
    flex-grow: 1;
    flex-basis: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--Primary-primary-black);
    font-size: 14px;
    font-weight: 600;
    padding: 20px 0;
}

.modal_dialog_buttons .btn_modal.btn-danger {

    color: var(--Alerts-error);
}

.modal_dialog_buttons .btn_modal:last-child {
    border-left: none;

}

.modal.employee {
    z-index: 12;
    opacity: 1;
    left: 100%;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.modal.employee.show {
    left: 0;
    transition: left 0.4s ease-in-out;

}



.modal.employee .modal_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 1;
}

.modal.employee .modal_top .title,
.modal.employee .modal_top .modal-top-row {
    margin-bottom: 0;
}

.modal.employee .modal_top .close-button {
    font-size: 22px;
}

.modal.employee .modal_top .close-button .icon-arrow-right {
    display: inline-block;
}

.modal.employee .modal_top .close-button .icon-times {
    display: none;
}

.modal.employee .modal_content_container {
    overflow-y: scroll;
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.modal.employee .employee_card_item {
    margin: 0;
    border-top: none;
    box-shadow: none;
}

.modal.employee .section_title {
    color: var(--Text-primary);
    font-size: 16px;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;

}

.modal.employee .video-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.employee .video-container video {
    max-width: 100%;
    max-height: 70vh;
    margin: 0 auto;
}

.modal.employee .side_scroll {
    display: inline-flex;
}

.modal.employee .image_gallery .image_item {
    height: 110px;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 6px;
    user-select: none;
    pointer-events: none;
}

.modal.employee .image_gallery .image_item img {
    object-fit: cover;
    min-width: 100%;
    max-height: 100%;
    user-select: none;
}

.modal.employee .seperator {
    border-bottom: 2px solid var(--Other-divider);
}

.modal.employee .modal_bottom {
    padding-top: 16px;
}

.modal.employee .double_btn_row {
    display: flex;
    gap: 20px;
    flex-direction: row;

}

/* modal */

/* drawer */
.drawer {
    position: absolute;
    z-index: 12;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    top: 100%;
    transition: all 0.3s;
}

.drawer.show {
    transition: all 0.3s;
    top: 0;
    opacity: 1;
    pointer-events: all;
}


.drawer .drawer_container {
    background-color: var(--BG-primary);
    margin: 10% auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 95%;
    box-sizing: border-box;
    border: none;
    margin-top: calc(5% + 20px);
    margin-bottom: 0;
    border-radius: 20px 20px 0px 0px;
    padding: 0;

}

.drawer .drawer_top {

    border-bottom: 1px solid var(--Other-divider);
    display: flex;
    padding: 20px 16px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 12px -4px rgba(35, 35, 35, 0.08), 0px 2px 12px -4px rgba(35, 35, 35, 0.08);
    color: var(--Text-primary);
}

.drawer .close-button {

    color: var(--Primary-primary-black);
    font-size: 28px;
    display: flex;
    align-items: center;
}

.drawer .title {

    font-size: 20px;
    font-weight: 600;
}

.drawer .body {
    padding: 16px;
    height: calc(100% - 230px);
    overflow-y: scroll;
}

.drawer.no_bottom .body {
    height: auto;
}

.drawer .drawer_selector {
    padding-top: 16px;
}

.drawer.no_selector .drawer_selector {
    padding-top: 0;
}

.drawer.loading .loader {
    display: block;
}

.drawer .loader {
    display: none;
    background-color: rgba(249, 250, 252, 0.4);
}

.drawer .drawer_filter_group .filter_header {
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    color: var(--Text-primary);
    font-size: 16px;
    font-weight: 700;

}

.drawer .drawer_filter_group .filter_header .toggle_group {
    color: var(--Text-primary);
    font-size: 20px;
}

.drawer .drawer_filter_group.active .filter_header .toggle_group .icon-chevron-up,
.drawer .drawer_filter_group .filter_header .toggle_group .icon-chevron-down {
    display: none;
}

.drawer .drawer_filter_group.active .filter_header .toggle_group .icon-chevron-down,
.drawer .drawer_filter_group .filter_header .toggle_group .icon-chevron-up {
    display: inline-block;
}


.drawer .body .checkbox_group,
.drawer .body .radio_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.drawer .bottom {}

.drawer .bottom .drawer_buttons {
    display: flex;
    justify-content: space-between;
    padding: 30px 16px;
    background-color: var(--BG-primary);
    gap: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.drawer .bottom .drawer_buttons .btn {
    padding: 10px 20px;
    flex-grow: 1;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;

    font-size: 16px;
    font-weight: 600;
    flex-basis: 0;
    box-sizing: border-box;
    /* Include border in the element's total width and height */
}

.drawer .bottom .drawer_buttons .btn-primary {
    background-color: var(--Primary-primary-lemon-green);
    color: var(--Primary-primary-blue);
}


.drawer .bottom .drawer_buttons .btn-secondary {
    border-radius: 100px;
    border: 1px solid var(--Action-default);
    color: var(--Text-primary);
}

.drawer .dropdown_drawer {
    display: flex;
    flex-direction: column;
    background-color: var(--BG-primary);
}

.drawer .dropdown_drawer .dropdown_item {
    padding: 10px;
    border-bottom: 1px solid var(--Other-divider);
    color: var(--Text-primary);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.drawer .dropdown_drawer .dropdown_item:last-child {
    border-bottom: none;
}

.drawer .dropdown_drawer .dropdown_item:hover,
.drawer .dropdown_drawer .dropdown_item.selected {
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Text-primary);
}

.drawer .dropdown_drawer .search_input_container {
    padding: 0;
}

.drawer .dropdown_drawer .search_input_container .icon-search {
    right: 14px;
}

/* drawer */

/* toast */
.page-toast {
    display: flex;
    flex-direction: column;
    width: 75%;
    padding: 20px;
    align-items: flex-start;
    gap: 12px;
    border-radius: 4px;
    background: var(--BG-primary);
    box-shadow: 0px 4px 6px -4px rgba(35, 35, 35, 0.06), 0px 6px 10px -4px rgba(35, 35, 35, 0.04), 0px 4px 8px -4px rgba(35, 35, 35, 0.06);
    position: absolute;
    /* Position the toast absolutely within the container */
    top: 50%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Adjust position to be centered */

    opacity: 0;
    transition: all 0.3s;
    user-select: none;
    pointer-events: none;
    z-index: 12;

}

.page-toast.show {
    opacity: 1;
    pointer-events: all;

}

.page-toast .close-button {
    color: var(--Primary-primary-black);
    font-size: 28px;
    position: absolute;
    top: 19px;
    left: 10px;
}

.page-toast .long_text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.page-toast:not(.info) .long_text {
    display: none;
}

.page-toast .long_text .toast-title {
    color: var(--Text-primary);
    font-size: 16px;
    font-weight: 600;


}

.page-toast .long_text .toast-content {

    color: var(--Text-primary);
    font-size: 14px;
    font-weight: 400;
}

.page-toast .short_text {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.page-toast .short_text .icon {}

.page-toast .short_text .icon .icon,
.page-toast .short_text .icon .spinner-loader {
    display: none;

}

.page-toast .toast_descriptor {
    color: var(--Text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto;

}

.page-toast .toast_descriptor>div {
    display: none;
}

.page-toast.loading .toast_descriptor .loading,
.page-toast.success .toast_descriptor .success,
.page-toast.error .toast_descriptor .error {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-toast.success .toast_descriptor .success {
    color: var(--Alerts-Success);
}

.page-toast.error .toast_descriptor .error {
    color: var(--Alerts-error);
}



.page-toast .short_text .icon .short-text {
    color: var(--Text-primary);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
}


/* toast */

.backdrop {
    background-color: var(--Backdrop);
    opacity: 0;
    transition: all 0.3s;
    /* display: none; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.backdrop.show {
    /* display: block; */
    opacity: 1;
    pointer-events: all;
    z-index: 9;
}

.fullmenu .menu_header {
    width: 100%;
    height: 300px;
    background-color: var(--Primary-primary-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--Text-primary-white);
}

.fullmenu .menu_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    background-color: var(--Primary-primary-blue);
    color: var(--Text-primary-white);
}

.fullmenu .menu_header .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.fullmenu .menu_header .avatar.icon {
    background-color: var(--BG-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

.fullmenu .menu_header .avatar.icon .icon {
    font-size: 44px;
    color: var(--Text-Disabled);
}

.fullmenu .menu_header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullmenu .menu_header .company_name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.fullmenu .menu_header .contact_name {
    font-size: 16px;
    font-weight: 500;
}

.fullmenu .menu_body {
    width: calc(100% - 40px);
    margin: -60px auto 0 auto;

    display: flex;
    flex-direction: column;
    gap: 20px;

}





.fullmenu .slide_group {
    background-color: var(--BG-primary);
    box-shadow: 0px 2px 12px -4px rgba(35, 35, 35, 0.08), 0px 2px 12px -4px rgba(35, 35, 35, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* border: 1px solid var(--Action-default); */
    border-radius: 6px;
    overflow: hidden;
}

.fullmenu .slide {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px;
    gap: 40px;
    align-items: center;
}

.fullmenu .slide:not(:first-child) {
    border-top: 1px solid var(--Other-divider);
}

.fullmenu .slide.link {
    gap: 10px;

}

.fullmenu .slide.link .title {
    color: var(--Text-primary);
    font-size: 14px;
    font-weight: 400;
}

.fullmenu .slide .personal_details_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.fullmenu .icon_holder {
    width: 35px;
    height: 35px;
    background-color: var(--Primary-Primary-Light-Blue);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullmenu .icon_holder .icon {
    font-size: 20px;
    color: var(--Primary-primary-blue);

}

.fullmenu .text_items {
    display: flex;
    flex-direction: column;
}

.fullmenu .text_items .title {
    font-size: 12px;
    font-weight: 400;
    color: var(--Text-Secondary);
}

.fullmenu .text_items .data {
    font-size: 14px;
    font-weight: 400;
    color: var(--Text-primary);
}

.support-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 16px;
}

.support-container .icon_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-container .support-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    height: 120px;
    width: 120px;
    border-radius: 50%;
    font-size: 76px;
}

.support-container .text_container {
    text-align: center;
}

.support-container .text_container .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--Text-primary);
    margin-bottom: 10px;
}

.support-container .text_container .text {
    font-size: 16px;
    color: var(--Text-primary);
}

.support-container .button_container {
    display: flex;
    gap: 10px;
}

.support-container .button_container .btn-outline {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    border: 1px solid var(--Primary-primary-blue);
    border-radius: 100px;
    color: var(--Primary-primary-blue);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.support-container .button_container .btn-outline:hover {
    background-color: var(--Primary-primary-blue);
    color: var(--Primary-primary-white);
}

.support-container .button_container .btn-outline .icon {
    font-size: 20px;
}



.content.search {
    background-color: var(--BG-primary);
    padding-top: ;
}

.page_title {
    color: var(--Text-primary);
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    border-bottom: 1px solid var(--Other-divider);
    margin: 0px 0 20px 0px;

}

.section_title {
    color: var(--Text-primary);
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_title .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.section_title .btn .icon {
    font-size: 10px;
    margin-top: 2px;
}

.search_input_container {
    display: flex;
    flex-direction: row;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 14px;
}


.search .search_input_container {}

.search_input_container input {
    width: 100%;
    display: flex;
    padding: 14px 36px 14px 16px;
    align-items: center;
    border-radius: 100px;
    background: var(--BG-secondary);
    border: none;
    font-family: 'Noto Sans Hebrew', sans-serif;
}

.search_input_container.line_input input {
    border: 1px solid var(--Action-default);
}

.search_input_container input::placeholder {
    color: var(--Text-Secondary);
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}

.search_input_container input:focus {
    outline: none;
    box-shadow: none;

}


.search_input_container .icon-search {


    position: absolute;
    right: 30px;
    top: 16px;
}

.search_input_container .empty_search {
    display: none;


    position: absolute;
    left: 30px;
    top: 12px;
    font-size: 18px;
    color: var(--Action-default);
}

.search_input_container .empty_search.active {
    display: block;

}

.search_input_container .filter_search {
    display: none;
    position: absolute;
    left: 16px;
    top: 0px;
    font-size: 18px;
    color: var(--Primary-primary-black);
    width: 60px;
    height: 46px;
    align-items: center;
    justify-content: center;

}

.search_input_container .filter_search.active {
    display: flex;
}


.search_input_container input:focus~.icon-search {
    /* display: none; */
}

.search_input_container input:focus::placeholder {
    color: transparent;
}

.search_filter_row {
    margin-top: -14px;
    display: none;
}

.search_filter_row.active {
    display: block;
}

.search_filter_row .filter_container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 16px;

}

.search_single_filter {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--Action-default);
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.search_single_filter.active {
    border-color: var(--Primary-primary-blue);
}

.search_single_filter .text {
    color: var(--Text-Secondary);
    font-size: 14px;
    font-weight: 400;
}

.search_single_filter.active .text {
    color: var(--Primary-primary-blue);
}

.search_single_filter .icon {
    color: var(--Primary-primary-black);
    font-size: 16px;
    margin-top: 2px;
}


.search .search_results {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}


#content_area.search .search_header {
    padding-top: 20px;
}

#content_area.search .search_header.sticky {
    position: sticky;
    z-index: 8;
    background-color: var(--BG-primary);
    top: 0;
    box-shadow: 0px 2px 12px 0px rgba(35, 35, 35, 0.18);
}


.search .search_results .roles_by_parent {
    padding: 0 16px 0 0;
}

.search .search_results .roles_group {
    margin: 10px 0 10px 0;
    display: flex;
    flex-direction: column;

}

.search .search_results .roles_group .roles_group_title {
    color: var(--Text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.side_scroll_container {


    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* Enable smooth scrolling on iOS */
    scroll-snap-type: x mandatory;
    /* Enable snap scrolling */

}

.side_scroll_container .side_scroll {


    display: flex;
    flex-direction: row;
}


/* Hide scrollbar for WebKit browsers */
.search .search_results .roles_group .roles_group_roles {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Enable smooth scrolling on iOS */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.search .search_results .roles_group .roles_group_roles::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}


.search .search_results .roles_group .roles_group_roles .role {
    display: inline-block;
    width: 160px;
    min-width: 160px;
    /* Adjust the width as needed */
    margin-left: 8px;
    /* Space between items */
    scroll-snap-align: start;
    /* Snap alignment */

    cursor: pointer;

}

.search .search_results .roles_group .roles_group_roles .role {
    display: flex;
    flex-direction: column;

}

.search .search_results .roles_group .roles_group_roles .role .role_name {
    font-size: 14px;
    font-weight: 400;
    text-wrap: wrap;
    pointer-events: none;
    user-select: none;
}

.search .search_results .roles_group .roles_group_roles .role .role_image,
.search .search_results .roles_group .roles_group_roles .role .role_icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* height: 90px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    font-size: 30px;
}

.search .search_results .roles_group .roles_group_roles .role .role_image img {

    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.search .search_tags {
    padding: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 3px;
}

.search .search_tags .search_tag {
    display: flex;
    padding: 4px 14px;
    justify-content: flex-end;
    align-items: center;
    border-radius: 100px;
    background: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
}

.search .roles_listed {
    display: flex;
    flex-direction: column;
}

.search .roles_listed .role_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: var(--BG-primary);
    text-decoration: none;
    color: var(--Text-primary);
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.search .roles_listed .role_item:hover {
    background-color: var(--Primary-Primary-Light-Blue);
}

.search .roles_listed .role_item .icon {
    font-size: 16px;
    color: var(--Text-primary);
}

.search .roles_listed .role_item .icon-empty {
    width: 16px;
}

.search .roles_listed .role_item .role_name {
    flex-grow: 1;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--Text-primary);
    text-align: right;
}

.search .search_results .roles_group .roles_group_title.skeleton {
    height: 26px;
    width: 50%;
    border-radius: 3px;

}

.search .search_results .roles_group .roles_group_roles .role .role_image.skeleton {}

.search .search_results .roles_group .roles_group_roles .role .role_name.skeleton {
    height: 34px;
    margin-top: 2px;
    border-radius: 3px;

}

.employee_card_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 16px;
    background-color: var(--BG-primary);
    margin-bottom: 20px;
    gap: 20px;
    color: var(--Text-primary);
    user-select: none;
    border-radius: 12px;

    /* DS 01 */
    box-shadow: 0px 2px 12px -4px rgba(35, 35, 35, 0.08), 0px 2px 12px -4px rgba(35, 35, 35, 0.08);

}

.employee_list_container {
    background-color: var(--BG-secondary);
    padding: 16px;
    /* margin-top: -20px; */
    min-height: 600px;
}

.employee_list_container .employee_card_item {}

.employee_card_item:nth-of-type(1) {
    /* border-top-width: 0; */
}

.side_scroll_container.employees {
    /* margin-top: -20px; */
    padding-bottom: 16px;
}



.employee_card_item.promoted {
    width: calc(100% - 40px);
    flex-shrink: 0;
    /* background-color: var(--Primary-primary-blue); */
    border-radius: 12px;
    margin-left: 16px;
    color: var(--Text-primary-white);
    max-width: 400px;
    border-top: none;
    margin-bottom: 0;
    box-shadow: none;


    --s: 97px;
    /* control the size*/
    --c1: #0046b1;
    --c2: #093e9f;

    --_c1: var(--c1) 99%, #0000 101%;
    --_c2: var(--c2) 99%, #0000 101%;

    --r: calc(var(--s)*.866);
    --g0: radial-gradient(var(--s), var(--_c1));
    --g1: radial-gradient(var(--s), var(--_c2));
    --f: radial-gradient(var(--s) at calc(100% + var(--r)) 50%, var(--_c1));
    --p: radial-gradient(var(--s) at 100% 50%, var(--_c2));
    background:
        var(--f) 0 calc(-5*var(--s)/2),
        var(--f) calc(-2*var(--r)) calc(var(--s)/2),
        var(--p) 0 calc(-2*var(--s)),
        var(--g0) var(--r) calc(-5*var(--s)/2),
        var(--g1) var(--r) calc(5*var(--s)/2),
        radial-gradient(var(--s) at 100% 100%, var(--_c1)) 0 calc(-1*var(--s)),
        radial-gradient(var(--s) at 0% 50%, var(--_c1)) 0 calc(-4*var(--s)),
        var(--g1) calc(-1*var(--r)) calc(-7*var(--s)/2),
        var(--g0) calc(-1*var(--r)) calc(-5*var(--s)/2),
        var(--p) calc(-2*var(--r)) var(--s),
        var(--g0) calc(-1*var(--r)) calc(var(--s)/ 2),
        var(--g1) calc(-1*var(--r)) calc(var(--s)/-2),
        var(--g0) 0 calc(-1*var(--s)),
        var(--g1) var(--r) calc(var(--s)/-2),
        var(--g0) var(--r) calc(var(--s)/ 2) var(--c2);
    background-size: calc(4*var(--r)) calc(6*var(--s));


}

.side_scroll_container.employees .employee_card_item {
    border-top: none;
    width: calc(100% - 40px);
    flex-shrink: 0;
    margin-left: 16px;
    margin-bottom: 0;
    border-radius: 12px;
}



.side_scroll_container.employees .employee_card_item:first-child {
    margin-right: 16px;
}

.side_scroll_container.employees .employee_card_item:last-child {

    margin-left: 0px;
}

.modal.employee .feature_tag,

.employee_card_item .feature_tag {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px 8px;
    border-radius: 100px;
    color: var(--Text-primary);
    font-size: 12px;
    font-weight: 400;
    gap: 4px;
    width: auto;
    flex-shrink: 0;
    background-color: var(--Primary-Primary-Light-Blue);

}

.modal.employee .feature_tag .icon,

.employee_card_item .feature_tag .icon {
    color: var(--Alerts-error);
    font-size: 16px;
}

.modal.employee .feature_tag.validated,
.employee_card_item .feature_tag.validated {
    background-color: var(--Primary-primary-lemon-green);
}

.modal.employee .feature_tag.validated .icon,
.employee_card_item .feature_tag.validated .icon {
    color: var(--Action-active-light);
}

.modal.employee .feature_tag.manual,
.employee_card_item .feature_tag.manual {
    background-color: var(--Primary-Primary-Light-Blue);
}

.modal.employee .feature_tag.manual .icon,
.employee_card_item .feature_tag.manual .icon {
    color: var(--Text-Secondary);
}


.employee_card_item.promoted .feature_tag {
    position: absolute;
    background-color: var(--Primary-primary-white);
    left: 16px;
    bottom: 16px;
}


/*
display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 30px 16px;
    background-color: var(--BG-primary);
    border-top: solid 4px var(--Other-divider);
    margin-bottom: 0px;
    padding-top: 30px;
    gap: 20px;
    */
.modal.employee .top_part,
.employee_card_item .top_part {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

}

.modal.employee .top_part.sticky {

    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    background-color: white;
    z-index: 1000;
    width: 100%;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    padding-bottom: 36px;
    border-bottom: solid 2px var(--Other-divider);
}

.modal.employee .top_part .right,

.employee_card_item .top_part .right {
    display: flex;
    flex-direction: row;
    max-width: calc(100% - 50px);
    align-items: center;
    gap: 10px;
}

.modal.employee .top_part .right .employee_image,

.employee_card_item .top_part .right .employee_image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.modal.employee .top_part .right .employee_image img,

.employee_card_item .top_part .right .employee_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal.employee .top_part .right .employee_icon,

.employee_card_item .top_part .right .employee_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--Primary-Primary-Light-Blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--Primary-primary-blue);
    flex-shrink: 0;
}

.modal.employee .top_part .right .main_info,

.employee_card_item .top_part .right .main_info {
    display: flex;
    flex-direction: column;
}

.modal.employee .top_part .right .main_info .employee_name,

.employee_card_item .top_part .right .main_info .employee_name {
    overflow: hidden;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.employee_card_item.promoted .top_part .right .main_info .employee_name {

    max-width: calc(100% - 40px);
}

.modal.employee .top_part .right .main_info .employee_name .feature_tag,

.employee_card_item .top_part .right .main_info .employee_name .feature_tag {
    margin-right: 10px;
}

.modal.employee .top_part .right .main_info .employee_nationality_agent,
.employee_card_item .top_part .right .main_info .employee_nationality_agent {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal.employee .top_part .right .main_info .employee_nationality_agent .fi,

.employee_card_item .top_part .right .main_info .employee_nationality_agent .fi {
    font-size: 16px;
}

.modal.employee .top_part .right .main_info .employee_number,
.employee_card_item .top_part .right .main_info .employee_number {
    font-size: 14px;
    font-weight: 400;
    color: var(--Text-Secondary);
}

.modal.employee .top_part .left,

.employee_card_item .top_part .left {
    display: flex;
    align-items: center;
    margin-top: 1px;
}

.modal.employee .top_part .left .favorite_employee,

.employee_card_item .top_part .left .favorite_employee {
    font-size: 24px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--Action-default);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Action-default);
    cursor: pointer;
    /* transition: color 0.3s; */
}

.modal.employee .top_part .left .favorite_employee .icon,

.employee_card_item .top_part .left .favorite_employee .icon {
    pointer-events: none;
}

.modal.employee .top_part .left .favorite_employee:not(.active) .icon-heart-fill,

.employee_card_item .top_part .left .favorite_employee:not(.active) .icon-heart-fill {
    display: none;
}

.modal.employee .top_part .left .favorite_employee:not(.active) .icon-heart,

.employee_card_item .top_part .left .favorite_employee:not(.active) .icon-heart {
    display: block;
}

.modal.employee .top_part .left .favorite_employee.active .icon-heart-fill,

.employee_card_item .top_part .left .favorite_employee.active .icon-heart-fill {
    display: block;
}

.modal.employee .top_part .left .favorite_employee.active .icon-heart,

.employee_card_item .top_part .left .favorite_employee.active .icon-heart {
    display: none;
}

.modal.employee .top_part .left .favorite_employee.active,

.employee_card_item:not(.promoted) .top_part .left .favorite_employee.active {
    border-color: var(--Primary-primary-black);
    color: var(--Primary-primary-black);
}

.employee_card_item .top_part .left .favorite_employee:hover {
    /* color: var(--Alerts-error); */
}

.modal.employee .text_row,
.employee_card_item .text_row {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.employee_card_item.promoted .text_row {

    color: var(--Text-secondary-white, rgba(255, 255, 255, 0.84));
    font-size: 16px;
    font-weight: 400;
}

.bold {
    font-weight: 600 !important;
}

.uline {
    text-decoration: underline;
}

.employee_card_item .icon_row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.employee_card_item .icon_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 16px;

}

.employee_card_item .icon_row.fill .icon_item {
    font-weight: 500;
    color: var(--Text-primary);

}

.employee_card_item .icon_row.line .icon_item {
    font-weight: 400;
    color: var(--Text-Secondary);

}

.employee_card_item .icon_item .icon {
    font-size: 24px;
    color: var(--Primary-primary-blue);
}

.employee_card_item .icon_item .text {}

.employee_card_item .icon_item .text.total {
    display: flex;
    align-items: center;
}

.employee_card_item .icon_item .text .amount {}

.employee_card_item .icon_item .text .currency {
    font-size: 14px;
    font-weight: 400;
    margin-right: 2px;
}

.employee_card_item .icon_item.availability {
    padding: 3px 6px 3px 8px;
    border-radius: 16px;
    border: 1px solid var(--Primary-primary-blue);
    color: var(--Primary-primary-blue);
    font-size: 12px;
    font-weight: 500;
    gap: 2px;

}

.employee_card_item .icon_item.availability .icon {
    font-size: 20px;
}

.employee_card_item .mini_tag_row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.employee_card_item .mini_tag {
    color: var(--Text-primary);
    border-radius: 16px;
    border: 1px solid var(--Action-default);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
}

.modal.employee .big_tag_row,
.employee_card_item .big_tag_row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal.employee .big_tag,
.employee_card_item .big_tag {
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
}

.modal.employee .big_tag.selected,
.employee_card_item .big_tag.selected {

    background-color: var(--Primary-primary-blue);
    color: var(--Primary-Primary-Light-Blue);
}

.employee_card_item .contact_buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.employee_card_item .contact_buttons .item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employee_card_item .contact_buttons .btn-circle-outline {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--Primary-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Primary-primary-blue);

}

.employee_card_item .contact_buttons .btn-circle-outline.disabled {
    color: var(--Text-Secondary);
    border-color: var(--Text-Secondary);
    pointer-events: none;
}

.employee_card_item .contact_buttons .btn-circle-outline .icon {
    font-size: 26px;
}

.double_column_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.double_column_container>div {
    flex-grow: 1;
    flex-basis: 0;
    width: calc(50% - 10px);
    min-width: 200px;
}

.double_column_container .full_row {
    width: 100%;
    flex-basis: unset;
}


.page_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.page_header.hidden {
    display: none;
}

.page_header.line {

    border-bottom: 1px solid var(--Other-divider);
}

.page_header h1 {
    color: var(--Text-primary);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.page_header h1 a {
    color: var(--Text-primary);
    text-decoration: none;
}

.page_header .btn-icon-square-fill {
    background-color: var(--Primary-primary-blue);
    color: var(--Primary-primary-white);
    border-radius: 1px;
    font-size: 14px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

}

.page_header .btn-outline {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid var(--Primary-primary-blue);
    border-radius: 100px;
    color: var(--Primary-primary-blue);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.page_header .btn-outline:hover {
    background-color: var(--Primary-primary-blue);
    color: var(--Primary-primary-white);
}

.projects_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px;
}

.project_card {
    background-color: var(--BG-primary);

    border-radius: 12px;
    background: var(--BG-primary, #FFF);

    /* DS 01 */
    box-shadow: 0px 2px 12px -4px rgba(35, 35, 35, 0.08), 0px 2px 12px -4px rgba(35, 35, 35, 0.08);

    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side_scroll_container.projects {
    margin-top: -20px;
    padding-bottom: 40px;
}

.side_scroll_container.projects .project_card {
    border-top: none;
    width: calc(100% - 40px);
    flex-shrink: 0;
    margin-left: 16px;
    margin-bottom: 0;
    border-radius: 12px;
    box-sizing: border-box;
    user-select: none;
}

.side_scroll_container.projects .project_card:first-child {
    margin-right: 16px;
}

.side_scroll_container.projects .project_card:last-child {

    margin-left: 0px;
}

.project_card .project_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project_card .project_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--Text-primary);
}

.project_card .project_card_counters {
    display: flex;
    gap: 12px;
    flex-direction: row;
}

.project_card .project_counter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 100px;
}

.project_card .project_counter .number {
    font-size: 22px;
    font-weight: 600;
    color: var(--Text-primary);
}

.project_card .project_counter .text {
    font-size: 14px;
    font-weight: 400;
    color: var(--Text-Secondary);
}

.project_card .project_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.project_card .project_details .address {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Text-primary);
    font-size: 14px;
    font-weight: 400;
}

.project_card .project_details .address .icon {
    color: var(--Primary-primary-blue);
    font-size: 20px;
}


.project_card .project_details .employees_avatars {
    display: flex;
    align-items: center;
    direction: ltr;
}

.project_card .project_details .employees_avatars .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    font-size: 14px;
    border: 1px solid var(--Primary-primary-white);
    margin-left: -10px;
    /* Overlap by 10px */
}

.project_card .project_details .employees_avatars .avatar:first-child {
    margin-left: 0;
    /* No overlap for the first avatar */
}

.project_card .project_details .employees_avatars .avatar.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project_card .project_details .employees_avatars .avatar.icon {
    font-size: 18px;
}

.project_card .project_details .employees_avatars .avatar.counter {
    background-color: var(--Primary-primary-blue);
    color: var(--Primary-primary-white);
    font-size: 12px;
    font-weight: 600;
}

.project_card .seperator {
    border-bottom: 1px solid var(--Other-divider);
}

.project_card .project_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.project_card .moreinfo_btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Text-link);
    cursor: pointer;
    text-decoration: none;
    color: var(--Text-primary);
    justify-content: space-between;
    width: 100%;
}

.project_card .moreinfo_btn .text {
    font-size: 16px;
    font-weight: 600;
}

.project_card .moreinfo_btn .icon {
    font-size: 20px;
}

.project_card.active .moreinfo_btn .icon-chevron-down,

.project_card .moreinfo_btn .icon-chevron-up {
    display: none;
}

.project_card.active .moreinfo_btn .icon-chevron-up {
    display: block;
}

.project_card .project_moreinfo {
    display: none;
    width: 100%;
}

.project_card .project_moreinfo_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.project_card.active .project_moreinfo {}

.project_card .project_moreinfo_container .row {
    display: flex;
    gap: 40px;
    width: 100%;
}

.project_card .data_item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project_card .descriptor {
    font-size: 14px;
    font-weight: 400;
    color: var(--Text-Secondary);
}

.project_card .data {
    font-size: 16px;
    font-weight: 700;
    color: var(--Text-primary);
}

.tab_row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--Other-divider);
    border-bottom: 1px solid var(--Other-divider);
    padding: 0;
    height: 50px;
}

.tab {
    padding: 0;
    text-decoration: none;
    color: var(--Text-Secondary);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    display: flex;
    flex: 1 1 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Add relative positioning */

}

.tab.active {
    color: var(--Primary-primary-blue);
    border-radius: 4px;
    font-weight: 600;
}

.tab .text {
    position: relative;
    /* Add relative positioning to the inner span */
    line-height: 50px;
    /* Match the height of the tab_row for vertical alignment */
    display: inline-block;
    /* Ensure the width matches the text */
    white-space: nowrap;
}

.tab.active .text::after {
    content: "";
    display: block;
    height: 5px;
    background-color: var(--Primary-primary-blue);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    border-radius: 6px 6px 0 0;
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

.empty_promo {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.empty_promo .icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--Primary-Primary-Light-Blue);
    font-size: 76px;
    color: var(--Primary-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;

}

.empty_promo .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--Text-primary);
}

.empty_promo .text {
    font-size: 16px;
    font-weight: 400;
    color: var(--Text-Secondary);
}

.empty_promo .btn {
    margin-top: 20px;
}

.status_tag {
    display: flex;
    padding: 5px 10px 5px 12px;
    align-items: center;
    border-radius: 100px;
    font-size: 14px;
    width: auto;
    align-self: flex-start;
}

.status_tag.employed {
    background-color: #e8fff3;
    color: #50cd89;
}

.status_tag .circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.status_tag.employed .circle {
    background-color: #50cd89;
}

.roles_container.slider_container,
.projects_container.slider_container {
    gap: 0px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.project_slide {
    display: flex;
    flex-direction: column;
    padding: 16px;
    text-decoration: none;
    color: var(--Text-primary);
    cursor: pointer;
    border-bottom: 1px solid var(--Other-divider);
}

.project_slide .project_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    gap: 5px;
    flex-direction: row;
    align-items: center;

}

.project_slide .address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--Text-Secondary);
}

.project_slide .address .icon {
    font-size: 20px;
    color: var(--Primary-primary-blue);
}



.roles_container .role_slide {
    display: flex;
    flex-direction: row;
    padding: 16px;
    text-decoration: none;
    color: var(--Text-primary);
    cursor: pointer;
    border-bottom: 1px solid var(--Other-divider);
    gap: 8px;

}

.roles_container .role_slide .project_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.roles_container .role_slide .role_image,
.roles_container .role_slide .role_icon {
    width: 150px;
    aspect-ratio: 16 / 9;
    /* height: 90px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    background-color: var(--Primary-Primary-Light-Blue);
    color: var(--Primary-primary-blue);
    font-size: 30px;
}

.roles_container .role_slide .role_image img {

    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}




.employment_details {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 380px;
    margin: 0 auto;
}

.employment_details h1 {
    font-size: 26px;
    color: var(--Text-primary);
    font-weight: 700;

}

.employment_details .text {
    font-size: 16px;
    font-weight: 400;
    color: var(--Text-primary);
}

.employment_details .text .bold {
    font-weight: 600;

}

.employment_details .card {
    display: flex;
    align-items: center;
    flex-direction: column;

    padding: 20px;
    background-color: var(--BG-primary);
    border-radius: 12px;
    /* DS 01 */
    box-shadow: 0px 2px 12px -4px rgba(35, 35, 35, 0.08), 0px 2px 12px -4px rgba(35, 35, 35, 0.08);
    aspect-ratio: 1 / 1;
    min-width: 200px;
    max-width: 100%;
    justify-content: center;
}

.employment_details .employee_image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.employment_details .employee_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--Primary-Primary-Light-Blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--Primary-primary-blue);
}

.employment_details .employee_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 5px;
}

.employment_details .employee_name {
    font-size: 22px;
    font-weight: 700;
    color: var(--Text-primary);
}

.employment_details .employee_role {
    font-size: 18px;
    font-weight: 500;
    color: var(--Text-primary);
}

.employment_details .employee_nationality_agent {
    font-size: 16px;
    font-weight: 400;
    color: var(--Text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}



.employment_details .text-btn {
    color: var(--Primary-primary-blue);
    font-size: 16px;
    font-weight: 500;
    text-decoration-line: underline;
}

@media (max-width: 600px) {

    .desktop_only {
        display: none;
    }

    .session_parameters {
        display: none;
    }

    .mobile-container {
        max-width: 100%;
        max-height: 100%;
        border: none;
        margin: 0;
    }

    .content {
        padding-bottom: 0px;
    }

    .bottom_bar {
        font-size: 20px;
    }

    .bottom-menu .menu_container .menu-item .icon {
        font-size: 20px;
    }

    .intro h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .intro h2 {
        font-size: 14px;
        line-height: 20px;
    }

    .big-btn {
        height: 40px;
        font-size: 14px;
    }

    .form-group input {
        height: 40px;
        padding: 0 8px;
    }

    .form-group .hover-label {
        font-size: 10px;
    }

    .form_explainer {
        font-size: 12px;
    }

    .otp-inputs input.otp-input {
        width: 30px;
        font-size: 20px;
    }

    .modal-content {
        width: 90%;
        padding: 16px;
    }

    .modal-content .title {
        font-size: 18px;
    }

    .page-toast {
        width: 90%;
        padding: 10px;
    }

    .page-toast .short_text .short-text {
        font-size: 14px;
    }
}