@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Lato:wght@300;400;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

:root {
    --primary: #feba27;
    --secondary: #2f2d52;
    --gold: #ffc107;
    --white: #fff;
    --black: #231e41;
    --bgLight: #f2f5fa;
    --bgLight2: #f9fafc;
    --bgDark: #0c2239;
    --borderColor: #e5e5e5;
    --borderColor2: #ededed;
    --fontColor: #696969;
    --shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.1);
    --shadow2: 0 1px 2px rgb(0 0 0 / 20%);
}

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

body {
    font-family: "Jost", sans-serif;
    color: var(--fontColor);
    background: var(--white);
    font-weight: 400;
    font-size: 15px;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 100%;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

@media (max-width: 991px) {
    body {
        padding-bottom: 50px;
    }
}

.rtl {
    direction: rtl;
    overflow-x: hidden !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--fontColor);
    box-shadow: 0 0 0px 1000px var(--white) inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

.badge2 {
    border-radius: 50px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 5px 12px;
    position: relative;
    background: var(--bgLight) !important;
    color: var(--secondary);

}

.badge {
    border-radius: 50px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 5px 5px 3px 20px;
    position: relative;
    background: var(--bgLight) !important;
    color: var(--secondary);
}

.blob-dancing {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite !important;
}

.badge::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #26cc8c;
}

.badge.bg-primary::before {
    background: #488ff9;
}

.badge.bg-info::before {
    background: #59c8ff;
}

.badge.bg-danger::before {
    background: #ff6379;
}

.badge.bg-warning::before {
    background: #ffce00;
}

.badge.bg-secondary::before {
    background: #6c757d;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Lato", sans-serif;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 800;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 15px;
}

.btn:focus {
    box-shadow: 0 0 0 0rem black;
}

button {
    background: none;
    border: none;
    padding: 0;
}

i {
    font-size: 16px;
}

.rtl .form-select {
    background-position-x: 10px !important;
}

.btn-custom {
    background: var(--primary);
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
    display: inline-block;
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    width: 160px;
    line-height: 1;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-custom i {
    margin-right: 5px;
}

.btn-custom:hover {
    background: var(--secondary);
}

a.btn-custom {
    padding: 17px;
    color: var(--white);
}

.btn-custom2 {
    background: var(--secondary);
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
    display: inline-block;
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    width: 160px;
    line-height: 1;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-custom2 i {
    margin-right: 5px;
}

.btn-custom2:hover {
    background: var(--primary);
}

.form-check label {
    cursor: pointer;
    color: var(--fontColor);
}

.form-check .form-check-input {
    border-radius: 5px;
    background: var(--white);
    border: 2px solid var(--borderColor);
    cursor: pointer;
    margin-top: 5px;
}

.form-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0rem var(--black);
}

.rtl .form-check .form-check-input {
    float: right;
    margin-left: 0.5em;
}

video::-webkit-media-controls {
    display: none;
}

.header-text {
    margin-bottom: 70px;
}

.header-text h5 {
    text-transform: capitalize;
    color: var(--primary);
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding-left: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.header-text h5::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: -5px;
    background: #e8f1fc;
    z-index: -1;
}

.header-text h3,
.header-text h2 {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.header-text p {
    max-width: 700px;
}

.rtl .header-text h5 {
    padding-left: 0;
    padding-right: 15px;
}

.rtl .header-text h5::before {
    left: auto;
    right: 0;
}

.heading {
    margin-bottom: 15px;
}

.heading .cart-box {
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
}

.heading .cart-box i {
    font-size: 24px;
    color: var(--primary);
}

.heading .cart-box .count {
    background: var(--primary);
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    color: var(--white);
    position: absolute;
    top: 0;
    right: 1px;
    font-size: 11px;
    font-weight: 400;
    padding-top: 1px;
    text-align: center;
}

.food-items {
    min-height: 100vh;
    padding: 50px 0;
    background: var(--bgLight);
}

.food-items .categories {
    margin: 15px 0;
    padding: 15px 0;
    display: flex;
    overflow: hidden;
}

.food-items .categories .tab {
    color: var(--primary);
    background: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    margin-right: 5px;
    font-weight: 400;
    transition: 0.4s;
}

.food-items .categories .tab:hover, .food-items .categories .tab.active {
    background: var(--primary);
    color: var(--white);
}

.food-items .input-group {
    max-width: 100%;
}

.food-items .input-group .form-control {
    border: none;
    height: 50px;
    font-size: 16px;
    padding: 15px 15px 15px 50px;
    background: var(--white);
    caret-color: var(--primary);
    border: 1px solid var(--white);
    border-radius: 100px !important;
    transition: 0.4s;
}

.food-items .input-group .form-control:focus {
    color: var(--fontColor);
    background-color: var(--white);
    border-color: var(--white);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.food-items .input-group .form-control::-moz-placeholder {
    text-transform: capitalize;
}

.food-items .input-group .form-control:-ms-input-placeholder {
    text-transform: capitalize;
}

.food-items .input-group .form-control::placeholder {
    text-transform: capitalize;
}

.food-items .input-group button {
    height: 42px;
    width: 42px;
    background: var(--white);
    border-radius: 80px !important;
    position: absolute;
    left: 4px;
    top: 4px;
    transition: 0.4s;
    z-index: 4;
}

.food-items .input-group button i {
    font-size: 16px;
    color: var(--primary);
}

.food-items .menu-box {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.food-items .menu-box .img-box {
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 10px;
    position: relative;
}

.food-items .menu-box .img-box .count {
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--primary);
    color: var(--white);
    min-width: 20px;
    height: 20px;
    border-radius: 50px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.food-items .menu-box .text-box {
    padding: 10px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.food-items .menu-box .text-box h5,
.food-items .menu-box .text-box p {
    margin-bottom: 5px;
}

.food-items .menu-box .text-box a {
    margin-bottom: 5px;
    color: var(--fontColor);
    transition: 0.4s;
    display: contents !important;
}

.food-items .menu-box .text-box a:hover {
    color: var(--primary);
}

.food-items .menu-box .text-box .price {
    margin-top: 5px;
}

.food-items .menu-box .cart-btn {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 30px;
    border-radius: 8px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-items .menu-box .cart-btn i {
    font-size: 14px;
}

.rtl .food-items .menu-box .cart-btn {
    right: auto;
    left: 10px;
}

.rtl .food-items .menu-box .img-box .count {
    right: auto;
    left: 10px;
}

.cart-items {
    min-height: 100vh;
    background: var(--bgLight);
    padding: 50px 0;
}

.cart-items .cart-menu-box {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    display: flex;
}

.cart-items .cart-menu-box .img-box {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px;
    width: 100px;
}

.cart-items .cart-menu-box .text-box {
    width: calc(100% - 100px);
    padding: 10px;
    text-transform: capitalize;
}

.cart-items .cart-menu-box .text-box h5,
.cart-items .cart-menu-box .text-box p {
    margin-bottom: 5px;
}

.cart-items .cart-menu-box .remove-btn {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 30px;
    border-radius: 8px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.cart-items .cart-menu-box .remove-btn i {
    font-size: 14px;
}

.cart-items .quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 100px;
    width: 105px;
    border: 2px solid var(--bgLight);
    overflow: hidden;
}

.cart-items .quantity .btn-inc-dec {
    width: 35px;
    height: 30px;
    border-radius: 0px;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
}

.cart-items .quantity .form-control {
    width: 35px;
    height: 30px;
    margin: 0 0px;
    background: var(--white);
    border-radius: 0px;
    border: none;
    color: var(--fontColor);
    text-align: center;
    font-size: 12px;
}

.cart-items .quantity .form-control::-moz-placeholder {
    color: var(--white);
}

.cart-items .quantity .form-control:-ms-input-placeholder {
    color: var(--white);
}

.cart-items .quantity .form-control::placeholder {
    color: var(--white);
}

.cart-items .quantity .form-control:focus {
    box-shadow: 0 0 0 0rem var(--black);
}

.cart-items .promo-code {
    margin-top: 30px;
    max-width: 100%;
}

.cart-items .promo-code .form-control {
    border: none;
    height: 50px;
    font-size: 16px;
    padding: 15px 85px 15px 15px;
    background: var(--white);
    caret-color: var(--primary);
    border: 1px solid var(--white);
    border-radius: 100px !important;
    transition: 0.4s;
}

.cart-items .promo-code .form-control:focus {
    color: var(--fontColor);
    background-color: var(--white);
    border-color: var(--white);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.cart-items .promo-code .form-control::-moz-placeholder {
    text-transform: capitalize;
}

.cart-items .promo-code .form-control:-ms-input-placeholder {
    text-transform: capitalize;
}

.cart-items .promo-code .form-control::placeholder {
    text-transform: capitalize;
}

.cart-items .promo-code button {
    height: 42px;
    width: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 80px !important;
    position: absolute;
    left: auto;
    right: 4px;
    top: 4px;
    transition: 0.4s;
    z-index: 4;
}

.cart-items .promo-code button i {
    font-size: 16px;
    color: var(--primary);
}

.cart-items .estimation-area p {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 15px;
}

.cart-items .estimation-area p:last-child {
    border-bottom: 0px;
}

.cart-items .estimation-area p span {
    float: right;
    font-weight: 500;
}

.cart-items .estimation-area p.total {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.rtl .cart-items .cart-menu-box .remove-btn {
    right: auto;
    left: 10px;
}

.rtl .cart-items .estimation-area p span {
    float: left;
}

.rtl .cart-items .promo-code button {
    right: auto;
    left: 4px;
}

.rtl .cart-items .promo-code .form-control {
    padding: 15px 15px 15px 85px;
}

.menu-details-section {
    min-height: 100vh;
    padding: 50px 0;
    background: var(--bgLight);
}

.checkout-section {
    background: var(--bgLight);
    padding: 50px 0;
    min-height: 100vh;
}

.checkout-section form .input-box label {
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.checkout-section form .input-box .form-select,
.checkout-section form .input-box .form-control {
    height: 45px;
    border-radius: 100px;
    background-color: var(--white);
    border: 1px solid var(--white);
    padding: 10px;
    padding-left: 15px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--fontColor);
}

.checkout-section form .input-box .form-select:focus,
.checkout-section form .input-box .form-control:focus {
    color: var(--fontColor);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--white);
}

.checkout-section form .input-box .form-select::-moz-placeholder, .checkout-section form .input-box .form-control::-moz-placeholder {
    color: var(--fontColor);
}

.checkout-section form .input-box .form-select:-ms-input-placeholder, .checkout-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--fontColor);
}

.checkout-section form .input-box .form-select::placeholder,
.checkout-section form .input-box .form-control::placeholder {
    color: var(--fontColor);
}

.checkout-section form .input-box .form-select {
    background-image: url(../images/downward-arrow.png);
}

.checkout-section form .input-box .form-select option {
    background: var(--white);
    color: var(--fontColor);
}

.checkout-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 15px;
}

.checkout-section .order-summary .cart-menu-box {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
}

.checkout-section .order-summary .cart-menu-box .img-box {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px;
    width: 100px;
}

.checkout-section .order-summary .cart-menu-box .text-box {
    width: calc(100% - 100px);
    padding: 10px;
    text-transform: capitalize;
}

.checkout-section .order-summary .cart-menu-box .text-box h5,
.checkout-section .order-summary .cart-menu-box .text-box p {
    margin-bottom: 5px;
}

.checkout-section .order-summary .quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 100px;
    width: 105px;
    border: 2px solid var(--bgLight);
    overflow: hidden;
}

.checkout-section .order-summary .quantity .btn-inc-dec {
    width: 35px;
    height: 30px;
    border-radius: 0px;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
}

.checkout-section .order-summary .quantity .form-control {
    width: 35px;
    height: 30px;
    margin: 0 0px;
    background: var(--white);
    border-radius: 0px;
    border: none;
    color: var(--fontColor);
    text-align: center;
    font-size: 12px;
}

.checkout-section .order-summary .quantity .form-control::-moz-placeholder {
    color: var(--white);
}

.checkout-section .order-summary .quantity .form-control:-ms-input-placeholder {
    color: var(--white);
}

.checkout-section .order-summary .quantity .form-control::placeholder {
    color: var(--white);
}

.checkout-section .order-summary .quantity .form-control:focus {
    box-shadow: 0 0 0 0rem var(--black);
}

.checkout-section .order-summary .estimation-area p {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 15px;
}

.checkout-section .order-summary .estimation-area p:last-child {
    border-bottom: 0px;
}

.checkout-section .order-summary .estimation-area p span {
    float: right;
    font-weight: 500;
}

.checkout-section .order-summary .estimation-area p.total {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.checkout-section .payment-box h5 {
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 30px;
}

.checkout-section .payment-box .btn-primary {
    margin-bottom: 0;
}

.checkout-section .payment-box .btn-check + .btn-primary {
    background: var(--white);
    border: 2px solid var(--bgLight);
    border-radius: 10px;
    padding: 5px;
    color: var(--fontColor);
    position: relative;
    transition: 0.4s;
    height: 100%;
}

.checkout-section .payment-box .btn-check + .btn-primary .check {
    position: absolute;
    left: 12px;
    top: 12px;
    opacity: 0;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    background: var(--primary);
}

.checkout-section .payment-box .btn-check + .btn-primary::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    top: 0;
    left: 0;
}

.checkout-section .payment-box label img {
    border-radius: 6px;
    height: 100%;
}

.checkout-section .payment-box .btn-check:checked + .btn-primary {
    background: var(--white) !important;
    border: 2px solid var(--primary);
}

.checkout-section .payment-box .btn-check:checked + .btn-primary .check {
    opacity: 1;
}

.checkout-section .payment-box .btn-check:checked + .btn-primary::after {
    background: none;
}

.checkout-section .payment-box .btn-check:focus + .btn-primary,
.checkout-section .payment-box .btn-primary:focus {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.checkout-section .payment-box .payment-options {
    overflow-x: auto;
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
}

.checkout-section .payment-box .list-group {
    border-radius: 8px;
}

.checkout-section .payment-box .list-group-item {
    border-color: var(--borderColor2);
}

.checkout-section .payment-box .payment-option {
    width: 100px;
    min-width: 100px;
    height: 100px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar {
    /*width: 3px;*/
    height: 7px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar-track {
    background: var(--primary);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
}

.profile-setting .payout::-webkit-scrollbar {
    width: 3px;
}

.profile-setting .payout::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
}

.profile-setting .payout::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

.checkout-section .payment-box .payment-options::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.rtl .checkout-section .side-bar .side-box ul li span {
    float: left;
}

.rtl .checkout-section .payment-box .btn-check + .btn-primary .check {
    position: absolute;
    left: auto;
    right: 15px;
    top: 15px;
}

.rtl .checkout-section .order-summary .estimation-area p span {
    float: left;
}

.modal .modal-content {
    background: var(--white);
    border-radius: 5px;
    border: none;
}

.modal .modal-content .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: capitalize;
}

.modal .modal-content .modal-header .close-btn i {
    color: var(--fontColor);
    transition: 0.4s;
}

.modal .modal-content .modal-header .close-btn i:hover {
    color: var(--primary);
}

.modal .modal-content .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*----------------------------------------------
02. Bottom Mobile, Tab nav section start
----------------------------------------------*/
.bottom-nav {
    background: var(--white);
    justify-content: space-around;
    box-shadow: var(--shadow2);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 55px;
    display: flex;
    align-items: center;
}

.bottom-nav .nav-item .nav-link {
    color: var(--black);
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.bottom-nav .nav-item .nav-link.active, .bottom-nav .nav-item .nav-link:hover {
    color: var(--white);
    background: var(--primary);
    margin-top: -22px;
}

.bottom-nav .nav-item .nav-link i {
    font-size: 20px;
}

/*----------------------------------------------
Bottom Mobile, Tab nav end
----------------------------------------------*/

.navbar {
    padding: 15px;
}

.navbar.active {
    background: var(--white);
    box-shadow: var(--shadow2);
}

.navbar .navbar-brand img {
    width: 52px;
}

.navbar .container {
    position: relative;
}

.navbar .navbar-nav {
    margin: auto;
}

.navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 5px;
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 2px;
}

.navbar .navbar-toggler i {
    font-size: 16px;
    color: var(--white);
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0rem;
}

.navbar .nav-item {
    margin: 0 15px;
}

.navbar .nav-item .nav-link {
    color: var(--fontColor);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 5px;
    position: relative;
    transition: 0.4s;
}

.navbar .nav-item .nav-link::before {
    content: "";
    position: absolute;
    background: var(--primary);
    left: -10px;
    bottom: 0;
    top: 0;
    height: 8px;
    width: 8px;
    border-radius: 100px;
    z-index: -1;
    margin: auto;
    opacity: 0;
    transition: 0.4s;
}

.navbar .nav-item .nav-link.active, .navbar .nav-item .nav-link.active::before, .navbar .nav-item .nav-link:hover, .navbar .nav-item .nav-link:hover::before {
    opacity: 1;
}

.navbar .navbar-text {
    display: flex;
}

.navbar .navbar-text .btn-custom {
    width: 114px;
    height: 37px;
    padding: 9px;
}

.navbar .profile {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.navbar .profile img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 4px solid transparent;
    outline: 1px solid var(--borderColor);
}

.navbar .user-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
}

.navbar .user-panel:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    top: 54px;
}

.navbar .user-panel .user-dropdown {
    background: var(--white);
    box-shadow: var(--shadow);
    width: 200px;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 64px;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
    z-index: 3;
}

.navbar .user-panel .user-dropdown li {
    border-bottom: 1px solid var(--bgLight);
    list-style: none;
}

.navbar .user-panel .user-dropdown li a {
    background: var(--white);
    color: var(--fontColor);
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    display: flex;
    transform: 0.4s;
}

.navbar .user-panel .user-dropdown li a:active, .navbar .user-panel .user-dropdown li a:focus, .navbar .user-panel .user-dropdown li a:hover {
    background: var(--bgLight);
}

.navbar .user-panel .user-dropdown li a:last-child {
    border-bottom: none;
}

.navbar .user-panel .user-dropdown li a i {
    color: var(--primary);
    margin: 0 5px;
    font-size: 14px;
    position: relative;
    top: 1px;
}

.navbar .notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

.navbar .notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 54px;
}

.navbar .notification-panel .dropdown-toggle {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    position: relative;
    margin-right: 15px;
    padding-top: 4px;
}

.navbar .notification-panel .dropdown-toggle i {
    color: var(--primary);
    font-size: 24px;
}

.navbar .notification-panel .dropdown-toggle::after {
    display: none;
}

.navbar .notification-panel .dropdown-toggle .count {
    background: var(--primary);
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    color: var(--white);
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 11px;
    font-weight: 500;
    padding-top: 1px;
}

.navbar .notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 278px;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar {
    width: 0;
    height: 100%;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
    background: var(--black);
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--black);
    border-radius: 5px;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.navbar .notification-panel .notification-dropdown {
    background: var(--white);
    box-shadow: var(--shadow);
    width: 290px;
    max-height: 324px;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: -40px;
    top: 64px;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
    z-index: 10;
}

.navbar .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--bgLight);
}

