/* EU cookie compliance */
#sliding-popup {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    bottom: 0!important;
    width: 100%;
    height: 100% !important;
    background-color: rgba(0, 0, 0, .7) !important;
}
/*#sliding-popup > div {*/
#sliding-popup > div {
    width: 45%;
    background-color: #fff;
}
#sliding-popup > div .popup-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: auto;
    max-width: none;
    padding: 25px;
}
#sliding-popup > div .popup-content #popup-text {
    display: block;
    vertical-align: unset;
    float: none;
    width: auto;
    height: auto;
    max-width: none;
    margin: 0;
    line-height: 1;
}
#sliding-popup > div .popup-content #popup-text h2,
#sliding-popup > div .popup-content #popup-text button {
    color: #000 !important;
    font-weight: normal;
    font-size: 11px;
    line-height: 1.2em;
    margin-bottom: 0;
}
#sliding-popup > div .popup-content #popup-text p {
    font-size: 15px;
    color: #000 !important;
    font-weight: normal;
    line-height: 1.3;
}
#sliding-popup > div .popup-content #popup-text p strong{
    color:#6385C3;
    font-size:10px;
}
#sliding-popup > div .popup-content #popup-buttons {
    display: block;
    vertical-align: unset;
    float: none;
    width: 100%;
    height: auto;
    max-width: none;
    text-align: right;
    margin: 10px 0 0 0;
    padding: 0 !important;
}
#sliding-popup > div .popup-content #popup-buttons button {
    border-radius:0;
    background:#ccc;
    font-size: 12px;
    font-weight: normal;
    color: black !important;
    border:0;
    text-shadow:none;
    box-shadow:none;
    display: inline-block;
    margin: 0;
    padding: 5px 8px;
}
#sliding-popup > div .popup-content #popup-buttons button +
button {
    margin-left: 2px;
}
#sliding-popup > div .popup-content #popup-buttons button.agree-button {
    color: white !important;
    background-color: #368bd6;
}
#sliding-popup > div .popup-content #popup-buttons button:hover{
    color: white !important;
    background:black;
}
#sliding-popup > div .popup-content #popup-buttons .decline-button {
    display: none;
}

@media screen and (max-width: 767px) {
    #sliding-popup > div {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: flex;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    #sliding-popup > div .popup-content {
        display: block !important;
    }
    #sliding-popup > div .popup-content #popup-text {
        margin-bottom: 20px;
    }
    #sliding-popup > div .popup-content #popup-buttons,
    #sliding-popup > div .popup-content #popup-text {
        display: block;
        width: 100%;
        max-width: none;
        text-align: center;
    }
    #sliding-popup > div .popup-content #popup-buttons button {
        display: inline-block;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #sliding-popup > div {
        width: 70%;
    }
}