/* TOS Banner Notification */
.c-tos-banner {
    background-color: #fff;
    padding: 8px 16px;
}

.c-tos-banner__body,
.c-tos-banner__body * {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

.c-tos-banner__done {
    cursor: pointer;
    order: 1;
    border: 1px solid #676767;
    border-radius: 100px;
    padding : 8px 24px;
}

.c-tos-banner__done > div {
    color: #676767;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

.c-tos-banner__link {
    text-decoration: underline;
    color: #691F74;
}

.c-tos-banner__wrapper {
    width: fit-content;
    max-width: 1300px;
    padding: 8px 16px;
    position: relative;
    background: linear-gradient(0deg, rgba(242, 153, 74, 0.05), rgba(242, 153, 74, 0.05)), #FFFFFF;
    border: 1px solid #F2994A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin: auto;
    gap: 32px;
}

@media only screen and (max-width: 600px) {
    /* TOS Banner Notification */
    .c-tos-banner__wrapper {
        padding: 16px;
        gap: 16px;
    }
    
    .c-tos-banner__body,
    .c-tos-banner__body * {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
    }
}