.navbar .notification-panel .notification-dropdown li a {
    padding: 10px 10px 10px 15px;
    display: flex;
    color: var(--fontColor);
    white-space: normal;
    transition: 0.4s;
}

.navbar .notification-panel .notification-dropdown li a:active, .navbar .notification-panel .notification-dropdown li a:focus, .navbar .notification-panel .notification-dropdown li a:hover {
    background: var(--bgLight);
}

.navbar .notification-panel .notification-dropdown li a i {
    background: var(--primary);
    border-radius: 2px;
    margin-top: 5px;
    padding: 4px;
    width: 30px;
    height: 30px;
    text-align: center;
    margin-right: 10px;
    color: var(--white);
    font-size: 16px;
}

.navbar .notification-panel .notification-dropdown li a .text {
    width: calc(100% - 40px);
}

.navbar .notification-panel .notification-dropdown li a .text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.navbar .notification-panel .notification-dropdown li a .text .time {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
}

.navbar .notification-panel .notification-dropdown .clear-all {
    background: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    border-top: 1px solid var(--bgLight);
    text-align: center;
    padding: 10px 10px 11px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar .notification-panel .notification-dropdown .clear-all a {
    color: var(--primary);
    transition: 0.4s;
}

.navbar .notification-panel .notification-dropdown .clear-all a:hover {
    color: var(--primary);
}

.rtl .navbar .navbar-nav {
    margin-right: auto;
    margin-left: auto;
}

.rtl .navbar .navbar-toggler {
    right: auto;
    left: 15px;
}

.rtl .navbar .navbar-brand {
    margin-right: 0;
}

.rtl .navbar .nav-item .nav-link::before {
    left: auto;
    right: -10px;
}

.rtl .navbar .notification-panel .dropdown-toggle {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .navbar .notification-panel .dropdown-toggle .count {
    right: auto;
    left: 1px;
}

.rtl .navbar .user-panel .user-dropdown {
    right: auto;
    left: 0;
}

.rtl .navbar .notification-panel .notification-dropdown {
    right: auto;
    left: -40px;
}

.rtl .navbar .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 10px;
}

.home-section {
    height: 100vh;
    background: var(--white);
    background-size: cover;
    background-position: center top;
    position: relative;
    z-index: 1;
}

.home-section .text-box h2,
.home-section .text-box h3,
.home-section .text-box h4 {
    text-transform: uppercase;
}

.home-section .text-box h1 {
    font-size: 80px;
    text-transform: uppercase;
}

.home-section .text-box h5 {
    color: var(--primary);
    text-transform: capitalize;
}

.home-section .img-box {
    position: relative;
    overflow: hidden;
    height: 540px;
    width: 100%;
    float: right;
    border-bottom-right-radius: 350px;
    border-bottom-left-radius: 300px;
    border-bottom: 20px solid var(--white);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
}

.home-section .img-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: auto;
}

.home-section .shape {
    position: absolute;
    top: 0;
    left: -100px;
    z-index: -1;
}

