/*
* VER SK-TT 04.07.2025 @@ start
* VER SK TT 18.09.2025 == sync
*/
.action-popup{
    position: fixed;
    display: none;
    z-index: 1000;
    bottom: 40px;
    right: 20px;
    width: 500px;
    height: 250px;
}
.action-popup a{
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 5px 0 10px 2px #928f8f;
}
.action-popup img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.action-popup__close{
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 2;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: url("images/close.svg") no-repeat center,#CC0000;
    background-size: 20px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.action-popup__close:hover{
    transform: rotateZ(90deg);
    transition: 0.3s;
}
@media (max-width: 767px) {
    .action-popup{
        width: 340px;
        height: 170px;
    }
    .action-popup__close{
        width: 25px;
        height: 25px;
        background-size: 14px;
        left: auto;
        top: -10px;
        right: -10px;
    }
}