.diet-form-row{
    display:flex;
    gap:16px;
    margin-bottom:26px;
}

.diet-form-col{
    width:50%;
}

.diet-form-col-full{
    width:100%;
}

.diet-form-col input,
.diet-form-col select,
.diet-form-col-full input{
    width:100% !important;
    height:55px !important;
    border:2px solid #E8E8E8 !important;
    border-radius:8px !important;
    padding:0 15px !important;
    font-size:15px !important;
}
.diet-form-col label,
.diet-form-col-full label{
    display:block;
    margin-bottom:10px;
    line-height: 16px;
    font-size:14px;
    font-weight:500;
    color:#1b1b1b;
    font-family:'Plus Jakarta Sans', sans-serif;
}

.diet-checkbox{
    margin-top:20px;
    font-size:16px;
    line-height: 26px;
    color: #333333;
    font-family:'Plus Jakarta Sans', sans-serif;
}

.diet-submit-btn input{
    width:100%;
    height:55px;
    background: #151515 !important;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    margin-top:20px;
}

.diet-submit-btn{
    position:relative;
}

.diet-submit-btn .wpcf7-spinner{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    margin:0;
}

.diet-submit-btn.submitting input[type="submit"]{
    opacity:0.6;
}

.open-guide-popup{
    display:inline-block;
    font-size:13px;
    color:#0094ff;
    text-decoration:none;
}

.custom-guide-popup{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.custom-popup-content{
    position:relative;
    width:1300px;
    /*max-width:90%;*/
    margin:5% auto;
    background:#fff;
    border-radius:10px;
}

.custom-popup-content img{
    width:100%;
}

.waist-field{
    background-image:url('../images/size-icon.svg');
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:20px;
    padding-right:50px !important;
}
.hip-field{
    background-image:url('../images/size-icon.svg');
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:20px;
    padding-right:50px !important;
}

.required-star{
    color:red;
}

@media(max-width:767px){

    .diet-form-row{
        flex-direction:column;
    }

    .diet-form-col{
        width:100%;
    }

}