@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;
  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;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  /*margin: 0;*/
}

input[type="number"] {
  -moz-appearance: textfield;
}

[type="tel"], [type="url"], [type="email"], [type="number"] {
    direction: inherit;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar {
  height: 5px;
}

.whatsapp_butn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 3px 6px 15px 0 #0001;
    background: #eee;
    z-index: 999;
}

.whatsapp_butn .icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*border-radius: 50%;*/
}

/**********************************************
   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 {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  transition: all 0.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;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  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 {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 13px;
}
form .form-control:focus {
  outline: 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);
  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;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: 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;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.in-flex {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.inFlex {
  width: 100%;
  display: inline-flex;
  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: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.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 {
  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 {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.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 {
  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 {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.no-border {
  border: 0px !important;
}

.radius-16 {
  border-radius: 16px;
}

.dark-text {
  color: #252835 !important;
}

.orange-text {
  color: #FC7100 !important;
}

.blue-text {
  color: #074399 !important;
}

.w-10 {
  width: 10% !important;
}

.w-30 {
  width: 30% !important;
}

.text-success {
  color: #34C759 !important;
}

.text-danger {
  color: #FF3B30 !important;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination,
.section .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet,
.section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.section .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.section .swiper-button-next,
.section .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.section .swiper-button-next::before,
.section .swiper-button-prev::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--primary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.section .swiper-button-next:hover,
.section .swiper-button-prev:hover {
  background-color: var(--secondary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before,
.section .swiper-button-next:hover::before,
.section .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.section .swiper-button-next,
.section .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,
.section .swiper-button-next::before,
.section .swiper-container-rtl .swiper-button-prev::before {
  content: "\f178";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.section .swiper-button-prev,
.section .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,
.section .swiper-button-prev::before,
.section .swiper-container-rtl .swiper-button-next::before {
  content: "\f177";
}

.butn {
  position: relative;
  padding: 0.7rem 1.7rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  font-weight: bold;
  border-radius: 25px;
}
.butn i {
  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-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--primary);
  margin: 0 4px;
  display: flex;
  justify-content: 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 {
  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: flex;
  flex-direction: row-reverse;
  font-size: 2em;
  justify-content: space-around;
  padding: 0 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;
}

/**********************************************
   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;
  box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.0666666667);
  border: 1px solid #eee;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  overflow: hidden;
  transition: all 0.3s linear;
}
.navs-container .navbar .has_dropdown .drop_down a {
  font-size: 13px;
  display: block;
  padding: 0.95rem 1rem;
  background-color: #fff;
  width: 100%;
}
.navs-container .navbar .has_dropdown .drop_down a:hover {
  background-color: #f9f9f9;
  padding-inline-start: 1.5rem;
}
.navs-container .navbar .has_dropdown:hover .drop_down {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}
.navs-container .navbar .nav_end .butn {
  margin: 0 3px;
  box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.0666666667);
}
.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;
  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 {
  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;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  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);
  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: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.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;
  transition: all 0.3s linear;
  opacity: 0;
  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 {
  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: 0.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;
  transition: all 0.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;
  transition: all 0.3s linear;
}
.navs-container .search-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.navs-container .search-wrapper.active .search-inner {
  opacity: 1;
  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 {
  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: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
  color: var(--primary);
  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 {
  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);
  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%;
  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;
  transition: all 0.3s linear;
}
.header .categ_card .title {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  color: #252835;
  transition: all 0.3s linear;
}
.header .categ_card .title::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.3s linear;
  margin: 15px auto 0 auto;
  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 {
  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: 0.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 {
  flex-wrap: wrap;
  font-size: 19px;
  display: flex;
  justify-content: center;
  align-items: end;
}
.products_sec .prod_card .butns {
  position: absolute;
  bottom: 0;
}
.products_sec .prod_card .butns .butn {
  transform: translateY(110%);
}
.products_sec .prod_card .butns .butn:nth-child(2) {
  transition-delay: 0.2s;
}
.products_sec .prod_card:hover .butns .butn {
  transform: translateY(0);
}

.favorites_pg .prod_card .butns .butn {
  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;
  transition: all 0.3s linear;
}
.services_sec .service_card .title {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  color: #fff;
  transition: all 0.3s linear;
}
.services_sec .service_card .title::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.3s linear;
  margin: 15px auto 0 auto;
  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 {
  transform: scale(1);
  opacity: 1;
}

.downloading_sec .inner {
  position: relative;
}
.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: #fff;
}
.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%;
  transform: translateY(-50%);
}

.downloading_sec .inner p {
  color: #fff;
}

.down_butns .down_link {
  background-color: #fff;
  border-radius: 20px;
  padding: 0.8rem 1.5rem;
}
.down_butns .down_link .icon {
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline-start: 15px;
}
.down_butns .down_link span {
  font-size: 11px;
  transition: all 0.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;
}


.partners_sec .partnerLogo {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 85%;
  display: block;
  margin: auto;
}




.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;
  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: -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;
  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: flex;
  justify-content: 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;
  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;
  transition: all 0.3s linear;
}
.product_det .text_box .share_box .share_links.active a {
  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: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border: 1px solid #eee;
  transform: scaleX(0) translateY(-30px);
  visibility: hidden;
  opacity: 0;
  transform-origin: left center;
  perspective: 1000px;
}
.product_det .text_box .share_box .share_links a:nth-child(2) {
  transition-delay: 0.1s;
}
.product_det .text_box .share_box .share_links a:nth-child(3) {
  transition-delay: 0.2s;
}
.product_det .text_box .share_box .share_links a:nth-child(4) {
  transition-delay: 0.3s;
}
.product_det .text_box .share_box .share_links a:nth-child(5) {
  transition-delay: 0.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;
  margin-inline-end: 7px;
}
.product_det .product_det_inner .nav-link.active {
  background-color: #f7f7f7;
  color: var(--primary);
}
.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%;
  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: 0.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: flex;
  flex-direction: row-reverse;
  font-size: 12px;
  justify-content: space-around;
  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: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 0.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;
  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: flex;
  align-items: center;
  background-color: #D9D9D9;
  transition: all 0.3s linear;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  margin-bottom: 20px;
}
.profile_pg .prof_card .icon {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: var(--primary);
  font-size: 25px;
  margin-inline-end: 15px;
  border-radius: 50%;
}
.profile_pg .prof_card .label {
  margin-bottom: 0;
  transition: all 0.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;
  /*height: calc(100% - 48px);*/
}
.checkout_pg .box .form-check-label {
  color: #454545;
  font-size: 13px;
}
.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);
  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 .table .butns .sm_butn {
    width: 30px;
    height: 30px;
    margin: 5px;
    font-size: 13px;
}

