/* Common CSS for templates */
.wcl-clearfix {
    clear: both;
}

.wcl-shadow {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.wcl-popup-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wcl-popup-container {
    width: auto;
    position: fixed;
    z-index: 9999999;
}
a.wcl-product-query-btn {
    display: inline-flex;
    width: auto;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 3px;
    position: relative;
    text-decoration: none !important;
    margin: 5px 0;
}

i.wcl-popup__open-icon {
    padding: 0px 10px;
}

/* Popup CSS Start */
#wcl-popup-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999998;
    display: none;
}
#wcl-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999;
    padding: 30px;
    display: none;
    max-width: 100%;
}
#wcl-popup .wcl-popup-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#wcl-popup .wcl-popup-content button {
    padding: 10px 20px;
    cursor: pointer;
}
#wcl-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
#wcl-popup-close svg {
    color: #000;
}
.wcl-popup-title {
    margin: 0 0 10px;
    font-size: 24px;
}
.wcl-popup-message {
    margin: 0 0 25px;
    font-size: 16px;
}
body.popup-open {
    overflow: hidden;
}
#wcl-popup-action {
    border: none;
}
/* Popup CSS End */

@media only screen and (max-width: 767px) {
    #wcl-popup {
        padding: 30px 20px;
        width: calc(100% - 30px) !important;
        left: 0;
        transform: translateY(-50%);
        margin: 0 15px;
    }
}