.post,
.page {
  padding: 0;
  margin: 0;
}

.container {
  display: block;
  margin: 0 auto;
  width: 800px;
}

@keyframes bounceBtn {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}
@keyframes slideShine {
  0% {
    left: -100px;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 1;
  }
}
.btnSpan, .custom_modal > div > .content > .response_modal > button > span, .product_box > div > button > span, .bounce-btn .elementor-button-link > span, .woocommerce #payment #place_order .elementor-button-link > span,
.woocommerce-page #payment #place_order .elementor-button-link > span {
  overflow: hidden;
}
.btnSpan::before, .custom_modal > div > .content > .response_modal > button > span::before, .product_box > div > button > span::before, .bounce-btn .elementor-button-link > span::before, .woocommerce #payment #place_order .elementor-button-link > span::before,
.woocommerce-page #payment #place_order .elementor-button-link > span::before {
  content: "";
  width: 90%;
  height: 16px;
  border-radius: 20px 20px 10px 10px;
  position: absolute;
  background: linear-gradient(180deg, white, transparent);
  top: 4px;
  left: 10px;
  opacity: 0.4;
}
.btnSpan > span, .custom_modal > div > .content > .response_modal > button > span > span, .product_box > div > button > span > span, .bounce-btn .elementor-button-link > span > span, .woocommerce #payment #place_order .elementor-button-link > span > span,
.woocommerce-page #payment #place_order .elementor-button-link > span > span {
  overflow: hidden;
}
.btnSpan > span::before, .custom_modal > div > .content > .response_modal > button > span > span::before, .product_box > div > button > span > span::before, .bounce-btn .elementor-button-link > span > span::before, .woocommerce #payment #place_order .elementor-button-link > span > span::before,
.woocommerce-page #payment #place_order .elementor-button-link > span > span::before {
  content: "";
  width: 70px;
  height: 100px;
  background: red;
  position: absolute;
  left: -100px;
  top: -20px;
  transform: rotate(13deg);
  filter: blur(20px);
  opacity: 0.9;
  animation: slideShine 2s infinite;
}

.bounce-btn, .woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  animation: bounceBtn 2s infinite;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 60px;
  overflow: hidden;
}
.bounce-btn .elementor-button-link, .woocommerce #payment #place_order .elementor-button-link,
.woocommerce-page #payment #place_order .elementor-button-link {
  overflow: hidden;
}
.bounce-btn .elementor-button-link > span > span::before, .woocommerce #payment #place_order .elementor-button-link > span > span::before,
.woocommerce-page #payment #place_order .elementor-button-link > span > span::before {
  display: none;
}