.checkout_pg .box .table .butns .check_butn {
    
}

.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);
  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;
  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;
  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;
}

.checkout_pg .drop_box ,
.locModal .drop_box {
  overflow: hidden;
  height: 50px;
  background-color: transparent;
  border: 1px solid #ced4da;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 16px;
}
.checkout_pg  .drop_box .kwt-file ,
.locModal .drop_box .kwt-file{
  width: 100%;
}
.checkout_pg  .drop_box .kwt-file__drop-area ,
.locModal .drop_box .kwt-file__drop-area{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  transition: 0.3s;
}
.checkout_pg  .drop_box .kwt-file__drop-area.is-active,
.locModal .drop_box .kwt-file__drop-area.is-active {
  background-color: rgba(7, 67, 153, 0.1);
}
.checkout_pg  .drop_box .kwt-file__choose-file,
.locModal .drop_box .kwt-file__choose-file{
  flex-shrink: 0;
  border-radius: 16px;
  margin-inline-end: 10px;
  color: #888;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.checkout_pg  .drop_box .kwt-file__choose-file.kwt-file_btn-text,
.locModal .drop_box  .kwt-file__choose-file.kwt-file_btn-text  {
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
}
.checkout_pg  .drop_box .kwt-file__choose-file svg,
.locModal .drop_box .kwt-file__choose-file svg{
  width: 19px;
  height: 19px;
  display: block;
}
.checkout_pg  .drop_box .kwt-file__msg ,
.locModal .drop_box .kwt-file__msg {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout_pg  .drop_box .kwt-file__input,
.locModal .drop_box .kwt-file__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.checkout_pg  .drop_box .kwt-file__input:focus ,
.locModal .drop_box .kwt-file__input:focus {
  outline: none;
}
.checkout_pg  .drop_box .kwt-file__delete,
.locModal .drop_box .kwt-file__delete {
  display: none;
  position: absolute;
  inset-inline-end: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.checkout_pg  .drop_box .kwt-file__delete:before,
.locModal .drop_box .kwt-file__delete:before  {
  content: "";
  position: absolute;
  left: 0;
  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");
}
.checkout_pg  .drop_box .kwt-file__delete:after ,
.locModal .drop_box .kwt-file__delete:after  {
  content: "";
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgb(231, 159, 159);
  border-radius: 50%;
  transition: 0.3s;
}
.checkout_pg  .drop_box .kwt-file__delete:hover:after ,
.locModal .drop_box  .kwt-file__delete:hover:after  {
  transform: translate(-50%, -50%) scale(2.2);
  opacity: 0.1;
}

.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 {
  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;
  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;
  transform: rotate(0deg);
  position: absolute;
  inset-inline-end: 30px;
  top: 24px;
  color: #1C1C1C;
  transition: all 0.3s linear;
}
.faq_pg .accordion .accordion-item .accordion-button:focus {
  border-color: transparent !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);
  margin-inline-end: 7px;
}

.consultation_pg .form_box {
  border-radius: 25px;
  padding: 3vw;
  border: 1px solid #eee;
}
.consultation_pg .form_box .drop_box {
  overflow: hidden;
  height: 50px;
  background-color: transparent;
  border: 1px solid #ced4da;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 16px;
}
.consultation_pg .form_box .drop_box .kwt-file {
  width: 100%;
}
.consultation_pg .form_box .drop_box .kwt-file__drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  transition: 0.3s;
}
.consultation_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 {
  flex-shrink: 0;
  border-radius: 16px;
  margin-inline-end: 10px;
  color: #888;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.consultation_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 {
  width: 19px;
  height: 19px;
  display: block;
}
.consultation_pg .form_box .drop_box .kwt-file__msg {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.consultation_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 {
  outline: none;
}
.consultation_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 {
  content: "";
  position: absolute;
  left: 0;
  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 {
  content: "";
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgb(231, 159, 159);
  border-radius: 50%;
  transition: 0.3s;
}
.consultation_pg .form_box .drop_box .kwt-file__delete:hover:after {
  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%;
  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 {
  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%;
  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: 0.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 rgba(153, 153, 153, 0.2);
}
.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: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.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;
  box-shadow: 3px 6px 15px 0 rgba(85, 85, 85, 0.0666666667);
  position: relative;
}
.notifications_pg .noti_card .noti_icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline-end: 25px;
}
.notifications_pg .noti_card .content {
  width: calc(100% - 80px);
}
.notifications_pg .noti_card .content .title {
  font-weight: bold;
  transition: all 0.3s linear;
}
.notifications_pg .noti_card .content .p {
  margin-top: 15px;
  color: #888;
}
.notifications_pg .noti_card:hover .noti_icon {
  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;
  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;
  box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.0666666667);
}
.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: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 25px;
  margin-inline-end: 15px;
}
.loc_pg .loc_card .heading .title {
  font-size: 1rem;
}
.loc_pg .loc_card .heading .card_butn {
  background-color: transparent;
  margin-inline-end: 10px;
  font-size: 13px;
}
.loc_pg .loc_card .heading .card_butn.edit {
  color: rgb(58, 155, 39);
}
.loc_pg .loc_card .heading .card_butn.delete {
  color: rgb(241, 67, 67);
}
.loc_pg .loc_card .card-body {
  padding: 1.25rem 2rem;
}
.loc_pg .loc_card .card-body .icon-outer {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  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 .modal,
.dark_theme .navs-container .search-wrapper .overlay {
  background: rgba(0, 0, 0, 0.6);
}
.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 {
  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: #fff;
  background-color: transparent !important;
}
.dark_theme .form-control::-moz-placeholder {
  color: #ddd;
}
.dark_theme .form-control::placeholder {
  color: #ddd;
}
.dark_theme .color-primary {
  color: #5694eb !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: rgba(136, 136, 136, 0.3333333333) !important;
}
.dark_theme .header .bg {
  opacity: 0.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;
}

.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;
  transition: 0.4s;
}
.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  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;
  transition: 0.4s;
  border: 1px solid #00335D;
  background-color: #02233f;
  color: #fff;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
}
.themeToggler input:focus + .slider {
  box-shadow: 0 0 1px #eee;
}
.themeToggler input:checked + .slider:before {
  transform: translateX(24px);
  content: "Light";
  background-color: #fff;
  border: 1px solid #eee;
  color: var(--secondary);
}
.themeToggler .slider.round {
  border-radius: 35px;
}
.themeToggler .slider.round:before {
  border-radius: 50%;
}

