/* COOKIE WINDOW */
.cookies-container {
    display: none;
    min-width: 340px;
    min-height: 70px;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 24px;
    z-index: 2147483631;
}

.cookies-container-inner {
    display: flex;
    justify-content: space-around;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(33, 33, 33, 0.12) 0px 8px 24px;
    width: 80%;
    padding: 16px 24px;
    flex-flow: row;
    gap: 10px;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(201, 201, 201);
    border-image: initial;
    margin: 0px auto;
}

.cookies-container-inner__text {
    font-family: "Favorit Pro", Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 24px;
    flex-grow: 10;
    margin: auto;
}

.cookies-container-inner__button {
    flex-grow: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookies-container-inner {
    display: flex;
    flex-flow: row wrap;
    width: 95%;
  }
}

