.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;
}


.youtubeBlockResponsive16by9,.youtubeBlockResponsive4by3{height:0;position:relative}.youtubeBlockResponsive16by9 iframe,.youtubeBlockResponsive4by3 iframe{border:"none";height:100%;left:0;position:absolute;top:0;width:100%}.youtubeBlockResponsive16by9{padding-bottom:56.25%}.youtubeBlockResponsive4by3{padding-bottom:75%}.ccm-edit-mode-disabled-item.youtubeBlockResponsive16by9{padding-bottom:28.125%;padding-top:28.125%}.ccm-edit-mode-disabled-item.youtubeBlockResponsive4by3{padding-bottom:37.5%;padding-top:37.5%}



div.arealayout.flextiles .ccm-layout { display: flex;flex-direction: row; }
	
div.arealayout.flextiles .ccm-layout-column { 
float: none !important; 
vertical-align: top; 
padding: 20px 20px 20px 20px;
margin: 25px 2%;
border-radius: 0;

}

div.arealayout.flextiles .ccm-layout-column { border: 1px solid rgba(154, 191, 60, 0.85); background: rgba(154, 191, 60, 0.25); }
.whitetxt div.arealayout.flextiles .ccm-layout-column { border: 1px solid rgba(154, 191, 60, 0.85);background: rgba(154, 191, 60, 0.25);  } 

@media (max-width: 1000px) {
div.arealayout.flextiles .ccm-layout {
    flex-direction: column;display: flex; flex: 1;
	flex-wrap: wrap;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
  }
}
 
/*div.arealayout.flextiles .ccm-layout-column:before,
div.arealayout.flextiles .ccm-layout-column:after { 
position: absolute; content:''; box-sizing: border-box; z-index: 1;
display: block; transform: rotate(90deg); margin: 0; }
*/
 /*
div.arealayout.flextiles .ccm-layout-column:before {
width: 37px; height: 32px; background: #0c7e8a; left: -19px;
-webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
-moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
}
div.arealayout.flextiles .ccm-layout-column:after {
width: 35px; height: 30px; background: #fff; left: -18px;
-webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
-moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
}

div.arealayout.flextiles .ccm-layout-column:nth-child(odd):before { bottom: -1px;  }
div.arealayout.flextiles .ccm-layout-column:nth-child(odd):after { bottom: 0px;  }
div.arealayout.flextiles .ccm-layout-column:nth-child(even):before { top: 0; }
div.arealayout.flextiles .ccm-layout-column:nth-child(even):after { top: 1px; }*/

/*div.arealayout.flextiles .ccm-layout-column:after { 
content: ''; height: -webkit-fill-available;
border-left: 1px solid #0c7e8a; padding: 0; left: 20px; }

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


@media screen and (max-width: 1000px)
{
div.arealayout.flextiles .ccm-layout-column { margin: 25px auto; width: -webkit-fill-available !important; }
/*div.arealayout.flextiles .ccm-layout-column:nth-child(odd):before, 
div.arealayout.flextiles .ccm-layout-column:nth-child(even):before { top: 0; }	
div.arealayout.flextiles .ccm-layout-column:nth-child(odd):after, 
div.arealayout.flextiles .ccm-layout-column:nth-child(even):after { top: 1px; bottom: inherit;  }*/
}

@media screen and (min-width: 1000px)
{
/*div.arealayout.flextiles .ccm-layout-column:first-child { padding-left: 0; }
div.arealayout.flextiles .ccm-layout-column:last-child { padding-right: 0; }*/
div.arealayout.flextiles .ccm-layout-column:first-child { }
div.arealayout.flextiles .ccm-layout-column:first-child:before,
div.arealayout.flextiles .ccm-layout-column:first-child:after { display: none; }
}

