:root {
    --theme-color-primary: #072356;
    --theme-color-primary-hover: #255ec9;
    --theme-color-primary-light: #edf6ff;
    --theme-color-secondary: #e48600;
    --theme-color-secondary-hover: #ff9a0d;
    --theme-color-info: #017efe;
    --theme-color-info-hover: #449df7;
}

* {
    scrollbar-width: thin;
}

.btn-theme {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--theme-color-primary);
    --bs-btn-border-color: var(--theme-color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--theme-color-primary-hover);
    --bs-btn-hover-border-color: var(--theme-color-primary-hover);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--theme-color-primary-hover);
    --bs-btn-active-border-color: var(--theme-color-primary-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--theme-color-primary);
    --bs-btn-disabled-border-color: var(--theme-color-primary);
}

.btn-theme-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--theme-color-secondary);
    --bs-btn-border-color: var(--theme-color-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--theme-color-secondary-hover);
    --bs-btn-hover-border-color: var(--theme-color-secondary-hover);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--theme-color-secondary-hover);
    --bs-btn-active-border-color: var(--theme-color-secondary-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(255, 65, 31, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--theme-color-secondary);
    --bs-btn-disabled-border-color: var(--theme-color-secondary);
}

.btn-theme-info {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--theme-color-info);
    --bs-btn-border-color: var(--theme-color-info);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--theme-color-info-hover);
    --bs-btn-hover-border-color: var(--theme-color-info-hover);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--theme-color-info-hover);
    --bs-btn-active-border-color: var(--theme-color-info-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(255, 65, 31, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--theme-color-info);
    --bs-btn-disabled-border-color: var(--theme-color-info);
}

.bg-theme {
    background-color: var(--theme-color-primary);
}

.bg-light-theme {
    background-color: var(--theme-color-primary-light);
}

.border-theme {
    border-color: var(--theme-color-primary) !important;
}

.bg-theme-secondary {
    background-color: var(--theme-color-secondary);
}

.text-theme {
    color: var(--theme-color-primary);
}

.text-theme-secondary {
    color: var(--theme-color-secondary);
}

.fs-small {
    font-size: 14px;
    line-height: 15px;
}

.text-justify {
    text-align: justify;
}

.text-gray {
    color: gray;
    font-weight: 600;
}

a.text-gray:hover {
    color: #222222;
}

ul.list-decoration-none {
    list-style-type: none;
}

.input-group-priamry span {
    color: var(--theme-color-primary) !important;
}

.top-nav-links {
    display: flex;
    align-items: start;
    color: #ffffff;
    text-decoration: none;
    gap: 8px;
    font-size: 18px;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 3px;
}

.top-nav-links:hover {
    color: #f5eeee;
}

.top-nav-links.first {
    border-right: 2px solid #ffffff;
}

.header .social-icons {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 15px;
    text-decoration: none;
    outline: none;
}

.header .social-icons i {
    font-size: larger;
}

.navbar-brand img {
    max-width: 140px;
    max-height: 60px;
}

.fixed-top-custom {
    top: 38px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-nav .nav-item a {
    font-weight: 600;
    color: var(--theme-color-primary);
    padding-top: 3px;
    padding-bottom: 3px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    color: var(--theme-color-primary);
    border-bottom: 2px solid var(--theme-color-secondary);
}

.news-scroll p {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 600;
    margin-right: 50px;
}

.news-scroll p::before {
    content: "●";
    font-weight: 600;
    margin-right: 8px;
    font-size: 20px;
}

.owl-carousel-banners .owl-dots,
.owl-carousel-testimonail .owl-dots {
    text-align: center;
    margin-bottom: 10px;
}

.owl-carousel-banners .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgb(160, 154, 154) !important;
    border-radius: 5px;
}

.owl-dot.active {
    background-color: #072356 !important;
}

.owl-carousel-banners .owl-nav,
.owl-carousel-testimonail .owl-nav {
    display: none;
}

.services .service-card {
    padding: 20px 10px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 15px;
    height: 100%;
}

.services .service-card:hover {
    background-color: var(--theme-color-secondary);
}

.services .service-card img {
    max-width: 100%;
    max-height: 80px;
    margin-bottom: 15px;
}

.services .service-card h4 {
    max-width: 100%;
    text-align: center;
}

.testimonail .testimonail-card {
    padding: 20px;
    margin: 10px 0 10px 10px;
    text-align: center;
    max-width: 100%;
    min-height: 260px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px,
        rgba(60, 64, 67, 0.3) 0px 1px 2px 0px;
    border-radius: 20px 0 0 20px;
    display: flex;
}

