/* ==============================
    c-button
 ============================== */
.c-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 3px;
}

@media screen and (min-width: 768px) {
    .c-button:hover {
        cursor: pointer;
    }
}

.c-button--cookie {
    width: 100px;
    height: 32px;
    background-color: #3C3C3C;
    color: #ffffff;
}

.c-button--cookie:hover {
    color: #ffffff;
    text-decoration: none;
}

.c-button--text-ex-small {
    font-size: 12px;
}

.c-button--text-normal {
    font-weight: 400;
}

/* ==============================
    c-link
 ============================== */
.c-link {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .c-link:hover {
        cursor: pointer;
        text-decoration: none;
    }
}

.c-link--normal{
    color: #3300FF;
}


.c-link--small {
    font-size: 13px;
}

.c-link--weight-normal {
    font-weight: normal;
}

/* ==============================
    c-text
============================== */
.c-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.58;
}

.c-text--small {
    font-size: 13px;
}

/* ==============================
    p-cookie-policy
 ============================== */
.p-cookie-policy {
    width: 100%;
    background-color: #F5F5F5;
    box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, .15);
}
@media screen and (min-width: 766px) {
    .p-cookie-policy {
        display: flex;
        justify-content: center;
    }
}

.p-cookie-policy--animation {
    animation: SlideInUp 1.6s;
}
@keyframes SlideInUp {
    0% {
        opacity: 0;
        transform: translateY(64px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.p-cookie-policy__text {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
@media screen and (min-width: 766px) {
    .p-cookie-policy__text {
        max-width: 860px;
        padding: 20px;
    }
}

.p-cookie-policy__button {
    display: flex;
    justify-content: center;
    padding: 10px;
}
@media screen and (min-width: 766px) {
    .p-cookie-policy__button {
        align-items: center;
        max-width: 140px;
        padding: 20px;
    }
}

/* ==============================
    l-cookie-policy
 ============================== */
.l-cookie-policy {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
}
