/*
************************ Custom Notifications Box ************************
*/

.notification-container {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    padding: 12px 24px;
    display: flex;
    gap: 12px;
}

.notification-blue {
    border-left: 5px solid var(--color-dodgerblue);
    background-color: #DFF0FF;
    color: var(--color-dodgerblue);
}

.notification-yellow {
    border-left: 5px solid var(--color-chocolate);
    background-color: #FDEFB0;
    color: var(--color-chocolate);
}

.notification-green {
    border-left: 5px solid var(--color-limegreen);
    background-color: var(--color-lightgoldenrodyellow);
    color: var(--color-limegreen);
}

.notification-red {
    border-left: 5px solid var(--color-crimson);
    background-color: #FEEAED;
    color: var(--color-crimson);
}

.custom-notification-container {
    background-color: rgba(247, 247, 247, 0.8);
    position: relative;
    z-index: 99;
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
}
@media screen and (min-width: 1000px) and (max-width: 1250px) {
    .custom-notification-container,
    .custom-notification-container button {
        font-size: 12px !important;
        padding: 6px 12px;
    }
}
@media screen and (max-width: 1000px) {
    .custom-notification-container,
    .custom-notification-container button {
        font-size: 10px !important;
        padding: 4px 8px;
    }
}

/*
************************ Custom pop up window ************************
*/
.custom-pop-up-window-wrapper {
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: cover;
    top: 0;
    left: 0;
}

.custom-pop-up-window {
    width: 50%;
    max-width: 400px;
    background-color: white;
    border: 1px solid rgba(112, 112, 112, 0.4);
    box-shadow: 0 0 50px 0 rgba(0, 61, 124, 0.2);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #707070;
    font-size: 15px;
}

.custom-pop-up-window button {
    padding: 6px 12px !important;
}

.custom-pop-up-window .bold {
    font-weight: 600;
    color: #3C3C3C;
    font-family: 'Montserrat', sans-serif;
}

/*
************************ Custom input and input wrapper not for ACF ************************
*/
.custom-nonacf-input-wrapper {
    border-radius: 20px;
    background: white;
    border: 1px solid var(--color-dimgray-200);
    padding: 6px 12px;
    display: flex;
    align-items: center;
}
.custom-nonacf-input-wrapper input {
    width: 96%;
    border: none;
    padding: 1px 2px;
    background: transparent;
}
.custom-nonacf-input-wrapper img {
    width: 2%;
    margin-right: 2%;
}

.custom-nonacf-select-wrapper {
    width: 20%;
    min-width: 200px;
    border-radius: 10px;
    border: 1px solid var(--color-dimgray-200);
    padding: 6px 12px;
    background-color: white;
    cursor: pointer;
}

.custom-nonacf-select-wrapper select,
.custom-nonacf-select-wrapper option {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.custom-nonacf-select-wrapper label {
    display: none;
}

/*
************************ Custom Paragraph Show More ************************
*/

.text-show-more {
    text-align: left;
}
.text-show-more:not(.open) {
    max-height: 80px;
    overflow: hidden;
    transition: all 0.7s;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.text-show-more.open {
    max-height: 1200px;
    animation: show-overflow 1.5s;
    transition: max-height 0.7s;
    overflow-y: auto;
}
.text-show-more-btn {
    cursor: pointer;
    width: fit-content;
}
@keyframes show-overflow {
    from {
        overflow: hidden;
    }
}

/*
************************ Custom Paragraph View More Containers ******
 */

.view-more {
    text-align: left;
}
.view-more:not(.open) {
    display: none;
}
.view-more.open {
    display: flex;
    flex-wrap: wrap;
}
.view-more-btn {
    cursor: pointer;
    width: fit-content;
}

/*
************************ Custom Page Anchors ************************
*/

.custom-page-anchor:not(.open) {
    margin-left: -150px;
    transition: all 0.7s;
}

.custom-page-anchor:not(.open) img {
    rotate: 180deg;
    transition: all 0.5s;
}

.custom-page-anchor.open {
    margin-left: 0;
    transition: all 0.7s;
}

.custom-page-anchor.open img {
    rotate: 0deg;
    transition: all 0.5s;
}
.custom-page-anchor .anchor-link {
    color: #3C3C3C;
}
.custom-page-anchor .anchor-link.active {
    border-left: 4px solid #003D7C;
    color: #003D7C
}

.custom-page-anchor-btn {
    cursor: pointer;
    border: 1px solid #C6C6C6;
    height: fit-content;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: none;
    margin-left: -2px
}

