.btn-continue {
  background-color: #ffc107;
  color: #222;
  font-weight: bold;
}

.btn-new.active {
  background: var(--color-1);
}

.btn-new.user {
  position: relative;
}

.btn-new.user::before {
  display: none;
}

.btn-new.user::after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-1);
  display: none;
}

.btn-new.active.user::after {
  display: block;
}

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

/* FLOATING TEXT BOX */
.user-input-wrp {
  position: relative;
}

.user-input-wrp .fa.fa-abs {
  position: absolute;
  left: 15px;
  top: 5px;
  display: inline-block;
  line-height: 30px;
  /* padding-right: 20px; */
  width: 25px;
  border-right: 1px solid #d2c4c4;
}

.user-input-wrp .inputText {
  width: 100%;
  outline: none;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  height: 40px;
  padding-left: 50px !important;
  border-radius: 5px;
  margin: 0;
}

.user-input-wrp .floating-label {
  position: absolute;
  pointer-events: none;
  top: 9px !important;
  left: 50px !important;
  transition: 0.2s ease all;
  color: #777;
  font-size: 14px;
}

.user-input-wrp input:focus ~ .floating-label,
.user-input-wrp input:not(:focus):valid ~ .floating-label {
  top: -14px !important;
  left: 34px !important;
  font-size: 12px;
  opacity: 1;
  background: #fff;
  border-radius: 10px;
  color: #408bc8;
  padding: 0 6px;
}

.info-sorry {
  color: #1eaab8;
  font-weight: bold;
}

.basic-info-box {
  background: #eee;
  padding: 20px 20px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.basic-info-box p {
  margin-bottom: 5px;
  font-size: 14px;
}

.radio-user,
.combine-form {
  display: none;
  margin-top: 30px;
}

.radio-user:checked + .combine-form {
  display: block;
}

.shopping-block {
  position: relative;
  background: url(../../images/bg/bg-pattern.jpg);
  padding: 35px 20px 20px;
}
.shopping-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(227, 249, 207, 0.85);
}
.shopping-block .title-block h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.shopping-block .shopping-box {
  max-width: 500px;
  margin: 0 auto;
  display: block;
  position: relative;
}
.shopping-block .shopping-box.big {
  max-width: none;
}
.shopping-block .shopping-box .grid-form {
  position: relative;
  background: #fff;
  max-width: 100%;
  margin: 10px auto;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
}
.shopping-block .shopping-box .grid-form::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  top: -15px;
}
.shopping-block .shopping-box .grid-form .user-input-wrp {
  border: 1px solid #a5a5a5;
  border-radius: 5px;
  height: 42px;
  margin-bottom: 10px;
}
.shopping-block .shopping-box .grid-form .user-input-wrp:last-child {
  margin-bottom: 0;
}
.shopping-block .shopping-box .grid-form h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--color-2);
}
@media (max-width: 559px) {
  .shopping-block .shopping-box .grid-form {
    padding: 25px 15px;
  }
}

.new-or-existing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.new-or-existing label,
.new-or-existing a {
  background: var(--color-2);
  outline: none;
  color: #fff !important;
  border-radius: 4px;
  padding: 5px;
}

.new-address-holder {
  margin-top: 30px;
  display: none;
}

#f-option0:checked ~ .new-address-holder {
  display: block;
}

.info-sorry {
  color: #1eaab8;
  font-weight: bold;
}

