@charset "utf-8";

/* MODAL */

#modal {
	margin: auto;
    width: 50%;
    height: 50vh;
    background: #fff;
    color: #111;
	box-shadow: 0px 0px 45px rgb(0 0 0 / 20%);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: none;
	overflow: hidden;
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

	#modal-title {
		width: 100%;
		background: #eee;
		display: grid;
		grid-template-columns: 1fr auto;
		position: absolute;
		top: 0;
	}

		#modal-title h1 {
			padding: 10px 15px;
			font-size: 1.5em;
			font-weight: normal;
		}

		#modal-title span {
			padding: 10px 15px;
			font-size: 2em;
			text-align: center;
			cursor: pointer;
			display: block;
			transition: 0.3s all;
		}

			#modal-title span:hover {
				background: #E74C3C;
				color: #fff;
			}

			#modal-title i {
				position: relative;
				top: 0;
			}

	#modal-body {
		margin-top: 48px;
		padding: 15px;
		font-size: 1em;
		overflow: hidden;
		line-height: 1.3;
	}

		#modal-body button {
			width: 100%;
			margin-top: 15px;
			display: block;
		}