.contact-form {
    max-width: 400px;
    margin: auto;
    font-family: "Inter", Sans-serif;
}

.contact-form .product-options {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.contact-form .product-option {
    position: relative;
}
.contact-form .product-option input[type="checkbox"] {
    display: none;
}

.contact-form .card {
    border: 1px solid #ECECEC;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 95px;
    cursor: pointer;
    padding-top: 26px;
}

.contact-form .product-option input[type="checkbox"]:checked + .card {
    border: 2px solid #007bff;
}

.contact-form button[type="submit"] {
    margin-top: 40px;
    width: 100%;
    background: #007bff;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}


.contact-form .checkmark-icon {
    position: absolute;
    top: 8px;
    right: 13px;
    width: 20px;
    height: 20px;
    display: none;
}

.contact-form .product-option {
    position: relative !important;
    pointer-events: unset !important;
}

.contact-form .product-option input[type="checkbox"]:checked + .card .checkmark-icon {
    display: block;
}

.contact-form .select-product{
    color:#84849A;
    padding: 14px;
    position: relative;
    width: 100%;
    text-align: center;
}
.contact-form .select-product span {
    padding-left: 5px;
  padding-right: 5px;

}
.contact-form .select-product .first-line {
    padding-bottom: 4px;
}
.contact-form .select-product .second-line {
    padding-bottom: 4px;
}

.contact-form .input-icon {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 20px;
    height: 20px;
    pointer-events: none;
  }


  .contact-form .form-group input,
  .contact-form .form-group select,
  .contact-form .form-group textarea {
    width: 100%;
    padding: 12px 40px 12px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
  }
.contact-form #country_code {
	padding: 9px 14px 9px 9px;
}
 .contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
  }
 .contact-form .phone-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
  }
  .contact-form .phone-wrapper select {
    width: 80px;
  }
  .contact-form .phone-wrapper input {
    flex: 1;
  }


  
   
.contact-form .form-group {
    --pad: .95rem;
    position: relative;
  }
  .contact-form input {
    padding: var(--pad);
    border-radius: 8px;
    background-color: var(--bg);
    border: 1px solid #D5D4DC;
    color: inherit;
    width: 300px;
    outline: none;
  }
  .contact-form label {
    position: absolute;
    left: var(--pad);
    top: var(--pad);
    background: var(--bg);
    padding-inline: .3em;
    transition: transform 200ms;
    pointer-events: none;
    transform-origin: left;
    translate: -.3em;
    background: #fff;
    color: #84849A;
  }
  .contact-form .phone_label{
    margin-inline: 6.0em;
  }
 .contact-form  input::placeholder {
    opacity: 0;
  }
 .contact-form  input:focus + label,
 .contact-form  input:not(:placeholder-shown) + label {
    transform: translateY(calc(-50% - var(--pad))) scale(.8);
    color: var(--accent);
    color: #84849A;
  }
  .contact-form textarea:focus + label,
 .contact-form  textarea:not(:placeholder-shown):valid + label {
    transform: translateY(calc(-50% - var(--pad))) scale(.8);
    color: var(--accent);
    color: #84849A;
  }
  
 .contact-form  input:focus {
    border: 1px solid #D5D4DC !important;
  }
  .contact-form select:focus {
    outline:1px solid #D5D4DC !important;
  }
  .contact-form textarea:focus {
    outline:1px solid #D5D4DC !important;
  }
.select-product img {
    width: 73px;
  }
  @media (max-width: 768px) {
 .contact-form label {
    font-size: 14px;
  }
}
 @media (max-width: 515px) {
 
  .contact-form .select-product img {
    width: 50px;
  }
  .contact-form .select-product{
  display: block;
  text-align: center;
  }
}

 @media (max-width: 460px) {
 .contact-form .card{
  width: 84px;
 } 
 }
 
@media (max-width: 805px) and (min-width: 768px) {
 .contact-form .card {
      width: 87px;
  }
}
@media (max-width: 904px) and (min-width: 768px) {
 .select-product img {
	width: 40px;
}
}

