/* Notification Popup Styles Start */

.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-popup .notification-popup-inner {
    max-width: 565px;
    margin: auto;
    text-align: center;
    color: #9F9F9F;
}

.notification-popup .close-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.notification-popup .notification-close-button {
    position: absolute;
    display: block;
    right: 10px;
    top: 10px;
    width: 42px;
    height: 42px;
    background-image: url("/design/default/icons/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    z-index: 999;
    cursor: pointer;
    pointer-events: all;
}

.notification-popup .notification-close-button:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.notification-popup .circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 101px;
    height: 101px;
    background-color: #21ACE5;
    margin-bottom: 15px;
    transition: 1s;
}

.notification-popup .notification-popup-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.notification-accept-button:disabled,
.notification-accept-button[disabled] {
    border: 1px solid #999999 !important;
    background-color: #cccccc !important;
    color: #666666 !important;
}

.popup-icon-wrapper-emitter {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 32px auto;
    width: 101px;
    height: 101px;
    border-radius: 9999px;
    background-color: #21ACE5;
}

.notification-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: #21ACE5;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.align-heart-icon {
    position: absolute;
    bottom: -6px;
    right: 8px;
}

.notification-wave1 {
    animation: notificationWave 2s linear infinite;
}

.notification-wave2 {
    animation: notificationWave 2s 0.5s linear infinite;
}

.notification-wave3 {
    animation: notificationWave 2s 1s linear infinite;
}

@keyframes notificationWave {
    from {
        opacity: 0.4;
    }
    to {
        transform: scale(3);
        opacity: 0;
    }
}

.notification-popup .circle-elem {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.notification-popup .notification-popup-inner .circle-elem-1 {
    width: 101px;
    height: 101px;
    background-color: #21ACE5;
    z-index: 999;
}

.notification-popup .notification-popup-inner .circle-elem-2 {
    width: 160px;
    height: 160px;
    background-color: #21ACE5;
    opacity: 0.2;
}

@media screen and (max-width: 850px) {
    .notification-popup .notification-popup-inner .circle-elem-1 {
        width: 80px;
        height: 80px;
    }
}

.notification-popup .notification-popup-inner .text {
    margin-top: 10px;
    line-height: 1.5em;
}

@media screen and (max-width: 850px) {
    .notification-popup .notification-popup-inner .text {
        line-height: 1.5em;
        margin-top: 25px;
        font-size: 14px;
    }
}

.notification-popup .notification-popup-inner .text .white {
    color: #ffffff;
    font-weight: 500;
    line-height: 60px;
}

.notification-popup .notification-popup-inner a {
    text-decoration: none;
    color: #21ACE5;
}

.notification-popup .notification-popup-inner .acceptornot {
    margin-top: 25px;
}

@media screen and (max-width: 850px) {
    .notification-popup .notification-popup-inner .acceptornot {
        margin-top: 22px;
    }
}

.notification-popup .notification-popup-inner .acceptornot span {
    margin: 0px 20px;
}

@media screen and (max-width: 450px) {
    .notification-popup .notification-popup-inner .acceptornot span {
        display: block;
        margin: 15px 0;
    }
}

.notification-popup button.new-btn,
.notification-popup a.new-btn {
    padding: 10px 20px;
    color: #ffffff !important;
    background-color: #21ACE5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: none;
    line-height: 1em;
    cursor: pointer;
    text-decoration: none;
}


/* Notification Styles End */