/* Cart Fix */
.popup-cart .total-procart {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.popup-cart .total-procart p:last-child {
  font-size: 19px;
}

.cart-fixed i {
  font-size: 20px;
  position: relative;
  z-index: 9;
}
.cart-fixed span {
  position: absolute;
  top: 0px;
  right: -5px;
  color: #ffffff;
  width: 20px;
  height: 20px;
  background: #ec2d3f;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  border-radius: 100%;
  z-index: 10;
}

#popup-cart .card-cover {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1010;
  background: transparent;
  right: 0;
}
#popup-cart .cart-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#popup-cart .price-new-cart {
  color: #000;
}
#popup-cart .cart-dialog {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(120%);
  transition: transform 0.35s ease, right 0.25s ease, visibility 0s;
  z-index: 1000;
  width: 480px;
  background: #fff;
  transition: transform 0.5s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
#popup-cart .wrap-cart {
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-color: #e7e7e7;
  height: 100%;
  position: absolute;
  overflow-y: scroll;
  left: 0;
  top: 0;
  width: 100%;
  overscroll-behavior: none;
  padding: 5px 15px;
}
#popup-cart .wrap-cart::-webkit-scrollbar {
  width: 5px;
  height: 10px;
  border-radius: 3px;
}
#popup-cart .wrap-cart::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
#popup-cart .wrap-cart::-webkit-scrollbar-track {
  background-color: #d4d4d4;
}
#popup-cart .wrap-cart::-webkit-scrollbar-track-piece {
  background-color: #e7e7e7;
}
#popup-cart .wrap-cart::-webkit-scrollbar-thumb {
  height: 60px;
  background-color: #d4d4d4;
}
#popup-cart .wrap-cart::-webkit-scrollbar-corner {
  background-color: #e7e7e7;
}
#popup-cart .wrap-cart::-webkit-resizer {
  background-color: #e7e7e7;
}
@media screen and (max-width: 991px) {
  #popup-cart .wrap-cart {
    padding: 5px 10px;
  }
}
#popup-cart .info-procart {
  padding-right: 0;
}
#popup-cart .link-to-cart {
  display: block;
  background: var(--main-color);
  color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px 0;
  border: 1px solid var(--main-color);
  transition: 0.4s;
}
#popup-cart .link-to-cart:hover {
  background: #fff;
  color: var(--main-color);
}
@media screen and (max-width: 991px) {
  #popup-cart .link-to-cart {
    padding: 6px 0;
  }
}
#popup-cart .buymore-cart {
  text-decoration: underline;
}
#popup-cart .procart {
  padding: 15px 0;
}
@media screen and (max-width: 991px) {
  #popup-cart .procart {
    padding: 10px 0;
  }
}
#popup-cart .quantity-counter-procart {
  border-radius: 0;
  border-color: #f9f9f9;
  margin-left: 0;
}
#popup-cart .cart-header {
  padding: 15px;
}
@media screen and (max-width: 991px) {
  #popup-cart .cart-header {
    padding: 10px;
  }
}
#popup-cart .close-cart {
  width: 25px;
  height: 25px;
  background: transparent;
  outline: none;
  border: none;
  font-size: 25px;
  color: #333;
}
#popup-cart .cart-title {
  font-size: 16px;
  color: var(--main-color);
  font-weight: bold;
}
#popup-cart .cart-footer {
  padding: 15px;
}
#popup-cart .cart-footer .total-procart {
  padding: 6px 0;
}
#popup-cart .cart-footer .total-procart p:first-child {
  font-weight: normal;
}
#popup-cart .cart-footer .total-procart p:last-child {
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  #popup-cart .cart-footer {
    padding: 10px;
  }
}
#popup-cart .cart-body {
  flex-grow: 1;
  position: relative;
}
#popup-cart .del-procart {
  color: #ec2d3f;
  font-size: 15px;
  display: block;
  cursor: pointer;
  height: 15px;
  width: 15px;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 0;
}
#popup-cart.opened .cart-background {
  opacity: 1;
  visibility: visible;
}
#popup-cart.opened .card-cover {
  left: 0 !important;
  transition-delay: 0s;
}
#popup-cart.opened .cart-dialog {
  width: 480px;
  transform: translateX(0);
  transition-delay: 0.1s;
  transition-duration: 0.3s;
  transition: transform 0.35s ease, right 0.25s ease, visibility 0s;
  right: 0;
}
@media screen and (max-width: 991px) {
  #popup-cart.opened .cart-dialog {
    width: 85%;
    max-width: 450px;
  }
}

