@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}

:root {
    --link-blue: #1C64F2;
    --blue: #1C64F2;
    --dark-blue: #1E429F;
    --red: #E02424;
    --light-red: #FDE8E8;
    --danger: #9B1C1C;
    --gr: linear-gradient(273.92deg, #3930D8 23.21%, #847EE7 96.42%);
    --green: #0E9F6E;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.questrial {
    font-family: "Questrial", sans-serif;
}

.sec {
    padding: 2.5em 0px;
    position: relative;
}

    .sec.xl-spacing {
        padding: 9em 0px;
    }

.btn-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-btn {
    display: inline-block;
    border: none;
    outline: none;
    box-shadow: none;
    background: var(--blue);
    border-radius: 8px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: -moz-max-content;
    max-width: max-content;
    transition: 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark-blue);
}

    .main-btn.link-btn {
        padding: 10px 30px !important;
        border: 1px solid transparent !important;
    }

        .main-btn.link-btn:hover {
            background: transparent;
            border: 1px solid var(--blue) !important;
        }

    .main-btn:after, .main-btn:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 100px;
        transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateX(-100%);
    }

    .main-btn:hover {
        background: var(--dark-blue);
    }

    .main-btn:after {
        background: #923140;
    }

    .main-btn:before {
        background: #22374c;
        z-index: 2;
    }

    .main-btn img {
        transition: 0.2s ease-in-out;
    }

    .main-btn.with-icon {
        padding-left: 20px;
    }

        .main-btn.with-icon img {
            width: 28px;
            position: relative;
            z-index: 2;
        }

    .main-btn span {
        font-family: "articoExMedium", sans-serif;
        font-size: 16px;
        color: white;
        position: relative;
        z-index: 3;
    }

    .main-btn:hover {
        color: white;
    }

    .main-btn.secondary-btn {
        display: flex;
        align-items: center;
        max-width: -moz-max-content;
        max-width: max-content;
        background: transparent;
        gap: 8px;
    }

        .main-btn.secondary-btn:hover span {
            color: var(--red);
        }

        .main-btn.secondary-btn:hover img {
            transform: translateX(5px);
        }

        .main-btn.secondary-btn:before, .main-btn.secondary-btn:after {
            display: none;
        }

        .main-btn.secondary-btn span {
            color: black;
        }

    .main-btn.block-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .main-btn.sq {
        border-radius: 5px;
    }

        .main-btn.sq:after, .main-btn.sq:before {
            border-radius: 5px !important;
        }

    .main-btn.full-width {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

.link-btn {
    background: transparent;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
}

    .link-btn span {
        font-weight: 500;
        color: var(--link-blue);
    }

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

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

        .form-group .inp-grp input, .form-group .inp-grp textarea {
            padding: 12px 18px;
            border-radius: 8px;
            background: white;
            width: 100%;
            outline: none;
            border: 2px solid #E5E7EB;
            transition: 0.2s ease-in-out;
            color: #111928;
        }

            .form-group .inp-grp input::-moz-placeholder, .form-group .inp-grp textarea::-moz-placeholder {
                color: #9CA3AF;
                opacity: 1;
            }

            .form-group .inp-grp input::placeholder, .form-group .inp-grp textarea::placeholder {
                color: #9CA3AF;
                opacity: 1;
            }

            .form-group .inp-grp input:focus, .form-group .inp-grp textarea:focus {
                border: 2px solid var(--blue);
            }

.label-text {
    margin-bottom: 5px;
    color: #111928;
    font-size: 16px;
    font-weight: 500;
}

.cus-check {
    position: relative;
}

    .cus-check input {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }

        .cus-check input:checked ~ label:before {
            opacity: 1;
        }

    .cus-check label {
        padding-left: 28px;
        position: relative;
        font-size: 16px;
        color: #374151;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        .cus-check label:after {
            content: "";
            border: 1px solid #9CA3AF;
            border-radius: 4px;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .cus-check label:before {
            content: "";
            border: 1px solid #9CA3AF;
            border-radius: 4px;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            background: url(../images/check.svg) center/12px 12px no-repeat var(--blue);
            opacity: 0;
        }

.cus-radio {
    position: relative;
}

    .cus-radio input {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }

        .cus-radio input:checked ~ label:after {
            background: var(--blue);
            border: 1px solid var(--blue);
        }

        .cus-radio input:checked ~ label:before {
            opacity: 1;
        }

    .cus-radio label {
        padding-left: 28px;
        position: relative;
        font-size: 16px;
        color: #374151;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        .cus-radio label:after {
            content: "";
            border: 1px solid #9CA3AF;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .cus-radio label:before {
            content: "";
            border-radius: 50%;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-48%) scale(0.6);
            z-index: 5;
            background: white;
            opacity: 0;
        }

.para {
    color: #374151;
    font-size: 16px;
    font-weight: 400;
}

.head {
    font-size: 32px;
    color: #111928;
    font-weight: 600;
}

    .head.rg {
        font-weight: 400;
    }

    .head.md {
        font-size: 24px;
    }

    .head.sm {
        font-size: 20px;
    }

    .head.xsm {
        font-size: 16px;
    }

    .head.bold {
        font-weight: 700;
    }

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

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

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-bottom: 110px;
}