.about-section {
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-section:after {
    content: "";
    height: 700px;
    width: 700px;
    position: absolute;
    z-index: 0;
    top: 200px;
    right: -400px;
    border-radius: 50%;
    border: solid 150px var(--bgLight);
    z-index: -1;
}

.about-section .img-box {
    position: relative;
}

.about-section .img-box img {
    width: 500px;
    border-radius: 0px;
    border: 15px solid var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    transform: rotate(3deg);
    float: right;
    margin-right: 50px;
}

.about-section .img-box .img-2 {
    width: 250px;
    float: left;
    margin-top: -100px;
    transform: rotate(-3deg);
}

.rtl .about-section .img-box img {
    margin-right: 0;
}

.feature-section {
    background: var(--bgLight);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.feature-section .feature-box {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 50px 30px;
    text-align: center;
    height: 100%;
}

.feature-section .feature-box .icon-box {
    margin-bottom: 30px;
}

.feature-section .feature-box .icon-box img {
    width: 64px;
}

.feature-section .feature-box p {
    margin-bottom: 0;
}

.feature-section .alert {
    margin-bottom: 0;
    padding: 0;
}

.feature-section .alert p {
    margin-bottom: 0;
    color: var(--primary);
}

.working-process {
    padding: 100px 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.working-process::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.working-process .process-box {
    display: flex;
    margin-bottom: 50px;
}

.working-process .process-box .icon-box {
    background: var(--white);
    box-shadow: var(--shadow);
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-process .process-box .icon-box i {
    font-size: 24px;
    color: var(--primary);
}

.working-process .process-box .text-box {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.working-process .img-box {
    text-align: center;
    position: relative;
}

.working-process .img-box img {
    width: 300px;
}

.working-process .img-box video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 38px;
}

.rtl .working-process .process-box .text-box {
    padding-left: 0;
    padding-right: 15px;
}

.plan-section {
    padding: 100px 0;
    background: var(--bgLight);
}

.plan-section .plan-box {
    position: relative;
    background: var(--white);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.plan-section .plan-box h1 span {
    font-size: 16px;
    color: var(--fontColor);
    font-family: "Jost", sans-serif;
    font-weight: 400 !important;
}

.plan-section .plan-box .top-area {
    padding: 30px;
}

.plan-section .plan-box ul {
    padding-left: 0;
    list-style: none;
}

.plan-section .plan-box ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--bgLight);
    padding: 0 30px 15px 30px;
}

.plan-section .plan-box ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.plan-section .plan-box ul li i {
    color: var(--primary);
    margin: 0 5px;
    font-size: 16px;
}

.plan-section .plan-box .feature {
    background: var(--primary);
    color: var(--white);
    position: absolute;
    right: -15px;
    top: 38px;
    transform: rotate(-90deg);
    text-transform: uppercase;
    font-size: 14px;
    width: 120px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.plan-section .plan-box .btn-custom {
    border-radius: 0;
    height: 60px;
    padding: 22px 0;
}

.rtl .plan-section .plan-box .feature {
    right: auto;
    left: -15px;
}

.testimonial-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-section:after {
    content: "";
    height: 700px;
    width: 700px;
    position: absolute;
    z-index: 0;
    top: 200px;
    left: -400px;
    border-radius: 50%;
    border: solid 150px var(--bgLight);
    z-index: -1;
}

.testimonial-section .header-text {
    width: 372px;
}

.testimonial-section .header-text h2,
.testimonial-section .header-text h3 {
    line-height: 1.4;
}

.testimonial-section .review-box {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
}

.testimonial-section .review-box .user-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.testimonial-section .review-box .user-box .img {
    width: 80px;
}

.testimonial-section .review-box .user-box .text {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.testimonial-section .review-box .user-box .title {
    font-size: 14px;
}

.testimonial-section .review-box .user-box .organization {
    color: var(--primary);
}

.testimonial-section .review-box .user-box h5 {
    margin-bottom: 10px;
}

.testimonial-section .review-box p {
    font-style: italic;
}

.testimonial-section .review-box .rating {
    margin-bottom: 20px;
}

.reviewIcon {
    color: var(--gold);
}

.testimonial-section .review-box img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    border: 6px solid var(--bgLight);
}

.testimonial-section .testimonials {
    position: relative;
}

.testimonial-section .owl-nav {
    position: absolute;
    width: auto;
    justify-content: space-between;
    display: flex !important;
    left: -438px;
    bottom: 100px;
}

.testimonial-section .owl-nav .owl-next,
.testimonial-section .owl-nav .owl-prev {
    background: var(--primary) !important;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    color: var(--white) !important;
    box-shadow: var(--shadow);
    margin-right: 15px;
    transition: 0.4s;
}

.testimonial-section .owl-nav .owl-next:hover,
.testimonial-section .owl-nav .owl-prev:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.testimonial-section .owl-nav .owl-next span,
.testimonial-section .owl-nav .owl-prev span {
    position: relative;
    top: -2px;
}

.testimonial-section .owl-nav .owl-next {
    margin-right: 0;
}

.testimonial-section .owl-carousel .owl-item {
    padding: 15px;
}

.testimonial-section .owl-dots {
    display: none;
    text-align: center;
}

.testimonial-section .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: var(--borderColor);
    margin: 0 5px;
    border-radius: 10px;
    transition: 0.4s;
}

.testimonial-section .owl-dots .owl-dot.active {
    background: var(--primary);
    width: 20px;
}

.rtl .testimonial-section .testimonials {
    direction: ltr;
}

.rtl .testimonial-section .testimonials .review-box {
    direction: rtl;
}

.rtl .testimonial-section .testimonials .review-box .user-box .text {
    padding-left: 0;
    padding-right: 15px;
}

.rtl .testimonial-section .owl-nav {
    left: auto;
    right: -438px;
}

.blog-section {
    background: var(--bgLight);
    padding: 100px 0;
}

.blog-section .blog-box {
    overflow: hidden;
    height: 100%;
}

.blog-section .blog-box .img-box img {
    z-index: 0;
    width: 100%;
    border-radius: 5px;
}

.blog-section .blog-box .title {
    font-family: "Lato", sans-serif;
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    transition: 0.4s;
}

.blog-section .blog-box .title:hover {
    color: var(--primary);
}

.blog-section .blog-box .date-author {
    color: var(--primary);
    margin-bottom: 15px;
}

.blog-section .blog-box .read-more {
    color: var(--fontColor);
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.3s;
}

.blog-section .blog-box .read-more i {
    font-size: 14px;
    position: relative;
    top: 2px;
    left: 0;
    transition: 0.2s;
}

.blog-section .blog-box .read-more:hover {
    color: var(--primary);
}

.blog-section .blog-box .read-more:hover i {
    left: 5px;
    color: var(--primary);
}

.blog-section .blog-box .text-box {
    position: relative;
    padding-top: 20px;
}

.blog-page {
    background: var(--white);
}

.rtl .blog-section .blog-box .date {
    right: auto;
    left: 30px;
}

.rtl .blog-section .blog-box .read-more i {
    transform: rotate(180deg);
    top: -1px;
}

.blog-details {
    padding: 100px 0;
    background: var(--white);
}

.blog-details .blog-box {
    margin-bottom: 50px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.blog-details .blog-box .text-box {
    position: relative;
    padding: 20px;
}

.blog-details .blog-box .title {
    font-family: "Lato", sans-serif;
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-details .blog-box .date-author {
    color: var(--primary);
    margin-bottom: 15px;
}

.blog-details .blog-box .special-quote {
    background: var(--bgLight);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary);
    font-style: italic;
    color: var(--black);
}

.blog-details #shareBlock {
    margin-bottom: 50px;
    background: var(--white);
    font-size: 24px;
    font-family: "Jost", sans-serif;
    color: var(--black);
    border-radius: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.blog-details #shareBlock h4 {
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
}

.blog-details #shareBlock .btn {
    background: none;
    border: none;
    padding: 5px 8px;
}

.blog-details #shareBlock .btn i {
    font-size: 20px;
}

.blog-details .side-bar .side-box {
    background: var(--white);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.blog-details .side-bar .side-box h4 {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.blog-details .side-bar .side-box .links {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.blog-details .side-bar .side-box .links li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 10px;
}

.blog-details .side-bar .side-box .links li a {
    color: var(--fontColor);
    text-transform: capitalize;
    transition: 0.4s;
}

.blog-details .side-bar .side-box .links li a:hover {
    color: var(--primary);
}

.blog-details .side-bar .side-box .links li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.blog-details .side-bar .side-box .tag-item label {
    background: var(--bgLight);
    margin: 0 10px 10px 0;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--fontColor);
    border: 1px solid var(--bgLight);
    border-radius: 3px;
}

.blog-details .side-bar .side-box .tag-item .btn-check:checked + .btn-primary {
    background: var(--primary) !important;
    color: #fff;
    border: 1px solid var(--primary);
}

.blog-details .side-bar .side-box .tag-item .btn-check:focus + .btn-primary,
.blog-details .side-bar .side-box .tag-item .btn-primary:focus {
    color: #fff;
    background-color: #fff;
    border-color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.blog-details .side-bar .side-box .blog-box {
    display: flex;
    margin-bottom: 30px;
    padding: 0;
    box-shadow: none;
}

.blog-details .side-bar .side-box .blog-box .title {
    font-family: "Lato", sans-serif;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    transition: 0.4s;
}

.blog-details .side-bar .side-box .blog-box .title:hover {
    color: var(--primary);
}

.blog-details .side-bar .side-box .blog-box .date {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--primary);
    margin-bottom: 5px;
}

.blog-details .side-bar .side-box .blog-box .img-box img {
    height: 80px;
    width: 120px;
    border-radius: 5px;
}

.blog-details .side-bar .side-box .blog-box .img-box .category {
    top: 10px;
    right: 10px;
}

.blog-details .side-bar .side-box .blog-box .text-box {
    width: calc(100% - 120px);
    overflow: hidden;
    padding: 0;
    padding-left: 15px;
}

.blog-details .side-bar .side-box .blog-box .text-box .date-author {
    margin-top: 0;
}

.blog-details .side-bar .side-box .blog-box .text-box a {
    margin-bottom: 0;
}

.blog-details .side-bar .side-box .blog-box:last-child {
    margin-bottom: 0;
}

.blog-details .side-bar .search-box {
    padding: 0;
    background: none;
    box-shadow: none;
    margin-bottom: 40px;
}

.blog-details .side-bar .input-group {
    max-width: 100%;
}

.blog-details .side-bar .input-group .form-control {
    border: none;
    height: 54px;
    font-size: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    background: var(--white);
    caret-color: var(--primary);
    border: 1px solid var(--white);
    border-radius: 5px !important;
    transition: 0.4s;
}

.blog-details .side-bar .input-group .form-control:focus {
    color: var(--fontColor);
    background-color: var(--white);
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.blog-details .side-bar .input-group .form-control::-moz-placeholder {
    text-transform: capitalize;
}

.blog-details .side-bar .input-group .form-control:-ms-input-placeholder {
    text-transform: capitalize;
}

.blog-details .side-bar .input-group .form-control::placeholder {
    text-transform: capitalize;
}

.blog-details .side-bar .input-group button {
    height: 46px;
    width: 46px;
    background: var(--primary);
    border-radius: 5px;
    position: absolute;
    right: 4px;
    top: 4px;
    transition: 0.4s;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    z-index: 4;
}

.blog-details .side-bar .input-group button i {
    font-size: 16px;
    color: var(--white);
}

.rtl .blog-details .side-bar .side-box h5 {
    padding-left: 0;
    padding-right: 15px;
}

.rtl .blog-details .side-bar .side-box h5::before {
    left: auto;
    right: 0;
}

.rtl .blog-details .side-bar .side-box .blog-box .text-box {
    padding-left: 0;
    padding-right: 15px;
}

.rtl .blog-details .side-bar .input-group button {
    right: auto;
    left: 2px;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.rtl .blog-details .side-bar .side-box .tag-item label {
    background: var(--bgLight);
    margin: 0 0 10px 10px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--fontColor);
    border: 1px solid var(--bgLight);
    border-radius: 3px;
}

.rtl .blog-details .blog-box .special-quote {
    border-left: none;
    border-right: 2px solid var(--primary);
}

.qr-code-section {
    padding: 100px 0;
}

.qr-code-section .qr-box {
    margin-top: 30px;
    width: 150px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    margin-right: 15px;
}

.qr-code-section .qr-box img {
    width: 100%;
    height: 100%;
}

.qr-code-section .img-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.qr-code-section .img-box .img-1 {
    width: 300px;
    float: right;
}

.qr-code-section .header-text {
    margin-bottom: 30px;
}

.faq-section {
    padding: 100px 0;
    overflow-x: hidden;
    background: var(--white);
}

.faq-section .accordion-item {
    background: var(--white);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    border-radius: 5px;
    border: none;
}

.faq-section .accordion-button {
    background: var(--white);
    border: none;
    border-radius: 5px !important;
    padding-left: 0;
    font-size: 18px;
    font-weight: 500;
    padding: 30px;
    padding-right: 70px;
    font-family: "Jost", sans-serif;
    color: var(--black);
    cursor: pointer;
    transition: 0.4s;
}

.faq-section .accordion-button:focus {
    z-index: 3;
    border-color: var(--borderColor);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .accordion-button::after {
    border-radius: 5px;
    background-image: url(../images/plus.png) !important;
    background-size: contain;
    position: absolute;
    right: 25px;
    height: 16px;
    width: 16px;
    background-position: center;
}

.faq-section .accordion-body {
    padding: 30px;
    padding-top: 0;
    border-radius: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--primary);
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
}

.rtl .faq-section .accordion-button {
    padding-right: 30px;
    padding-left: 70px;
    text-align: right;
}

.rtl .faq-section .accordion-button::after {
    right: auto;
    left: 25px;
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-section .info-wrapper {
    margin-bottom: 100px;
}

.contact-section .info-box {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 50px 30px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-section .info-box:after {
    content: "";
    height: 300px;
    width: 300px;
    position: absolute;
    z-index: 0;
    top: -200px;
    left: -100px;
    border-radius: 50%;
    border: solid 50px var(--bgLight);
    z-index: -1;
}

.contact-section .info-box .icon img {
    width: 48px;
    margin-bottom: 30px;
}

.contact-section .info-box .text p {
    margin-bottom: 0;
}

.contact-section .info-box .text h4 {
    margin-bottom: 10px;
}

.contact-section form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-section form .input-box .form-select,
.contact-section form .input-box .form-control {
    height: 50px;
    border-radius: 5px;
    background-color: var(--bgLight);
    border: 1px solid var(--bgLight);
    padding: 8px;
    padding-left: 15px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--fontColor);
}

.contact-section form .input-box .form-select:focus,
.contact-section form .input-box .form-control:focus {
    color: var(--fontColor);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.contact-section form .input-box .form-select::-moz-placeholder, .contact-section form .input-box .form-control::-moz-placeholder {
    color: var(--fontColor);
}

.contact-section form .input-box .form-select:-ms-input-placeholder, .contact-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--fontColor);
}

.contact-section form .input-box .form-select::placeholder,
.contact-section form .input-box .form-control::placeholder {
    color: var(--fontColor);
}

.contact-section form .input-box .form-select {
    background-image: url(../images/downward-arrow.png);
}

.contact-section form .input-box .form-select option {
    background: var(--white);
    color: var(--fontColor);
}

.contact-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 5px;
}

.contact-section .social-links a {
    background: var(--primary);
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    padding-top: 8px;
    margin-right: 10px;
    text-align: center;
    color: var(--white);
}

.contact-section .social-links a i {
    font-size: 13px;
}

.rtl .contact-section .contact-info .info-box img {
    margin-right: 0;
    margin-left: 15px;
}

.banner-section {
    background: var(--bgLight);
    padding: 170px 0 90px 0;
    position: relative;
    z-index: 1;
}

.banner-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.banner-section h3 {
    text-transform: capitalize;
    color: var(--secondary);
}

.banner-section .breadcrumb-item {
    color: var(--secondary);
    transition: 0.4s;
    text-transform: capitalize;
}

.banner-section .breadcrumb-item:hover, .banner-section .breadcrumb-item.active {
    color: var(--primary);
}

.banner-section .breadcrumb-item:hover a, .banner-section .breadcrumb-item.active a {
    color: var(--primary);
    transition: 0.4s;
}

.banner-section .breadcrumb-item a {
    color: var(--secondary);
}

.banner-section .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: var(--secondary);
    content: var(--bs-breadcrumb-divider, "-");
}

.rtl .banner-section::before {
    transform: rotateY(180deg);
}

.rtl .banner-section .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding: 0 0.5rem;
    content: var(--bs-breadcrumb-divider, "-");
}