.no-cart {
  padding: 15px 10px;
  border-top: 1px solid #f9f9f9;
}
.no-cart p {
  margin: 10px 0;
}
.no-cart a {
  display: inline-block;
  color: #1a73e8;
  text-decoration: underline;
}
.no-cart .form-search {
  width: 50%;
  margin: 30px auto 0 auto;
  position: relative;
}
.no-cart input {
  width: 100%;
  height: 40px;
  outline: none;
  border: 1px solid #ccc;
  padding: 0 40px 0 20px;
}
.no-cart button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  outline: none;
  border: 1px solid #ccc;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .no-cart .form-search {
    width: 100%;
  }
}

.buymore-cart {
  color: var(--main-color);
  cursor: pointer;
  margin: 0px;
}
.buymore-cart i {
  margin-right: 2px;
  margin-top: 5px;
  vertical-align: top;
  font-size: 12px;
}

.wrap-cart {
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991px) {
  .top-cart {
    margin-top: 2rem;
  }
}

.procart {
  padding: 15px 10px;
}
.procart + .procart {
  border-top: 1px solid #f1f1f1;
}
@media screen and (max-width: 991px) {
  .procart {
    padding: 8px 0;
  }
  .procart + .procart {
    border-top: 1px solid #f1f1f1;
  }
}

.top-cart .procart {
  padding: 15px 0;
}

.number-pro-cart {
  font-size: 13px;
}

@media screen and (min-width: 991px) {
  .cart-sticky {
    position: sticky;
    top: 60px;
  }
}

.pic-procart {
  position: relative;
  flex: 0 0 85px;
  -ms-flex: 0 0 85px;
  max-width: 85px;
}
.pic-procart .del-procart {
  color: #999;
  font-size: 15px;
  display: block;
  cursor: pointer;
  height: 15px;
  width: 15px;
  position: absolute;
  top: -7.5px;
  left: -7.5px;
}
.pic-procart .del-procart i {
  display: block;
}
.pic-procart .del-procart:hover {
  color: red;
}
.pic-procart img {
  display: block;
  border: 1px solid #ededed;
}
@media screen and (max-width: 991px) {
  .pic-procart {
    flex: 0 0 60px;
    -ms-flex: 0 0 60px;
    max-width: 60px;
  }
  .pic-procart .del-procart {
    top: 0;
    left: 0;
    position: static;
    margin: 5px auto 0 auto;
  }
}

.price-info-cart strong {
  margin-right: 10px;
}
.price-info-cart del {
  font-size: 12px;
  color: #8f9bb3;
}

.name-procart a {
  font-size: 14px;
  color: #000;
  display: block;
}
.name-procart a:hover {
  color: #ec2d3f;
}

#cupponModal .modal-header, #cupponModal .modal-body {
  padding: 10px;
}
#cupponModal button.close {
  padding: 0;
  margin: 0;
}

.properties-procart {
  display: block;
  font-size: 13px;
}
.properties-procart span {
  margin: 0 2px;
}
.properties-procart p {
  display: inline-block;
  margin-bottom: 0px;
}
.properties-procart p strong {
  font-weight: bold;
}

.quantity-counter-procart {
  border: 1px solid #f9f9f9;
  width: 90px;
  margin-top: 5px;
  height: 25px;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: stretch;
  margin-left: calc(100% - 90px);
}

.counter-procart {
  background-color: #f9f9f9;
  border: 0px;
  width: 30%;
  color: #333;
  outline: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
}
.counter-procart:hover, .counter-procart:focus {
  color: #ec2d3f;
}
.counter-procart:disabled, .counter-procart:disabled:hover {
  color: #ccc;
  cursor: not-allowed;
}

.counter-procart-minus {
  line-height: 25px;
}

.counter-procart-plus {
  line-height: 25px;
}

