﻿/* Fonts */
:root {
    --default-font: "Montserrat", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Montserrat", sans-serif;
}

:root {
    --grey-color: #DADADA;
    --secondary-grey-color: #AEAEAE;
    --dark-grey-color: #848484;
    --dark-color: #000000;
    --aqua-color: #C6E3F8;
    --sky-color: #76EFFF;
    --primary-color: #00BBB3;
    --secondary-color: #B7BFFF;
    --secondary-hover-color: #B7BFFF;
    --silver-color: #E3E7F2;
    --Lime-color: #C0FF71;
    --red-color: #FF2A50;
    --light-blue-color: rgba(26, 184, 110, 0.55);
    --green-color: #0D4A3B;
    --Lime-green-color: #94D500;
    --teal-color: #00783E;
    --light-color: #FFFFFF;
    --error-color: #FF0000;
    --border-color: #B0B0B0;
    --box-shadow-color: #00000026;
    --yinmn-blue-color: #2D51FF;
    --robinegg-color: #81D8AF;
    --orange-color: #E16A2C;
    --dried-lilac-color: #1AB86E;
    --orange-hover-color: #cd6a37;
    --radio-color: #D9D9D9;
    --label-color: #717171;
    --light-grey-color: #999;
    --medium-light-gray-color: #D4D4D4;
}

