
a.global-pop-up {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    width: 326px;
    height: 432px;
    -webkit-transform: translate(100%,-50%);
    transform: translate(100%,-50%);
    -webkit-transition: 275ms ease;
    transition: 275ms ease;
    background: url("/resources/img/e-book-2023.webp") center center no-repeat;
    background-size: contain;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 5px 10px 40px rgba(0, 0, 0, 0.2);
}

/*@media (max-width: 1024px) {
    a.global-pop-up {
        right: 50%;

    }
}*/

a.global-pop-up.show {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

a.global-pop-up > div.close {
    height: 14px;
    width: 14px;
    top: 17px;
    right: 17px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    cursor: pointer;
    transition: 0.3s;
}

a.global-pop-up > div.close:hover {
    transform: scale(1.3);
    transition: 0.3s;
}

a.global-pop-up > div.close:after {
    content: '';
    width: 14px;
    height: 1px;
    display: block;
    background: #dbdfea;
    position: absolute;
    transform: rotate(45deg);
    margin-top: 7px;
    border-radius: 2px;
    -webkit-transition: 275ms ease-in-out;
    -o-transition: 275ms ease-in-out;
    transition: 275ms ease-in-out;
}

a.global-pop-up > div.close:hover:after {
    transform: rotate(135deg);
    background-color: #fff;
    height: 2px;
}
a.global-pop-up > div.close:before {
    content: '';
    width: 14px;
    height: 1px;
    display: block;
    background: #dbdfea;
    position: absolute;
    transform: rotate(135deg);
    margin-top: 7px;
    border-radius: 2px;
    -webkit-transition: 275ms ease-in-out;
    -o-transition: 275ms ease-in-out;
    transition: 275ms ease-in-out;
}
a.global-pop-up > div.close:hover:before {
    transform: rotate(225deg);
    background-color: #fff;
    height: 2px;
}
