/*================================ Default ================================*/


/* Variables */

:root {
    --theme-color-1: #162479;
    --theme-color-1-dark: #162479;
    --theme-color-1-light: #003ED8;
    --theme-color-1-light-opacity: #1624791f;
    --theme-color-1-lighter-opacity: #16247927;
    --theme-color-1-dropdown: #e0e6fa;
    --theme-color-2: #D71700;
    --theme-color-2-dark: #D71700;
    --theme-color-2-light: #FF582C;
    --theme-color-2-light-opacity: #D717001f;
    --theme-color-2-lighter-opacity: #D7170027;
    --border-color: #cdd8ff;
    --background-color: #f8f7fa;
}


/*
* Font Family
* Poppins
* Google Icons
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 200, 'opsz' 48;
}


/* Scroll Bar */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #fff !important;
    /* box-shadow: 0 0 8px #00000057 inset; */
    /* border-radius: 10px; */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%) !important;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%) !important;
}


/* Loader */

#loader {
    background: linear-gradient(to top right, var(--theme-color-2), var(--theme-color-2-light));
    z-index: 99999;
}


/* Selection */

::selection {
    background: var(--theme-color-2) !important;
    color: #fff !important;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff !important;
}

:focus-visible {
    outline: none;
}


/* Scroll Top Btn */

.scrolltop-btn {
    background: linear-gradient(to right, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%) !important;
    border: 2px solid var(--theme-color-2) !important;
    box-shadow: 0 0 15px 2px var(--theme-color-2-dark) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 10;
}


/* Body */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--background-color);
    color: #131313;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif !important;
    scroll-behavior: smooth;
}

.icon {
    font-size: 24px;
}

@media only screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .icon {
        font-size: 18px;
    }
}

a {
    color: #333333;
}

h1,
h2,
h3,
h5,
h6,
p,
span,
a,
i,
button,
input,
select,
option {
    font-family: 'Poppins', sans-serif !important;
}

h1,
h2,
h3,
h5,
h6 {
    line-height: 1.5;
}


/* Container */

.container {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 50px;
}

@media only screen and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 600px) {
    .container {
        padding: 0 13px;
    }
}


/* Row */

.row:not(.row-margin) {
    margin: 0;
}


/* Background */

.bg-gray {
    background: #f8f7fa !important;
}

.bg-dark {
    background: black !important;
}

.bg-theme-1 {
    background: linear-gradient(to right, var(--theme-color-1) 25%, var(--theme-color-1-light) 100%);
}

.bg-theme-dark-1 {
    background: var(--theme-color-1-dark);
}

.bg-theme-1-light {
    background: var(--theme-color-1-light);
}

.bg-theme-1-light-opacity {
    background: var(--theme-color-1-light-opacity);
}

.bg-theme-1-lighter-opacity {
    background: var(--theme-color-1-lighter-opacity);
}

.bg-theme-2 {
    background: linear-gradient(to right, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%);
}

.bg-theme-dark-2 {
    background: var(--theme-color-2-dark);
}

.bg-theme-2-light {
    background: var(--theme-color-2-light);
}

.bg-theme-2-light-opacity {
    background: var(--theme-color-2-light-opacity);
}


/* Border */

.border-theme-1 {
    border-color: var(--theme-color-1) !important;
}

.border-theme-2 {
    border-color: var(--theme-color-2) !important;
}

.border-theme-light-1 {
    border-color: var(--theme-color-1-light-opacity) !important;
}

.border-theme-light-2 {
    border-color: var(--theme-color-2-light-opacity) !important;
}


/* Text */

.text-dark {
    color: #000 !important;
}

