* {
  font-family: "Mulish", sans-serif;
}
body,html {overflow-x:hidden;}

.errors { color: red; }

.bg-cover {
  background-size: cover;
  background-position: center;
}

.bg-fixed {
  background-attachment: fixed;
}

.light-bg {
  background-color: #fbf6f2;
}

.dark-bg {
  background-color: #000;
}

option:not(first-child) {
        color: #000;
    }

img {
  max-width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
}
a:hover {
  color: #c4a37c;
}

.h1, h1 {
  font-weight: 700 !important;
  color: #333;
}

.h2, h2 {
  color: #333;
  font-size: 50px;
  font-weight: 300;
  font-family: "Hind", sans-serif;
  letter-spacing: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h2, h2 {
    font-size: 32px;
  }
}

.h3,
h3 {
  color: #333;
  font-size: 32px;
  font-weight: 300;
  font-family: "Hind", sans-serif;
  letter-spacing: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h3,
  h3 {
    font-size: 24px;
  }
}
.h3.ls-0,
h3.ls-0 {
  letter-spacing: 0;
}

.h4,
h4 {
  color: #333;
  font-size: 20px;
  line-height: 140%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.h5,
h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.eyebrow {
  display: block;
  font-family: "Hind", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 3px;
}

.text {
  color: #595959;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.7em;
  letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .text {
    font-size: 16px;
  }
}
.text.f-16 {
  font-size: 16px;
  font-weight: 400;
}

.f-40 {
  font-size: 50px;
}

.f-30 {
  font-size: 30px;
}

.f-20 {
  font-size: 20px;
}

.f-18 {
  font-size: 18px;
}

.f-14 {
  font-size: 14px;
}

.xs-text {
  font-size: 12px;
}

.bold {
  font-weight: 500;
}

.highlight {
  color: #c4a37c;
}

.color-white,
.color-white h1,
.color-white h2,
.color-white h3,
.color-white h4,
.color-white h5,
.color-white h6,
.color-white p,
.color-white div,
.color-white span {
  color: #fff;
}

.color-dark,
.color-dark h1,
.color-dark h2,
.color-dark h3,
.color-dark h4,
.color-dark h5,
.color-dark h6,
.color-dark p,
.color-dark div,
.color-dark span {
  color: #333;
}

.color-primary,
.color-primary h1,
.color-primary h2,
.color-primary h3,
.color-primary h4,
.color-primary h5,
.color-primary h6,
.color-primary p,
.color-primary div,
.color-primary span {
  color: #c4a37c;
}

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

.button {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  transition: ease 0.3s;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  border: none;
  background: none;
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #c4a37c;
  z-index: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: ease 0.5s;
}
.button span {
  position: relative;
  z-index: 1;
}
.button.button-primary, .btn-primary {
  color: #fff;
  background-color: #333;
  border-color:#333;
}
 .btn-primary:hover, .btn-primary:focus {
   background-color: #c4a37c;
   border-color:#c4a37c;
   color:#333;
 }
 .step-content .btn-link,  .step-content a.text-mutted, .step-content a  {color:#333;}

.button.button-primary:hover:after {
  transform: scale(1);
}
.button.order-btn {
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
}

input, textarea, .custom-select, select {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: none;
  padding: 12px 16px;
  outline: none;
  width: 100%;
}
input, input::placeholder, textarea, textarea::placeholder, .custom-select, .custom-select::placeholder, select, select::placeholder {
  color: #fff;
}
input:focus, textarea:focus, .custom-select:focus, select:focus {
  border-color: #c4a37c;
}
input.error, textarea.error, .custom-select.error, select.error {
  border-color: #ed2326;
}

textarea {
  resize: none;
  height: 150px;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .justify-content-md-center {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .justify-content-mob-between {
    justify-content: space-between !important;
  }
}

.wpcf7-response-output {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #c4a37c;
  border-color: #c4a37c !important;
  color: #fff;
  z-index: 100;
}

.form-styles input, .form-styles textarea {
  border: 1px solid #b2b2b2;
  border-radius: 0;
}
.form-styles input, .form-styles input::placeholder, .form-styles textarea, .form-styles textarea::placeholder {
  color: #595959;
}

@media (min-width: 768px) {
  .position-md-absolute {
    position: absolute;
  }
}

.blog-content p, .blog-content .wp-block-column {
  margin-bottom: 24px;
}
.blog-content ul, .blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4 {
  margin: 24px 0;
}
.blog-content .wp-block-button__link {
  padding: 8px 20px;
}

.navbar {
  z-index: 100;
}
@media (max-width: 767px) {
  .navbar {
    background-color: rgba(51, 51, 51, 0.6);
    backdrop-filter: blur(5px);
  }
}
.navbar.fixed, .navbar.navbar-secondary {
  background-color: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(5px);
}
.navbar.fixed .navbar-brand img, .navbar.navbar-secondary .navbar-brand img {
  max-width: 40px;
}
.navbar.fixed .navbar-row, .navbar.navbar-secondary .navbar-row {
  align-items: center !important;
}
.navbar.fixed .navbar-padding, .navbar.navbar-secondary .navbar-padding {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.navbar.fixed .nav-link a, .navbar.navbar-secondary .nav-link a {
  color: rgba(255, 255, 255, 0.8);
}
.navbar .navbar-padding {
  transition: ease 0.3s;
}
.navbar .navbar-toggler {
  box-shadow: none;
}
.navbar .nav-link a {
  font-family: "Hind", sans-serif;
  font-size: 18px;
  color: #8a8a8a;
  font-weight: 600;
  transition: ease 0.3s;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
  position: relative;
}
.navbar .nav-link a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid #fff;
  transform-origin: left;
  transition: ease 0.5s;
  transform: scale(0);
}
.navbar .nav-link.active a, .navbar .nav-link:hover a {
  color: #fff;
}
.navbar .nav-link.active a:after, .navbar .nav-link:hover a:after {
  transform: scale(1);
}
.navbar .navbar-brand img {
  max-width: 120px;
  transition: ease 0.5s;
}
@media (max-width: 767px) {
  .navbar .navbar-brand img {
    max-width: 30px;
  }
}

.swiper {
  max-width: 100%;
}

.swiper-slide {
  height: auto;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
}

.grid {
  display: grid;
}
.grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) {
  .grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid.grid-4 {
    grid-template-columns: 1fr;
  }
}
.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid.grid-3 {
    grid-template-columns: 1fr;
  }
}

iframe {
  outline: none;
  border: none;
}

footer a {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .socials a {
  font-size: 20px;
}
footer .copy-box {
  background-color: #272a39;
}

@font-face {
  font-family: "Thorletto";
  src: url("../assets/thorletto/Thorletto.Otf") format("opentype"), url("../assets/thorletto/Thorletto.ttf") format("truetype");
}
.tlt {
  font-family: "Thorletto";
}

.hero-bag {
  position: absolute !important;
  top: 0 !important;
  height: auto !important;
  object-fit: cover !important;
  max-width: 350px !important;
  transform: translate(-300px, -180px) !important;
  z-index: -1;
  filter: invert(0.5) opacity(0.5) brightness(2);
  transition: ease 0.5s;
}
.hero-bag:hover {
  filter: invert(0) opacity(1) brightness(1);
}
@media (max-width: 767px) {
  .hero-bag {
    max-width: 200px !important;
    height: auto !important;
    position: relative !important;
    transform: none !important;
    margin: 0 auto !important;
    display: block;
  }
}

.hero-bag-full {
  max-width: 600px !important;
  margin: 40px auto 0 !important;
  display: block;
  filter: invert(0.5) opacity(0.5) brightness(2);
  transition: ease 0.5s;
}
.hero-bag-full:hover {
  filter: invert(0) opacity(1) brightness(1);
}
@media (max-width: 767px) {
  .hero-bag-full {
    max-width: 300px !important;
  }
}

.hero-section video, .hero-section .rev-slidebg {
  transition: ease 0.5s;
  filter: brightness(0.6) grayscale(0.6);
}
@media (max-width: 767px) {
  .hero-section rs-layer {
    background: none !important;
    height: 500px !important;
    padding-top: 100px;
  }
}

rs-bullets {
  display: none !important;
}

.tparrows {
  background: none !important;
}
@media (max-width: 767px) {
  .tparrows {
    display: none;
  }
}

.tparrows.tp-rightarrow:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 60px;
  font-weight: 300;
}

.tparrows.tp-leftarrow:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-size: 60px;
  font-weight: 300;
}

