
.entry {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.9);
    -webkit-transition: .75s;
    -o-transition: .75s;
    transition: .75s;
}

.entry__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.entry__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
}

.entry__image {
    -ms-flex-preferred-size: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
    margin-right: 10px;
}

.entry__image img {
    display: block;
    width: 100%;
}

.entry__text {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px;
    background-color: #c98568;
}

.entry__text--full {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.entry__textinner * {
    color: #fff;
}

.entry__btnclose {
    display: inline-block;
    border: 1px solid #fff;
    margin-top: 20px;
    padding: 14px 15px 10px 15px;
}

.entry__btnclose:hover {
    border: 1px solid #fae5db;
    background-color: #fae5db;
    color: #000;
}

.entry__btnclose--right {
    float: right;
}

@media(max-width:922px) {
    .entry__content {
        display: block;
    }
    .entry__image {
        display: none;
    }
}

@media(max-width:640px) {
    .entry__content {
        display: block;
        height: 100%;
        overflow-y: scroll;
    }
    .entry__text {
        padding: 20px;
    }
    .entry__text * {
        font-size: 12px;
    }
}