/**
 * NOTICE OF LICENSE.
 *
 * This file is licenced under the Software License Agreement.
 * With the purchase or the installation of the software in your application
 * you accept the licence agreement.
 *
 * You must not modify, adapt or create derivative works of this source code
 *
 *  @author    Ohm Conception
 *  @copyright 2022 Ohm Conception
 *  @license   license,txt
 */
#popupnewsletter-wrap{
    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
}
#popupnewsletter{
    margin: auto;
    padding: 30px 60px;
    position: relative;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    z-index: 99999;
}
#popupnewsletter-wrap.shownow{
    visibility: visible;
    opacity: 1;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
#popupnewsletter .img_close{
    cursor: pointer;
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: #fff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #000000;
}

#popupnewsletter #newsletter-input
{
    display: block;
    width: 100%;
    padding: 0.375rem 0.563rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #55595c;
    background-color: #FAFBFC;
    background-image: none;
    border: 1px solid #BBCDD2;
    border-radius: 0.25rem 0 0 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#popupnewsletter .button_mini {
    border-radius: 0 0.25rem 0.25rem 0;
}

#popupnewsletter-message{
    text-align: center;
    width: 520px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #333;
    position: fixed;
    left: 0;
    right: 0;
    top: -100px;
    bottom: auto;
    margin: auto;
    background-color: #fff;
    z-index: 99999999;
    padding: 15px;
}
#popupnewsletter-message .img_close_message{
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: .6;
    cursor: pointer;
}

#popupnewsletter .pnl-inpt {
    display: flex;
}









#announcement-banner {
    background: #cf476b !important;  
    color:#fff;
    padding: 18px 0;
}

.announcement {
    align-items: center;
    display: flex;
}

#announcement-banner .announcement-text > p {
    color: #fff;
    margin-bottom: 0;
}

.announcement span {
    margin-right: 20px;
}

.announcement-link {
    background: #fff;
    padding: 6px 15px;
    color: #000;
    border-radius: 4px;
}


.announcement-link:hover {
  background: #fff;
  color: #1f294c;
}

.alert-close {
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    right: 15px;
}



@media screen and (min-width: 1024px) 
and (max-width: 1199px) {
  .announcement {
    text-align: left;    
  }

  .announcement span {
    text-align: left;
    font-size: 14px;
  }

}


@media screen and (min-width: 768px) 
and (max-width: 1023px) {
    .announcement {
        text-align: center;    
    }

    .announcement span {
        text-align: center;
        font-size: 14px;
        margin-bottom: 10px;
    }


    .announcement a {
        display: inline-block !important;
        clear: both;
        margin-top: 10px;
        /*width: 100%;*/
    }
}


@media screen and (min-width: 480px) 
and (max-width: 767px) {
    .announcement {
        text-align: center;
    }

    .announcement span {
        text-align: center;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .announcement a {
        display: inline-block !important;
        clear: both;
        margin-top: 10px;
    }
}

@media(max-width: 580px) {
    #announcement-banner {
        flex-direction: column;
    }

    #announcement-banner > div {
        margin-top: 32px;
    }

    .announcement {
        flex-direction: column;
    }

    #popupnewsletter {
        padding: 30px;
        width: 90% !important;
    }

    #popupnewsletter .pnl-inpt {
        display: block;
    }

    #popupnewsletter .button_mini {
        width: 100%;
        margin-top: 10px;
    }

    .announcement a {
        width: 100%;
    }
}

@media screen and (min-width: 320px) 
and (max-width: 479px) {
    .announcement {
        text-align: center;    
    }

    .announcement span {
        text-align: center;
        font-size: 14px;
        margin-bottom: 10px;
        margin-right: 0;
        /*width: 100%;*/
    }

    .announcement a {
        display: inline-block !important;
        clear: both;
        margin-top: 10px;
        /*width: 100%;*/
    }
}