	.modal-container{
		position: fixed;
		width: 100vw;
		height: 100vh;
		background: rgba(0,0,0,.7);
		overflow-y:auto;
		-webkit-overflow-scrolling: touch;
		overflow-x:hidden;
		z-index:9999;
	}
	.modal-container__item{
		width: 100vw;
		padding: 10px;
		height: 100vh;
		display: table-cell !important;
		vertical-align: middle;
		text-align: center;
	}
	.modal{
		display: inline-block;
		text-align: left;
	}
	.modal__thumb{
		display: inline-block;
		border-radius: 8px;
		overflow: hidden;
		position: relative;
	}
	.modal img{
		vertical-align: top;
		border-radius: 8px;
		max-width: 100%;
	}
	.modal__title{
		position: absolute;
		width: 100%;
		bottom: -5px;
		left: 0;
		right: 0;
		border-radius: 0 0 8px 8px;
		font-size: 32px;
		color: #fff;
		font-family: Arial,sans-serif;
		font-weight: bold;
		line-height: 42px;
		padding: 25px;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 21%, rgba(0,0,0,0.09) 31%, rgba(0,0,0,0.17) 43%, rgba(0,0,0,0.25) 51%, rgba(0,0,0,0.4) 64%, rgba(0,0,0,0.85) 96%, rgba(0,0,0,0.77) 97%, rgba(0,0,0,0.08) 98%, rgba(0,0,0,0) 99%, rgba(0,0,0,0) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.04) 21%,rgba(0,0,0,0.09) 31%,rgba(0,0,0,0.17) 43%,rgba(0,0,0,0.25) 51%,rgba(0,0,0,0.4) 64%,rgba(0,0,0,0.85) 96%,rgba(0,0,0,0.77) 97%,rgba(0,0,0,0.08) 98%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.04) 21%,rgba(0,0,0,0.09) 31%,rgba(0,0,0,0.17) 43%,rgba(0,0,0,0.25) 51%,rgba(0,0,0,0.4) 64%,rgba(0,0,0,0.85) 96%,rgba(0,0,0,0.77) 97%,rgba(0,0,0,0.08) 98%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
	}
	@media (max-width: 425px){
		.modal__title{
			font-size: 20px;
			line-height: 28px;
		}
	}
	.modal__bottom{
		text-align: center;
		font-size: 13px;
		color: #e5e5e5;
		font-family: arial, sans-serif;
		margin-top: 10px;
	}
	.modal__link{
		display: none;
	}
	.modal__link a{
		font-size: 13px;
		color: #e5e5e5;
		text-decoration: none;
		padding-bottom: 2px;
		border-bottom: 1px dotted;
	}
	.modal__link a:hover{
		border-bottom: 1px dotted transparent;
	}