label{
  text-transform: capitalize;
  /*font-family: verdana;*/
}
a{
  text-decoration: none!important;
}
.content-header > .breadcrumb {
  background: transparent none repeat scroll 0 0;
  border-radius: 2px;
  float: left;
  font-size: 12px;
  left: 10px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 7px 5px;
  position: absolute;
  top: 5px;
}
.alert_area {
  float: right;
}
.content-header {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 10px 14px;
  position: relative;
  min-height: 45px;
}
.custom_alert {
  margin: 0;
  padding: 5px 25px 5px 5px;
  border-radius: 0;
}
.custom_alert h4{
	display: inline;
	padding: 0;
	margin: 0;
	font-size: 15px;
	margin-right: 10px;
}
.custom_alert .icon{
	margin: 0;
}
.custom_alert p{
  display: inline-block;
}
.custom_alert .close i{
	color: #fff;
}
.c-red{
	color: #f56954;
}
.error_msg > p {
  color: red;
  padding: 5px 0 0;
}
.u_info{
  border: 1px solid #ddd;
  padding: 9px 5px;
}
.error > p {
  color: red;
  font-family: verdana;
}
.select2-selection.select2-selection--single {
  height: 33px;
}
.schedule_area{
  margin-top: 3px;
  display: none;
}

.schedule_area.check_active {
  display: block !important;
}
.left_form{
  margin-right: 20px;
  display: inline-block;
}
.finish {
  border: 1px solid #ddd;
  margin: 10px 0 18px;
  padding: 6px;
  text-align: center;
}

.alert .close {
  color: #fff;
  opacity: .8;
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: #4dd093 none repeat scroll 0 0;
}

.imageuploadify {
    border: 5px dashed #ddd;
    padding: 0px;
    width: 100%;
    text-align: left;
    max-width: 100%;
}

.imageuploadify .imageuploadify-images-list span.imageuploadify-message {
    border: none;
}
.drag_drop_text {
    font-size: 31px;
    padding: 10px;
}

.drag_drop_text i {
    display: block;
}

.uploadify_upload_btn {
    padding: 20px 0;
}
.imageuploadify .imageuploadify-images-list {
    display: inline-block;
    text-align: left;
}
.imageuploadify-images-list {
    margin-top: 10px;
}
.imageuploadify_btn_area{
  text-align: center;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container img{
  width: 100%;
  height: 100%;
}

.imageuploadify-containers img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.imageuploadify-containers{
  position: relative;
}

.imageuploadify-containers button {
    position: absolute;
    top: 10;
    left: auto;
    right: 10px;
    font-size: 12px;
    padding: 0 3px;
}
.imageuploadify-containers {
    position: relative;
    padding: 0 7px;
    height: 237px;
    margin-top: 0;
    margin-top: 10px;
}
.imageuploadify-details{
  display: none;
}
.imageuploadify-images-list {
  width: 100%;
}


.post_btn {
  margin-top: 20px;
}
.custom_btn {
  padding: 13px 35px;
  font-size: 15px;
  font-weight: bold;
}
.img_progress{
  width: 50%;
  margin-left: 9px;
  margin-top: 20px;
}

.single_image img {
    width: 100%;
    height: 100%;

}
.single_image{
  position: relative;
  
}

.img_delete {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  border: 1px solid #fff;
  height: 35px;
  width: 35px;
  text-align: center;
  border-radius: 100%;
  line-height: 32px;
  font-size: 23px;
  text-shadow: 0 0 5px #000;
  opacity: 0;
  transition: .5s;
}
.img_delete:hover{
  color: #ddd;
}
.single_image:hover .img_delete {
  opacity: 1;
  transition: .5s;
}

.image_area {
  overflow: hidden;
  clear: both;
  margin-top: 50px;
}

.grid_select_area {
  margin-bottom: 20px;
}


.spinner{
  position: relative;
}
@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 5px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite;
  z-index: 9;
}

.spinner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  opacity: .8;
}

/*grid start*/
/**
  ** show image 5in a row
**/
  .grid_5 {
    column-count: 1;
    column-gap: 8px;
  }

  @media(min-width: 30em) {
    .grid_5 {
      column-count: 1;
      column-gap: 8px;
    }
  }

  @media(min-width: 40em) {
    .grid_5 {
      column-count: 2;
      column-gap: 8px;
    }
  }

  @media(min-width: 60em) {
    .grid_5 {
      column-count: 2;
      column-gap: 8px;
    }
  }

  @media(min-width: 75em) {
    .grid_5 {
      column-count: 5;
      column-gap: 8px;
    }
  }



/**
  ** show image 4 in a row
**/
  .grid_4 {
    column-count: 2;
    column-gap: 8px;
  }

  @media(min-width: 30em) {
    .grid_4 {
      column-count: 2;
      column-gap: 8px;
    }
  }

  @media(min-width: 40em) {
    .grid_4 {
      column-count: 2;
      column-gap: 8px;
    }
  }

  @media(min-width: 60em) {
    .grid_4 {
      column-count: 3;
      column-gap: 8px;
    }
  }

  @media(min-width: 75em) {
    .grid_4 {
      column-count: 4;
      column-gap: 15px;
    }
  }


/**
  ** show image 3 in a row
**/

  .grid_3 {
    column-count: 1;
    column-gap: 12px;
  }

  @media(min-width: 30em) {
    .grid_3 {
      column-count: 1;
      column-gap: 12px;
    }
  }

  @media(min-width: 40em) {
    .grid_3 {
      column-count: 2;
      column-gap: 12px;
    }
  }

  @media(min-width: 60em) {
    .grid_3 {
      column-count: 2;
      column-gap: 12px;
    }
  }

  @media(min-width: 75em) {
    .grid_3 {
      column-count: 3;
      column-gap: 15px;
    }
  }


/**
  ** show image 2 in a row
**/
 .grid_2 {
    column-count: 1;
    column-gap: 12px;
  }

  @media(min-width: 30em) {
    .grid_2 {
      column-count: 2;
      column-gap: 12px;
    }
  }

  @media(min-width: 40em) {
    .grid_2 {
      column-count: 2;
      column-gap: 12px;
    }
  }

  @media(min-width: 60em) {
    .grid_2 {
      column-count: 2;
      column-gap: 12px;
    }
  }

  @media(min-width: 75em) {
    .grid_2 {
      column-count: 2;
      column-gap: 12px;
    }
  }


  


  .item {
    background-color: none;
    display: inline-block;
    margin: 0 0 10px 0;
    width: 100%;
    cursor: pointer;
  }
/*grid start*/

.modalDetails {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.modalDetails .form-group {
    background: #eee;
    padding: 5px 11px;
    margin: 2px;
}
.jsoncontent span{
  display: block;
}
.siteDetails {
    color: #fff;
}

.siteDetails > div {
    margin-bottom: 21px;
    margin-left: 18px;
}
  .filterContent {
    display: flex;
    align-items: center;
}

.filterContent .form-group {
    margin: 5px;
}
.p-0{
  padding: 0;
}
.filterArea {
    width: 100%;
}
.filterArea {padding: 0 10px 11px 10px;}

@media only screen and (max-width: 600px) {
  .filterContent {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      flex-direction: row;
      width: 100%;
      justify-content: center;
  }
  .filterContent .form-group {
      margin: 5px;
      width: 46%;
  }
  .submitBtn{
    display: block;
    width: 100%;
  }
}