/* TRUST PILOT STYLE PROPERTIES */

.trustpilot-popup {
    box-shadow: 1px 4px 12px 0px rgba(0, 0, 0, 8%);
    width: fit-content;
    height: fit-content;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: fixed;
    bottom: 120px;
    right: 23px;
    display: none;
    z-index: 10;
}

.trustpilot-popup>div {
    padding: 24px 30px 28px 30px;
}

.trust_pilot_text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: black;
}

.trust_pilot_link {
    margin-top: 16px;
    padding: 8px 24px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ECEEF0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    color: #49607D;
    transition: 0.3s ease;
}
.trust_pilot_link:hover{
    background-color: #e5e5e5;
}
#close_trust_pilot {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
}