/* Member message */

/* .member-message {
    background-color: #ecf0f1;
    padding: 0.5rem 1rem;
    font-size: 18px;
    font-weight: 600;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media (max-width: 1199.98px) {
    .member-message {
        font-size: 10px;
        padding: 0.1rem 0.5rem;
    }
}

.member-message a {
    background-color: white;
    color: #4a4a4a;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 2rem;
} */

@media (max-width: 1199.98px) {
    .member-message a {
        -webkit-flex-basis: 220px;
        flex-basis: 220px;
    }
}

.member-message a:hover {
    color: #4483c1;
}



#modal-1 {
    display: none;
}

#modal-1.is-open {
    display: block;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.modal__container {
    background-color: #fff;
    width: 800px;
    height: 400px;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    transition: transform 200ms ease-in-out;
}

.modal__container:hover {
    transform: scale(1.005);
}

.modal__header {
    position: absolute;
    top: 16px;
    right: 4px;
}

.modal__header button {
    color: white;
    font-weight: 600;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.15);
}

.modal__close:hover {
    color: #3a3a3a;
    background: rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

.modal__header .modal__close:before {
    content: "\2715";
}

.modal__content {}

.modal__image {
    width: 100%;
    height: 100%;
    background-color: #999999;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.modal__btn {}

.modal__btn-primary {
    background-color: #e36331;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    color: #fff;
    font-size: 20px;
}

.modal__content a:after {
    display: none !important;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

@media screen and (max-width: 900px) {
    .modal__container {
        width: 80%;
        height: 320px;
        background-color: transparent;
    }

    .modal__image {
        width: 100%;
        background-color: transparent;
    }
}