.login-section {
    padding: 100px 0;
    position: relative;
}

.login-section form {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 50px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-section form:after {
    content: "";
    height: 300px;
    width: 350px;
    position: absolute;
    bottom: -200px;
    right: -150px;
    border-radius: 50%;
    border: solid 50px var(--bgLight);
    z-index: -1;
}

.login-section form h3 {
    text-transform: capitalize;
    margin-bottom: 0;
}

.login-section form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.login-section form .input-box .form-select,
.login-section form .input-box .form-control {
    height: 55px;
    border-radius: 5px;
    background-color: var(--bgLight);
    border: 1px solid var(--bgLight);
    padding: 10px 15px;
    font-weight: normal;
    font-size: 16px;
    caret-color: var(--primary);
    color: var(--fontColor);
}

.login-section form .input-box .form-select:focus,
.login-section form .input-box .form-control:focus {
    color: var(--fontColor);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.login-section form .input-box .form-select::-moz-placeholder, .login-section form .input-box .form-control::-moz-placeholder {
    color: var(--fontColor);
}

.login-section form .input-box .form-select:-ms-input-placeholder, .login-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--fontColor);
}

.login-section form .input-box .form-select::placeholder,
.login-section form .input-box .form-control::placeholder {
    color: var(--fontColor);
}

.login-section form .input-box .form-select {
    background-image: url(../images/downward-arrow.png);
}

.login-section form .input-box .form-select option {
    background: var(--white);
    color: var(--black);
}

.login-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.login-section form .links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.login-section form .links a {
    color: var(--primary);
}

.login-section form .links a:hover {
    color: var(--primary);
}

.login-section form .bottom {
    margin-top: 20px;
    color: var(--fontColor);
}

.login-section form .bottom a {
    color: var(--primary);
}

.login-section form .bottom a:hover {
    color: var(--primary);
}

.pagination {
    font-size: 14px;
    margin-top: 50px;
}

.pagination .page-link {
    color: var(--fontColor);
    font-family: "Jost", sans-serif;
    font-size: 14px;
    background: var(--white);
    border: 1px solid var(--white);
    box-shadow: var(--shadow);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-link i {
    font-size: 16px;
    padding-top: 2px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.disabled:hover .page-link {
    background: var(--white);
    border-color: var(--white);
    color: var(--fontColor);
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 50px;
}

.rtl .pagination .page-link i {
    transform: rotate(180deg);
}

.footer-section {
    background-color: var(--bgLight);
    position: relative;
    padding-top: 100px;
    z-index: 1;
}

.footer-section .navbar-brand {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-section .navbar-brand img {
    width: 140px;
}

.footer-section .footer-box {
    color: var(--fontColor);
}

.footer-section .footer-box .company-bio {
    color: var(--fontColor);
    margin-bottom: 30px;
}

.footer-section .footer-box img {
    border-radius: 5px;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    max-width: 250px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--fontColor);
    transition: 0.4s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section ul li i {
    display: inline-block;
    width: 20px;
    color: var(--primary);
}

.footer-section h4 {
    text-transform: capitalize;
    color: var(--black);
    position: relative;
    display: inline-block;
    padding-left: 15px;
    font-size: 18px;
    position: relative;
    margin-bottom: 30px;
    margin-top: 18px;
}

.footer-section h4::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--primary);
}

.footer-section .social-links a {
    background: var(--primary);
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    padding-top: 5px;
    margin-right: 5px;
    text-align: center;
    color: var(--white);
}

.footer-section .social-links a i {
    font-size: 13px;
}

.footer-section .social-links a.facebook {
    background: #3b5998;
}

.footer-section .social-links a.twitter {
    background: #55acee;
}

.footer-section .social-links a.linkedin {
    background: #1565c0;
}

.footer-section .social-links a.youtube {
    background: #d71e18;
}

.footer-section .input-group {
    max-width: 250px;
}

.footer-section .input-group .form-control {
    border: none;
    height: 50px;
    font-size: 16px;
    padding: 15px;
    background: var(--white);
    caret-color: var(--primary);
    border: 1px solid var(--white);
    border-radius: 5px !important;
    transition: 0.4s;
}

.footer-section .input-group .form-control:focus {
    color: var(--fontColor);
    background-color: var(--white);
    border-color: var(--white);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.footer-section .input-group .form-control::-moz-placeholder {
    text-transform: capitalize;
}

.footer-section .input-group .form-control:-ms-input-placeholder {
    text-transform: capitalize;
}

.footer-section .input-group .form-control::placeholder {
    text-transform: capitalize;
}

.footer-section .input-group button {
    height: 42px;
    width: 42px;
    position: absolute;
    background: var(--white);
    color: var(--primary);
    right: 4px;
    top: 4px;
    transition: 0.4s;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    border-radius: 50px !important;
    z-index: 4;
}

.footer-section .input-group button i {
    font-size: 16px;
}

.footer-section .copyright {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid var(--borderColor);
    color: var(--fontColor);
}

.footer-section .copyright a {
    color: var(--primary);
    margin: 0 7.5px;
    font-size: 16px;
    transition: 0.4s;
}

.footer-section .copyright a:hover {
    color: var(--primary);
}

.rtl .footer-section .navbar-brand {
    margin-right: 0;
}

.rtl .footer-section .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .footer-section h4 {
    padding-left: 0;
    padding-right: 15px;
}

.rtl .footer-section h4::before {
    left: auto;
    right: 0;
}

.rtl .footer-section .input-group button {
    right: auto;
    left: 4px;
}

.scroll-up {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 12;
}

.scroll-up span {
    height: 45px;
    width: 45px;
    background: var(--primary);
    box-shadow: var(--shadow);
    border-radius: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-up i {
    color: #fff;
}

.rtl .scroll-up {
    right: auto;
    left: 50px;
}

.search-bar {
    background: var(--white);
    background-size: cover;
    box-shadow: var(--shadow2);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.search-bar form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.search-bar form .input-box .form-select,
.search-bar form .input-box .form-control {
    height: 50px;
    border-radius: 5px;
    background-color: var(--bgLight);
    border: 2px solid var(--bgLight);
    padding: 10px 15px;
    font-weight: normal;
    font-size: 16px;
    caret-color: var(--primary);
    color: var(--fontColor);
}

.search-bar form .input-box .form-select:focus,
.search-bar form .input-box .form-control:focus {
    color: var(--fontColor);
    box-shadow: 0 0 0 0rem var(--white);
    border: 2px solid var(--primary);
}

.search-bar form .input-box .form-select::-moz-placeholder, .search-bar form .input-box .form-control::-moz-placeholder {
    color: var(--fontColor);
}

.search-bar form .input-box .form-select:-ms-input-placeholder, .search-bar form .input-box .form-control:-ms-input-placeholder {
    color: var(--fontColor);
}

.search-bar form .input-box .form-select::placeholder,
.search-bar form .input-box .form-control::placeholder {
    color: var(--fontColor);
}

.search-bar form .input-box .form-select {
    background-image: url(../images/downward-arrow.png);
}

.search-bar form .input-box .form-select option {
    background: var(--white);
    color: var(--fontColor);
}

.search-bar form .input-box textarea.form-control {
    height: 150px;
    border-radius: 0;
}

.search-bar .btn-custom {
    height: 50px;
    background: var(--primary);
}

.dashboard-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    overflow: hidden;
}

#sidebar {
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 300px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1031;
    transition: 0.4s;
}

#sidebar.active {
    left: -310px;
}

#sidebar::-webkit-scrollbar {
    width: 5px;
    height: 100%;
}

#sidebar::-webkit-scrollbar-track {
    background: var(--white);
}

#sidebar::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

#sidebar .sidebar-top {
    padding: 15px 20px;
    border-bottom: 1px solid var(--borderColor);
    position: relative;
}

#sidebar .sidebar-top .navbar-brand img {
    width: 180px;
}

#sidebar .sidebar-top .sidebar-toggler {
    position: absolute;
    right: 20px;
    top: 15px;
    background: var(--primary);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50px;
}

#sidebar .sidebar-top .sidebar-toggler i {
    font-size: 16px;
}

#sidebar .sidebar-top .sidebar-toggler:focus {
    box-shadow: 0 0 0 0rem;
}

#sidebar ul.main {
    margin-top: 20px;
    max-height: 89vh;
}

#sidebar ul.main::-webkit-scrollbar {
    width: 5px;
    height: 100%;
}

#sidebar ul.main::-webkit-scrollbar-track {
    background: var(--white);
}

#sidebar ul.main::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#sidebar ul.main::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

#sidebar ul {
    list-style: none;
    padding-left: 0;
    padding: 20px;
    padding-top: 0;
    overflow-y: auto;
}

#sidebar ul li {
    margin-bottom: 10px;
}

#sidebar ul li a {
    position: relative;
    color: var(--fontColor);
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    display: block;
    border-radius: 50px;
    padding: 10px 15px 10px 20px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    transition: 0.4s;
}

#sidebar ul li a i {
    width: 30px;
    text-align: left;
    position: relative;
    color: var(--primary);
    top: 0;
    transition: 0.4s;
}

#sidebar ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 96%;
    border-radius: 10px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: -24px;
    margin: auto;
    transition: 0.4s;
}

#sidebar ul li a.active, #sidebar ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

#sidebar ul li a.active i, #sidebar ul li a:hover i {
    color: var(--white);
}

#sidebar ul li a.active::before, #sidebar ul li a:hover::before {
    width: 8px;
}

#sidebar .dropdownCollapsible ul {
    height: 100%;
    padding: 0;
    overflow: initial;
    background: var(--bgLight);
    margin-top: 10px;
    margin-left: 20px;
    border-radius: 22px;
}

#sidebar .dropdownCollapsible ul li a::before {
    width: 0;
}

.rtl #sidebar {
    left: auto;
    right: 0;
}

.rtl #sidebar.active {
    right: -310px;
}

.rtl #sidebar ul li a i {
    text-align: right;
}

.rtl #sidebar ul li a::before {
    left: auto;
    right: -24px;
}

.rtl #sidebar .sidebar-top .sidebar-toggler {
    right: auto;
    left: 20px;
}

.rtl #sidebar .wallet-box h5 span {
    float: left;
}