.quantity-counter-procart .quantity-procart {
  width: 40%;
  box-sizing: border-box;
  border: 0px;
  border-right: 1px solid #f9f9f9;
  border-left: 1px solid #f9f9f9;
  outline: none;
  box-shadow: none;
  padding: 0px;
  color: #333;
  text-align: center;
}

.price-procart {
  flex: 0 0 95px;
  -ms-flex: 0 0 95px;
  max-width: 95px;
  text-align: right;
}

.info-procart {
  padding: 0 15px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .info-procart {
    padding: 0 10px;
  }
}

.price-new-cart {
  color: #ec2d3f;
  margin-bottom: 0px;
  font-weight: bold;
}

.price-old-cart {
  color: #999;
  text-decoration: line-through;
}

.total-procart {
  padding: 5px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.total-procart p {
  font-weight: bold;
}
.total-procart p:last-child {
  color: #ec2d3f;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  .total-procart p:last-child {
    font-size: 16px;
  }
}

hr.hr-md {
  margin: 0.5rem 0;
}

.link-to-payment {
  display: block;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 5px;
  text-align: center;
  font-weight: bold;
  border-radius: 0;
  transition: 0.4s;
  border-radius: 5px;
  border: 1px solid var(--main-color);
  margin-top: 15px;
}
.link-to-payment:hover {
  background: #fff;
  color: var(--main-color);
}
@media screen and (max-width: 991px) {
  .link-to-payment {
    padding: 6px 0;
  }
}

