/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/
#header-outer:not(.transparent) #top #logo {
    color: #1b2026 !important;
}
/* Button styles */
.cta-button {
    background-color: transparent;
    color: #e6e6e6;
    text-decoration: underline;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}
.cta-button:hover {
    cursor: pointer;
    color: #fff;
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal__content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.modal__close:hover,
.modal__close:focus {
    color: black;
}

.modal__title {
    margin-top: 0;
    font-size: 24px;
}

.modal__description {
    margin: 15px 0;
}

.modal__description--price {
    display: flex;
    justify-content: center;
    padding: 16px;
    background-color: #f7f7f7;
    margin-bottom: 24px;
}
.modal__description--price h4 {
    margin-bottom: 0 !important;
}
.modal__footer {
    display: flex;
    margin-top: 48px;
}
.modal__footer button {
    width: 100%;
}
.modal__submit {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 35px;
    background-color: #1b2026;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.modal__submit:hover {
    color: #fff;
    cursor: pointer;
}
#header-outer #top nav > ul > li.current-menu-item > a {
    color: #1b2026 !important;
}

@media screen and (max-width: 480px) {
    .modal__content {
        top: 58px;
        /* height: calc(100vh - 116px); */
        max-height: 600px;
        overflow-y: scroll;
    }
    .modal__title {
        width: 90%;
    }
}
