  #phone {
	border: 1px solid #FFF;
    flex: 1;
    outline: 0;
    color: #222;
    letter-spacing: 0.02em;
    min-width: 0;
	border-radius: 8px !important;
  }
  #phone.error {
	  border: 1px solid #C00 !important;
  }
  #phone::placeholder { color: #ccc; }
	.plustenoff { display: none; }
	.green { color: #28a745 !important; }
	fieldset { min-width: fit-content !important; }
	input.error, select.error {
		border: 1px solid #C00 !important;
		background: url('/assets/error-input.png?v=1') 97.5% 50% no-repeat #fff;
	}
	input.valid, select.valid {
		border: 1px solid #00d04f !important;
	}
	.frm-flds:has(input.valid)::after, .frm-flds:has(select.valid)::after {
		position: absolute;
		content: '';
		top: 50%;
		right: 22px;
		background: url('/_img/tick-input.png?v=2.4') no-repeat center;
		height: 20px;
		width: 19px;
		background-size: contain;
		transform: translateY(-50%);
	}
  .phone-wrapper {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #a7abad;
    border-radius: 8px;
    overflow: visible;
    background: #fff;
    transition: border-color 0.2s;
  }
  .phone-wrapper:focus-within { border-color: #4a90e2; box-shadow: 0 0 0 3px rgba(74,144,226,0.15); }

  /* Flag dropdown */
  .flag-select {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1.5px solid #e0e0e0;
    border-radius: 8px 0 0 8px;
    background: #f8f8f8;
    cursor: pointer;
    user-select: none;
    padding: 0 10px;
    gap: 6px;
    min-width: 72px;
    transition: background 0.15s;
  }
  .flag-select:hover { background: #efefef; }
  .flag-icon { font-size: 1.35rem; line-height: 1; }
  .flag-code { font-size: 0.78rem; color: #555; font-weight: 600; }
  .flag-chevron { font-size: 0.55rem; color: #888; margin-left: 2px; }
  .flag-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: -1px;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 100;
    overflow: hidden;
    min-width: 140px;
  }
  .flag-dropdown.open { display: block; }
  .flag-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background 0.12s;
    font-size: 0.88rem;
    color: #333;
  }
  .flag-option:hover { background: #f0f5ff; }
  .flag-option.active { background: #e8f0fe; font-weight: 600; }
  .flag-option .flag-icon { font-size: 1.2rem; }
  .flag-icon img { width: 24px;height: auto; }
.tab-wrapper {
    border: 2px solid #0a84ff;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    float: left;
    margin: 25px 0;
}
.tab-option input {
  position:absolute;
  opacity:0;
  pointer-events:none;
}
label.tab-option {
    width: 50%;
}
.tab-option span {
  display:block;
  padding:12px 18px;
  cursor:pointer;
  user-select:none;
  color:#0098FA;
  font-size:16px;
  text-align:center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border: 1px solid #0098FA;
}
.tab-option input:checked + span {
  background:#0098FA;
  color:#fff;
}
.plans {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.plan {
    display: flex;
    gap: 12px;
    padding: 15px;
    border: 1px solid #A1A1A1;
    border-radius: 16px;
    cursor: pointer;
    align-items: center;
    margin-bottom: 20px;
}
.plan.selected {
    border: 1px solid #0071E3;
    box-shadow: 0px 0px 0px 2px #6BB4FF;
}
.plan input[type="radio"] {
  appearance:none;
  width:31px;
  height:31px;
  background:#0a84ff;
  border: 1.72px solid #D9D9D9;
  border-radius:50%;
  margin-top:6px;
  position:relative;
  cursor:pointer;
  background: #DEDEDE;
}
.plan input[type="radio"]:checked{
    background: #0098FA;
}
.plan input[type="radio"]::after{
  content:"";
  width:10px;
  height:10px;
  background:#fff;
  border-radius:50%;
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.plan input[type="radio"]:checked::after {
  content:"";
  width:10px;
  height:10px;
  background:#fff;
  border-radius:50%;
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}

.plan-content { flex:1; }

.plan input:checked ~ .plan-content {
  border-color:#0a84ff;
}

.plan-content {
    display: flex;
    justify-content: space-between;
}
.plan-header {
    width: 70%;
}
.plan-header h3 {
    font-size: 17px;
    font-weight: 700;
}
.plan-header ul {
    padding-left: 16px;
    margin-top: 8px;
}
.plan-header ul li {
    font-size: 14px;
    list-style: disc;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
.deal {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    font-family: "Inter", sans-serif;
}
p.most-propular.deal {
    color: #0098FA;
}
.plan input[type="radio"] {
    appearance: none;
    width: 31px;
    height: 31px;
    background: #0a84ff;
    border: 1.72px solid #D9D9D9;
    border-radius: 50%;
    margin-top: 6px;
    position: relative;
    cursor: pointer;
    background: #DEDEDE;
}
.plan input[type="radio"]:checked {
    background: #0098FA;
}
.save {
    color: #BF4800;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}
.deal img {
    width: 18px;
}
.price .new {
    font-size: 18px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    display: block;
    float: none;
    clear: both;
    text-align: right;
}
.price .old {
    color: #000;
    margin-right: 5px;
    position: relative;
    font-size: 17px;
    font-family: "Inter", sans-serif;
    display: block;
    width: max-content;
    float: right;
}
.price .old::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    top: 48%;
    left: 0;
    background-color: #d35400;
    transform: rotate(353deg);
}
.tag.popular {
  color:#0a84ff;
  font-weight:600;
}
p.best-deal.deal {
    color: #BC1111;
}
@media (max-width: 500px) {
    .tab-option span {
        font-size: 12px;
    }
}
@media (max-width: 1021px) {
    .plan-header ul li {
        font-size: 11px;
    }
}
@media (max-width: 500px) {
    .plan-header ul li {
        font-size: 11px;
    }
}
@media (max-width: 1021px) {
    .plan {
        padding: 10px;
    }
}
@media (max-width: 500px) {
    .plan {
        padding: 10px;
    }
}
@media (max-width: 1021px) {
    p.sub {
        font-size: 13px;
    }
}
@media (max-width: 500px) {
    p.sub {
        font-size: 13px;
    }
}
@media (max-width: 420px) {
    .plan-header h3, p.sub {
        font-size: 12px;
    }
}
@media (max-width: 1021px) {
    .deal {
        font-size: 10px;
    }
}
@media (max-width: 500px) {
    .deal {
        font-size: 9px;
    }
}
@media (max-width: 1021px) {
    .price .old {
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .price .old {
        font-size: 12px;
    }
}
@media (max-width: 1021px) {
    .price .new {
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .price .new {
        font-size: 14px;
    }
}
@media (max-width: 1021px) {
    .save {
        font-size: 12px;
    }
}
@media (max-width: 500px) {
    .save {
        font-size: 12px;
    }
}
@media (max-width: 420px) {
    p.save {
        font-size: 10px;
    }
}
@media (max-width: 1021px) {
    .deal img {
        width: 14px;
    }
}
@media (max-width: 420px) {
    .deal img {
        width: 16px;
    }
}

select.input-flds,
select.selcet-fld {
	background: url(/assets/offer/1/app/desktop/images/checkout-now-v3/select.png) no-repeat right center #fff!important;
	padding-right: 40px!important;
}

select.input-flds.valid,
select.input-flds.no-error,
select.selcet-fld.valid,
select.selcet-fld.no-error {
	background: none!important;
}
