#modal_window.is-visible {
    scale: 100%;
    opacity: 1;
}

#modal_window p {
    margin: 0 !important;
}

#modal_window a {
    color: var(--accent_color);
    text-decoration: underline;
}

#modal_window {
    color: #fff;
    transition: .5s ease-in;
    display: flex;
    opacity: 0;
    scale: 0%;
    margin: 0 auto;
    position: fixed;
    bottom: 1rem;
    padding: 1rem;
    background: hsl(221deg 21% 15% / 60%) !important;
    /* border-radius: 25px;*/
    backdrop-filter: blur(10px);
    z-index: 2147483647;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: 1200px;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#ok_cookies {
    cursor: pointer;
    font-size: 16px;
    padding: 7px 15px;
    font-weight: 500;
    color: rgb(46, 51, 61);
    /*border-radius:10px;*/
    background-color: rgb(255, 255, 255);
    text-align: center;
    transition: background-color .3s;
}

#ok_cookies:hover {
    background-color: #e5e5e5;
}

@media screen and (max-width: 1023px) {
    #modal_window {
        gap: 15px;
        max-width: 768px;
        flex-direction: column !important;
    }

    #modal_window #ok_cookies {
        min-width: 120px;
        font-size: 12px;
    }
}