.header {
  background: #f8f8f8;
}
.header > .container {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header > .container .logo img {
  width: 180px;
}
.header > .container .menu ul {
  margin: 0;
  padding: 0;
}
.header > .container .menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  padding: 10px 25px;
}
.header > .container .menu ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.header > .container .menu ul li:last-child {
  background: linear-gradient(217deg, #FF0940 0%, #F25629 100%);
  border-radius: 25px;
  animation: bounceBtn 2s infinite;
}
.header > .container .menu ul li:last-child a {
  color: #fff;
}

.product_wrapper {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.product_box {
  border: 3px solid red;
  background: #fff;
  padding: 60px 45px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s;
  box-shadow: 0 3px 5px #cbcbcb;
  width: 100%;
}
.product_box > span {
  position: absolute;
  top: -15px;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
}
.product_box > span > span {
  background: #FF0940;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
}
.product_box > h4 {
  color: #FF0940;
  margin: 0;
  padding: 0;
  text-align: center;
}
.product_box > h4 > span {
  display: block;
}
.product_box > h4 > span:nth-of-type(1) {
  font-size: 82px;
  background: -webkit-linear-gradient(45deg, #FF0940, #ffc109);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product_box > h4 > span:nth-of-type(2) {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -20px;
}
.product_box > .content {
  padding: 10px 0 25px 0;
  font-size: 14px;
}
.product_box > div ul {
  margin: 0;
  padding: 0;
  padding-left: 10px;
}
.product_box > div > .discount,
.product_box > div > .regular {
  padding: 10px 0;
}
.product_box > div > .discount > span {
  display: block;
  text-align: center;
}
.product_box > div > .discount > span:nth-of-type(1) {
  font-size: 16px;
  text-decoration: line-through;
}
.product_box > div > .discount > span:nth-of-type(2) {
  font-size: 24px;
  font-weight: 700;
}
.product_box > div > .regular {
  text-align: center;
}
.product_box > div > .regular > span {
  font-size: 24px;
  font-weight: 700;
}
.product_box > div > button {
  font-family: "Nunito", Sans-serif;
  font-size: 22px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(45deg, #FF0940, #ffc109);
  border-radius: 30px 30px 30px 30px;
  padding: 15px 25px 15px 25px;
  color: #fff;
  width: 100%;
  animation: bounceBtn 2s infinite;
  cursor: pointer;
  box-shadow: 0 3px 5px #cbcbcb;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
}
.product_box > div > button:active {
  transform: scale(0.8);
}

.custom_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(0, 0, 0, 0.631372549);
  transition: all 0.4s;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  height: 0%;
  opacity: 0;
}
.custom_modal > div {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  width: 440px;
}
.custom_modal > div > .close {
  text-align: right;
}
.custom_modal > div > .close > button {
  border: 0;
  background: transparent;
  border: 1px solid gray;
  border-radius: 100%;
  padding: 5px 10px;
}
.custom_modal > div > p {
  text-align: center;
}
.custom_modal > div > .content > .description > h4 {
  margin: 0;
  padding: 0;
  font-size: 42px;
  background: -webkit-linear-gradient(45deg, #FF0940, #ffc109);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.custom_modal > div > .content > .description > p {
  text-align: center;
}
.custom_modal > div > .content > p {
  text-align: center;
  font-size: 14px;
  margin: 0;
}
.custom_modal > div > .content > p > strong {
  font-weight: 700;
  font-size: 21px;
}
.custom_modal > div > .content > .form {
  border: 1px solid rgb(150, 150, 150);
  padding: 5px;
  display: flex;
  margin: 10px 0;
  border-radius: 25px;
}
.custom_modal > div > .content > .form > input {
  flex: 3;
  border: 0;
  padding: 5px 15px;
  background: transparent;
}
.custom_modal > div > .content > .form > input:focus {
  outline: none;
}
.custom_modal > div > .content > .form > button {
  flex: 1;
  background-image: linear-gradient(45deg, #97d005, #09ff98);
  border-radius: 30px 30px 30px 30px;
  color: #000;
  box-shadow: 0 3px 5px #cbcbcb;
  border: 0;
  cursor: pointer;
}
.custom_modal > div > .content > .response_username {
  background: #e7e7e7;
  padding: 15px 10px;
  border-radius: 5px;
  border-left: 3px solid #52e64b;
  font-size: 13px;
  margin-bottom: 10px;
  visibility: hidden;
  display: none;
}
.custom_modal > div > .content > .response_username-active {
  visibility: visible;
  display: block;
}
.custom_modal > div > .content > .response_modal {
  display: none;
}
.custom_modal > div > .content > .response_modal > button {
  font-family: "Nunito", Sans-serif;
  font-size: 22px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(45deg, #FF0940, #ffc109);
  border-radius: 30px 30px 30px 30px;
  padding: 15px 25px 15px 25px;
  color: #fff;
  width: 100%;
  animation: bounceBtn 2s infinite;
  cursor: pointer;
  box-shadow: 0 3px 5px #cbcbcb;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
}
.custom_modal > div > .content > .response_modal-active {
  display: block;
}

.custom_modal-active {
  visibility: visible;
  height: 100%;
  opacity: 1;
}

.divisor {
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, #633470, #ff9300, #d11667);
}

.footer {
  background: black;
  padding: 90px 0;
  text-align: center;
  color: #fff;
}
.footer > div > a > img {
  width: 180px;
}

.checkout-wrapper {
  width: 940px;
  margin: 0 auto;
  padding: 60px 0;
}

.order_review .shop_table {
  display: none !important;
}

#customer_details .col-1 {
  width: 100% !important;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.woocommerce-checkout > .checkout-forms {
  display: flex !important;
  gap: 10px;
}
.woocommerce-checkout > .checkout-forms > div {
  flex: 1;
}

.woocommerce-checkout-payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment {
  background: transparent;
}

.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
#add_payment_method #payment div.payment_box {
  display: none !important;
}

.mp-checkout-benefits-container {
  display: none !important;
}

.woocommerce-privacy-policy-text {
  font-size: 11px;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: inherit;
  width: 100%;
  background: linear-gradient(45deg, #67c867, #59e559);
  padding: 20px 25px;
}

.woocommerce-error {
  border: 0;
  background: #ffe9e9;
  font-size: 12px;
}

.labels-checkout {
  margin: 20px 0;
  text-align: center;
  display: block;
}
.labels-checkout > img {
  width: 80%;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 5px 15px;
  border-radius: 6px;
}

.coupon {
  display: none;
}

.loading_modal {
  text-align: center;
  display: none;
}
.loading_modal > img {
  width: 90px;
}

.is-mobile {
  display: none;
}

.is-desktop {
  display: block;
}

@media only screen and (max-width: 720px) {
  .container {
    width: 90%;
  }
  .is-mobile {
    display: block;
  }
  .is-desktop {
    display: none;
  }
  .product_wrapper {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .product_wrapper > .product_box {
    margin-top: 40px;
  }
  .custom_modal > div {
    width: 90%;
  }
  .header > .container {
    display: block;
  }
  .header > .container > .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header > .container > .logo > div > .active-menu-btn {
    font-size: 22px;
    border: 0;
  }
  .header > .container > .menu {
    position: fixed;
    top: 0;
    right: -900px;
    height: 100vh;
    width: 60%;
    background: #f8f8f8;
    z-index: 99;
    transition: all 0.4s;
  }
  .header > .container > .menu > .close-menu {
    text-align: right;
  }
  .header > .container > .menu > .close-menu > button {
    color: rgb(195, 195, 195);
    padding: 5px;
    font-size: 30px;
    border-radius: 0;
    background: transparent;
    border: 0;
  }
  .header > .container > .menu ul {
    width: 100%;
    padding: 50px 20px;
  }
  .header > .container > .menu ul li {
    display: block;
    width: 100%;
  }
  .header > .container > .menu-active {
    right: 0;
  }
  .checkout-wrapper {
    width: 90%;
  }
  .woocommerce-checkout > .checkout-forms {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */