/* Base Styles */
.scroll {
  background: #FF8300;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  cursor: pointer;
  display: none;
  float: left;
  height: 212px;
  padding: 81px 9px;
  text-align: center;
  width: 35px;
}
.scroll .fa {
  color: #FF9F39;
}

p {
  margin: 0;
  padding: 0;
}

.eventContainer {
  width: 300px;
}
.eventContainer .event {
  background: #e9e9e9;
  box-shadow: 0 2px 4px #ddd;
  border: 1px solid #d5d5d5;
  display: inline-block;
  left: 0;
  margin: 5px 0;
  position: relative;
  vertical-align: top;
  width: 98%;
}
.eventContainer .event .eventImage {
  background: #FF8300;
  display: none;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  max-height: 100px;
  height: 50px;
  overflow: hidden;
  padding-left: .5rem;
}
.eventContainer .event .eventImage img {
  /*-webkit-filter: blur(3px);
     -moz-filter: blur(3px);
          filter: blur(3px);
  transition: filter .5s;
  -webkit-transition: -webkit-filter .5s, filter .5s;*/
  height:50px;
}
.eventContainer .event .noImage {
  padding: 1em .75em;
  background: #06799f;
}
.eventContainer .event .noImage p {
  color: #ffffff;
  font-size: 2em;
  font-weight: 300;
  text-align: left;
  margin: .25em 0;
  float: left;
}
.eventContainer .event .noImage #coShield {
  float: left;
  margin-right: .75em;
  width: 50px;
}
.eventContainer .event .eventDetails {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding: 10px 15px;
  height: 160px;
  white-space: normal;
}
.eventContainer .event .eventName {
  margin: 0;
  padding: 0;
}
.eventContainer .event .eventDate {
  border-bottom: 2px #ff8300 solid;
  font-size: .75em;
  line-height: 1em;
  padding: 0 0 5px;
}
.eventContainer .event .eventDescription {
  margin: 10px 0 15px;
}
.eventContainer .event .eventLink {
  text-align: right;
}
.eventContainer .event .eventLink a {
  color: #ff8300;
  text-decoration: none;
}
.eventContainer .event:hover {
  background: #f0f0f0;
  transition: background .5s;
  -webkit-transition: background .5s;
}
/*.eventContainer .event:hover .eventImage img {
  -webkit-filter: blur(0);
     -moz-filter: blur(0);
          filter: blur(0);
}*/
.moreLink{
  float:right;
  text-align: right;
}
@media all and (min-width: 740px) and (min-device-width: 740px), (max-device-width: 800px) and (min-width: 740px) and (orientation: landscape) {

  .fp-featuredEvents {
    margin-top: 30px;
  }
  .scroll {
    display: inline-block;
  }

  .eventContainer {
    clear: both;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
  }
  .eventContainer .event {
    margin: 0 5px 5px;
    width: 340px;
  }
  .eventContainer .event.grid-4 {
    float:none;
  }
  .eventContainer .event .eventImage {
    display: block;
  }

  .scrollable {
    float: left;
    clear: right;
    display: inline-block;
    margin-bottom: 20px;
    overflow: hidden;
    width: 93%;
    max-width: 1065px;
    white-space: nowrap;
  }
}
.leftBounce {
  -webkit-animation-name: leftBounce;
          animation-name: leftBounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

.rightBounce {
  -webkit-animation-name: rightBounce;
          animation-name: rightBounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes leftBounce {
  0% {
    left: 12%;
  }
  33% {
    left: 0px;
  }
  66% {
    left: 6%;
  }
  100% {
    left: 0px;
  }
}

@keyframes leftBounce {
  0% {
    left: 12%;
  }
  33% {
    left: 0px;
  }
  66% {
    left: 6%;
  }
  100% {
    left: 0px;
  }
}
@-webkit-keyframes rightBounce {
  0% {
    left: -142%;
  }
  33% {
    left: -140%;
  }
  66% {
    left: -16%;
  }
  100% {
    left: -140%;
  }
}
@keyframes rightBounce {
  0% {
    left: -142%;
  }
  33% {
    left: -130%;
  }
  66% {
    left: -136%;
  }
  100% {
    left: -130%;
  }
}