/* Inter Regular */
@font-face {
    font-family: 'Inter';
    src: url('/Portals/_default/Skins/GNZ/vendor/Inter/Inter-UI-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Inter Medium */
@font-face {
    font-family: 'Inter';
    src: url('/Portals/_default/Skins/GNZ/vendor/Inter/Inter-UI-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Inter Semi-Bold */
@font-face {
    font-family: 'Inter';
    src: url('/Portals/_default/Skins/GNZ/vendor/Inter/Inter-UI-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Inter Bold / Black */
@font-face {
    font-family: 'Inter';
    src: url('/Portals/_default/Skins/GNZ/vendor/Inter/Inter-UI-Black.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('/Portals/_default/Skins/GNZ/vendor/Lato/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-yinmn-blue {
    color: var(--yinmn-blue-color) !important;
}

.text-middle {
    vertical-align: middle !important;
}

.text-start {
    text-align: start !important;
}

.text-dark {
    color: var(--dark-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-muted {
    color: var(--bg-light-color);
    font-size: 0.9em;
    opacity: 0.7;
}

.text-danger {
    color: var(--error-color) !important;
}

.text-green {
    color: var(--bg-light-green) !important;
}

.bg-lime-green {
    background: var(--Lime-green-color) !important;
}

.bg-robinegg {
    background: var(--robinegg-color) !important;
}

.bg-sky {
    background: var(--sky-color) !important;
}

a {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-family: Lato;
}

h1 {
    font-family: Lato;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.68px;
}

    h1 p, h1 p span {
        font-size: 56px;
        line-height: 56px;
        font-weight: 700;
    }

h2 {
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h3 {
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h4 {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

h5 {
    color: #717171;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


h6.tital {
    color: var(--label-color);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
}

h4.tital {
    color: #000;
    text-align: right;
    leading-trim: both;
    text-edge: cap;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p.tital {
    overflow: hidden;
    color: #FFF !important;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
}

p {
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    color: var(--dark-color);
}

span {
    color: var(--dark-color);
    leading-trim: both;
    text-edge: cap;
    text-overflow: ellipsis;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

    span.tital {
        color: var(--dark-color);
        overflow: hidden;
        leading-trim: both;
        text-edge: cap;
        text-overflow: ellipsis;
        font-family: Lato;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        align-self: stretch;
    }

.underline {
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}

.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    span {
        font-size: 12px;
    }

    .btn {
        font-size: 14px;
    }
}

@media (max-width: 771px) {

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 14px;
    }

    p {
        font-size: 12px;
    }

    span {
        font-size: 12px;
    }
}

.btn {
    leading-trim: both;
    text-edge: cap;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 10px;
}

    .btn i {
        vertical-align: middle;
    }

.btn-primary, .btn-primary:focus-visible, :not(.btn-check) + .btn-primary:active, .btn-primary:focus, .btn-primary:first-child:active, .btn-primary:disabled, .btn-primary:visited {
    color: var(--light-color) !important;
    background: var(--orange-color) !important;
    border-color: var(--orange-color) !important;
    box-shadow: unset;
}

    .btn-primary:hover {
        background: var(--orange-hover-color);
        border-color: var(--orange-color);
    }

.btn-light, .btn-light:focus-visible, :not(.btn-check) + .btn-light:active, .btn-light:focus, .btn-light:first-child:active, .btn-light:disabled, .btn-light:visited {
    color: var(--dark-color);
    background: var(--light-color);
    border: 1px solid var(--dark-color);
    border-radius: 5.333px;
}

    .btn-light:hover {
        background: var(--dark-grey-color);
        border: 1px solid var(--dark-color);
        border-radius: 5.333px;
    }

.btn-secondary, .btn-secondary:focus-visible, :not(.btn-check) + .btn-secondary:active, .btn-secondary:focus, .btn-secondary:first-child:active, .btn-secondary:disabled, .btn-secondary:visited {
    color: var(--light-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

    .btn-secondary:hover {
        background: var(--secondary-hover-color);
        border-color: var(--secondary-color);
    }

.btn-medium-light-gray, .btn-medium-light-gray:focus-visible, :not(.btn-check) + .btn-medium-light-gray:active, .btn-medium-light-gray:focus, .btn-medium-light-gray:first-child:active, .btn-medium-light-gray:disabled, .btn-medium-light-gray:visited {
    color: var(--light-color);
    background: var(--medium-light-gray-color);
    border-color: var(--medium-light-gray-color);
    height: 40px;
    padding: 12px;
}

    .btn-medium-light-gray:hover {
        color: var(--light-color);
        background: var(--orange-color);
        border-color: var(--orange-color);
    }


.btn-outline-secondary {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 6.691px;
    align-self: stretch !important;
    border-radius: 10px;
    border: 1px solid var(--grey-color) !important;
    background: var(--light-color);
}

    .btn-outline-secondary, .btn-outline-secondary:focus-visible, :not(.btn-check) + .btn-outline-secondary:active, .btn-outline-secondary:focus, .btn-outline-secondary:first-child:active, .btn-outline-secondary:disabled, .btn-outline-secondary:visited {
        color: var(--dark-color);
        border: 2px solid var(--light-color);
    }

        .btn-outline-secondary:hover {
            color: var(--dark-color);
            background-color: transparent;
            border: 2px solid var(--light-color);
        }

.btn-outline-light, .btn-outline-light:focus-visible, :not(.btn-check) + .btn-outline-light:active, .btn-outline-light:focus, .btn-outline-light:first-child:active, .btn-outline-light:disabled, .btn-outline-light:visited {
    color: var(--dark-color);
    border: 1px solid var(--grey-color);
    background: var(--light-color);
}

    .btn-outline-light:hover {
        border: 1px solid var(--grey-color);
        background: var(--grey-color);
    }

.btn-dropdown {
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    content: unset;
}

    .btn-dropdown:after {
        content: unset;
    }



    .btn-dropdown:hover {
        color: var(--light-color);
        background-color: var(--dark-grey-color);
        border: 1px solid var(--dark-grey-color);
    }

.a-btn {
    color: var(--secondary-color) !important;
    cursor: pointer;
    text-decoration: none !important;
}

.badge-primary {
    background-color: var(--primary-color);
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.badge-secondary {
    background-color: var(--secondary-color);
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.section-bg-light {
    background-color: var(--light-color) !important;
}

.section-bg-dark {
    background-color: var(--dark-color) !important;
}

.ct-mt-10 {
    margin-top: 10px;
}

.ct-mt-16 {
    margin-top: 16px;
}

.ct-mt-32 {
    margin-top: 32px !important;
}

.ct-mt-24 {
    margin-top: 24px;
}

.ct-mt-48 {
    margin-top: 48px;
}

.ct-mt-64 {
    margin-top: 64px;
}

.ct-mb-32 {
    margin-bottom: 32px;
}

.ct-mb-40 {
    margin-bottom: 40px;
}

.ct-mb-48 {
    margin-bottom: 48px;
}

.ct-mb-64 {
    margin-bottom: 64px;
}

.ct-ms-42 {
    margin-left: 42px;
}

.list-type-disc {
    list-style-type: disc;
}

.row {
    margin: 0px;
}

.d-none {
    display: none !important;
}

.hidden-cursor {
    display: none !important;
    cursor: pointer !important;
}

.form-control-item {
    display: flex;
    height: 40px;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 10px;
    background: var(--light-color);
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.form-label {
    color: var(--dark-color);
    leading-trim: both;
    text-edge: cap;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form-control.invalid, .form-select.invalid {
    border: 2px solid var(--error-color) !important;
}

.form-control:disabled, .form-control[readonly] {
    /*background-color: var(--light-color);*/
    opacity: 1;
    cursor: not-allowed;
}

.text-end .form-control {
    display: flex !important;
    text-align: end;
}

.required:after {
    content: " *";
    color: red;
}

.has-error {
    color: var(--error-color);
}

.custom-dropdown {
    display: flex;
    width: 100%;
    padding: 12px;
    justify-content: space-between;
    align-items: start;
    align-self: stretch;
    border-radius: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
    padding-right: 2rem;
    background: url('/Portals/_default/Skins/GNZ/img/svg/icon-dropdown.svg') no-repeat right center;
    background-size: 44px 24px;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    display: grid;
    padding: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 10px !important;
    background: #FFF !important;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15) !important;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.select2-container--default .select2-results > .select2-results__options {
    overflow-y: auto;
    display: grid;
    padding: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.select2-results__options li {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.select2-search--dropdown .select2-search__field {
    display: none;
}

.select2-dropdown {
    display: grid !important;
    padding: 4px;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0 !important;
    border-radius: 10px !important;
    background: #FFF;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.select2-container {
    width: 100% !important;
}

.select2-search--dropdown .select2-search__field {
    display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--grey-color) !important;
    color: var(--dark-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url('/Portals/_default/Skins/GNZ/img/svg/icon-dropdown.svg') no-repeat right center;
    background-size: 44px 24px;
    width: -webkit-fill-available !important;
    top: unset !important;
    display: flex !important;
    align-items: center !important;
}


.select2-container .select2-selection--single {
    display: flex !important;
    height: 40px !important;
    padding: 12px !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 10px !important;
    background: #FFF;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.select2-container .select2-selection--multiple {
    border-radius: 10px !important;
    background: #FFF;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.select2-container--default .select2-selection--multiple {
    max-height: 50px !important;
    overflow-y: auto !important;
}

.w-100 {
    width: 100%;
}

.w-250px {
    width: 250px;
}

@media (max-width: 576px) {
    select.form-select {
        font-size: 14px;
    }

    .w-sm-200px {
        width: 200px;
    }
}

.align-self-stretch {
    align-self: stretch;
}

.cursor-pointer {
    cursor: pointer;
}
