.tm-announcement {
    display: none;
}

.tm-announcement.is-active {
    display: block;
    position: fixed;
    width: 100%;
    min-width: 100vw;
    height: 100%;
    min-height: 100vh;
    z-index: 666666;
    top: 0;
    left: 0;
    overflow: auto;
    margin-bottom: 60px;
}

.tm-announcement-underlay {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 666667;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}

.tm-announcement-modal {
    position: absolute;
    z-index: 666668;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    overflow-y: auto;
}

.tm-announcement-modal .btn {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    padding: 10px;
    color: #000000;
}

.tm-announcement-modal .btn:after {
    content: '\03a7';
}

.product-announcement-container {
    text-align: center;
    /*display: flex;*/
    /*justify-content: space-evenly;*/
}

.product-announcement-container p {
    padding: 20px 0px;
    font-size: 2.8vw;
}

@media only screen and (min-width: 768px) {

    .tm-announcement-modal {
        width: 80%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 60px;
    }

    .product-announcement-container {
        display: flex;
        justify-content: space-evenly;
    }

    .product-announcement-container p {
        font-size: 1.6vw;
    }
}
