﻿.lbn-location-select-d{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
@media screen and (min-width: 992px) {
    .lbn-location-select-d{
        position: relative;
    }
    .lbn-location-select-d.active{
        background-color: #f47b22;
        color: #fff;
        border-radius: 6px;
    }
    .lbn-location-select-d.active .lbn-location-select-d-icon svg path {
        fill: #FFFFFF!important;
    }
    .lbn-location-select-d.active .lbn-location-select-d-icon svg circle {
        fill: #F47B22!important;
    }
}
.lbn-location-select-d-body{
    display: none;
    padding: 1rem;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    border-radius: 6px;
    background: #fff;
}
@media screen and (max-width: 992px){
    .lbn-location-select-d-body{
        position: fixed;
        z-index: 10000;
        width: 100%;
        left: 0;
        bottom: 0;
    }
}
@media screen and (min-width: 992px){
    .lbn-location-select-d-body{
        right: 0;
        top: 100%;
        width:275px;
        height: unset;
        position: absolute;
        z-index: 1003;
    }
}
.lbn-location-select-d-body.active{
    display: block;
}
.lbn-location-select-d-body-title{
    font-weight: 900;
    margin-bottom: .5rem;
}
.lbn-location-select-d-select{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    height: 28px;
}
.lbn-location-select-d-select-item{
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    cursor:pointer;
}
.lbn-location-select-d-select-item{
    border: none;
}
.lbn-location-select-d-select-item.active {
    color: #f47b22;
    border-bottom: 1px solid #f47b22 ;
}
.lbn-location-select-d-select .nav-tabs .nav-item{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lbn-location-select-d-select .nav-tabs .nav-item .nav-link{
    border: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lbn-location-select-d-select .nav-tabs .nav-item .nav-link.active{
    border-bottom: 1px solid #f47b22;
}
.lbn-address-select-list{
    margin: .5rem 0;
    max-height: 170px;
    overflow-y: auto ;
}
.lbn-address-select-list .select-list-item{
    display: flex;
    margin-bottom: 1rem;
}
.select-list-item-title {
    font-size: 14px;
    font-weight: 900;
}
.select-list-item-text {
    font-size: 12px;
    word-break: break-word;
}
.lbn-location-select-d-button{
    width: 100%;
    height: 100%;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lbn-location-select-d-button.active-shadow::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width:100vw;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(0,0,0,0.1);
}
.fast-delivery-component{
    display: flex;
    width: 100%;
    font-size: 11px;
}

.fast-delivery-component__container{
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: .5rem;
    margin: 1rem 0;
    width: 100%;
    align-items: center;
}
@media screen and (min-width: 992px) {
    .fast-delivery-component__container{
        padding: 0.8rem 1rem;
    }
    .fast-delivery-component{
        font-size: 14px;
    }
}
.fast-delivery-component__checkbox{
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin-bottom: 0;
}
@media screen and (min-width: 992px) {
    .fast-delivery-component__checkbox{
        width: 28px;
        height: 28px;
    }
}
.fast-delivery-component__input{
    display: none;
}
.fast-delivery-component__label{
    margin-bottom: 0;
    display: flex;
    width: 100%;
}
.fast-delivery-component__label .fast-delivery-component__input:checked ~ .fast-delivery-component__checkbox{
    background: #f47b22;
    position: relative;
}
.fast-delivery-component__label .fast-delivery-component__input:checked ~ .fast-delivery-component__checkbox:before{
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 10px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (min-width: 992px) {
    .fast-delivery-component__label .fast-delivery-component__input:checked ~ .fast-delivery-component__checkbox:before{
        left: 8px;
        top: 2px;
        width: 10px;
        height: 16px;
    }
}
.lbn-filter-location-button{
    padding: .33rem .6rem;
    border:1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}