.notification-container {
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.notification-box {
    position: relative;
    width: 410px;
    height: 92px;
    background-image: url("../images/popup-frame.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    animation: slide-in .5s ease-out forwards;
    display: none;
}

.notification-icon {
    position: absolute;
    left: 5px;
    top: 54%;
    transform: translateY(-50%);
}

.notification-icon img {
    width: 95px;
    object-fit: cover;
}

.notification-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 15px;
    margin-left: 115px;
    width: calc(100% - 125px);
}

.notification-title {
    margin-bottom: 5px !important;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(97.48deg, #FEDE5E -1.19%, #FFCC68 60.53%, #FDF8BE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}

.notification-text {
    font-size: 12px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    line-height: 14.63px;
}

@media only screen and (max-width: 870px) {
    .notification-container {
        top: 80px;
		right: 12px;
        gap: 16px;
    }
    .notification-box {
        width: 354px;
        height: 91px;
        background-image: url("../images/popup-frame-mb.png");
    }
    .notification-icon {
        left: 0;
    }
    .notification-icon img {
        height: auto;
    }
    .notification-content {
        width: calc(100% - 100px);
    }
}

@media only screen and (max-width: 549px) {
    .notification-container {
        position: absolute;
        top: 8px;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 450px) { 
	 .notification-box {
        width: 304px;
        height: 78px;
        background-image: url("/wp-content/uploads/2024/08/popup-bg-mb-2.png");
		background-size: contain;
    }
}

@media only screen and (max-width: 360px) {
	.notification-content {
		padding-right: 18px;
	}
	 .notification-box {
        width: 280px;
        height: 74px;
    }
	.notification-text {
		-webkit-line-clamp: 1;
	}
	.notification-icon img {
		width: 76px;
	}
}

@keyframes slide-in {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}