.survival-title {
  font-size: 70px;
}
@media (max-width: 767px) {
  .survival-title {
    font-size: 24px;
  }
}

.title-box {
  max-width: 710px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.title-box:not(.no-line):before {
  content: "";
  height: 40px;
  border-right: 1px solid #333;
}

.mxw-440 {
  max-width: 440px;
}

.mxw-720 {
  max-width: 720px;
}

.mxw-1000 {
  max-width: 1000px;
}

@media (min-width: 768px) {
  .long-image {
    width: 50vw;
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .long-image {
    max-height: 250px;
    width: 100%;
  }
}

.circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .circle {
    width: 300px;
    height: 300px;
  }
}
.circle .circle-icon:nth-child(2) {
  top: -18px;
}
.circle .circle-icon:nth-child(3) {
  top: 100px;
  right: 10px;
}
@media (max-width: 991px) {
  .circle .circle-icon:nth-child(3) {
    top: 60px;
    right: 0;
  }
}
.circle .circle-icon:nth-child(4) {
  bottom: 100px;
  right: 10px;
}
@media (max-width: 991px) {
  .circle .circle-icon:nth-child(4) {
    bottom: 60px;
    right: 0;
  }
}
.circle .circle-icon:nth-child(5) {
  bottom: -18px;
}
.circle .circle-icon:nth-child(6) {
  top: 100px;
  left: 10px;
}
@media (max-width: 991px) {
  .circle .circle-icon:nth-child(6) {
    top: 60px;
    left: 0;
  }
}
.circle .circle-icon:nth-child(7) {
  bottom: 100px;
  left: 10px;
}
@media (max-width: 991px) {
  .circle .circle-icon:nth-child(7) {
    bottom: 60px;
    left: 0;
  }
}
.circle img {
  max-width: 250px;
}
@media (max-width: 767px) {
  .circle img {
    max-width: 180px;
  }
}

.circle-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #333;
  position: absolute;
  z-index: 1;
  transition: ease 0.3s;
  cursor: pointer;
}
.circle-icon:hover {
  transform: scale(1.2);
}
.circle-icon i {
  font-size: 20px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-grid .img-box {
  display: flex;
  aspect-ratio: 1/1;
}
.gallery-grid .img-box .overlay {
  transition: ease 0.5s;
  opacity: 0;
}
.gallery-grid .img-box i {
  color: #fff;
  font-size: 40px;
}
.gallery-grid .img-box:hover .overlay {
  opacity: 1;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
  transition: ease 0.5s;
}
.loader.hide {
  opacity: 0;
}

.loader-box {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: linear-gradient(-72deg, #dedede, #ffffff 16%, #dedede 21%, #ffffff 24%, #b1b1b1 27%, #dedede 36%, #ffffff 45%, #ffffff 60%, #dedede 72%, #ffffff 80%, #dedede 84%, #a1a1a1);
  overflow: hidden;
}

.loader-box:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #333;
  background-color: #000;
}

.loader-box p {
  font-size: 18px;
  color: #333;
  max-width: 250px;
  line-height: 170%;
  margin-top: 36px;
}

.loader-box img {
  filter: invert(1);
  position: relative;
  min-width: 120px;
  max-height: 100%;
  height: auto;
}

.loader-box a {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-top: 24px;
}

.buy-section {
  min-height: 100vh;
}

.product-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.steps .step {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  opacity: 0.6;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .steps .step {
    font-size: 12px;
  }
}

.steps .step.active {
  border-bottom: 1px solid #fff;
  opacity: 1;
}

.plecak-shad {
  position: absolute;
  width: 450px;
  height: 450px;
  background-color: rgba(255, 255, 255, 0.1);
  top: -20px;
  border-radius: 50%;
  z-index: 0;
}
@media (max-width: 767px) {
  .plecak-shad {
    width: 300px;
    height: 300px;
  }
}

.increase-box {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.increase-box .btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.increase-box .btns button {
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0 !important;
}

.increase-box .btns button svg {
  width: 16px;
}

.increase-box .text .amount {
  font-size: 50px !important;
  margin-bottom: 0 !important;
  color: #fff !important;
  line-height: 100%;
  text-align: center;
}

.increase-box .text .price {
  text-align: center;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 0 !important;
  display: block;
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.total .total-text {
  margin: 0 !important;
  font-size: 20px;
  line-height: 80%;
  color: rgba(255, 255, 255, 0.8);
}

.total .total-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 0 !important;
  font-size: 12px !important;
  text-align: right !important;
  color: rgba(255, 255, 255, 0.8);
}

.total .total-amount .price {
  font-size: 24px;
  margin: 0 !important;
  line-height: 80% !important;
  text-align: right !important;
  color: rgba(255, 255, 255, 0.8);
}

.step-content {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.23);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
  .step-content {
    padding: 40px 8px;
  }
}

#user-panel .card {
  background-color: rgba(255, 255, 255, 0.23);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius:0;
}
 #user-panel .card table th, #user-panel .card table td {color:#333; border-color:rgba(255,255,255,.7)}
 #user-panel .card table tbody  tr:nth-child(odd) {background-color: rgba(255,255,255,.3);}
