.modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }

        .modal-content {
            display: flex;
            flex-direction: column;
            position: relative;
            top:30%;
            background-color: #fefefe;
            /*margin: 50% auto;*/
            margin:0 auto;
            /*padding: 0 20px 20px 20px;*/
            border: 1px solid #888;
            border-radius: 20px;
            width: 90%;
            animation: topDown 0.4s;
        }
        .modal-body-context{
            margin-top: 5px;
            display: block;
        }
        @keyframes topDown {
            from {top: -300px; opacity: 0}
            to {top: 0; opacity: 1}
        }
        .modal-header {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 40px;
            position: relative;
        }
        .modal-header-title{
            font-size: 18px;
            margin: 0 auto;
            width: 50%;
            text-align: center;
        }
        .modal-body{
            font-size: 13px;
            color: gray;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 2px;
            top: -1px;
        }
        .close:hover {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .Btn{
            margin: 0 auto;
            display: block;
            margin-top: 20px;
        }
