.koto-notify-wrapper {
    right: 0;
    top: 0;
    z-index: 99999;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    padding: 20px;
}

.koto-notify-wrapper .koto-notify {
    min-width: 280px;
    padding: 15px;
    border-radius: 12px;
    background: var(--White, #FFF);
    box-shadow: 0px 282px 79px 0px rgba(0, 0, 0, 0.00), 0px 180px 72px 0px rgba(0, 0, 0, 0.01), 0px 102px 61px 0px rgba(0, 0, 0, 0.05), 0px 45px 45px 0px rgba(0, 0, 0, 0.09), 0px 11px 25px 0px rgba(0, 0, 0, 0.10);
}

.koto-notify-wrapper .koto-notify .notify-header {
    display: flex;
    justify-content: space-between;
}

.koto-notify-wrapper .koto-notify .close-btn {
    padding: 5px;
    width: 10px;
    height: 10px;
    position: relative;
    top: -12px;
    left: 0px;
    cursor: pointer;
}

.koto-notify-wrapper .koto-notify .close-btn:before {
    content: ' ';
    width: 10px;
    height: 10px;
    display: block;
    background-image: url('/wp-content/themes/woodmart-child/assets/img/notify-close.svg');
}

.koto-notify-wrapper .koto-notify .header-text {
    color: var(--Dark-Gray, #3E4143);
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}