.modal#FAQModal {
    height: 100%;
    position: absolute;
    top: 0;
	right: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, .5);
    width: 100vw;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal#FAQModal .modal-content {
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgb(4, 21, 18);
    border-radius: 20px;
	color: white;
}

.modal#FAQModal .OK-button {
	background-color: #14cbb4;
	width: 50px;
	height: 35px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}