.text-nowrap {
	white-space: nowrap;
}

.aw-orders__group {
	margin: 40px 0;
}

.aw-orders__group h2{
    font-size: 40px;
    line-height: 1.1;
	font-weight: 400;
	text-wrap: wrap;
}

.aw-orders__item {
	margin: 40px 0;
}
.aw-orders__nav {
    font-size: 18px;
    line-height: 1.1;
	font-weight: 400;
	margin: 40px 0;
	display: flex;
	gap: 10px 20px;
	flex-wrap: wrap;
}
.aw-orders__nav a {
	text-decoration: underline;
	color: var(--theme-color-accent);
}
.aw-orders__nav a:hover {
	text-decoration: none;
}

.aw-orders__back {
    font-size: 28px;
    line-height: 1.1;
	font-weight: 400;
	text-align: center;
	margin: 40px 0;
}
.aw-orders__back a {
	text-decoration: underline;
	color: var(--theme-color-accent);
}
.aw-orders__back a:hover {
	text-decoration: none;
}


.aw-order {
	padding-bottom: 30px;
	border-bottom: 1px #dee0e0 solid;
}

.aw-order__title {
	color: var(--theme-color-accent);
    font-size: 30px;
    line-height: 1.1;
	font-weight: 400;
	margin-bottom: 10px;
	text-wrap: wrap;
}

.aw-order__container {
	
}

.aw-order__info {
	margin-bottom: 20px;
}

.aw-order__status {
	margin-bottom: 10px;
}

.aw-order__status-title {
	color: #27ae60;
}
.aw-order__status-title.canceled {
	color: #cd1311;
}

.aw-order__status-date {
	
}

.aw-order__actions {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.aw-order__action {
	--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;
}
.aw-order__action-detail {
	border: 1px solid var(--theme-color-accent);
    background-color: var(--theme-color-accent);
    color: #fff;
}
.aw-order__action-detail:hover {
	background-color: var(--theme-color-accent-80);
}
.aw-order__action-cancel,
.aw-order__action-repeat {
	
}
.aw-order__action-cancel:hover,
.aw-order__action-repeat:hover {
    border-color: var(--theme-color-accent);
    color: var(--theme-color-accent);
}

.aw-order__sections {
	display: flex;
	margin: 0 -10px;
	gap: 20px 0;
}
.aw-order__section {
	padding: 0 10px;
	width: 50%;
}

.aw-order__caption {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 10px;
}
.aw-order__payment {
	
}
.aw-payment {
	
}
.aw-payment-container {
	
}

.aw-payment__title {
    margin-bottom: 5px;
}
.aw-payment__title-status-success {
	font-weight: 600;
	color: #27ae60;
}
.aw-payment__title-status-restricted {
	font-weight: 600;
	color: #cd1311;
}
.aw-payment__title-status-alert {
	font-weight: 600;
}
.aw-payment__price {
    margin-bottom: 5px;
}
.aw-payment__price-number {
	font-weight: 600;
}

.aw-payment__check {
	
}
.aw-payment__check-left {
	
}
.aw-payment__check-right {
	
}
.aw-payment__restricted {
	
}
.aw-payment__action {
	display: flex;
	justify-content: justify-content;
	flex-wrap: wrap;
	margin-top: 10px;
}
.aw-payment-btn {
	--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);
    min-height: var(--height);
	border: 1px solid var(--theme-color-accent);
    /* background-color: var(--theme-color-accent); */
    color: var(--theme-color-accent);
    position: relative;
    -webkit-transition: background-color var(--theme-animation-duration);
    transition: background-color var(--theme-animation-duration);
	min-width: 250px;
}
.aw-payment-btn:hover {
	/* background-color: var(--theme-color-accent-80); */
}
.aw-payment-btn.disabled {
	
}
.aw-payment-btn.disabled:hover {
	/* background-color: var(--theme-color-accent); */
}

@media (max-width: 768px) {
	.aw-order__sections {
		flex-wrap: wrap;
	}
    .aw-order__section {
        width: 100%;
    }
}












