.enquires-wraps {
    position: fixed;
    right: -83px;
    top: 50%;
    transform: translateY(-115%) rotate(-90deg);
    z-index: 1000;
    transition: right 0.5s ease, opacity 0.4s ease;
}
.enquire-now-btn.btn-registers {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: #158FD8;
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgb(26 143 216 / .2);
    width: 230px;
    text-align: center;
    justify-content: center;
    animation: blinks 3s infinite ease;
}
@keyframes blinks {
    0%, 100% {
        background: linear-gradient(135deg, #dc3545, #fd7e14);
    }
    50% {
        background: #158FD8;
        color: #fff;
    }
}
.enquire-popup {
    position: fixed;
    right: -320px;
    top: 50%;
    transform: translateY(-50%);
    width: 175px;
    height: 225px;
    background: #fff;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 15px 40px rgb(0 0 0 / .25);
    transition: right .5s ease;
    z-index: 1001;
}
.enquire-popup .popup-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    padding: 0 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.enquire-popup .popup-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #0B1A2F;
}
.enquire-popup .enquire-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.enquire-popup .enquire-list li {
    border-bottom: 1px solid #f0f0f0;
}
.enquire-popup .enquire-list li a {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    color: #0B1A2F;
    font-size: 14px;
}
.enquire-popup .enquire-list li a::before {
    content: "›";
    margin-right: 10px;
    font-size: 16px;
    font-weight: 700;
}
.enquire-list li:hover {
    background-color: #f9f9f9;
}
.enquire-popup .enquire-list li a:hover, 
.enquire-popup .enquire-list li a:hover::before {
    color: #158FD8;
    padding-left: 6px;
}

.enquires-wraps.is-hidden {
    right: -260px;
    opacity: 0;
    pointer-events: none;
}
.enquire-popup.active {
    right: 0;
}
@media (max-width: 575px){
    .enquire-now-btn.btn-registers {
        padding: 10px;
        width: 210px;
        font-size: 18px;
    }
    .enquire-popup {
        width: 150px;
    }
}