/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    margin-bottom: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    -webkit-animation-name: fadeIn;
    /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.modal-content {
    background-color: #fefefe;
    height: fit-content;
    width: fit-content;
    overflow: auto;
}

.modal-content {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: calc(100% - 100px);
    max-width: calc(100% - 100px);
    position: fixed;
    right: 0;
    top: 0;
    overflow: auto;
}

/*
.modal-content {
    position: fixed;
    margin: auto;
    background-color: #fefefe;
    transform: translate(0%, 50%);
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

/* Modal Content */
/*
.modal-content {
    position: fixed;
    bottom: 0;
    margin-bottom: 0;
    background-color: #fefefe;
    width: 100%;
}
*/

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
    width: auto;
}

.modal-body {
    padding: 2px 16px;
    margin-bottom: 0;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-shown {
    overflow: hidden;
    padding-right: 17px;
}

/* Add Animation */
@-webkit-keyframes slideIn {
    from {
        transform: translate(0%, 0%);
        opacity: 0
    }

    to {
        transform: translate(0%, 50%);
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        transform: translate(0%, 0%);
        opacity: 0
    }

    to {
        transform: translate(0%, 50%);
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}