/* Enquiry Form Modal Button*/
.enq-fix-btn-wrp {
   position: fixed;
    top: 50%;
    right: 0;
    z-index: 1000;
    transform: rotate(+90deg);
    transform-origin: top right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.enq-fix-btn-wrp2 {
   position: fixed;
    top: 70%;
    right: 0;
    z-index: 1000;
    transform: rotate(+90deg);
    transform-origin: top right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.enq-fix-btn {
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0px 0px 10px 10px;
    letter-spacing: 1px;
    background-color: #bf1a20;
    outline: none !important;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #29AAE1;
}

.enq-fix-btn:hover {
    background: #fff !important;
    color: #000;
    border: 1px solid #EE4137 !important;
}

.enq-fix-btn:after {
    animation: effect 4s ease-in-out infinite;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 50%;
    height: 100%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%);
}

@keyframes effect {
    0% {
        opacity: 1;
        top: -1%;
        left: -100%;
        transition-property: left, top, opacity;
        transition-duration: 0.5s, 0.5s, 0.5s;
        transition-timing-function: ease;
    }

    100% {
        opacity: 1;
        top: -1%;
        left: 100%;
        transition-property: left, top, opacity;
    }
}


/* Enquiry Form Modal Button*/