.pop-up-container {
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    top: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 100012;
    display: none;
}
.pop-up-container .pop-up-bg {
    opacity: 0.87;
    background: #1e1e1e;
    width: 100%;
    height: 100%;
    display: none;
}
.pop-up-container .pop-up-inner {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.pop-up-container .pop-up-inner button {
    position: absolute;
    right: 20px;
    top: 20px;
    border: 0;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    outline: none;
}
.pop-up-container .pop-up-inner button svg {
    width: 30px;
    height: 30px;
    display: block;
    transition: 0.3s;
}
.pop-up-container .pop-up-inner button:hover svg {
    fill: #C3362F;
}
.pop-up-container .pop-up-inner img.pop-up-wide{
    display: none;
    align-items: center;
    width: 700px;
    height: 480px;
}
.pop-up-container .pop-up-inner img.pop-up-narrow{
    display: none;
    align-items: center;
    width: 280px;
    height: 460px;
}
.pop-up-container .pop-up-inner a {
    /*text-decoration: none;*/
    margin: 20px auto;
    /*display: block;*/
    /*color: #fff;*/
    /*background: #23a633;*/
    /*padding: 8px 20px;*/
    /*border-radius: 30px;*/
    /*transition: 0.3s;*/

    color: #fff;
    font-size: 1.3rem;
    padding: 10px 30px 13px 30px;
    background: #39c439;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    display: table;
    position: relative;
    z-index: 10;
}
.pop-up-container .pop-up-inner a:hover {
    background: #eee615;
    color: #39c439;
}
