/*
Theme Name: Eurozine 2019
Description: Eurozine Wordpress theme 2019.
Author: gridworks
Author URI: http://gridworks.sk/
Version: 1.0
*/

#support-promotion {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 0.4px 3.6px rgba(0, 0, 0, 0.004),
    0 1px 8.5px rgba(0, 0, 0, 0.01), 0 1.9px 15.7px rgba(0, 0, 0, 0.019),
    0 3.4px 28.2px rgba(0, 0, 0, 0.03), 0 6.3px 54.4px rgba(0, 0, 0, 0.047),
    0 15px 137px rgba(0, 0, 0, 0.07);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 400px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: var(--serif-font-family);
}
#support-promotion .ez-boxed:after, .ez-boxed:before {
    background-color: rgba(255,255,255,0.95) !important;
}
#support-promotion.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.support-promotion-close {
    position: absolute;
    top: 20px;
    right: 20px;
}
.support-promotion-close a {
    cursor: pointer;
}
.support-promotion-modal-header {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-family: var(--serif-font-family);
}
.support-promotion-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.support-promotion-header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-promotion-text {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;

}

.support-promotion-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.support-promotion-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}


.support-promotion-buttons {
    display: flex;
    margin-top: 15px;
    width: 100%;
}

.support-promotion-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: #303030;
    transition: background-color 0.3s ease;
}
.support-promotion-buttons a:hover {
    background-color: #ff3232;
}

.support-promotion-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.support-promotion-social-icons a {
    transition: .3s;
}

@media (max-width: 768px) {
    #support-promotion {
        width: 90%;
        height: auto;
    }
    .support-promotion-content{
        flex-direction: column;
    }
    .support-promotion-text {
        padding: 10px;
        margin-top: 20px;
    }
    .support-promotion-info {
        font-size: 14px;
    }
    .support-promotion-title {
        font-size: 16px;
    }
    .support-promotion-buttons a {
        height: 30px;
        font-size: 14px;
    }
    .support-promotion-social-icons {
        margin-top: 10px;
    }
}

@media screen and (max-width: 640px) {
    .hide-xs {
        display: none !important;
    }
}