.koto-notices-wrap {
    position: fixed;
    right: 50px;
    top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.koto-notice {
    display: flex;
    width: 292px;
    padding: 15px;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: .5s;
    opacity: 0;
}

.koto-notice.red-notice {
    border-radius: 10px;
    background: var(--Primary-Red, #E63737);
}

.koto-notice .notice-content {
    display: flex;
    gap: 10px;
}

.koto-notice .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg opacity='0.4'%3E%3Cpath d='M12 4L4 12' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 4L12 12' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}

.koto-notice.red-notice .notice-icon {
    width: 32px;
    height: 21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_3101_95792)'%3E%3Cpath d='M10.5 19.25C15.3325 19.25 19.25 15.3325 19.25 10.5C19.25 5.66751 15.3325 1.75 10.5 1.75C5.66751 1.75 1.75 5.66751 1.75 10.5C1.75 15.3325 5.66751 19.25 10.5 19.25Z' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.5 14V10.5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.5 7H10.5087' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3101_95792'%3E%3Crect width='21' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.koto-notice.red-notice .notice-text {
    padding-right: 20px;
    color: #FFF;
    /* --Text, 14px/Regular */
    font-family: Geologica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}