.basic-info-box {
  background: #eee;
  padding: 20px 20px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.basic-info-box p {
  margin-bottom: 5px;
  font-size: 14px;
}

ul.modern-radios {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}

ul.modern-radios li {
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
}

ul.modern-radios li input[type=radio] {
  position: absolute;
  visibility: hidden;
}

ul.modern-radios li label {
  display: block;
  position: relative;
  font-weight: 300;
  padding-left: 25px;
  /* height: 30px; */
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  font-size: 14px;
  margin: 5px 40px 0px 0;
  color: #222;
}

ul.modern-radios.address li {
  display: block;
  width: 100%;
}

ul.modern-radios.address li label {
  /* height: 10px; */
  font-weight: bold !important;
}

ul.modern-radios.address li p {
  padding-left: 25px;
  max-width: 300px;
  font-size: 14px;
  line-height: 20px;
  margin-top: 0;
  display: block;
  position: relative;
  clear: both;
  color: #222;
}

ul.modern-radios li .check {
  display: block;
  position: absolute;
  border: 2px solid #444;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  top: 9px;
  left: 0px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}

ul.modern-radios li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 9px;
  width: 9px;
  top: 2px;
  left: 2px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

ul.modern-radios input[type=radio]:checked ~ .check {
  border: 2px solid var(--color-2);
}

ul.modern-radios input[type=radio]:checked ~ .check::before {
  background: var(--color-2);
}

ul.modern-radios input[type=radio]:checked ~ label {
  color: var(--color-2);
}

.table-review td {
  vertical-align: middle !important;
  position: relative;
}

.table-review td .fa {
  font-size: 13px !important;
  display: inline-block;
  margin-right: 2px;
}

.table-review a.remove {
  position: absolute;
  left: 15px;
  top: 10px;
  color: red;
}

.table-review img {
  width: 50px;
}

@media (max-width: 767px) {
  .table-review a.remove {
    top: 0;
    bottom: 0;
    left: -10px;
    line-height: 0;
  }
  .table-review a.remove .fa {
    background: red;
    padding: 5px;
    color: #fff;
    border-radius: 6px;
  }
  .table-review img {
    margin-top: 10px;
    margin-left: 0;
  }
}
.table-review a {
  color: inherit;
}

.table-review a.title {
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-gap: 10px;
  max-width: 300px;
}

.table-review tr:first-child td {
  font-weight: bold;
  font-size: 14px;
}

.table-review tr td:first-child {
  width: 55px;
}

.table-review tr td:last-child {
  text-align: right;
}

.table-review tr.grand td {
  font-weight: bold;
  font-size: 20px;
}

.table-review tr.sub-total td {
  font-size: 15px;
  font-weight: bold;
}

.xs-only {
  display: none;
}

#btnuserdetail.in-active {
  pointer-events: none;
  opacity: 0.2;
}

@media (max-width: 767px) {
  .table-striped > tbody > tr:nth-child(odd) > td,
  .table-striped > tbody > tr:nth-child(odd) > th {
    background: #fff;
  }
  .table-review img {
    width: 100%;
  }
  .table-review tr:first-child {
    display: none;
  }
  .table-review tr {
    position: relative;
    border: none;
    display: block;
    border: 1px solid #cebbbb;
    border-radius: 6px;
    margin-bottom: 10px;
    /* overflow: hidden; */
    padding: 8px;
    --bs-table-accent-bg: #fff !important;
  }
  .table-review tr td {
    position: relative;
    display: block;
  }
  .table-review tr td {
    margin-left: 15px;
    border: none !important;
    padding: 2px 0 !important;
  }
  .table-review tr td a.title {
    margin-right: 10px;
  }
  .table-review tr td:first-child {
    position: absolute;
    margin-left: 0;
    left: 0;
    width: 0;
  }
  .table-review tr td:last-child {
    text-align: left;
    border-bottom: 10px solid #fff !important;
  }
  .table-review tr:last-child td:first-child {
    width: 50%;
  }
  .table-review tr.grand {
    border: none;
    padding: 0 8px;
  }
  .table-review tr.grand td {
    display: block;
    width: 100% !important;
    position: relative;
  }
  .xs-only {
    position: relative;
    display: inline-block;
  }
  .hidden-xs-only {
    display: none !important;
  }
}
/* PRODUCT DETAIL PAGE */
section.product-detail {
  background: #f7f8fd;
  padding: 20px 0;
}

.product-detail-style-1 {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #edeef5;
  margin-bottom: 20px;
}

.product-detail-title {
  margin-bottom: 15px;
}

.product-detail-style-1 h2 {
  margin-top: 0;
  font-size: 24px;
}

.product-detail-style-1 ul.brand-code {
  margin: 0;
  padding: 0;
}

