.hdf_enquirymodel {
    position: fixed;
    width: 340px;
    top: 24vh;
    right: -340px;
    z-index: 4;
    background: white;
    padding: 10px;
    transition: all 0.35s ease;
    filter: drop-shadow(-3px 2px 4px rgba(0, 0, 0, 0.25));
}

.hdf_enquirybtn {
    position: relative;
}

.hdf_enquirybtn label {
    position: absolute;
    width: 100px;
    left: -80px;
    top: 150px;
    color: white;
    font-size: 16px;
    background: red;
    transform: rotate(-90deg);
    text-align: center;
    background: #d0372f;
    padding: 8px;
    border-radius: 5px 5px 0 0;
}

.hdf_enquirymodel .contact_address_container {
    display: none;
}

.hdf_enquirymodel form#contact-form fieldset { 
    margin-bottom: unset; 
}

/* Phone view */
@media (max-width: 767px) {
    .hdf_enquirymodel {
        top: 23vh;
    }

    .hdf_enquirymodel form#contact-form fieldset {
        color: #666;
    }
}