.notifications {
    position: fixed;
    top: 1%;
    right: 1%;
    max-width: 320px;
    z-index: 10;
}

.notifications__items {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.notifications__item {
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
    background-color: #fff;
    border-radius: .25rem;
    border: 1px solid #e1e1e1;
    padding: .5rem;
    margin-top: 5px;
}

.hiddenNoty {
    animation-name: hiddenNoty;
    animation-duration: 2s;
    animation-timing-function: ease;
    -webkit-animation-name: hiddenNoty;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease;
}

@-moz-keyframes hiddenNoty {
    0% {
        /* transform: translateX(0%); */
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        /* transform: translateX(100%); */
        opacity: 0
    }
}

@-webkit-keyframes hiddenNoty {
    0% {
        /* transform: translateX(0%); */
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        /* transform: translateX(100%); */
        opacity: 0
    }
}

@keyframes hiddenNoty {
    0% {
        /* transform: translateX(0%); */
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        /* transform: translateX(100%); */
        opacity: 0
    }
}

.showNoty {
    animation-name: showNoty;
    animation-duration: .5s;
    animation-timing-function: ease;
    -webkit-animation-name: showNoty;
    -webkit-animation-duration: .5s;
    -webkit-animation-timing-function: ease;
}

@-moz-keyframes showNoty {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: .5;
        /* transform: translateX(50%); */
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes showNoty {
    0% {
        transform: translateX(100%);
        opacity: 0
    }

    50% {
        /* transform: translateX(50%); */
        opacity: .5
    }

    100% {
        transform: translateXY(0%);
        opacity: 1
    }
}

@keyframes showNoty {
    0% {
        transform: translateX(100%);
        opacity: 0
    }

    50% {
        /* transform: translateX(50%); */
        opacity: .5
    }

    100% {
        transform: translateXY(0%);
        opacity: 1
    }
}

.notifications__item__img {
    max-width: 60px;
    /* margin-left: 5px; */
}

.notifications__item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.notifications__item__content {
    width: 100%;
    padding: 0 5px;
}

.notifications__item__content__header {
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.notifications__item-name {
    font-weight: bold;
}

.notifications__item-address {
    text-decoration: underline;
}

.notifications__item__content__desc {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin-bottom: 0.25rem;
}

.notifications__item__content__bottom {
    display: flex;
    align-items: center;
}

.notifications__item__time {
    font-size: 13px;
}

.notifications__item__icons {
    display: flex;
    margin-right: 0.25rem;
}

.notifications__item__icons img {
    width: 15px;
    height: 15px;
}

.notifications__item__btn {
    margin: 0 10px 0 5px;
}

.notifications__item__btn-close {
    vertical-align: inherit;
    ;
}

.notifications__item__content__product {
    display: block;
    margin-top: 0.25rem;
}





.popup {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-header {
    position: absolute;
    top: 0;
    left: 40px;
}

.popup-header img {
    width: 300px;
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin: 0 15px 0 15px;
}

.popup-content h2 {
    margin: 0;
    font-family: sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    color: #1c1e21;
}

.popup-content p {
    margin: 0;
    font-family: sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    color: #1c1e21;
}

.popup-content .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

.popup-content .success-checkmark {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    position: relative;
}

.popup-content .success-checkmark .check-icon {
    width: 36px;
    height: 36px;
    position: absolute;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-color: #22a84b;
    border-style: solid;
    border-width: 3px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.checkmark-line-one,
.checkmark-line-two {
    width: 17px;
    height: 4px;
    background-color: #22a84b;
    position: absolute;
    transform-origin: left;
}

.checkmark-line-one {
    transform: rotate(47deg);
    top: 5px;
    left: 2px;
    animation: drawCheckmarkOne 0.5s forwards;
}

.checkmark-line-two {
    transform: rotate(-48deg);
    top: 17px;
    left: 11px;
    animation: drawCheckmarkTwo 0.5s forwards;
    animation-delay: 0.5s;
    width: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drawCheckmarkOne {
    0% {
        width: 0;
    }

    100% {
        width: 17px;
    }
}

@keyframes drawCheckmarkTwo {
    0% {
        width: 0;
    }

    100% {
        width: 17px;
    }
}