.content-container{
    width: 100%;
}

.payment-methods {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.payment-option {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width:50%;
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
    width:50%;
    transition: all 0.5s ease;
}

.payment-option.selected {
    border-color: #007bff;
    background-color: blue;
    text-color:white;
    width:60%;
}

.payment-option input {
    display: none; /* Прячем стандартные радиокнопки */
}

.payment-label {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.payment-option.selected .payment-label {
    color: white;
    align-items: center;
}

.filters {
    margin-bottom: 20px;
}

.filters button {
    padding: 10px 20px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f9fa;
    cursor: pointer;
    background-color: green;
}

.filters button:hover {
    background-color: blue;
    text-color: black;
}

