/* =========================================
   AAYUSH CAR RENTAL
   FLOATING ACTION BUTTONS
========================================= */

.acr-floating-buttons {

    position: fixed;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;

    z-index: 99998;
}


/* =========================================
   COMMON BUTTON
========================================= */

.acr-float-action {

    width: 125px;
    height: 45px;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    color: #ffffff;

    background: #151515;

    text-decoration: none;

    border-radius: 0 4px 4px 0;

    overflow: hidden;

    box-sizing: border-box;

    transition: width 0.25s ease;

    box-shadow: 0 3px 10px rgba(0,0,0,0.20);
}


/* =========================================
   ICON AREA
========================================= */

.acr-float-action .acr-float-icon {

    width: 35px;
    height: 45px;

    min-width: 35px;

    flex: 0 0 35px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding-left: 5px;

    margin: 0;

    box-sizing: border-box;

    color: #ffffff;

    font-size: 17px;

    line-height: 45px;
}


/* =========================================
   TEXT
========================================= */

.acr-float-action .acr-float-text {

    display: block;

    padding-left: 7px;

    margin: 0;

    color: #ffffff;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 45px;

    white-space: nowrap;
}


/* =========================================
   CALL
========================================= */

.acr-float-call .acr-float-icon {

    background: #e00000;
}


/* =========================================
   WHATSAPP
========================================= */

.acr-float-whatsapp .acr-float-icon {

    background: #25D366;
}


/* =========================================
   PACKAGES
========================================= */

.acr-float-packages .acr-float-icon {

    background: #e00000;
}


/* =========================================
   HOVER
========================================= */

.acr-float-action:hover {

    width: 140px;

    color: #ffffff;

    text-decoration: none;
}


.acr-float-action:focus,
.acr-float-action:active {

    color: #ffffff;

    text-decoration: none;

    outline: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-floating-buttons {

        left: 0;
        right: 0;

        top: auto;
        bottom: 0;

        width: 100%;
        height: 58px;

        transform: none;

        display: flex;
        flex-direction: row;

        background: #151515;

        box-shadow: 0 -3px 15px rgba(0,0,0,0.20);
    }


    .acr-float-action {

        width: 33.333333% !important;
        height: 58px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        border-radius: 0;

        box-shadow: none;

        background: #151515;

        transition: none;
    }


    /* =====================================
       MOBILE ICON
    ===================================== */

    .acr-float-action .acr-float-icon {

        width: auto;
        min-width: 0;

        height: 27px;

        flex: none;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 0;

        background: transparent;
    }


    /* =====================================
       MOBILE TEXT
    ===================================== */

    .acr-float-action .acr-float-text {

        padding: 0;

        height: 18px;

        line-height: 18px;

        font-size: 10px;

        text-align: center;
    }


    /* =====================================
       MOBILE ICON COLORS
    ===================================== */

    .acr-float-call .acr-float-icon {

        color: #e00000;
    }


    .acr-float-whatsapp .acr-float-icon {

        color: #25D366;
    }


    .acr-float-packages .acr-float-icon {

        color: #e00000;
    }


    /* =====================================
       SEPARATOR
    ===================================== */

    .acr-float-action + .acr-float-action {

        border-left: 1px solid #333333;
    }

}