.rtl #sidebar .wallet-box .tag {
    right: auto;
    left: 20px;
}

.rtl #sidebar .wallet-box ul li span {
    float: left;
}

#content {
    width: calc(100% - 300px);
    margin-left: auto;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

#content .overlay {
    background: var(--bgLight);
    padding: 15px 0;
    min-height: 100vh;
}

#content.active {
    width: 100% !important;
}

#content .dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#content .dashboard-heading h2,
#content .dashboard-heading h3 {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 36px;
}

#content .dashboard-heading .btn-custom {
    width: auto;
    height: auto;
    padding: 15px 20px;
}

#content .navbar {
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 10px;
    height: 80px;
    margin: 15px 20px;
    border-radius: 10px;
}

#content .navbar .navbar-brand {
    display: none;
}

#content .navbar .sidebar-toggler {
    position: relative;
    background: #e5e5e5;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

#content .navbar .sidebar-toggler i {
    font-size: 16px;
}

#content .navbar .sidebar-toggler:focus {
    box-shadow: 0 0 0 0rem;
}

#content .navbar .navbar-text {
    display: flex;
}

#content .navbar .navbar-text .btn-custom {
    width: 120px;
    height: 40px;
    padding: 9px;
}

#content .navbar .profile {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#content .navbar .profile img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

#content .navbar .user-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
}

#content .navbar .user-panel:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    top: 54px;
}

#content .navbar .user-panel .user-dropdown {
    background: var(--white);
    width: 200px;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 64px;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
    z-index: 3;
}

#content .navbar .user-panel .user-dropdown li {
    border-bottom: 1px solid var(--bgLight);
    list-style: none;
}

#content .navbar .user-panel .user-dropdown li a {
    background: var(--white);
    color: var(--fontColor);
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    display: flex;
    transform: 0.4s;
}

#content .navbar .user-panel .user-dropdown li a:active, #content .navbar .user-panel .user-dropdown li a:focus, #content .navbar .user-panel .user-dropdown li a:hover {
    background: var(--bgLight);
}

#content .navbar .user-panel .user-dropdown li a i {
    color: var(--primary);
    margin: 0 5px;
    margin-top: -2px;
    font-size: 15px;
}

#content .navbar .notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

#content .navbar .notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 54px;
}

#content .navbar .notification-panel .dropdown-toggle {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    position: relative;
    margin-right: 15px;
    padding-top: 4px;
}

#content .navbar .notification-panel .dropdown-toggle i {
    color: var(--primary);
    font-size: 24px;
}

#content .navbar .notification-panel .dropdown-toggle::after {
    display: none;
}

#content .navbar .notification-panel .dropdown-toggle .count {
    background: var(--primary);
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    color: var(--white);
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 11px;
    font-weight: 400;
    padding-top: 1px;
}

#content .navbar .notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 278px;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar {
    width: 0;
    height: 100%;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
    background: var(--black);
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--black);
    border-radius: 5px;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

#content .navbar .notification-panel .notification-dropdown {
    background: var(--white);
    box-shadow: var(--shadow);
    width: 290px;
    max-height: 324px;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: -40px;
    top: 64px;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
    z-index: 10;
}

#content .navbar .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--bgLight);
}

#content .navbar .notification-panel .notification-dropdown li a {
    padding: 10px 10px 10px 15px;
    display: flex;
    color: var(--fontColor);
    white-space: normal;
    transition: 0.4s;
}

#content .navbar .notification-panel .notification-dropdown li a:active, #content .navbar .notification-panel .notification-dropdown li a:focus, #content .navbar .notification-panel .notification-dropdown li a:hover {
    background: var(--bgLight);
}

#content .navbar .notification-panel .notification-dropdown li a i {
    background: var(--primary);
    border-radius: 2px;
    margin-top: 5px;
    padding: 4px;
    width: 30px;
    height: 30px;
    text-align: center;
    margin-right: 10px;
    color: var(--white);
    font-size: 16px;
}

#content .navbar .notification-panel .notification-dropdown li a .text {
    width: calc(100% - 40px);
}

#content .navbar .notification-panel .notification-dropdown li a .text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

#content .navbar .notification-panel .notification-dropdown li a .text .time {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
}

#content .navbar .notification-panel .notification-dropdown .clear-all {
    background: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    border-top: 1px solid var(--bgLight);
    text-align: center;
    padding: 10px 10px 11px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#content .navbar .notification-panel .notification-dropdown .clear-all a {
    color: var(--primary);
    transition: 0.4s;
}

#content .navbar .notification-panel .notification-dropdown .clear-all a:hover {
    color: var(--primary);
}

#content .main {
    padding: 8px;
}

#content .dashboard-box-wrapper .box:nth-child(1) .dashboard-box i {
    color: #ff6379;
}

#content .dashboard-box-wrapper .box:nth-child(2) .dashboard-box i {
    color: #ffce00;
}

#content .dashboard-box-wrapper .box:nth-child(3) .dashboard-box i {
    color: #59c8ff;
}

#content .dashboard-box-wrapper .box:nth-child(4) .dashboard-box i {
    color: var(--primary);
}

#content .dashboard-box {
    background-color: var(--white);
    box-shadow: var(--shadow2);
    position: relative;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

#content .dashboard-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: -1;
}

#content .dashboard-box h3 {
    margin-bottom: 0;
    font-size: 36px;
}

#content .dashboard-box i {
    font-size: 32px;
    color: var(--primary);
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
}

#content .table-responsive {
    box-shadow: var(--shadow2);
    border-radius: 10px;
}

#content .table {
    color: var(--fontColor);
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    border-radius: 10px;
}

#content .table tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: var(--white);
    color: var(--fontColor);
}

#content .table tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--white);
    color: var(--fontColor);
}

#content .table thead {
    background: var(--primary);
    background: var(--bgLight);
    color: var(--black);
    font-weight: 600;
    text-transform: capitalize;
}

#content .table tbody {
    border: none;
}

#content .table tr {
    border: none;
}

#content .table tr th {
    font-weight: 600;
    border: none !important;
    vertical-align: middle;
    padding: 15px 20px;
    font-size: 16px;
}

#content .table tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#content .table tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#content .table tr td {
    padding: 20px;
    color: var(--fontColor);
    vertical-align: middle;
    border: none !important;
    border-bottom: 1px solid var(--bgLight) !important;
    margin: 5px !important;
    font-size: 16px;
}

#content .table tr td span.currency {
    display: flex;
}

#content .table tr td span.currency img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#content .table tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#content .table tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#content .table .sidebar-dropdown-items .dropdown-menu {
    border-radius: 5px;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow2);
}

#content .table .sidebar-dropdown-items .dropdown-item {
    color: var(--fontColor);
}

#content .table .sidebar-dropdown-items .dropdown-item:hover,
#content .table .sidebar-dropdown-items .dropdown-item:active {
    color: var(--white);
    text-decoration: none;
    background-color: var(--primary);
}

#content .table .sidebar-dropdown-items .dropdown-item:hover i,
#content .table .sidebar-dropdown-items .dropdown-item:active i {
    color: var(--white) !important;
}

#content .table .sidebar-dropdown-items .dropdown-item i {
    color: var(--primary);
    width: 22px;
}

#content .table .sidebar-dropdown-items .dropdown-toggle {
    background: var(--primary);
    height: 30px;
    width: 30px;
    border-radius: 50px;
    color: var(--white);
    position: relative;
    padding: 0px;
    transition: 0.4s;
}

#content .table .sidebar-dropdown-items .dropdown-toggle::after {
    display: none;
}

.rtl #content {
    margin-left: 0;
    margin-right: auto;
}

.rtl #content .navbar .navbar-brand {
    margin-right: 0;
}

.rtl #content .navbar .notification-panel .dropdown-toggle {
    margin-right: 0;
    margin-left: 15px;
}

.rtl #content .navbar .notification-panel .dropdown-toggle .count {
    right: auto;
    left: 1px;
}

.rtl #content .navbar .user-panel .user-dropdown {
    right: auto;
    left: 0;
}

.rtl #content .navbar .notification-panel .notification-dropdown {
    right: auto;
    left: -62px;
}

.rtl #content .navbar .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 10px;
}

.rtl #content .search-bar .input-group button {
    left: auto;
    right: 0;
    padding-left: 0;
    padding-right: 19px;
}

.rtl #content .search-bar .input-group .form-control {
    padding-left: 20px;
    padding-right: 50px;
}

.rtl #content .table tr td.company-logo img {
    margin-right: 0;
    margin-left: 15px;
}

.rtl #content .table tr th:first-child,
.rtl #content .table tr th:last-child {
    border-radius: 0;
}

.rtl #content .dashboard-box {
    background-position: left;
}

.rtl #content .dashboard-box i {
    right: auto;
    left: 50px;
}

.rtl #content .coin-box-wrapper .input-group button {
    margin-left: 0;
    margin-right: 5px;
}

.profile-setting .sidebar-wrapper {
    background: var(--white);
    box-shadow: var(--shadow2);
    border-radius: 10px;
    padding: 20px;
}

.profile-setting .sidebar-wrapper .profile {
    display: flex;
    align-items: center;
}

.profile-setting .sidebar-wrapper .profile .img {
    position: relative;
    margin-right: 20px;
    height: 120px;
    width: 120px;
}

.profile-setting .sidebar-wrapper .profile .img img {
    border-radius: 120px;
}

.profile-setting .sidebar-wrapper .profile .text {
    width: calc(100% - 120px);
}

.profile-setting .sidebar-wrapper .profile .name {
    font-size: 20px;
    margin-bottom: 5px;
}

.profile-setting .sidebar-wrapper .upload-img {
    padding: 8px 12px;
    border-radius: 50px;
    position: absolute;
    bottom: 10px;
    right: 0;
    background: var(--primary);
    transition: 0.4s;
    color: var(--white);
}

.profile-setting .sidebar-wrapper .upload-img i {
    font-size: 16px;
}

.profile-setting .sidebar-wrapper .upload-img:hover {
    color: var(--white);
}

.profile-setting .sidebar-wrapper .upload-img input {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    cursor: pointer !important;
}

