div[data-axi="modal"] {
	display: none;
	position: relative;
	margin-top:10vh;
	width: 1200px;
	max-width: 80vw;
	height: fit-content;
	max-height: 80vh;
	box-sizing: border-box;
	background-color: var(--body-background-color);
	padding: 50px;
    box-shadow: 0 0px 3px 0px #828282;
	transition: background 0.8s;
	border-radius: calc(var(--border-radius) * 2);
}

button[data-axi="close_modal"] {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 21px;
    color: #a9a9a9;
    cursor: pointer;
    background: white;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: 1px solid #c9c9c9;
    display: flex;
    align-items: center;
    justify-content: center;
}

button[data-axi="close_modal"]:hover {
    background: rgb(216, 216, 216);
}

button[data-axi="close_modal"] i {
    margin:0;
}

.modal_header{
	font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 30px;
	text-align: left;
}
.modal_content{
    overflow-y: scroll;
    max-height: calc(80vh - 120px);
    overflow-x: hidden;
    padding: 5px 10px;
    box-sizing: border-box;
}
.modal_background,
.confirm_background {
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgb(35 35 35 / 27%);
	transition: background 0.8s;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.confirm_background {
	z-index: 10000000;
}