/*** sideform css ***/

.enq-form-fix {
    width: 300px;
    background: #2d2d2d;
    padding: 15px;
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 999;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.open-enq {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.enq-form-fix input[type="submit"] {
    width: initial;
    margin: 0 auto;
    background: #00aeef;
    color: #fff;
    margin-top: 20px;
    border: none;
    padding: 10px 20px;
    margin: 0 auto;
}

.has-error{1px solid red !important}
.enq-btn {
    width: 40px;
    height: 40px;
    background: #00aeef;
    line-height: 40px;
    text-align: center;
    color: #fff !important;
    font-size: 20px;
    position: absolute;
    left: -13.5%;
    top: 0%;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.enq-form {
    text-align: center;
}

.enq-form input {
    margin-bottom: 10px;
}

.enq-form .form-control {
    padding: 10px;
    height: auto;
    color: #000;
}

.enq-form h1 {
    color: #fff;
    font-size: 16px;
    margin: 0px 0px 10px;
}

/*Smartphones (Portrait) */
@media (min-width: 320px) {
    
    .enq-form-fix {
        width: 270px;
        -webkit-transform: translateX(270px);
        transform: translateX(270px);
    }
    
    .open-enq {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/*Smartphones (Portrait)*/
@media (min-width: 420px) {
    
    .enq-btn {
        left: -15%;
    }
    
    .enq-form-fix {
        width: 300px;
        -webkit-transform: translateX(300px);
        transform: translateX(300px);
    }
    
    .open-enq {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@media (min-width: 768px) {
    .enq-btn {
        left: -13.5%;
    }
}