@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;400;500;600;700;800;900&display=swap");

:root {
    --primary: #074399;
    --secondary: #FC7100;
    --filterPrimary: invert(15%) sepia(37%) saturate(5630%) hue-rotate(208deg) brightness(103%) contrast(95%);
    --filterSecondary: invert(44%) sepia(92%) saturate(2001%) hue-rotate(3deg) brightness(102%) contrast(104%);
    --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Alexandria', sans-serif;
    scroll-behavior: smooth;
}

*::-moz-selection {
    background-color: var(--primary);
    color: #fff;
}

*::selection {
    background-color: var(--primary);
    color: #fff;
}

*::-webkit-scrollbar {
    width: 7px;
}

*::-webkit-scrollbar-track {
    background-color: #eee;
}

*::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
}

body {
    direction: rtl;
    overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar {
    height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
    color: #ccc;
}

.color-gray2 {
    color: #888;
}

.color-dark {
    color: #3A3F54;
}

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

.color-secondary {
    color: var(--secondary);
}

.filterPrimary {
    -webkit-filter: var(--filterPrimary);
    filter: var(--filterPrimary);
}

.filterSecondary {
    -webkit-filter: var(--filterSecondary);
    filter: var(--filterSecondary);
}

.filterWhite {
    -webkit-filter: var(--filterWhite);
    filter: var(--filterWhite);
}

p,
.p {
    font-size: 15px;
    color: #555;
    line-height: 1.7rem;
}

a {
    color: #000;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none !important;
}

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

a:focus {
    outline: 0;
}

del,
.del {
    text-decoration: line-through;
    color: #888;
    font-size: 80%;
}

ul {
    list-style-type: none;
    padding: 0;
}

button {
    border: none;
    padding: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    background-color: transparent;
}

button:focus {
    border: none;
    -webkit-box-shadow: transparent;
    box-shadow: transparent;
    outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

form .form-group {
    position: relative;
}

form .form-control {
    font-size: 13px;
}

form .form-control:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid var(--primary) !important;
}

form input,
form select {
    height: 60px !important;
}

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

form textarea {
    resize: none;
}

form .form-check-input {
    height: 1em !important;
}

.progress-wrap {
    position: fixed;
    inset-inline-end: 20px;
    bottom: 20px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
    box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: translateY(130%);
    transform: translateY(130%);
    z-index: 99;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::after {
    background: url(../images/icons/top-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: var(--primary);
    left: 13px;
    top: 13px;
    height: 30px;
    width: 30px;
    display: block;
    -webkit-filter: var(--filterPrimary);
    filter: var(--filterPrimary);
}

.progress-wrap svg path {
    fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.in-flex {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inFlex {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.container,
.container-fluid,
.zi-5 {
    position: relative;
    z-index: 5;
}

.sec-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.text-end {
    text-align: end;
}

.overflow_hidden {
    overflow: hidden !important;
}

.bg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.position-unset {
    position: unset;
}

.underline {
    text-decoration: underline !important;
}

.trans_3 {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
    0% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    100% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

@keyframes floating-y {
    0% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    100% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

@-webkit-keyframes floatingX {
    0% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
}

@keyframes floatingX {
    0% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
}

.slide_ltr {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.slide_rtl {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.slide_rtl.animated {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@-webkit-keyframes puff-in {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes puff-in {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.puff-in {
    -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
    animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.text-focus-in {
    -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.swiper-container .swiper-pagination,
.products_sec .swiper-pagination {
    bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.products_sec .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.products_sec .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.products_sec .swiper-button-next,
.products_sec .swiper-button-prev {
    background-image: unset;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-image: unset;
    background-color: #f5f5f5;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.products_sec .swiper-button-next::before,
.products_sec .swiper-button-prev::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    color: var(--primary);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.products_sec .swiper-button-next:hover,
.products_sec .swiper-button-prev:hover {
    background-color: var(--secondary);
    opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before,
.products_sec .swiper-button-next:hover::before,
.products_sec .swiper-button-prev:hover::before {
    color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.products_sec .swiper-button-next,
.products_sec .swiper-container-rtl .swiper-button-prev {
    right: 2%;
    left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before,
.products_sec .swiper-button-next::before,
.products_sec .swiper-container-rtl .swiper-button-prev::before {
    content: '\f178';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.products_sec .swiper-button-prev,
.products_sec .swiper-container-rtl .swiper-button-next {
    left: 2%;
    right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before,
.products_sec .swiper-button-prev::before,
.products_sec .swiper-container-rtl .swiper-button-next::before {
    content: '\f177';
}

.butn {
    position: relative;
    padding: .7rem 1.7rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    border: 1px solid transparent;
    font-weight: bold;
    border-radius: 25px;
}

.butn i {
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}

.butn.sm_butn {
    padding: 0;
    width: 50px;
    height: 50px;
}

.butn.primary_butn {
    background-color: var(--primary);
    color: #fff;
}

.butn.primary_border_butn {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.butn.secondary_butn {
    background-color: var(--secondary);
    color: #fff;
}

.butn.secondary_border_butn {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background-color: transparent;
}

.butn.white_butn {
    background-color: #fff;
    color: #333;
}

.butn.gray_butn {
    background-color: #f5f5f5;
    color: var(--primary);
}

.butn.white_border_butn {
    background-color: #fff;
    border: 1px solid #D6D3D3;
}

.butn:hover {
    background-color: #04365F !important;
    border: 1px solid #04365F !important;
    color: #fff !important;
}

.icon-18 {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
}

.icon-15 {
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
}

.bb {
    position: relative;
    font-size: 30px;
}

.bb::after {
    content: '';
    display: block;
    width: 45px;
    height: 2px;
    background-color: var(--primary);
    margin: 15px auto 0 auto;
}

.form-group .form-control {
    border-radius: 16px;
}

.form-group input, .form-group select {
    height: 50px !important;
}

.pagination-wrapper .pagination .page-item {
    position: relative;
}

.pagination-wrapper .pagination .page-item input {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100% !important;
    border-radius: 0;
    right: 0;
    opacity: 0;
    z-index: 99;
    cursor: pointer !important;
}

.pagination-wrapper .pagination .page-link {
    border-radius: 5px !important;
    background-color: transparent;
    color: var(--primary);
    margin: 0 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    width: 45px;
    height: 40px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
    background-color: var(--primary);
    color: #fff !important;
}

.favButn.active {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.cartButn.active {
    background-color: #022038;
    color: #fff !important;
}

.modal .btn-close {
    -webkit-filter: var(--filterWhite);
    filter: var(--filterWhite);
    position: absolute;
    left: 15px;
    top: 15px;
}

.modal .modal-content {
    padding: 40px;
    border-radius: 20px;
}

.locModal .login_pg .form_box {
    padding: 0;
    border: none;
    border-radius: 0;
}

.rateModal .stars-content .star-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    font-size: 2em;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 0 .2em;
    text-align: center;
    width: 5em;
    margin: auto;
}

.rateModal .stars-content .star-rating i {
    margin: 0 5px;
}

.rateModal .stars-content .star-rating input {
    display: none;
}

.rateModal .stars-content .star-rating label {
    color: #FFEEC9;
    cursor: pointer;
}

.rateModal .stars-content .star-rating :checked ~ label {
    color: #FFD06A;
}

.rateModal .stars-content .star-rating label:hover,
.rateModal .stars-content .star-rating label:hover ~ label {
    color: #FFB820;
}

.rateModal .butn {
    min-width: 140px;
    font-size: 16px;
}

.badge {
    padding: 0.5rem 1.2rem;
    text-transform: capitalize;
}

.badge.white_badge {
    color: var(--primary);
    background-color: #fff;
}

.badge.secondaey_badge {
    color: #fff;
    background-color: var(--secondary);
}

.badge.gray_bagde {
    background-color: #eee;
    color: var(--primary);
}

.badge.offer_badge {
    background-color: #CBFFD8;
    color: #333;
}

.badge.primary_badge {
    background-color: var(--primary);
    color: #fff;
}

[type="tel"], [type="url"], [type="email"], [type="number"] {
    direction: inherit;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
    position: relative;
    z-index: 99;
}

.navs-container .navbar.home_nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.navs-container .navbar .logo {
    width: 115px;
    -o-object-fit: contain;
    object-fit: contain;
}

.navs-container .navbar .nav-link {
    color: #252835;
    font-size: 16px;
    margin: 0 7px;
}

.navs-container .navbar .nav-link.active {
    font-weight: bold;
    color: var(--secondary) !important;
}

.navs-container .navbar .has_dropdown {
    position: relative;
}

.navs-container .navbar .has_dropdown::after {
    content: '\f0dd';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    inset-inline-end: 4px;
    top: 14px;
    font-size: 9px;
    color: #777;
}

.navs-container .navbar .has_dropdown .drop_down {
    background-color: #fff;
    position: absolute;
    min-width: 200px;
    -webkit-box-shadow: 3px 6px 10px 0 #0001;
    box-shadow: 3px 6px 10px 0 #0001;
    border: 1px solid #eee;
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.navs-container .navbar .has_dropdown .drop_down a {
    font-size: 13px;
    display: block;
    padding: .95rem 1rem;
    background-color: #fff;
    width: 100%;
}

.navs-container .navbar .has_dropdown .drop_down a:hover {
    background-color: #f9f9f9;
    -webkit-padding-start: 1.5rem;
    padding-inline-start: 1.5rem;
}

.navs-container .navbar .has_dropdown:hover .drop_down {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
}

.navs-container .navbar .nav_end .butn {
    margin: 0 3px;
    -webkit-box-shadow: 3px 6px 10px 0 #0001;
    box-shadow: 3px 6px 10px 0 #0001;
}

.navs-container .navbar .nav_end .butn.sm_butn {
    width: 35px;
    height: 35px;
    color: var(--primary);
}

.navs-container .navbar .nav_end .butn.primary_butn {
    font-size: 12px;
    padding: 0.5rem 1.5rem;
}

.navs-container .navbar .nav_end .dropdown .lang_butn {
    font-size: 12px;
    color: #3A3F54;
    font-weight: bold;
}

.navs-container .navbar .nav_end .dropdown .lang_butn .langIcon {
    width: 25px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-margin-end: 3px;
    margin-inline-end: 3px;
}

.navs-container .navbar .nav_end .dropdown .dropdown-menu {
    border-radius: 15px;
}

.navs-container .navbar .nav_end .dropdown .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 13px;
}

.navs-container .navbar .navbar-toggler {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: rgba(221, 221, 221, 0.3);
    border: none;
    position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
    -webkit-box-shadow: 0px 0px 0px grey;
    box-shadow: 0px 0px 0px grey;
    background: rgba(0, 0, 0, 0) !important;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
    top: 0px !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
    top: 0px !important;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--primary);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
    top: -6px;
    right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
    top: 6px;
    right: 0px;
}

.navs-container .search-wrapper {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.navs-container .search-wrapper .search-inner {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    padding: 50px 0px;
    background-color: #fff;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.navs-container .search-wrapper .search-inner .title {
    font-weight: bold;
    color: #888;
}

.navs-container .search-wrapper .search-inner .form-group {
    padding: 0 1vw;
    position: relative;
}

.navs-container .search-wrapper .search-inner .form-group .form-control {
    -webkit-padding-end: 45px;
    padding-inline-end: 45px;
    height: 55px !important;
    border: none !important;
    border-radius: 30px;
    border-bottom: 1px solid #ddd !important;
    background: #f9f9f9;
    border-color: #eee;
}

.navs-container .search-wrapper .search-inner .form-group .form-control:focus {
    border: none !important;
    border-bottom: 1px solid var(--primary) !important;
}

.navs-container .search-wrapper .search-inner .form-group .submit-butn {
    position: absolute;
    left: 35px;
    top: 16px;
    opacity: .5;
    background-color: transparent;
    border: none;
}

.navs-container .search-wrapper .search-inner .form-group .submit-butn .icon {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

.navs-container .search-wrapper .search-inner .close-butn {
    background-color: transparent;
    border: none;
    border-radius: 5px;
    color: #666;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    position: absolute;
    left: 10%;
    top: 10px;
    display: none;
}

.navs-container .search-wrapper .search-inner .close-butn:hover {
    background-color: var(--primary);
    color: #fff;
}

.navs-container .search-wrapper .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.navs-container .search-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.navs-container .search-wrapper.active .search-inner {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.navs-container .search-wrapper.active .overlay {
    opacity: 1;
    visibility: visible;
}

.footer .newsletter_inner {
    padding: 50px 3vw;
    border-radius: 20px;
    background-color: #3A3F54;
    position: relative;
}

.footer .newsletter_inner .title {
    font-size: 22px;
}

.footer .newsletter_inner .form-group .form-control {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}

.footer .newsletter_inner .form-group .icon {
    color: var(--primary);
    position: absolute;
    top: 12px;
    inset-inline-start: 15px;
}

.footer .newsletter_inner .send_butn {
    background-color: var(--primary);
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 15px 0 0 15px;
}

.footer .newsletter_inner::before {
    content: '';
    background: url(../images/newsletter-1.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 175px;
    height: 130px;
}

.footer .content {
    margin-bottom: 20px;
}

.footer .content .logo {
    width: 110px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    margin-bottom: 15px;
    margin-top: -30px;
}

.footer .content .p {
    font-size: 12px;
    color: #3A3F54;
}

.footer .content .social_links a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F5F5F5;
    color: var(--primary);
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    border-radius: 50%;
}

.footer .content .social_links a:hover {
    background-color: var(--secondary);
    color: #fff !important;
}

.footer .content .title {
    color: #3A3F54;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer .content .links a {
    display: block;
    color: #7C7C7C;
    font-size: 13px;
    margin-bottom: 15px;
}

.footer .content .links a:hover {
    -webkit-padding-start: 7px;
    padding-inline-start: 7px;
    color: var(--secondary) !important;
}

.footer .content .contact_items p {
    font-size: 13px;
    color: #7C7C7C;
    margin-bottom: 15px;
}

.footer .content .contact_items p i {
    color: var(--primary);
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}

.footer .ma3roof_logo {
    display: block;
    margin: 15px auto;
    width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer .pay_logos img {
    width: 50px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 5px;
}

.footer .copyright_p {
    color: #7A7A7A;
    font-size: 14px;
}

.footer .copyright_p .alyom_logo {
    width: 66px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 5px;
}

/**********************************************
    Start Edit Home Page
**********************************************/
.header {
    overflow: unset;
    padding-bottom: 0;
}

.header .item {
    padding-top: 100px;
}

.header .item .text_box .title {
    font-weight: 600;
    font-size: 52px;
    color: #252835;
    line-height: 1.5;
}

.header .item .text_box .butn {
    width: 170px;
    height: 56px;
}

.header .item .img_box {
    position: relative;
}

.header .item .img_box .sec-img {
    position: relative;
    z-index: 4;
    height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header .item .img_box::before {
    content: '';
    background: url(../images/bg_header2.png) no-repeat center;
    background-size: contain;
    width: 570px;
    height: 505px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 0;
}

.header .categ_card .categImg {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 25px auto;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid transparent;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.header .categ_card .title {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    color: #252835;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.header .categ_card .title::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--secondary);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    margin: 15px auto 0 auto;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.header .categ_card:hover .categImg {
    border-color: var(--secondary);
}

.header .categ_card:hover .title {
    color: var(--secondary);
}

.header .categ_card:hover .title::after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.header .bg {
    -o-object-position: bottom;
    object-position: bottom;
}

.products_sec .prod_card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.products_sec .prod_card .img_box {
    border: 1px solid #eee;
    border-radius: 20px;
    background-color: #F1F1F1;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.products_sec .prod_card .img_box .offer_badge {
    background-color: #C30000;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 25px;
    padding: .3rem;
}

.products_sec .prod_card .card-body {
    padding: 1.5rem;
    text-align: center;
}

.products_sec .prod_card .card-body .title {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products_sec .prod_card .card-body .prices {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.products_sec .prod_card .butns {
    position: absolute;
    bottom: 0;
}

.products_sec .prod_card .butns .butn {
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
}

.products_sec .prod_card .butns .butn:nth-child(2) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.products_sec .prod_card:hover .butns .butn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.favorites_pg .prod_card .butns .butn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #f8f8f8;
    color: var(--primary);
}

.services_sec {
    background-color: #3A3F54;
}

.services_sec .sec_title::after {
    margin: unset;
    margin-top: 15px;
}

.services_sec .service_card .servImg {
    width: 100%;
    height: 170px;
    border-radius: 20px;
    display: block;
    margin: 0 auto 25px auto;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid transparent;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.services_sec .service_card .title {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    color: #fff;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.services_sec .service_card .title::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--secondary);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    margin: 15px auto 0 auto;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.services_sec .service_card:hover .servImg {
    border-color: var(--secondary);
}

.services_sec .service_card:hover .title {
    color: var(--secondary);
}

.services_sec .service_card:hover .title::after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.downloading_sec .inner {
    position: relative;
}

.downloading_sec .inner p,
.downloading_sec .inner .p {
    color: #fff;
}

.downloading_sec .inner .sec-img {
    height: 530px;
    -o-object-fit: contain;
    object-fit: contain;
}

.downloading_sec .inner .bb::after {
    margin: 15px 0 0 0;
    background-color: #3A3F54;
}

.downloading_sec .inner::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(18, 56, 100, 0.3);
    background-color: var(--primary);
    border-radius: 20px;
    height: 85%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.down_butns .down_link {
    background-color: #fff;
    border-radius: 20px;
    padding: .8rem 1.5rem;
}

.down_butns .down_link .icon {
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
}

.down_butns .down_link span {
    font-size: 11px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.down_butns .down_link span.downSpan {
    margin-bottom: 4px;
}

.down_butns .down_link:hover {
    background-color: var(--secondary);
}

.down_butns .down_link:hover span {
    color: #fff;
}

.feedback_sec {
    background-color: #F6F6F6;
    padding-bottom: 120px;
    margin-bottom: -60px;
}

.feedback_sec .feedback_card .p {
    padding: 40px 3vw;
    background-color: var(--primary);
    color: #fff;
    font-size: 13px;
    line-height: 2;
    border-radius: 20px 20px 0 0;
}

.feedback_sec .feedback_card .user_data {
    border-radius: 0 0 20px 20px;
    padding: 15px 3vw;
    position: relative;
}

.feedback_sec .feedback_card .user_data .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

.feedback_sec .feedback_card .user_data .name {
    font-size: 19px;
}

.feedback_sec .feedback_card .user_data .rating {
    position: relative;
    z-index: 6;
}

.feedback_sec .feedback_card .user_data .rating i {
    font-size: 12px;
    color: #BDBDBD;
}

.feedback_sec .feedback_card .user_data .rating i.active {
    color: #eabc60;
}

.feedback_sec .feedback_card .user_data::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 0);
    background-color: #D9D9D9;
    width: 39px;
    height: 39px;
}

.feedback_sec .feedback_card .user_data::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 32px;
    width: 39px;
    height: 28px;
    background: url(../images/icons/quote.svg) center no-repeat;
    background-size: contain;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
    padding: 25px 0;
    background-color: #f9f9f9;
}

.pg_header .bread {
    color: #888;
}

.pg_header .bread .item {
    color: #555;
    margin: 0 5px;
    font-size: 15px;
}

.pg_header .bread .item.active {
    color: var(--primary);
}

/**********************************************
    Start Edit products_pg
**********************************************/
.products_pg .categ_box {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.products_pg .categ_box .item {
    margin-bottom: 30px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
}

.products_pg .categ_box .item .categ_title {
    text-transform: uppercase;
    font-size: 15px;
    color: #282828;
}

.products_pg .categ_box .item .links .link {
    display: block;
    color: #7E7E7E;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.products_pg .categ_box .item .links .link.active {
    color: var(--primary);
}

.products_pg .categ_box .item:last-child {
    margin-bottom: 0;
}

.products_pg .filter_box {
    border-radius: 20px;
    position: relative;
    border: 1px solid #ddd;
}

.products_pg .filter_box .title_box {
    border-radius: 20px 20px 0 0;
    background-color: #1D2A3B;
    padding: 17px 20px;
}

.products_pg .filter_box .title_box .title {
    font-size: 16px;
}

.products_pg .filter_box .card-body {
    padding: 1.5rem 1.3rem;
}

.products_pg .filter_box .item {
    padding: 0 5px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.products_pg .filter_box .item .collapse_title {
    text-transform: uppercase;
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.products_pg .filter_box .item .collapse_body {
    padding: 1.25rem 0 0 0;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check {
    position: relative;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-label {
    color: #7E7E7E;
    font-size: 15px;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-label::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    inset-inline-start: 4px;
    top: 6px;
    color: var(--primary);
    font-size: 8px;
    opacity: 0;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked {
    background-color: #fff;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked ~ .form-check-label {
    color: var(--primary);
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked ~ .form-check-label::before {
    opacity: 1;
}

.products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-input:checked[type=checkbox] {
    background-image: unset;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check {
    position: relative;
    padding: 0;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    margin-bottom: 15px;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-label {
    padding: 0.7rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    color: #696969;
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-input:checked ~ .form-check-label {
    border-color: var(--primary);
}

.products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-input {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
    opacity: 0;
    cursor: pointer;
}

.products_pg .filter_box .item:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.products_pg .lgImg {
    height: 215px;
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.products_pg .search_filter {
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px 0;
}

.products_pg .search_filter .label {
    width: 120px;
    color: #3F3F3F;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    font-size: 13px;
}

.products_pg .search_filter .form-control {
    height: 50px !important;
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    border-radius: 12px;
    font-size: 13px;
}

/**********************************************
    Start Edit product_det
**********************************************/
.product_det .text_box .title {
    font-size: 22px;
}

.product_det .text_box .share_box {
    position: relative;
}

.product_det .text_box .share_box .share_butn {
    width: 100px;
    height: 40px;
    background-color: #f1f1f1;
    color: #454545;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
}

.product_det .text_box .share_box .share_links {
    position: absolute;
    bottom: -50px;
    inset-inline-end: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.product_det .text_box .share_box .share_links.active a {
    -webkit-transform: scaleX(1) translateY(0px);
    transform: scaleX(1) translateY(0px);
    visibility: visible;
    opacity: 1;
}

.product_det .text_box .share_box .share_links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    color: var(--primary);
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    border: 1px solid #eee;
    -webkit-transform: scaleX(0) translateY(-30px);
    transform: scaleX(0) translateY(-30px);
    visibility: hidden;
    opacity: 0;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.product_det .text_box .share_box .share_links a:nth-child(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.product_det .text_box .share_box .share_links a:nth-child(3) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.product_det .text_box .share_box .share_links a:nth-child(4) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.product_det .text_box .share_box .share_links a:nth-child(5) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.product_det .text_box .share_box .share_links a:hover {
    background-color: var(--primary);
    color: #fff !important;
}

.product_det .text_box .prices {
    font-size: 25px;
}

.product_det .text_box .det_box {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

.product_det .text_box .det_box .prod_data {
    font-size: 16px;
}

.product_det .text_box .rating i {
    font-size: 15px;
    color: #BDBDBD;
}

.product_det .text_box .rating i.active {
    color: #eabc60;
}

.product_det .text_box .rating .rate_num {
    color: #7E7E7E;
    font-size: 13px;
}

.product_det .text_box .sm_butn {
    width: 45px;
    height: 45px;
}

.product_det .img_box {
    background-color: #F1F1F1;
    position: relative;
    border-radius: 20px;
    border: 1px solid #eee;
}

.product_det .img_box .sec-img {
    border-radius: 20px;
    height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
}

.product_det .product_det_inner .nav-link {
    width: 140px;
    height: 45px;
    border-radius: 20px 20px 0 0;
    background-color: #E0E0E0;
    color: #555;
    font-size: 13px;
    font-weight: bold;
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}

.product_det .product_det_inner .nav-link.active {
    background-color: #f7f7f7;
    color: var(--primary);
}

.product_det .product_det_inner .tab_wrapper {
    background-color: transparent !important;

}

.product_det .product_det_inner .tab-content {
    background-color: #f7f7f7;
    border-radius: 20px 0 20px 20px;
    padding: 40px 3vw;
}

.product_det .product_det_inner .tab-content h6 {
    font-size: 15px;
}

.product_det .product_det_inner .tab-content .p {
    font-size: 13px;
    line-height: 2;
    color: #606060;
}

.product_det .product_det_inner .tab-content .review_item {
    position: relative;
    padding: 20px 2vw;
    border-radius: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background-color: #fff;
}

.product_det .product_det_inner .tab-content .review_item .prof_data .avatar {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

.product_det .product_det_inner .tab-content .review_item .prof_data .name {
    font-size: 13px;
}

.product_det .product_det_inner .tab-content .review_item .prof_data .rating i {
    font-size: 11px;
    color: #BDBDBD;
}

.product_det .product_det_inner .tab-content .review_item .prof_data .rating i.active {
    color: #DE980F;
}

.product_det .product_det_inner .tab-content .review_item .prof_data .rating .date {
    color: #7E7E7E;
    font-size: 11px;
}

.product_det .product_det_inner .tab-content .review_item .review_det {
    color: #606060;
    font-size: 13px;
    margin-bottom: 0;
}

.product_det .product_det_inner .tab-content .form .label {
    font-size: 13px;
    margin-bottom: .6rem;
}

.product_det .product_det_inner .tab-content .form .form-control {
    border-radius: 12px;
    border-color: #f7f7f7;
}

.product_det .product_det_inner .tab-content .form input {
    height: 45px !important;
}

.product_det .product_det_inner .tab-content .form .stars-content .star-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    font-size: 12px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.product_det .product_det_inner .tab-content .form .stars-content .star-rating i {
    margin: 0 2px;
}

.product_det .product_det_inner .tab-content .form .stars-content .star-rating input {
    display: none;
}

.product_det .product_det_inner .tab-content .form .stars-content .star-rating label {
    color: #BDBDBD;
    cursor: pointer;
}

.product_det .product_det_inner .tab-content .form .stars-content .star-rating :checked ~ label {
    color: #FFB820;
}

.product_det .product_det_inner .tab-content .form .stars-content .star-rating label:hover,
.product_det .product_det_inner .tab-content .form .stars-content .star-rating label:hover ~ label {
    color: #FFD06A;
}

.qty-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: .2rem;
}

.qty-container .input-qty {
    text-align: center;
    padding: 6px 10px;
    border: 1px solid transparent !important;
    max-width: 60px;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
    background-color: transparent;
    padding: 10px 13px;
    font-size: 10px;
    height: 38px;
    width: 38px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #777;
}

.qty-container .qty-btn-plus {
    margin-left: -1px;
}

.qty-container .qty-btn-minus {
    margin-right: -1px;
}

/**********************************************
    Start Edit profile_pg
**********************************************/
.profile_pg .prof_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #D9D9D9;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    padding: .8rem 1rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.profile_pg .prof_card .icon {
    width: 75px;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    color: var(--primary);
    font-size: 25px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    border-radius: 50%;
}

.profile_pg .prof_card .label {
    margin-bottom: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    color: #1D2A3B;
    font-size: 20px;
}

.profile_pg .prof_card:hover {
    background-color: var(--primary);
}

.profile_pg .prof_card:hover .label {
    color: #fff;
}

/**********************************************
    Start Edit checkout_pg
**********************************************/
.checkout_pg .sec_title {
    font-size: 20px;
}

.checkout_pg .sec_title::after {
    margin: 15px 0 0 0;
}

.checkout_pg .box {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 35px 2vw;
}

.checkout_pg .box .form-check-label {
    color: #454545;
    font-size: 14px;
}

.checkout_pg .box .form-check-label .smImg {
    width: 40px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
}

.checkout_pg .box .form-control {
    border-radius: 20px;
    font-size: 12px;
    color: #989898;
}

.checkout_pg .box input, .checkout_pg .box select {
    height: 50px !important;
}

.checkout_pg .box .form-check-input {
    height: 1em !important;
}

.checkout_pg .box .copoun_box {
    position: relative;
}

.checkout_pg .box .copoun_box .apply_butn {
    position: absolute;
    left: 5px;
    top: 5px;
    height: 40px;
    font-size: 12px;
}

.checkout_pg .box .data_item {
    margin-bottom: 30px;
}

.checkout_pg .box .data_item .label {
    color: #3A3F54;
    font-size: 17px;
}

.checkout_pg .box .data_item .label i {
    color: var(--primary);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.checkout_pg .box .data_item .data {
    color: #474747;
    font-size: 14px;
}

.checkout_pg .box .inputLabel {
    font-size: 14px;
    color: #3A3F54;
    display: block;
    margin-bottom: 10px;
}

.checkout_pg .box .table thead, .checkout_pg .box .table tbody, .checkout_pg .box .table tfoot, .checkout_pg .box .table tr, .checkout_pg .box .table td, .checkout_pg .box .table th {
    border-color: unset;
    border-style: unset;
    border-width: unset;
}

.checkout_pg .box .table thead tr {
    background-color: #252835;
    border-radius: 25px;
}

.checkout_pg .box .table thead tr th {
    color: #fff;
    font-size: 14px;
    padding: 1rem 1rem;
}

.checkout_pg .box .table thead tr th:nth-child(1) {
    border-radius: 0 25px 25px 0;
}

.checkout_pg .box .table thead tr th:last-child {
    border-radius: 25px 0 0 25px;
}

.checkout_pg .box .table td {
    vertical-align: middle;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.checkout_pg .box .table td .prodImg {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 15px;
    -o-object-fit: cover;
    object-fit: cover;
}

.checkout_pg .box .table td .qty-container {
    padding: 0;
}

.checkout_pg .box .table tr:last-child td {
    border-bottom: 1px solid transparent;
}

.checkout_pg .box .summary_box {
    padding: 0 25px;
}

.checkout_pg .box .summary_box .label {
    font-size: 12px;
    margin-bottom: 0;
}

.checkout_pg .box .summary_box span {
    font-size: 14px;
}

.checkout_pg .box .summary_box .item:last-child .label, .checkout_pg .box .summary_box .item:last-child span {
    font-weight: bold;
}

.checkout_pg .details_box .label {
    color: #3A3F54;
    font-size: 15px;
}

.checkout_pg .details_box .label i {
    color: var(--primary);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.checkout_pg .details_box .data {
    color: #474747;
    margin-bottom: 0;
    font-size: 13px;
}

.checkout_pg .file-upload {
    display: block;
    font-size: 12px;
    position: relative;
}

.checkout_pg .file-upload .file-select {
    display: block;
    border: 2px solid #EEEEEE;
    color: #2B2B2B;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.checkout_pg .file-upload .file-select .file-select-button {
    background: #EEEEEE;
    padding: 0 10px;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 85px;
    font-size: 18px;
    text-align: center;
}

.checkout_pg .file-upload .file-select .file-select-name {
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    position: absolute;
    top: 0;
    inset-inline-start: 90px;
    color: #666;
}

.checkout_pg .file-upload .file-select input[type="file"] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkout_pg .file-upload .file-select:hover {
    border-color: #ccc;
}

.checkout_pg .file-upload .file-select:hover .file-select-button {
    background: #ccc;
    color: #ffffff;
}

.checkout_pg .file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}

.checkout_pg .file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #dce4ec;
    color: #2B2B2B;
    cursor: pointer;
    height: 55px;
    line-height: 55px;
    margin-top: 5px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.checkout_pg .file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 55px;
    line-height: 55px;
}

.checkout_pg .file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

.checkout_pg .file-upload.active .file-select {
    border-color: var(--primary);
}

.checkout_pg .file-upload.active .file-select .file-select-button {
    background: var(--primary);
    color: #ffffff;
}

.checkout_pg .sm_table th, .checkout_pg .sm_table td {
    text-align: center;
    padding: 1rem 0.5rem !important;
    font-size: 12px !important;
}

.map_box iframe {
    border-radius: 20px;
}

/**********************************************
    Start Edit faq_pg
**********************************************/
.faq_pg .accordion .accordion-item {
    border: transparent;
    border-bottom: transparent;
    margin-bottom: 25px;
    border-radius: 15px;
    background-color: #F7F7F7;
    overflow: hidden;
}

.faq_pg .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary);
}

.faq_pg .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq_pg .accordion .accordion-item .accordion-button {
    padding: 2rem 3.3rem;
    font-weight: bold;
    color: #333;
    font-size: 17px;
    border-radius: 15px 15px 0 0;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #eee !important;
    background-color: transparent;
}

.faq_pg .accordion .accordion-item .accordion-button::before {
    content: "\f0d9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    background-image: unset;
    position: absolute;
    inset-inline-start: 30px;
    top: 32px;
    color: var(--primary);
}

.faq_pg .accordion .accordion-item .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: inline-block;
    background-image: unset;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    position: absolute;
    inset-inline-end: 30px;
    top: 24px;
    color: #1C1C1C;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.faq_pg .accordion .accordion-item .accordion-button:focus {
    border-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-bottom-color: #eee !important;
}

.faq_pg .accordion .accordion-item .accordion-body {
    padding: 2rem 1.5rem;
    border-radius: 0 0 15px 15px;
}

.faq_pg .accordion .accordion-item .accordion-body .p {
    font-size: 15px;
    color: #888;
}

/**********************************************
    Start Edit contact_pg
**********************************************/
.contact_pg .sec_title {
    font-size: 21px;
}

.contact_pg .sec_title::after {
    margin: 15px 0 0 0;
}

.contact_pg .form_box .inputLabel {
    font-size: 14px;
    color: #3A3F54;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact_pg .data_box .item {
    font-size: 14px;
    color: #454545;
}

.contact_pg .data_box .item i {
    color: var(--primary);
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}

.consultation_pg .form_box {
    border-radius: 25px;
    padding: 3vw;
    border: 1px solid #eee;
}

.consultation_pg .form_box .drop_box,
.login_pg .form_box .drop_box,
.checkout_pg .form_box .drop_box {
    overflow: hidden;
    height: 50px;
    background-color: transparent;
    border: 1px solid #ced4da;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-radius: 16px;
}

.consultation_pg .form_box .drop_box .kwt-file,
.login_pg .form_box .drop_box .kwt-file,
.checkout_pg .form_box .drop_box .kwt-file {
    width: 100%;
}

.consultation_pg .form_box .drop_box .kwt-file__drop-area,
.login_pg .form_box .drop_box .kwt-file__drop-area,
.checkout_pg .form_box .drop_box .kwt-file__drop-area {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.consultation_pg .form_box .drop_box .kwt-file__drop-area.is-active,
.login_pg .form_box .drop_box .kwt-file__drop-area.is-active,
.checkout_pg .form_box .drop_box .kwt-file__drop-area.is-active {
    background-color: rgba(7, 67, 153, 0.1);
}

.consultation_pg .form_box .drop_box .kwt-file__choose-file,
.login_pg .form_box .drop_box .kwt-file__choose-file,
.checkout_pg .form_box .drop_box .kwt-file__choose-file {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 16px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    color: #888;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
}

.consultation_pg .form_box .drop_box .kwt-file__choose-file.kwt-file_btn-text,
.login_pg .form_box .drop_box .kwt-file__choose-file.kwt-file_btn-text,
.checkout_pg .form_box .drop_box .kwt-file__choose-file.kwt-file_btn-text {
    border-radius: 4px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    font-size: 14px;
}

.consultation_pg .form_box .drop_box .kwt-file__choose-file svg,
.login_pg .form_box .drop_box .kwt-file__choose-file svg,
.checkout_pg .form_box .drop_box .kwt-file__choose-file svg {
    width: 19px;
    height: 19px;
    display: block;
}

.consultation_pg .form_box .drop_box .kwt-file__msg,
.login_pg .form_box .drop_box .kwt-file__msg,
.checkout_pg .form_box .drop_box .kwt-file__msg {
    color: #888;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.consultation_pg .form_box .drop_box .kwt-file__input,
.login_pg .form_box .drop_box .kwt-file__input,
.checkout_pg .form_box .drop_box .kwt-file__input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

.consultation_pg .form_box .drop_box .kwt-file__input:focus,
.login_pg .form_box .drop_box .kwt-file__input:focus,
.checkout_pg .form_box .drop_box .kwt-file__input:focus {
    outline: none;
}

.consultation_pg .form_box .drop_box .kwt-file__delete,
.login_pg .form_box .drop_box .kwt-file__delete,
.checkout_pg .form_box .drop_box .kwt-file__delete {
    display: none;
    position: absolute;
    inset-inline-end: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consultation_pg .form_box .drop_box .kwt-file__delete:before,
.login_pg .form_box .drop_box .kwt-file__delete:before,
.checkout_pg .form_box .drop_box .kwt-file__delete:before {
    content: "";
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}

.consultation_pg .form_box .drop_box .kwt-file__delete:after,
.login_pg .form_box .drop_box .kwt-file__delete:after,
.checkout_pg .form_box .drop_box .kwt-file__delete:after {
    content: "";
    position: absolute;
    opacity: 0;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #e79f9f;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.consultation_pg .form_box .drop_box .kwt-file__delete:hover:after,
.login_pg .form_box .drop_box .kwt-file__delete:hover:after,
.checkout_pg .form_box .drop_box .kwt-file__delete:hover:after {
    -webkit-transform: translate(-50%, -50%) scale(2.2);
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0.1;
}

/**********************************************
    Start Edit login_pg
**********************************************/
.login_pg .sec_title {
    font-size: 21px;
}

.login_pg .sec_title::after {
    margin: 15px 0 0 0;
}

.login_pg .data_box {
    padding: 40px 3vw 80px 3vw;
    border: 1px solid #eee;
    border-radius: 20px;
    height: calc(100% - 0px);
    margin-bottom: 25px;
    position: relative;
}

.login_pg .data_box .p {
    font-size: 14px;
    line-height: 2.2;
}

.login_pg .data_box .butn {
    position: absolute;
    bottom: 40px;
    right: 3vw;
}

.login_pg .form_box {
    padding: 40px 3vw;
    border: 1px solid #eee;
    border-radius: 20px;
}

.login_pg .form_box .inputLabel {
    font-size: 14px;
    color: #3A3F54;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.login_pg .form_box .phone_group {
    position: relative;
}

.login_pg .form_box .phone_group .codeSelect {
    position: absolute;
    left: 2px;
    bottom: 3px;
    border: none !important;
    width: 100px;
    height: 45px !important;
    border-radius: 25px;
}

.login_pg .form_box .phone_group .numInput {
    padding: 0 110px;
    text-align: left;
}

.login_pg .form_box .phone_group .apply_butn {
    position: absolute;
    right: 20px;
    top: 16px;
    color: var(--primary);
    font-size: 13px;
}

.login_pg .form_box .mailCheck_group .apply_butn {
    position: absolute;
    left: 20px;
    bottom: 14px;
    color: var(--primary);
    font-size: 13px;
}

.login_pg .form_box .map_box iframe {
    border-radius: 15px;
}

/**********************************************
    Start Edit about_pg
**********************************************/
.about_pg .text_box .sec_title::after {
    margin: 15px 0 0 0;
}

.about_pg .text_box .p {
    padding: 3vw;
    border-radius: 20px;
    border: 1px solid #eee;
    font-size: 13px;
    line-height: 2.2;
    width: 110%;
    -webkit-margin-start: -10%;
    margin-inline-start: -10%;
    background-color: #fff;
}

.about_pg .sec-img {
    border-radius: 20px;
    height: 500px;
}

.about_pg .about_cards {
    background-color: #fff;
    padding: 60px 3vw;
    border-radius: 25px;
}

.about_pg .about_cards .about_card {
    text-align: center;
    margin-bottom: 25px;
    height: 100%;
    padding: 0 2vw;
    margin: 25px 0;
}

.about_pg .about_cards .about_card .icon {
    -webkit-filter: var(--filterPrimary);
    filter: var(--filterPrimary);
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    margin: 0 auto 25px auto;
}

.about_pg .about_cards .about_card .p {
    font-size: 13px;
    color: #3A3A3A;
    line-height: 2;
}

.about_pg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(18, 56, 100, 0.3);
    background-color: #3A3F54;
    height: 60%;
    top: unset;
}

.team_sec .team_card {
    text-align: center;
}

.team_sec .team_card .teamImg {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 25px auto;
}

.team_sec .team_card .name {
    font-size: 18px;
}

.team_sec .team_card .job {
    font-size: 16px;
    color: #1E1E1E;
}

/**********************************************
    Start Edit content_pg
**********************************************/
.content_pg .head_box {
    height: 275px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.content_pg .head_box .title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 55;
}

.content_pg .head_box::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(18, 56, 100, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
}

.content_pg .txt_box {
    padding: 4vw;
    border-radius: 20px;
    border: 1px solid #eee;
}

.content_pg .txt_box .p {
    font-size: 14px;
    line-height: 2.2;
}

/**********************************************
    Start Edit serviceDet_pg
**********************************************/
.serviceDet_pg .sec-img {
    height: 315px;
    border-radius: 20px;
}

/**********************************************
    Start Edit order_det Page
**********************************************/
.order_det_pg .order-details {
    padding: 0 3vw 3vw;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-top: 120px;
}

.order_det_pg .order-details .order-head {
    border-radius: 20px;
    padding: 2.5vw;
    margin-bottom: 50px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-top: -80px;
    background-color: #fff;
}

.order_det_pg .order-details .order-head p {
    margin: .5rem;
    color: #888;
}

.order_det_pg .order-details .order-head p span {
    font-weight: 500;
    color: #202020;
    margin-right: 15px;
}

.order_det_pg .order-details .order-head p .color-primary {
    color: var(--primary);
}

.order_det_pg .order-details .order-body .checkout_pg .box {
    border: none;
    border-radius: 0;
    padding: 0;
}

.order_det_pg .qr_box {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
    padding: 30px;
    border: 1px solid #9993;
}

.order_det_pg .qr_box .sec-img {
    height: 210px;
    -o-object-fit: contain;
    object-fit: contain;
}

.order_det_pg .pay_box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.order_det_pg .pay_box li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #9993;
}

.order_det_pg .pay_box li:last-of-type {
    border: 0;
    padding-bottom: 0;
}

/**********************************************
    Start Edit notifications_pg
**********************************************/
.notifications_pg .noti_card {
    border-radius: 15px;
    padding: 35px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    -webkit-box-shadow: 3px 6px 15px 0 #5551;
    box-shadow: 3px 6px 15px 0 #5551;
    position: relative;
}

.notifications_pg .noti_card .noti_icon {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-margin-end: 25px;
    margin-inline-end: 25px;
}

.notifications_pg .noti_card .content {
    width: calc(100% - 80px);
}

.notifications_pg .noti_card .content .title {
    font-weight: bold;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.notifications_pg .noti_card .content .p {
    margin-top: 15px;
    color: #888;
}

.notifications_pg .noti_card:hover .noti_icon {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
}

.notifications_pg .noti_card:hover .title {
    color: var(--primary);
}

/**********************************************
    Start Edit orders_pg
**********************************************/
.orders_pg .nav-link {
    width: 140px;
    height: 45px;
    border-radius: 20px 20px 0 0;
    background-color: #E0E0E0;
    color: #555;
    font-size: 13px;
    font-weight: bold;
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
    text-transform: capitalize;
}

.orders_pg .nav-link.active {
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-bottom: transparent;
    color: #000;
}

.orders_pg .tab-content {
    border: 1px solid #E0E0E0;
    border-radius: 20px 0 20px 20px;
    padding: 25px 2vw;
}

.orders_pg .table thead, .orders_pg .table tbody, .orders_pg .table tfoot, .orders_pg .table tr, .orders_pg .table td, .orders_pg .table th {
    border-color: unset;
    border-style: unset;
    border-width: unset;
}

.orders_pg .table thead tr {
    background-color: #252835;
    border-radius: 25px;
}

.orders_pg .table thead tr th {
    color: #fff;
    font-size: 14px;
    padding: 1rem 1rem;
    text-align: center;
}

.orders_pg .table thead tr th:nth-child(1) {
    border-radius: 0 25px 25px 0;
}

.orders_pg .table thead tr th:last-child {
    border-radius: 25px 0 0 25px;
}

.orders_pg .table td {
    vertical-align: middle;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    text-align: center;
}

.orders_pg .table td .prodImg {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 15px;
    -o-object-fit: cover;
    object-fit: cover;
}

.orders_pg .table td .qty-container {
    padding: 0;
}

.orders_pg .table .badge {
    width: 100px;
}

.orders_pg .table tr:last-child td {
    border-bottom: 1px solid transparent;
}

.table td,
.table th {
    white-space: nowrap;
}

/**********************************************
    Start Edit credit_pg
**********************************************/
.credit_pg .prof_card {
    padding: 2rem 1.5rem;
    border: 1xp solid #ddd;
    background-color: #f5f5f5;
}

.credit_pg .prof_card:hover {
    background-color: #f9f9f9;
    -webkit-box-shadow: 3px 6px 10px 0 #0001;
    box-shadow: 3px 6px 10px 0 #0001;
}

.credit_pg .prof_card:hover .label {
    color: var(--primary);
}

/**********************************************
    Start Edit loc_pg
**********************************************/
.loc_pg .loc_card {
    background-color: #f9f9f9;
    border-radius: 25px;
    margin: 0 auto 25px auto;
}

.loc_pg .loc_card .heading {
    padding: 25px;
    border-bottom: 1px solid #ddd;
}

.loc_pg .loc_card .heading .icon-outer {
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    color: var(--primary);
    border-radius: 25px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

.loc_pg .loc_card .heading .title {
    font-size: 1rem;
}

.loc_pg .loc_card .heading .card_butn {
    background-color: transparent;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    font-size: 13px;
}

.loc_pg .loc_card .heading .card_butn.edit {
    color: #3a9b27;
}

.loc_pg .loc_card .heading .card_butn.delete {
    color: #f14343;
}

.loc_pg .loc_card .card-body {
    padding: 1.25rem 2rem;
}

.loc_pg .loc_card .card-body .icon-outer {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-margin-end: 25px;
    margin-inline-end: 25px;
    background-color: #e8f2ff;
    border-radius: 10px;
    color: var(--primary);
    font-size: 25px;
}

.loc_pg .loc_card .card-body .icon-outer .icon {
    width: 45px;
    height: 45px;
    -o-object-fit: contain;
    object-fit: contain;
}

.loc_pg .loc_card .card-body .content {
    width: calc(100% - 80px);
}

/**********************************************
    Start Edit dark_theme
**********************************************/
.dark_theme .d_light_block {
    display: none !important;
}

.dark_theme .d_dark_block {
    display: block !important;
}

.dark_theme .modal,
.dark_theme .navs-container .search-wrapper .overlay {
    background: #0009;
}

.dark_theme .navs-container .search-wrapper .search-inner,
.dark_theme .modal .modal-content {
    background-color: #000f1b;
}

.dark_theme body,
.dark_theme .section,
.dark_theme .product_det .product_det_inner .tab-content .review_item,
.dark_theme .order_det_pg .order-details .order-head,
.dark_theme .orders_pg .nav-link.active,
.dark_theme .navs-container .navbar .has_dropdown .drop_down,
.dark_theme .navs-container .navbar .has_dropdown .drop_down a {
    background-color: #00192e;
}

.dark_theme .pg_header,
.dark_theme .about_pg::after,
.dark_theme .order_det_pg .pay_box,
.dark_theme .navs-container .navbar .has_dropdown .drop_down a:hover,
.dark_theme .loc_pg .loc_card {
    background-color: #00182b;
}

.dark_theme .feedback_sec .feedback_card .user_data::before,
.dark_theme .about_pg .text_box .p,
.dark_theme .about_pg .about_cards,
.dark_theme .footer .newsletter_inner,
.dark_theme .checkout_pg .box .table thead tr,
.dark_theme .orders_pg .table thead tr,
.dark_theme .faq_pg .accordion .accordion-item,
.dark_theme .product_det .product_det_inner .nav-link.active,
.dark_theme .product_det .product_det_inner .tab-content,
.dark_theme .profile_pg .prof_card,
.dark_theme .services_sec,
.dark_theme .navs-container .search-wrapper .search-inner .form-group .form-control {
    background-color: #01233f;
}

.dark_theme .title,
.dark_theme .sec_title,
.dark_theme .feedback_sec .feedback_card .user_data .name,
.dark_theme .pg_header .bread .item,
.dark_theme .team_sec .team_card .name,
.dark_theme .checkout_pg .box h6,
.dark_theme .qty-container .input-qty,
.dark_theme .faq_pg .accordion .accordion-item .accordion-button,
.dark_theme .login_pg .form_box h6,
.dark_theme .content_pg .txt_box h5,
.dark_theme .product_det .product_det_inner .nav-link.active,
.dark_theme .product_det .product_det_inner .tab-content h6,
.dark_theme .color-dark,
.dark_theme .products_pg .categ_box .item .categ_title,
.dark_theme .products_pg .filter_box .item .collapse_title,
.dark_theme .navs-container .search-wrapper .search-inner .close-butn,
.dark_theme .order_det_pg .pay_box li,
.dark_theme .order_det_pg .order-details .order-head p span,
.dark_theme .orders_pg .table a,
.dark_theme .orders_pg .nav-link.active,
.dark_theme .checkout_pg h5,
.dark_theme .navs-container .navbar .has_dropdown .drop_down a,
.dark_theme .loc_pg .loc_card .card-body .content .country,
.dark_theme .footer .newsletter_inner .form-group .icon,
.dark_theme .footer .content .contact_items p i,
.dark_theme .product_det .product_det_inner .tab_wrapper {
    color: #fff !important;
}

.dark_theme p, .dark_theme .p,
.dark_theme .navs-container .navbar .nav-link,
.dark_theme .footer .content .links a,
.dark_theme .checkout_pg .box .form-check-label,
.dark_theme .checkout_pg .box .inputLabel,
.dark_theme .checkout_pg .box .table td,
.dark_theme .orders_pg .table td,
.dark_theme .contact_pg .form_box .inputLabel,
.dark_theme .faq_pg .accordion .accordion-item .accordion-button::after,
.dark_theme .login_pg .form_box .inputLabel,
.dark_theme .label,
.dark_theme .products_pg .categ_box .item .links .link,
.dark_theme .products_pg .filter_box .item .collapse_body .checkboxes .form-check .form-check-label,
.dark_theme .products_pg .filter_box .item .collapse_body .brands_radios .form-check .form-check-label,
.dark_theme .navs-container .search-wrapper .search-inner .form-group .submit-butn,
.dark_theme form .form-check-label,
.dark_theme .login_pg .form_box .price,
.dark_theme .checkout_pg .file-upload .file-select .file-select-name {
    color: #eee !important;
}

.dark_theme .form-control {
    color: #333;
    background-color: #fff !important;
}

.dark_theme .form-control::-webkit-input-placeholder {
    color: #ddd;
}

.dark_theme .form-control:-ms-input-placeholder {
    color: #ddd;
}

.dark_theme .form-control::-ms-input-placeholder {
    color: #ddd;
}

.dark_theme .form-control::placeholder {
    color: #ddd;
}

.dark_theme .color-primary {
    color: #b2d2ff !important;
}

.dark_theme .navs-container .navbar .nav-link.active,
.dark_theme .footer .content .links a:hover {
    color: var(--secondary) !important;
}

.dark_theme .swiper-pagination-bullet {
    background-color: #ccc;
}

.dark_theme .feedback_sec .feedback_card .user_data::after {
    background-color: #01233f;
}

.dark_theme .qty-container .input-qty {
    background-color: transparent;
}

.dark_theme .about_pg .text_box .p,
.dark_theme .checkout_pg .box,
.dark_theme .faq_pg .accordion .accordion-item .accordion-button,
.dark_theme .login_pg .form_box,
.dark_theme .login_pg .data_box,
.dark_theme .content_pg .txt_box,
.dark_theme .product_det .text_box .det_box,
.dark_theme .products_pg .categ_box,
.dark_theme .products_pg .filter_box,
.dark_theme .products_pg .filter_box .item,
.dark_theme .products_pg .search_filter,
.dark_theme .order_det_pg .order-details .order-head,
.dark_theme .order_det_pg .order-details,
.dark_theme .orders_pg .tab-content,
.dark_theme .orders_pg .nav-link,
.dark_theme .orders_pg .table td,
.dark_theme .navs-container .navbar .has_dropdown .drop_down {
    border-color: #8885 !important;
}

.dark_theme .header .bg {
    opacity: .05;
}

.dark_theme .navs-container .navbar .navbar-toggler .navbar-toggler-icon,
.dark_theme .navs-container .navbar .navbar-toggler .navbar-toggler-icon::after,
.dark_theme .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
    background-color: #fff;
}

.dark_theme .footer .copyright_p .alyom_logo {
    filter: invert(990%) sepia(280%) saturate(45%) hue-rotate(0deg) brightness(527%) contrast(145%);
}

.themeToggler {
    /* The switch - the box around the slider */
    /* Hide default HTML checkbox */
    /* The slider */
    /* Rounded sliders */
}

.themeToggler .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.themeToggler .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.themeToggler .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.themeToggler .slider:before {
    position: absolute;
    content: "غامق";
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 9px;
    left: 0px;
    bottom: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 1px solid #00335D;
    background-color: #02233f;
    color: #fff;
    -webkit-box-shadow: 0 0px 15px #2020203d;
    box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #eee;
    box-shadow: 0 0 1px #eee;
}

.themeToggler input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    transform: translateX(24px);
    content: "فاتح";
    background-color: #fff;
    border: 1px solid #eee;
    color: var(--secondary);
}

.themeToggler .slider.round {
    border-radius: 35px;
}

.themeToggler .slider.round:before {
    border-radius: 50%;
}

/*# sourceMappingURL=style.css.map */


.phone_group_float .float_code {
    position: absolute;
    left: 15px;
    bottom: 13px;
    direction: ltr;
    border-inline-end: 1px solid #9995;
    padding-inline-end: 15px;
}

.phone_group_float .form-control {
    padding-inline-start: 80px;
    direction: ltr;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #888;
    margin: auto;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.profile-avatar input {
    position: absolute;
    bottom: 0;
    left: 64%;
    background-color: #fff;
    border-radius: 30px;
    display: inline-block;
    color: #222;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    border: none;
    opacity: 0;
    z-index: 3;
}

.profile-avatar button {
    width: 45px;
    height: 45px;
    -webkit-box-shadow: 0px 0px 10px #ddd;
            box-shadow: 0px 0px 10px #ddd;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    cursor: pointer !important;
    border: 1px solid #eee;
    position: absolute;
    right: 2px;
    bottom: 0px;
    cursor: pointer;
}

.profile-avatar button i {
    position: relative;
    top: 1px;
    cursor: pointer !important;
}

