﻿.special_popup {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100000000;
    max-width: 420px;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 16px 38px 0px rgba(0,0,0,0.1);
    direction: rtl;
    opacity: 0;
}

.special_popup__header {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .special_popup__header .close_special__popup {
        cursor: pointer;
        width: 30px;
        height: 30px;
        background-color: #eee;
        text-align: center;
        border-radius: 50%;
        padding-top: 6px;
        float: left
    }

.special_popup__body img {
    width: 100%;
    border-radius: 4px;
}

.special_popup__footer {
    padding-top: 15px;
    padding-bottom: 15px;
}

.slide-up {
    transform: translateY(100%);
    animation: slideUp 0.5s ease-in-out 3s forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


@media(max-width: 992px) {
    .special_popup {
        max-width: calc( 100% - 20px);
    }

    .special_popup__footer .blog-slider__button {
        margin-top: 10px;
        width: 100%;
    }
}