.product-detail-style-1 ul.brand-code li {
  display: inline-block;
  margin-right: 15px;
  font-size: 13px;
}

.product-detail-style-1 ul.brand-code li span {
  color: #9b9bb4;
}

.product-detail-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-gap: 20px;
}

@media (max-width: 991px) {
  .product-detail-body {
    grid-template-columns: 1fr 1fr;
  }
  .product-image {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .product-detail-body {
    grid-template-columns: 1fr;
  }
  .product-image {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.carousel-indicators.type-2 {
  position: relative;
  top: 10px;
}

.carousel-indicators.type-2 button {
  width: 60px;
  height: 60px;
  border-radius: 3px;
  background: transparent;
  text-indent: 0;
  border: 1px solid #ddd;
  overflow: hidden;
}

.carousel-indicators.type-2 button.active {
  border-color: #222;
}

.carousel-indicators.type-2 button img {
  width: 100%;
  height: 100%;
}

#addCart {
  display: none;
}

#addCart:checked ~ .cart-product-detail {
  display: block;
}

.cart-product-detail {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #eee;
  display: none;
}

.cart-product-detail h3 {
  font-size: 14px;
  margin-bottom: 15px;
  background: var(--color-2);
  margin: 0;
  padding: 6px 12px;
  color: #fff;
  text-transform: uppercase;
}

.cart-product-detail .holder {
  background: #fff;
  padding: 5px;
  display: grid;
  grid-template-columns: 60px auto;
  grid-gap: 20px;
  border: 1px solid var(--color-2);
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

.cart-product-detail .thumb img {
  width: 100%;
  border-radius: 5px;
}

.cart-product-detail .holder .inc-dec-box {
  margin-top: 6px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cart-product-detail .holder .inc-dec-box {
    display: block;
  }
}
.price-box-1 h2 {
  color: var(--color-1);
  font-size: 32px;
  font-weight: bold;
  margin: 15px 0;
}

.price-box-1 h2 small {
  color: #c2c2d3;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 10px;
  font-size: 22px;
}

.in-stock {
  text-transform: uppercase;
  padding: 0 10px;
  background-color: #e5f8ed;
  border-radius: 20px;
  color: #00b853;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 15px;
}

.desc p {
  font-size: 14px;
}

ul.product-type li {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 18px;
}

ul.product-type li::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "\f00c";
  font-family: "FontAwesome";
  color: #00b853;
}

.btn-back {
  color: #222;
  display: inline-block;
  padding: 6px 16px;
  background: #ddd;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.category-box {
  margin: 20px 0 30px;
  padding-top: 20px;
  border-top: 1px solid #e4e5ee;
}

.category-box p {
  margin-bottom: 3px;
  color: #444;
  font-size: 13px;
}

.category-box a {
  color: #777;
}

#addCart:checked ~ .inc-dec-box {
  display: none;
}

.inc-dec-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  margin-bottom: 40px;
}

.inc-dec {
  display: grid;
  grid-template-columns: 40px auto 40px;
  grid-gap: 10px;
}

.value-button {
  width: 100%;
  height: 40px;
  background-color: #edeef5;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  font-size: 20px;
  line-height: 35px;
  text-align: center;
}

.value-button:hover {
  background: #ffcd00;
}

input#numberCart,
input#number {
  text-align: center;
  border: none;
  border: none;
  margin: 0px;
  width: 100%;
  height: 40px;
  font-size: 20px;
  pointer-events: none;
}

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

.btn-add-cart {
  border: none;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 12px;
  color: #fff;
  background-color: var(--color-1);
  border-radius: 30px;
  border-color: transparent;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  display: block;
  width: 100%;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}

ul.social-container {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.social-container li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: red;
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  margin-right: 3px;
}

ul.social-container li a.facebook {
  background: #3b5998;
}

ul.social-container li a.twitter {
  background: #1da1f2;
}

ul.social-container li a.pinterest {
  background: #e60023;
}

ul.social-container li a.linkedin {
  background: #0077b5;
}

ul.social-container li a.whatsapp {
  background: #25d366;
}

.covid-box {
  padding: 20px 20px 10px;
}

