.devotion-sitemap {
    line-height: 1;
}

.devotion-sitemap a {
    text-decoration: none;
}

.devotion-sitemap ul li {
    margin-bottom: 0;
    padding-bottom: 0;
}

.devotion-sitemap ul ul li {
    margin-bottom: 0;
}

.devotion-sitemap ul {
    font-size: 1rem;
}

.devotion-sitemap ul ul {
    margin-top: 0;
}

.devotion-sitemap ul ul ul {
    margin-top: 0;
}

.devotion-sitemap ul ul {
    font-size: 1rem;
}

.devotion-sitemap ul ul ul {
    font-size: 1rem;
}

.notification-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    padding: 20px;
    color: #000;

    visibility: hidden;
    opacity: 0;

    transition: all 0.5s ease;
}

.notification-popup.active {
    visibility: visible;
    opacity: 1;
}

.notification-popup .inner {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 600px;
    padding: 40px;
}

.notification-popup p {
    margin-top: 10px;
}

.notification-popup .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #000;
}

.notification-popup .close:hover {
    color: #f7b600;
}

.notification-popup h2 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f7b600;
}

.browser-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    padding: 20px;
    color: #000;
    text-align: center;

    visibility: hidden;
    opacity: 0;

    transition: all 0.5s ease;
}

.browser-popup.active {
    visibility: visible;
    opacity: 1;
}

.browser-popup .inner {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 600px;
    padding: 40px;
}

.browser-popup p {
    margin-top: 10px;
}

.browser-popup .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #000;
}

.browser-popup .close:hover {
    color: #f7b600;
}

.browser-popup h2 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 30px;
}

.browser-popup .browser-links {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
}

.browser-popup .browser-links a {
    display: block;
    position: relative;
    background-color: #ededed;
    height: 50px;
    line-height: 50px;
    padding-left: 70px;
    padding-right: 70px;
    border-radius: 25px;
    margin-top: 10px;
    transition: all 0.5s ease;
}
.browser-popup .browser-links a:hover {
    background-color: #dadada;
}

.browser-popup .browser-links a img {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
}

.browser-popup .browser-links a .link-icon {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 5px;
    top: 5px;
    line-height: 40px;
    text-align: center;
}