.order {
    width: 100%;
    position: relative;
}

.order__subname {
    color: #fff;
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    padding: 6px 0;
}

.order .container {
    display: flex;
    flex-direction: column;
}

.order__title {
    width: 100%;
    max-width: 380px;
    margin: 30px auto 20px;
    font-size: 22px;
    font-weight: 700;
}

.order__list {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    margin: 0 auto;
    gap: 5px;
}

.order__form {
	font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 40px 0 0;
}

.order__images {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order__prod {
    width: 100%;
    /* max-width: 400px; */
    max-height: 250px;
    object-fit: contain;
}

.order__block {
    width: 100%;
    max-width: 525px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.order__payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.order__payments span {
    font-size: 18px;
    font-weight: 300;
    padding-left: 4px;
}

.pay-imgs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.pay-imgs img {
    max-width: 60px;
}

.order__offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #6f0505;
    border-radius: 6px;
    color: #fff;
    padding-bottom: 10px;
    width: 100%;
    max-width: 360px;
}

.order__offer_title {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 24px;
    background-color: #910f0b;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.order__offer_price {
    padding-top: 8px;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}

.order__offer_oldprice {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.order__btn {
    width: 100%;
    max-width: 525px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #910f0b;
    padding: 12px 30px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: 0.2s all ease-in-out;
    animation: pulse 1.8s ease-in-out infinite;
}

.order__btn:hover {
	text-decoration: underline;
}

.order__conditions {
	text-align: left;
    width: 100%;
    max-width: 475px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.order__conditions_item span {
    font-size: 18px;
}