﻿.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
}

.modal-close {
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px;
    color: #444;
    background-color: #fff;
}

.is-hide {
    display: none;
}

.info {
    padding: 10px;
    height: 500px;
    width: 500px;
    background-color: white;
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}

.info-content {
    text-align: center;
    height: 400px;
    overflow: auto;
    /*border:solid 3px black;*/
}