﻿.accordionButton {
    display: block;
    padding: 24px;
    padding-right: 40px;
}

.orderDetailTitle {
    color: #475467;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 4px;
}

.orderDetailText {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.orderStatusText {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.orderStatus {
    column-gap: 12px;
    align-items: center;
}

.orderStatusIcon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #fff;
}

    .orderStatusIcon.success {
        background-color: #3BAA07;
    }

    .orderStatusIcon.preparing {
        background-color: #FF9F0F;
    }

    .orderStatusIcon.refund {
        background-color: #FF232C;
    }

    .orderImageArea {
        width: 140px;
        height: 140px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #F9FAFB;
        border-radius: 6px;
        position: relative;
    }

    .orderImageArea .orderCount {
        position: absolute;
        top: .5rem;
        right: .5rem;
        background: #fff;
        border: 1px solid #E4E7EC;
        border-radius: 5px;
        color: #00A4E7;
        text-align: center;
        font-family: Inter;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.accordionButton:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}


.orderDetailIconArea {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50px;
    border: 0.8px solid #E4E7EC;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.orderDetailDeliveryTypeTitle {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
}

.orderDetailDeliveryTypeDescription {
    color: #344054;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.orderDetailDeliveryArea {
    column-gap: 24px;
    align-items: center;
}

.blueBtn {
    width: 100%;
    padding: 12px 2px;
    border-radius: 6px;
    background-color: #00A4E7;
    border: 1px solid #00A4E7;
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.whiteBtn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    background-color: #FFF;
    color: #344054;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.24px;
}

.adressTitle {
    color: #475467;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 1rem;
}

.adressName {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
}

.fullAdress {
    color: #344054;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.taxAdministration {
    color: #344054;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 24px;
}

.taxNumber {
    color: #344054;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.adressArea
{
    margin-top: 48px;
}

.accordionBodyRow {
    border-top: 1px solid #E4E7EC;
    padding-top: 40px;
}

.accordionBody {
    padding: 40px;
}

.pagination {
    margin-top: 24px;
    column-gap: 8px;
}

    .pagination .page-item .page-link {
        border-radius: 8px;
        color: #383838;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

        .pagination .page-item .page-link:focus {
            background-color: unset;
            box-shadow: none;
        }

        .pagination .page-item .page-link:hover {
            border: 1px solid #00A4E7;
            background: #E6F6FD;
            transition: .3s;
        }
    

    .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
        border: 1px solid #D9D9D9;
        background: #FAFAFA;
        color: #252525;
        
    }
        .pagination .page-item:first-child .page-link i, .pagination .page-item:last-child .page-link i {
            line-height: unset;
        }

    .pagination .active > .page-link, .pagination .page-link.active {
        color: #fff;
        background-color: #00A4E7;
        border-color: #00A4E7;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 142.857% */
    }

    .pagination .active > .page-link:hover, .pagination .page-link.active:hover {
        color: #fff;
        background-color: #00A4E7;
        border-color: #00A4E7;
    }


.accordionButtonIcon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 0.8px solid #E4E7EC;
    background: #F9FAFB;
    transform: rotate(180deg);
    transition: .3s;
}
.collapsed .accordionButtonIcon {
    transform: rotate(0deg);
    transition: .3s;
}


.ordersArea .accordion {
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.ordersArea .accordion-item {
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

    .ordersArea .accordion-item .accordion-button {
        border-radius: 20px;
        padding: 40px;
    }


@media only screen and (max-width: 767px) {
    .orderImageArea {
            margin: auto;
        }
    }

    @media only screen and (max-width: 575px)
    {
        .xs-mt-0
        {
            margin-top:0!important;
        }
    }

    @media only screen and (max-width: 375px)
    {
        .orderDetailCol
        {
            width: 100%;
        }
        .orderDetailCol:nth-child(2)
        {
            margin-top: 1rem!important;
        }
    }