<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookies-info {
    position: fixed;
    display: none;
    z-index: 10000001;
    bottom: 0;
    left: calc(50% - 585px);
    width: 1170px;
    max-height: 100%;
    min-height: 400px;
    background-color: #fff;
    border-radius: 4px 4px 0px 0px;
    padding: 50px 50px 35px 50px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
}

.cookies-bg {
    position: fixed;
    display: none;
    z-index: 10000000;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.2;
}

.cookies-info__title {
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 50px;
    text-align: left;
    color: #47924D;
}

.cookies-info__content {
    width: 100%;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    padding: 20px 0;
    color: #333333;

}

.cookies-info__footer {
    width: 100%;
    height: 50px;
    display: flex;
}

.cookies-info__links {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cookies-info__link {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    text-decoration-line: underline;
    color: #47924D;
}

.cookies-info__link:last-child {
    margin-left: 25px;
}

.cookies-info__buttons {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 20px;
}

.cookies-info__agree {
    width: 275px;
    height: 100%;
    background-color: #9BC525;
    border-radius: 6px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #fff;
    margin-left: 20px;
    border: none;
    padding: 0px 23px 0px 23px;
    box-sizing: border-box;
    cursor: pointer;
}

.cookies-info__detail {
    width: 120px;
    height: 100%;
    border: 1px solid #666666;
    border-radius: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
}

.cookies-info__alert {
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 50px;
    text-align: left;
    color: #47924D;
}

@media screen and (max-width: 1170px) {
    .cookies-info {
        width: 100%;
        left: 0px;
    }
}

@media screen and (max-width: 768px) {
    .cookies-info {
        overflow-y: auto;
    }

    .cookies-info__footer {
        display: block;
        height: auto;
    }

    .cookies-info__links {
        height: 50px;
        margin-bottom: 40px;
    }

    .cookies-info__buttons {
        height: 50px;
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .cookies-info__links {
        height: auto;
        display: block;
        margin-bottom: 0;
        text-align: center;
    }

    .cookies-info__link {
        display: block;
        padding-bottom: 20px;
    }

    .cookies-info__link:last-child {
        margin-left: 0;
    }

    .cookies-info__buttons {
        height: auto;
    }

    .cookies-info__buttons {
        height: 50px;
        display: block;
        text-align: center;
    }

    .cookies-info__detail {
        width: 275px;
        margin: 20px auto 40px;
    }

    .cookies-info__agree {
        margin: 0 auto 40px;
    }
}</pre></body></html>