/** Shopify CDN: Minification failed

Line 260:16 Expected ":"

**/
/* General */
body .plan-page .main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
}
body .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
body .page-container {
  background-color: #fff;
}

@media (max-width: 768px) {
  body .container {
  	padding: 0 20px;
  }
}
/* END the general */


/* Header section*/
body .header {
  width: 100%;
  padding: 9px 0;
  background: rgba(247, 243, 240, 0.5);
}
body .header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .logo {
  width: 100px;
  height: 100px;
  display: inline-block;
}
body .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 10px;
}
body .trustpilot img {
  margin-right: 20px; 
}
body .trustpilot span {
  font-family: 'Tropiline';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 110%;
  text-align: center;
  color: #032831;
}

@media (max-width: 768px) {
  body .logo {
    width: 60px;
    height: 60px;
  }
  body .trustpilot {
    flex-direction: column;
  }
  body .trustpilot img {
    margin-right: 0; 
    margin-bottom: 7px;
  }
}

/* END the header section */


/* PLAN's STYLE*/
body .plan-content {
  width: 100%;
  padding-top: 78px;
  padding-bottom: 78px;
  flex-grow: 1;
}
body h1{
  margin-bottom: 48px;
  font-family: 'Tropiline';
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 120%;
  color: #032831;
  text-align: center;
}
body .plan-block {
  margin-bottom: 20px;
}
body .plan-wrapper {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-X: auto;
}
body .plan-wrapper input[type="radio"], .checkbox input[type="checkbox"]{
  opacity: 0;
  position: fixed;
  width: 0;
}
body .plan-wrapper label {
  height: 146px;
  width: 204px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin:0 15px 30px 15px;
  font-family: 'Tropiline';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  background: #fff;
  border: 2px solid #032831;
  border-radius: 4px;
  transition: .3s all ease;
  text-align: center;
  cursor: pointer;
}
body .plan-wrapper label span{
  max-width: 140px;
  text-align: center;
  font-family: 'Tropiline';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
}
body .plan-wrapper input[type="radio"]:checked + label {
  background-color: #faf1eb;
  box-shadow: 0px 4px 20px rgba(3, 40, 49, 0.25);
}
body .plan-wrapper label:hover {
  background-color: #faf1eb;
}
body .plan-wrapper input[type="radio"]:checked + label span, .plan-wrapper label:hover span {
  font-weight: 700;
}
body .checkbox {
  margin-bottom: 30px;
  text-align: center;
}
body .checkbox label {
  position: relative;
  padding-left: 61px;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  color: #333333;
  transition: .3s all ease;
}
body .checkbox label:before {
  position: absolute;
  content: '';
  left: 0;
  top: calc(50% - 22px);
  width: 45px;
  height: 45px;
  background: #FFFFFF;
  border: 2px solid #032831;
  box-shadow: 0px 4px 20px rgba(3, 40, 49, 0.25);
  border-radius: 4px;
}
body .checkbox input[type="checkbox"]:checked + label:before {
  background-image: url('/cdn/shop/t/27/assets/check.svg?v=1650005347');
  background-repeat: no-repeat;
  background-size: 26px 18px;
  background-position: center;
}
body .amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .amount span {
  font-family: 'Tropiline';
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 130%;
  text-align: center;
  color: #323031;
}
body .amount span:nth-child(2) {
  font-size: 48px;
}
body .amount span.welcome-pack {
  margin-top: 20px;
  font-family: 'Poppins';
  font-weight: 400;
}
body .plan-content button {
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 17px 30px 14px;
  background: #E53F1D;
  box-shadow: 0px 4px 20px rgba(3, 40, 49, 0.25);
  border-radius: 200px;
  transition: .3s all ease;
  border: none;
  color: #fff;
}
body .plan-content button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  body .plan-content {
    padding-top: 48px;
  }
 body  h1{
    margin-bottom: 20px;
    font-size: 24px;
    text-align: left;
  }
  body .plan-block {
    margin-bottom: 15px;
  }
  body .plan-wrapper {
  	justify-content: space-between;
  }
  body .plan-wrapper label {
  	margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    width: 48%;
    height: auto;
    min-height: 110px;
    padding: 15px; 
  }
  body .checkbox {
  	margin-bottom 12px;
  }
  body .checkbox label {
    font-size: 15px;
    line-height: 18px;
  }
}

/* END the PLAN's STYLE */

/* Recommended section */

body .recommended {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #F7F3F0;
}
body .recommended .container {
  text-align: center;
}
body .recommended-title {
  display: inline-block;
  margin-bottom: 30px;
  font-family: 'Tropiline';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #032831;
}
body .logos {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  body .recommended {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body .recommended-title {
    margin-bottom: 18px;
    font-size: 18px;
  }
  body .logos {
	justify-content: space-around;
  }
  body .logos img {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 26px;
  }
}
/* END the recommended section */
/* START preloader */
body .preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(247, 243, 240, 0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .preloader span {
  margin-top: 20px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #333333;
}
body .spinner {
  animation: rotate 2s linear infinite;
  z-index: 9999;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}

body .spinner .path {
  stroke: #e53f1d;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/* END preloader */