/*POPUP*/

@-webkit-keyframes storemodalreveal {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes storemodalreveal {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}

.store-chooser-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 888;
}

.store-chooser-modal:target {
    display: table;
    position: absolute;
}

.store-chooser-modal-dialog {
    display: table-cell;
    vertical-align: middle;
}

.store-chooser-modal-dialog .store-chooser-modal-content {
    margin: auto;
    background-color: #f3f3f3;
    position: relative;
    padding: 0;
    outline: 0;
    border: 1px #777 solid;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: storemodalreveal; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 0.5s; /* Chrome, Safari, Opera */
    animation-name: storemodalreveal;
    animation-duration: 0.5s;
    z-index: 999;
}


.closebtn {
    text-decoration: none;
    margin-right: 10px;
    float: right;
    font-size: 35px;
    font-weight: bold;
    color: #555;
}

.closebtn:hover,
.closebtn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.store-chooser-container {
    padding: 2px 16px;
}

.store-chooser-header {
    font-size: 25px;
    color: white;
    padding: 2px 16px;
}

.store-chooser-footer {
    font-size: 20px;
    color: white;
    padding: 2px 16px;
}

.modal-title {
    font-size: 25px;
    color: #555;
}

.l36ca-store-location-save-btn:hover {
    background: #e93947;
}

.l36ca-store-location-save-btn {
    cursor: pointer;
    padding: 20px 10px;
    background: #cf202e;
    color: white;
    display: block;
    margin: 15px
}

.modal-store-name {
    width: 90%;
    cursor: pointer;
    border: 1px solid #333;
    margin: 10px auto;
    padding: 10px;
    display: flex;
}

@media only screen and (max-width: 900px) {
    .store-chooser-modal-dialog .store-chooser-modal-content {
        width: 90%;
    }
}


.dt-products .woocom-project .entry-title a {
    min-height: 90px;
    /*min-height:430px;*/
}

.my-account-store-selector a {
    color: #000 !important;
}


.shop-page-store-selector {
    background: #cd202d;
    padding: 5px 10px;
    width: 80%;
    text-align: center;
    margin: 0 auto 20px auto;
}

.shop-page-store-selector a {
    justify-content: center;
}

.out-of-stock-label {
    background: darkred;
    color: white;
    padding: 3px 8px;
    font-size: 13px;
    display: inline-block;
    /*width: 70px;*/
    margin-bottom: 10px;
    text-align: center;
}

.in-stock-label {
    background: green;
    color: white;
    padding: 3px 8px;
    font-size: 13px;
    display: inline-block;
    width: 70px;
    margin-bottom: 10px;
    text-align: center;
}

.summary .out-of-stock-label,
.summary .in-stock-label {
    display: block;

}

.sticky-on .branding img {
    margin-top: -20px !important;
}

.choose-the-store {
    display: flex;
    align-items: center;
    padding: 5px 10px !important;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    background: #000;
    border: 1px solid white; /* ← match animation start */
    transition: all 0.35s ease;
}

.no-store-selected {
    animation: pulse-size 2.2s ease-in-out infinite,
    pulse-color 2.2s ease-in-out infinite;
}

@keyframes pulse-size {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-color {
    0%, 100% {
        background: #000;
        border-color: #666;
        color: #eee;
    }
    50% {
        background: #555;
        border-color: #555;
        color: white;
    }
}