.genericLoadingPopup .loader {
    margin-bottom: 0;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    border: 8px solid #f3f3f3;
    border-top: 8px solid rgb(110, 112, 117);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.genericLoadingPopup {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.8);
}
.genericLoadingPopup > .flex-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}
.genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
    position: relative;
    width: 50vw;
    max-width: 700px;
    background-color: #FFF;
    margin: auto;
    border: 1px solid black;
    padding: 25px;
    max-height: 80vh;
    overflow-y: auto;
}

.genericLoadingPopup a.closeMeDown {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
@media(max-width: 767px) {
    .genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
        width: 90vw;
    }
}
@media(min-width: 768px) and (max-width: 1199px) {
    .genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
        width: 80vw;
    }
}

label.nwLocalPickupLabel {
    text-align: justify;
    margin-left: 20px;
}
span.nwLocalPickupNameOfStore {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}
span.nwLocalPickupAddressOfStore {
    font-weight: bold;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.genericLoadingPopup h1 {
    font-size: 30px;
}
.genericLoadingPopup .nwTopSection {
    margin-bottom: 20px;
}
.genericLoadingPopup .nwLocalPickupOption {
    margin-bottom: 15px;
}
.genericLoadingPopup .nwBottomSection {
    margin-top: 20px;
}
.genericLoadingPopup input[type="submit"] {
    background: #ed2338;
    color: white;
    border-radius: 0;
    padding: 13.5px 14px;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    position: relative;
    overflow: visible;
    font-weight: 700;
    border: 0;
    display: inline-block;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    text-decoration: none !important;
    letter-spacing: 0.6px;
    white-space: nowrap;
    transition: all 0.3s;
}

.woocommerce-custom-local-pickup-address {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 32px;
}

/**********************************************************************************************************************
    from nw-style.css
**********************************************************************************************************************/

.cart_totals .woocommerce-shipping-totals .nwLocalPickup_section,
.checkout.row .shop_table .nwLocalPickup_section{
    position: relative;
    padding:0 8px 8px 8px;
    text-align: left;
}
.cart_totals .woocommerce-shipping-totals .nwLocalPickup_section{
    margin-bottom: 4px;
}
.cart_totals .woocommerce-shipping-totals .nwLocalPickup_section:before,
.checkout.row .shop_table .nwLocalPickup_section:before{
    content: '';
    background-color: var(--light-yellow);
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: 0;
    z-index: -1;
}
.cart_totals .woocommerce-shipping-totals .nwLocalPickup_section p,
.checkout.row .shop_table .nwLocalPickup_section p{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.checkout.row .shop_table .nwLocalPickup_section p a{
    margin-top:8px;
    background-color: var(--yellow);
}
.cart_totals .woocommerce-shipping-totals .nwLocalPickup_section p a{
    background-color: var(--yellow);
    margin-top:28px;
}

div.nwLocalPickupStoreBox {
    width: 100%
}

div.nwLocalPickupStoreContainer {
    border-left: 2px solid var(--light-grey);
    border-right: 2px solid var(--light-grey);
    border-bottom: 2px solid var(--light-grey);
    margin-bottom: 8px;
    margin-top: -8px;
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px
}

div.nwLocalPickupStoreDetails {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #ebebeb
}

div.nwLocalPickupStoreDetails>p {
    font-size: 13px;
    color: var(--gray)
}

p.nwLocalPickupMsg {
    margin-bottom: 32px
}

p.nwLocalPickupProduct {
    margin-bottom: 12px;
    font-weight: 600
}

a.nwToggleLocalPickupStoreDisplay,
a.nwToggleLocalPickupStoreDisplay:hover,
a.nwToggleLocalPickupStoreDisplay:visited {
    text-decoration: underline;
    color: var(--dark-gray)
}

div.nwLocalPickupStockStatusBox {
    margin-top: 5px
}

span.stockText {
    font-size: 14px
}

span.inStockText {
    color: #51c44d
}

span.outOfStockText {
    color: #ed2338
}

img.stockStatusIcon {
    margin-right: 5px
}