.sale__order__title h1 {
    color: #000;
    font-family: Tilda;
    font-weight: 600;
    font-size: 32px;
    padding-top: 25px;
    padding-bottom: 40px;
}

label.sale__order p {
    color: #000;
    font-family: Tilda;
    font-weight: 500;
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 24px;
}

.sale__order__inputs input {
    border-radius: 5px;
    border: 1px solid #c1c1c1;
    padding: 12px 10px;
    margin-top: 10px;
    width: 100%;
    font-family: Tilda;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
}

.sale__order__inputs input::placeholder {
    color: #98A0B4;
    opacity: 1;
}

.sale__order__inputs input:focus,
.sale__order__adress input:focus,
textarea#textarea:focus {
    border-color: #546DFC;
    outline: none;
    box-shadow: 0 0 4px rgba(84, 109, 252, 0.4);
}

.sale__order__inputs {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 20px;
}

label.sale__order {
    width: 100%;
}

.sale__order__adress p {
    color: #000;
    font-family: Tilda;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 24px;
}

.sale__order__adress input {
    border-radius: 5px;
    border: 1px solid #D0D5DD;
    padding: 5px 10px;
    margin-top: 10px;
    width: 100%;
}

.sale__order__adress {
    padding-bottom: 20px;
}

textarea#textarea {
    width: 100%;
    height: 220px;
    border-radius: 5px;
    border: 1px solid #D0D5DD;
    padding: 12px 10px;
    margin-top: 10px;
}

textarea#textarea::placeholder {
    font-family: Tilda;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #98A0B4;
    opacity: 1;
}

.payment-btn {
    padding: 6px 13px;
    border-radius: 16px;
    background: #F7F5F9;
    cursor: pointer;
    transition: .2s;
    text-align: center;
}

.payment-btn a {
    color: #999999;
    font-family: Tilda;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    filter: none;
    transition: 0.2s ease;
}

.payment-btn a:hover {
    opacity: 0.8;
}

/* Активная */
.payment-btn.active {
    background: #546DFC;
}

.payment-btn.active a {
    color: #fff !important;
}

.sale__payments__btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: fit-content;
}

aside.aside__sale__order {
    width: 60%;
    max-width: 450px;
}

.sale__order__check {
    margin-top: 30px;
    text-align: center;
    width: 100%;
    background-color: #546DFC;
    border-radius: 5px;
}

.sale__order__check a {
    text-decoration: none;
    font-size: 16px;
    font-family: Tilda;
    font-weight: 500;
    color: #fff;
}

.sale__order__payments__title h1 {
    font-size: 16px;
    font-family: Tilda;
    font-weight: 600;
    color: #546DFC;
    padding-bottom: 15px;
}

.sale__order__payments {
    padding-top: 55px;
}

.sale__order__block {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 50px;
}

.sale__order__form {
    width: 100%;
    max-width: 600px;
}

.sale__order__main {
    padding-bottom: 50px;
}

@media (max-width: 726px) {

    .sale__order__block {
        display: block;
    }

    .sale__order__inputs {
        display: flex;
    }

    label.sale__order {
        padding-bottom: 20px;
    }

    aside.aside__sale__order {
        width: 100%;
    }

    .card__all__price {
        padding: 30px 10px;
    }

    .payment-btn a {
        font-size: 12px;
    }

    .sale__payments__btn {
        gap: 8px;
    }

}

@media (max-width: 500px){
    .sale__order__inputs{
        flex-wrap: wrap;
        gap: 10px;
    }
    label.sale__order {
        padding-bottom: 10px;
    }
}