#user-panel .card table tbody  tr:nth-child(even) {background-color: rgba(255,255,255,.1);}
#user-panel .card table td a {color:#333;}
#user-panel .card .nav-pills .nav-link {  border-radius:0; color:#fff; opacity:.7;}
#user-panel .card .nav-pills .nav-link:hover {opacity:1; background-color: rgba(0,0,0,.1);}}
#user-panel .card .card-header {color:#fff;}
#user-panel .card .nav-pills .nav-link.active,
#user-panel .card .nav-pills .show>.nav-link { opacity:1;
color:#fff; background:#333;
}

 #user-panel .card label  {color:#fff; }
#user-panel .card h3 {letter-spacing:1px;   }

#user-panel .card .form-group {margin-bottom:.5rem;}
#user-panel .card .form-control, #user-panel .card .form-select {color:#fff}
#user-panel .card  .btn-secondary {color:#fff; background:#333;}

.sum-amount {
  font-size: 24px;
  color: #fff;
}

.flex-line {
  border-top: 1px dashed rgba(255, 255, 255, 0.4);
  flex-grow: 1;
  margin: 0 16px;
}

.summary-data {
  color: #fff;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 0 !important;
}

.cart-img {
  max-width: 300px;
}
@media (max-width: 767px) {
  .cart-img {
    max-width: 200px;
  }
}

