/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

.agree-cookie {
    font-family: "Montserrat", sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.875rem, 0.341rem + 6.55vw, 5.25rem);
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: clamp(0.625rem, 0.199rem + 1.82vw, 1.563rem) clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
    z-index: 9999;
    display: none;
}
.agree-cookie.hidden {
    display: none;
}
.agree-cookie.show {
    display: flex;
}
@media (width < 768px) {
    .agree-cookie {
        flex-direction: column;
    }
}

.agree-cookie__text-box {
    flex: 0 1 70%;
    max-width: 887px;
    /* font-family: "Roboto-Light"; */
    font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
    font-weight: 300;
    line-height: 130%;
    color: rgb(255, 255, 255);
}
.agree-cookie__text-box > a {
    max-width: 887px;
    /* font-family: "Roboto-Light"; */
    font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
    font-weight: 300;
    line-height: 130%;
    color: rgb(255, 255, 255);
    text-decoration: underline;
}
@media (width < 768px) {
    .agree-cookie__text-box {
        flex: 0 1 100%;
    }
}

.agree-cookie__btn-box {
    flex: 0 1 9%;
}
@media (width < 768px) {
    .agree-cookie__btn-box {
        flex: 0 1 100%;
    }
}

.agree-cookie__btn {
    width: 157px;
    padding: 10px 15px;
    border: 2px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: "Roboto-Light"; */
    font-size: 15px;
    font-weight: 300;
    line-height: 130%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.agree-cookie__btn:hover {
    transition: 0.3s;
    background: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.7);
} /*# sourceMappingURL=style.css.map */
