:root {
    /* Colors */
    --primary: #ffcc33;
    --secondary: #001b47;
    --accent: #f8f8f8;
    --statistics-bg: #cb1c22;

    /* Change order id block background and color */
    --order-place: #f26d6d;
    --order-pickup: #78acf0;
    --order-delivery: #8bec7d;
    --order-place-color: #000;
    --order-pickup-color: #000;
    --order-delivery-color: #000;
}


[v-cloak] { display: none; }

#app-builder {
    width: 100%;
    height: 100%;
    padding: 35px 25px;
}

.theme--light.v-footer {
    display: none;
}

.v-application {
    font-family: Poppins,sans-serif !important;
    line-height: 1.5;
}

.header-center {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin-bottom: 30px;
}

.without-padding {
    padding: 0;
    margin: 0;
}

.order-details_products-item {
    display: flex;
}

.products-item_photo {
    width: 20%;
}
.products-item_info {
    width: 80%;
}

.order-details-received,
.products-item_info_title,
.order-details_total_label {
    font-weight: 600;
    font-size: 16px;
}

.order-details_total_value {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.header-orders {
    border-bottom: 0px !important;
    padding: 20px;

}

.products-item_info_quantity {
    font-weight: 400;
    font-size: 16px
}

.order-details_total_paid,
.order-details_total_delivery,
.order-details_total_estimate_time span,
.order-details_items_value,
.order-details_customer  {
    font-weight: 500;
}

.order-details-received {
    padding-left: 20%;
    margin: 15px 0;
    font-size: 15px;
}

.order-details_items_value{
    margin: 0 0 10px 0;
}

.order-details_products-item {
    margin: 10px 0;
}

.products-item_info_title {
    font-size: 22px;
}

.v-image__image {
    border-radius: 7px;
}

.order-details_total {
    padding-left: 20%;
}

.order-details_total_paid {
    margin: 11px 0;
}

.order-details_customer {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    background: var(--accent);
    padding: 5px;
    border-radius: 7px;
}

.order-list-main-title {
    font-size: 30px;
    font-weight: 600;
}

.order-status_item {
    text-align: center;
    padding: 10px 14px;
    border: 2px var(--primary) solid;
    border-radius: 30px;
    margin: 0 auto;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 400;
    width: 180px;
    cursor: pointer;
    position: relative;
}

.order-status_item.active,
.order-status_item:hover {
    background: var(--primary);
}

.order-status_item.load--ajax:hover {
    background: transparent;
}

.order-status-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-status-panel__quantity {
    font-size: 22px;
    font-weight: 600;
}

.panel-item {
    margin: 0;
}

.paid-btn {
    position: relative;
    top: 60px;
}

.delete-btn {
    border-color: black;
    color: black;
    /*top: 60px;*/
}

.delete-btn:hover {
    background: #fff;
    color: black;
}

.order-status {
    height: 420px;
}

.order-id {
    background: var(--primary);
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 21px;
    border-radius: 2px;
    position: absolute;
    width: auto;
    padding: 0 3px;
    z-index: 999;
}

.order-id.place {
    background: var(--order-place);
    color: var(--order-place-color);
}

.order-id.delivery {
    background: var(--order-delivery);
    color: var(--order-place-color);
}

.order-id.pickup {
    background: var(--order-pickup);
    color: var(--order-place-color);
}

.order-id.active {
    position: fixed;
}

.order-item-block {
    margin: 25px 0;
    border-bottom: 2px #000000 dashed;
    border-color: var(--primary) !important;
    padding: 5px 0;
    border-radius: 0 !important;
    margin-bottom: 20px !important;
}

.order-status_item.load--ajax {
    color: transparent;
}

.load--ajax:after {
    content: "";
    width: 40px;
    height: 40px;
    background: url('../img/ajaxload.svg') no-repeat;
    background-size: contain;
    position: absolute;
    padding: 0 35px;
    left: 55px;
    top: 1px;
}

.order-new {
    text-align: center;
    background: #EF5350;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
    width: 400px;
    font-size: 16px;
    margin-bottom: 3rem;
}

.order-new.hide {
    display: none;
}

.order-new-alert.load--ajax:after {
    content: "";
    width: 30px;
    height: 30px;
    background: url('../img/ajaxload.svg') no-repeat;
    background-size: contain;
    position: absolute;
    padding: 0 35px;
    left: 50%;
    top: 1px;
}

.order-new:hover, .order-new:hover span {
    background: var(--primary);
    color: #000;

}

.order-new span {
    color: #fff;
}

.order-new-alert.load--ajax span {
    color: transparent;
}

.order-details_total_estimate {
    display: flex;
    justify-content: start;
    margin: 0 0 15px;

}

.order-details_total_estimate_time {
    margin: 11px 0;
}

.order-details_isolator {
    margin: 11px 5px;
}

.order-details_isolator:after {
    content: "|";
}

.order-details_total_estimate_msg {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    margin: 11px 0;
}

.order-details_total_estimate_msg:hover {
    text-decoration: none;
}

.order-details_rush-msg span {
    position: relative;
    margin: 0 5px;
    cursor: pointer;
}

.order-details_rush-msg {
    margin: 5px 0;
    cursor: pointer;
}

.order-details_rush-msg:hover {
    margin: 5px 0;
    cursor: pointer;
    color: black;
}

.order-details_rush--send {
    background: var(--primary);
    width: fit-content;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 15px;
    margin-top: 4px;
    cursor: pointer;
    border: 1px solid var(--primary);
    position: relative;
    width: 64px;
}

.order-details_rush--send.load--ajax:after {
    content: "";
    width: 24px;
    height: 24px;
}

.order-details_rush--send:hover {
    background: transparent;
    border: 1px solid var(--primary)
}

.order-details_sent {
    color: red;
}

.order-msg-item {
    background: #eee;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.row .order-item-block .order-inworks {
    border: 1px solid #dbcc17 !important;
    box-shadow: 0 4px 16px 0 #1c1b0338;
    backdrop-filter: blur(2.5px);
    background: #f4f4f44d;
    border-radius: 5px !important;
}

.order-empty_pic {
    background: url('../img/shopping.svg');
    width: 100px;
    height: 100px;
    background-size: cover;
    margin: 0 auto;
}

.order-empty {
    margin: 0 auto;
    margin-top: 50px;
}
 
.order-empty_title {
    text-align: center;
    margin: 15px 0;
    font-size: 16px;
}

.order-details_address {
    font-weight: 600;
    margin: 11px 0 0 0;
}

.order-details_address_info {
    font-weight: 100;
}

.products-extra_label {
    margin: 10px 0 2px;
    text-transform: capitalize;
}

.products-extra_value {
    font-weight: 100;
}

.order-details_total_delivery span {
    text-transform: capitalize;
}

.order-last-line {
    margin-bottom: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    margin: 0px;
}