.testimonail .testimonail-card .line {
    width: 80px;
    height: 100%;
    margin-left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonail .testimonail-card .line {
    position: relative;
}

.testimonail .testimonail-card .line i {
    background-color: var(--theme-color-secondary);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: x-large;
    line-height: 65px;
    color: #fff;
}

.testimonail .testimonail-card .line::after,
.testimonail .testimonail-card .line::before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 55px;
    background: var(--theme-color-secondary);
    left: 50%;
}

.testimonail .testimonail-card .line::before {
    top: 5px;
}

.testimonail .testimonail-card .line::after {
    bottom: 5px;
}

.testimonail .testimonail-card .stars {
    flex-grow: 1;
}

.testimonail .testimonail-card p {
    flex-grow: 10;
}

.testimonail .testimonail-card .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 2;
}

.testimonail .testimonail-card .details .user-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonail .testimonail-card .details .user-details img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.fs-7 {
    font-size: 13px;
}

.owl-carousel-testimonail .owl-dot {
    width: 30px;
    height: 10px;
    margin: 0 5px;
    background: rgb(160, 154, 154) !important;
    border-radius: 5px;
}

.owl-carousel-testimonail .owl-dot.active {
    background-color: #072356 !important;
}

.back-to-top i {
    position: fixed !important;
    right: 13px !important;
    bottom: 70px !important;
    color: white !important;
    font-size: 24px !important;
    border: 1px solid var(--theme-color-secondary) !important;
    background-color: var(--theme-color-secondary) !important;
    padding: 10px !important;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 160px;
    position: relative;
    filter: brightness(0) invert(1);
}

.social-icons-footer {
    list-style-type: none;
}

