/**
* CPG Dragonfly CMS
* Copyright (c) 2019-2020 by Slapdog AKA bulldog, tgesf.com
* This ( style_mobile.css ) file loads from the  header_hooks.php (located in your root)
^ This css loads for all themes, their by is common
* This file loads before Your Theme style.css
* (so you could overide this css by putting css into Your Theme style.css file)
*/


/*ADMIN CONTAINER STYLES*/
.admincontainer {
	width: 100%;
	margin: 30px auto;
        margin-top: 5px;
        margin-bottom: 5px;
	overflow: hidden;
/*	border: 1px solid #069; */
}

/*ADMIN GALLERY STYLES*/
.admingalleryItem {
	width:100px;
	height:88px;
	overflow: hidden;
        color: #797478;

/*	font: 10px/1.5 Verdana, Helvetica, sans-serif; */
/*	margin:  2% 2% 2% 2%;  */
        margin-top: 2%;
        margin-bottom: 1%;
        margin-right: 1%;
        margin-left: 1%;
        float: left;
	text-align: center;
	border: 1px solid #069;
	-webkit-transition: color 0.5s ease;
}
.admingalleryItem p {
  /* white-space: nowrap; */
  margin:0;
  padding:0;
  margin-right: 1px;
  margin-left: 1px;
  font-size: 90%;
/*	text-transform: uppercase; */
/*	line-height: 2;  */
}

.galleryItem:hover {
	color: #000;
}
.admingalleryItem img {
	max-width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
/* ADMIN MEDIA QUERIES*/
@media only screen and (max-width : 940px),
only screen and (max-device-width : 940px){
	.admingalleryItem {width: 21%;}
}
@media only screen and (max-width : 720px),
only screen and (max-device-width : 720px){
	.admingalleryItem {width: 29.33333%;}
	.header h1 {font-size: 40px;}
}
@media only screen and (max-width : 530px),
only screen and (max-device-width : 530px){
	.admingalleryItem {width: 46%;}
	.header h1 {font-size: 28px;}
}
@media only screen and (max-width : 320px),
only screen and (max-device-width : 320px){
	.galleryItem {width: 96%;}
	.galleryItem img {width: 96%;}
	.galleryItem h3 {font-size: 18px;}
	.galleryItem p, .header p {font-size: 18px;}
	.header h1 {font-size: 70px;}
}
/*END ADMIN CONTAINER STYLES */