.profile-setting .sidebar-wrapper .profile-navigator {
    margin-top: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab {
    text-align: left;
    color: var(--fontColor);
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    display: block;
    border-radius: 50px;
    padding: 10px 0 10px 0;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    transition: 0.4s;
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab i {
    width: 30px;
    text-align: left;
    position: relative;
    color: var(--fontColor);
    top: 0;
    transition: 0.4s;
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab.active, .profile-setting .sidebar-wrapper .profile-navigator button.tab:hover {
    color: var(--primary);
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab.active i, .profile-setting .sidebar-wrapper .profile-navigator button.tab:hover i {
    color: var(--primary);
}

.profile-setting .sidebar-wrapper .profile-navigator button.tab.active::before, .profile-setting .sidebar-wrapper .profile-navigator button.tab:hover::before {
    width: 8px;
}

.profile-setting .content {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow2);
    opacity: 0;
    visibility: hidden;
    display: none;
}

.profile-setting .content.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.profile-setting form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.profile-setting form .input-box .form-select,
.profile-setting form .input-box .form-control {
    height: 50px;
    border-radius: 5px;
    background-color: var(--bgLight);
    border: 2px solid var(--bgLight);
    padding: 10px;
    padding-left: 15px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--fontColor);
}

.profile-setting form .input-box .form-select:focus,
.profile-setting form .input-box .form-control:focus {
    color: var(--fontColor);
    box-shadow: 0 0 0 0rem var(--white);
    border: 2px solid var(--primary);
}

.profile-setting form .input-box .form-select::-moz-placeholder, .profile-setting form .input-box .form-control::-moz-placeholder {
    color: var(--fontColor);
}

.profile-setting form .input-box .form-select:-ms-input-placeholder, .profile-setting form .input-box .form-control:-ms-input-placeholder {
    color: var(--fontColor);
}

.profile-setting form .input-box .form-select::placeholder,
.profile-setting form .input-box .form-control::placeholder {
    color: var(--fontColor);
}

.profile-setting form .input-box .form-select {
    background-image: url(../images/downward-arrow.png);
}

.profile-setting form .input-box .form-select option {
    background: var(--white);
    color: var(--fontColor);
}

.profile-setting form .input-box textarea.form-control {
    height: 150px;
    border-radius: 5px;
}


.profile-setting .select2-container--default.select2-container--focus .select2-selection--multiple,
.profile-setting .select2-container--default .select2-selection--multiple {
    border: none;
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 5px;
    background-color: var(--bgLight);
}

.profile-setting .select2-container .select2-search--inline .select2-search__field {
    /*min-height: 50px;*/
    width: 100% !important;
    border-radius: 5px;
    background-color: var(--bgLight);
    background-image: url(../images/downward-arrow.png);
    background-repeat: no-repeat;
    background-position: center right;
    border: 2px solid var(--bgLight);
    padding: 13px 15px 33px 15px;
    margin: 0;
    font-weight: 400;
    caret-color: var(--primary);
    color: var(--fontColor);
    font-family: "Jost", sans-serif;
}

.profile-setting .select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0;
    position: absolute;
    top: 8px;
    left: 4px;
    /*display: flex;*/
}

.profile-setting form .attach-file {
    position: relative;
}

.profile-setting form .attach-file span.prev {
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    width: 105px;
    background: var(--primary);
    text-align: center;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    padding: 7px;
    border-radius: 5px;
}

.profile-setting .input-group-btn .btn-danger {
    width: 20px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 3;
}

.profile-setting .alert {
    background: var(--bgLight);
    border-radius: 5px;
}

.profile-setting .alert i {
    color: var(--primary);
}

.rtl .profile-setting .sidebar-wrapper .profile .img {
    margin-right: 0;
    margin-left: 20px;
}

.rtl .profile-setting .sidebar-wrapper .sidebar a i {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .profile-setting .sidebar-wrapper .upload-img {
    right: auto;
    left: 0;
}

.rtl .profile-setting .sidebar-wrapper .profile-navigator button.tab {
    text-align: right;
}

.rtl .profile-setting .sidebar-wrapper .profile-navigator button.tab i {
    text-align: right;
}

.rtl .profile-setting form .attach-file span.prev {
    left: auto;
    right: 0;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.support-ticket-section {
    background: var(--bgLight);
}

.support-ticket-section .inbox-wrapper {
    background: var(--white);
    box-shadow: var(--shadow2);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.support-ticket-section .inbox-wrapper .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid var(--bgLight);
}

.support-ticket-section .inbox-wrapper .top-bar .user {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    margin-right: 10px;
}

.support-ticket-section .inbox-wrapper .top-bar .name {
    font-family: "Jost", sans-serif;
    font-size: 18px;
}

.support-ticket-section .inbox-wrapper .top-bar .close-btn {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background: var(--primary);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: 0.4s;
}

.support-ticket-section .inbox-wrapper .top-bar .close-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.support-ticket-section .inbox-wrapper .chats {
    padding: 30px 15px 10px 15px;
    height: 395px;
    overflow-y: auto;
    position: relative;
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar {
    width: 4px;
    height: 100%;
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar-track {
    background: var(--white);
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 5px;
}

.support-ticket-section .inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.support-ticket-section .inbox-wrapper .chats .chat-box {
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .img {
    margin-left: 10px;
    min-width: 35px;
    min-height: 35px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .img img {
    width: 35px;
    height: 35px;
    border-radius: 35px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text {
    padding: 10px;
    background: var(--bgLight);
    border-radius: 3px;
    float: right;
    margin-bottom: 5px;
    max-width: 300px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text p {
    margin-bottom: 0;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .name {
    text-align: right;
    margin-bottom: 5px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .time {
    font-size: 12px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .attachment {
    display: block;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .attachment img {
    max-width: 100px;
    border-radius: 3px;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .file {
    color: var(--primary);
    margin-bottom: 5px;
    text-align: right;
}

.support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .file a {
    color: var(--primary);
    display: inline-block;
    margin-right: 5px;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side {
    justify-content: start;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .img {
    margin-left: 0;
    margin-right: 10px;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .text {
    float: left;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .time {
    text-align: left;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .file {
    text-align: left;
}

.support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .name {
    text-align: left;
}

.support-ticket-section .inbox-wrapper .img-preview {
    background: var(--bgLight);
    display: inline-block;
    position: relative;
    left: 0px;
    bottom: 5px;
    max-width: 100px;
    border-radius: 3px;
}

.support-ticket-section .inbox-wrapper .img-preview img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.support-ticket-section .inbox-wrapper .img-preview .img-info {
    padding: 0 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.support-ticket-section .inbox-wrapper .img-preview .img-info span {
    font-size: 12px;
}

.support-ticket-section .inbox-wrapper .img-preview .img-info span.size {
    color: var(--gray);
    font-size: 10px;
}

.support-ticket-section .inbox-wrapper .img-preview button.delete {
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--bgLight);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    border: none;
}

.support-ticket-section .inbox-wrapper .img-preview button.delete i {
    font-size: 14px;
    color: var(--secondary);
    padding-bottom: 3px;
}

.support-ticket-section .inbox-wrapper .typing-area {
    background: var(--white);
    border-top: 1px solid var(--bgLight);
    padding: 20px;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group {
    border-radius: 3px;
    overflow: hidden;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .form-control {
    height: 45px;
    background: var(--bgLight);
    border-radius: 0;
    border: none;
    font-size: 13px;
    color: var(--gray);
    padding: 7px;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .form-control:focus {
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    border: none;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn {
    position: relative;
    background: var(--bgLight);
    border: none;
    width: 40px;
    height: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    text-align: center;
    color: var(--gray);
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn i {
    transition: 0.4s;
    position: relative;
    color: var(--primary);
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn:hover i {
    color: var(--primary);
}

.support-ticket-section .inbox-wrapper .typing-area .input-group .send-file-btn .form-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group button {
    width: 50px;
    border: none;
    background: var(--primary);
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.support-ticket-section .inbox-wrapper .typing-area .input-group button i {
    color: var(--white);
    font-size: 16px;
    transition: 0.4s;
}

.rtl .support-ticket-section .inbox-wrapper .top-bar .user {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .img {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text {
    float: left;
}

.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .text,
.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .time,
.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .name,
.rtl .support-ticket-section .inbox-wrapper .chats .chat-box .text-wrapper .file {
    text-align: left;
}

.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .img {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .text {
    float: right;
}

.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .text,
.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .time,
.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .name,
.rtl .support-ticket-section .inbox-wrapper .chats .opposite-side .text-wrapper .file {
    text-align: right;
}

.not-found {
    height: 100vh;
}

.not-found .img-box {
    max-width: 400px;
    margin: auto;
    margin-bottom: 50px;
}

.modal .modal-content {
    background: var(--white);
    border-radius: 5px;
    border: none;
}

.modal .modal-content .modal-header {
    border-bottom: 1px solid var(--bgLight);
}

.modal .modal-content .modal-header .close-btn i {
    color: var(--fontColor);
    transition: 0.4s;
}

.modal .modal-content .modal-header .close-btn i:hover {
    color: var(--primary);
}

.modal .modal-content .modal-footer {
    border-top: 1px solid var(--bgLight);
}

.modal .btn-custom {
    height: auto;
    width: auto;
    padding: 15px 20px;
}

.modal form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.modal form .input-box .form-select,
.modal form .input-box .form-control {
    height: 50px;
    border-radius: 5px;
    background-color: var(--bgLight);
    border: 2px solid var(--bgLight);
    padding: 8px;
    padding-left: 15px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--fontColor);
}

.modal form .input-box .form-select:focus,
.modal form .input-box .form-control:focus {
    color: var(--fontColor);
    box-shadow: 0 0 0 0rem var(--white);
    border: 2px solid var(--primary);
}

.modal form .input-box .form-select::-moz-placeholder, .modal form .input-box .form-control::-moz-placeholder {
    color: var(--fontColor);
}

.modal form .input-box .form-select:-ms-input-placeholder, .modal form .input-box .form-control:-ms-input-placeholder {
    color: var(--fontColor);
}

.modal form .input-box .form-select::placeholder,
.modal form .input-box .form-control::placeholder {
    color: var(--fontColor);
}

.modal form .input-box .form-select {
    background-image: url(../images/downward-arrow.png);
}

.modal form .input-box .form-select option {
    background: var(--white);
    color: var(--fontColor);
}

.modal form .input-box textarea.form-control {
    height: 150px;
    border-radius: 5px;
}

@media (max-width: 1199px) {
    .home-section .shape {
        display: none;
    }

}

@media (max-width: 991px) {
    .navbar {
        background: var(--white);
    }

    .navbar .navbar-text {
        position: absolute;
        right: 70px;
        top: -3px;
    }

    .navbar .nav-item .nav-link {
        padding: 13px 0px 7px;
    }

    .navbar .nav-item .nav-link::before {
        width: 0;
    }

    .navbar .notification-panel .notification-dropdown {
        left: auto;
        right: -95px;
    }

    .navbar .user-panel .user-dropdown {
        left: auto;
        right: -55px;
    }

    .rtl .navbar .navbar-text {
        right: auto;
        left: 70px;
    }

    .rtl .navbar .notification-panel .notification-dropdown {
        right: auto;
        left: -95px;
    }

    .rtl .navbar .user-panel .user-dropdown {
        right: auto;
        left: -55px;
    }

    .home-section {
        height: 100%;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .newsletter-section,
    .get-appointment-section {
        background-size: cover;
        padding: 150px 0;
        text-align: center;
    }

    .newsletter-section .img-box,
    .get-appointment-section .img-box {
        display: none;
    }

    .newsletter-section .input-group,
    .get-appointment-section .input-group {
        margin: auto;
    }

    #content .navbar .navbar-text {
        position: absolute;
        right: 15px;
        top: 12px;
    }

    #content .navbar .notification-panel .notification-dropdown {
        left: auto;
        right: -55px;
    }

    #content .navbar .user-panel .user-dropdown {
        left: auto;
        right: -15px;
    }

    .rtl #content .navbar .navbar-text {
        right: auto;
        left: 15px;
    }

    .rtl #content .navbar .notification-panel .notification-dropdown {
        right: auto;
        left: -55px;
    }

    .rtl #content .navbar .user-panel .user-dropdown {
        right: auto;
        left: -15px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    .home-section {
        height: 100%;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .home-section .text-box h1 {
        font-size: 42px;
    }

    .home-section .img-box {
        height: 400px;
    }

    .about-section .img-box img {
        margin-right: 0;
    }

    .testimonial-section .client-img .shape {
        right: 0;
    }

    .login-section {
        padding-top: 50px;
    }

    .login-section form {
        padding: 20px;
    }

    .login-section form .bottom,
    .login-section form .links {
        font-size: 16px;
    }

    .login-section .img-box {
        display: none;
    }

    .qr-code-section {
        text-align: center;
    }

    .qr-code-section .qr-box {
        margin-top: 30px;
        margin: auto;
    }

    #sidebar {
        left: -310px;
        position: fixed;
        overflow-y: auto;
    }

    #sidebar.active {
        left: 0;
    }

    #sidebar .level-box {
        display: none;
    }

    .rtl #sidebar {
        right: -310px;
    }

    .rtl #sidebar.active {
        right: 0;
    }

    #sidebar ul {
        overflow: initial;
        height: auto;
    }

    #sidebar ul.main {
        overflow: initial;
        height: auto;
        max-height: initial;
        padding-bottom: 20px;
    }

    #content {
        width: 100%;
    }

    #content .dashboard-heading h2,
    #content .dashboard-heading h3 {
        font-size: 24px;
    }

    #content .table-responsive {
        border-radius: 10px;
    }

    #content .table thead {
        display: none;
    }

    #content .table tbody tr {
        display: block;
    }

    #content .table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 10px 15px;
        font-weight: 300;
    }

    #content .table tbody tr td::before {
        content: attr(data-label);
        color: var(--black);
        font-weight: 600;
    }

    #content .table tbody > tr:nth-of-type(even) > * {
        --bs-table-accent-bg: var(--bgLight2) !important;
    }

    #content .table tr td:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #content .table tr td:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar .navbar-brand img {
        width: 52px;
    }

    .home-section .img-box {
        height: 275px;
    }

    .blog-details #shareBlock {
        display: block;
    }

    .blog-details #shareBlock .btn {
        padding: 5px;
    }

    .testimonial-section .header-text {
        width: 100%;
    }

    .testimonial-section .review-box {
        padding: 15px;
    }
}

.login-section .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.0rem 0.0rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid var(--primary);
    border-radius: 0.25rem;
}

#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
    fill: #fff !important;
}


[v-cloak] {
    display: none;
}


.btn-modify {
    background: var(--primary);
    font-family: "Jost", sans-serif;
    text-align: center;
    text-transform: capitalize;
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    height: auto;
    width: auto;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 5px;
    transition: 0.4s;
}

.btn2 {
    background: var(--secondary);
}

a:hover {
    color: #fff;
}

.bd-callout-primary {
    border-left-color: var(--primary) !important;
}

.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid whitesmoke;
    border-left-width: 0.25rem;
    border-radius: 0.25rem;
    background: #fff;
}

.fa-3x {
    font-size: 13px !important;
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.payout .form-check-input {
    display: none;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}

.main-content .card-body form label {
    font-size: 14px;
}

.payout input:checked ~ .form-check-label {
    opacity: 1;
    border-color: var(--primary);
}

.payout label.form-check-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all .2s ease;
}

.payout label.form-check-label img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--primary);
}

.plan-section {
    padding: 100px 0;
    background: var(--bgLight);
}

.plan-section .header-text {
    margin-bottom: 50px;
}

.plan-section .nav-pills {
    background: var(--white);
    box-shadow: var(--shadow);
    display: inline-block;
    border-radius: 100px;
    margin-bottom: 30px;
    padding: 0 6px;
}

.plan-section .nav-pills .btn-custom {
    width: auto;
    height: auto;
    padding: 12px 25px;
    margin: 8px 2px;
    background: var(--bgLight);
    color: var(--black);
    font-weight: 500;
}

.plan-section .nav-pills .btn-custom.active {
    background: var(--primary);
    color: var(--white);
}

.plan-section .plan-box {
    position: relative;
    background: var(--white);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.plan-section .plan-box h1 span {
    font-size: 16px;
    color: var(--fontColor);
    font-family: "Jost", sans-serif;
    font-weight: 400 !important;
}

.plan-section .plan-box .top-area {
    padding: 30px;
}

.plan-section .plan-box .text-primary {
    color: var(--primary) !important;
    font-weight: 500;
}

.plan-section .plan-box ul {
    padding-left: 0;
    list-style: none;
}

.plan-section .plan-box ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--bgLight);
    padding: 0 30px 15px 30px;
}

.plan-section .plan-box ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.plan-section .plan-box ul li i {
    color: var(--primary);
    margin: 0 5px;
    font-size: 16px;
}

.plan-section .plan-box .feature {
    background: var(--primary);
    color: var(--white);
    position: absolute;
    right: -15px;
    top: 38px;
    transform: rotate(-90deg);
    text-transform: uppercase;
    font-size: 14px;
    width: 120px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.plan-section .plan-box .btn-custom {
    border-radius: 0;
    height: 60px;
}

.rtl .plan-section .plan-box .feature {
    right: auto;
    left: -15px;
}

.input-group-prepend.width-50 {
    width: 53% !important;
}

.color-fff {
    background-color: #FFFFFF !important;
}

.color-primary {
    color: var(--primary) !important;
}

.selectgroup {
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.w-100 {
    width: 100% !important;
}

.selectgroup-item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}

.selectgroup-item + .selectgroup-item {
    margin-left: -1px;
}

input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.selectgroup-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.selectgroup-item:not(:first-child) .selectgroup-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.selectgroup-button {
    background-color: #fdfdff;
    border-color: #e4e6fc;
    border-width: 1px;
    border-style: solid;
    display: block;
    text-align: center;
    padding: 0 1rem;
    height: 35px;
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 13px;
    min-width: 2.375rem;
    line-height: 36px;
}

.selectgroup-input:focus + .selectgroup-button, .selectgroup-input:checked + .selectgroup-button {
    background-color: var(--primary);
    color: #fff;
    z-index: 1;
}

.selectgroup-item:not(:last-child) .selectgroup-button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.image-input {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #f0f8ff;
}

.image-input #image-label, .image-input #favicon-label, .image-input #adminLogo-label, .image-input #meta_image-label, .image-input #instruction_image-label, .image-input #form_image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 100px;
    z-index: 5;
    opacity: 0.3;
    cursor: pointer;
    background-color: #fff;
    font-size: 25px;
    border: 2px dashed #000;
    margin: auto;
    text-align: center;
}

.image-input #image, .image-input #adminLogo, .image-input #favicon, .image-input #meta_image, .image-input #instruction_image, .image-input #form_image {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}

.job-section .filter-area .input-box .select2 {
    width: calc(100% - 0px) !important;
    margin-left: auto;
}

.job-section .filter-area .input-box .select2-container--default .select2-selection--single {
    height: 45px;
    background: var(--bgLight);
    border: 1px solid var(--bgLight);
}

.job-section .filter-area .input-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    padding-left: 15px;
    color: var(--fontColor);
}