.text-theme-1 {
    background: linear-gradient(-49deg, var(--theme-color-1) 25%, var(--theme-color-1-light) 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.text-theme-dark-1 {
    color: var(--theme-color-1-dark);
}

.text-theme-2 {
    background: linear-gradient(-49deg, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.text-theme-dark-2 {
    color: var(--theme-color-2-dark);
}

.small-text {
    font-size: 12px;
}


/* Fill */

.fill-theme-1 {
    fill: var(--theme-color-1);
}

.fill-theme-dark-1 {
    fill: var(--theme-color-1-dark);
}

.fill-theme-2 {
    fill: var(--theme-color-2);
}

.fill-theme-dark-2 {
    fill: var(--theme-color-2-dark);
}


/* Shadow */

.shadow {
    box-shadow: 0 0 10px 1px #0000001a !important;
}


/* Link */

.link-theme-1 {
    color: var(--theme-color-1) !important;
}

.link-theme-1:hover {
    color: var(--theme-color-1-dark) !important;
}

.link-theme-2 {
    color: var(--theme-color-2) !important;
}

.link-theme-2:hover {
    color: var(--theme-color-2-dark) !important;
}


/* Images */

img {
    width: 100%;
    user-select: none;
}


/* Input, Select */


/* input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
} */

.form-control,
.form-select {
    background-color: #ffffff;
    border-color: var(--border-color) !important;
}

.is-invalid .form-control {
    border-color: #dc3545 !important;
    padding-right: 2.2rem !important;
}

.is-valid .form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%230032d4' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    padding-right: 2.2rem !important;
}

.is-invalid label {
    color: #dc3545 !important;
}

.form-control:focus:not(.is-invalid),
.form-control:active:not(.is-invalid),
.form-select:hover:not(.is-invalid),
.form-select:focus:not(.is-invalid),
.form-select:active,
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active,
.select2-container--default .select2-selection--multiple:focus,
.select2-container--default .select2-selection--multiple:active {
    background-color: #fff;
    border-color: var(--theme-color-1) !important;
    box-shadow: none !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    height: 50px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: #ffffff;
    border-color: var(--border-color) !important;
    padding: 0.4rem 0.8rem;
}

.select2-container--default .select2-selection--single.is-invalid,
.select2-container--default .select2-selection--multiple.is-invalid {
    border-color: #dc3545 !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    background-color: #ffffff;
    border-color: var(--border-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    color: #212529a6;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 35px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    background: var(--theme-color-1-light-opacity);
    color: var(--theme-color-1);
    font-size: 12px;
    line-height: 20px;
    border-color: var(--theme-color-1-light-opacity);
    height: 33px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
    color: var(--theme-color-1);
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
    padding: 0;
    height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
    height: 49px;
    right: 11px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
    border-color: var(--bs-body-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__arrow b {
    border-color: transparent transparent var(--theme-color-1) transparent;
}

.select2-container--open .select2-dropdown {
    border-color: var(--border-color) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--theme-color-1-light-opacity);
    border-color: var(--border-color) transparent transparent transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--bs-border-radius);
    padding: 0.4rem 0.80rem;
    height: 35px;
    min-height: 35px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--theme-color-1);
    outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--theme-color-1);
}

.form-floating .form-control,
.form-floating .form-select {
    font-size: 14px;
    padding: 0.4rem 0.80rem;
    height: 47px;
    min-height: 47px;
    line-height: 1.25;
}

.form-floating label {
    color: #212529a6;
    font-size: 14px;
    line-height: 32px;
    height: 100%;
    padding: 0.4rem 0.80rem;
}

.form-floating .form-control-plaintext:focus,
.form-floating .form-control-plaintext:not(:placeholder-shown),
.form-floating .form-control:focus,
.form-floating .form-control:not(:placeholder-shown) {
    padding-top: 15px;
    padding-bottom: 10px;
}

.form-floating .form-control-plaintext~label,
.form-floating .form-control:focus~label,
.form-floating .form-control:not(:placeholder-shown)~label,
.form-floating .form-select~label {
    background: linear-gradient(to bottom, #fff 50%, #f8f9fa 50%);
    color: #99a0b8;
    transform: scale(.85) translateY(-0.43rem) translateX(0.15rem);
    box-shadow: none;
}

.form-floating.disabled .form-control-plaintext~label,
.form-floating.disabled .form-control:focus~label,
.form-floating.disabled .form-control:not(:placeholder-shown)~label,
.form-floating.disabled .form-select~label {
    background: linear-gradient(to bottom, #fff 50%, #e9ecef 50%);
}

.form-floating .form-control:focus~label,
.form-control:not(:placeholder-shown)~label,
.form-floating .form-select~label {
    background: linear-gradient(to bottom, #fff 50%, #f8f9fa 50%);
    color: var(--theme-color-1);
    padding: 0 2px;
    border: none;
    height: 15px;
    line-height: 15px;
    left: 7px;
    transform: scale(.85) translateY(-0.43rem) translateX(0.15rem);
}

@media only screen and (max-width: 600px) {

    .form-control,
    .form-select {
        font-size: 12px;
    }
}

.invalid-feedback {
    font-size: 10px;
}


/* Buttons */

.btn {
    border-radius: 8px;
    transition: all .2s ease-in-out !important;
    font-weight: bold !important;
}

.btn-primary {
    --bs-btn-focus-shadow-rgb: #628DFB;
}

.big-hover {
    transform: scale(1) !important;
    transition: transform .2s ease-in-out;
}

.btn-cancel {
    background-color: #e0e0e0 !important;
    color: #464646 !important;
    border-color: #e0e0e0 !important;
}

.big-hover:hover {
    transform: scale(1.070) !important;
}

.btn-dark {
    background: #141414 !important;
    border-color: #141414 !important;
    color: #fff !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background: #000 !important;
    border-color: #000 !important;
}

.btn-theme-light-1 {
    background: var(--theme-color-1-light-opacity) !important;
    border-color: var(--theme-color-1-light-opacity) !important;
}

.btn-outline-light {
    background: #ffffff1c !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    color: var(--theme-color-1-dark) !important;
}

.btn-outline-dark {
    background: #0000001c !important;
    color: #000 !important;
    border-color: #000 !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background: #000 !important;
    color: var(--theme-color-2) !important;
}

.btn-theme-1 {
    background: linear-gradient(to right, var(--theme-color-1) 25%, var(--theme-color-1-light) 100%);
    border: none;
}

.btn-theme-1:hover,
.btn-theme-1:focus,
.btn-theme-1:active {
    background: linear-gradient(to right, var(--theme-color-1-light) 25%, var(--theme-color-1) 100%);
    border: none !important;
}

.btn-theme-light-1 {
    background: var(--theme-color-1-light-opacity) !important;
    border: none !important;
}

.btn-theme-light-1:hover,
.btn-theme-light-1:focus,
.btn-theme-light-1:active {
    background: var(--theme-color-1) !important;
    border: none !important;
}

.btn-theme-2 {
    color: white !important;
    background: linear-gradient(to right, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%);
    border: none !important;
}

.btn-theme-2:hover,
.btn-theme-2:focus,
.btn-theme-2:active {
    color: white;
    background: linear-gradient(to right, var(--theme-color-2-light) 25%, var(--theme-color-2) 100%);
    border: none !important;
}

.btn-theme-light-2 {
    background: var(--theme-color-2-light-opacity) !important;
    border-color: var(--theme-color-2-light-opacity) !important;
}

.btn-theme-light-2:hover,
.btn-theme-light-2:focus,
.btn-theme-light-2:active {
    background: var(--theme-color-2) !important;
    border-color: var(--theme-color-2) !important;
}

.btn-outline-theme-1 {
    color: var(--theme-color-1) !important;
    border-color: var(--theme-color-1) !important;
}

.btn-outline-theme-1:hover,
.btn-outline-theme-1:focus,
.btn-outline-theme-1:active {
    color: var(--theme-color-1) !important;
    background: var(--theme-color-1-light-opacity) !important;
    border-color: var(--theme-color-1) !important;
}

.btn-outline-theme-2 {
    color: var(--theme-color-2) !important;
    border-color: var(--theme-color-2) !important;
}

.btn-outline-theme-2:hover,
.btn-outline-theme-2:focus,
.btn-outline-theme-2:active {
    color: #fff !important;
    background: var(--theme-color-2) !important;
    border-color: var(--theme-color-2) !important;
}

@media only screen and (max-width: 769px) {
    .btn.btn-sm {
        font-size: 13px;
    }

    .btn:not(.btn-square) {
        font-size: 15px;
        padding: 9px 9px !important;
    }
}

@media only screen and (max-width: 600px) {
    .btn.btn-sm {
        font-size: 13px;
    }

    .btn:not(.btn-square) {
        font-size: 13px;
        padding: 9px !important;
    }
}


/* Dropdown */

.dropdown.dropdown-theme-1 .dropdown-menu {
    border-color: var(--theme-color-1);
}

.dropdown.dropdown-theme-1 .dropdown-menu .dropdown-item:hover {
    background: var(--theme-color-1-lighter-opacity);
    color: var(--theme-color-1);
}

.dropdown.dropdown-theme-2 .dropdown-menu {
    border-color: var(--theme-color-2);
}

.dropdown.dropdown-theme-2 .dropdown-menu .dropdown-item:hover {
    background: var(--theme-color-2-lighter-opacity);
    color: var(--theme-color-2);
}


/* Alert */
.alert {
    background: var(--theme-color-1) !important;
}

.alert span {
    color: #fff;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 550;
    animation: popup 2s infinite;
    animation-delay: 2s;
}

@keyframes popup {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.alert .typed-cursor {
    color: white;
}

.alert .btn-close {
    background: unset;
    padding: 4px;
    box-shadow: none;
    opacity: 1;
    height: auto;
    width: auto;
    border: 0;
    line-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -10px;
}

.alert .btn-close:hover {
    background: var(--theme-color-1-light-opacity);
}

.alert .btn-close .icon {
    color: var(--border-color);
    font-size: 22px;
    line-height: 22px;
}

@media only screen and (max-width: 600px) {
    .alert span {
        font-size: 14px;
    }
}


/* Swal2 */

.swal2-backdrop-show {
    --bs-backdrop-bg: var(--theme-color-1-light-opacity) !important;
    --bs-backdrop-opacity: 0.4 !important;
    background-color: var(--theme-color-1-light-opacity) !important;
    backdrop-filter: blur(5px) brightness(50%) !important;
}

.swal2-icon.swal2-success {
    border-color: var(--theme-color-1) !important;
    color: var(--theme-color-1) !important;
}

.swal2-success-ring {
    border-color: var(--theme-color-1) !important;
}

.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: var(--theme-color-1) !important;
}

.swal2-cancel {
    background: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.swal2-confirm {
    background: var(--theme-color-1) !important;
    border-color: var(--theme-color-1) !important;
}

.swal2-confirm:hover,
.swal2-confirm:focus,
.swal2-confirm:active {
    background: var(--theme-color-1-dark) !important;
    border-color: var(--theme-color-1-dark) !important;
}


/* Modal */

.modal-backdrop {
    --bs-backdrop-bg: var(--theme-color-1-light-opacity);
    --bs-backdrop-opacity: 0.4 !important;
    background-color: var(--theme-color-1-light-opacity);
}

.modal.fade.show {
    backdrop-filter: blur(5px) brightness(50%) !important;
}

.modal .modal-dialog {
    max-width: 600px !important;
}

.modal .modal-dialog .modal-content {
    border-color: var(--theme-color-2-dark) !important;
    box-shadow: 0 0 5px 1px #00000057 !important;
}

.modal .modal-dialog .modal-content .modal-header {
    border-color: var(--theme-color-2-dark) !important;
}

.modal .modal-dialog .modal-content .close-btn {
    background: white;
    color: var(--theme-color-1);
    box-shadow: 0 0 15px 4px #00000081 !important;
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    cursor: pointer;
}

.modal .modal-dialog .modal-content .modal-footer {
    border-color: var(--theme-color-2-dark) !important;
}


/* Toastr */

#toast-container .toast {
    opacity: 1;
    border: none;
    border-radius: 0.7rem;
    box-shadow: 0 0 8px #0000009c;
    margin: 8px 0 0 0;
}

#toast-container .toast:hover {
    box-shadow: 0 0 8px #0000009c;
}

#toast-container .toast.toast-success {
    background-color: var(--theme-color-1);
}

#toast-container .toast .toast-title {
    font-weight: 600;
    letter-spacing: 1px;
}

#toast-container .toast .toast-close-button {
    font-size: 23px;
    font-weight: normal;
    padding: 0.150rem 0.400rem;
    border-radius: 50%;
    top: -0.150rem;
    right: -0.150rem;
}

#toast-container .toast .toast-close-button:hover,
#toast-container .toast .toast-close-button:focus,
#toast-container .toast .toast-close-button:active {
    background: #ffffff2a;
    color: unset;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    #toast-container {
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 10px;
    }

    #toast-container .toast .toast-close-button {
        font-size: 18px;
        padding: 0.150rem 0.400rem;
        border-radius: 50%;
        top: -0.150rem;
        right: -0.150rem;
    }
}


