/* =========================================
   AAYUSH CAR RENTAL
   SCROLL TO TOP
========================================= */

#acrScrollTop {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 45px;
    height: 45px;

    display: none;

    padding: 0;

    background: #e00000;
    color: #ffffff;

    border: none;
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;

    line-height: 45px;
    text-align: center;

    cursor: pointer;

    z-index: 999999;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

#acrScrollTop:hover {
    background: #151515;
    color: #ffffff;
}

@media (max-width: 767px) {

    #acrScrollTop {
        right: 15px;
        bottom: 75px;

        width: 42px;
        height: 42px;

        line-height: 42px;
        font-size: 22px;
    }

}