@charset "UTF-8";

#cookie {
    z-index: 100;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 50px;
    bottom: 5vh;
    width: 320px;
    height: auto;
    font-family: korolev-condensed, sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: whitesmoke;
    opacity: 0.95;
    display: none;
}

#cookie-txt {
    margin: 0;
    padding: 20px;
    font-size: 18px;
    text-align: justify;
}

#cookie-txt p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

#cookie-btn {
    margin: 0;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#cookie-true {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 40px;
    border: 1px solid;
    border-color: #52AE32;
    cursor: pointer;
    font-family: korolev-condensed, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #52AE32;
    font-size: 18px;
    transition: ease 200ms;
}

#cookie-true:hover {
    background-color: #52AE32;
    color: whitesmoke;
}

@media screen and (max-width: 1000px) {
    #cookie {
        width: 100%;
        left: 0;
        bottom: 0vh;
    }
}