/* Nav */

.sticky-top {
    box-shadow: 0px 10px 24px 0px #00000029;
}

nav .logo {
    height: 100%;
    max-height: 50px;
}

nav .btn-back {
    background: transparent;
    color: #8b8b8b;
    border: none;
}

nav .btn-back .icon {
    font-size: 30px;
}

nav .btn-back:hover,
nav .btn-back:focus,
nav .btn-back:active {
    background-color: #cdd8ff63 !important;
    color: #000000 !important;
}

nav .dropdown .dropdown-menu {
    background: var(--theme-color-1-dropdown);
    padding: 0;
    overflow: hidden;
}

nav .dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
}

nav .dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--theme-color-1-light-opacity);
    color: var(--theme-color-1);
}

nav .location {
    background: var(--theme-color-1-light-opacity) !important;
}

nav .location:hover {
    background: var(--theme-color-2-light-opacity) !important;
}

nav .location:hover .fill-theme-1 {
    fill: var(--theme-color-2) !important;
}

nav .location:hover .text-theme-1 {
    background: linear-gradient(-49deg, var(--theme-color-2) 25%, var(--theme-color-2-light) 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

@media only screen and (max-width: 767px) {
    nav .nav-wrapper .navbar-collapse {
        order: 3;
    }
}


/* Footer */

footer {
    background: #fff;
    /* color: rgb(206, 206, 206); */
    border-top: 1px solid var(--border-color);
}

footer .divider {
    color: var(--border-color) !important;
    opacity: 0.8;
}

footer .footer-wrapper {
    overflow: hidden;
    position: relative;
}

footer .footer-wrapper::before {
    /* content: ""; */
    /* background: linear-gradient(to right, var(--theme-color-1) 25%, var(--theme-color-1-light) 100%); */
    background: black !important;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

/* footer .footer-wrapper::after {
    content: "";
    background-image: url('../images/tools-bg.png');
    background-repeat: repeat;
    background-size: 800px;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: invert(1);
    opacity: 0.2;
} */

footer .logo {
    max-width: 280px;
}

@media only screen and (max-width: 767px) {
    footer .logo {
        max-width: 150px;
    }
}


/*=============================== Sign in ===============================*/

.signin .signin-wrapper {
    min-height: calc(100vh - 66px);
    padding: 20px 0;
}

.signin .signin-wrapper::before {
    content: "";
    background: #bbbbbb85;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.signin .signin-wrapper .bg-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.signin section.signin-wrapper .card {
    max-width: 420px;
}

.signin section.signin-wrapper .card .btn.bg-facebook {
    background: #1877f2;
    border: #1877f2;
}

.signin section.signin-wrapper .card .btn .icon {
    width: 30px;
    height: 30px;
}


/*=============================== Default ===============================*/

section {
    margin: 0 0 100px 0;
}

body section.last {
    margin: 0;
}


/*================================ Home ================================*/


/* Hero Section */

.home section.hero {
    /* background: linear-gradient(to top right, var(--theme-color-1-dark), var(--theme-color-1)); */
    /* background-image: url('../images/register-bg.jpg') !important;
    background-repeat: no-repeat;
    background-size: cover; */
    position: relative;
    min-height: calc(100vh - 76px);
    z-index: 1;
}

/* .home section.hero::before {
    content: "";
    background-image: url('../images/bg-hero.png');
    filter: drop-shadow(10px -10px 20px #181818ad);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto 100%;
    width: 41.66666667%;
    height: 96%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
} */

.home section.hero::after {
    content: "";
    background: #bbbbbb85;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.home section.hero .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.home section.hero .form-wrapper .left {
    flex-grow: 1;
}

.home section.hero .form-wrapper {
    font-family: 'Poppins', sans-serif !important;
}

.home section.hero .form-wrapper .form-control {
    background: var(--theme-color-1-light-opacity) !important;
    color: var(--theme-color-1);
    font-size: initial;
    font-weight: bold;
    padding: 0.4rem 2.5rem 0.4rem 0.8rem;
    border: 1px solid var(--theme-color-1-light-opacity) !important;
}

.home section.hero .form-wrapper .form-group .form-control:focus {
    border-color: var(--theme-color-1);
}

.home section.hero .form-wrapper .location-btn {
    padding: 5px;
    border: none;
    outline: none;
    background: transparent;
}

.home section.hero .form-wrapper .location-btn:hover {
    background: var(--theme-color-1-lighter-opacity);
}

.home section.hero .form-wrapper .location-btn .icon {
    fill: var(--theme-color-1);
    width: 20px;
    height: 20px;
}

.home section.hero .form-wrapper .btn:hover {
    transform: scale(1.070);
}


@media only screen and (max-width: 1200px) {
    .home section.hero::before {
        width: 33.33333333%;
    }
}

@media only screen and (max-width: 768px) {
    .home section.hero {
        min-height: calc(100vh - 68px) !important;
    }

    .home section.hero::before {
        background-size: auto 100%;
        background-position: bottom right;
        width: 80%;
        z-index: -1;
    }

    .home section.hero .btn-theme {
        border-radius: var(--bs-border-radius-pill) !important;
    }
}

@media only screen and (max-width: 600px) {
    .home section.hero::before {
        height: 0;
        width: 100%;
        background-position: top center;
        background-size: cover;
        z-index: -1;
    }

    .home section.hero h1 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 459px) {
    .home section.hero .form-wrapper .btn {
        width: 100%;
    }
}


/* Business Section */

.home .business-shop .bg-wrapper {
    padding-top: 200px;
}

.home .business-shop .bg-wrapper::before {
    content: "";
    background: #000737d5;
    background: #000000d2;
    background: #bbbbbb85;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.home .business-shop .bg-img {
    object-fit: cover;
    z-index: -1;
    height: 400px;
}

.home .business-shop .box {
    max-width: 650px;
}


/* Cities */

.home section.cities .bg-wrapper {
    aspect-ratio: 1/0.800;
    object-fit: cover;
    overflow: hidden;
}

.home section.cities .bg-img {
    transform: translate(-50%, -50%) scale(1);
    filter: saturate(0.5);
    transition: transform .3s linear !important;
    object-fit: cover;
    aspect-ratio: 1/0.800;
    z-index: -1;
}

.home section.cities .bg-wrapper:hover .bg-img {
    transform: translate(-50%, -50%) scale(1.3);
    filter: saturate(1.5);
}

.text-muted {
    color: #212529 !important;
}

/*============================== Services ==============================*/

.services .service-category-slider a::before {
    content: "";
    background: var(--theme-color-1);
    width: 0;
    height: 4px;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width .2s linear;
}

.services .service-category-slider a:hover::before {
    width: 40%;
}

.services .service-category-slider a.active::before {
    width: 100%;
}

.services .service-category-slider a.active {
    background: var(--theme-color-1-lighter-opacity);
}

.services section.search {
    position: relative;
}

.services section.search::before {
    content: "";
    background-image: url('../images/register-bg.jpg?v=0');
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.services section.search::after {
    content: "";
    background: #bbbbbb85;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.services section.search .mx-width {
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 700px;
}

.services section.search .search-wrapper .form-select {
    width: 100%;
    max-width: 130px;
}

.services section.search .search-wrapper .select2-container--default {
    position: relative !important;
}

.services section.search .search-wrapper .select2-container--default::before {
    content: "";
    background: var(--theme-color-1-light);
    position: absolute;
    top: 50%;
    right: 0.5px;
    transform: translateY(-50%);
    width: 1.1px;
    border-radius: 10px;
    height: 70%;
}

.services section.search .search-wrapper .form-control,
.services section.search .search-wrapper .form-select {
    background: transparent;
}

.services section.search .search-wrapper .select2-container--default {
    max-width: 120px !important;
}

.services section.search .search-wrapper .select2-container--default .select2-selection--single,
.services section.search .search-wrapper .select2-container--default .select2-selection--single:active,
.services section.search .search-wrapper .select2-container--default .select2-selection--single:focus,
.services section.search .search-wrapper .select2-container--default .select2-selection--single:hover,
.services section.search .search-wrapper .select2-container--default .select2-selection--multiple,
.services section.search .search-wrapper .select2-container--default .select2-selection--multiple:hover,
.services section.search .search-wrapper .select2-container--default .select2-selection--multiple:focus,
.services section.search .search-wrapper .select2-container--default .select2-selection--multiple:active {
    border-color: transparent !important;
}

.services section.search .search-wrapper .select2-container--default .select2-selection--single,
.services section.search .search-wrapper .select2-container--default .select2-selection--multiple {
    border-color: transparent !important;
}

.services section.search .search-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.services section.search .search-wrapper .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    /* color: var(--theme-color-1) !important; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
}

.select2-container--default.select2-container--open .select2-results__options::-webkit-scrollbar-track {
    background: white !important;
    border-radius: 100px !important;
}

.select2-container--default.select2-container--open .select2-results__options::-webkit-scrollbar-thumb {
    background: var(--theme-color-1) !important;
    border-radius: 10px;
}

.services section.services .aj-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.services section.services .aj-row .card {
    background: transparent !important;
    width: 100%;
    max-width: calc(calc(100% / 5) - 16px);
    border-radius: 12px 12px 0 0;
}

.services section.services .card {
    border-radius: 12px 12px 0 0;
}

.services section.services .card .card-header {
    border-radius: 12px;
}

.services section.services .card-header .service-img {
    aspect-ratio: 4/2.5;
    object-fit: cover;
    transition: all .3s linear;
}

.services section.services .card:hover .card-header .service-img {
    transform: scale(1.5);
    /* transform: scale(1.5) rotate(10deg); */
}

.services section.services .card .card-header .tag-parent {
    margin-top: 5px !important;
}

.services section.services .card .card-header .tag {
    padding: 6px 8px 6px 4px;
}

.services section.services .card .card-header .tag .icon {
    font-size: 14px;
    line-height: 14px;
}

.services section.services .card .card-header .tag span {
    font-size: 12px;
    line-height: 14px;
}

.services section.services .aj-row .card .card-title {
    line-height: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
}

.services section.services .card .ratings {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    line-height: 16px;
    white-space: nowrap;
    flex: 0 0 auto;
    align-self: center;
}

.services section.services .card .ratings .icon {
    font-size: 15px;
    line-height: 16px;
}

.services section.services .aj-row .card .card-business-name {
    line-height: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
}

.services section.services .aj-row .card .service-area {
    line-height: 100%;
    font-size: 80% !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
}


@media only screen and (max-width: 1600px) {
    .services section.services .aj-row .card {
        max-width: calc(calc(100% / 4) - 16px);
    }
}

@media only screen and (max-width: 1200px) {
    .services section.services .aj-row {
        gap: 10px;
    }

    .services section.services .aj-row .card {
        max-width: calc(calc(100% / 3) - 6.7px);
    }
}

@media only screen and (max-width: 640px) {
    .services section.services .aj-row .card {
        max-width: calc(50% - 5px);
    }
}

@media only screen and (max-width: 399px) {
    .services section.services .aj-row .card {
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    /* .services section.services .card-header .service-img {
        filter: saturate(0);
    }
    .services section.services .card-header .service-img:hover {
        filter: saturate(1);
    } */
}


/*========================== Service Provider ==========================*/

.service-provider .divider {
    color: #dee2e6 !important;
    opacity: 1 !important;
}

.service-provider header {
    background: #fff;
}

.service-provider header .banner {
    aspect-ratio: 4/1;
    object-fit: cover;
}

.service-provider header .logo-wrapper {
    aspect-ratio: 1/0.5;
    object-fit: cover;
    width: 100%;
    max-width: 210px;
}

.service-provider header .logo-wrapper .logo {
    background: white;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 8px solid white !important;
}

.service-provider header .name {
    background: linear-gradient(to left, var(--theme-color-1), var(--theme-color-1-dark)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    width: 100%;
    white-space: nowrap;
    line-break: loose;
    text-overflow: ellipsis;
    overflow: hidden;
}

.service-provider #provider-category-bar {
    top: calc(1rem + 59px);
}

.service-provider .service-category-slider a {
    font-size: 15px;
}

.service-provider .service-category-slider a:hover {
    background: var(--theme-color-1-lighter-opacity);
}

.service-provider .service-category-slider a.active {
    background: var(--theme-color-1-lighter-opacity);
}

.service-provider .service-category-slider a.active {
    color: var(--theme-color-1);
}

.service-provider .service-category-slider a::before {
    content: "";
    background: var(--theme-color-1);
    width: 0;
    height: 3px;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width .2s linear;
}

.service-provider .service-category-slider a:hover::before {
    width: 40%;
}

.service-provider .service-category-slider a.active::before {
    width: 40%;
}

.service-provider .card {
    background: #fff !important;
    transition: all .3s linear;
    cursor: pointer;
}

.service-provider .card .description {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 16px;
    max-width: 200px;
}

.service-provider .card:hover,
.service-provider .card:focus,
.service-provider .card:active {
    background: linear-gradient(to right, var(--theme-color-1-dark), var(--theme-color-1)) !important;
    color: white !important;
}

.service-provider .card:hover .text-muted {
    color: #e7e7e7 !important;
}

.service-provider .card .right {
    max-width: 120px;
    height: 100%;
}

.service-provider .card .right .image-wrapper {
    background: linear-gradient(to bottom, var(--theme-color-1-dark), var(--theme-color-1));
    background: var(--theme-color-1);
    color: white;
    font-size: 100%;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all .3s linear;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-provider .card:hover .right .image-wrapper {
    background: var(--theme-color-2);
    color: black;
}

.service-provider .card .right .image-wrapper .service-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all .3s linear;
}

.service-provider .card:hover .right .image-wrapper .service-img {
    /* transform: scale(1.5) rotate(10deg); */
    transform: scale(1.5);
}

.service-provider .card .right .add-to-cart-btn {
    background: var(--theme-color-2);
    color: var(--theme-color-1);
    box-shadow: 0 0 5px 2px #00000031 !important;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
}

.service-provider .card .right .add-to-cart-btn:hover {
    background: var(--theme-color-2-dark);
    color: var(--theme-color-1-dark);
    transform: scale(1.4) !important;
}


.service-provider aside.cart {
    top: calc(2rem + 45px);
}


.service-provider aside.cart .header,
.service-provider aside.cart .content,
.service-provider aside.cart .footer {
    background: #f8f7fa;
}

.service-provider aside.cart .content .box:last-child {
    border: none !important;
    padding: 0 !important;
}

.service-provider aside.cart .content .empty-cart-img {
    max-height: 250px;
}

@media only screen and (max-width: 1500px) {
    .service-provider header .logo-wrapper {
        max-width: 190px;
    }
}

@media only screen and (max-width: 900px) {
    .service-provider header .banner {
        aspect-ratio: 4/1.3;
    }

    .service-provider header .logo-wrapper {
        max-width: 200px;
    }
}

@media only screen and (max-width: 640px) {
    .service-provider header .banner {
        aspect-ratio: 4/1.5;
    }

    .service-provider header .logo-wrapper {
        max-width: 160px;
    }
}

@media only screen and (max-width: 575px) {
    .service-provider .service-heading {
        position: relative;
        padding-bottom: 5px;
    }

    .service-provider .service-heading font::before {
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 500px) {
    .service-provider .card .right {
        max-width: 100px;
        padding: 0 8.3px 8.3px 0;
    }

    .service-provider .card .right .add-to-cart-btn {
        font-size: 15px;
        line-height: 25px;
        width: 25px;
        height: 25px;
    }
}


/*======================= Service Provider Modal =======================*/

.service-provider .service-modal .modal-service-img {
    aspect-ratio: 4/2.5;
    object-fit: cover;
    transition: all .3s linear;
}


/*================================ Cart ================================*/

.offcanvas-backdrop {
    opacity: 1 !important;
    background-color: var(--theme-color-1-light-opacity);
    backdrop-filter: blur(5px) brightness(50%) !important;
}

.offcanvas aside.cart .header {
    background: #fff !important;
}

aside.cart .header .close-btn {
    background: var(--theme-color-1-light-opacity);
    color: var(--theme-color-1-dark);
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    border-radius: 50% !important;
    width: 37px;
    height: 35px;
    display: inline-block;
    z-index: 5;
    cursor: pointer;
}


aside.cart .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(100vh - calc(1rem + 69.8px + 227px)) !important;
    overflow: hidden auto;
}

.offcanvas aside.cart .content {
    max-height: calc(100vh - calc(1rem + 69.8px + 150px)) !important;
}

aside.cart .content::-webkit-scrollbar {
    width: 8px;
}

aside.cart .content::-webkit-scrollbar-track {
    background: var(--theme-color-2-lighter-opacity);
    border-radius: 10px;
}

aside.cart .content::-webkit-scrollbar-thumb {
    background: var(--theme-color-2);
    border-radius: 10px;
}

aside.cart .content::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color-2-dark);
}

aside.cart .content .box,
aside.cart .footer .box {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding: 0 0 8px 0;
    border-bottom: 2px dashed var(--theme-color-1);
    width: 100%;
    height: 100%;
    /* overflow-x: hidden !important;
    overflow-y: visible !important; */
}

aside.cart .content .box:last-child {
    border: none;
    padding: 0;
}

aside.cart .content .box .cart-service-img {
    width: 100%;
    height: 100%;
    max-width: 90px;
    max-height: 90px;
    border-radius: 0.4rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

aside.cart .content .box .center {
    /* width: 100%; */
    /* overflow: hidden; */
}

aside.cart .content .box .right {
    display: inline-block;
    text-align: right;
}

aside.cart .content .box .right .hours {
    background: var(--theme-color-1-light-opacity);
    margin: 0;
    border-radius: 3px;
    min-width: 30px;
    text-align: center;
}


aside.cart .content .box .right .icon {
    font-size: 22px !important;
    cursor: pointer;
}

aside.cart .content .box .right .remove {
    font-size: 15px !important;
}

@media only screen and (max-width: 500px) {
    aside.cart {
        border: none;
    }
}


/*============================== Checkout ==============================*/


.checkout .left-side .form-control {
    background: #fff !important;
    border-color: #a7bdff !important;
}

.checkout .form-floating .form-control-plaintext~label,
.checkout .form-floating .form-control:focus~label,
.checkout .form-floating .form-control:not(:placeholder-shown)~label,
.checkout .form-floating .form-select~label {
    background: #fff !important;
    color: #556594;
    font-weight: 600;
}

.checkout .form-floating .form-control:focus~label,
.checkout .form-control:not(:placeholder-shown)~label,
.checkout .form-floating .form-select~label {
    background: #fff !important;
    color: var(--theme-color-1);
    font-weight: 600;
}

.checkout .left-side .form-floating label {
    color: #53618b;
    font-weight: 500;
}

.checkout .left-side .form-floating label .text-danger {
    color: #ff4747 !important;
}

.checkout .form-floating .form-control:not(:placeholder-shown) {
    border-color: #556594 !important;
}


.checkout .left-side .form-control#order_payment_stripe_elements {
    padding: 0.9rem 0.8rem !important;
}

.checkout .left-side .form-control#order_payment_stripe_elements:hover,
.checkout .left-side .form-control:focus {
    border-color: var(--theme-color-1) !important;
}


.checkout .left-side.blur {
    z-index: 1;
}

.checkout .left-side .blur {
    background-color: #bbbbbb85;
    backdrop-filter: blur(5px) !important;
    z-index: 10 !important;
}



/*========================= Checkout & Booking =========================*/

.right-side {
    background: #fff;
    font-size: 14px !important;
    line-height: 17px !important;
}

.checkout .right-side {
    /* background: linear-gradient(to bottom right, var(--theme-color-1-dark), var(--theme-color-1)); */
}

.right-side .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.right-side .content .box {
    font-size: 14px;
    line-height: 17px;
    padding: 0 0 8px 0;
    border-bottom: 2px dashed var(--theme-color-1);
    display: flex;
    justify-content: space-between;
    gap: 5px;

}

.right-side .content .box:last-child {
    border: none;
    padding: 0;
}
.right-side .content .box .icon {
    font-size: 14px !important;
    line-height: 27px !important;
}

.right-side .content .box .name {
    font-size: 17px;
}

.right-side .content .box .order-service-img {
    width: 100%;
    height: 100%;
    max-width: 80px;
    max-height: 80px;
    border-radius: 0.4rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.right-side .header,
.right-side .content,
.right-side .footer,
.right-side .box {
    background: #f8f7fa;
}


.right-side .content .box:last-child {
    border: none;
}

.right-side .footer {
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.right-side .footer .box {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 4px;
}

.right-side .footer .box:first-child {
    padding-top: 8px;
    border-top: 1.5px solid var(--theme-color-1-light);
}

.right-side .footer .box:last-child {
    padding-top: 5px;
    border-top: 1.5px solid var(--theme-color-1-light);
}

.right-side .content .box .cart-service-img {
    width: 100%;
    height: 100%;
    max-width: 90px;
    max-height: 90px;
    border-radius: 0.4rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.right-side .content .box .center {
    width: 100%;
}

.right-side .content .box .right {
    display: inline-block;
    width: auto;
}

.right-side .content .box .right .hours {
    background: var(--theme-color-1-light-opacity);
    margin: 0;
    border-radius: 3px;
    min-width: 30px;
    text-align: center;
}

.right-side .icon {
    font-size: 18px !important;
    line-height: 27px !important;
}

.right-side .content .box .right .icon {
    font-size: 20px !important;
    line-height: 20px !important;
}


/*============================== Register ==============================*/

.register .register-wrapper {
    min-height: calc(100vh - 66px);
    padding: 20px 0;
}

.register .register-wrapper::before {
    content: "";
    background: #0025a0ab;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register .register-wrapper .bg-img {
    object-fit: cover;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.register .register-wrapper .main-heading {
    line-height: 1.4;
}

.register .register-wrapper .sub-text {
    line-height: 1.7;
    max-width: 500px;
}

@media only screen and (max-width: 768px) {
    .register .register-wrapper .bg-wrapper {
        min-height: calc(100vh - 68px) !important;
    }

    .register .register-wrapper .sub-text {
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}