.summary_popup {
    opacity: 0;
    z-index: -999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.78);
    transition: opacity 0.45s ease 0s;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    -o-display: flex;
}

.summary_popup .content {
    background-color: #FFF;
    width: 90%;
    padding: 20px;
    margin: auto;
    max-height: 90%;
    overflow: auto;
    position: relative;
}

.hide_summary {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 1);
    width: 31px;
    height: 31px;
    color: #FFF;
    text-align: center;
    padding: 3px 4px 4px 5px;
    text-transform: lowercase;
    font-weight: 800;
    z-index: 5;
}

.close_popup img {
    box-shadow: 3px 2px 4px -1px rgba(0,0,0,0.7);
    width: 30px;
    background-color: #FFF;
    border-radius: 100%;
    border: 2px solid #FFF;
}