.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px 13px 36px;
    gap: 12px;
    background-color: var(--button-color);
    border-radius: 48px;
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    transition: background-color 0.5s ease;
}
.btn:hover {
    background-color: var(--button-hover-color);
}
.btn:focus {
    background-color: var(--button-hover-color);
}
.btn:active {
    background-color: var(--button-hover-color);
}

.btn-link-white {
    background-color: var(--white-color);
    color: var(--text-color);
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 12px 36px;
    border-radius: 50px;
}

.btn-open,
.btn-close {
    width: 32px;
    height: 32px;
    text-indent: -9999px;
}
.btn-open {
    background-image: url(/assets/svg/open-btn.svg);
}
.btn-close {
    background-image: url(/assets/svg/close-btn.svg);
}

.btn-google-rate {
    padding: 12px 16px;
    gap: 4px;
    width: 215px;
    height: 44px;

    .rate {
        font-weight: 500;
    }
}

.btn-change {
    padding: 4px 24px;
    background-color: var(--main-bg-color);
    color: var(--text-color);
    border-radius: 48px;
}

.btn-icon {
    padding: 0;
    background: none;
}