/*
Theme Name: Mercury Child
Theme URI: https://mercurytheme.com/
Description: Child theme for Mercury theme
Author: MercuryTheme.com
Author URI: https://mercurytheme.com/
Template: mercury
Version: 3.9.6
*/
@import url("../mercury/style.css");


.space-widget a {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .space-footer-top-age {
        flex-direction: column;
    }
}


/* 404 Page */
.error.space-page-section {
    overflow: hidden;
}
.error__body {
    text-align: center;
    color: #900808;
}
.error__title,
.error_sub-title,
.error__text {
    color: #900808;
}

.error__bottom {
    text-align: center;
}
.error__bottom-url {
    display: flex;
    border: 1px solid #900808;
    color: #900808 !important;
    padding: 15px 25px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none!important;
    width: max-content;
    margin: 20px auto 0;
}

.error__bottom-url:hover {
    background-color: #900808;
    color: white!important;
    transform: scale(101%);
}

/* 404 Page */

   
/* Popup Banner */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#popup-banner {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
}

#popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 20px;
    background: #000616;
    color: white;
    border-radius: 50%;
    padding: 3px 5px;
    cursor: pointer;
    z-index: 10001;
}

.popup-img {
    max-width: 100%;
    height: auto;
    display: none;
}

.popup-img.desktop {
    display: none;
}

.popup-img.mobile {
    display: none;
}

@media (min-width: 768px) {
    .popup-img.desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    .popup-img.mobile {
        display: block;
    }
}
/* Popup Banner */