/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("fonts/lightcase.eot?55356177");
  src: url("fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("fonts/lightcase.woff?55356177") format("woff"), url("fonts/lightcase.ttf?55356177") format("truetype"), url("fonts/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e802';
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }

  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}
/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}

@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa;
  }
}
@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333;
  }
}
/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}
/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden;
}

/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}
/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}
/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}

@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important;
  }
}
/*!
 * FullCalendar v3.9.0
 * Docs & License: https://fullcalendar.io/
 * (c) 2018 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e6e6));
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
}

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */
}

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: .25;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25;
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: .3;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
  "Arial", sans-serif
  "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "\2039";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "\AB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "\BB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "\D7";
  font-size: 200%;
  top: 6%;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
  background-image: none;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal;
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome bold */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
  /* see through to fc-bg */
}

.fc.fc-bootstrap3 a {
  text-decoration: none;
}

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

.fc.fc-bootstrap4 a {
  text-decoration: none;
}

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0;
}

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff;
}

.fc-bootstrap4 .fc-popover.card {
  position: absolute;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */
.fc-toolbar h2 {
  margin: 0;
}

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
  text-align: center;
}

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\A0-\A0";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}

* {
  margin: 0;
  padding: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #535353;
  font-family: "Comfortaa", cursive;
  font-size: 15px;
  font-weight: 300;
  -webkit-hyphens: manual;
      -ms-hyphens: manual;
          hyphens: manual;
  line-height: 22px;
  /* disable text resize in landscape. e.g. on iphone */
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

a {
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  text-decoration: none;
  color: #5aaf48;
}
a:hover {
  color: #ff6600;
}

p {
  margin-bottom: 22px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yanone Kaffeesatz", sans-serif;
  color: #535353;
  line-height: 1.1;
}

h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-weight: 400;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 22px;
  margin-top: 0;
}
h1 span {
  display: block;
  font-size: 1.0666666667rem;
}
.homepage-wrapper h1 {
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h1 span {
    font-size: 1.3333333333rem;
  }
  .homepage-wrapper h1 {
    padding-right: 36px;
    font-size: 2.6666666667rem;
    margin-top: 37px;
  }
  .homepage-wrapper h1 span {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .homepage-wrapper h1 {
    text-align: right;
  }
}
@media (min-width: 1340px) {
  .homepage-wrapper h1 {
    font-size: 3.3333333333rem;
  }
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 1.6666666667rem;
  }
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.6666666667rem;
  }
}

h4 {
  font-size: 1.0666666667rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  font-size: 1rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h5 {
    font-size: 1.1333333333rem;
  }
}

.main-content, .homepage-wrapper {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 50px;
}

.homepage-wrapper {
  background: #5aaf48;
  color: #fff;
  padding: 40px 0;
  margin-bottom: 0;
}
.homepage-wrapper h1, .homepage-wrapper h2, .homepage-wrapper h3, .homepage-wrapper h4, .homepage-wrapper h5, .homepage-wrapper h6 {
  color: #fff;
}

.main-content, .homepage-wrapper {
  line-height: 1.4666666667rem;
}
.main-content ul, .homepage-wrapper ul {
  list-style-type: none;
}
.main-content ul li, .homepage-wrapper ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}
.main-content ul li::before, .homepage-wrapper ul li::before {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
}

