﻿.cookie__notification {
    position: fixed;
    display: none;
    border-radius: 10px;
    max-width: 361px;
    width: 100%;
    min-height: 70px;
    left: 24px;
    bottom: 24px;
    padding: 16px 0;
    background-color: #fff;
    z-index: 99999;
    -webkit-box-shadow: 0px 20.017px 60.035px -20.017px rgba(0, 0, 0, 0.30), 0px 50.029px 100.058px -20.012px rgba(50, 50, 93, 0.25), 0px 1.001px 1.001px 0px rgba(255, 255, 255, 0.10) inset;
    box-shadow: 0px 20.017px 60.035px -20.017px rgba(0, 0, 0, 0.30), 0px 50.029px 100.058px -20.012px rgba(50, 50, 93, 0.25), 0px 1.001px 1.001px 0px rgba(255, 255, 255, 0.10) inset;
    -webkit-animation: 1s ease 0s 1 slide_in_from_bottom;
    animation: 1s ease 0s 1 slide_in_from_bottom;
}

.rtl .cookie__notification {
    left: auto;
    right: 24px;
}

.cookie__notification.cookie__notification-visible {
    display: block;
}

@-webkit-keyframes slide_in_from_bottom {
    0% {
        -webkit-transform: translateY(113px);
        transform: translateY(113px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@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%;
    padding: 0 16px;
}

.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;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cookie__notification .notification__txt {
    position: relative;
    width: 100%;
    max-width: 212px;
}

.rtl .cookie__notification .notification__txt {
    text-align: right;
}

.cookie__notification p {
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
    color: #000;
}

.cookie__notification a {
    color: #000;
    text-decoration: underline;
}

.cookie__notification a:hover {
    color: #006eaf;
}

.cookie__notification .cookie__notification-confirm {
    width: 100%;
    max-width: 93px;
    height: 38px;
    background-color: #111827;
    border: 1px solid #111827;
    border-radius: 5px;
    font-size: 10px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-transition: all var(--transition);
    -o-transition: all var(--transition);
    transition: all var(--transition);
}

@media (any-hover) {
    .cookie__notification .cookie__notification-confirm:hover {
        opacity: .8;
    }
}

@media screen and (max-width: 1024px) {
    .cookie__notification {
        left: 7px;
        bottom: 7px;
    }

    .rtl .cookie__notification {
        right: 7px;
    }
}

@media screen and (max-width: 576px) {
    .cookie__notification {
        max-width: 220px;
    }

    .cookie__notification .cookie__notification-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cookie__notification .notification__txt {
        padding: 0;
        margin: 0 0 10px 0;
        max-width: 100%;
    }

    .cookie__notification .cookie__notification-confirm {
        max-width: 100%;
    }

    .rtl .cookie__notification .notification__txt {
        padding-right: 0;
        padding-left: 10px;
    }
}