.social-icons-footer li {
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.social-icons-footer li i {
    color: var(--theme-color-primary);
    font-size: 18px;
}

.contact-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

li.text-center.text-lg-start {
    margin-bottom: 6px;
}

li.text-center.text-lg-start a {
    border-bottom: 2px solid transparent;
}

li.text-center.text-lg-start:hover a {
    border-color: var(--theme-color-secondary-hover);
}

ul.list-theme li a {
    text-decoration: none;
    color: var(--theme-color-primary);
    width: 100%;
    display: inline-block;
}

ul.list-theme li.active {
    background-color: var(--theme-color-primary);
    border-color: var(--theme-color-primary);
}

ul.list-theme li.active a {
    color: #ffffff;
}

.address-text a {
    text-decoration: none;
}

.error:not(.form-control):not(.form-check-input):not(.form-select) {
    color: tomato;
    font-size: small;
}

.invalid-feedback {
    display: block;
}

.testimonial-page .testimonial-card {
    position: relative;
    width: 100%;
    min-height: 300px;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 25px 0 rgba(20, 27, 202, 0.17);
    padding: 20px;
    border-radius: 5px;
}

.testimonial-page .testimonial-card::before {
    position: absolute;
    top: -15px;
    right: 15px;
    background: var(--theme-color-secondary);
    font-size: 30px;
    border-radius: 0px;
    content: "\f10e";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(19, 47, 34, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-page .testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.pagination {
    margin-bottom: 0;
}

.testimonial-page p.small {
    margin-bottom: 0;
}

.pagination .page-item.active {
    background-color: var() !important;
}

.page-link {
    color: var(--theme-color-primary);
}

.page-link:hover {
    color: var(--theme-color-primary);
}

.active > .page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--theme-color-primary);
    border-color: var(--theme-color-primary);
}

.services .box {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.services .our-services {
    margin-top: 75px;
    padding-bottom: 30px;
    padding: 0 20px;
    min-height: 198px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    color: var(--theme-color-primary);
    box-shadow: 0 0 25px 0 rgba(20, 27, 202, 0.17);
}

.services .our-services:hover {
    background-color: rgba(20, 27, 202, 0.17);
}

.services .our-services .header {
    width: 100%;
    height: 100px;
    margin-bottom: -50px;
    margin-left: 50%;
    transform: translateY(-50%) translateX(-50px);
}

.services .our-services .header .icon {
    width: 100px;
    height: 100px;
    padding: 20px;
    background-color: var(--theme-color-secondary);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .our-services .header .icon img {
    width: 100%;
}

.services .our-services a.btn {
    position: absolute;
    bottom: 15px;
    transform: translateX(-50%);
}

/* Login Screen */

.text-theme-info {
    color: var(--theme-color-info);
}

.text-theme-info {
    color: var(--theme-color-info);
}

.login-box {
    background-color: #eef4ff;
}

.login-box img {
    max-width: 210px !important;
}

@-webkit-keyframes autofill {
    0%,
    100% {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-delay: 1s;
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.input-group .form-control,
.input-group .form-select {
    background-color: transparent;
    outline: none;
    border: none;
    border-radius: 0;
    padding-right: 0;
}

.input-group .form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: transparent;
    box-shadow: none;
}

.input-group .form-control:focus,
.input-group .form-select:focus {
    color: #212529;
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.input-group {
    display: flex;
    align-items: center;
    color: rgb(201, 195, 195);
    border-bottom: 2px solid rgb(201, 195, 195);
}

.input-group span {
    color: var(--theme-color-info);
    font-size: larger;
}

.aspect-ratio-1 {
    aspect-ratio: 1;
    display: block;
    object-fit: contain;
}

.cart-icon::after {
    content: attr(data-count);
    position: absolute;
    top: -3px;
    right: -8px;
    color: #fff;
    background: tomato;
    min-width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10%;
    z-index: 999;
    font-size: 12px;
}

.cart-icon {
    position: relative;
    color: var(--theme-color-primary);
}

.avatar-profile .fa-edit {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    background: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.overlay-icon {
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    background-color: #02020278;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1035 !important;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.avatar:hover .overlay-icon {
    opacity: 1;
}

.avatar {
    position: relative;
    display: inline-block;
}

.avatar .fa-edit {
    color: var(--theme-color-primary);
}

.bg-light-primary {
    background-color: #4973c05b;
    border-color: #eceffe;
    color: var(--theme-color-primary);
}

.fs--1:not(input):not(select) {
    font-size: 0.8333333333rem !important;
}

.profile-img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 100%;
}

.avatar-5xl {
    width: 10rem;
    height: 10rem;
}

input.rm-number::-webkit-inner-spin-button,
input.rm-number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    margin: 0;
}

input[type="number"].rm-number {
    -moz-appearance: textfield;
}

.products a {
    text-decoration: none;
    font-size: 14px;
    color: var(--theme-color-primary);
}

.products b {
    font-weight: normal;
}

.card.style-6 .badge:not(.badge-dot) {
    position: absolute;
    right: 8px;
    top: 8px;
}

.badge-primary {
    color: #fff;
    background-color: var(--theme-color-primary);
}

.products .card-footer .btn-outline-primary {
    color: var(--theme-color-primary) !important;
    border-color: var(--theme-color-primary);
    padding: 4px;
}

.products .card-footer .btn-outline-primary:hover {
    color: #fff !important;
    background-color: var(--theme-color-primary);
}

.cartItems h6 a {
    text-decoration: none;
    color: var(--theme-color-primary);
}

.border-right {
    border-right: 1px solid !important;
}

.cartItems .text-secondary {
    color: var(--theme-color-secondary) !important;
}

.coupon-code {
    padding: 5px 10px;
    border: 2px dashed gray;
    font-weight: 600;
}

.text-red {
    color: red;
}

.bg-gray {
    background-color: #e1e1e1;
}

.min-w-150 {
    min-width: 150px;
}

.icon {
    width: var(--avatar-size, 60px);
    height: var(--avatar-size, 60px);
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.border-width-2px {
    border-width: 2px !important;
}
.border-dashed {
    border-style: dashed !important;
}

ul.contacts-block li {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

ul.contacts-block li:hover {
    color: var(--theme-color-primary-hover);
}

.user-info h2.fw-bold {
    font-weight: normal !important;
}

.services .card {
    box-shadow: rgba(255, 252, 252, 0.84) 0px 2px 8px 0px;
    color: #5f5e5e;
    min-height: 250px;
    border-radius: 20px !important;
    justify-content: space-around;
}

.services .card .card-title {
    padding: 10px;
    font-size: medium;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
}

.services .card img {
    height: 150px;
    width: 150px;
    background-image: none;
    margin: 0 auto;
    padding: 10px;
    object-fit: contain;
}

.services .card a {
    text-align: center;
    border: 1px solid var(--theme-color-primary);
    width: 120px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px auto;
    padding: 3px 10px;
    color: var(--theme-color-primary);
}

.ticker {
    height: 50px;
    line-height: 50px;
}