.pagination_inputs .page-item {
  position: relative;
  overflow: hidden;
}

.pagination_inputs .page-item input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}

.steps-section {
  background-image: url(../images/calculation/calc-bg.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
}
.steps-section .input-group {
  border: 1px solid #D9D9D9;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0px 3px 83px 0 rgba(0, 0, 0, 0.0666666667);
}
.steps-section .input-group .input-group-text {
  border: 0px;
  border-left: 1px solid #D9D9D9;
  background-color: transparent;
}
.steps-section .input-group .form-control.input {
  border: 0px;
  border-right: 1px solid #D9D9D9;
  font-size: 24px;
  text-align: center;
}
.steps-section .progress {
  height: 0.4rem;
  background-color: #D9D9D9;
}
.steps-section .progress .progress-bar {
  background-color: #FC7100;
}
.steps-section .btn-group .btn-outline-secondary {
  width: 100px;
  height: 95px;
  border-radius: 10px !important;
  margin: 0 10px;
  border: 1px solid #D9D9D9;
  color: black;
  box-shadow: 0px 3px 83px 0 rgba(0, 0, 0, 0.0666666667);
}
.steps-section .btn-group .btn-outline-secondary:hover {
  background-color: transparent;
}
.steps-section .btn-group .btn-check:focus + .btn-outline-secondary,
.steps-section .btn-group .btn-outline-secondary:focus {
  box-shadow: none;
}

.btn-primary {
  background-color: var(--primary);
}

.btn-gray {
  background-color: #D9D9D9;
  color: black;
}

.villa-type .btn-outline-dark {
  border-color: transparent !important;
  border-radius: 4px !important;
  margin: 0 60px !important;
}
.villa-type .btn-outline-dark .img,
.villa-type .btn-outline-dark .check-icon {
  border-radius: 100% !important;
  border: 1px solid black;
}
.villa-type .btn-outline-dark .img {
  width: 145px;
  height: 145px;
  line-height: 145px;
}
.villa-type .btn-outline-dark .check-icon {
  width: 120px;
  height: 120px;
  line-height: 135px;
  margin: auto;
}
.villa-type .btn-outline-dark:hover,
.villa-type .btn-check:checked + .btn-outline-dark,
.villa-type .btn-check:active + .btn-outline-dark,
.villa-type .btn-outline-dark:active,
.villa-type .btn-outline-dark.active,
.villa-type .btn-outline-dark.dropdown-toggle.show {
  background-color: transparent !important;
  border-color: #FC7100 !important;
}
.villa-type .btn-check:focus + .btn-outline-dark,
.villa-type .btn-outline-dark:focus {
  box-shadow: none !important;
  border: 1px solid #FC7100 !important;
}/*# sourceMappingURL=style.css.map */


.checkout_pg .box.price-now {
  background-color: #eaeaff;
  border: 0;
}

.checkout_pg .box.price-needed {
  background-color: #fffce1;
  border: 0;
}

.checkout_pg .box.price-res {
  background-color: #e8fee8;
  border: 0;
}


.steps-section {
  background-image: url(../images/calculation/calc-bg.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
}
.steps-section .total {
  background-color: white;
  box-shadow: 0px 3px 83px 0 rgba(0, 0, 0, 0.0666666667);
  border: 1px solid #D9D9D9 !important;
}
.steps-section .input-group {
  border: 1px solid #D9D9D9;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0px 3px 83px 0 rgba(0, 0, 0, 0.0666666667);
}
.steps-section .input-group .input-group-text {
  border: 0px;
  border-left: 1px solid #D9D9D9;
  background-color: transparent;
}
.steps-section .input-group .form-control.input {
  border: 0px;
  border-right: 1px solid #D9D9D9;
  font-size: 24px;
  text-align: center;
}
.steps-section .progress {
  height: 0.4rem;
  background-color: #D9D9D9;
}
.steps-section .progress .progress-bar {
  background-color: #FC7100;
}
.steps-section .btn-group .btn-outline-secondary {
  border-radius: 10px !important;
  margin: 0 10px;
  border: 1px solid #D9D9D9;
  color: black;
  box-shadow: 0px 3px 83px 0 rgba(0, 0, 0, 0.0666666667);
}
.steps-section .btn-group .btn-outline-secondary:hover {
  background-color: transparent;
}
.steps-section .btn-group .with-height.btn-outline-secondary {
  width: 100px;
  height: 95px;
}
.steps-section .btn-group .btn-check:focus + .btn-outline-secondary,
.steps-section .btn-group .btn-outline-secondary:focus {
  box-shadow: none;
}
.steps-section .card-details {
  box-shadow: 0px 3px 83px 0 rgba(0, 0, 0, 0.0666666667);
  border: 1px solid #D9D9D9 !important;
}
.steps-section .card-details ul li p {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
}

.btn-primary {
  background-color: var(--primary);
}

.btn-gray {
  background-color: #D9D9D9;
  color: black;
}

.villa-type .btn-outline-dark {
  border-color: transparent !important;
  border-radius: 4px !important;
  margin: 0 60px;
}
.villa-type .btn-outline-dark .img,
.villa-type .btn-outline-dark .check-icon {
  border-radius: 100% !important;
  border: 1px solid black;
}
.villa-type .btn-outline-dark .img {
  width: 145px;
  height: 145px;
  line-height: 145px;
}
.villa-type .btn-outline-dark .check-icon {
  width: 120px;
  height: 120px;
  line-height: 135px;
}
.villa-type .btn-outline-dark:hover,
.villa-type .btn-check:checked + .btn-outline-dark,
.villa-type .btn-check:active + .btn-outline-dark,
.villa-type .btn-outline-dark:active,
.villa-type .btn-outline-dark.active,
.villa-type .btn-outline-dark.dropdown-toggle.show {
  background-color: transparent !important;
  border-color: #FC7100 !important;
}
.villa-type .btn-check:focus + .btn-outline-dark,
.villa-type .btn-outline-dark:focus {
  box-shadow: none !important;
  border: 1px solid #FC7100 !important;
}

.full-width {
  width: 100% !important;
}

.grey-text {
  color: #4F4F4F !important;
}/*# sourceMappingURL=style.css.map */
.steps-section .last-step .btn-group .btn-outline-secondary{
  height: auto!important;
}


/* ------------ cart new style ------------- */
.cart_pg {
  position: relative;
}
.cart_pg .products .item {
  position: relative;
  display: flex;
  margin-top: 20px;
  border-radius: 15px;
  padding: 15px;
  border: 1px solid #9995;
}
.cart_pg .products .item .prod-img  {
  position: relative;
  margin-inline-end: 30px;
  flex-shrink: 0;
}
.cart_pg .products .item .prod-img img {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  object-fit: cover;
}
.cart_pg .products .item .main-inf h6 {
  font-size: 14px;
  margin-bottom: 15px;
}
.cart_pg .products .item .main-inf .text {
  font-size: 13px;
  color: #777;
}
.cart_pg .products .item .qty-container {
  display: inline-flex;
  height: 45px;
  margin-top: 30px;
}
.cart_pg .products .item .qty-container .input-qty {
  max-width: 45px;
  height: 40px !important;
}

.cart_pg .products .item .float-icons {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
}

.cart_pg .products .item .float-icons .ico {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #9995;
  margin: 5px;
  border-radius: 50%;
}

.cart_pg .products .item .float-icons .ico.success-btn {
  background-color: #34C75910;
  color: #34C759;
  border-color: #34C759;
}

.cart_pg .products .item .float-icons .ico.trash-btn {
  background-color: #FF3B3010;
  color: #FF3B30;
  border-color: #FF3B30;
}

.cart_pg .checkout-side {
  position: relative;
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-top: 67px;
  position: sticky;
  top: 30px;
}

.cart_pg .checkout-side .card-box {
  position: relative;
  padding: 20px;
  border: 1px solid #9995;
  border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.cart_pg .checkout-side .card-box .sec_title {
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 5px !important;
  margin-bottom: 10px !important;
}

.cart_pg .checkout-side .card-box .copoun_box {
  position: relative;
}

.cart_pg .checkout-side .card-box .copoun_box .butn {
  position: absolute !important;
  left: 5px;
  top: 5px;
  margin: 0 !important;
  font-size: 9px;
  padding: 12px 25px !important;
}

.cart_pg .checkout-side .card-box .copoun_box .form-control {
  border-radius: 30px;
  height: 50px !important;
  font-size: 12px !important;
  border: 0;
  box-shadow: 10px 10px 30px #00000005;
}

.cart_pg .checkout-side .card-box .small {
  font-size: 11px !important;
}

.cart_pg .checkout-side .card-box textarea {
  border-radius: 10px;
  font-size: 12px;
  padding: 10px;
  border: 0;
  box-shadow: 10px 10px 30px #00000005;
}

.cart_pg .checkout-side .checkout-list {
  position: relative;
}

.cart_pg .checkout-side .checkout-list li {
  position: relative;
  margin: 20px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

.cart_pg .checkout-side .checkout-list li:last-of-type {
  border-top: 1px solid #9995;
  padding-top: 20px;
}

.cart_pg .products_sec .prod_card:hover .butns .butn {
  font-size: 12px;
}



