/* Global Mobile Breakpoints */
/* Global Colors -- These are used in DB Mega Menu so am saving here so that menu doesn't throw errors */
/* Site Specific Colors */
/*dkgreen*/
/*mdgreen*/
/*graygreen*/
/* mintgreen */
/*dkgray */
/* ltgray */
/*dkpurple*/
/*lime*/
/*Ferries Colors */
/* Font Size Bases */
/* B (18px)	68.66px */
/* A (16px)	61.04px */
/* B (18px)	54.93px */
/* A (16px)	48.83px */
/* B (18px)	43.95px */
/* A (16px)	39.06px */
/* B (18px)	35.16px */
/* A (16px)	31.25px */
/* B (18px)	28.13px */
/* A (16px)	25.00px */
/* B (18px)	22.50px */
/* A (16px)	20.00px */
/* B (18px)	18.00px */
/* A (16px)	16.00px */
/* B (18px)	14.40px */
/* A (16px)	12.80px */
/* B (18px)	11.52px */
/* A (16px)	10.00px */
/* B (18px)	9.22px */
/* A (16px)	8.19px */
/* B (18px)	7.37px */
/* A (16px)	6.55px */
/* B (18px)	5.90px */
/* A (16px)	5.24px */
/* B (18px)	4.72px */
/* A (16px)	4.19px */
/* Mixins for reusable styles */
/****** To use these, call the element within the less stylesheet like this:

.parentElement {
  .angled-element();
  /* Add others styles as usual 
  background-color: #000;
}

******/
/* Angled elements */
.angled-element {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.angled-element:after {
  position: absolute;
  z-index: -1;
  content: "";
  right: -10%;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  background-color: inherit;
}
.angled-element:before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  background-color: inherit;
}
/* Bordered Boxes */
.bordered-box {
  border: 1px solid #D2D3D5;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 30px;
}
/* Featured Links with FA chevrons */
.featured-link-light:before {
  content: "\f138";
  font-family: 'Font Awesome 5 Pro';
  color: #99CABF;
  font-weight: 900;
  padding-right: 7px;
}
.featured-link:before {
  content: "\f138";
  font-family: 'Font Awesome 5 Pro';
  color: #97d700;
  font-weight: 900;
  padding-right: 7px;
}
.featured-link-ferries:before {
  content: "\f138";
  font-family: 'Font Awesome 5 Pro';
  color: #00AEC7;
  font-weight: 900;
  padding-right: 7px;
}
/* News Tags Styles */
.views-field-field-news-tags {
  margin-bottom: 15px;
}
.views-field-field-news-tags ul {
  list-style-type: none;
  padding-left: 13px;
}
.views-field-field-news-tags ul li {
  width: fit-content;
  background-color: #C7DFDA;
  color: #fff;
  padding: 3px 10px;
  border-radius: 28px;
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 10px;
}
.views-field-field-news-tags ul li a {
  color: #fff !important;
}
.view-filter-tags {
  margin-bottom: 15px;
}
.view-filter-tags ul {
  list-style-type: none;
  padding-left: 0;
}
.view-filter-tags ul li {
  width: fit-content;
  background-color: #99CABF;
  color: #1D252D;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 7px;
}
.tags {
  width: fit-content;
  background-color: #C7DFDA;
  color: #000;
  padding: 3px 10px;
  border-radius: 8px;
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 10px;
}
div#hidden-filter-wrapper {
  text-align: center;
  margin-bottom: 8px;
}
div#hidden-filter-wrapper .btn {
  position: relative;
  display: inline-block;
  z-index: 1;
  background-color: #007B5F;
  color: #fff;
  width: 50%;
  height: 50px;
  border: none;
  font-size: 18px;
  font-weight: 500;
}
div#hidden-filter-wrapper .btn:after {
  position: absolute;
  z-index: -1;
  content: "";
  right: -10%;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  background-color: inherit;
}
div#hidden-filter-wrapper .btn:before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  background-color: inherit;
}
@media screen and (max-width: 991px) {
  div.filter-control.closed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms;
  }
}
@media screen and (max-width: 991px) {
  div.filter-control.opened {
    max-height: 100%;
    transition: max-height 300ms;
  }
}
body.path-frontpage #hidden-filter-wrapper {
  display: none;
}
