* {
    box-sizing: border-box;
}

.order__wrapper {
    margin: 0 auto;
    padding: 10px;
    padding-bottom: 30px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    border: 3px dashed #eaeaea;
}

.order__img {
    width: 100%;
    max-width: 300px !important;
}

.order__title {
    text-align: center;
    font-size: 20px;
}

.price__wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
}

.price__old {
    text-decoration: line-through;
}

.price__new {
    font-weight: 700;
    color: red;
}

.order__countdown-title {
    font-size: 20px;
    text-align: center;
}

.timer__wrapper {
    font-size: 20px;
    font-weight: 700;
    color: red;
}

.order__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.order__input {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    font-size: clamp(10px, 3vw, 13px);
}

.order__form-btn {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: tomato;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.come {
    display: flex;
    align-items: center;
    margin: 20px 0
}

.come__line {
    width: 100%;
    height: 2px;
    background: #b4b4b4
}

.come__text {
    text-transform: uppercase;
    font-size: 20px;
    padding: 0 10px;
    color: #148fb9;
    font-weight: 600;
    white-space: nowrap
}

.block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0
}

ul.block li {
    flex-basis: 30%;
    list-style: none;
    text-align: center;
    margin-bottom: 8px
}

ul.block li img {
    max-width: 150px;
    width: 100%
}

ul.block li:nth-child(4) img {
    max-width: 80px
}

ul.block li:nth-child(5) img {
    max-width: 80px
}

@media(max-width: 500px) {
    .block {
        flex-direction: column
    }
}