/**
 * Стилі нестандартного шаблону "Силові сухі трансформатори":
 * акцентна кнопка "Замовити" та ціновий блок "За запитом".
 */

/* Кнопка "Замовити" як основна дія (на базі .button) */
.actions .button-order {
    width: auto;
    min-width: 210px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0;
    overflow: hidden;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
}

.actions .button-order .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 14px 24px;
    text-align: center;
}

.actions .button-order .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 53px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 60, 215, .44);
}

.actions .button-order .icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}

.actions .button-order:hover {
    background: #0f4ef3;
}

@media (max-width: 1080px) {
    .actions .button-order .icon {
        width: 44px;
        height: 44px;
    }

    .actions .button-order .icon svg {
        width: 22px;
        height: 22px;
    }

    .actions .button-order .text {
        padding: 14px 18px;
    }
}

/* "Ціна за запитом" — один рядок, шрифт як у поточного "За запитом" */
.product-actions .price-block .total--request {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    gap: 6px;
}

.product-actions .price-block .total--request .price-request__value {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #0076ef;
}
