/*####################################################
##													##
## IRIKOPHOTO										##
## 													##
## MODAL.CSS										##
## 													##
## 													##
## Estilo CSS para el modal							##
## 													##
##													##
##													##
####################################################*/

@charset "utf-8";

#modal {
	margin: auto;
    width: 50%;
    height: 50vh;
    background: #fff;
    color: #111;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
	-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: 12px;
			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-content {
		margin: 0;
		padding: 65px 15px 15px;
		background: #f8f8f8;
		font-size: 1.2em;
		overflow: hidden;
	}

		#modal-content > p {
			margin: 0;
			font-size: 18px !important;
			line-height: 1.3em;
		}

		#modal-content .grid {
			grid-template-columns: 1fr 1fr;
		}

		#modal-content button {
			width: 100%;
			margin-top: 15px;
			display: block;
		}