@charset "utf-8";
/*!
 * picnic.css
 * Webkokteyli - 2020
 */

/* account orders */ 
.account-orders .table {
    margin-bottom: 0;
}
.account-orders .table thead th {
    border-bottom: 0;
    border-top: 0;
}
.account-orders .cargo-status-timeline-status > i {
    font-size: 1rem;
    /* padding: 1rem; */
    /* margin-bottom: 0.5rem; */
    background-color: #cccccc;
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}
.account-orders .cargo-status-timeline-status.done > i {
    background-color: #3dad3d;
    color: #fff;
}
.account-orders .cargo-status-timeline-status span {
    color: #ccc;
    margin: 0.3rem 0 1rem;
}
.account-orders .cargo-status-timeline-status.done span {
    font-weight: 500;
    color: #000;
}
.account-orders .cargo-status-timeline-status {
    margin: 1rem 0;
    position: relative;
}
.account-orders .cargo-status-timeline-status:before {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 6px solid #ccc;
    position: absolute;
    /* top: 50%; */
    /* margin-top: -19px; */
    right: 50%;
    top: 22px;
}
.account-orders .cargo-status-timeline-status:first-child:before {
    display: none;
}
.account-orders .cargo-status-timeline-status.done:before {
    border-color: #3dad3d;
}
.account-orders .order-list-payment-type,
.account-orders .order-list-payment,
.account-orders .order-list-status {
    text-align: center;
}
.account-orders .order-list-buttons{
    text-align: right;
}

/* cart icon */
.cart-icon{
    position: relative;
}
.cart-icon > span {
    font-size: 0.64rem;
    color: #fff;
    background-color: #d33;
    display: flex;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -10px;
}

/* sepet / payment */
.ecommerce-list-group .list-group-item {
    padding: 0;
}
.ecommerce-list-group .list-group-item .radio {
    margin: 0;
    display: block;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0.8;
    background-color: #fafafa;
}
.ecommerce-list-group .list-group-item .radio:not(.default) {
    cursor: pointer;
}
.ecommerce-list-group .list-group-item:hover .radio,
.ecommerce-list-group .list-group-item.checked .radio {
    font-weight: 600;
    opacity: 1;
}
.ecommerce-list-group .list-group-item.checked .radio {
    background-color: transparent;
}
.ecommerce-list-group .list-group-item .radio input {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
}
.ecommerce-list-group .list-group-item .payment-option-content{
    display: none;
}
.ecommerce-list-group .list-group-item.checked .payment-option-content{
    display: block;
}

/* terms */
.ecommerce-checkout .terms strong {
    text-decoration: underline;
}

/* sepet sayfa / cart page */
.ecommerce-cart-list {
    margin-bottom: 2rem;
}
.ecommerce-cart-list-item-image {
    margin-bottom: 2rem;
}

@media (max-width: 768px){
    
    .account-orders .order-list-single .row.d-flex > div > div{
        margin-bottom: 1rem;
    }
    .account-orders .order-list-info{
        text-align: center;
    }
    .account-orders .order-list-buttons{
        text-align: center;
        margin-bottom: 0 !important;
    }
    .account-orders .order-list-buttons .button{
        width: 100%;
    }
    .account-orders .cargo-status-timeline {
        flex-direction: column;
        padding: 0;
    }
    .account-orders .cargo-status-timeline-status {
        flex-direction: row !important;
    }
    .account-orders .cargo-status-timeline-status > i {
        margin-right: 12px;
    }
    .account-orders .cargo-status-timeline-status:before {
        width: 5px;
        right: auto;
        left: 35px;
        height: 100%;
        border-bottom: 0;
        border-left: 6px solid #ccc;
        top: -40px;
    }
    .account-orders .cargo-status-timeline-status span {
        margin: 0;
        margin-right: auto;
    }
}