#cookie_notification {
    display: none;
}
#cookie_notification.show {
    display: flex;
    }

.cokies_msg {
   position: fixed; 
   left: 50%;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 770px;
    min-height: 150px;
    background-color: white;
    color: black;
    border: 5px solid var(--main-blue-color);
    z-index: 3;
    transform: translateX(-50%);
}
.cokies_txt {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 10px 10px 0px 10px;
  
}
    .cokies_txt p{
        margin: 10px 0px 0px -60px;
        text-align:justify;
        font-size: 14px;
    }
    .cokies_txt h3 {
        margin-left:-55px;
        text-align: center;
    }

    .cokies_txt img {
        width: 40px;
        margin:5px 15px 0px 5px;
    }
.cokies_btn button{
    color: white;
    background-color: var(--main-blue-color);
    appearance: none;
    border: 0;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
}
.cokies_btn {
    margin: 10px;
    cursor:pointer;
}

@media (max-width: 800px) {
    .cokies_msg {
        width: 95%;
    }
}

@media (max-width: 490px) {
    .cokies_txt h3 {
        margin-left: 0px;
    }
}

