.dispatch_photos_grid {
	box-sizing: border-box;
	overflow: auto;
	background-color: rgb(183, 183, 183);
	padding: 10px;
	border-radius: 10px
}
.dispatch_photos_grid_frame {
	display: inline-block;
	width: 25%;
	padding-bottom: 25%;
	margin-bottom: -4px;
	position: relative;
	z-index: 1
}
.dispatch_photos_grid_photo {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	background-color: white;
	border-radius: 10px;
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
	border: 2px solid white;
	z-index: 2;
}
.img_ctl,
.img_ctl:visited,
.img_ctl:hover {
	position: absolute;
	z-index: 3;
	display: block;
	background-color: orangered;
	color: white;
	padding: 5px;
	border-radius: 3px;
	cursor: pointer;
	bottom: 20px;
	text-transform: uppercase;
	text-decoration: none
}
.rotate_image {
	left: 20px;
}
.delete_image,
.view_image {
	right: 20px;
}
.dispatch_photo {
	width: 75%;
	height: auto;
	border-radius: 10px
}
.view_photo_frame {
	margin: auto;
	display: block;
	width: 75%;
	padding-bottom: 75%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 1024px) {
	.dispatch_photos_grid_frame {
		width: 50%;
		padding-bottom: 50%;
	}
	.dispatch_photo {
		width: 100%;
	}
	.view_photo_frame {
		width: 100%;
		padding-bottom: 100%;
	}
}