.cookie__notification {
    position: fixed;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 113px;
    left: 0;
    bottom: 0;
    padding: 20px 0;
    background-color: #fff;
    z-index: 100;
    -webkit-animation: 1s ease 0s 1 slide_in_from_bottom;
    animation: 1s ease 0s 1 slide_in_from_bottom;
}
.cookie__notification.cookie__notification-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@keyframes slide_in_from_bottom {
    0% {
        -webkit-transform: translateY(113px);
        transform: translateY(113px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.cookie__notification .cookie__notification-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 120px;
}
.cookie__notification .cookie__notification-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 780px;
}
.rtl .cookie__notification .cookie__notification-inner {
  margin-left: auto;
}
.cookie__notification .notification__txt {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-right: 30px;
}
.rtl .cookie__notification .notification__txt {
    margin-right: 0;
    margin-left: 30px;
    text-align: right;
}
.cookie__notification p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #252E37;
}
.cookie__notification a {
    color: #006EAF;
}
.cookie__notification a:hover {
    text-decoration: underline;
}
.cookie__notification .cookie__notification-confirm {
    width: 100%;
    max-width: 222px;
    height: 42px;
    background-color: #fff;
    border: 1px solid #252E37;
    border-radius: 5px;
    font-size: 12px;
    color: #252E37;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: none !important;
    outline: none !important;
}
.cookie__notification .cookie__notification-close {
    position: absolute;
    width: 16px;
    height: 16px;
    right: -50px;
    top: -20px;
    padding: 0;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/cross_icon.svg);
    box-shadow: none !important;
    outline: none !important;
}
.rtl .cookie__notification .cookie__notification-close {
    right: auto;
    left: -50px;
}
@media only screen and (max-width: 992px) {
    .cookie__notification {
        animation: none;
    }
    .cookie__notification .cookie__notification-close {
        right: -25px;
        top: -10px;
    }
    .rtl .cookie__notification .cookie__notification-close {
        right: auto;
        left: -25px;
    }
}
@media only screen and (max-width: 768px) {
    .cookie__notification .cookie__notification-inner,
    .rtl .cookie__notification .cookie__notification-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .cookie__notification .notification__txt,
    .rtl .cookie__notification .notification__txt {
        margin: 0;
    }
    .cookie__notification .cookie__notification-confirm {
        margin-top: 15px;
    }
    .rtl .cookie__notification .cookie__notification-confirm {
        margin-left: auto;
    }
}
@media only screen and (max-width: 600px) {
    .cookie__notification .cookie__notification-container {
        padding: 0 80px;
    }
    .cookie__notification .cookie__notification-close {
        top: -13px;
    }
}
@media only screen and (max-width: 480px) {
    .cookie__notification {
        padding: 15px 0;
    }
    .cookie__notification p {
        font-size: 12px;
        text-align: center;
    }
    .cookie__notification .cookie__notification-confirm {
        max-width: 180px;
        height: 35px;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
    }
    .cookie__notification .cookie__notification-close {
        width: 20px;
        height: 20px;
        top: -4px;
    }
}
