.announcement-bar {
    width: 100%;
    padding: 5px 20px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    color:#ffffff;
    font-size: 18px;
}
.announcement-bar > div {
    display: flex;
    align-items: center;
}
.announcement-bar p {

    margin-right:15px;
}
.announcement-bar > div img {
    max-width: 150px;
    height: 34px;
    margin-right:15px;
}
.announcement-bar button {border:0;}

.modal-overlay {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.7);

}
.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2D294D;
    padding: 60px 100px;
    z-index: 500;
    border: 4px solid #E9C031;
    border-radius: 5px;
    color: #fff;
}
.modal-content p {
    max-width: 500px;
}
.close-modal {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
    background: none;
    border:0;
    z-index:100;
}
.close-modal:hover {
    opacity: 1;
}
.close-modal:before, .close-modal:after {
    position: absolute;
    content: ' ';
    height: 24px;
    width: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    top: 5px;
    right: 15px;
}
.close-modal:before {
    transform: rotate(45deg);
}
.close-modal:after {
    transform: rotate(-45deg);
}

dialog {max-width: 900px; width:100%; padding:0; border-radius: 4px;}
::backdrop {
    background-color:#000;
    opacity: 0.80;
}

@media screen and (max-width: 768px) {
    .announcement-bar{
        flex-direction: column;
        padding:0;
        font-size: 15px;
    }
    .announcement-bar .cta {
        width:100%;
        border-radius:0;
    }
    .announcement-bar > div img {
        margin-top:8px;
    }
    .announcement-bar p {
        margin:10px;
        max-width:300px;
    }
    .modal-content {
        padding:40px 20px;
    }

    dialog {
        width:90%;

    }

    .container {
        padding:20px;
    }

}