.cover-list-pro {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media screen and (max-width: 991px) {
  .cover-list-pro {
    border-radius: 0;
    box-shadow: none;
  }
}

.section-cart {
  background: #fff;
  border-radius: 5px;
}
.section-cart.bot {
  padding: 15px;
}
.section-cart.bot {
  border-radius: 0 0 5px 5px;
}
.section-cart h4 {
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  border-bottom: 1px solid #eae4e8;
  color: var(--main-color);
}
.section-cart > p {
  font-size: 14px;
  margin-bottom: 15px;
}
.section-cart .counter-cart {
  font-weight: bold;
}
.section-cart .list-procart {
  padding: 8px;
  border: 2px solid #eae4e8;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .section-cart.bot, .section-cart.top {
    padding: 0;
  }
  .section-cart h4 {
    font-size: 15px;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
  }
  .section-cart > p {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .section-cart .list-procart {
    padding: 0;
    border: 0;
    border-radius: 0;
  }
}

.title-cart {
  font-size: 16px;
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  margin-bottom: 15px;
}
.title-cart a {
  font-size: 14px;
  color: #000;
  font-weight: normal;
}
@media screen and (max-width: 991px) {
  .title-cart {
    font-size: 15px;
  }
}

.procart.procart-label {
  background: var(--main-color);
  font-weight: bold;
  color: #fff;
  padding: 10px;
}

.input-cart {
  margin-bottom: 0.5rem;
  position: relative;
}
.input-cart textarea {
  resize: none;
  height: 100px;
}
.input-cart select {
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .input-cart input, .input-cart select, .input-cart textarea {
    font-size: inherit !important;
  }
}

.payments-cart {
  text-align: left;
  margin-bottom: 5px;
  min-height: auto;
}
.payments-cart:last-child {
  margin-bottom: 0px;
}
.payments-cart input {
  top: calc(50% - 0.625rem);
}

.payments-label {
  cursor: pointer;
  background: #eee;
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 0px;
  color: #313131 !important;
}
.payments-label::before, .payments-label::after {
  top: calc(50% - 0.5rem);
}
.payments-label.active {
  background: #ec2d3f;
  color: #ffffff !important;
}

.payments-info {
  opacity: 0;
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  background: #f5efef;
  border-radius: 5px;
}
.payments-info p {
  margin-bottom: 1em;
}
.payments-info.active {
  padding: 10px 15px;
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.btn-cart {
  background: var(--main-color);
  color: #fff;
  font-size: inherit;
  border: 1px solid var(--main-color);
  text-transform: uppercase;
  font-weight: bold;
  height: 40px;
}
.btn-cart:hover {
  color: var(--main-color);
  background: #fff;
}
@media screen and (max-width: 991px) {
  .btn-cart {
    height: 35px;
  }
}

.empty-cart {
  padding: 25px 30px;
  display: block;
  text-align: center;
  color: #23527c !important;
  width: 100%;
}
.empty-cart i {
  color: red;
  font-size: 70px;
}
.empty-cart p {
  margin: 15px 0px;
  color: #333;
  font-size: 18px;
}
.empty-cart span {
  display: inline-block;
  border: 1px solid #2e9ef2;
  border-radius: 3px;
  padding: 10px;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  max-width: 325px;
}

.color-pro-detail {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 4px;
  border: 1px solid #eee;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
}
.color-pro-detail::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border-radius: 50%;
}
.color-pro-detail.active::after {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.color-pro-detail:hover .color-tooltip {
  display: block;
}

.size-pro-detail,
.capacity-pro-detail,
.origin-pro-detail {
  cursor: pointer;
  border: 1px solid #ccc;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  padding: 3px 10px;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.size-pro-detail + .size-pro-detail,
.capacity-pro-detail + .capacity-pro-detail,
.origin-pro-detail + .origin-pro-detail {
  margin-left: 5px;
}

.size-pro-detail.active,
.capacity-pro-detail.active,
.origin-pro-detail.active {
  border-color: #000;
  color: #000;
}
.size-pro-detail.active::before,
.capacity-pro-detail.active::before,
.origin-pro-detail.active::before {
  content: "";
  padding: 4px;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: -15px;
  right: -13px;
  background: #080808;
  width: 26px;
  height: 24px;
  transform: rotate(45deg);
  border-radius: 100%;
}
.size-pro-detail.active::after,
.capacity-pro-detail.active::after,
.origin-pro-detail.active::after {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfkCw8RJSHXzNuNAAAAfElEQVQoz7WRsQ2CYBQGLwRCaLRkDwqdwcLCSZjCmj2AgtoJXMbEUquzEAz+8Je89r675sGG59ka0ig+0ZFbJDGbgRwoAXemi/hb1QZw793ebB739cPgTdV2qvzZAFY+VL+VwB4nB59j5RLYhBVXcTBZw7NJDAN49LrFyz67GnkMHStx0wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMC0xMS0xNVQxNzozNzozMyswMDowMGfDTJEAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjAtMTEtMTVUMTc6Mzc6MzMrMDA6MDAWnvQtAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0px;
  right: 0;
  width: 6px;
  height: 6px;
}

.color-pro-detail input[type=radio],
.size-pro-detail input[type=radio],
.capacity-pro-detail input[type=radio],
.origin-pro-detail input[type=radio] {
  display: none;
}

.quantity-pro-detail {
  width: 100%;
  max-width: 130px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.quantity-pro-detail span {
  padding: 0px;
  width: 44px;
  height: 44px;
  color: #a4aaaf;
  cursor: pointer;
  border: 1px solid #ced4da;
  background: #fff;
}
.quantity-pro-detail span i {
  line-height: 44px;
  font-size: 14px;
  width: 44px;
  height: 44px;
  transition: 0.3s;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
  border-radius: 0 5px 5px 0;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
  border-radius: 5px 0 0 5px;
}
.quantity-pro-detail span:hover i {
  color: #000;
}
.quantity-pro-detail input {
  height: 44px;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  width: calc(100% - 88px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
}
@media screen and (max-width: 991px) {
  .quantity-pro-detail {
    max-width: 105px;
  }
  .quantity-pro-detail span {
    width: 35px;
    height: 35px;
  }
  .quantity-pro-detail span i {
    line-height: 35px;
    width: 35px;
    height: 35px;
  }
  .quantity-pro-detail input {
    height: 35px;
    width: calc(100% - 70px);
  }
}

.group-quantity-pro-detail {
  width: 130px;
}
@media screen and (max-width: 991px) {
  .group-quantity-pro-detail {
    width: 105px;
  }
}

.group-cart-pro-detail {
  flex: 0 0 calc(100% - 130px);
  -ms-flex: 0 0 calc(100% - 130px);
  max-width: calc(100% - 130px);
  padding-left: 10px;
}
@media screen and (max-width: 991px) {
  .group-cart-pro-detail {
    flex: 0 0 calc(100% - 105px);
    -ms-flex: 0 0 calc(100% - 105px);
    max-width: calc(100% - 105px);
  }
}

.cart-pro-detail a {
  text-transform: uppercase;
  display: block;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid #000;
  background: #fff;
  font-weight: bold;
  line-height: 42px;
}
.cart-pro-detail a.btn-pro {
  background: #000;
  color: #fff;
}
.cart-pro-detail a.btn-pro:hover {
  color: #000;
  background: #fff;
}
.cart-pro-detail a.btn-outline-pro {
  color: #000;
}
.cart-pro-detail a.btn-outline-pro:hover {
  color: #fff;
  background: #000;
}
@media screen and (max-width: 991px) {
  .cart-pro-detail a {
    font-size: 12.5px;
    line-height: 33px;
  }
}

.cart-product {
  margin-bottom: 0px;
}
.cart-product span {
  cursor: pointer;
  width: 49%;
  float: left;
  color: #ffffff;
  text-transform: capitalize;
  text-align: center;
  padding: 7px 5px;
  border-radius: 3px;
}

.cart-add {
  margin-right: 2%;
  background-color: #ec2d3f;
}
.cart-add:hover {
  background-color: #c31829;
}

.cart-buy {
  background-color: #28a745;
}
.cart-buy:hover {
  background-color: #207d36;
}

.cuppon-row p {
  padding-left: 25px;
  background: url(../images/coupon-icon.webp) no-repeat left center;
  line-height: 22px;
}
.cuppon-row a {
  color: var(--main-color);
}

.lb-header-cuppon {
  color: #F47560;
  font-weight: bold;
}
.lb-header-cuppon svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.cuppon-payment button {
  width: 100%;
  height: 42px;
  background: var(--main-color);
  color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 991px) {
  .cuppon-payment input, .cuppon-payment button {
    height: 37px;
    font-size: inherit;
  }
}

.color-tooltip {
  background: #000;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 5px;
  line-height: 20px;
  transform: translate(-50%, calc(-100% - 10px));
  display: none;
}
.color-tooltip::after {
  border-style: solid;
  border-width: 3px 2.5px 0 2.5px;
  border-color: #000 transparent transparent transparent;
  background: #333333;
  content: "";
  height: 8px;
  position: absolute;
  transform: rotate(45deg);
  width: 8px;
  left: calc(50% - 4px);
  bottom: -4px;
}

.cupponBox {
  position: relative;
  background: #fff;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
  padding: 10px;
  border-radius: 5px;
  min-height: 100px;
}

.cupponBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  height: 100%;
  width: 10px;
  color: #fff;
  background-clip: padding-box;
  background: repeating-linear-gradient(#e5e5e5, #e5e5e5 5px, transparent 0, transparent 9px, #e5e5e5 0, #e5e5e5 10px) 0/1px 100% no-repeat, radial-gradient(circle at 0 7px, transparent, transparent 2px, rgba(229, 229, 229, 0.9333333333) 0, #e5e5e5 3px, currentColor 0) 1px 0/100% 10px repeat-y;
}

.cuppon__slick--items {
  padding: 7px;
}

.cuppon__slick {
  margin: 0 -7px;
}

.cupponBox_icon {
  flex: 0 0 90px;
  -ms-flex: 0 0 90px;
  max-width: 90px;
}

.cupponBox_info {
  flex: 0 0 calc(100% - 90px);
  -ms-flex: 0 0 calc(100% - 90px);
  max-width: calc(100% - 90px);
  padding-left: 10px;
}

.cupponBox_info h3 {
  font-size: 15px;
  font-weight: bold;
  color: var(--main-color);
  transition: 0.3s;
}

.cupponBox_info p {
  margin: 4px 0;
}

.cupponBox_info button {
  padding: 2px 15px;
  display: block;
  font-size: 12px;
  background: var(--main-color);
  color: #fff;
  line-height: 24px;
  height: 24px;
  border-radius: 12px;
}

.cupponBox_info a {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .cupponBox_info h3 {
    font-size: 14px;
  }
}