/* Cookies Notice */
    .cookies-notice {
    display: none;
    position: fixed;
    bottom: 40px;
    left: 40px;
    transform: translateX(0%);
    background: #FFFFFF;
    color: #666666;
    padding: 25px 30px;
    border-radius: 0;
    z-index: 1000;
    transition: opacity 0.5s ease;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.4);
    width: 460px;
}
.cookies-notice.show {
    display: block;
}
.cookies-notice.hide {
    opacity: 0;
}
.cookies-notice .cookies-notice-cont {
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    line-height: 20px;
}
.cookies-notice .cookies-notice-cont h4 {
    color: #000000;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    margin: 0;
    font-size: 16px;
    display: block;
    width: 100%;
}
.cookies-notice .cookies-notice-cont p {
    line-height: 20px;
}
.cookies-notice .cookies-notice-cont a {
    color: #000000;
    text-decoration: none;
    text-transform: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s 0s;
}
.cookies-notice .cookies-notice-cont a:hover {
    border-bottom-color: rgba(0, 0, 0, 0.6);
}
.cookies-notice .btn,
.cookies-notice .cookies-notice-cont a.btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    width: 100%;
    text-align: center;
}
.cookies-notice .btn.close-btn,
.cookies-notice .cookies-notice-cont a.btn.close-btn {
    background-color: #000000;
    padding: 14px 28px;
    font-size: 16px;
    line-height: 18px;
    border-radius: 3px;
    color: #FFFFFF;
    transition: all 0.3s 0s;
}
.cookies-notice .btn.close-btn:hover,
.cookies-notice .cookies-notice-cont a.btn.close-btn:hover {
    background-color: #009b00;
}


/*@media screen and (min-width:600px) {

.cookies-notice .cookies-notice-cont {
    display: flex;
    gap: 20px;
    align-content: center;
    flex-direction: row;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    line-height: 20px;
}
.cookies-notice .btn {
    width: auto;
}

}
*/