.border-md-right {
  border-right: 1px solid #b2b2b2;
}
@media (max-width: 767px) {
  .border-md-right {
    border-right: none;
  }
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 767px) {
  .mini-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
.mini-gallery > div {
  background-color: #fbf6f2;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media (max-width: 991px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.tools-grid .tools-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.tools-grid .tools-item .img-box {
  flex-grow: 1;
  padding: 20px;
}
.tools-grid .tools-item .eyebrow {
  padding: 8px 0;
}

.faq-accordion, .faq-accordion-styles {
  display: flex;
  flex-direction: column;
}

.faq-accordion .ui-accordion-header, .faq-accordion-styles .ui-accordion-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #b2b2b2;
  border-radius: 0;
  padding: 20px 24px;
  background: none;
  transition: ease 0.3s;
  font-weight: 500;
  margin-top: 20px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .faq-accordion .ui-accordion-header, .faq-accordion-styles .ui-accordion-header {
    font-size: 15px !important;
  }
}
.faq-accordion .ui-accordion-header-active, .faq-accordion-styles .ui-accordion-header-active {
  background-color: #2c2c2c;
  color: #fff;
  border-color: #2c2c2c;
}

.faq-accordion .ui-accordion-header-active .ui-icon:after, .faq-accordion-styles .ui-accordion-header-active .ui-icon:after {
  transform: rotate(-180deg);
}

.faq-accordion .ui-accordion-header-icon, .faq-accordion-styles .ui-accordion-header-icon {
  text-indent: 0;
  background: none;
  display: flex;
  align-items: center;
  width: 18px;
  transform: translateY(2px);
}

.faq-accordion .ui-accordion-header-icon:after, .faq-accordion-styles .ui-accordion-header-icon:after {
  content: "\f078";
  display: block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  transition: ease 0.3s;
  font-size: 20px;
}
@media (max-width: 767px) {
  .faq-accordion .ui-accordion-header-icon:after, .faq-accordion-styles .ui-accordion-header-icon:after {
    font-size: 14px;
  }
}

