.notify_modal {
    visibility: hidden;
    position: fixed;
    background: rgba(255, 255, 255, 0);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    transition: all 0.3s ease;
}
.notify_modal.active {
    visibility: visible;
    background: rgba(255, 255, 255, .75);
}
.notify_modal .content_notify {
    width: 20rem;
    min-height: 10rem;
    border-radius: 1rem;
    position: absolute;
    left: 50%;
    bottom: -40rem;
    background: #015da6;
    transform: translateX(-50%) translateY(50%);
    color: white;
    padding: 2rem 3rem 3rem 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.notify_modal.active .content_notify {
    bottom: 50%;
}
.notify_modal .content_notify p {
    font-size: 0.8rem;
}
.notify_modal .content_notify p.title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.notify_modal .content_notify span.icon {
    display: block;
    width: 100%;
    height: 3.5rem;
    text-align: center;
    margin-bottom: 0.8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.notify_modal .content_notify.accept span.icon {
    background-image: url('../img/compare/valid.svg');
}
.notify_modal .content_notify.refuse span.icon {
    background-image: url('../img/compare/refuse.svg');
}
.notify_modal .content_notify span.close {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 2.7rem;
    height: 2.7rem;
    background: url('../img/compare/close.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: all 0.2s ease;
}
.notify_modal .content_notify span.close:hover {
    transform: translateX(-50%) rotate(100deg) scale(1.05);
}

.notify_modal .content_notify.refuse p.description > a {
    line-height: 2.2rem;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    text-transform: capitalize;
    padding: 0 2rem;
    color: #333;
    display: block;
    margin: 0 auto;
    background: white;
    transition: 0.3s all ease;
    cursor: pointer;
    width: max-content;
    background-color: white;
    margin-top: 2rem;
}
.privacy-policy .cart-head {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.privacy-policy .cart-head .title-text {
    margin-left: 0;
    margin-bottom: 0;
    text-align: left;
}
.content_notify a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #015da6;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
}