@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
:root {
    --main-color: #06c191;
    --second-color: #038a4f;
    --font-color: #C4C4C4;
}

@font-face {
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/helvetica-light.ttf") format("truetype");
}

@font-face {
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Helvetica.ttf") format("truetype");
}

@font-face {
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Helvetica-Bold.ttf") format("truetype");
}

body {
  font-family: Almarai, Arial, sans-serif;
  font-size: 16px;
  text-align: right;
  direction: rtl;
  min-height: 100vh;
  background: #FFFFFF;
  font-weight: 400;
  color: #2D2D2D;
}

body.show-menu {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  background: #FFF;
}

body::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scroll::-webkit-scrollbar-thumb {
  background: #F6F6F6;
}

.form-control:focus {
  border-color: var(--main-color);
}

.form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #B7B8B9;
  font-weight: 300;
}

.form-control::-moz-placeholder {
  font-size: 14px;
  color: #B7B8B9;
  font-weight: 300;
}

.form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #B7B8B9;
  font-weight: 300;
}

.form-control::-ms-input-placeholder {
  font-size: 14px;
  color: #B7B8B9;
  font-weight: 300;
}

.form-control::placeholder {
  font-size: 14px;
  color: #B7B8B9;
  font-weight: 300;
}

.go-top {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #FAFAFA;
  -webkit-box-shadow: 0 13px 13px rgba(0, 0, 0, 0.07);
          box-shadow: 0 13px 13px rgba(0, 0, 0, 0.07);
  position: fixed;
  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;
  bottom: 50px;
  right: -100%;
  cursor: pointer;
  -webkit-transition: right 1s;
  transition: right 1s;
  z-index: 99;
    color: var(--second-color);

}

.go-top:hover {
  background: var(--main-color);
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
}

.go-top:hover img {
  -webkit-filter: invert(0) brightness(10);
          filter: invert(0) brightness(10);
}

@media (max-width: 575px) {
  .go-top {
    bottom: 20px;
    width: 35px;
    height: 35px;
  }
  .go-top img {
    width: 15px;
  }
}

.go-top.show {
  right: 83px;
}

@media (max-width: 575px) {
  .go-top.show {
    right: 20px;
  }
}

.btn-primary {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
  border-radius: 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;
  font-weight: 500;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0A1950;
  border-color: #0A1950;
}

.btn-primary:hover {
    color: #fff;
    background-color:  var(--second-color);
    border-color:  var(--second-color);

}

.btn-white {
  background: #FFFFFF;
  color: var(--main-color);
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-white:hover {
  background: var(--main-color);
  color: #FFF;
}

.btn-gray {
  background: #B3B3B3;
  border-radius: 8px;
  color: #FFF;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
}

.btn-gray:hover {
  color: #FFF;
  background: var(--second-color);
}

.btn-black {
  padding: 12px 30px;
  background: #000000;
  border-radius: 8px;
  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-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: #FFF;
}

.btn-black:hover {
  background: #292929;
  color: #FFF;
}

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

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

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

button:focus {
  outline: none !important;
}

.btn {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.rest-btn {
  background: transparent;
  border: 0;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0;
  cursor: pointer;
  -webkit-transition: none;
  transition: none;
}

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

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

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 575px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.dropdown-item:active {
  background-color: #f8f9fa !important;
}

.page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1199px) {
  .page-wrapper {
    padding-top: 72px;
  }
}

.content-area {
  padding-top: 23px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header {
  background: #FFF;
  -webkit-box-shadow: 0 1px 0 #F2F2F2;
          box-shadow: 0 1px 0 #F2F2F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0 21px;
}

@media (max-width: 1199px) {
  header {
    padding: 15px 0;
    height: 72px;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
  }
}

header .header-inner {
  width: 100%;
}

header .header-inner .header-wrap {
  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;
}

header .header-inner .header-wrap .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-inner .header-wrap .header-left .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  header .header-inner .header-wrap .header-left .header-logo a > img {
    width: 38px;
  }
}

header .header-inner .header-wrap .header-left .header-logo a .logo-text {
  padding-right: 11px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  header .header-inner .header-wrap .header-left .header-logo a .logo-text {
    display: none;
  }
}

header .header-inner .header-wrap .header-left .header-logo a .logo-text p {
  margin-bottom: 3.7px;
  display: inline;
  color: #395077;
  font-weight: bold;
  font-size: 14px;
}

header .header-inner .header-wrap .header-left .header-logo a .logo-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .header-inner .header-wrap .header-left .header-search {
  margin-right: 45px;
}

@media (max-width: 991px) {
  header .header-inner .header-wrap .header-left .header-search {
    display: none;
  }
}

header .header-inner .header-wrap .header-left .header-search .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-inner .header-wrap .header-left .header-search img {
    left: 10px;
}

header .header-inner .header-wrap .header-left .header-search .search-box .form-control {
  border: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
    width: 350px;
    height: 50px;
    border-radius: 30px;
}

header .header-inner .header-wrap .header-left .header-search .search-box .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: rgba(170, 170, 170, 0.5);
}

header .header-inner .header-wrap .header-left .header-search .search-box .form-control::-moz-placeholder {
  font-size: 14px;
  color: rgba(170, 170, 170, 0.5);
}

header .header-inner .header-wrap .header-left .header-search .search-box .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: rgba(170, 170, 170, 0.5);
}

header .header-inner .header-wrap .header-left .header-search .search-box .form-control::-ms-input-placeholder {
  font-size: 14px;
  color: rgba(170, 170, 170, 0.5);
}

header .header-inner .header-wrap .header-left .header-search .search-box .form-control::placeholder {
  font-size: 14px;
  color: rgba(170, 170, 170, 0.5);
}

header .header-inner .header-wrap .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-toggle {
  position: relative;
}

