.easy-slider-one {
    transition-property: background-color;
    /* timing is set by php in view.php with the slideSpeed option */
}

/* -- Items -- */

.easy-slider-one .owl-item .item 
 {
    position: relative;
    overflow: hidden;
    transition: ease-in-out all .2s;
    -webkit-transform:scale(1);
    transform:scale(1);
    opacity: 0;
	margin: 0 0.25%;

}
.easy-slider-one .item.active {
    position: relative;
    -webkit-transform:scale(1);
    transform:scale(1);
    opacity: 1;
}

.owl-nav.owl-controls { margin: 0 !important; }
/* -- Image -- */

.easy-slider-one img {
    display: block;
    width: 100%;
    height: auto;    
    transition: .3s !important;
    opacity: 0.5 !important;
}
.easy-slider-one .item.active img {
    opacity: 1 !important; border-radius: 0 !important;
}
.easy-slider-one .item:hover img {
    -webkit-transform:scale(1);
    transform:scale(1);
    opacity: 1 !important;
}

/* -- Captions -- */

.easy-slider-one .info-wrap {
    position: absolute;
    top:0;bottom: 0; left: 0; right: 0;
}    
.easy-slider-one .info {
    display: table;
    width: 100%;
    height: 100%;
    padding: 10px; 
}
.easy-slider-one .info > div {
    display: table-cell;
    width: 100%;
    height: 100%;    
    vertical-align: middle;
    word-wrap: break-word;
    /*opacity: 0;*/
    /*background-color: #42bdc2;*/
/*    -webkit-transform:scale(0);
    transform:scale(0);
*/    transition:.5s;

}
.easy-slider-one .info a, 
.easy-slider-one .info p {
    line-height: 1.2;
    text-align: left;    
}
.easy-slider-one .info p {
    padding-top: 15px;
    margin: 0 15px;
    color: #fff;
    font-size: 16px;
}
.easy-slider-one .info p.title {
    font-weight: lighter;
    font-size: 30px;
}
.easy-slider-one .info p.description {
    color: rgba(256,256,256,.8);
    font-weight: normal;
}
.easy-slider-one .info p small {
    font-size: 12px;
}
.easy-slider-one .info a {
    display: inline-block;
    padding: 7px 15px;
    background-color: #fff;
    margin: 0 auto;
    font-weight: normal;
    font-size: 13px;
    border-radius: 3px;
}
.easy-slider-one .info p.link {
    margin-top: 15px;
}
.easy-slider-one .item:hover .info > div {
/*    opacity: 1;
    -webkit-transform:scale(1);
    transform:scale(1);   
*/}}



/*** lightbox ***/

div.lightbox-gal a.lightbox-gal { display: block; }

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../../../blocks/easy_image_slider/images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../../../blocks/easy_image_slider/images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../../../blocks/easy_image_slider/images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 20px;
  font-weight: bold;
  line-height: 2em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../../../blocks/easy_image_slider/images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}


/*
.countit { margin: 35px auto; counter-reset: section; }

.countit .ccm-layout-column { padding-left: 50px; }
.countit .ccm-layout-column:before,
.countit .ccm-layout-column:after { position: absolute; left: 0px; }

.countit .ccm-layout-column:before {
border: 1px solid #b88014;
padding: 7px 14px 10px 14px;
-moz-border-radius: 50px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
width: 10px;
height: 20px;
display: inline-block;
text-align: center;

counter-increment: section;
content: counters(section,""); }

.countit .ccm-layout-column:nth-child(odd):before { top: 0;  }
.countit .ccm-layout-column:nth-child(even):before { bottom: 0; }

.countit .ccm-layout-column:after { 
content: ''; height: -webkit-fill-available;
border-left: 1px solid #b88014; padding: 0; left: 20px; }

.countit .ccm-layout-column:nth-child(odd):after { top: 38px;  }
.countit .ccm-layout-column:nth-child(even):after { bottom: 38px; }

@media screen and (max-width: 1000px)
{
.countit .ccm-layout-column { margin: 45px auto; width: -webkit-fill-available !important; }
.countit .ccm-layout-column:nth-child(odd):before { top: 0;  }
.countit .ccm-layout-column:nth-child(even):before { top: 0; }	
.countit .ccm-layout-column:nth-child(odd):after { top: 38px; bottom: inherit; }
.countit .ccm-layout-column:nth-child(even):after { top: 38px; bottom: inherit;  }

}
*/


.countit { margin: 35px auto; counter-reset: section; z-index: 5; position: relative; display: block; }

.countit .ccm-layout-column { background: none; padding: 65px 0 0 0; position: relative; z-index: 2; }


.countit .ccm-layout-column:before/*,
.countit .ccm-layout-column:after*/ { position: relative; left: 0px; }


.countit .ccm-layout-column:before {
	font-size: 8rem;
    line-height: 0;
    counter-increment: section;
    content: counters(section, "") /*"."*/;
    font-weight: normal;
    z-index: -1;
    left: -25px;
    top: 0;
    position: absolute;
    line-height: 1;
    color: rgba(154, 191, 60, 1);
	opacity: 0.45;
	font-family: "microgramma-extended", sans-serif;font-weight: 700;font-style: normal; }

.whitetxt .countit .ccm-layout-column,
.whitetxt .countit .ccm-layout-column:before { border: 0;  }

/*.countit .ccm-layout-column:nth-child(odd):before { top: 0;  }
.countit .ccm-layout-column:nth-child(even):before { bottom: 0; }

.countit .ccm-layout-column:after { 
content: ''; height: -webkit-fill-available;
border-left: 1px solid #b88014; padding: 0; left: 20px; }

.countit .ccm-layout-column:nth-child(odd):after { top: 38px;  }
.countit .ccm-layout-column:nth-child(even):after { bottom: 38px; }*/


.countit .ccm-layout-column-wrapper {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@media screen and (max-width: 1000px)
{
		.countit .ccm-layout-column { 
	flex-basis: 95%;
    flex-grow: 1;
    margin: 2%;
	border: 1px solid rgba(154, 191, 60, 0.85);background: rgba(154, 191, 60, 0.25); }
	
.countit .ccm-layout-column { margin: 45px 10%; width: -webkit-fill-available !important; }
.countit .ccm-layout-column:nth-child(odd):before { top: 0;  }
.countit .ccm-layout-column:nth-child(even):before { top: 0; }	
/*.countit .ccm-layout-column:nth-child(odd):after { top: 38px; bottom: inherit; }
.countit .ccm-layout-column:nth-child(even):after { top: 38px; bottom: inherit;  }*/

}
@media screen and (max-width: 850px)
{
.countit .halfhalf-layout .half-half { width: 50% !important;  }
}
@media screen and (min-width: 1000px)
{
	.countit .ccm-layout-column { 
	flex-basis: 29%;
    flex-grow: 1;
    margin: 2%; padding: 5% 4% 3% 4%;
	border: 1px solid rgba(154, 191, 60, 0.85);background: rgba(154, 191, 60, 0.25);}
.countit .halfhalf-layout .half-half { width: 40% !important;  }
.countit .thirds-layout .thirds:nth-child(2) { margin-left: 3%; margin-right: 3%; }
}