.faq-accordion .ui-accordion-content, .faq-accordion-styles .ui-accordion-content {
  padding: 24px;
  border: none;
  background: none;
  border: 1px solid #b2b2b2;
  border-radius: 0;
}

.e-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #d5d5d5;
  z-index: 10;
}
@media (max-width: 767px) {
  .e-icon {
    width: 30px;
    height: 30px;
  }
}
.e-icon:hover {
  animation: emergency 1s ease infinite;
}
.e-icon img {
  filter: brightness(0);
  max-width: 60px;
}
@media (max-width: 767px) {
  .e-icon img {
    max-width: 16px;
  }
}

@keyframes emergency {
  0%, 100% {
    box-shadow: 0 0 12px transparent;
  }
  30% {
    box-shadow: 0 0 12px green;
  }
  60% {
    box-shadow: 0 0 12px orange;
  }
  90% {
    box-shadow: 0 0 12px red;
  }
}
.about-slider .swiper-pagination {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  bottom: 0;
  padding-bottom: 12px;
  padding-top: 60px;
}
.about-slider .swiper-pagination-bullet {
  width: 60px;
  height: 4px;
  border-radius: 10px;
  background-color: #fff;
  opacity: 0.4;
}
.about-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  border-radius: 50%;
  color: #fff;
}

.form-control, .form-select {background:transparent !important;}
.form-control, .form-select, .btn, .button {border-radius:0;}

.step-content h3.fw-bold {font-weight:300 !important; color:#fff;}

.step-content  .btn-link {color:#fff;}

.bg-cart-right {
  background-color: rgba(255, 255, 255, 0.23) !important;
  border: 1px solid rgba(255, 255, 255, 0.5)  !important;
  backdrop-filter: blur(10px);
}
.step-content .bg-cart-right  h3.fw-bold {color:#333;}

.step-content .product_container input input,
.step-content .product_container input textarea, .step-content .product_container input  .custom-select, .step-content .product_container input  select {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: none;
  padding: 12px 16px;
  outline: none;
  width: 100%;
}
.step-content .product_container input  , .step-content .product_container   input::placeholder, .step-content .product_container textarea,
.step-content .product_container    textarea::placeholder, .step-content .product_container   .custom-select,
.step-content .product_container   .custom-select::placeholder, .step-content .product_container  select, .step-content .product_container  select::placeholder,
.step-content .product_container  {
  color: #fff;
}
.step-content .product_container .text-muted, #cart_widget_content .text-muted{color: #fff !important; opacity:.7;}
.step-content .product_container .text-muted:hover, #cart_widget_content .text-muted:hover{opacity:1;}


.step-content .bg-cart-right   select, .step-content .bg-cart-right  select::placeholder {color:#333;}


.step-content .product_container  input:focus, .step-content .product_container  textarea:focus, .step-content .product_container  .custom-select:focus,
.step-content .product_container  select:focus {
  border-color: #c4a37c;
}
input.error, textarea.error, .custom-select.error, select.error {
  border-color: #ed2326;
}

#cart_widget_button .badge {padding:0; background:#222 !important; border-radius:50%; width:24px; height:24px; line-height:24px; text-align:center; font-size:11px; color:#fff;}

#progressbar li {opacity:.7; color:#fff;}
#progressbar li.active {opacity:1;}
#progressbar li.active b {border-bottom:1px solid #fff;}

.ps-3.d-inline-block a.px-1  {opacity:.7;}
.ps-3.d-inline-block a.px-1active {opacity:1; border-bottom:1px solid #fff;}

#cart_widget_content{    z-index: 1111;}
#cart_widget_content hr {opacity:.3;}
#cart_widget_content .card{border-radius:0; background:#222; }
#cart_widget_content .card .button { padding: 10px 0 ; text-align:center; border-radius:0;}

.button-primary:hover, .button-primary:focus {color:#333 !important;}

.nav-tabs .nav-link {color:#fff; text-transform:uppercase;}
.nav-tabs .nav-link.active {color:#333;}

.step-content .card .form-control:placeholder, .step-content .card .form-select:placeholder,
.step-content .card .form-control, .step-content .card .form-select {color:#fff;}


.form-check-input {border-radius:0; margin-right:5px;}
.form-check-input:checked {
    background-color: #333;
    border-color: #333;
}
