.button {
    display: block;
    text-align: center;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 400;
    padding: 18px 50px;
    line-height: 18px;
}

.main-button {
    background-color: var(--red-primary);
    color: white;
    border: 1px solid var(--red-primary);
    outline: none
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 1px solid var(--red-primary);
    outline: none
}

.light-button {
    background-color: var(--red-primary);
    color: white;
    border: 1px solid var(--red-primary);
    outline: none
}

.light-button span {
    transition: none
}

.light-button svg {
    fill: white
}

.main-button:hover,
.secondary-button:hover,
.light-button:hover {
    color: white !important;
    background-color: var(--red-action);
    border-color: var(--red-action)
}

.light-button:hover svg {
    fill: rgb(0, 0, 0)
}

.main-button:active,
.secondary-button:active,
.light-button:active {
    color: white !important;
    background-color: var(--red-action);
}

.button:focus {
    box-shadow: 0 0 0 3px rgba(255, 3, 3, 0.3)
}

@media(max-width: 991px) {
    .button {
        max-width: 100%;
        width: 100%;
    }
}