@media (max-width: 1199px) {
  header .header-inner .header-wrap .header-right .header-notification .dropdown-toggle {
    top: 3px;
  }
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-toggle:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 8px;
  height: 8px;
  background: var(--font-color);
  border-radius: 50%;
  display: none;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-toggle:after {
  display: none;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-toggle.active:before {
  display: block;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu {
  min-width: 268px;
  border-radius: 5px;
  border: 0;
  -webkit-box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  max-height: 300px;
  overflow-y: auto;
}

@media (max-width: 767px) {
  header .header-inner .header-wrap .header-right .header-notification .dropdown-menu {
    min-width: 220px;
  }
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu.show {
  left: -100% !important;
  right: auto !important;
}

@media (max-width: 767px) {
  header .header-inner .header-wrap .header-right .header-notification .dropdown-menu.show {
    right: auto !important;
    top: 10px !important;
    left: 0 !important;
  }
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(57, 80, 119, 0.05);
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item .notification-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item .notification-info .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #395077;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item .notification-info .inner {
  padding-right: 6.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item .notification-info .inner p {
  color: var(--main-color);
  font-size: 11px;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item .notification-info .inner span {
  color: var(--font-color);
  font-size: 8px;
}

header .header-inner .header-wrap .header-right .header-notification .dropdown-menu .dropdown-item .time {
  color: var(--font-color);
  font-size: 8px;
}

header .header-inner .header-wrap .header-right .header-cart {
  margin-right: 24px;
}

@media (max-width: 1199px) {
  header .header-inner .header-wrap .header-right .header-cart {
    margin-right: 15px;
  }
}

header .header-inner .header-wrap .header-right .header-currency {
  margin-right: 12px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle {
  border-radius: 21px;
  border: 1px solid #C4C4C4;
  width: 87px;
  height: 42px;
  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;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle:after {
  display: none;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 3px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box .currency-head {
  font-size: 8px;
  color: var(--font-color);
  line-height: 16px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box .currency-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 16px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box .currency-name > img {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box .currency-name span {
  padding-right: 5px;
  color: #000000;
  font-size: 12px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box .currency-name i {
  padding-right: 12px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-toggle .currency-box .currency-name i img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-menu {
  min-width: 237px;
  border-radius: 5px;
  border: 0;
  -webkit-box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
}

@media (max-width: 767px) {
  header .header-inner .header-wrap .header-right .header-currency .dropdown-menu {
    min-width: 200px;
  }
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-menu.show {
  left: 0 !important;
  right: auto !important;
}

@media (max-width: 767px) {
  header .header-inner .header-wrap .header-right .header-currency .dropdown-menu.show {
    left: 0 !important;
    top: 10px !important;
  }
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-menu .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(57, 80, 119, 0.05);
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown-menu .dropdown-item p {
  margin-right: 10.5px;
  color: var(--main-color);
  font-size: 11px;
}

header .header-inner .header-wrap .header-right .header-currency .dropdown.show .dropdown-toggle {
  border-color: var(--main-color);
}

header .header-inner .header-wrap .header-right .header-currency .dropdown.show .dropdown-toggle .currency-box .currency-name i img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header .header-inner .header-wrap .header-right .header-profile {
  margin-right: 7px;
}

header .header-inner .header-wrap .header-right .header-profile .profile-link a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

header .header-inner .header-wrap .header-right .header-profile .profile-link a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header .toggle-menu {
  display: none;
}

header .toggle-menu img {
  width: 25px;
}

@media (max-width: 1199px) {
  header .toggle-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25px;
    margin-left: 15px;
  }
}

.sidebar {
  padding: 23px;
  padding-top: 50px;
  border: 1px solid #f2f2f2;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1199px) {
  .sidebar {
    position: fixed;
    right: -100%;
    top: 72px;
    z-index: 999;
    background: #FFF;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
    padding: 20px 15px 120px;
  }
  .sidebar.show-menu {
    right: 0;
  }
}

.sidebar .sidebar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sidebar .sidebar-list li {
  position: relative;
  margin-bottom: 13px;
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li {
    margin-bottom: 5px;
  }
}

.sidebar .sidebar-list li .sidebar-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  width: 152px;
  height: 46px;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li .sidebar-link {
    height: 37px;
    padding-right: 10px;
  }
}

.sidebar .sidebar-list li .sidebar-link .icon {
  width: 23px;
  height: 23px;
  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;
}
.sidebar .sidebar-list li.active .sidebar-link .icon i {
    color:#fff;
}

.sidebar .sidebar-list li .sidebar-link span {
  padding-right: 15px;
  color: var(--font-color);
  font-size: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sidebar .sidebar-list li .sidebar-link:hover span {
  color: var(--main-color);
}

.sidebar .sidebar-list li .menu-arrow-mobile {
  display: none;
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li .menu-arrow-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 5px;
  }
}

.sidebar .sidebar-list li.active .sidebar-link {
  border-radius: 100px;
  background: var(--main-color);
}

.sidebar .sidebar-list li.active .sidebar-link span {
  color: #FFF;
}

.sidebar .sidebar-list li.active .sidebar-link .icon img {
  -webkit-filter: invert(1) brightness(100);
          filter: invert(1) brightness(100);
}

.sidebar .sidebar-list li .sub-menu {
  position: absolute;
  right: 100%;
  top: 0;
  min-width: 220px;
  background: #FFF;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 21px 14px 22px;
  border-radius: 5px;
  -webkit-box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 9;
}

.sidebar .sidebar-list li .sub-menu .sub-menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: calc(25px - 13px);
}

.sidebar .sidebar-list li .sub-menu .sub-menu-nav .nav-item .nav-link {
  background: transparent;
  padding: 0;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar .sidebar-list li .sub-menu .sub-menu-nav .nav-item .nav-link i {
  width: 9px;
  height: 9px;
  border: 1px solid #B3B3B3;
  border-radius: 50%;
  background: transparent;
  display: block;
}

.sidebar .sidebar-list li .sub-menu .sub-menu-nav .nav-item .nav-link span {
  padding-right: 8px;
  font-size: 12px;
  color: var(--font-color);
}

.sidebar .sidebar-list li .sub-menu .sub-menu-nav .nav-item .nav-link.active i {
  width: 7px;
  height: 7px;
  border-width: 2px;
  border-color: var(--second-color);
}

.sidebar .sidebar-list li .sub-menu .sub-menu-nav .nav-item .nav-link.active span {
  color: var(--second-color);
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li {
  margin-bottom: 15px;
  padding-left: 15px;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li:last-child {
  margin-bottom: 0;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li i {
  transform: rotate(180deg);
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li > a span {
  font-size: 14px;
  font-weight: bold;
  color: #11142D;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li:hover a span {
  color: var(--second-color);
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li:hover a svg path {
  fill: var(--second-color);
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child {
  position: absolute;
  right: 100%;
  top: 0;
  min-width: 220px;
  background: #FFF;
  padding: 15px;
  border-radius: 5px;
  -webkit-box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 29px 35px rgba(0, 0, 0, 0.06);
  display: none;
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child.show {
    display: block !important;
    right: 0 !important;
    top: 36px !important;
    z-index: 2;
  }
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child ul .sub-menu-item {
  margin-bottom: 11px;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child ul .sub-menu-item:last-child {
  margin-bottom: 0;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child ul .sub-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child ul .sub-menu-item a span {
  color: #515151;
  font-size: 14px;
  direction: ltr;
}

.sidebar .sidebar-list li .sub-menu .tab-pane .sub-menu-list > li .sub-menu-child ul .sub-menu-item a:hover span {
  color: var(--second-color);
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li .sub-menu.show {
    display: block !important;
    right: 0 !important;
    top: 36px !important;
  }
}

.sidebar .sidebar-list li:hover .sub-menu {
  display: block;
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li:hover .sub-menu {
    display: none;
  }
}

.sidebar .sidebar-list li:hover .sub-menu .tab-pane .sub-menu-list > li:hover .sub-menu-child {
  display: block;
}

@media (max-width: 1199px) {
  .sidebar .sidebar-list li:hover .sub-menu .tab-pane .sub-menu-list > li:hover .sub-menu-child {
    display: none;
  }
}

.sidebar .sidebar-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FAFAFA;
  border-radius: 19px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  overflow: hidden;
}

.sidebar .language a {
  color: var(--font-color);
  font-size: 12px;
  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-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 7px 9px;
  text-transform: uppercase;
  border-radius: 19px;
}

.sidebar .language a.active {
  background: #B3B3B3;
  color: #FFFFFF;
}

.main-top-slider .inner {
  gap: 23px;
  display: grid;
  grid-template-columns: 813px 255px;
}

@media (min-width: 1367px) {
  .main-top-slider .inner {
    grid-template-columns: minmax(813px, 3fr) minmax(255px, 1fr);
  }
}

@media (max-width: 1360px) {
  .main-top-slider .inner {
    grid-template-columns: minmax(500px, 2fr) minmax(255px, 1fr);
  }
}

@media (max-width: 991px) {
  .main-top-slider .inner {
    grid-template-columns: minmax(100px, 1fr);
  }
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide {
  height: 324px;
  width: 100%;
}

@media (max-width: 575px) {
  .main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide {
    height: 400px;
  }
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner {
  position: relative;
  height: 324px;
  width: 100%;
}

@media (max-width: 575px) {
  .main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner {
    height: 400px;
  }
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content {
  position: relative;
  z-index: 2;
  padding: 60px;
}

@media (max-width: 575px) {
  .main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content {
    padding: 25px;
  }
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content p {
  color: var(--main-color);
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 7.4px;
  width: 313px;
}

@media (max-width: 575px) {
  .main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content p {
    width: 90%;
    line-height: 45px;
    font-size: 30px;
  }
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content span {
  color: var(--main-color);
  font-size: 14px;
  line-height: 24px;
  display: block;
  width: 298px;
}

@media (max-width: 575px) {
  .main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content span {
    width: 90%;
  }
}

.main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content .btn {
  margin-top: 25px;
  border-radius: 100px;
  padding: 14px 30px;
  line-height: 16px;
}

@media (max-width: 575px) {
  .main-top-slider .inner .main-slider .swiper-main-slider .swiper-slide .main-slider-inner .content .btn {
    padding: 10px 20px;
  }
}

.main-top-slider .inner .stream-banner {
  height: 324px;
  position: relative;
}

@media (max-width: 991px) {
  .main-top-slider .inner .stream-banner {
    height: 250px;
  }
}

.main-top-slider .inner .stream-banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-top-slider .inner .stream-banner a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-top-slider .inner .stream-banner a .content {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 70%;
}

.main-top-slider .inner .stream-banner a .content p {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 13px;
  text-transform: uppercase;
  line-height: 24px;
}

@media (max-width: 991px) {
  .main-top-slider .inner .stream-banner a .content p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.main-top-slider .inner .stream-banner a .content span {
  font-size: 12px;
  font-weight: 300;
  color: #000000;
}

.main-top-slider .inner .stream-banner a .content .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .main-top-slider .inner .stream-banner a .content .number {
    margin-top: 15px;
  }
}

.main-top-slider .inner .stream-banner a .content .number span {
  margin-right: 7px;
  background: #FFF;
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 400;
}

.main-top-slider .inner .stream-banner a .add-user {
  position: absolute;
  bottom: 23px;
  right: 23px;
  padding: 8px 10px;
  background: #FFF;
  border-radius: 8px;
}

.sec-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 23px;
}

.sec-head h5 {
  margin-bottom: 0;
  color: var(--font-color);
  font-size: 20px;
}

.sec-head .view-all {
  font-size: 15px;
  color: #A1A0A3;
  opacity: 0.55;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.sec-head .view-all:hover {
  opacity: 1;
}

.featured-watches-sec {
  margin-top: 29px;
  margin-bottom: 39px;
}

.featured-watches-sec .featured-watches-grid {
  display: grid;
  grid-template-columns: 533px  258px 258px;
  grid-column-gap: 21px;
}

@media (min-width: 1367px) {
  .featured-watches-sec .featured-watches-grid {
    grid-template-columns: minmax(533px, 2fr) minmax(258px, 1fr) minmax(258px, 1fr);
  }
}

@media (max-width: 1360px) {
  .featured-watches-sec .featured-watches-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row-gap: 21px;
  }
}

@media (max-width: 991px) {
  .featured-watches-sec .featured-watches-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 21px;
  }
}

@media (max-width: 767px) {
  .featured-watches-sec .featured-watches-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) {
  grid-row: 1 / 3;
}

@media (max-width: 1360px) {
  .featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) {
    grid-row: 1 / 2;
  }
}

.featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) .info {
  right: 35px;
  bottom: 37px;
}

.featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) .info .watch-link {
  font-size: 24px;
  font-weight: normal;
}

.featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) .info .label {
  font-size: 14px;
}

@media (max-width: 1360px) {
  .featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) .info {
    bottom: 22px;
    right: 25px;
  }
  .featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) .info .watch-link {
    font-size: 15px;
    font-weight: bold;
  }
  .featured-watches-sec .featured-watches-grid .watch-box:nth-child(1) .info .label {
    font-size: 11px;
  }
}

.recently-added-sec {
  margin-bottom: 40px;
}

.recently-added-sec .recently-added-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
}

@media (max-width: 991px) {
  .recently-added-sec .recently-added-inner {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
}

@media (max-width: 767px) {
  .recently-added-sec .recently-added-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.banner-sec .banner-box {
  width: 100%;
  height: 146px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 38px 67px;
    background: linear-gradient(var(--main-color),var(--second-color));
}

@media (max-width: 767px) {
  .banner-sec .banner-box {
    height: 120px;
    padding: 20px;
  }
}

.banner-sec .banner-box img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 991px) {
  .banner-sec .banner-box img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.banner-sec .banner-box .banner-text {
  position: relative;
  z-index: 2;
}

.banner-sec .banner-box .banner-text p {
  font-size: 26px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .banner-sec .banner-box .banner-text p {
    font-size: 20px;
  }
}

.banner-sec .banner-box .banner-text a {
  background: #B3B3B3;
  border-radius: 25px;
  color: var(--main-color);
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 7px 15px;
  line-height: 10px;
  letter-spacing: 0.50px;
}

@media (max-width: 575px) {
  .banner-sec .banner-box .banner-text a {
    font-size: 8px;
  }
}

.accessories-sec {
  margin-top: 39px;
  margin-bottom: 53px;
}

.accessories-sec .accessories-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
}

.accessories-sec .accessories-inner .watch-box {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .accessories-sec .accessories-inner {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
}

@media (max-width: 767px) {
  .accessories-sec .accessories-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.poweredby-sec .sec-head {
  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;
}

@media (max-width: 575px) {
  .poweredby-sec .container {
    display: grid;
    grid-template-columns: minmax(100px, 1fr);
  }
}

.poweredby-sec .poweredby-inner {
  width: 93%;
  margin: auto;
}

@media (min-width: 1600px) {
  .poweredby-sec .poweredby-inner {
    width: 100%;
  }
}

.poweredby-sec .poweredby-slider .swiper-slide div {
  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;
}

.poweredby-sec .poweredby-slider .swiper-slide div img {
  width: 100%;
  height: 100%;
}

.blogs-sec {
  margin-top: 39px;
  margin-bottom: 80px;
  overflow-x: hidden;
}

.blogs-sec .blogs-inner {
  overflow-x: hidden;
}

.blogs-sec .blogs-inner .container {
  overflow: visible;
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .container {
    display: grid;
    grid-template-columns: minmax(100px, 1fr);
  }
}

@media (min-width: 1199px) and (max-width: 1360px) {
  .blogs-sec .blogs-inner .container {
    max-width: 1020px;
  }
}

.blogs-sec .blogs-inner .blog-slider {
  overflow: visible;
  direction: rtl !important;
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .blog-slider {
    width: 100%;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box {
  height: 480px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box {
    height: 300px;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box .blog-img {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.blogs-sec .blogs-inner .blog-slider .blog-box .blog-img img {
  width: 100%;
  height: 100%;
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner {
  position: absolute;
  right: 47px;
  left: 33px;
  bottom: 32px;
  z-index: 2;
}

@media (max-width: 991px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner {
    right: 20px;
    left: 20px;
    bottom: 30px;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner .time {
    margin-bottom: 10px;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner .time span {
  font-size: 14px;
  color: #FFFFFF;
  padding-right: 8.4px;
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner p {
  font-size: 39px;
  font-weight: bold;
  line-height: 46px;
  width: 85%;
  color: #FFF;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner p {
    font-size: 25px;
    margin-bottom: 15px;
    width: 90%;
    line-height: 35px;
  }
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner p {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 25px;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner .blog-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner .blog-foot .read-more {
  color: #FFF;
  font-size: 14px;
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner .blog-foot .read-more {
    font-size: 12px;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box .inner .blog-foot .share-blog {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FFF;
  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;
}

@media (max-width: 575px) {
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner .blog-foot .share-blog {
    width: 30px;
    height: 30px;
  }
  .blogs-sec .blogs-inner .blog-slider .blog-box .inner .blog-foot .share-blog img {
    width: 15px;
  }
}

.blogs-sec .blogs-inner .blog-slider .blog-box:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, right bottom, from(rgba(255, 255, 255, 0.2)), color-stop(115%, black));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, black 115%);
}

.watch-box {
  position: relative;
  background: #FFF;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.watch-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 115px;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--main-color)), color-stop(50%, rgba(14, 20, 29, 0.25)), color-stop(75%, rgba(5, 7, 10, 0.09)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, var(--main-color) 0%, rgba(14, 20, 29, 0.25) 50%, rgba(5, 7, 10, 0.09) 75%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  opacity: 0.31;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.watch-box .img img {
  width: 100%;
  height: 100%;
}

.watch-box .info {
  position: absolute;
  bottom: 22px;
  right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
}

@media (max-width: 575px) {
  .watch-box .info {
    bottom: 15px !important;
    right: 15px !important;
  }
}

.watch-box .info .watch-link {
  display: inline-block;
  color: var(--main-color);
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8.7px;
}

@media (max-width: 575px) {
  .watch-box .info .watch-link {
    font-size: 11px !important;
    margin-bottom: 5px;
    font-weight: normal !important;
  }
}

.watch-box .info .label {
  color: var(--font-color);
  font-size: 11px;
}

.watch-box .info .price {
  display: inline-block;
  margin-top: 10.3px;
  padding: 7px;
  background: var(--second-color);
  color: #FFF;
  font-size: 12px;
  border-radius: 3px;
  line-height: 14px;
}

@media (max-width: 575px) {
  .watch-box .info .price {
    margin-top: 5px;
    padding: 5px;
    font-size: 10px;
  }
}

.watch-box .fav {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FFFFFF;
  padding: 11px 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;
  border-radius: 8px;
  z-index: 3;
}

@media (max-width: 575px) {
  .watch-box .fav {
    top: 10px;
    left: 10px;
  }
}

.watch-box .fav.active svg path {
  fill: #FF6255;
}

.watch-box:hover:after {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--main-color)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, var(--main-color), rgba(0, 0, 0, 0));
  height: 100%;
  opacity: 1;
}

.watch-box:hover .info .watch-link {
  color: #FFF;
}

.page-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 26px;
}

@media (max-width: 575px) {
  .page-breadcrumb {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.page-breadcrumb .name p {
  font-size: 20px;
  font-weight: 400;
  color: var(--font-color);
}

.page-breadcrumb .breadcrumb-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-breadcrumb .breadcrumb-list ul li {
  font-size: 12px;
  color: var(--font-color);
  opacity: 0.7;
  padding: 0 3px;
  text-transform: uppercase;
}

.page-breadcrumb .breadcrumb-list ul li:hover:not(.page-current) {
  opacity: 1;
}

.watches-wrap {
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-column-gap: 20px;
  padding-bottom: 82px;
}

@media (max-width: 767px) {
  .watches-wrap {
    grid-template-columns: 100%;
  }
}

.watches-wrap .no-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .watches-wrap .no-results {
    margin-top: 20px;
  }
}

.watches-wrap .no-results img {
  mix-blend-mode: hard-light;
  pointer-events: none;
}

@media (max-width: 767px) {
  .watches-wrap .no-results img {
    width: 100px;
  }
}

.watches-wrap .no-results p {
  margin-top: 30px;
  color: var(--second-color);
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .watches-wrap .no-results p {
    margin-top: 15px;
    font-size: 16px;
  }
}

.watches-wrap .no-results span {
  text-align: center;
  color: var(--font-color);
  font-size: 15px;
  margin-top: 10px;
  line-height: 20px;
}

.watches-wrap .watches-inner .see-more {
  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;
  margin-top: 60px;
}

.watches-wrap .watches-inner .see-more .btn-gray {
  padding: 16px 41px;
}

@media (max-width: 575px) {
  .watches-wrap .watches-inner .see-more .btn-gray {
    font-size: 12px;
    padding: 10px 15px;
  }
}

.watches-wrap .watches-bxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media (max-width: 991px) {
  .watches-wrap .watches-bxs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aside-filter {
  padding-right: 20px;
}

@media (max-width: 767px) {
  .aside-filter {
    margin-top: 50px;
    padding-right: 0;
  }
}

.aside-filter .filter-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside-filter .filter-head h5 {
  margin-bottom: 0;
  font-size: 20px;
  color: var(--main-color);
  font-weight: bold;
}

.aside-filter .watch-filter-inner .search {
  position: relative;
  margin-bottom: 40px;
}

.aside-filter .watch-filter-inner .search .form-control {
  height: 44px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding-left: 40px;
}

.aside-filter .watch-filter-inner .search .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #AAAAAA;
  opacity: 0.50;
}

.aside-filter .watch-filter-inner .search .form-control::-moz-placeholder {
  font-size: 14px;
  color: #AAAAAA;
  opacity: 0.50;
}

.aside-filter .watch-filter-inner .search .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #AAAAAA;
  opacity: 0.50;
}

.aside-filter .watch-filter-inner .search .form-control::-ms-input-placeholder {
  font-size: 14px;
  color: #AAAAAA;
  opacity: 0.50;
}

.aside-filter .watch-filter-inner .search .form-control::placeholder {
  font-size: 14px;
  color: #AAAAAA;
  opacity: 0.50;
}

.aside-filter .watch-filter-inner .search .search-filter {
  position: absolute;
  left: 16px;
  top: 14.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside-filter .watch-filter-inner .price {
  margin-bottom: 50px;
}

.aside-filter .watch-filter-inner .price .range-wrap .range {
  margin-top: 20px;
}

.aside-filter .watch-filter-inner .price .range-wrap .range-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
}

.aside-filter .watch-filter-inner .price .range-wrap .range-price p {
  color: #11142D;
}

.aside-filter .watch-filter-inner .price .range-wrap .range-price .range-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside-filter .watch-filter-inner .price .range-wrap .range-price .range-value span {
  color: #11142D;
  font-weight: 400;
}

.aside-filter .watch-filter-inner .price .range-wrap .range-price .range-value span.line {
  padding: 0 4px;
}

.aside-filter .watch-filter-inner .categories {
  margin-top: 50px;
  margin-bottom: 50px;
}

.aside-filter .watch-filter-inner .categories .categories-nav {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aside-filter .watch-filter-inner .categories .categories-nav .nav-item .nav-link {
  background: transparent;
  padding: 0;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.aside-filter .watch-filter-inner .categories .categories-nav .nav-item .nav-link i {
  width: 9px;
  height: 9px;
  border: 1px solid #B3B3B3;
  border-radius: 50%;
  background: transparent;
  display: block;
}

.aside-filter .watch-filter-inner .categories .categories-nav .nav-item .nav-link span {
  padding-right: 8px;
  font-size: 14px;
  color: var(--font-color);
}

.aside-filter .watch-filter-inner .categories .categories-nav .nav-item .nav-link.active i {
  border-width: 2px;
  border-color: var(--second-color);
}

.aside-filter .watch-filter-inner .categories .categories-nav .nav-item .nav-link.active span {
  color: var(--second-color);
}

.aside-filter .watch-filter-inner .categories .categories-nav .nav-item:last-child .nav-link {
  margin-left: 0;
}

.aside-filter .watch-filter-inner .categories .tab-content {
  margin-top: 21px;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li {
  width: 100%;
  margin-bottom: 15px;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 9px;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-name span {
  color: #11142D;
  font-weight: bold;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-name i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 11px;
  height: 11px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-name i svg {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-name.show i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-sub-list {
  padding-right: 25px;
  display: none;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-sub-list .categories-sub-item {
  margin-bottom: 11px;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-sub-list .categories-sub-item a {
  font-size: 14px;
  color: #515151;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-sub-list .categories-sub-item a:hover, .aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-sub-list .categories-sub-item a.active {
  color: #BA6D22;
}

.aside-filter .watch-filter-inner .categories .tab-content .categories-menu ul li .categories-sub-list .categories-sub-item a span:nth-child(2) {
  direction: ltr;
}

.aside-filter .watch-filter-inner .sort-by .filter-head {
  margin-bottom: 20px;
}

.aside-filter .watch-filter-inner .sort-by .sort-by-wrap ul li {
  margin-bottom: 10px;
}

.aside-filter .watch-filter-inner .sort-by .sort-by-wrap ul li .checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aside-filter .watch-filter-inner .sort-by .sort-by-wrap ul li .checkbox label p {
  font-size: 14px;
  color: #515151;
}

.aside-filter .watch-filter-inner .sort-by .sort-by-wrap ul li .checkbox label div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.noUi-target {
  background: #e0e2e3;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  height: 1px;
  margin-left: 9px;
}

.noUi-connect {
  background: #E0E0E0;
}

.noUi-horizontal .noUi-handle {
  left: -7px;
  right: auto;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #E0E0E0;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  outline: none;
  cursor: pointer;
  top: -3px;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none;
}

.checkbox,
.radio {
  margin-bottom: 6px;
}

.checkbox.inline,
.radio.inline {
  display: inline-block;
  vertical-align: top;
  margin-right: 18px;
}

.checkbox.inline:last-child,
.radio.inline:last-child {
  margin-right: 0;
}

.checkbox label,
.radio label {
  display: block;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox input[type="checkbox"],
.radio input[type="checkbox"],
.checkbox input[type="radio"],
.radio input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.checkbox .custom-checkbox,
.radio .custom-checkbox,
.checkbox .custom-radio,
.radio .custom-radio {
  display: inline-block;
  vertical-align: top;
  margin: 0 6px 0 0;
  width: 14px;
  height: 14px;
  background: #F5F5F5;
  border: 1px solid transparent;
  position: relative;
}

.radio .custom-radio,
.checkbox .custom-radio {
  width: 18px;
  height: 18px;
}

.checkbox .custom-checkbox {
  border-radius: 5px;
  background: #FFF;
  -webkit-transition: -webkit-box-shadow 180ms ease;
  transition: -webkit-box-shadow 180ms ease;
  transition: box-shadow 180ms ease;
  transition: box-shadow 180ms ease, -webkit-box-shadow 180ms ease;
  top: 0;
}

.checkbox .custom-checkbox,
.radio .custom-checkbox {
  border: 2px solid #B3B3B3;
  border-radius: 3px;
}

.checkbox .icon-check {
  width: 7px;
  height: 7px;
  background-size: cover;
  position: absolute;
  top: 2px;
  left: 1px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 180ms ease;
  transition: all 180ms ease;
  opacity: 0;
}

.checkbox input[type="checkbox"]:checked + .custom-checkbox {
  border-color: var(--second-color);
  background: var(--second-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox input[type="checkbox"]:checked + .custom-checkbox .icon-check {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.radio .custom-radio {
  border-radius: 50%;
  background: #DFDFDF;
  -webkit-box-shadow: inset 0 0 0 12px #fff;
          box-shadow: inset 0 0 0 12px #fff;
  -webkit-transition: all 180ms ease;
  transition: all 180ms ease;
}

.radio input[type="radio"]:checked + .custom-radio {
  border-color: var(--main-color);
  background: var(--main-color);
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}

.icon-check {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.483%201.992l-7.186%207.066-3.778-3.715-2.518%202.475%205.037%204.954%201.259%201.237%209.704-9.541-2.518-2.476z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.collections-wrap {
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-column-gap: 20px;
  padding-bottom: 82px;
}

@media (max-width: 767px) {
  .collections-wrap {
    grid-template-columns: 100%;
  }
}

.collections-wrap .collections-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.collections-wrap .collections-nav {
  margin-bottom: calc(37px - 15px);
}

.collections-wrap .collections-nav .nav-item {
  margin-left: 15px;
  margin-bottom: 15px;
}

.collections-wrap .collections-nav .nav-item .nav-link {
  background-color: transparent;
  border-radius: 4px;
  padding: 0;
}

.collections-wrap .collections-nav .nav-item .nav-link .collection-tab-box {
  width: 105px;
  min-height: 118px;
  border-radius: 4px;
  overflow: hidden;
}

.collections-wrap .collections-nav .nav-item .nav-link .collection-tab-box .img {
  height: 80px;
  background-color: #B3B3B3;
  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;
  border-radius: 4px;
}

.collections-wrap .collections-nav .nav-item .nav-link .collection-tab-box .name {
  background-color: transparent;
  padding: 12px;
  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;
}

.collections-wrap .collections-nav .nav-item .nav-link .collection-tab-box .name p {
  text-transform: uppercase;
  font-size: 11px;
  color: #395077;
}

.collections-wrap .collections-nav .nav-item .nav-link.active .collection-tab-box .img {
  background-color: var(--main-color);
}

.collections-wrap .collections-nav .nav-item .nav-link.active .collection-tab-box .name {
  background-color: rgba(57, 80, 119, 0.05);
}

.collections-wrap .collections-nav .nav-item .nav-link.active .collection-tab-box .name p {
  font-weight: bold;
}

.collections-wrap .collections-inner {
  width: 100%;
}

.collections-wrap .collections-inner .collection-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media (max-width: 991px) {
  .collections-wrap .collections-inner .collection-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collections-wrap .collections-inner .see-more {
  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;
  margin-top: 60px;
}

.collections-wrap .collections-inner .see-more .btn-gray {
  padding: 16px 41px;
}

@media (max-width: 575px) {
  .collections-wrap .collections-inner .see-more .btn-gray {
    font-size: 12px;
    padding: 10px 15px;
  }
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .container {
  padding-left: 0;
  padding-right: 0;
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-wrapper .swiper-slide {
  height: 262px;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-wrapper .swiper-slide {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.8);
  left: 0;
  height: 72px;
  width: 72px;
  right: -31px;
  border-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  top: calc(50% - 20px);
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-next:hover {
  background-color: #FFF;
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-next img {
  position: relative;
  right: 10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-next:after {
  display: none;
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.8);
  height: 72px;
  width: 72px;
  left: -31px;
  right: auto;
  border-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  top: calc(50% - 20px);
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-prev:hover {
  background-color: #FFF;
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-prev img {
  position: relative;
  left: 10px;
}

.product-details-wrap .product-det-top .product-det-right .product-det-slider .swiper-button-prev:after {
  display: none;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock {
  background-color: #F7F7F7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  margin-top: 12px;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .out-of-stock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .out-of-stock .text {
    margin-bottom: 15px;
  }
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .text .inner {
  margin-right: 16px;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .text .inner h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: #FF0909;
  margin-bottom: 0;
  line-height: 29px;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .text .inner p {
  font-size: 13px;
  color: var(--font-color);
  opacity: 0.80;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .btn-request {
  border: 1px solid #B3B3B3;
  border-radius: 8px;
  padding: 11px 13px;
  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;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .btn-request span {
  padding-right: 6px;
  font-weight: bold;
  font-size: 14px;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 19px;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .btn-request:hover {
  background-color: var(--main-color);
  color: #FFF;
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .btn-request:hover img {
  -webkit-filter: invert(0) brightness(10);
          filter: invert(0) brightness(10);
}

.product-details-wrap .product-det-top .product-det-right .out-of-stock .btn-request:hover span {
  color: #FFF;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-top .product-det-right .info {
    margin-top: 30px;
  }
}

.product-details-wrap .product-det-top .product-det-right .info .name {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
  line-height: 45px;
  margin-bottom: 10px;
  margin-top: 31px;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .info .name {
    font-size: 25px;
    line-height: 35px;
  }
}

.product-details-wrap .product-det-top .product-det-right .info .price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.product-details-wrap .product-det-top .product-det-right .info .price-wrap .price {
  color: var(--second-color);
  font-weight: bold;
  font-size: 31px;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .info .price-wrap .price {
    font-size: 28px;
  }
}

.product-details-wrap .product-det-top .product-det-right .info .price-wrap .old-price {
  font-size: 31px;
  color: #9A9AB0;
  margin-right: 18px;
  position: relative;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .info .price-wrap .old-price {
    font-size: 28px;
  }
}

.product-details-wrap .product-det-top .product-det-right .info .price-wrap .old-price:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 110%;
  height: 3px;
  background-color: #9A9AB0;
}

.product-details-wrap .product-det-top .product-det-right .info .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 11px;
}

.product-details-wrap .product-det-top .product-det-right .info .review .review-star ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details-wrap .product-det-top .product-det-right .info .review .review-star ul li {
  margin-left: 7px;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .info .review .review-star ul li {
    margin-left: 2px;
  }
}

.product-details-wrap .product-det-top .product-det-right .info .review .review-star ul li:last-child {
  margin-left: 0;
}

.product-details-wrap .product-det-top .product-det-right .info .review .review-btn {
  margin-right: 17px;
  background: #000000;
  border-radius: 8px;
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 20px;
  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;
  line-height: 19px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-top .product-det-right .info .review .review-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.product-details-wrap .product-det-top .product-det-right .info .review .review-btn:hover {
  background: #474747;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-top .main-img-grid {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.product-details-wrap .product-det-top .product-det-left {
  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;
  height: 538px;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-top .product-det-left {
    height: 300px;
    margin-bottom: 50px;
  }
}

.product-details-wrap .product-det-top .product-det-left .product-det-main-img {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.product-details-wrap .product-det-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 13px;
    justify-content: space-between;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-details-wrap .product-det-info .right {
  margin-left: 57px;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-info .right {
    margin-left: 0;
  }
}

.product-details-wrap .product-det-info .right .description {
  margin-bottom: 30px;
}

.product-details-wrap .product-det-info .right .description .head {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 16px;
}

.product-details-wrap .product-det-info .right .description p {
  margin-bottom: 20px;
  color: #666666;
  font-size: 16px;
  line-height: 20px;
}

.product-details-wrap .product-det-info .right .specifications {
  margin-bottom: 73px;
}

.product-details-wrap .product-det-info .right .specifications .head {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-details-wrap .product-det-info .right .specifications .specifications-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-info .right .specifications .specifications-wrap ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.product-details-wrap .product-det-info .right .specifications .specifications-wrap ul li label {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--font-color);
}

@media (max-width: 575px) {
  .product-details-wrap .product-det-info .right .specifications .specifications-wrap ul li label {
    margin-bottom: 10px;
  }
}

.product-details-wrap .product-det-info .right .specifications .specifications-wrap ul li p {
  color: #666666;
  line-height: 20px;
}

.product-details-wrap .product-det-info .right .choose-sec {
  margin-bottom: 22px;
}

.product-details-wrap .product-det-info .right .choose-sec .head {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 11px;
}

.product-details-wrap .product-det-info .right .choose-sec .boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details-wrap .product-det-info .right .choose-sec .boxs .choose-box {
  width: 64px;
  background: #FAFAFA;
  border-radius: 19px;
  height: 32px;
  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;
  cursor: pointer;
  margin-left: 7px;
}

.product-details-wrap .product-det-info .right .choose-sec .boxs .choose-box:last-child {
  margin-left: 0;
}

.product-details-wrap .product-det-info .right .choose-sec .boxs .choose-box p {
  color: var(--main-color);
  font-size: 12px;
}

.product-details-wrap .product-det-info .right .choose-sec .boxs .choose-box.active {
  background: var(--second-color);
}

.product-details-wrap .product-det-info .right .choose-sec .boxs .choose-box.active p {
  color: #FFF;
}

.product-details-wrap .product-det-info .right .choose-sec.choose-color .choose-box p {
  text-transform: uppercase;
}

.product-details-wrap .product-det-info .right .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
  max-width: 476px;
}

@media (max-width: 767px) {
  .product-details-wrap .product-det-info .right .quantity {
    max-width: 100%;
  }
}

.product-details-wrap .product-det-info .right .quantity .head {
  font-size: 16px;
  font-weight: bold;
  color: #11142D;
}

.product-details-wrap .product-det-info .right .sub-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 57px;
  max-width: 476px;
}

@media (max-width: 767px) {
  .product-details-wrap .product-det-info .right .sub-total {
    max-width: 100%;
  }
}

.product-details-wrap .product-det-info .right .sub-total .head {
  font-size: 16px;
  font-weight: bold;
  color: #11142D;
}

.product-details-wrap .product-det-info .right .sub-total p {
  font-weight: bold;
  color: #11142D;
}

.product-details-wrap .product-det-info .right .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 66px;
}

.product-details-wrap .product-det-info .right .action .checkout {
  margin-left: 29px;
  padding: 17px 25px;
  background: var(--main-color);
  border-radius: 8px;
  font-weight: bold;
  line-height: 19px;
  -webkit-filter: none;
          filter: none;
}

.product-details-wrap .product-det-info .right .action .checkout:hover {
  background: var(--second-color);
}

.product-details-wrap .product-det-info .right .action .checkout span {
  padding-right: 7px;
}

.product-details-wrap .product-det-info .right .action .wishlist {
  background: transparent;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: var(--main-color);
  line-height: 19px;
}

.product-details-wrap .product-det-info .right .action .wishlist span {
  padding-right: 7.3px;
}

.product-details-wrap .product-det-info .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 274px;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-info .left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.product-details-wrap .product-det-info .left .reviews-sec {
  padding-right: 15px;
}

@media (max-width: 991px) {
  .product-details-wrap .product-det-info .left .reviews-sec {
    padding-right: 0;
  }
}

.product-details-wrap .product-det-info .left .reviews-sec .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.product-details-wrap .product-det-info .left .reviews-sec .head .heading {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 0;
}

.product-details-wrap .product-det-info .left .reviews-sec .head .rate {
  color: var(--second-color);
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 9px;
}

.product-details-wrap .product-det-info .left .reviews-sec .head .rate img {
  width: 19px;
}

.product-details-wrap .product-det-info .left .reviews-sec .head .rate p {
  margin-right: 5px;
  font-weight: bold;
  font-size: 20px;
}

.product-details-wrap .product-det-info .left .reviews-sec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .img {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info {
  padding-right: 21px;
  width: 100%;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info .top p {
  font-size: 18px;
  font-weight: bold;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info .top .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--second-color);
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info .top .rate img {
  width: 16px;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info .top .rate span {
  padding-right: 6px;
  font-size: 14px;
}

.product-details-wrap .product-det-info .left .reviews-sec ul .review-item .info .time {
  font-size: 14px;
  color: #9A9AB0;
}

.recommended-sec {
  background: #FAFAFA;
  padding: 35px 0 100px;
}

.recommended-sec .head {
  margin-bottom: 61px;
  padding-right: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1199px) {
  .recommended-sec .head {
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .recommended-sec .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
  }
}

.recommended-sec .head .right h4 {
  font-size: 37px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 11px;
}

@media (max-width: 1199px) {
  .recommended-sec .head .right h4 {
    font-size: 25px;
  }
}

.recommended-sec .head .right p {
  font-size: 24px;
  color: var(--font-color);
}

@media (max-width: 1199px) {
  .recommended-sec .head .right p {
    font-size: 20px;
  }
}

.recommended-sec .head .left .recommended-arrows {
  width: 159px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991px) {
  .recommended-sec .head .left .recommended-arrows {
    width: 120px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .recommended-sec .head .left .recommended-arrows {
    margin-top: 40px;
  }
}

.recommended-sec .head .left .recommended-arrows .swiper-button-prev,
.recommended-sec .head .left .recommended-arrows .swiper-button-next {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #395077;
  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;
  position: unset;
}

.recommended-sec .head .left .recommended-arrows .swiper-button-prev:after,
.recommended-sec .head .left .recommended-arrows .swiper-button-next:after {
  display: none;
}

.recommended-sec .head .left .recommended-arrows .swiper-button-prev:hover,
.recommended-sec .head .left .recommended-arrows .swiper-button-next:hover {
  background: var(--main-color);
  border-color: #FFF;
}

.recommended-sec .head .left .recommended-arrows .swiper-button-prev:hover img,
.recommended-sec .head .left .recommended-arrows .swiper-button-next:hover img {
  -webkit-filter: invert(0) brightness(10);
          filter: invert(0) brightness(10);
}

@media (max-width: 991px) {
  .recommended-sec .head .left .recommended-arrows .swiper-button-prev,
  .recommended-sec .head .left .recommended-arrows .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}

.recommended-sec .head .left .recommended-arrows .swiper-button-next img {
  transform: rotate(-180deg);
}

.recommended-sec .recommended-inner {
  position: relative;
}

.recommended-sec .recommended-inner .swiper-wrapper {
  padding: 0 120px;
}

@media (max-width: 575px) {
  .recommended-sec .recommended-inner .swiper-wrapper {
    padding: 0;
  }
}

.recommended-sec .recommended-inner .swiper-pagination {
  bottom: -60px;
}

.recommended-sec .recommended-inner .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #B3B3B3;
  opacity: 1;
  margin: 0 6px;
}

.recommended-sec .recommended-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
}

.quantity-form {
  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;
  background: #FAFAFA;
  border-radius: 4px;
  height: 43.14px;
  width: 119.57px;
  padding: 10px 13px;
}

.quantity-form .value-button {
  color: #11142D;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.quantity-form .quantity-input {
  border: 0;
  width: 50px;
  height: 25px;
  text-align: center;
  outline: none;
  font-size: 19px;
  background: transparent;
}

@media (min-width: 576px) {
  .request-modal .modal-dialog {
    max-width: 415px;
  }
}

.request-modal .close-modal {
  position: absolute;
  bottom: 20px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
}

@media (max-width: 1199px) {
  .request-modal .close-modal {
    background: #484848;
  }
}

.request-modal .modal-content {
  border: 0;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.95);
}

.request-modal .modal-body {
  padding: 23px 33px;
}

.request-modal .request-modal-wrap h5 {
  font-size: 18px;
  color: #000;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
}

.request-modal .request-modal-wrap .form-control {
  background-color: rgba(255, 255, 255, 0.7);
  height: 50px;
  border: none;
  border-radius: 8px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.request-modal .request-modal-wrap .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: var(--main-color);
  opacity: 0.60;
  font-weight: 500;
}

.request-modal .request-modal-wrap .form-control::-moz-placeholder {
  font-size: 15px;
  color: var(--main-color);
  opacity: 0.60;
  font-weight: 500;
}

.request-modal .request-modal-wrap .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: var(--main-color);
  opacity: 0.60;
  font-weight: 500;
}

.request-modal .request-modal-wrap .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: var(--main-color);
  opacity: 0.60;
  font-weight: 500;
}

.request-modal .request-modal-wrap .form-control::placeholder {
  font-size: 15px;
  color: var(--main-color);
  opacity: 0.60;
  font-weight: 500;
}

.request-modal .request-modal-wrap .form-control:focus, .request-modal .request-modal-wrap .form-control:active {
  background-color: #FFF;
}

.request-modal .request-modal-wrap textarea {
  height: 128px !important;
  resize: none;
}

.request-modal .request-modal-wrap .request-submit {
  margin-top: 20px;
}

.request-modal .request-modal-wrap .request-submit .btn {
  width: 100%;
  height: 55px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background: var(--main-color);
}

.request-modal .request-modal-wrap .request-submit .btn:hover {
  background: #0f1b2e;
}

.cart-wrapper {
  padding-bottom: 90px;
}

.cart-wrapper .cart-box {
  background: #F6F7FB;
  border-radius: 8px;
}

.cart-wrapper .cart-box .cart-nav {
  padding: 35px 40px;
}

.cart-wrapper .cart-box .cart-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .cart-wrapper .cart-box .cart-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.cart-wrapper .cart-box .cart-nav ul li {
  margin-left: 48px;
}

@media (max-width: 767px) {
  .cart-wrapper .cart-box .cart-nav ul li {
    margin-bottom: 10px;
    margin-left: 0;
  }
}

.cart-wrapper .cart-box .cart-nav ul li a {
  font-size: 18px;
  font-weight: normal;
  color: #9A9AB0;
}

.cart-wrapper .cart-box .cart-nav ul li.done a {
  color: #11142D;
  font-weight: bold;
}

.cart-wrapper .cart-box .order-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 438px;
  margin: 20px auto;
  text-align: center;
  padding-bottom: 50px;
}

@media (max-width: 575px) {
  .cart-wrapper .cart-box .order-result {
    width: 100%;
    padding: 50px;
    margin: 0 auto;
  }
}

.cart-wrapper .cart-box .order-result .logo img {
  width: 118px;
}

@media (max-width: 991px) {
  .cart-wrapper .cart-box .order-result .logo img {
    width: 90px;
  }
}

.cart-wrapper .cart-box .order-result p {
  font-weight: bold;
  font-size: 18px;
  color: var(--second-color);
  margin-top: 20px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .cart-wrapper .cart-box .order-result p {
    font-size: 16px;
  }
}

.cart-wrapper .cart-box .order-result span {
  color: var(--font-color);
  font-size: 15px;
  line-height: 20px;
  margin-top: 15px;
  text-align: center;
}

.cart-wrapper .cart-box .order-result .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
}

.cart-wrapper .cart-box .order-result .btns .btn-black {
  margin-left: 10px;
}

.cart-wrapper .cart-box .order-result .btns .home {
  width: 39px;
  height: 39px;
  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;
  border: 1px solid #395077;
  border-radius: 8px;
}

.cart-wrapper .cart-box .order-result .btns .home:hover {
  background: #395077;
}

.cart-wrapper .cart-box .order-result .btns .home:hover img {
  -webkit-filter: invert(0) brightness(10);
          filter: invert(0) brightness(10);
}

.cart-wrapper .cart-box .order-result.error-occurred .logo img {
  mix-blend-mode: hard-light;
}

.cart-wrapper .cart-total {
  margin-top: 26px;
}

.cart-wrapper .cart-total h5 {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 30px;
}

.cart-wrapper .cart-total div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
  max-width: 200px;
}

.cart-wrapper .cart-total div:last-child {
  margin-bottom: 0;
}

.cart-wrapper .cart-total div label {
  margin-bottom: 0;
  color: #11142D;
  font-weight: bold;
}

.cart-wrapper .cart-total div p {
  color: #11142D;
}

.cart-wrapper .cart-total div.total-price p {
  font-weight: bold;
}

.cart-wrapper .action-btn {
  margin-top: 42px;
}

.cart-wrapper .action-btn .btn {
  width: 329px;
  height: 55px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 8px;
  -webkit-filter: none;
          filter: none;
}

.cs-table {
  background: #F6F7FB;
}

.cs-table thead {
  background: var(--main-color);
}

.cs-table thead tr th {
  font-weight: normal;
  font-size: 18px;
  padding: 15px 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
}

.cs-table thead tr th:nth-child(1) {
  text-align: right;
}

@media (max-width: 767px) {
  .cs-table thead tr th {
    padding: 10px 12px;
  }
}

@media (max-width: 575px) {
  .cs-table thead tr th {
    font-size: 14px;
  }
}

.cs-table tbody tr {
  padding-bottom: 20px;
}

.cs-table tbody tr td {
  vertical-align: middle;
  border: 0;
  padding: 15px 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .cs-table tbody tr td {
    padding: 10px 12px;
  }
}

.cs-table tbody tr td p {
  color: var(--main-color);
  font-size: 18px;
}

@media (max-width: 575px) {
  .cs-table tbody tr td p {
    font-size: 14px;
  }
}

.cs-table tbody tr td .total {
  color: var(--second-color);
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 575px) {
  .cs-table tbody tr td .total {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .cs-table tbody tr td .remove .btn {
    width: 15px;
    height: 15px;
  }
}

.cs-table tbody tr td .product-tb-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .cs-table tbody tr td .product-tb-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cs-table tbody tr td .product-tb-box .img {
  width: 66px;
  height: 66px;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .cs-table tbody tr td .product-tb-box .img {
    width: 40px;
    height: 40px;
  }
}

.cs-table tbody tr td .product-tb-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cs-table tbody tr td .product-tb-box .info {
  margin-right: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 575px) {
  .cs-table tbody tr td .product-tb-box .info {
    margin-top: 10px;
    margin-right: 0;
  }
}

.cs-table tbody tr td .product-tb-box .info a {
  color: var(--main-color);
  font-size: 18px;
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .cs-table tbody tr td .product-tb-box .info a {
    font-size: 14px;
  }
}

.cs-table tbody tr td .product-tb-box .info span {
  font-size: 12px;
  color: var(--font-color);
}

@media (max-width: 575px) {
  .cs-table tbody tr td .product-tb-box .info span {
    font-size: 11px;
  }
}

.cs-table tbody tr td td {
  text-align: right;
}

.cs-table tbody tr:first-of-type td {
  padding-top: 30px;
}

.cs-table tbody tr:last-of-type td {
  padding-bottom: 30px;
}

.cart-wrapper .cart-box {
  margin-bottom: 36px;
}

.cart-wrapper .cart-box .address-checkout-inner {
  padding: 0 37px 37px 32px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map {
  width: 100%;
  height: 352px;
  position: relative;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .map {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .map iframe {
  width: 100%;
  height: 100%;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search {
  position: absolute;
  right: 20px;
  top: 20px;
  left: 20px;
  height: 38px;
  z-index: 2;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search img {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search .form-control {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  padding-right: 43px;
  border-radius: 5px;
  font-size: 14px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search .form-control::-webkit-input-placeholder {
  font-size: 12px;
  color: #AAAAAA;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search .form-control::-moz-placeholder {
  font-size: 12px;
  color: #AAAAAA;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search .form-control:-ms-input-placeholder {
  font-size: 12px;
  color: #AAAAAA;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search .form-control::-ms-input-placeholder {
  font-size: 12px;
  color: #AAAAAA;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .address-map .adress-search .form-control::placeholder {
  font-size: 12px;
  color: #AAAAAA;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address {
  margin-top: 13px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address h4 {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 16px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  height: 50px;
  margin-bottom: 15px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--main-color);
  font-size: 15px;
  border: none;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control::-moz-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control::placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control:focus, .cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .form-control:valid {
  background-color: #FFF;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item {
  margin-bottom: 15px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li {
  margin-left: 20px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li:last-child {
  margin-left: 0;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  font-size: 14px;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li a i {
  width: 9px;
  height: 9px;
  border: 1px solid #B3B3B3;
  border-radius: 50%;
  background: transparent;
  display: block;
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li a span {
  padding-right: 8px;
  font-size: 12px;
  color: var(--font-color);
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li.active i {
  width: 7px;
  height: 7px;
  border-width: 2px;
  border-color: var(--second-color);
}

.cart-wrapper .cart-box .address-checkout-inner .address-checkout-form .add-address .switch-item ul li.active span {
  color: var(--second-color);
}

.cart-wrapper .address-checkout-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  .cart-wrapper .address-checkout-foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cart-wrapper .address-checkout-foot .address-checkout-summary {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 30.5px;
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method h5 {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 30px;
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method .payment-method-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method .payment-method-boxs .payment-method-box {
  width: 79.18px;
  height: 79.18px;
  border-radius: 5px;
  border: 1px solid #D6D6D6;
  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;
  cursor: pointer;
  margin-left: 14.5px;
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method .payment-method-boxs .payment-method-box:last-child {
  margin-left: 0;
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method .payment-method-boxs .payment-method-box.active {
  border: 2px solid var(--second-color);
}

.cart-wrapper .address-checkout-foot .address-checkout-summary .choose-payment-method .payment-method-boxs .payment-method-box.keynet img {
  mix-blend-mode: luminosity;
}

.cart-wrapper .address-checkout-foot .have-coupon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 128px;
  background-color: rgba(250, 250, 250, 0.45);
  border-radius: 8px;
  padding: 40px;
}

@media (max-width: 991px) {
  .cart-wrapper .address-checkout-foot .have-coupon {
    margin-right: 0;
    margin-top: 20px;
    padding: 25px 20px;
    width: 100%;
  }
}

.cart-wrapper .address-checkout-foot .have-coupon h5 {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 20px;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.7);
  height: 50px;
  border-radius: 8px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 29px;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control::-moz-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control::placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.cart-wrapper .address-checkout-foot .have-coupon .form-control:focus, .cart-wrapper .address-checkout-foot .have-coupon .form-control:active {
  background-color: white;
}

.cart-wrapper .order-total h5 {
  font-size: 20px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 30px;
}

.cart-wrapper .order-total div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
  max-width: 250px;
}

.cart-wrapper .order-total div:last-child {
  margin-bottom: 0;
}

.cart-wrapper .order-total div label {
  margin-bottom: 0;
  color: #11142D;
  font-weight: bold;
}

.cart-wrapper .order-total div p {
  color: #11142D;
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
  max-width: 90px;
}

.cart-wrapper .order-total div.total-price p {
  font-weight: bold;
}

.orders-wrap {
  background: #F6F7FB;
  margin-bottom: 50px;
}

.orders-wrap .status-head {
  padding: 35px 42px 34px;
}

@media (max-width: 767px) {
  .orders-wrap .status-head {
    padding: 20px;
  }
}

.orders-wrap .status-head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .orders-wrap .status-head ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.orders-wrap .status-head ul li {
  margin-left: 45px;
}

@media (max-width: 767px) {
  .orders-wrap .status-head ul li {
    margin-left: 0;
    margin-top: 8px;
  }
}

.orders-wrap .status-head ul li:last-child {
  margin-left: 0;
}

@media (max-width: 575px) {
  .orders-wrap .orders-table .cs-table thead tr th {
    font-size: 11px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .orders-wrap .orders-table .cs-table tbody tr td {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .orders-wrap .orders-table .cs-table tbody tr td {
    padding: 10px 5px;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .price {
  color: var(--second-color);
  font-weight: bold;
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .orders-wrap .orders-table .cs-table tbody tr td .order-no {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no .img {
    width: 66px;
    height: 71px;
    overflow: hidden;
    background: var(--main-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.orders-wrap .orders-table .cs-table tbody tr td .order-no .img img{
    width: 50px;
    height: 50px;
}

@media (max-width: 575px) {
  .orders-wrap .orders-table .cs-table tbody tr td .order-no .img {
    width: 40px;
    height: 40px;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no .img img {
  width: 100%;
  height: 100%;
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no .info {
  margin-right: 23px;
}

@media (max-width: 991px) {
  .orders-wrap .orders-table .cs-table tbody tr td .order-no .info {
    margin-right: 0;
    margin-top: 5px;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no .info p {
  font-size: 18px;
  color: var(--main-color);
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .orders-wrap .orders-table .cs-table tbody tr td .order-no .info p {
    font-size: 14px;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no .info .status i {
  width: 6px;
  height: 6px;
}

.orders-wrap .orders-table .cs-table tbody tr td .order-no .info .status span {
  font-size: 12px;
  padding-right: 5px;
}

.orders-wrap .orders-table .cs-table tbody tr td .tabel-link {
  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;
}

.orders-wrap .orders-table .cs-table tbody tr td .tabel-link span {
  font-size: 18px;
  color: var(--main-color);
  padding-left: 10px;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .orders-wrap .orders-table .cs-table tbody tr td .tabel-link span {
    font-size: 14px;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .tabel-link img {
  width: 8px;
  -webkit-transition: .3s;
  transition: .3s;
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .orders-wrap .orders-table .cs-table tbody tr td .tabel-link img {
    display: none;
  }
}

.orders-wrap .orders-table .cs-table tbody tr td .tabel-link:hover img {
  -webkit-transform: translateX(-5px)  rotate(180deg);;
          transform: translateX(-5px)  rotate(180deg);;
}

.status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.status span {
  padding-right: 12px;
  font-size: 18px;
  text-transform: capitalize;
}

.status.pending i {
  background: #B3B3B3;
}

.status.pending span {
  color: var(--font-color);
}

.status.on-progess i {
  background: var(--second-color);
}

.status.on-progess span {
  color: var(--second-color);
}

.status.delivered i {
  background: #395077;
}

.status.delivered span {
  color: #395077;
}

.order-details-wrap {
  margin-bottom: 50px;
}

.order-details-wrap .order-data .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/map-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 103px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.order-details-wrap .order-data .address p {
  font-size: 14px;
  color: var(--main-color);
  margin-top: 6px;
}

.order-details-wrap .order-data .order-info {
  margin-top: 7px;
  border: 1px solid #F6F7FB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
}

.order-details-wrap .order-data .order-info .payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info .payment {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.order-details-wrap .order-data .order-info .payment p {
  font-size: 12px;
  color: var(--font-color);
  margin-bottom: 8px;
}

.order-details-wrap .order-data .order-info .payment div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-details-wrap .order-data .order-info .payment div span {
  font-weight: bold;
  font-size: 14px;
  color: var(--main-color);
  padding-right: 7.8px;
}

.order-details-wrap .order-data .order-info .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info .date {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 15px;
  }
}

.order-details-wrap .order-data .order-info .date p {
  font-size: 12px;
  color: var(--font-color);
  margin-bottom: 11px;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info .date p {
    margin-bottom: 8px;
  }
}

.order-details-wrap .order-data .order-info .date span {
  font-weight: bold;
  font-size: 14px;
  color: ver(--main-color);
}

.order-details-wrap .order-data .order-info .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info .status {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 15px;
  }
}

.order-details-wrap .order-data .order-info .status p {
  font-size: 12px;
  color: var(--font-color);
  margin-bottom: 11px;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info .status p {
    margin-bottom: 8px;
  }
}

.order-details-wrap .order-data .order-info .status .status {
  padding-right: 0 !important;
}

@media (max-width: 575px) {
  .order-details-wrap .order-data .order-info .status .status {
    margin-top: 0;
  }
}

.order-details-wrap .order-data .order-info .status .status span {
  font-weight: bold;
  font-size: 14px;
  padding-right: 0 !important;
}

.order-details-wrap .order-data .order-price {
  margin-top: 19px;
}

.order-details-wrap .order-data .order-price div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}

.order-details-wrap .order-data .order-price div span {
  font-size: 14px;
  color: var(--font-color);
  text-transform: uppercase;
}

.order-details-wrap .order-data .order-price div p {
  color: var(--main-color);
  font-size: 15px;
  font-weight: bold;
}

.order-details-wrap .list-products h5 {
  font-size: 16px;
  font-weight: bold;
  color: #11142D;
  margin-bottom: 17px;
}

@media (max-width: 991px) {
  .order-details-wrap .list-products {
    margin-top: 50px;
  }
}

.order-details-wrap .list-products thead tr th {
  font-size: 14px;
  padding: 15px 20px;
}

.order-details-wrap .list-products thead tr th:first-of-type {
  border-top-right-radius: 8px;
}

.order-details-wrap .list-products thead tr th:last-of-type {
  border-top-left-radius: 8px;
}

.order-details-wrap .list-products tbody tr td {
  padding: 15px 20px;
}

.order-details-wrap .list-products tbody tr td .product-tb-box .img {
  width: 54px;
  height: 54px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.order-details-wrap .list-products tbody tr td .product-tb-box .info {
  margin-right: 19px;
}

@media (max-width: 575px) {
  .order-details-wrap .list-products tbody tr td .product-tb-box .info {
    margin-right: 0;
  }
}

.order-details-wrap .list-products tbody tr td .product-tb-box .info a {
  font-size: 14px;
}

.order-details-wrap .list-products tbody tr td .product-tb-box .info span {
  font-size: 10px;
}

.order-details-wrap .list-products tbody tr td p {
  font-size: 14px;
}

.order-details-wrap .list-products tbody tr:last-of-type td {
  padding-bottom: 30px;
}

.order-details-wrap .list-products tbody tr:first-of-type td {
  padding-top: 30px;
}

.favorites-wrap {
  margin-bottom: 50px;
}

.favorites-wrap .favorites-table tbody tr td .stock-status p {
  font-size: 18px;
  color: var(--main-color);
}

@media (max-width: 575px) {
  .favorites-wrap .favorites-table tbody tr td .stock-status p {
    font-size: 14px;
  }
}

.favorites-wrap .favorites-table tbody tr td .out-stock p {
  font-size: 18px;
  color: #FF0909;
}

@media (max-width: 575px) {
  .favorites-wrap .favorites-table tbody tr td .out-stock p {
    font-size: 14px;
  }
}

.favorites-wrap .favorites-table tbody tr td .price {
  color: var(--second-color);
  font-weight: bold;
}

.favorites-wrap .favorites-table tbody tr td .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

@media (max-width: 575px) {
  .favorites-wrap .favorites-table tbody tr td .action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.favorites-wrap .favorites-table tbody tr td .action .add-cart {
  margin-left: 26px;
}

@media (max-width: 575px) {
  .favorites-wrap .favorites-table tbody tr td .action .add-cart {
    margin-left: 0;
  }
}

.favorites-wrap .favorites-table tbody tr td .action .add-cart .btn-black {
  padding: 10px 25px;
  line-height: 19px;
}

@media (max-width: 575px) {
  .favorites-wrap .favorites-table tbody tr td .action .add-cart .btn-black {
    padding: 10px;
    font-size: 11px;
  }
}

.profile-wrap {
  margin-bottom: 125px;
}

.profile-wrap .profile-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 70px;
  margin-bottom: 52px;
}

@media (max-width: 991px) {
  .profile-wrap .profile-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 80px;
  }
}

.profile-wrap .profile-form .profile-info {
  background-color: rgba(250, 250, 250, 0.85);
  border-radius: 8px;
  padding: 30px 40px 33px 40px;
  width: 737px;
  margin-left: 33px;
  position: relative;
  padding-top: 80px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

@media (max-width: 991px) {
  .profile-wrap .profile-form .profile-info {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .profile-wrap .profile-form .profile-info {
    padding: 20px;
    padding-top: 80px;
  }
}

.profile-wrap .profile-form .profile-info .avatar-picture {
  position: absolute;
  top: -100px;
  right: 40px;
}

.profile-wrap .profile-form .profile-info .avatar-picture .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.profile-wrap .profile-form .profile-info .avatar-picture .label p {
  font-size: 14px;
  color: #11142D;
}

.profile-wrap .profile-form .profile-info .avatar-picture .label span {
  color: var(--font-color);
  font-size: 12px;
}

.profile-wrap .profile-form .profile-info .form-group {
  margin-bottom: 20px;
}

.profile-wrap .profile-form .profile-info .form-group label {
  font-size: 14px;
  color: #11142D;
  margin-bottom: 10px;
}

.profile-wrap .profile-form .profile-info .form-group .form-control {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  font-size: 15px;
}

.profile-wrap .profile-form .profile-info .form-group .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.profile-wrap .profile-form .profile-info .form-group .form-control::-moz-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.profile-wrap .profile-form .profile-info .form-group .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.profile-wrap .profile-form .profile-info .form-group .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.profile-wrap .profile-form .profile-info .form-group .form-control::placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.profile-wrap .profile-form .profile-info .form-group .phone-number-box {
  position: relative;
  text-align: left;
  direction: ltr;
}

.profile-wrap .profile-form .profile-info .form-group .phone-number-box span {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--main-color);
  font-size: 15px;
}

.profile-wrap .profile-form .profile-info .form-group .phone-number-box .form-control {
  padding-left: 60px;
  font-size: 15px;
}

.profile-wrap .profile-form .change-password {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 991px) {
  .profile-wrap .profile-form .change-password {
    margin-top: 50px;
    width: 100%;
  }
}

.profile-wrap .profile-form .change-password .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.profile-wrap .profile-form .change-password .head h5 {
  padding-right: 15px;
  color: #11142D;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
}

.profile-wrap .profile-form .change-password .form-group {
  margin-bottom: 10px;
}

.profile-wrap .profile-form .change-password .form-group .form-control {
  height: 50px;
  background-color: rgba(250, 250, 250, 0.5);
  border-radius: 8px;
  width: 100%;
  border: 1px solid rgba(250, 250, 250, 0.5);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.profile-wrap .profile-form .change-password .form-group .form-control::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
}

.profile-wrap .profile-form .change-password .form-group .form-control::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
}

.profile-wrap .profile-form .change-password .form-group .form-control:-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
}

.profile-wrap .profile-form .change-password .form-group .form-control::-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
}

.profile-wrap .profile-form .change-password .form-group .form-control::placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
}

.profile-wrap .profile-form .change-password .form-group .form-control:focus {
  background-color: #FFF;
  border-color: #FAFAFA;
}

@media (max-width: 575px) {
  .profile-wrap .save {
    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;
  }
}

.profile-wrap .save .btn {
  width: 329px;
  height: 55px;
  border-radius: 8px;
  -webkit-filter: none;
          filter: none;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 575px) {
  .profile-wrap .save .btn {
    width: 85%;
  }
}

.avatar-picture {
  margin: 20px 0;
}

.avatar-picture .image-input {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.avatar-picture .image-input .image-input-wrapper {
  background-image: url("");
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.avatar-picture .image-input .btn {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 3px;
  bottom: -9px;
  background-color: #B3B3B3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.avatar-picture .image-input .btn:hover {
  background-color: #636363;
}

.avatar-picture .image-input .btn input {
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
  opacity: 0;
  display: none;
}

.sign-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 602px 1fr;
}

@media (min-width: 1600px) {
  .sign-wrapper {
    grid-template-columns: minmax(602px, 1fr) 1.5fr;
  }
}

@media (max-width: 1199px) {
  .sign-wrapper {
    grid-template-columns: 1fr 1.3fr;
  }
}

@media (max-width: 991px) {
  .sign-wrapper {
    grid-template-columns: 100%;
  }
}

.sign-wrapper .login {
  /*background: url("../img/sign-bg.jpg") no-repeat;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  position: relative;
  z-index: 0;
  padding-bottom: 50px;
    background: var(--main-color);

}

/*.sign-wrapper .login:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: var(--main-color);*/
/*  opacity: 0.67;*/
/*  z-index: -1;*/
/*}*/

.sign-wrapper .login .login-inner {
  width: 342.48px;
  margin: auto;
  padding-top: 51px;
}

@media (max-width: 991px) {
  .sign-wrapper .login .login-inner {
    width: 85%;
  }
}

.sign-wrapper .login .login-inner .back .back-sign-link {
  padding: 10px 18px;
  border: 1px solid #FFF;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sign-wrapper .login .login-inner .back .back-sign-link img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transform: rotate(180deg);
}

.sign-wrapper .login .login-inner .back .back-sign-link span {
  font-size: 14px;
  color: #FFFFFF;
  padding-right: 8px;
}

.sign-wrapper .login .login-inner .back .back-sign-link:hover {
  background: #FFF;
}

.sign-wrapper .login .login-inner .back .back-sign-link:hover span {
  color: var(--main-color);
}

.sign-wrapper .login .login-inner .back .back-sign-link:hover img {
  -webkit-transform: translateX(4px) rotate(180deg);;
          transform: translateX(4px) rotate(180deg);;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.sign-wrapper .login .login-inner .form-inner {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .sign-wrapper .login .login-inner .form-inner {
    margin-top: 30px;
  }
}

.sign-wrapper .login .login-inner .form-inner h5 {
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 31px;
}

.sign-wrapper .login .login-inner .form-inner .form-group {
  margin-bottom: 10px;
}

.sign-wrapper .login .login-inner .form-inner .form-group label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 11px;
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control {
  background: rgba(250, 250, 250, 0.15);
  height: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #FFF;
  border-radius: 8px;
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control:-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control::-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control::placeholder {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.sign-wrapper .login .login-inner .form-inner .form-group .form-control:focus {
  border-color: #FFF;
  background: rgba(250, 250, 250, 0.05);
}

.sign-wrapper .login .login-inner .form-inner .form-group .password-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sign-wrapper .login .login-inner .form-inner .form-group .password-label .forget-pass {
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 11px;
}

.sign-wrapper .login .login-inner .form-inner .login-btn {
  margin-top: 80px;
  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;
}

.sign-wrapper .login .login-inner .form-inner .login-btn .sign-in {
  width: 193px;
  height: 55px;
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--main-color);
  text-transform: uppercase;
  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-weight: bold;
  margin-left: 11px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sign-wrapper .login .login-inner .form-inner .login-btn .sign-in:hover {
  background: var(--main-color);
  color: #FFF;
}

.sign-wrapper .login .login-inner .form-inner .login-btn .sign-google {
  width: 55px;
  height: 55px;
  border: 1px solid #FAFAFA;
  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;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sign-wrapper .login .login-inner .form-inner .login-btn .sign-google:hover {
  background: #FFF;
}

.sign-wrapper .sign-up {
  background: url("../img/sign-up-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 50px;
}

.sign-wrapper .sign-up .sign-up-inner {
  width: 506px;
  margin: auto;
  padding-top: 45px;
}

@media (max-width: 991px) {
  .sign-wrapper .sign-up .sign-up-inner {
    width: 85%;
  }
}

.sign-wrapper .sign-up .sign-up-inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .sign-wrapper .sign-up .sign-up-inner .logo > img {
    width: 80px;
  }
}

.sign-wrapper .sign-up .sign-up-inner .logo .logo-text {
  padding-right: 20px;
  text-transform: uppercase;
}

.sign-wrapper .sign-up .sign-up-inner .logo .logo-text p {
  margin-bottom: 10px;
  display: inline;
  color: #395077;
  font-weight: bold;
  font-size: 23px;
}

@media (max-width: 575px) {
  .sign-wrapper .sign-up .sign-up-inner .logo .logo-text p {
    font-size: 20px;
  }
}

.sign-wrapper .sign-up .sign-up-inner .logo .logo-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sign-wrapper .sign-up .sign-up-inner .text-head {
  margin-top: 30px;
  margin-bottom: 47px;
}

.sign-wrapper .sign-up .sign-up-inner .text-head h5 {
  font-size: 30px;
  font-weight: bold;
  color: var(--second-color);
  margin-bottom: 9px;
}

@media (max-width: 575px) {
  .sign-wrapper .sign-up .sign-up-inner .text-head h5 {
    font-size: 22px;
  }
}

.sign-wrapper .sign-up .sign-up-inner .text-head p {
  color: #191A1B;
  font-size: 13px;
}

.sign-wrapper .sign-up .sign-up-inner .form-group {
  margin-bottom: 20px;
}

.sign-wrapper .sign-up .sign-up-inner .form-group label {
  font-size: 14px;
  color: #11142D;
  margin-bottom: 10px;
}

.sign-wrapper .sign-up .sign-up-inner .form-group .form-control {
  height: 50px;
  background-color: rgba(250, 250, 250, 0.5);
  border-radius: 8px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  font-size: 15px;
}

.sign-wrapper .sign-up .sign-up-inner .form-group .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-wrapper .sign-up .sign-up-inner .form-group .form-control::-moz-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-wrapper .sign-up .sign-up-inner .form-group .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-wrapper .sign-up .sign-up-inner .form-group .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-wrapper .sign-up .sign-up-inner .form-group .form-control::placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.form-group .phone-number-box {
  position: relative;
}

.form-group .phone-number-box span {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--main-color);
  font-size: 15px;
    direction: ltr;
}

.form-group .phone-number-box .form-control {
  padding-left: 60px;
  font-size: 15px;
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .sign-wrapper .sign-up .sign-up-inner .sign-up-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn .btn-primary {
  -webkit-filter: none;
          filter: none;
  width: 193px;
  height: 55px;
  margin-left: 25px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 575px) {
  .sign-wrapper .sign-up .sign-up-inner .sign-up-btn .btn-primary {
    margin-bottom: 20px;
    margin-left: 0;
  }
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn .sign-up-google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn .sign-up-google span {
  font-size: 14px;
  color: var(--font-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn .sign-up-google div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn .sign-up-google div img {
  width: 13.98px;
}

.sign-wrapper .sign-up .sign-up-inner .sign-up-btn .sign-up-google div p {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
  padding-right: 8px;
}

@media (min-width: 576px) {
  .sign-modal .modal-dialog {
    max-width: 507.25px;
  }
}

.sign-modal .close-modal {
  position: absolute;
  bottom: 20px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
}

@media (max-width: 1199px) {
  .sign-modal .close-modal {
    background: #484848;
  }
}

.sign-modal .modal-content {
  border: 0;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.95);
}

.sign-modal .modal-body {
  padding: 28.7px 27px 34.6px;
}

.sign-modal .head {
  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-bottom: 26.6px;
  margin-bottom: 18.7px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.14);
}

.sign-modal .head h4 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #395077;
  padding-right: 12px;
  margin-bottom: 0;
}

.sign-modal .sign-modal-text {
  font-size: 16px;
  color: #000000;
  margin-bottom: 26px;
  text-align: center;
}

.sign-modal .sign-modal-form .form-group label {
  font-size: 14px;
  color: var(--font-color);
  margin-bottom: 10px;
}

.sign-modal .sign-modal-form .form-group .form-control {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  font-size: 15px;
}

.sign-modal .sign-modal-form .form-group .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-modal .sign-modal-form .form-group .form-control::-moz-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-modal .sign-modal-form .form-group .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-modal .sign-modal-form .form-group .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-modal .sign-modal-form .form-group .form-control::placeholder {
  font-size: 15px;
  color: rgba(26, 43, 68, 0.5);
  font-weight: 400;
}

.sign-modal .sign-modal-btn {
  margin-top: 26px;
  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;
}

.sign-modal .sign-modal-btn .btn {
  width: 343px;
  height: 55px;
  border-radius: 8px;
  -webkit-filter: none;
          filter: none;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 575px) {
  .sign-modal .verify-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sign-modal .verify-btn .btn-primary {
  width: 222px;
  margin-left: 20px;
}

@media (max-width: 575px) {
  .sign-modal .verify-btn .btn-primary {
    margin-bottom: 15px;
  }
}

.sign-modal .verify-btn .rest-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sign-modal .verify-btn .rest-btn span {
  font-size: 14px;
  color: var(--font-color);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.sign-modal .verify-btn .rest-btn div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sign-modal .verify-btn .rest-btn div img {
  width: 19.03px;
}

.sign-modal .verify-btn .rest-btn div p {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
  padding-right: 6px;
}

.inner-page {
  padding-bottom: 71px;
}

.inner-page .page-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .inner-page .page-logo > img {
    width: 80px;
  }
}

.inner-page .page-logo .logo-text {
  padding-right: 20px;
  text-transform: uppercase;
}

.inner-page .page-logo .logo-text p {
  margin-bottom: 10px;
  display: inline;
  color: #395077;
  font-weight: bold;
  font-size: 23px;
}

@media (max-width: 575px) {
  .inner-page .page-logo .logo-text p {
    font-size: 20px;
  }
}

.inner-page .page-logo .logo-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inner-page .page-content {
  margin-top: 32px;
}

.inner-page .page-content p {
  font-size: 14px;
  color: var(--font-color);
  line-height: 22px;
  margin-bottom: 15px;
}

.inner-page .page-content p span {
  display: block;
}

.blogs-page {
  padding-bottom: 52px;
}

.blogs-page .blogs-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

@media (max-width: 991px) {
  .blogs-page .blogs-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blogs-page .blogs-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .blogs-page .blogs-boxs {
    grid-template-columns: 100%;
  }
}

.blogs-page .blogs-boxs .blog-box {
  background: #FAFAFA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blogs-page .blogs-boxs .blog-box .img {
  width: 114px;
  height: 151px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.blogs-page .blogs-boxs .blog-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogs-page .blogs-boxs .blog-box .blog-inner {
  padding: 13.3px 17px 10px 14px;
}

.blogs-page .blogs-boxs .blog-box .blog-inner .blog-link {
  font-size: 18px;
  color: var(--main-color);
  margin-bottom: 10px;
  line-height: 23px;
  width: 75%;
  display: inline-block;
  height: 46px;
  overflow: hidden;
}

.blogs-page .blogs-boxs .blog-box .blog-inner article {
  color: #AFAFAF;
  font-size: 11px;
  line-height: 13px;
  height: 39px;
  overflow: hidden;
}

.blogs-page .blogs-boxs .blog-box .blog-inner .share-blog {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 12px;
}

.blogs-page .see-more-wrap {
  margin-top: 63px;
  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;
}

.blogs-page .see-more-wrap .btn-gray {
  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;
  width: 261px;
  height: 55px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blogs-details-page {
  padding-bottom: 50px;
}

.blogs-details-page .blogs-details-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  .blogs-details-page .blogs-details-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.blogs-details-page .blogs-details-inner .img {
  width: 425px;
  height: 429px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 991px) {
  .blogs-details-page .blogs-details-inner .img {
    margin-bottom: 20px;
    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;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blogs-details-page .blogs-details-inner .img {
    height: 300px;
  }
}

.blogs-details-page .blogs-details-inner .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogs-details-page .blogs-details-inner .inner {
  margin-right: 40px;
}

@media (max-width: 991px) {
  .blogs-details-page .blogs-details-inner .inner {
    margin-right: 0;
  }
}

.blogs-details-page .blogs-details-inner .inner h1 {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 14px;
  font-weight: normal;
}

.blogs-details-page .blogs-details-inner .inner .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blogs-details-page .blogs-details-inner .inner .info span {
  font-size: 14px;
  color: var(--font-color);
  padding-right: 8px;
  font-weight: 300;
}

.blogs-details-page .blogs-details-inner .inner .content {
  margin-top: 26px;
}

.blogs-details-page .blogs-details-inner .inner .content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--main-color);
  margin-bottom: 16px;
}

.blogs-details-page .blogs-details-inner .inner .share-blog-wrap {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blogs-details-page .blogs-details-inner .inner .share-blog-wrap .btn-gray {
  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;
  width: 261px;
  height: 55px;
}

@media (max-width: 575px) {
  .blogs-details-page .blogs-details-inner .inner .share-blog-wrap .btn-gray {
    width: 250px;
  }
}

.blogs-details-page .blogs-details-inner .inner .share-blog-wrap .btn-gray span {
  padding-right: 13px;
}

.blogs-details-page .blogs-details-inner .inner .share-blog-wrap .btn-gray img {
  -webkit-filter: invert(0) brightness(10);
          filter: invert(0) brightness(10);
  position: relative;
  top: -3px;
}

footer {
  background: var(--main-color);
  padding: 30px 84px 0;
}

@media (max-width: 575px) {
  footer {
    padding: 30px 20px 0;
  }
}

footer .footer-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  footer .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
  }
}

@media (max-width: 767px) {
  footer .footer-wrap {
    grid-template-columns: 100%;
    grid-gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

footer .footer-wrap .footer-col h5 {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 19px;
  text-transform: uppercase;
  font-size: 16px;
}

footer .footer-wrap .footer-col .footer-menu li {
  margin-bottom: 16px;
}

footer .footer-wrap .footer-col .footer-menu li:last-child {
  margin-bottom: 0;
}

footer .footer-wrap .footer-col .footer-menu li a {
  font-weight: 300;
  color: #FFFFFF;
}

footer .footer-wrap .footer-col .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  footer .footer-wrap .footer-col .social-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .footer-wrap .footer-col .social-list li {
  margin-left: 15px;
}

footer .footer-wrap .footer-col .social-list li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFF;
  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-transition: background 0.3s;
  transition: background 0.3s;
}

footer .footer-wrap .footer-col .social-list li a:hover {
  background: var(--main-color);
}

footer .footer-wrap .footer-col .social-list li a:hover img {
  -webkit-filter: invert(0) brightness(10);
          filter: invert(0) brightness(10);
}

footer .footer-wrap .footer-col .social-list li:last-child {
  margin-left: 0;
}

footer .footer-wrap .footer-col .newsletter {
  margin-top: 30px;
}

footer .footer-wrap .footer-col .newsletter h6 {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 19px;
  text-transform: uppercase;
  font-size: 16px;
}

footer .footer-wrap .footer-col .newsletter .newsletter-form input {
  width: 100%;
  height: 50px;
  background: rgba(179, 179, 179, 0.21);
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 8px;
  padding-right: 16px;
  outline: none !important;
  color: #FFF;
  width: 80%;
}

footer .footer-wrap .footer-col .newsletter .newsletter-form input::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-wrap .footer-col .newsletter .newsletter-form input::-moz-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-wrap .footer-col .newsletter .newsletter-form input:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-wrap .footer-col .newsletter .newsletter-form input::-ms-input-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-wrap .footer-col .newsletter .newsletter-form input::placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-wrap .footer-col .newsletter .subscribe-btn {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  footer .footer-wrap .footer-col .newsletter .subscribe-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px auto 0 !important;
  }
}

footer .footer-wrap .footer-col .newsletter .subscribe-btn span {
  font-size: 16px;
  font-weight: bold;
  color: #BA6D22;
  padding-right: 6px;
}

footer .footer-wrap .footer-col .newsletter .subscribe-btn:hover img {
  -webkit-filter: invert(1) brightness(10);
          filter: invert(1) brightness(10);
}

footer .footer-wrap .footer-col .newsletter .subscribe-btn:hover span {
  color: #FFF;
}

footer .footer-wrap .footer-col .app-download .app-link {
  margin-bottom: 10.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  footer .footer-wrap .footer-col .app-download .app-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .footer-wrap .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  footer .footer-wrap .logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 575px) {
  footer .footer-wrap .logo img {
    width: 100px;
  }
}

footer .footer-wrap .logo .logo-text {
  margin-top: 27px;
}

@media (max-width: 575px) {
  footer .footer-wrap .logo .logo-text {
    margin-top: 20px;
  }
}

footer .footer-wrap .logo .logo-text p {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  display: inline;
  margin-bottom: 3.5px;
  color: #FFF;
}

@media (max-width: 575px) {
  footer .footer-wrap .logo .logo-text p {
    font-size: 20px;
  }
}

footer .footer-wrap .logo .logo-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

@media (max-width: 991px) {
  footer .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0;
  }
}

footer .copyright p {
  color: #FFF;
  font-size: 16px;
}

@media (max-width: 991px) {
  footer .copyright p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 12px;
  }
}

footer .copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .copyright ul li {
  margin-left: 44px;
}

footer .copyright ul li:last-child {
  margin-left: 0;
}

footer .copyright ul li a {
  color: #FFF;
}

@media (max-width: 991px) {
  footer .copyright ul li a {
    font-size: 12px;
  }
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  right: -17px !important;
  left: auto !important;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  right: 17px !important;
  left: auto !important;
}

/*# sourceMappingURL=style.css.map */
.discount_label_det {
    padding: 5px 20px;
    background: #ff480024;
    color: #b90606;
    border-radius: 15px;
    margin: 0 20px;
}
.discount_label {
    position: absolute;
    top: 30px;
    left: 0;
    padding: 5px 35px 5px 10px;
    background: #ff480024;
    color: #b90606;
    border-radius: 0 15px 15px 0;
}

.discount_label i {
    background: #b70202;
    padding: 4px 6px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    right: 0;
}
.discount_notify{
    background: #058807;
    padding: 13px;
    border-radius: 0 20px 20px 0;
    color: #fff;
    position: absolute;
    left: 0;
    opacity: 0.7;
}
