body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

a {
  transition: all .3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
}

span {
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 1px;
}

p {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
}

.text-green {
  color: #73BE1E;
}

.m-0 {
  margin: 0;
}

.error-msg {
  color: red;
  font-size: 13px;
}

.green-text {
  color: #73BE1E;
}

.grey-text {
  color: #A3A3A3;
}

/* BUTTONS */

.default-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px;
  transition: 0.3s;
}

.green-btn {
  background: #73BE1E;
  color: #fff;
}

.green-btn:hover {
  background: #589117;
  color: #fff;
}

.green-btn::after {
  content: url('../images/arrow-right-white.svg');
  margin-left: 10px;
}

/* .green-btn:hover:after {
  fill: #000000;
} */

.transparent-btn {
  background: none;
  color: #000000;
  border: 1px solid #d4d4d4;
}

.transparent-btn:hover {
  background: #73BE1E;
  color: #fff;
}

.order-info-section {
  color: #fff;
  padding: 20px;
}

.order-info-section.able-to-order {
  background: #000000;
}

.order-info-section.unable-to-order {
  background: red;
  text-align: center;
}

.place-order {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* .order-info-wrap p {
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
} */

.place-order span.timer {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
}

body.home .order-products-section {
  max-width: 100%;
  background-image: url(../images/bakery-shop-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

form#order-bakery-products .order-steps {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: flex-start;
}

form#order-bakery-products .order-steps .step {
  flex: 1;
  align-self: stretch;
  max-width: 580px;
  background: #fff;
  margin: 0 auto;
}

/* #step-2 {
  display: none;
} */

form#order-bakery-products .form-header {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  padding: 30px;
}

.bakery-products-wrapper,
form#order-bakery-products .form-fields {
  padding: 30px;
}

form#order-bakery-products .form-field {
  margin-bottom: 25px;
}

form#order-bakery-products .form-header .step {
  text-transform: uppercase;
}

form#order-bakery-products .form-header .right p {
  text-transform: capitalize;
  margin: 0;
}

form#order-bakery-products #step-1 label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

form#order-bakery-products #step-1 .checkboxes label {
  margin-bottom: 0;
}

form#order-bakery-products #step-1 select,
form#order-bakery-products #step-1 input:not([type='checkbox']) {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  border: 1px solid #d4d4d4;
  color: #d4d4d4;
  background-color: #fff;
}

form#order-bakery-products .checkbox-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

form#order-bakery-products .checkboxes {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* form#order-bakery-products input[type="checkbox"] {
  width: 30px;
  height: 30px;
  border: 1px solid #d4d4d4;
  accent-color: #73BE1E;
} */

form#order-bakery-products .checkbox-item label{
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  text-transform: capitalize;
  margin: 0;
}

form#order-bakery-products .btns {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

form#order-bakery-products .btns .default-btn {
  flex: 1;
}

.bakery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  height: 460px;
  overflow: auto;
}

.bakery-item {
  max-width: 160px;
  border: 1px solid #F1F9E9;
}

.bakery-item .bottom {
  padding: 10px 20px;
}

.bakery-item .price {
  margin-bottom: 10px;
  display: block;
  display: none;
}

.bakery-item .bs-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 10px;
}

.thank-you-message .msg {
  text-align: center;
  margin: 30px 15px;
}

/* Loader */

.sk-fading-circle {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #73BE1E;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; } 
}


/* QTY */

.quantity-wrap {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.bs-qty-btn {
  width:20px;
  height:20px;
  padding: 10px;
  text-align: center;
  border:1px solid #DEDEDE;
  cursor: pointer;
}

.quantity-wrap .minus {
  background-image: url(../images/minus-icon.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.quantity-wrap .plus {
  background-image: url(../images/plus-icon.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.quantity-wrap .quantity-value {
  font-size: 13px;
  line-height: 23px;
  width: 40px;
  padding: 0;
  text-align: center;
}

form#order-bakery-products #step-1 .error,
form#order-bakery-products #step-1 input.error {
  border-color: red;
}

.review-order-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
    
}

.review-order-popup {
  position: absolute;
  max-width: 600px;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  width: 100%;
  box-shadow: 1px 1px 9px 3px rgba(163,163,163,0.75);
-webkit-box-shadow: 1px 1px 9px 3px rgba(163,163,163,0.75);
-moz-box-shadow: 1px 1px 9px 3px rgba(163,163,163,0.75);
}

.review-order-popup .top {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d4d4d4
}

.review-item .bs-remove-js {
  padding-right: 20px;
  cursor: pointer;
}

.review-order-popup .top img {
  cursor: pointer;
}

.review-order-popup .top .title {
  margin-bottom: 0;
}

.review-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d4d4d4;
  position: relative;
  margin-bottom: 20px;
}

.review-order-popup .bottom {
  padding: 20px 40px;
}

.review-order-popup .product-image {
  background-color: #F1F9E9;
}

.review-order-popup .product-image img {
  padding: 10px;
}

.review-item .grey-text {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 22px;
}

.review-item .green-text {
  font-size: 13px;
  line-height: 23px;
}

.review-item .title {
  font-size: 14px;
  line-height: 25px;
}

.review-item .qty,
.review-item .total {
  display: flex;
  flex-direction: column;
}

.review-item .numbers {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #73BE1E;
  font-size: 23px;
}

.review-item .numbers:after {
  content: url('../images/white-circle.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -9;
    
}

.wpml-ls-legacy-dropdown {
  max-width: 70px;
}

.main-navigation .main-nav ul li a {
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  text-transform: uppercase;
}

.nav-float-right #site-navigation {
  margin-left: 0;
}

.inside-header {
  gap: 20px;
}


/* RESPONSIVE */

@media (max-width: 1024px) {
  form#order-bakery-products .order-steps {
    flex-direction: column;
  }

  .order-info-wrap {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  body.home .order-products-section {
    padding: 50px 15px;
  }

  .has-inline-mobile-toggle .inside-header {
    padding: 15px;
    gap: 0;
  }

  .has-inline-mobile-toggle #site-navigation.toggled {
    margin-top: 0;
    margin-bottom: 20px;
  }
}