.modal-back {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgb(14, 14, 92, 0);
    transition: background 0.2s;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.modal-back.mmodal-opened {
    background-color: rgba(14, 14, 92, 0.7);
    z-index: 900;
}

.mmodal {
    border-radius: 5px;
    position: fixed;
    z-index: -1;
    background-color: cornsilk;
    /*width: 900px;*/
    height: 90%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s;
}

.mmodal-body {
    height: 400px;
    overflow-x: scroll;
}

.mmodal-opened .mmodal {
    opacity: 1;
    z-index: 999;
}

.modal-link,
.modal-link:active,
.modal-link:hover {
    color: white;
    text-decoration: solid;
    text-transform: uppercase;
}

.modal-header {
    background-color: cornflowerblue;
    width: 100%;
}


/*
#modal-button-save {
    -moz-box-shadow: inset 0px 1px 0px 0px #bee2f9;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bee2f9;
    box-shadow: inset 0px 1px 0px 0px #bee2f9;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #63b8ee), color-stop(1, #468ccf));
    background: -moz-linear-gradient(top, #63b8ee 5%, #468ccf 100%);
    background: -webkit-linear-gradient(top, #63b8ee 5%, #468ccf 100%);
    background: -o-linear-gradient(top, #63b8ee 5%, #468ccf 100%);
    background: -ms-linear-gradient(top, #63b8ee 5%, #468ccf 100%);
    background: linear-gradient(to bottom, #63b8ee 5%, #468ccf 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#63b8ee', endColorstr='#468ccf', GradientType=0);
    background-color: #63b8ee;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #3866a3;
    display: inline-block;
    cursor: pointer;
    color: #14396a;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #7cacde;
}

#modal-button-save:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #468ccf), color-stop(1, #63b8ee));
    background: -moz-linear-gradient(top, #468ccf 5%, #63b8ee 100%);
    background: -webkit-linear-gradient(top, #468ccf 5%, #63b8ee 100%);
    background: -o-linear-gradient(top, #468ccf 5%, #63b8ee 100%);
    background: -ms-linear-gradient(top, #468ccf 5%, #63b8ee 100%);
    background: linear-gradient(to bottom, #468ccf 5%, #63b8ee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#468ccf', endColorstr='#63b8ee', GradientType=0);
    background-color: #468ccf;
}

#modal-button-save:active {
    position: relative;
    top: 1px;
}*/