.modal__btn {
    cursor: pointer;
}

.modal__wrapper {
	position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    justify-content: center;
    align-items: center;
	z-index: 999;
    display: none;
}

.modal__window {
    position: relative;
    background-color: white;
    padding: 6rem 4rem;
}

.modal__heading {
	margin-bottom: 8px;
}

.modal__content {
	display: flex;
	flex-direction: column;
}

.modal__gapped {
	gap: 0;
}

.modal__centered {
	align-items: center;
	text-align: center;
}

.modal__close {
    position: absolute;
    top: 4px;
    right: 5px;
	font-size: 10px;
    cursor: pointer;
}

#modal:not(:target) {
    visibility: hidden;
    opacity: 0;
}