/*.color-dynamic {*/
/*	background-color: #dddddd;*/
/*}*/

.idance .classes-details ul.timetable {
    margin: 0 0 22px;
    padding: 0;
}

.idance .classes-details ul.timetable li {
    list-style: none;
    font-size: 15px;
    color: #7f7f7f;
}

idance .timetable {
    max-width: 900px;
    margin: 0 auto;
}

.idance .timetable-item {
    border: 1px solid #d8e3eb;
    padding: 15px;
    margin-top: 20px;
    position: relative;
    display: block;
}

@media (min-width: 768px) {
    .idance .timetable-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.idance .timetable-item-img {
    overflow: hidden;
    height: 100px;
    display: none;
}

.idance .timetable-item-img img {
    height: 100%;
}

@media (min-width: 768px) {
    .idance .timetable-item-img {
        display: block;
    }
}

.idance .timetable-item-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .idance .timetable-item-main {
        margin-top: 0;
        padding-left: 15px;
    }
}

.idance .timetable-item-time {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
}

.idance .timetable-item-name {
    font-size: 14px;
    margin-bottom: 19px;
}

.idance .btn-book {
    padding: 6px 30px;
    width: 100%;
}

.idance .timetable-item-like {
    position: absolute;
    top: 3px;
    right: 3px;
    font-size: 20px;
    cursor: pointer;
}

.idance .timetable-item-like .fa-heart-o {
    display: block;
    color: #b7b7b7;
}

.idance .timetable-item-like .fa-heart {
    display: none;
    color: #f15465;
}

.idance .timetable-item-like:hover .fa-heart {
    display: block;
}

.idance .timetable-item-like:hover .fa-heart-o {
    display: none;
}

.idance .timetable-item-like-count {
    font-size: 12px;
    text-align: center;
    padding-top: 5px;
    color: #7f7f7f;
}

.idance .timetable-item-book {
    width: 200px;
}

.idance .timetable-item-book .btn {
    width: 100%;
}

.idance .schedule .nav-tabs {
    border-bottom: 2px solid var(--primary);
}

.idance .schedule .nav-link {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #3d3d3d;
    font-weight: 500;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    border-radius: 2px 2px 0 0;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .idance .schedule .nav-link {
        font-size: 16px;
    }

    .custom-offcanvas {
        width: 400px;
    }
}

.idance .schedule .nav-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.idance .schedule .nav-link.active:focus {
    border-color: var(--primary);
}

.idance .schedule .nav-link:hover:not(.active) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.idance .schedule .tab-pane {
    padding-top: 10px;
}

.custom-badge {
    padding: 5px 9px !important;
}