.mt-120 {
    margin-bottom: 120px;
}

.mt-130 {
    margin-bottom: 130px;
}

.mt-140 {
    margin-bottom: 140px;
}

.mt-150 {
    margin-bottom: 150px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-bottom: 110px;
}

.pt-120 {
    padding-bottom: 120px;
}

.pt-130 {
    padding-bottom: 130px;
}

.pt-140 {
    padding-bottom: 140px;
}

.pt-150 {
    padding-bottom: 150px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-150 {
    padding-bottom: 150px;
}

.main-nav {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .main-nav .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0em 3em;
    }

        .main-nav .nav-inner .l-part {
            display: flex;
            align-items: center;
            gap: 35px;
        }

            .main-nav .nav-inner .l-part .logo {
                display: inline-block;
                width: 150px;
            }

                .main-nav .nav-inner .l-part .logo img {
                    width: 100%;
                }

            .main-nav .nav-inner .l-part .nav-list {
                display: flex;
                align-items: center;
                gap: 0px;
            }

                .main-nav .nav-inner .l-part .nav-list li a {
                    display: inline-block;
                    padding: 2em 20px;
                    color: rgba(255, 255, 255, 0.6);
                    font-size: 16px;
                    font-weight: 400;
                    border-bottom: 2px solid transparent;
                    transition: 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
                }

                    .main-nav .nav-inner .l-part .nav-list li a.active {
                        color: white;
                        font-weight: 700;
                        border-bottom: 2px solid white;
                    }

                    .main-nav .nav-inner .l-part .nav-list li a:hover {
                        color: white;
                        border-bottom: 2px solid white;
                    }

.login-page {
    position: relative;
    overflow: hidden;
}

    .login-page > img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .login-page > div {
        position: relative;
        z-index: 5;
    }

.login-page-wrapper {
    min-height: 100vh;
    padding: 5em 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-page-wrapper .login-content-container {
        width: 100%;
    }

.cc-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: white;
}

    .cc-card.br-m {
        border-radius: 16px;
    }

    .cc-card.with-border {
        border: 1px solid #E5E7EB;
    }

.cc-card-body {
    padding: 1.8em;
}

    .cc-card-body.pad-sm {
        padding: 1em 1em;
    }

.login-logo {
    margin: 0 auto;
    display: block;
    width: 200px;
    margin-bottom: 1.5em;
}

.pass-field .eye {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    cursor: pointer;
}

    .pass-field .eye img {
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

        .pass-field .eye img.eye-close {
            display: none;
        }

.login-card-bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.error-text {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--red);
    margin-top: 5px;
}

.error-input {
    background: var(--light-red) !important;
    border: 1px solid var(--danger) !important;
    color: var(--danger) !important;
}

    .error-input::-moz-placeholder {
        color: var(--danger) !important;
    }

    .error-input::placeholder {
        color: var(--danger) !important;
    }

.back-btn {
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    margin-bottom: 15px;
}

.main-header {
    position: relative;
    background: url(../images/top-gr.svg) center/cover no-repeat;
}

.banner-con {
    padding: 5em 0px;
    padding-bottom: 6em;
}

.page-head {
    font-size: 36px;
    font-weight: 600;
}

.white {
    color: white;
}

.flt-drop-select input {
    border: 0px;
    width: 100%;
    padding-left: 0px;
}

    .flt-drop-select input:focus {
        border: 0;
        outline: none;
    }

.flt-drop-select-emission input, .multiselect-dropdown .dropdown-btn {
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    padding: 11px !important;
}

.multiselect-dropdown .dropdown-btn {
    min-width: 100px !important;
}

.flt-drop-select-emission input:focus {
    border: 0;
    outline: none;
}

.dropdown-multiselect__caret {
    top: 15% !important;
}

.flt-card {
    background: white;
    padding: 1em 1.5em;
    border-radius: 8px;
    box-shadow: 0px 6px 16px 0px rgba(17, 25, 40, 0.16);
    border: 1px solid #E5E7EB;
    display: flex;
    gap: 10px;
}

    .flt-card .flt-item {
        position: relative;
        flex: 1 1 auto;
        padding: 0.5em 1.5em;
        border-radius: 8px;
    }

        .flt-card .flt-item:last-child:after {
            display: none;
        }

        .flt-card .flt-item:first-child {
            padding-left: 0;
        }

        .flt-card .flt-item:last-child {
            padding-right: 0;
        }

        .flt-card .flt-item .label-text {
            color: #9CA3AF;
            font-weight: 400;
            font-size: 16px;
        }

        .flt-card .flt-item:after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 85%;
            background: #E5E7EB;
        }

    .flt-card.offset {
        margin-top: -52px;
        z-index: 5;
        position: relative;
    }

