<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --green: #00a94f;
    --grey: #EAEAEA;
    --grey2: #666;
    --red: #EE0000.
}

body.lock {
    overflow: hidden;
}

.wrap-noti-content {
    position: fixed;
    top: 48px;
    /* right: 3px; */
    right: 0;
    width: 100%;
    padding: 15px 10px;
    display: none;
}

.wrap-noti-content.active {
    display: block;
    z-index: 2006;
}

.wrap-noti-content.active::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: calc(100vh);
}

.noti-content {
    background: #FFF;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px 10px 0;
    position: relative;
    height: 100%;
    position: relative;
    z-index: 9;
}

.noti-content::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFF;
    top: -4px;
    right: 13px;
    transform: rotate(45deg);
}

.tab-noti {
    display: flex;
    border-bottom: 1px solid var(--grey);
}

.tab-noti-list {
    width: 50%;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.tab-noti-list &gt; div  {
    display: inline-block;
    padding: 11px 0;
    border-bottom: 5px solid transparent;
    position: relative;
}

.tab-noti-list:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 35px;
    background-color: var(--grey);
}

.tab-noti-list i {
    font-size: 18px;
    vertical-align: middle;
    color: #999;
}

.tab-noti span {
    color: #999;
    vertical-align: middle;
}

.noti-inside {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--red);
}

.tab-noti-list.active i {
    color: var(--green);
}

.tab-noti-list.active span {
    color: var(--green);
    font-weight: 600;
}

.tab-noti-list.active &gt; div {
    border-bottom: 5px solid var(--green);
}

.tab-content-noti  {
    display: none;
    padding-top: 20px;
    overflow-y: auto;
    text-align: center;
    width: 100%;
    float: none;
    padding: 20px 0 0;
    margin-bottom: 0;
}

.tab-content-noti.new {
    text-align: left;
    padding-top: 0;
    padding-bottom: 10px;
}

.tab-content-noti.active  {
    display: block;
}

.tab-promotion-img {
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    display: inline-block;
}

.tab-promotion-img img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.tab-promotion-date {
    font-size: 12px;
    color: var(--grey2);
    padding: 16px 0 5px;
    text-align: left;
}

.tab-promotion-head {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--green);
    margin-bottom: 5px;
    text-align: left;
}

.tab-promotion-detail {
    color: var(--grey2);
    line-height: 24px;
    padding-bottom: 50px;
    text-align: left;
}

.tab-promotion-btn {
    margin-bottom: 20px;
}

.btn-more {
    background: var(--green);
    border-radius: 10px;
    width: 100%;
    color: #FFF;
    font-weight: 600;
    line-height: 46px;
    display: block;
    text-align: center;
}

.btn-more:visited {
    color: #FFF;
}

.btn-more:hover {
    color: #FFF;
}

.box-tab-new {
    padding: 15px 10px;
    border-bottom: 1px solid var(--grey);
}

.box-tab-new:last-child {
    border-bottom: unset;
}

.tab-new-head {
    font-size: 18px;
    color: var(--green);
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 5px;
    display: block;
}

.tab-new-head:hover {
    color: var(--green);
    text-decoration: underline;
}

.tab-new-detail {
    display: flex;
}

.tab-new-img {
    margin-right: 10px;
}

.tab-new-img img {
    width: 120px;
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.tab-new-location {
    color: #666;
    font-size: 12px;
    line-height: 19px;
}

.tab-new-location i,
.tab-new-location span {
    vertical-align: middle;
    display: inline-block;
    margin-right: 3px;
}

.tab-new-type {
    font-weight: 600;
    font-size: 11px;
    line-height: 22px;
    color: var(--grey2);
}

.tab-new-price {
    color: var(--red);
}

.tab-new-price strong {
    font-size: 18px;
    margin-right: 5px;
}

@media screen and (min-width: 375px) {
    .noti-content {
        padding: 15px 20px 0;
    }
}

@media screen and (min-width: 390px) {
    .noti-content::before {
        right: 17px;
    }
}

@media screen and (min-width: 414px) {
    .noti-content::before {
        right: 19px;
    }
}

@media screen and (min-width: 768px) {
    body.lock {
        overflow: auto;
    }
    
    .noti-content::before {
        right: 21px;
    }

    .noti-content {
        padding: 15px 25px 0;
    }

    .wrap-noti-content.active::after {
        display: none;
    }

    .wrap-noti-content {
        width: 390px;
    }
}</pre></body></html>