/**
 * 2024 DMConcept
 *
 * NOTICE OF LICENSE
 *
 * This file is licenced under the Software License Agreement.
 * With the purchase or the installation of the software in your application
 * you accept the licence agreement
 *
 * @author    DMConcept <support@dmconcept.fr>
 * @copyright 2024 DMConcept
 * @license   Commercial license (You can not resell or redistribute this software.)
 *
 */

.admin-switch-bulk {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.pfc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pfc-card .pfc-card-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.5rem;
    color: #ffffff;
    background-color: #000;
    border-top-left-radius: 6pt;
    border-top-right-radius: 6pt;
    font-size: 15px;
    font-weight: 1000;
    gap: 0.5rem;
    border: 1px solid #000;
    border-bottom: unset;
}

.pfc-card .pfc-card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 1rem;
    background-color: #ffffff;
    border: 1px solid #000;
    border-top: unset;
}

.pfc-orders {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pfc-orders > li:not(:nth-last-child(1)) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pfc-orders > li {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    cursor: pointer;
}
.pfc-orders > li a {
    display: inherit;
    flex-direction: inherit;
    justify-content: inherit;
    align-items: inherit;
    gap: inherit;
    padding: 0.8rem;
    width: 100%;
}

.pfc-orders > li .pfc-order-col {
    position: relative;
    display: flex;
    flex: 1 1 0;
}

.admin-switch-order-checkbox {
    width: 1rem;
    height: 1rem;
}

.pfc-orders > li:hover .pfc-order-reference {
    text-decoration: underline;
}

.pfc-orders > li .pfc-order-reference {
    color: #666;
}

.pfc-orders > li .pfc-order-date {
    font-size: 15px;
    color: #000000;
}

.col-separator {
    flex-direction: column;
}

.col-separator, .row-separator {
    position: relative;
    display: flex;
    margin-bottom: 12px;
}

.pfc-orders > li .pfc-order-price {
    font-size: 16px;
    color: #3cbfef;
    font-weight: bold;
}

.pfc-orders > li .pfc-order-payment {
    color: #8c8c8c;
    font-size: 12px;
    margin-top: -3px;
}

.pfc-orders > li .pfc-order-status {
    padding: 0.3rem 0.3rem;
    font-size: 12px;
    color: #ffffff;
    border-radius: 3pt;
    font-weight: 600;
}
