	/* *** modal *** */
	.modal {
        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: auto; /* enable scroll if needed */
        /*background-color: rgba(0,0,0,0.4);  black w/ opacity */
    }

    .modal-content {
        background-color: rgba(0, 141, 85, 0.9); /*#fefefe; */
		color: #fff;
        margin: 15% auto; /* 15% from the top and centered */
        padding: 60px 20px 20px 20px;
        border: 1px solid #888;
        width: 80%; /* width of modal */
		position:absolute;
		right: 10px;
		top: calc(100% - 650px); /*07.09.2024*/
    }

    .close-button {
        color: #fff; /*#aaa*/
		position:absolute;
		right:18px;
		top:18px;
        font-size: 18px;
        font-weight: bold;
    }

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
	/* *** /modal *** */