/* The Modal (background) */
.modal {
    align-items: center;
    color: black;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.3); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #ededed;
    border: 1px solid #888;
    margin: 10% auto;
    max-height: 50%;
    min-height: 80px;
    overflow: auto;
    padding: 20px;
    width: 50%;
}

.modal-content p {
    text-align: left;
}

.modal-content h1 {
    font-size: 25px;
}

.modal-content h2 {
    font-size: 18px;
}

/* The "close" Button */
.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close a{
    text-decoration: none;
}

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

/* Custom scrollbar in the style of Mac OS; Not supported in Firefox and IE */

/* total width */
div::-webkit-scrollbar {
    background-color: #fff;
    width: 6px;
}

/* background of the scrollbar except button or resizer */
div::-webkit-scrollbar-track {
    background-color: #fff;
}

/* scrollbar itself */
div::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 16px;
    border: 0px solid rgb(0, 255, 186);
}

/* set button(top and bottom of the scrollbar) */
div::-webkit-scrollbar-button {
    display:none;
}
