
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 div#bs_bestellingen {
    width: 100%;
}
.bs_order_img {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30px , 90px));
    grid-gap: 5px;
    overflow: hidden;
    width: 100%;
    align-items: center;
}
.bs_order_img > img{
    width: 100%;
    border-radius: 5px!important;
}
.bs_bestellingen{
    padding-bottom:100px;
}
.bs_bestelling {
    display: flex;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px; */
    border-radius: 5px;
    background-color: white;
    margin-bottom: 10px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.bs_order_data {
    display: grid;
    grid-template-columns: repeat(12 , 1fr);
    grid-gap: 10px;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 20px;
    width: 100%;
}
.bs_order_data > * {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5px;
}
.bs_order_data > * > strong{
    font-family: var(--display);
    font-size: 17px;
}
.bs_order_data > * > span{
    font-family: var(--read);
    font-size: 16px;
    color: grey;
}
.bs_order_img {
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 20px;
    margin-bottom: 11px;
}
span.bso_status.bso_warning {
    background-color: #ffe8d5;
    padding: 7px;
    border-radius: 6px;
    color: white;
    padding-left: 40px;
    color: #de793b;
    font-weight: 600;
    position:Relative;
}
.bso_status.bso_warning:after{
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/wp-content/uploads/2023/11/warning.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;

}
.bs_order_action {
    display: grid;
    grid-template-columns: 60px auto 100px;
    width: 100%;
}
.bs_order_actions.bs_pattern_primary {
    display: flex;
    width: 100%;
    width: calc(100% + 20px);
    margin: -10px;
    margin-top: 10px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
    border-radius: 4px;

}
.bs_order_action > img {
    width: 30px;
    filter: invert(1);
}
.bs_order_action > strong {
    font-family: var(--display);
    font-size: 17px;
    color: white;
    width: 100%;
}
.bs_order_action {
    display: grid;
    grid-template-columns: 60px auto 100px;
    width: 100%;
    align-items: center;
    justify-items: center;
}
.bs_order_action > button {
    border: 3px solid white;
    background-color: rgba(0,0,0,0);
    padding: 10px 13px;
    font-size: 18px;
    background-color: var(--primary);
    color: white;
}
.bs_order_img > div {
    padding-bottom: 100%;
    background-size: contain;
    filter: transform:;
    mix-blend-mode: multiply;
}
@keyframes s2{ 
  100%{transform: rotate(.5turn)}
}
.custom-loader {
    width:80px;
    height:80px;
    border-radius:50%;
    background:conic-gradient(#0000 10%,#FF007B);
    -webkit-mask:radial-gradient(farthest-side,#0000 calc(100% - 16px),#000 0);
    animation:s3 1s infinite linear;
    margin: 20px;
  }
  @keyframes s3 {to{transform: rotate(1turn)}}


  /* status bar */
.bs_statusbar {
    width: 100%;
    margin-top: 10px;
}
.bs_status_timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(100px , 150px));
    padding-top: 20px;
}
.bs_status_timeline_step {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    overflow: visible;
}
.bs_status_text > *
{
    overflow: visible!important;
    text-align:center;
}
.bs_status_text > h5{
    font-size: 14px;
    font-family: var(--display);
}
.bs_status_text > h6 {
    font-size: 12px;
    font-family: var(--read);
    color: grey;
    margin-top: 5px;
    max-width: 90px;
}

.bs_status_icon {
    background-color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.bs_status_icon > img{
    filter: invert(1);
    width: 20px;
}
.bs_timeline_action_completed > .bs_status_icon {
    background-color: var(--primary);
}
.bs_timeline_action_admin{
    position:relative;
}

.bs_status_timeline > .bs_timeline_action_admin:first-child::after {
    width: 3px;
    height: calc(100% + 20px);
    left: 2px;
    top: -20px;
    background-color: #c9c9c9;
    content: "";
    position: absolute;
}

.bs_status_header{
    padding-bottom: 20px;        
}
.bs_status_header > *{
    font-family: var(--display);
    font-size: 17px;
}
.bs_status_header > strong{
    margin-left: 4px;
    color: var(--primary);
}
.bs_timeline_action_busy,
.bs_timeline_action_waiting,
.bs_timeline_action_completed,
.bs_timeline_action_busy > .bs_status_icon,
.bs_timeline_action_waiting > .bs_status_icon{
    position:relative;
    overflow: visible;
}
.bs_timeline_action_completed > .bs_status_icon::after,
.bs_timeline_action_busy > .bs_status_icon::after,
.bs_timeline_action_waiting > .bs_status_icon::after {
    content: "";
    background-size: contain;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: calc(50% - 33px);
}
.bs_timeline_action_busy > .bs_status_icon::after {
    background-image: url("/wp-content/uploads/2024/01/bs_busy.png");
    animation: rotate 2s infinite linear;
}
.bs_timeline_action_completed > .bs_status_icon::after {
    background-image: url("/wp-content/uploads/2024/01/busy_done.png");
}
.bs_timeline_action_waiting > .bs_status_icon::after {
    background-image: url("/wp-content/uploads/2024/01/bs_attention.png");
}
@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}
.bs_timeline_not_started::before {
    content: "";
    width: 100%;
    height: calc(100% + 20px);
    position: absolute;
    top: -20px;
    left: 5px;
    z-index: 8;
    background-color: #F5F5F5;
    opacity: 0.5;
    background: repeating-linear-gradient( -45deg, #cdcdcd, #cdcdcd 3px, #F5F5F5 3px, #F5F5F5 15px );
}
.bs_status_icon{
    z-index: 2;
}
.bs_status_timeline_step:not(.bs_timeline_not_started, .bs_timeline_action_waiting):before {
    content: "";
    width: 152px;
    position: absolute;
    height: 5px;
    background-color: black;
    left: 50%;
    top: 23px;
    z-index: 0;
}
.bs_timeline_not_started.bs_timeline_action_busy> .bs_status_icon:after {
    opacity: 0;
}
.bs_status_timeline_step{
    position:relative;
}
.bs_action_bar{
    width: 100%;
    float:left;
}
.bs_action_bar > button {
    padding: 10px 20px;
    border-radius: 2px;
    border: 1px solid red;
    font-size: 17px;
    float: right;
}

div#bs_account {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
}
.bd_address_field{
    max-height: unset;
    height: unset!important;
}
.bs_delivery_icons {
    display: grid;
    grid-template-columns: repeat(auto-fit,30px);
    grid-template-rows: 30px 30px;
    grid-gap: 10px;
}
.bs_icon{
    background-size: 20px;
}
.bs_delivery_icons:hover > *{
    opacity: 0.6;
}
.bs_delivery_icons:hover > *:hover{
    opacity: 1!important;
    cursor: pointer;
}
.bs_delivery_icon > *{
    cursor: pointer;
}

.bs_stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 7px;
    background-color: white;
}
.bs_stat {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.bs_stat > span,
.bs_stat > h3 {
    margin: 0px!important;
    padding: 0px!important;
    font-size: 15px;
    color: grey;
    font-family: var(--read);
}
.bs_stat{
    border-right: 2px solid rgb(224, 224, 224);
}
.bs_stat:last-child{
    border-right: 0px solid red;
}
button.bs_primary {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    border: 0px solid red;
    text-transform: uppercase;
}
.bs_stat > strong {
    font-size: 37px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
}
.bs_divider {
    border-top: 2px solid #efefef;
    margin-top: 30px;
    margin-bottom: 30px;
}
.bs_icon.icon-selected {
    background-color: #ffe1f0;
    border-radius: 4px;
}

.bs_order_product_title > span {
    font-size: 18px;
    font-family: var(--display);
}

.bs_order_product {}

.bs_order_product {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 10px;
    min-height: 100px;
    width: 100%;
}

.bs_order_products {
    width: 100%;
}
.bs_order_detail_prow {
    padding: 4px 0px;
}
.bs_order_detail_prow > strong {
    font-size: 15px;
    font-family: var(--display);
    font-weight: 700;
}