.order-block-cart__buttons {
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.order-block-cart__button {
	--height: 48px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    padding: 5px 24px;
    border-radius: calc(var(--height) / 2);
	border: 1px #dee0e0 solid;
    min-height: var(--height);
    position: relative;
    -webkit-transition: background-color var(--theme-animation-duration);
    transition: background-color var(--theme-animation-duration);
	min-width: 250px;
}
.order-block-cart__button:hover {
    border-color: var(--theme-color-accent);
    color: var(--theme-color-accent);
}
.order-block-cart__button-cancel {
	border: 1px solid var(--theme-color-accent);
    background-color: var(--theme-color-accent);
    color: #fff;
}
.order-block-cart__button-cancel:hover {
	background-color: var(--theme-color-accent-80);
	color: #fff;
}

.checkbox-text__detail {
	font-size: 12px;
	line-height: 1.1em;
}

.checkbox-text__detail-success {
	color: #27ae60;
}
.checkbox-text__detail-restricted {
	color: #cd1311;
}
.checkbox-text__detail-alert {
	
}

.checkbox-text__pay {
	text-align: center;
}
.checkbox-text__price {
	white-space: nowrap;
}

.checkbox-text__pay {
	font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin: 10px 0 0 10px;
	color: var(--theme-color-accent);
	text-decoration: underline;
	cursor: pointer;
	display: block;
	text-align: center;
}
.checkbox-text__pay:hover {
	text-decoration: none;
}




