.pop-container {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: linear-gradient(270deg, #DC3432 0%, #EF0303 100%);
    border-radius: 5px;
    z-index: 9;
    padding: 1rem;
    width: 250px;
    transition: all ease 0.1s;
    cursor: pointer;
}

.pop-container .close {
    position: absolute;
    right: 0rem;
    top: 0.2rem;
    width: 1rem;
    height: 1rem;
    color: #fff;
    font-weight: 300;
    line-height: 10px;
    cursor: pointer;
    transition: .2s linear;
    pointer-events: bounding-box;
}

.pop-container .close:before,
.pop-container .close:after {
    transform: rotate(-45deg) translateY(-50%);
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    height: 1px;
    width: 10px;
    background-color: #fff;
    transition: all 0.25s ease-out;
}

.pop-container .close:after {
    transform: rotate(-135deg);
}

.pop-container:hover {
    background: linear-gradient(270deg, #DC3432 0%, #ac0b0b 100%);
    color: #fff;
    transition: all ease 0.1s;
}

.pop-container__title__link,
.pop-container__pretitle {
    color: #fff;
    margin-bottom: 0;
    line-height: 1;
}