.bg-offwhite {
    position: relative;
    background: #F9FAFB;
}

.placeholder {
    width: 100%;
    padding-top: 65%;
    height: 100%;
    background: transparent;
    opacity: 1;
    position: relative;
    cursor: default;
}

    .placeholder.sq {
        padding-top: 100%;
    }

    .placeholder.potrait {
        padding-top: 120%;
    }

    .placeholder.wide {
        padding-top: 33%;
    }

    .placeholder img {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: contain !important;
        object-fit: contain !important;
        -o-object-position: center !important;
        object-position: center !important;
    }

.three-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 20px;
}

.sim-table {
    position: relative;
    width: 100%;
}

    .sim-table thead th:first-child {
        border-top-left-radius: 8px;
    }

    .sim-table thead th:last-child {
        border-top-right-radius: 8px;
    }

    .sim-table th, .sim-table td {
        border: 1px solid #E5E7EB;
        padding: 12px 15px;
    }

        .sim-table th:last-child, .sim-table td:last-child {
            text-align: right;
        }

.simp-data-table {
    position: relative;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

    .simp-data-table > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .simp-data-table > div:not(:last-child) {
            border-bottom: 1px solid #E5E7EB;
        }

        .simp-data-table > div:first-child {
            background: #F9FAFB;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

            .simp-data-table > div:first-child span {
                font-weight: 700;
            }

        .simp-data-table > div:last-child {
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .simp-data-table > div:not(:first-child) span:first-child {
            font-weight: 500;
        }

        .simp-data-table > div:not(:first-child) span:last-child {
            font-weight: 700;
        }

        .simp-data-table > div span {
            display: block;
            padding: 13px 18px;
            color: #111928;
            font-size: 16px;
        }

.tp-ar {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .tp-ar .l-part {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .tp-ar .r-part {
        display: flex;
        gap: 20px;
        align-items: center;
    }

.cc-tabs {
    gap: 10px;
    border-bottom: 0px !important;
}

    .cc-tabs li button {
        border-radius: 6px;
        background: white !important;
        border: 1px solid #E5E7EB !important;
        color: #4B5563;
        padding: 8px 12px;
        font-size: 14px;
        box-shadow: 0px 2px 6px 0px rgba(17, 25, 40, 0.05);
    }

        .cc-tabs li button.active {
            border: 1px solid var(--blue) !important;
            color: var(--blue) !important;
            background: #F9FAFB;
        }

.para.md {
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 5px;
}

.para.s-md {
    font-size: 20px;
}

.row-gap-25 {
    row-gap: 25px;
}

.prof {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 12px;
    transition: 0.2s ease-in-out;
}

    .prof:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .prof .im {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1C64F2;
        border-radius: 50%;
        margin-right: 3px;
    }

        .prof .im span {
            color: white;
            font-size: 16px;
        }

    .prof > span {
        font-size: 16px;
        color: white;
    }

.no-wrapper {
    padding: 5em 0px;
}

.mb-5 {
    margin-bottom: 5px !important;
}

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

.bt-c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E5E7EB;
    padding: 1em 0px;
    margin-top: 1.3em;
    padding-bottom: 0;
}

    .bt-c.plus p span {
        color: var(--red);
    }

    .bt-c p {
        margin-bottom: 0;
    }

        .bt-c p span {
            color: var(--green);
        }

.dropdown-menu {
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    margin: 5px 0px !important;
    padding: 0 !important;
}

    .dropdown-menu li {
        cursor: pointer !important;
        padding: 8px 15px;
        font-weight: 500;
        color: #111928;
    }

        .dropdown-menu li:hover {
            background: #F9FAFB !important;
        }

        .dropdown-menu li:not(:last-child) {
            border-bottom: 1px solid #E5E7EB !important;
        }

.dropdown-toggle.select {
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    color: #4B5563 !important;
    position: relative;
    padding: 12px 15px;
    padding-right: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .dropdown-toggle.select img {
        width: 22px;
    }

    .dropdown-toggle.select:after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 1em;
        width: 20px;
        height: 20px;
        background: url(../images/drop-black.svg) center/contain no-repeat;
        border: none !important;
        pointer-events: none;
    }

@media (min-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0px 3em;
    }
}

.flt-text {
    font-size: 20px;
    color: #111928;
    font-weight: 500;
    cursor: pointer;
}

.search-bar {
    width: 100%;
}

    .search-bar .bar {
        width: 100%;
    }

        .search-bar .bar input {
            width: 100%;
            outline: none !important;
            border: none !important;
            box-shadow: none !important;
        }

.flt-drop-select {
    position: relative;
}

    .flt-drop-select .select {
        border: none !important;
        padding: 0;
        width: 100%;
    }

        .flt-drop-select .select:after {
            display: none;
        }

.cc-shadow {
    box-shadow: 0px 2px 9px 0px rgba(209, 213, 219, 0.3);
}

.c-table {
    width: 100%;
}

    .c-table th, .c-table td {
        font-size: 14px;
        text-align: center;
        padding: 15px 20px;
    }

    .c-table thead th {
        background: #F9FAFB;
        font-weight: 600;
    }

        .c-table thead th:nth-child(1) {
            border-top-left-radius: 8px !important;
        }

        .c-table thead th:last-child {
            border-top-right-radius: 8px !important;
        }

    .c-table tbody td {
        color: #111928;
        font-size: 14px;
        background: white;
        border-top: 1px solid #E5E7EB;
    }

        .c-table tbody td:nth-child(1) {
            border-bottom-left-radius: 8px !important;
        }

        .c-table tbody td:last-child {
            border-bottom-right-radius: 8px !important;
        }

.table-wrap {
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #E5E7EB !important;
}
/*# sourceMappingURL=main.css.map */
.pl30 {
    padding-left: 30px;
}

#loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    background: rgba(0,0,0,0.5);
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1rem;
}

    #loading-wrapper .spinner-border {
        width: 5rem;
        height: 5rem;
        color: #5957b1;
        border-width: .7em;
        margin-bottom: 10px;
    }

.hidden {
    display: none;
}
