/*------------------------------------------------------------------------
# AA Google Business Reviews - Floating Template
# ------------------------------------------------------------------------
# author    AA Extensions https://aaextensions.com
# Copyright (C) 2018 AA Extensions. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: https://aaextensions.com
-------------------------------------------------------------------------*/

.aa-review-badge {
        position: fixed;
        bottom: 20px;
        padding: 12px 16px;
        background-color: rgba(255, 255, 255, 1);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 99999;
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
        transition: all 0.2s ease-in-out;
        color: rgba(66, 66, 66, 1);
}

    .aa-review-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .aa-badge-bottom-left {
        left: 20px;
    }

    .aa-badge-bottom-right {
        right: 20px;
    }

    .aa-badge-rating-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .aa-badge-rating-line {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .aa-badge-rating-icon {
        height: 24px;
        width: 24px;
    }

    .aa-badge-score {
        font-size: 24px;
        font-weight: 600;
        color: rgba(33, 33, 33, 1);
    }

    .aa-badge-stars {
        color: rgba(251, 188, 5, 1);
        line-height: 1;
        margin-top: 4px;
    }

    .aa-badge-stars .dashicons {
        font-size: 20px;
        height: 20px;
        width: 20px;
    }

    .aa-badge-reviews {
        font-size: 13px;
        color: rgba(97, 97, 97, 1);
    }

    .aa-badge-reviews-line {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .aa-badge-verified-icon {
        height: 16px;
        width: 16px;
    }

    .aa-badge-powered-by {
        font-size: 11px;
        color: rgba(158, 158, 158, 1);
        font-weight: 500;
        margin-top: 4px;
    }

    .aa-review-badge-close {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 20px;
        height: 20px;
        background-color: rgba(255, 255, 255, 1);
        border-radius: 50%;
        border: 1px solid rgba(204, 204, 204, 1);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
        color: rgba(97, 97, 97, 1);
        line-height: 1;
    }