.custom-badge {
    display: inline-block;
    color: #fff;
    padding: 4px 10px;
    font-size: 75%;
    text-align: center;
    vertical-align: baseline;
    border-radius: 2px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.color-info {
    background-color: #2c9fd3 !important;
}

.color-base {
    background-color: var(--primary) !important;
}

.menu-details-box {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.menu-details-box .img-box {
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 15px;
}

.menu-details-box .text-box {
    padding: 15px;
    text-transform: capitalize;
}

.menu-details-box .text-box h5,
.menu-details-box .text-box p {
    margin-bottom: 5px;
}

.menu-details-box .text-box .price {
    color: var(--primary);
}

.menu-details-box .quantity {
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 100px;
    width: 120px;
    border: 2px solid var(--bgLight);
    overflow: hidden;
}

.menu-details-box .quantity .btn-inc-dec {
    width: 40px;
    height: 40px;
    border-radius: 0px;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
}

.menu-details-box .quantity .form-control {
    width: 40px;
    height: 40px;
    margin: 0 0px;
    background: var(--white);
    border-radius: 0px;
    border: none;
    color: var(--fontColor);
    text-align: center;
    font-size: 12px;
}

.menu-details-box .quantity .form-control::-moz-placeholder {
    color: var(--white);
}

.menu-details-box .quantity .form-control::placeholder {
    color: var(--white);
}

.menu-details-box .quantity .form-control:focus {
    box-shadow: 0 0 0 0rem var(--black);
}

.menu-details-box .tag-item label {
    background: var(--white);
    margin: 0 5px 5px 0;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--fontColor);
    border: 1px solid var(--white);
    border-radius: 8px;
}

.menu-details-box .tag-item .btn-check:checked + .btn-primary {
    background: var(--primary) !important;
    color: var(--white);
    border: 1px solid var(--primary);
}

.menu-details-box .tag-item .btn-check:focus + .btn-primary,
.menu-details-box .tag-item .btn-primary:focus {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.menu-details-box .check-radio-box-wrapper {
    text-align: left;
    margin-top: 15px;
}

.menu-details-box .check-radio-box-wrapper .form-check {
    margin-bottom: 8px;
}

.menu-details-box .check-radio-box-wrapper label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-details-box .check-radio-box-wrapper label img {
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
}

.menu-details-box .form-check-with-img .form-check-input {
    margin-top: 12px;
}

.menu-details-box .bottom-area {
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background: #fff;
    padding: 15px 0;
    border-top: 1px solid var(--bgLight);
}

.rtl .menu-details-box .check-radio-box-wrapper {
    text-align: right;
}

.rtl .menu-details-box .form-check {
    padding-left: 0;
}

.color-danger {
    background-color: #ff2a27;
}

.color-success {
    background-color: #26cc8c;
}

.custom-a {
    color: var(--fontColor) !important;
}

.custom-a:hover {
    background-color: transparent !important;
    color: var(--fontColor) !important;
    text-decoration: none !important;
}

.is-open {
    background: var(--primary);
    width: 65px;
    height: 65px;
    border-radius: 50px;
    text-align: center;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 50px;
    left: 30px;
    z-index: 12;
}

.is-open h4 {
    font-family: "Rouge Script", cursive;
    font-size: 24px;
    color: var(--black);
    position: relative;
    margin-bottom: 0;
    text-transform: capitalize;
}

.is-open::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    border-radius: 100px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid var(--primary);
    animation: circleAvatar 3s infinite;
}

@keyframes circleAvatar {
    0% {
        width: 100%;
        height: 100%;
    }
    50% {
        width: 130%;
        height: 130%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}

.heading {
    margin-bottom: 15px;
}

.heading .back-btn {
    margin-bottom: 15px;
    height: 35px;
    margin-right: 15px;
}

.heading .back-btn i {
    font-size: 24px;
    color: var(--primary);
}

.heading .checkout-box,
.heading .cart-box {
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
}

.heading .checkout-box i,
.heading .cart-box i {
    font-size: 24px;
    color: var(--primary);
}

.heading .checkout-box .count,
.heading .cart-box .count {
    background: var(--primary);
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    color: var(--white);
    position: absolute;
    top: 0;
    right: 1px;
    font-size: 11px;
    font-weight: 400;
    padding-top: 1px;
    text-align: center;
}

.rtl .heading .back-btn {
    margin-right: 0px;
    margin-left: 15px;
    transform: rotateY(180deg);
}

.sidebar-dropdown-items .dropdown-toggle {
    background: var(--primary);
    height: 30px;
    width: 55px;
    border-radius: 50px;
    color: var(--white);
    position: relative;
    padding: 0px;
    transition: 0.4s;
}

.color-warning {
    background-color: #ff9800 !important;
}

.color-purple {
    background-color: var(--secondary) !important;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-card {
    background-color: antiquewhite !important;
}

.identity-confirmation .table-parent {
    height: 70vh;
    overflow-y: auto;
}

.identity-confirmation .form-check .form-check-input {
    cursor: pointer;
}


.identity-confirmation .form-check .form-check-input {
    background-repeat: no-repeat;
    border-radius: 10px;
    background-image: url(../images/circle.png);
    background-size: 12px;
}

.identity-confirmation .form-check .form-check-input:checked {
    background-image: url(../images/circle2.png);
}

a.disabled {
    pointer-events: none !important;
}

.payout {
    overflow-y: scroll;
    max-height: 315px;
}

i.fal.fa-check-circle.fa-2x.text-success {
    color: #27ae60 !important;
}

.privacy-policy {
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.privacy-policy::before {
    content: "";
    height: 700px;
    width: 700px;
    position: absolute;
    z-index: 0;
    bottom: -300px;
    right: -400px;
    border-radius: 50%;
    border: solid 150px var(--bgLight);
    z-index: -1;
}

.privacy-policy::after {
    content: "";
    height: 700px;
    width: 700px;
    position: absolute;
    z-index: 0;
    top: -300px;
    left: -400px;
    border-radius: 50%;
    border: solid 150px var(--bgLight);
    z-index: -1;
}

@media screen and (max-width: 1600px) {
    #content .dashboard-box i {
        font-size: 32px;
        color: var(--primary);
        position: absolute;
        right: 18px !important;
        top: 50%;
        transform: translateY(-15%) !important;
        margin: auto;
    }

    #content .dashboard-box h3 {
        margin-bottom: 0;
        font-size: 26px;
    }
}

.doc-content {
    margin: 40px 0;
    -webkit-box-shadow: 0 0 10px #e6f0fa;
    box-shadow: 0 0 10px #e6f0fa;
    padding: 40px;

    background-color: #fff;
}

.padding {
    padding-bottom: 30px;
}

.plan-page {
    background-color: white !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #FFFFFF !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #FFFFFF !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: transparent !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 0 !important;
}

.btn-base-color {
    background-color: #ffffff !important;
    border-color: #ccd0d7 !important;
}

.card-box {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 20px;
}

.qr-card-box {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.qr-card-box img {
    max-width: 100%;
    width: 200px;
}


/*----------------------------------------------
Payment section start
-----------------------------------------------*/
.payment-container-list {
    margin-top: 20px;
    height: 490px;
    overflow: auto;
    padding: 5px;
}

.payment-container-list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-container-list .item:not(:last-child) {
    margin-bottom: 15px;
}

.payment-container-list .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    /*box-shadow: var(--shadow2);*/
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    gap: 15px;
    background-color: var(--white);
}

.payment-container-list .form-check-label .image-area img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 3px;
    border: 1px solid #ededed;
    border-radius: 50%;
}

.payment-container-list .form-check-label .content-area {
    max-width: 400px;
    padding-right: 30px;
}

.payment-container-list .form-check-input {
    position: absolute;
    right: 15px;
}

.payment-container-list .form-check-input[type=radio]:checked + .form-check-label {
    background-color: rgba(var(--primary), 0.1);
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

.transfer-details-section .link {
    color: var(--heading-color);
}

.transfer-list {
    padding: 15px;
    margin-bottom: 20px;
}

.transfer-list h5 {
    margin-bottom: 0;
}

.transfer-list .title:not(:last-child) {
    margin-bottom: 20px;
}

.transfer-list .item {
    display: flex;
    justify-content: space-between;
}

.transfer-list .item:not(:last-child) {
    margin-bottom: 10px;
}

.payment-summery .form-control {
    height: 50px;
    border-radius: 5px;
    background-color: var(--bgLight);
    border: 1px solid var(--bgLight);
    padding: 8px;
    padding-left: 15px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
}

.payment-summery .form-control:focus {
    color: var(--gray);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

/*----------------------------------------------
Payment section end
-----------------------------------------------*/

.langActive {
    color: var(--primary) !important;
}

.social-login {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-login a {
    background: var(--primary);
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    text-align: center;
    color: var(--white);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-login a i {
    font-size: 17px;
}

hr.divider {
    margin-top: 30px;
    padding: 0;
    overflow: visible;
    border: none;
    color: #6e6d7a;
    text-align: center;
    opacity: 0.75;
}

hr.divider:after {
    content: "Or Login With";
    font-size: 20px;
    display: inline-block;
    position: relative;
    top: -17px;
    padding: 0 10px;
    background: var(--white);
}

.text-justify {
    text-align: justify;
}

.card-js input, .card-js select {
    height: 50px;
    background-color: var(--bgLight);
    border-color: var(--bgLight);
    border-radius: 5px;
}

.card-js input:focus, .card-js select:focus {
    border-color: var(--primary);
    box-shadow: none;
    background-color: var(--bgLight);
}

.card-js .icon {
    top: 50%;
    transform: translateY(-50%);
    height: initial;
}

.jp-card-invalid {
    height: 50px;
    background-color: var(--bgLight);
    border-color: var(--bgLight);
    border-radius: 5px;
}

.jp-card-invalid:focus {
    border-color: var(--primary);
    box-shadow: none;
    background-color: var(--bgLight);
}

.noDataImg {
    height: 100px;
}

.border_bottom {
    border-bottom: 1px solid var(--bgLight);
}

#cookieAlert {
    background: var(--bs-white);
    color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    bottom: 15px;
    left: 0;
    margin: 15px;
    max-width: 450px;
    padding: 20px;
    border-radius: 10px;
    z-index: 1057;
}

#cookieAlert p {
    color: var(--fontColor);
    padding: 10px;
}


#cookieAlert .text--base:hover {
    color: var(--primary);
}


.pwa-popup {
    width: 500px;
    background-color: var(--bgDark);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
}

/* Header */
.pwa-popup .header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    border-bottom: 1px solid var(--bgLight);
    padding-bottom: 10px;
}

.pwa-popup .pwa-logo {
    max-width: 48px;
    max-height: 48px;
    border-radius: 6px;
    margin-right: 10px;
    border: 1px solid var(--light);
    padding: 7px;
}

.pwa-popup .header-text h2 {
    margin: 0;
    font-size: 18px;
    color: #fff !important;
}

.pwa-popup .header-text p {
    margin: 0;
    color: #fff !important;
    font-size: 14px;
}

.pwa-popup .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff !important;
}

/* Description */
.pwa-popup .description {
    font-size: 14px;
    color: #fff !important;
    margin: 10px 0;
}

.pwa-popup .sub-description {
    font-size: 14px;
    color: #fff !important;
    margin-bottom: 20px;
}

/* Carousel */
.pwa-popup .carousel-container {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s ease, opacity 0.5s ease;

}

.pwa-popup .carousel-container.active {
    opacity: 1;
}

.pwa-popup .carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pwa-popup .carousel-content {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.pwa-popup .carousel-content img {
    width: 100%;
    border-radius: 10px;
    flex-shrink: 0;
    max-height: min(45vh, 500px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px 0px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
    object-fit: contain;
    background: var(--dark);
}

.pwa-popup .carousel-btn {
    background-color: var(--bs-gray);
    border: none;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadowblack);
}

.pwa-popup .carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.pwa-popup .carousel-btn.left {
    left: 10px;
}

.pwa-popup .carousel-btn.right {
    right: 10px;
}

.pwa-popup .carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Actions */
.pwa-popup .actions {
    display: flex;
    justify-content: space-between;
}

.pwa-popup .action-btn {
    padding: 8px 50px;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #a7c7fa;
    transition: transform 0.2s ease;
}

.pwa-popup .action-btn.less {

    background-color: rgba(0, 0, 0, 0);
    color: #a7c7fa;
}

.pwa-popup .action-btn.less:hover {
    color: #a7c7fa;
    background-color: rgba(167, 199, 250, 0.1);
}

.pwa-popup .action-btn.less:hover {
    transform: translateY(-2px);
}

.pwa-popup .action-btn.install {
    background-color: #a7c7fa;
    color: #1B222C;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
}

.pwa-popup .action-btn.install:hover {
    transform: translateY(-2px);
    background-color: #a7c7fa;
}

#pwaInstallPopup {
    display: none;
    margin: auto;
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    -webkit-animation-name: modalanimatestop;
    -webkit-animation-duration: 0.4s;
    animation-name: modalanimatestop;
    animation-duration: 0.8s;
}

@media (max-width: 575px) {
    #pwaInstallPopup {
        top: auto;
        bottom: 1% !important;
        width: 95%;
        z-index: 9999;
        -webkit-animation-name: animatebottom;
        -webkit-animation-duration: 0.4s;
        animation-name: animatebottom;
        animation-duration: 0.8s;
    }
}

@media (max-width: 360px) {
    .pwa-popup .action-btn {
        padding: 8px 35px;
    }
}

@-webkit-keyframes modalanimatestop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 5%;
        opacity: 1
    }
}

@keyframes modalanimatestop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 5%;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }
    to {
        bottom: 1%;
        opacity: 1
    }
}


.custom-offcanvas {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    background-color: var(--white);
    box-shadow: var(--shadow2);
    transition: all 0.4s ease-in-out;
}

.custom-offcanvas.end.show {
    transform: none;
    visibility: visible;
}

.custom-offcanvas.end {
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
}

.custom-offcanvas-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    border-bottom: 1px solid var(--borderColor2);
}

.custom-offcanvas-body {
    padding: 15px;
    flex-grow: 1;
}

.canvas_input_box {
    box-shadow: none !important;
    padding: 15px 0 0 0 !important;
}

.text-orange {
    color: #fb6340 !important;
}

.text-cyan {
    color: #2bffc6 !important;
}

.text-green {
    color: #2dce89 !important;
}

.text-indigo {
    color: #5603ad !important;
}

.text-blue {
    color: #5e72e4 !important
}

a.text-blue:hover,
a.text-blue:focus {
    color: #233dd2 !important
}

.text-indigo {
    color: #5603ad !important
}

a.text-indigo:hover,
a.text-indigo:focus {
    color: #310262 !important
}

.text-purple {
    color: #8965e0 !important
}

a.text-purple:hover,
a.text-purple:focus {
    color: #5a2acf !important
}

.text-pink {
    color: #f3a4b5 !important
}

a.text-pink:hover,
a.text-pink:focus {
    color: #ea607e !important
}

.text-red {
    color: #f5365c !important
}

a.text-red:hover,
a.text-red:focus {
    color: #d40b33 !important
}

.text-orange {
    color: #fb6340 !important
}

a.text-orange:hover,
a.text-orange:focus {
    color: #ea3005 !important
}

.text-yellow {
    color: #ffd600 !important
}

a.text-yellow:hover,
a.text-yellow:focus {
    color: #b39600 !important
}

.text-green {
    color: #2dce89 !important
}

a.text-green:hover,
a.text-green:focus {
    color: #1f8f5f !important
}

.text-teal {
    color: #11cdef !important
}

a.text-teal:hover,
a.text-teal:focus {
    color: #0b90a8 !important
}

.text-cyan {
    color: #2bffc6 !important
}

a.text-cyan:hover,
a.text-cyan:focus {
    color: #00dea2 !important
}

.text-white {
    color: #fff !important
}

a.text-white:hover,
a.text-white:focus {
    color: #d9d9d9 !important
}

.text-gray {
    color: #8898aa !important
}

a.text-gray:hover,
a.text-gray:focus {
    color: #607286 !important
}

.text-gray-dark {
    color: #32325d !important
}

a.text-gray-dark:hover,
a.text-gray-dark:focus {
    color: #17172b !important
}

.text-light {
    color: #ced4da !important
}

a.text-light:hover,
a.text-light:focus {
    color: #a2aeb9 !important
}

.text-lighter {
    color: #e9ecef !important
}

a.text-lighter:hover,
a.text-lighter:focus {
    color: #bdc6cf !important
}

#sidebar ul li a.active i, #sidebar ul li a:hover i {
    color: var(--white) !important;
}

.customButton {
    background-color: white !important;
    border: #677788 !important;
    color: #677788 !important;
}

.customButton:hover {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

button.dropdown-toggle.customButton {
    background: aliceblue !important;
}

.w-90 {
    width: 90px !important;
    height: auto;
}

.telegram-color {
    color: #0088cc !important;
}

.messenger-color {
    color: #0099FF !important;
}

.whatsapp-color {
    color: #128C7E !important;
}