.img-left {
  float: left;
  margin-right: 15px;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 749px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 20px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive table {
    border: 0;
    margin-bottom: 0;
  }
  .table-responsive table > thead > tr > th:first-child,
  .table-responsive table > thead > tr > td:first-child,
  .table-responsive table > tbody > tr > th:first-child,
  .table-responsive table > tbody > tr > td:first-child,
  .table-responsive table > tfoot > tr > th:first-child,
  .table-responsive table > tfoot > tr > td:first-child {
    border-left: 0;
    white-space: nowrap;
  }
  .table-responsive table > thead > tr > th:last-child,
  .table-responsive table > thead > tr > td:last-child,
  .table-responsive table > tbody > tr > th:last-child,
  .table-responsive table > tbody > tr > td:last-child,
  .table-responsive table > tfoot > tr > th:last-child,
  .table-responsive table > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive table > tbody > tr:last-child > th,
  .table-responsive table > tbody > tr:last-child > td,
  .table-responsive table > tfoot > tr:last-child > th,
  .table-responsive table > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

.lightbox {
  margin-bottom: 30px;
  display: block;
  position: relative;
}
.lightbox:before {
  content: '';
  position: absolute;
  background: rgba(51, 51, 51, 0.5);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.lightbox:after {
  content: '\f002';
  font-family: "FontAwesome";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.lightbox:hover::before, .lightbox:hover::after {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  width: 100%;
  display: block;
}

.topbar-container {
  background: #333333;
}

.fontsize-changer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fontsize-changer-box .fontsize-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 300ms ease-in-out, color 300ms ease-in-out;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
  font-size: 15px;
  line-height: 15px;
}
.fontsize-changer-box .fontsize-btn:hover {
  background: #fff;
  color: #333333;
}
.fontsize-changer-box .text-label {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 15px;
}

.topbar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
  padding-left: 0;
  padding-right: 0;
}

.topbar-menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.topbar-menu-box .profile-btn {
  color: #999999;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  min-width: 42px;
  border-right: 1px solid #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 17px;
  line-break: 17px;
}
.topbar-menu-box .profile-btn .dropdown-toggle {
  line-height: 1;
}
.topbar-menu-box .profile-btn .fa {
  font-size: 17px;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}
.topbar-menu-box .profile-btn .fa:hover {
  color: #5aaf48;
}
.topbar-menu-box .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 14px;
  border-right: 1px solid #444444;
  cursor: pointer;
  position: relative;
}
.topbar-menu-box .search-box.active .search-form input {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.topbar-menu-box .search-box.active .fa {
  color: #5aaf48;
}
.topbar-menu-box .search-box .fa {
  font-size: 15px;
  color: #999999;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}
.topbar-menu-box .search-box .fa:hover {
  color: #5aaf48;
}
.topbar-menu-box .search-box .search-form {
  line-height: 15px;
  font-size: 15px;
}
.topbar-menu-box .search-box .search-form .search {
  line-height: 15px;
  font-size: 15px;
}
.topbar-menu-box .search-box .search-form input {
  position: absolute;
  left: -200px;
  width: 200px;
  height: 40px;
  top: 0;
  padding: 5px 10px;
  outline: none;
  border: 1px solid #444444;
  background: #333333;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 500ms linear;
  transition: -webkit-transform 500ms linear;
  transition: transform 500ms linear;
  transition: transform 500ms linear, -webkit-transform 500ms linear;
  -webkit-transform-origin: right;
          transform-origin: right;
  color: #fff;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
}
.topbar-menu-box .search-box .search-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.topbar-menu-box .search-box .search-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.topbar-menu-box .search-box .search-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.topbar-menu-box .search-box .search-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
@media (min-width: 767px) {
  .topbar-menu-box .search-box .search-form input {
    width: 300px;
    left: -300px;
  }
}
.topbar-menu-box .language-menu {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topbar-menu-box .language-menu li {
  border-left: 1px solid #444444;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
}
.topbar-menu-box .language-menu li:not(:first-child) {
  border-right: 1px solid #444444;
}
.topbar-menu-box .language-menu li.active a {
  color: #5aaf48;
}
.topbar-menu-box .language-menu li a {
  color: #999999;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.navbar-header {
  background: #5aaf48;
  min-height: 64px;
}
.navbar-header .navbar-toggle {
  margin: 15px 0 !important;
}
.navbar-header .branding {
  color: #ffffc7;
  text-decoration: none;
  font-family: "PT Sans", sans-serif;
  margin-top: 10px;
  display: inline-block;
}
.navbar-header .branding img {
  max-width: 40px;
  vertical-align: middle;
}
.navbar-header .branding .logo-text {
  display: inline-block;
  line-height: 1.2;
  font-weight: bold;
  vertical-align: middle;
  padding-left: 6px;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "PT Sans Narrow", sans-serif;
}
.navbar-header .branding .logo-text span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  text-transform: none;
}
@media (min-width: 992px) {
  .navbar-header .branding {
    position: absolute;
    left: 0;
    top: -40px;
    right: 15px;
    margin-top: 0;
    background: #5aaf48;
    text-align: center;
    padding: 13px 0;
  }
  .navbar-header .branding .logo-text {
    display: block;
    font-size: 14px;
    padding: 0;
    margin-top: 9px;
  }
  .navbar-header .branding .logo-text span {
    font-size: 14px;
  }
  .navbar-header .branding img {
    width: auto;
    max-width: 70px;
    -webkit-transition: max-width 300ms linear;
    transition: max-width 300ms linear;
  }
}
@media (min-width: 1200px) {
  .navbar-header .branding {
    padding: 14px 0;
  }
  .navbar-header .branding .logo-text {
    font-size: 18px;
  }
  .navbar-header .branding .logo-text span {
    font-size: 18px;
  }
  .navbar-header .branding img {
    max-width: 100px;
  }
}
@media (min-width: 767px) {
  .navbar-header {
    position: relative;
  }
  .navbar-header::before, .navbar-header::after {
    content: '';
    display: block;
    position: absolute;
    background: #5aaf48;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 400px;
  }
  .navbar-header::before {
    left: -400px;
  }
  .navbar-header::after {
    right: -400px;
  }
}
@media (min-width: 992px) {
  .navbar-header {
    background: #fff;
  }
  .navbar-header::before, .navbar-header::after {
    content: none;
  }
}

.main-navigation-container {
  background: transparent;
  border-bottom: 4px solid rgba(51, 51, 51, 0.2);
}
.main-navigation-container .navigation-wrapper {
  background: #fff;
}
.main-navigation-container .navbar-collapse .primary-navigation.desktop-navigation {
  display: none;
}
.main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation {
  list-style-type: none;
}
.main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation li {
  border-bottom: 1px solid #dadada;
}
.main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation li:last-child {
  border-bottom: none;
}
.main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation li a {
  display: block;
  padding: 8px  0;
}
.main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation li .nav-dropdown {
  padding: 0 10px;
}
.main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation li .nav-dropdown li:last-child {
  border-bottom: none;
}
.main-navigation-container .navbar-collapse .primary-navigation li.active > a {
  color: #5aaf48;
}
.main-navigation-container .navbar-collapse .primary-navigation .dropdown-toggle {
  position: relative;
  padding-right: 30px;
}
.main-navigation-container .navbar-collapse .primary-navigation .dropdown-toggle::before {
  content: '\f107';
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding-top: 8px;
}
@media (min-width: 992px) {
  .main-navigation-container .navbar-collapse .primary-navigation .dropdown-toggle {
    padding: 0;
  }
  .main-navigation-container .navbar-collapse .primary-navigation .dropdown-toggle::before {
    content: none;
  }
}
.main-navigation-container .navbar-collapse .primary-navigation a {
  font-family: "PT Sans", sans-serif;
  color: #525c60;
  text-decoration: none;
  font-size: 15px;
  padding: 8px;
}
.main-navigation-container .navbar-collapse .primary-navigation a:hover {
  color: #5aaf48;
}
@media (min-width: 992px) {
  .main-navigation-container .navbar-collapse .primary-navigation.desktop-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 66px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-navigation-container .navbar-collapse .primary-navigation.mobile-only-navigation {
    display: none !important;
  }
  .main-navigation-container .navbar-collapse .primary-navigation::before, .main-navigation-container .navbar-collapse .primary-navigation:after {
    content: none !important;
  }
  .main-navigation-container .navbar-collapse .primary-navigation li {
    display: inline-block;
    border-bottom: none;
  }
  .main-navigation-container .navbar-collapse .primary-navigation li a {
    text-transform: uppercase;
    font-size: 11px;
    padding: 0;
    border-bottom: none;
    border-bottom: none;
  }
}
@media (min-width: 1200px) {
  .main-navigation-container .navbar-collapse .primary-navigation li a {
    font-size: 14px;
  }
}
@media (min-width: 1340px) {
  .main-navigation-container .navbar-collapse .primary-navigation {
    padding-left: 30px;
  }
}

body {
  padding-top: 102px;
}
@media (min-width: 992px) {
  body {
    padding-top: 106px;
  }
  body .main-navigation-container {
    min-height: 110px;
  }
  body .main-navigation-container.fixed .navbar-header .branding img {
    max-width: 39px;
  }
}
@media (min-width: 1200px) {
  body .main-navigation-container {
    background: transparent;
  }
  body .main-navigation-container.fixed .navbar-header .branding img {
    max-width: 27px;
  }
}

.primary-navigation .nav-dropdown {
  position: relative;
  z-index: 1;
  max-height: 0;
  -webkit-transition: max-height 600ms ease-in-out;
  transition: max-height 600ms ease-in-out;
  overflow: hidden;
  padding: 0 20px;
  list-style: none;
}
.primary-navigation .nav-dropdown li {
  display: block;
}
.primary-navigation .nav-dropdown li a {
  display: block;
}
@media (min-width: 992px) {
  .primary-navigation .nav-dropdown {
    display: none !important;
  }
}
.primary-navigation.open {
  opacity: 1;
  visibility: visible;
  max-height: 1500px;
}

.open.nav-dropdown {
  opacity: 1;
  visibility: visible;
  max-height: 1500px;
}

.dropdown-menu {
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.dropdown-menu > li > a {
  font-size: 13px;
  text-decoration: none;
  padding: 10px 20px;
  color: #525c60;
}
.dropdown-menu > li:hover > a, .dropdown-menu > li.active > a {
  color: #5aaf48;
}
.dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.sidebar {
  display: none;
}
@media (min-width: 992px) {
  .sidebar {
    display: block;
  }
}

.sidebar-navigation .nav-dropdown {
  position: relative;
  z-index: 1;
  max-height: 0;
  -webkit-transition: max-height 600ms ease-in-out;
  transition: max-height 600ms ease-in-out;
  overflow: hidden;
}
.sidebar-navigation .nav {
  line-height: 15px;
}
.sidebar-navigation .nav li {
  padding: 0;
}
.sidebar-navigation .nav li.dropdown-toggle {
  position: relative;
}
.sidebar-navigation .nav li.dropdown-toggle > a {
  padding-right: 30px;
}
.sidebar-navigation .nav li.dropdown-toggle:after {
  content: '\f078';
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  background: #6ab75a;
  color: #fff;
  z-index: 10;
  width: 30px;
  text-align: center;
  height: 39px;
  line-height: 39px;
  cursor: pointer;
  -webkit-transition: all 600ms ease-in-out 200ms;
  transition: all 600ms ease-in-out 200ms;
}
.sidebar-navigation .nav li.dropdown-toggle.active:after {
  content: '\f077';
}
.sidebar-navigation .nav li a {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 10px;
}
.sidebar-navigation .nav li::before {
  content: none;
}
.sidebar-navigation .nav > li {
  margin-bottom: 6px;
}
.sidebar-navigation .nav > li > a {
  background: #6ab75a;
  color: #fff;
  display: block;
  font-weight: 400;
}
.sidebar-navigation .nav > li > a:focus, .sidebar-navigation .nav > li > a:active, .sidebar-navigation .nav > li > a.focus, .open .sidebar-navigation .nav > li > a {
  background: #5aaf48 !important;
}
.sidebar-navigation .nav > li > .nav-dropdown {
  padding: 0 20px;
}
.sidebar-navigation .nav > li > .nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  max-height: 1500px;
}
.sidebar-navigation .nav > li > .nav-dropdown > li {
  margin-bottom: 0;
}
.sidebar-navigation .nav > li > .nav-dropdown > li.dropdown-toggle > a {
  padding-right: 30px;
}
.sidebar-navigation .nav > li > .nav-dropdown > li.dropdown-toggle:after {
  color: #8c8c8c;
  font-size: 10px;
  right: 0;
  background: transparent;
}
.sidebar-navigation .nav > li > .nav-dropdown > li > a {
  padding: 12px 7px;
  display: block;
  font-size: 13px;
  color: #333333;
}
.sidebar-navigation .nav > li > .nav-dropdown > li > a:hover, .sidebar-navigation .nav > li > .nav-dropdown > li > a.active {
  color: #5aaf48;
}
.sidebar-navigation .nav > li > .nav-dropdown > li.active > a {
  color: #5aaf48;
}
.sidebar-navigation .nav > li > .nav-dropdown > li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.sidebar-navigation .nav > li > .nav-dropdown > li:first-child {
  margin-top: 20px;
}
.sidebar-navigation .nav > li > .nav-dropdown > li:last-child {
  margin-bottom: 20px;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown {
  padding: 0 12px;
  font-size: 12px;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  max-height: 1500px;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li {
  margin-bottom: 10px;
  position: relative;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li:first-child {
  margin-top: 3px;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li:last-child {
  margin-bottom: 15px;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li a {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  position: relative;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li a:hover, .sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li a.active {
  color: #5aaf48;
  text-decoration: underline;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li a::before {
  content: '\f0da';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
}
.sidebar-navigation .nav > li > .nav-dropdown .nav-dropdown li.active > a {
  color: #5aaf48;
}
.sidebar-navigation > .nav > .open > a:hover, .sidebar-navigation > .nav > .open > a:focus {
  background: #5aaf48;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.homepage-slider-container {
  position: relative;
  overflow: hidden;
}
.homepage-slider-container::after {
  content: '';
  height: 93px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-image: url("../images/slideshow/slideshow-decoration.png");
  background-size: auto;
  background-position: center;
}
.homepage-slider-container .header-images-slider .slick-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.homepage-slider-container .header-images-slider .slick-slide,
.homepage-slider-container .header-images-slider .slick-track {
  height: 380px;
}
@media (min-width: 767px) {
  .homepage-slider-container .header-images-slider .slick-slide,
  .homepage-slider-container .header-images-slider .slick-track {
    height: 540px;
  }
}
.homepage-slider-container .header-images-slider .slick-dots {
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 10;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  list-style-type: none;
}
.homepage-slider-container .header-images-slider .slick-dots li {
  line-height: 1;
  margin: 16px 0;
}
.homepage-slider-container .header-images-slider .slick-dots li.slick-active button {
  background: #fff;
}
.homepage-slider-container .header-images-slider .slick-dots li button {
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  outline: none;
}
@media (min-width: 767px) {
  .homepage-slider-container .header-images-slider .slick-dots {
    right: 45px;
  }
}
.homepage-slider-container .text-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}
.homepage-slider-container .text-slider-container .header-text-slider {
  margin-top: 50px;
}
.homepage-slider-container .text-slider-container .header-text-slider .slick-slide {
  outline: none;
}
.homepage-slider-container .text-slider-container .header-text-slider h2 {
  font-size: 18px;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.homepage-slider-container .text-slider-container .header-text-slider p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: none;
}
@media (min-width: 767px) {
  .homepage-slider-container .text-slider-container .header-text-slider p {
    display: block;
  }
}
.homepage-slider-container .text-slider-container .header-text-slider h2, .homepage-slider-container .text-slider-container .header-text-slider p {
  max-width: 95%;
}
@media (min-width: 767px) {
  .homepage-slider-container .text-slider-container .header-text-slider {
    margin-top: 90px;
  }
  .homepage-slider-container .text-slider-container .header-text-slider h2 {
    font-size: 22px;
  }
  .homepage-slider-container .text-slider-container .header-text-slider h2, .homepage-slider-container .text-slider-container .header-text-slider p {
    max-width: 85%;
  }
  .homepage-slider-container .text-slider-container .header-text-slider p {
    font-size: 16px;
    margin-bottom: 26px;
  }
}
@media (min-width: 767px) {
  .homepage-slider-container .text-slider-container {
    background: transparent;
  }
  .homepage-slider-container .text-slider-container::before {
    content: '';
    height: 900px;
    width: 900px;
    border-radius: 0 600px 600px 0;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: -200px;
    left: -60%;
  }
}
@media (min-width: 767px) and (min-width: 992px) {
  .homepage-slider-container .text-slider-container::before {
    top: -200px;
    left: -25%;
  }
}

@media (min-width: 992px) {
  .homepage-slider-container .text-slider-container .header-text-slider {
    margin-top: 130px;
  }
  .homepage-slider-container .text-slider-container .header-text-slider h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.programs-slider {
  margin-bottom: 0;
}
.programs-slider .slick-arrow {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  font-size: 20px;
}
.programs-slider .slick-arrow:hover {
  color: #5aaf48;
}
.programs-slider .slick-arrow.fa-chevron-left {
  left: 0;
}
.programs-slider .slick-arrow.fa-chevron-right {
  right: 0;
}
.programs-slider .slick-dots {
  list-style: none;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
}
.programs-slider .slick-dots li {
  display: inline-block;
  margin: 0 2px;
  line-height: 10px;
}
.programs-slider .slick-dots li.slick-active button {
  background: #5aaf48;
}
.programs-slider .slick-dots button {
  text-indent: -9999px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #5aaf48;
  background: #fff;
  border-radius: 50%;
  outline: none;
}

ul.breadcrumb {
  background: #fff;
  padding: 0;
  margin: 25px 0 50px 0;
  line-height: 14px;
}
ul.breadcrumb li {
  display: block;
  margin: 0;
  font-size: 11px;
  color: #535353;
  font-weight: 400;
  padding: 0;
}
ul.breadcrumb li::before {
  content: none;
}
ul.breadcrumb li a {
  color: #535353;
}
ul.breadcrumb li a:hover {
  color: #5aaf48;
}
@media (min-width: 480px) {
  ul.breadcrumb li {
    display: inline-block;
  }
  ul.breadcrumb li:not(:first-child) {
    padding: 0;
  }
  ul.breadcrumb li:not(:first-child)::before {
    content: '/';
    display: inline-block;
    margin-left: -3px;
  }
}

.btn {
  text-transform: uppercase;
  font-family: "PT Sans Caption", sans-serif;
  font-size: 12px;
  text-decoration: none;
  padding: 12px 16px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-primary:hover {
  background: #333333;
  border: 1px solid #333333;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  -webkit-box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}

.pagination-container {
  text-align: center;
}
.pagination-container .pagination li {
  padding: 0;
  margin: 0 2px;
}
.pagination-container .pagination li::before {
  content: none;
}
.pagination-container .pagination li a {
  border: none;
  border-radius: 5px;
  float: none;
  color: #000;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  font-size: 1.1333333333rem;
}
.pagination-container .pagination li a:hover {
  background: #f3f3f3;
}
.pagination-container .pagination li span {
  background: #5aaf48;
  color: #fff;
  border: none;
  border-radius: 5px;
  float: none;
  font-size: 1.1333333333rem;
}

.banners-container {
  margin: 25px 0;
}
.banners-container .slick-slide {
  outline: none;
}
.banners-container img {
  max-width: 100%;
}

.fc-header-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fc-header-toolbar h2 {
  color: #5aaf48;
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.fc-header-toolbar .fc-left,
.fc-header-toolbar .fc-right,
.fc-header-toolbar .fc-center {
  margin-bottom: 10px;
}
@media (min-width: 767px) {
  .fc-header-toolbar {
    display: block;
    vertical-align: middle;
  }
  .fc-header-toolbar .fc-left,
  .fc-header-toolbar .fc-right,
  .fc-header-toolbar .fc-center {
    margin-bottom: 0;
  }
}
.fc-header-toolbar .fc-button {
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.fc-header-toolbar .fc-button.fc-state-active {
  background: #5aaf48;
  color: #fff;
}

.fc-widget-header table {
  margin-bottom: 0;
}
.fc-widget-header table th {
  padding: 5px 0;
}

.fc-event, .fc-event-dot {
  background: #5aaf48;
  border: 1px solid #5aaf48;
}

.fc-day-number {
  color: #333333;
  font-weight: 500;
}

.nav-tabs li {
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.nav-tabs li a {
  padding: 12px;
}
.nav-tabs li.active a {
  border: 1px solid  #ddd !important;
  border-bottom: 1px solid #fff !important;
}
.nav-tabs li::before {
  content: none !important;
}

.tab-content {
  padding-top: 27px;
}

.no-pl {
  padding-left: 0 !important;
}

.nav.nav-tabs {
  margin-bottom: 25px;
}

.nav.nav-tabs li {
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  bottom: -1px;
}

.nav-tabs > li.active > a {
  border-bottom-color: #fff;
}
.nav-tabs > li.active > a:hover {
  border-bottom-color: #fff;
}

.nav-tabs > li > a:hover {
  border-bottom-color: #ddd;
}

.nav.nav-tabs li:before {
  content: none;
}

.nav-tabs > li > a {
  display: inline-block;
  padding: 10px;
}

.form-group .col-md-8 {
  width: 100% !important;
}

.sidebar h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
}

.sidebar .bootstrap-datetimepicker-widget ul li {
  padding-left: 0;
  margin-bottom: 0;
}
.sidebar .bootstrap-datetimepicker-widget ul li:before {
  content: none !important;
}
.sidebar .bootstrap-datetimepicker-widget table > thead > tr > th,
.sidebar .bootstrap-datetimepicker-widget table > thead > tr > td,
.sidebar .bootstrap-datetimepicker-widget table > tbody > tr > th,
.sidebar .bootstrap-datetimepicker-widget table > tbody > tr > td,
.sidebar .bootstrap-datetimepicker-widget table > tfoot > tr > th,
.sidebar .bootstrap-datetimepicker-widget table > tfoot > tr > td,
.sidebar .bootstrap-datetimepicker-widget table {
  border: 1px solid transparent !important;
}
.sidebar .bootstrap-datetimepicker-widget table td,
.sidebar .bootstrap-datetimepicker-widget table th {
  padding: 3px;
}
@media (min-width: 1200px) {
  .sidebar .bootstrap-datetimepicker-widget table td,
  .sidebar .bootstrap-datetimepicker-widget table th {
    padding: 5px;
  }
}
.sidebar .bootstrap-datetimepicker-widget table td.day.active.today, .sidebar .bootstrap-datetimepicker-widget table td.day.today, .sidebar .bootstrap-datetimepicker-widget table td.day.active {
  position: relative;
  background: transparent !important;
  color: #fff !important;
}
.sidebar .bootstrap-datetimepicker-widget table td.day.active.today:after, .sidebar .bootstrap-datetimepicker-widget table td.day.today:after, .sidebar .bootstrap-datetimepicker-widget table td.day.active:after {
  content: '';
  background: #eecf1b;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.sidebar .bootstrap-datetimepicker-widget table td.day.active.today:before, .sidebar .bootstrap-datetimepicker-widget table td.day.today:before, .sidebar .bootstrap-datetimepicker-widget table td.day.active:before {
  display: none !important;
  content: none !important;
}
.sidebar .bootstrap-datetimepicker-widget table td.day.hasEvents {
  position: relative;
  background: transparent !important;
  color: #fff !important;
}
.sidebar .bootstrap-datetimepicker-widget table td.day.hasEvents:after {
  content: '';
  background: #5aaf48;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.sidebar .bootstrap-datetimepicker-widget table td.day.hasEvents:before {
  display: none !important;
  content: none !important;
}
.sidebar .bootstrap-datetimepicker-widget table td .month:hover, .sidebar .bootstrap-datetimepicker-widget table td .year:hover {
  background: transparent;
}
.sidebar .bootstrap-datetimepicker-widget table td .month.active, .sidebar .bootstrap-datetimepicker-widget table td .year.active {
  background: #5aaf48;
}
.sidebar .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.sidebar .bootstrap-datetimepicker-widget table td.day:hover,
.sidebar .bootstrap-datetimepicker-widget table td.hour:hover,
.sidebar .bootstrap-datetimepicker-widget table td.minute:hover,
.sidebar .bootstrap-datetimepicker-widget table td.second:hover {
  background: transparent;
  color: #5aaf48;
}

ul.type-of-education li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0 !important;
}
ul.type-of-education li span {
  font-weight: bold;
  display: inline-block;
  min-width: 215px;
}
ul.type-of-education li:before {
  content: none !important;
}

.news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-wrapper .news-box {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-wrapper .news-box .news-content {
  padding: 0 0.4666666667rem 1.1333333333rem 0.4666666667rem;
}
.news-wrapper .news-box .news-content img {
  margin-bottom: 1.1333333333rem;
  width: calc(100% + 14px);
  margin-left: -7px;
  margin-right: -7px;
}
.news-wrapper .news-box .news-content h3 {
  margin-top: 0;
  font-size: 1.4rem;
}
@media (min-width: 767px) {
  .news-wrapper .news-box .news-content h3 {
    font-size: 1.6666666667rem;
  }
}
.news-wrapper .news-box .news-content p {
  font-size: 0.8666666667rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.news-wrapper .news-box .newsbox-footer {
  border-top: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
  padding: 0.4666666667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-wrapper .news-box .newsbox-footer .date-label {
  font-size: 1rem;
}
.news-wrapper .news-box .newsbox-footer .news-link {
  font-size: 1rem;
}
.news-wrapper .news-box .newsbox-footer .news-link:after {
  content: '\f061';
  font-family: "FontAwesome";
  margin-left: 0.6rem;
  width: 1.4666666667rem;
  height: 1.4666666667rem;
  background: #5aaf48;
  color: #fff;
  font-size: 0.8666666667rem;
  display: inline-block;
  text-align: center;
  line-height: 1.4666666667rem;
  border-radius: 50%;
}
.news-wrapper .news-box .newsbox-footer .news-link:hover {
  color: #333333;
}

.news-container img {
  max-width: 100%;
}
.news-container .date {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: block;
  margin: 20px 0;
  padding: 0.4666666667rem 0.8666666667rem;
}

.managment-box, .managment-wrapper {
  margin-bottom: 2.3333333333rem;
}
@media (min-width: 767px) {
  .managment-box, .managment-wrapper {
    margin-bottom: 4.3333333333rem;
  }
}
.managment-box h2, .managment-wrapper h2 {
  color: #5aaf48;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 767px) {
  .managment-box h2, .managment-wrapper h2 {
    font-size: 2rem;
    text-align: left;
  }
}
.managment-box h4, .managment-wrapper h4 {
  font-size: 1.2666666667rem;
  margin-top: 0;
  text-align: center;
}
@media (min-width: 480px) {
  .managment-box h4, .managment-wrapper h4 {
    font-size: 1.6666666667rem;
  }
}
@media (min-width: 767px) {
  .managment-box h4, .managment-wrapper h4 {
    text-align: left;
  }
}
.managment-box .managment-content, .managment-wrapper .managment-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.managment-box .managment-content figure.img-rounded, .managment-wrapper .managment-content figure.img-rounded {
  border-radius: 50%;
  overflow: hidden;
  max-width: 230px;
  margin: 0 auto 20px auto;
  display: block;
}
.managment-box .managment-content figure.img-rounded img, .managment-wrapper .managment-content figure.img-rounded img {
  display: block;
}
.managment-box .managment-content .managment-text, .managment-wrapper .managment-content .managment-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.managment-box .managment-content .managment-text ul.information-list li, .managment-wrapper .managment-content .managment-text ul.information-list li {
  padding: 0.5333333333rem 0.8rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 480px) {
  .managment-box .managment-content .managment-text ul.information-list li, .managment-wrapper .managment-content .managment-text ul.information-list li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.managment-box .managment-content .managment-text ul.information-list li::before, .managment-wrapper .managment-content .managment-text ul.information-list li::before {
  content: none;
}
.managment-box .managment-content .managment-text ul.information-list li:nth-child(odd), .managment-wrapper .managment-content .managment-text ul.information-list li:nth-child(odd) {
  background: #f7f7f7;
}
.managment-box .managment-content .managment-text ul.information-list li a, .managment-wrapper .managment-content .managment-text ul.information-list li a {
  color: #333333;
  text-decoration: underline;
}
.managment-box .managment-content .managment-text ul.information-list li a:hover, .managment-wrapper .managment-content .managment-text ul.information-list li a:hover {
  color: #5aaf48;
}
.managment-box .managment-content .managment-text ul.information-list li .info-label, .managment-wrapper .managment-content .managment-text ul.information-list li .info-label {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 480px) {
  .managment-box .managment-content .managment-text ul.information-list li .info-label, .managment-wrapper .managment-content .managment-text ul.information-list li .info-label {
    -ms-flex-preferred-size: 117px;
        flex-basis: 117px;
  }
}
.managment-box .managment-content .managment-text ul.information-list li .info-text span, .managment-wrapper .managment-content .managment-text ul.information-list li .info-text span {
  display: block;
}
@media (min-width: 767px) {
  .managment-box .managment-content, .managment-wrapper .managment-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .managment-box .managment-content figure.img-rounded, .managment-wrapper .managment-content figure.img-rounded {
    margin: 0;
  }
  .managment-box .managment-content .managment-text, .managment-wrapper .managment-content .managment-text {
    padding-left: 2rem;
  }
}

.managment-box .managment-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.managment-wrapper .managment-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.managment-wrapper .managment-content h3 {
  font-size: 1.3333333333rem;
}
@media (min-width: 767px) {
  .managment-wrapper .managment-content h3 {
    font-size: 1.6666666667rem;
  }
}
.managment-wrapper .managment-content ul li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 0.9333333333rem;
}
.managment-wrapper .managment-content ul li::before {
  content: '\f0da';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 0.9333333333rem;
}
.managment-wrapper .managment-content ul.information-list.publications a {
  font-size: 0.8rem;
  color: #5aaf48 !important;
}
.managment-wrapper .managment-content ul.information-list.publications a:hover {
  color: #333333 !important;
}

.teaser-container {
  border-top: 3px solid #fff;
}

.top-teaser-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 3px solid #fff;
}
.top-teaser-wrapper .teaser-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-teaser-wrapper .teaser-box:first-child {
  border-bottom: 3px solid #fff;
}
@media (min-width: 992px) {
  .top-teaser-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 300px;
  }
  .top-teaser-wrapper .teaser-box:first-child {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    border-right: 3px solid #fff;
    border-bottom: none;
  }
  .top-teaser-wrapper .teaser-box:last-child {
    -ms-flex-preferred-size: 72%;
        flex-basis: 72%;
  }
  .top-teaser-wrapper .teaser-box.left-textbox ul {
    font-family: "Comfortaa", cursive;
    position: absolute;
    right: -290px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 250px;
    line-height: 14px;
  }
  body.internet-explorer .top-teaser-wrapper .teaser-box {
    min-height: 300px;
  }
}
@media (min-width: 1340px) {
  .top-teaser-wrapper .teaser-box:first-child {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
  }
  .top-teaser-wrapper .teaser-box:last-child {
    -ms-flex-preferred-size: 77%;
        flex-basis: 77%;
  }
}

.large-teaser-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 3px solid #fff;
}
.large-teaser-wrapper .teaser-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.large-teaser-wrapper .single-col, .large-teaser-wrapper .columns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.large-teaser-wrapper .single-col {
  border-bottom: 3px solid #fff;
}
.large-teaser-wrapper .single-col .teaser-box {
  width: 100%;
}
.large-teaser-wrapper .columns-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.large-teaser-wrapper .columns-wrapper .teaser-box {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.large-teaser-wrapper .columns-wrapper .teaser-box:first-child {
  border-bottom: 3px solid #fff;
}
@media (min-width: 992px) {
  .large-teaser-wrapper {
    min-height: 730px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .large-teaser-wrapper .teaser-box.left-textbox ul {
    font-family: "Comfortaa", cursive;
    position: absolute;
    right: -290px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 250px;
    line-height: 14px;
  }
  .large-teaser-wrapper .teaser-box.right-textbox ul {
    position: absolute;
    left: -290px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 250px;
    text-align: left;
    line-height: 14px;
  }
  .large-teaser-wrapper .teaser-box.top-textbox .teaser-textbox {
    -webkit-transition: height 700ms linear;
    transition: height 700ms linear;
    height: 340px;
  }
  .large-teaser-wrapper .teaser-box.top-textbox:hover .teaser-textbox {
    height: 100%;
  }
  .large-teaser-wrapper .teaser-box.top-textbox:hover .teaser-textbox::before {
    height: calc(100% + 200px);
  }
  .large-teaser-wrapper .teaser-box.top-textbox .teaser-title {
    max-width: 100%;
  }
  .large-teaser-wrapper .teaser-box.top-textbox .teaser-title ul {
    line-height: 14px;
    text-align: left;
    max-width: 250px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .large-teaser-wrapper .teaser-box.top-textbox .teaser-title ul {
    margin: 40px auto 0 auto;
  }
}
@media (min-width: 992px) {
  .large-teaser-wrapper .single-col {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    border-bottom: none;
    border-right: 3px solid #fff;
  }
  .large-teaser-wrapper .columns-wrapper {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
  body.internet-explorer .large-teaser-wrapper .single-col {
    min-height: 730px;
  }
}

.halfboxes-teaser-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 3px solid #fff;
}
.halfboxes-teaser-wrapper .teaser-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.halfboxes-teaser-wrapper .teaser-box:first-child {
  border-bottom: 3px solid #fff;
}
@media (min-width: 992px) {
  .halfboxes-teaser-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 370px;
  }
  .halfboxes-teaser-wrapper .teaser-box {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .halfboxes-teaser-wrapper .teaser-box:first-child {
    border-bottom: none;
    border-right: 3px solid #fff;
  }
  .halfboxes-teaser-wrapper .teaser-box.left-textbox ul {
    position: absolute;
    right: -290px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 250px;
    line-height: 14px;
    font-size: 14px;
  }
  .halfboxes-teaser-wrapper .teaser-box.right-textbox ul {
    position: absolute;
    left: -290px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 250px;
    text-align: left;
    line-height: 14px;
    font-size: 14px;
  }
}
@media (min-width: 992px) and (min-width: 1500px) {
  .halfboxes-teaser-wrapper .teaser-box.right-textbox ul {
    width: 350px;
    left: -390px;
  }
}
@media (min-width: 992px) {
  .halfboxes-teaser-wrapper .single-col {
    min-height: 370px;
  }
  body.internet-explorer .halfboxes-teaser-wrapper .teaser-box {
    min-height: 370px;
  }
}

.teaser-container .teaser-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
  position: relative;
}
.teaser-container .teaser-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.5);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.teaser-container .teaser-box > a {
  display: block;
  z-index: 3;
}
.teaser-container .teaser-box .teaser-textbox {
  position: relative;
  -webkit-transition: all 700ms linear;
  transition: all 700ms linear;
  z-index: 1;
}
.teaser-container .teaser-box .teaser-textbox::before {
  -webkit-transition: all 480ms linear;
  transition: all 480ms linear;
}
.teaser-container .teaser-box .teaser-title {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}
@media (min-width: 992px) {
  .teaser-container .teaser-box .teaser-title {
    font-size: 28px;
    line-height: 32px;
  }
  .teaser-container .teaser-box .teaser-title.small-size-title {
    font-size: 24px;
    line-height: 30px;
    max-width: 120px;
  }
}
@media (min-width: 1200px) {
  .teaser-container .teaser-box .teaser-title {
    font-size: 40px;
    line-height: 50px;
    max-width: 220px;
  }
  .teaser-container .teaser-box .teaser-title.small-size-title {
    font-size: 30px;
    line-height: 32px;
    max-width: 150px;
  }
}
@media (min-width: 1700px) {
  .teaser-container .teaser-box .teaser-title {
    font-size: 50px;
    line-height: 60px;
    max-width: 300px;
  }
  .teaser-container .teaser-box .teaser-title.small-size-title {
    font-size: 36px;
    line-height: 42px;
    max-width: 200px;
  }
}
.teaser-container .teaser-box ul {
  z-index: 2;
  list-style: none;
  margin: 0;
  font-family: "Comfortaa", cursive;
  margin-top: 20px;
  line-height: 14px;
}
.teaser-container .teaser-box ul li {
  margin-bottom: 9px;
  line-height: 14px;
}
.teaser-container .teaser-box ul a {
  color: #fff;
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 12px;
  line-height: 12px;
  text-transform: none !important;
  padding-left: 12px;
}
@media (min-width: 480px) {
  .teaser-container .teaser-box ul a {
    font-size: 14px;
    line-height: 14px;
  }
}
.teaser-container .teaser-box ul a::before {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 14px;
}
.teaser-container .teaser-box ul a:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .teaser-container .teaser-box::after {
    content: none;
  }
  .teaser-container .teaser-box ul {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 400ms ease 100ms;
    transition: all 400ms ease 100ms;
    margin-top: 0;
  }
  .teaser-container .teaser-box:hover ul {
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (max-width: 992px) {
  .teaser-container .teaser-box {
    padding: 30px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .teaser-container .teaser-box .teaser-title {
    text-align: center;
  }
  .teaser-container .teaser-box .teaser-title ul {
    text-align: left;
    width: 280px;
  }
  .teaser-container .teaser-box.centered-teaser ul {
    text-align: left;
    width: 280px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-textbox.primary {
    background: transparent;
  }
  .teaser-container .teaser-textbox.primary::before {
    background: rgba(90, 175, 72, 0.9);
  }
  .teaser-container .teaser-textbox.secondary {
    background: transparent;
  }
  .teaser-container .teaser-textbox.secondary::before {
    background: rgba(255, 102, 0, 0.9);
  }
  .teaser-container .teaser-textbox.light {
    background: transparent;
  }
  .teaser-container .teaser-textbox.light .teaser-title {
    color: #333333;
  }
  .teaser-container .teaser-textbox.light .teaser-title ul a {
    color: #333333;
  }
  .teaser-container .teaser-textbox.light .teaser-title ul a::after {
    background: #333333;
  }
  .teaser-container .teaser-textbox.light::before {
    background: rgba(255, 255, 157, 0.9);
  }
}

@media (min-width: 992px) {
  .teaser-container .teaser-box .teaser-textbox.right-slope::before {
    content: '';
    position: absolute;
    right: -200px;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: skew(-20deg);
            transform: skew(-20deg);
    width: calc(100% + 200px);
  }
  .teaser-container .teaser-box .teaser-textbox.left-slope::before {
    content: '';
    position: absolute;
    left: -200px;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: skew(20deg);
            transform: skew(20deg);
    width: calc(100% + 200px);
  }
  .teaser-container .teaser-box .teaser-textbox.left-slope.top::before {
    -webkit-transform: skew(-20deg);
            transform: skew(-20deg);
  }
  .teaser-container .teaser-box .teaser-textbox.bottom-slope::before {
    content: '';
    position: absolute;
    left: 0;
    top: -100px;
    bottom: 0;
    width: 100%;
    height: 400px;
    -webkit-transform: skewY(10deg);
            transform: skewY(10deg);
  }
}
.teaser-container .teaser-box.centered-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 15px;
}
.teaser-container .teaser-box.centered-teaser .teaser-title {
  position: relative;
  font-size: 24px;
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.centered-teaser .teaser-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.centered-teaser {
    -webkit-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out;
    padding: 0;
  }
  .teaser-container .teaser-box.centered-teaser .teaser-title {
    padding-bottom: 40px;
  }
  .teaser-container .teaser-box.centered-teaser .teaser-title:after {
    content: '\f078';
    font-family: "FontAwesome";
    position: absolute;
    left: 50%;
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #7f7f7f;
    font-size: 12px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
  }
  .teaser-container .teaser-box.centered-teaser:hover ul {
    max-height: 900px;
  }
  .teaser-container .teaser-box.centered-teaser ul {
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    -webkit-transition: max-height 600ms ease-in-out !important;
    transition: max-height 600ms ease-in-out !important;
    line-height: 14px;
  }
  .teaser-container .teaser-box.centered-teaser ul li {
    line-height: 14px;
  }
}

@media (min-width: 992px) {
  .teaser-container .teaser-box.left-textbox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .teaser-container .teaser-box.left-textbox .teaser-textbox {
    min-width: 48%;
    max-width: 48%;
    width: 48%;
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .teaser-container .teaser-box.left-textbox .teaser-textbox .teaser-title {
    display: block;
    text-align: left;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .teaser-container .teaser-box.left-textbox .teaser-textbox {
    padding: 0 50px;
  }
}
@media (min-width: 992px) and (min-width: 1340px) {
  .teaser-container .teaser-box.left-textbox .teaser-textbox {
    padding: 0 70px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.left-textbox .teaser-textbox:after {
    content: '\f054';
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #7f7f7f;
    font-size: 12px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .teaser-container .teaser-box.left-textbox .teaser-textbox:after {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    right: 50px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.right-textbox {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .teaser-container .teaser-box.right-textbox .teaser-textbox {
    min-width: 48%;
    max-width: 48%;
    width: 48%;
    padding: 0 40px;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .teaser-container .teaser-box.right-textbox .teaser-textbox .teaser-title {
    display: block;
    text-align: right;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .teaser-container .teaser-box.right-textbox .teaser-textbox {
    padding: 0 50px;
  }
}
@media (min-width: 992px) and (min-width: 1340px) {
  .teaser-container .teaser-box.right-textbox .teaser-textbox {
    padding: 0 60px 0 70px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.right-textbox .teaser-textbox:after {
    content: '\f053';
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #7f7f7f;
    font-size: 12px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .teaser-container .teaser-box.right-textbox .teaser-textbox:after {
    left: 50px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.top-textbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .teaser-container .teaser-box.top-textbox .teaser-textbox {
    padding: 70px 0;
    text-align: center;
    z-index: 5;
  }
  .teaser-container .teaser-box.top-textbox .teaser-textbox:after {
    content: '\f078';
    font-family: "FontAwesome";
    position: absolute;
    left: 50%;
    bottom: 80px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #7f7f7f;
    font-size: 12px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .teaser-container .teaser-box.top-textbox .teaser-textbox:after {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    right: 50px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box.top-textbox .teaser-textbox .teaser-title ul {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (min-width: 992px) {
  .teaser-container .teaser-box:hover .teaser-textbox.left-slope, .teaser-container .teaser-box:hover .teaser-textbox.right-slope {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .teaser-container .teaser-box:hover .teaser-textbox.left-slope:before, .teaser-container .teaser-box:hover .teaser-textbox.right-slope:before {
    left: 0;
    right: 0;
    -webkit-transform: skew(0deg);
            transform: skew(0deg);
  }
}

.teaser-container .teaser-box {
  position: relative;
}
.teaser-container .teaser-box > a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.programs-container {
  padding: 60px 0;
}
.programs-container img {
  vertical-align: middle;
  margin: 0 auto;
}
.programs-container .programs-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.programs-container .programs-slider .slick-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-wrapper {
  background: #ffffa7;
  padding: 24px 0 0 0;
}
.footer-wrapper [class^="col"] {
  margin-bottom: 24px;
}
.footer-wrapper h4 {
  text-transform: uppercase;
  font-family: "PT Sans Caption", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #494848;
}
.footer-wrapper ul {
  list-style: none;
  color: #494848;
}
.footer-wrapper ul li {
  font-size: 14px;
  line-height: 18px;
}
.footer-wrapper ul li .fa {
  font-size: 30px;
}
.footer-wrapper .socials ul li {
  display: inline;
  margin-right: 18px;
}
.footer-wrapper .socials ul li a {
  color: #494848;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.footer-wrapper .socials ul li a:hover {
  opacity: 0.7;
}
@media (min-width: 767px) {
  .footer-wrapper .contacts ul {
    -webkit-column-count: 2;
            column-count: 2;
  }
}
.footer-wrapper .copyright-container {
  background: #6ab751;
  text-align: center;
  padding: 15px;
  line-height: 14px;
}
.footer-wrapper .copyright-container .copyright-text {
  color: #fff;
  font-size: 12px;
  line-height: 14px;
}
/*# sourceMappingURL=styles.css.map */