ul.shipping-box {
  padding: 25px 20px 20px;
  background: #f7f8fd;
  border-radius: 3px;
}

ul.shipping-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

ul.shipping-box li span {
  display: inline-flex;
  align-items: flex-start;
  font-size: 16px;
  margin-right: 20px;
  position: relative;
  top: 8px;
}

.feature-tabs-wrap.type-2 {
  background-color: #fff;
  border: 1px solid #edeef5;
  padding: 20px;
}

.feature-tabs-wrap.type-2 .nav-tabs {
  padding: 0;
  border-bottom: none;
}

.feature-tabs-wrap.type-2 .nav-tabs button {
  padding: 8px 25px;
  text-transform: uppercase;
  color: #888;
  margin-right: 10px;
  font-weight: bold;
  border: none;
  font-size: 13px;
  border-radius: 30px;
}

.feature-tabs-wrap.type-2 .nav-tabs button.active {
  color: #111;
  background: #215d38;
  color: #fff;
}

.feature-tabs-wrap.type-2 .nav-tabs a::before {
  display: none;
}

.feature-tabs-wrap.type-2 .tab-pane {
  padding: 10px 5px;
}

.feature-tabs-wrap.type-2 .tab-pane p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}

#productCarousel img {
  width: 100%;
}

.grid-description {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
  margin: 10px 0 20px;
}

.grid-description.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .grid-description {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-description.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-description img {
  width: 100%;
  border: 1px solid #eee;
  transition: 0.5s ease;
}

.grid-description-box {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.grid-description-box:hover img {
  transform: scale(1.1);
}

.grid-description-box .overlay-description {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 70, 56, 0.65);
  display: flex;
  pointer-events: none;
  transition: 0.5s ease;
  opacity: 0;
}

.grid-description-box:hover .overlay-description {
  opacity: 1;
}

.grid-description-box .overlay-description span {
  margin: auto;
  display: inline-block;
  padding: 6px 15px;
  background: #fff;
  color: var(--color-1);
  border-radius: 5px;
  text-transform: uppercase;
}

.size-box {
  padding: 0 0 10px 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.radio-3 {
  display: block;
}

.radio-3 label {
  display: inline-block;
  border: 1px solid #444;
  color: #666;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
  margin: 0 0 5px;
  text-align: left;
  position: relative;
  font-size: 14px;
  font-weight: bold;
}

.radio-3 label.small {
  padding: 2px 12px;
  text-align: center;
  width: 90px;
}

.radio-3.block label input[type=radio] {
  display: none;
}

.radio-3 label.active {
  background: orange;
  border-color: orange;
  color: #eee;
}

@media (max-width: 768px) {
  .radio-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .radio-3 label {
    font-size: 12px;
  }
}
.product-detailed-description {
  margin: 30px 0 0px;
  background-color: #f5f5f5;
  padding: 30px;
}
.product-detailed-description h2 {
  margin: 0 0 10px;
}
.product-detailed-description p {
  margin: 0 0 15px;
}
.product-detailed-description p:last-child {
  margin: 0;
}
.product-detailed-description h5 {
  margin: 0 0 10px;
}

/* SUCCESS PAGE */
section.success {
  background-color: #f5f5f5;
  padding-bottom: 15px;
}
section.success .success-box {
  padding: 30px 0;
  text-align: center;
  max-width: 600px;
  margin: auto;
}
section.success .success-box img {
  --value: 90px;
  width: var(--value);
  height: var(--value);
  border-radius: var(--value);
  margin: 20px 0;
}
section.success .success-box p {
  font-size: 14px;
}
section.success .success-box .share-box {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
section.success .success-box .share-box .btns a {
  display: inline-block;
  padding: 6px 24px 7px;
}
@media (max-width: 559px) {
  section.success .success-box .share-box .btns a {
    display: block;
    margin-bottom: 10px;
  }
}
section.success .success-box .share-box a {
  display: inline-block;
  margin: 10px 3px 0 0;
  color: var(--color-1);
  padding: 5px 12px 6px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}/*# sourceMappingURL=shopping.css.map */