/* panel */
.account {
    margin-bottom: 30px;
}

.heading-h1 {
    margin-bottom: 30px;
}

#account-forgotten .panel-title {
    font-size: 18px;
    line-height: 22px;
}

.form-group {
}

.form-control {
}

.account-menu {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.account-menu li {
    margin-bottom: 5px;
}

.account-menu li a {
    display: block;
    padding: 9px 20px;
    background: #FFFFFF;
    border: 1px solid #dddddd;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
}

.account-menu li:hover a,
.account-menu li.active a {
    background: #F97001;
    color: #fff;
}

.account-logout a{
    color: #F97001;
}

.address-list-item__edit .link-remove {
    margin-left: 30px;
    color: red;
}

.address-list-item__edit .link-edit {
    color: #f97001;
}

/* order history */
.account-orders {
    margin-bottom: 30px;
}
.orders-list {
}
.order-item {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    margin-left: -10px;
    margin-right: -10px;
}

.order-item-product {
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #dddddd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

.order-spoiler {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
}

.order-spoiler .dropdown-arrow {
    text-align: center;
}

.order-spoiler .dropdown-arrow .fa {
    transition: all 0.2s ease-in-out;
    
}

.order-spoiler.active .dropdown-arrow .fa {
    transform: rotate(180deg);
    transition: all 0.2s ease-in-out;
}

.wishlist-remove {
    font-size: 14px;
    color: red;
    font-weight: 600;
}


@media screen and (max-width: 992px) {
    .order-spoiler.active {
        background: #F97001;
        color: #fff;
    }
    
    /* .order-spoiler .dropdown-arrow {
        transition: all 0.2s ease-in-out;
    } */
    
    .order-spoiler.active .dropdown-arrow {
        filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
        transform: rotate(180deg);
        /* transition: all 0.2s ease-in-out; */
    }
}

.order-number {
    
}
.order-date {
}
.order-counts {
    display: none;
}
.order-status {
}

.order-spoiler-content {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.order-spoiler-content.active {
    visibility: visible;
    opacity: 1;
    max-height: 100%;
    transition: all 0.2s ease-in-out;
}

.order-item-info {
    display: flex;
    margin-bottom: 5px;
}
.orders-item--image {
    width: 90px;
    min-width: 90px;
    height: auto;
    margin-right: 15px;
}
.orders-item--name {
}
.orders-item--name a{
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #463F3A;
    text-decoration: none;
}

.orders-item--name a:hover {
    text-decoration: none;
    color: #F97001;
}

.orders-item--attr {
    font-size: 14px;
    line-height: 17px;
}
.orders-item--attr tr td {padding: 3px;}
.orders-item--attr tr td:first-child {
    color: #A3A3A3;
}
.orders-item--attr tr td:last-child {
    font-weight: 600;
}

.order-item-price {
    display: flex;
    align-items: center;
    line-height: 25px;
}
.order-item-calc {
    display: flex;
    align-items: center;
}
.orders-price {
}
.orders-price-multiplier {
    margin: 0 12px;
}
.orders-quantity {

}
.orders-price-total {
    margin-left: auto;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    display: flex;
    color: #F97001;
    width: 120px;
    justify-content: flex-end;
    white-space: nowrap;
}

.order-total {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
}
.order-total-summ {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.order-total-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}
.order-total-value {
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    color: #F97001;
}
.order-total-payment {
    margin-bottom: 20px;
}

.order-total-payment > div{

}

.order-address {
    margin-left: 10px;
    margin-right: 10px;
}

.order-address > span{
    display: block;
    margin-bottom: 20px;
}

.order-address > span > strong {
    display: block;
    margin-bottom: 10px;
}

.account-wishlist .simple-link {
    padding: 10px 20px 0;
    display: inline-block;
}

/* order history */

@media screen and (min-width: 576px) {
    .order-address,
    .order-total,
    .order-item-product,
    .order-item {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) {
    .order-spoiler {
        font-size: 16px;
    }

    .order-counts {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .account-menu {
        display: flex;
    }

    .account-menu li {
        margin-bottom: 0;
    }

    .account-menu li + li{
        margin-left: 20px;
    }

    .account-menu li.account-logout {
        margin-left: auto;
    }

    .account-orders {
        margin-bottom: 50px;
    }

    .order-spoiler {
        padding: 30px;
        font-weight: 700;
    }

    .order-item {
        border: 1px solid #dddddd;
        /* box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25); */
        border-radius: 5px;
        margin-bottom: 30px;
    }

    .order-counts {
        font-weight: 400;
    }

    .order-address,
    .order-total,
    .order-item-product {
        margin-left: 30px;
        margin-right: 30px;
    }

    .order-item-product {
        display: flex;
        border: 0;
        padding: 0;
        border-radius: 0;
    }

    .order-item-price {
        margin-left: auto;
    }

    .orders-price-total {
        margin-left: 70px;
    }

    .orders-item--name a {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .orders-item--image img{
        /* box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04);
        filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.15)); */
        border-radius: 5px;
    }
}

/* panel */

.panel {
    margin-bottom: 30px;
}

.panel-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin:0 0 20px;
}

.panel-content ul {
    padding-left: 20px;
}

.panel-content ul li {
    margin-bottom: 10px;
}

.panel-content a {
    color: var(--main-red-color);
    text-decoration: none;
    font-weight: 600;
}

.panel-content a.btn-black:hover,
.panel-content a.btn-black {
    color: #FFFFFF;
}

.panel-content + .panel-content {
    margin-top: 30px;
}

.panel-content legend {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.panel-content .form-group:last-child{
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .modal-dialog {
        padding: 30px;
    }
    .modal-login-form .btn {        
        width: auto;
        min-width: 190px;
    }

    .modal-panel {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 992px) {
    .panel-title {
        font-size: 30px;
        line-height: 37px;
        margin:0 0 30px;
    }

    .panel-content {
        background: #FFFFFF;
        border: 1px solid #D8D8D8;
        border-radius: 5px;
        padding: 30px;
    }
}