@charset "UTF-8";
.pricing-wrapper {
  display: grid;
  border-radius: 14px;
  border: 1px solid #E6E7EA;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.pricing-wrapper .item {
  padding: 32px 40px 24px 40px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.pricing-wrapper .item .head-card {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.pricing-wrapper .item .head-card .package-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
  margin: 0 12px 0 0;
}
.pricing-wrapper .item .head-card .package-discount {
  background-color: #FFAE00;
  color: #fff;
  padding: 3px 7px;
  border-radius: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.pricing-wrapper .item .package-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #747A8B;
  margin-bottom: 46px;
}
.pricing-wrapper .item .package-pricing {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  border-bottom: 1px solid #E6E7EA;
}
.pricing-wrapper .item .package-pricing p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 40px;
}
.pricing-wrapper .item .package-pricing p span {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
}
.pricing-wrapper .item .price-yearly {
  display: none;
}
.pricing-wrapper .item .package-content {
  list-style: none;
  padding: 0;
  margin-bottom: 38px;
  list-style-type: disc;
}
.pricing-wrapper .item .package-content li {
  color: #747A8B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #E6E7EA;
  position: relative;
  list-style-type: none;
  padding: 20px 0 20px 16px;
}
.pricing-wrapper .item .package-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #94a3b8;
}
.pricing-wrapper .item .pakage-button {
  background-color: #F3F4F6;
  color: #020D2B;
  padding: 17px 30px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.pricing-wrapper .item .pakage-button i {
  font-size: 12px;
  margin-top: 3px;
}
.pricing-wrapper .item .pakage-button a {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  color: #020D2B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.pricing-wrapper:hover {
  background-color: #F3F4F6;
}
.pricing-wrapper:hover .pakage-button {
  background-color: var(--primary);
  color: #fff;
}
.pricing-wrapper:hover .pakage-button a {
  color: #fff;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.billing-toggle .billing-option {
  font-weight: 500;
  color: #94a3b8;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.billing-toggle .billing-option.active {
  color: #0f172a;
}
.billing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.billing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.billing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2563eb;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 24px;
}
.billing-toggle .switch .slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 50%;
}
.billing-toggle .switch input:checked + .slider::before {
  transform: translateX(20px);
}