

website-overlay-message {
    position: relative;
    width: 70%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    margin: 0 auto 20px auto;
    background-color: #1c3a5e;
    color: #FFF;
}

website-overlay-message .message-content {
    text-align: justify;
}

website-overlay-message .message-content a {
    color: #FFF;
}

website-overlay-message .close-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #384c7a;
}

website-overlay-message .close-button .close-icon{
    width: 1.75rem;
    height: 1.75rem;
    background-image: url('../../../images/x.png');
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}

.site-lang-heb website-overlay-message .close-button {
    right: initial;
    left: 0;
}

@media screen and (max-width: 768px) {
    website-overlay-message {
        margin: 20px auto 20px auto;
        padding: 4rem;
        width: 90%;
    }
}

