/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 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.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 1% 5%;
    border: 1px solid #888;
    width: 80%;
    position: relative;
    margin-top: 10px;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #000;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    right: 3%;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.content-modals {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.content-modal {
    margin-bottom: 1%;
    
}

.modal-button {
    background-color: transparent;
    position: relative;
    min-height: 50px;
    min-width: 150px;
    margin-bottom: 20px;
    padding: 5px 10px 5px 60px;
    line-height: 21px;
    text-align: left;
    cursor: pointer;
    border: 1px solid;
}



.modal-button::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    height: 30px;
    margin-top: -15px;
    background-position: 0;
    width: 30px;
}
