/* Extra small devices (phones, 0px - 480px) */
@media (max-width: 480px) {
   /* Styles for small phones */
   .option-button {
         flex-direction: column;
      }
}

/* Small devices (large phones, 481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
   /* Styles for large phones / small tablets */
   .option-button {
   flex-direction: column;
   }
}

.option-button {
    display: flex;
    min-height: 220px;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    border-width: 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px;
    background-color: #dedede;
    padding: 20px;
    cursor: pointer;
    width: 600px;
    max-width: 100%;
}


.option-button:hover {
    background-color: #ababab;
}

.option-button>img {
    height: 200px;
    border-radius: 16px;
    width: 350px;
}

.option-button>div {
    font-weight: bolder;
    font-size: 1.4em;
    cursor: pointer;
}

.option-button>* {
    padding: 10px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

form>div {
    padding: 10px;
}

.selected {
    background-color: #ababab;
}

form>label>input {
    width: 300px;
    max-width: 100%;
    margin: 0px 10px;
    border-radius: 18px;
    padding: 10px 20px !important;
}

form>label {
    margin: 0px 15px;
    display: flex;
    flex-direction: column;
}

P,
label {
    font-size: 1.1em;
}

form>div>button {
    width: 200px;
    font-weight: bolder;
    padding: 20px 30px;
    font-size: 1.1em;
    border-radius: 18px;
}

.form-submit-button {
    padding: 20px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 600;
}

.sqfc-multi-service-form {
   background: #fff;
   border-radius: 20px;
   padding: 20px;
}