@font-face {
  font-family: "newsletter-icons";
  src: url("https://cdn.interactiveschools.com/websites/v1/js/OnlineNewsletter/assets/icons/newsletter-icons.ttf?65t7t1") format("truetype"), url("https://cdn.interactiveschools.com/websites/v1/js/OnlineNewsletter/assets/icons/newsletter-icons.woff?65t7t1") format("woff"), url("https://cdn.interactiveschools.com/websites/v1/js/OnlineNewsletter/assets/icons/icons/newsletter-icons.svg?65t7t1#newsletter-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.newsletter-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "newsletter-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.newsletter-icon.mute-icon:before {
  content: "\ea27";
}
.newsletter-icon.unMute-icon:before {
  content: "\ea2a";
}
.newsletter-icon.long-arrow-right-icon:before {
  content: "\e900";
}
.newsletter-icon.arrow-right-icon:before {
  content: "\e901";
}
.newsletter-icon.arrow-down-icon:before {
  content: "\e902";
}
.newsletter-icon.news-icon:before {
  content: "\e903";
}
.newsletter-icon.notices-icon:before {
  content: "\e904";
}
.newsletter-icon.grades-icon:before {
  content: "\e905";
}
.newsletter-icon.calendar-icon:before {
  content: "\e906";
}

.sprX-loading-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  right: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: bold;
  position: absolute;
  top: 0;
  --logo-url: url("https://cdn.interactiveschools.com/websites/v1/js/OnlineNewsletter/assets/sprxwidgets.svg");
}
@-webkit-keyframes diagonal-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@-moz-keyframes diagonal-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@keyframes diagonal-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.sprX-loading-container .sprX-logo {
  background: -webkit-linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 49%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 51%, rgba(255, 255, 255, 0.4) 52%, transparent 60%);
  background: -moz-linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 49%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 51%, rgba(255, 255, 255, 0.4) 52%, transparent 60%);
  background: linear-gradient(350deg, transparent 40%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 49%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 51%, rgba(255, 255, 255, 0.4) 52%, transparent 60%);
  background-size: 400% 400%;
  -webkit-animation: diagonal-gradient 3s ease infinite;
     -moz-animation: diagonal-gradient 3s ease infinite;
          animation: diagonal-gradient 3s ease infinite;
  -webkit-mask-image: var(--logo-url);
  mask-image: var(--logo-url);
  -webkit-mask-size: contain;
  mask-size: contain;
}
.sprX-loading-container .sprX-logo img {
  mix-blend-mode: plus-lighter;
  display: block;
  height: 50px;
}

:root {
  --ss-primary-color: #5897fb;
  --ss-bg-color: #ffffff;
  --ss-font-color: #4d4d4d;
  --ss-font-placeholder-color: #8d8d8d;
  --ss-disabled-color: #dcdee2;
  --ss-border-color: #dcdee2;
  --ss-highlight-color: #fffb8c;
  --ss-success-color: #00b755;
  --ss-error-color: #dc3545;
  --ss-main-height: 30px;
  --ss-content-height: 300px;
  --ss-spacing-l: 7px;
  --ss-spacing-m: 5px;
  --ss-spacing-s: 3px;
  --ss-animation-timing: 0.2s;
  --ss-border-radius: 4px;
}

@-webkit-keyframes ss-valueIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes ss-valueIn {
  0% {
    -moz-transform: scale(0);
         transform: scale(0);
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1;
  }
}

@keyframes ss-valueIn {
  0% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes ss-valueOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}
@-moz-keyframes ss-valueOut {
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0);
         transform: scale(0);
    opacity: 0;
  }
}
@keyframes ss-valueOut {
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}
.ss-hide {
  display: none !important;
}

.ss-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--ss-font-color);
  min-height: var(--ss-main-height);
  width: 100%;
  padding: var(--ss-spacing-s);
  cursor: pointer;
  border: 1px solid var(--ss-border-color);
  -moz-border-radius: var(--ss-border-radius);
       border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  outline: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color var(--ss-animation-timing);
  -moz-transition: background-color var(--ss-animation-timing);
  transition: background-color var(--ss-animation-timing);
  overflow: hidden;
}

.ss-main:focus {
  -webkit-box-shadow: 0 0 5px var(--ss-primary-color);
          box-shadow: 0 0 5px var(--ss-primary-color);
}

.ss-main.ss-disabled {
  background-color: var(--ss-disabled-color);
  cursor: not-allowed;
}

.ss-main.ss-disabled .ss-values .ss-disabled {
  color: var(--ss-font-color);
}

.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}

.ss-main.ss-open-above {
  -moz-border-radius-topleft: 0px;
       border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
       border-top-right-radius: 0px;
}

.ss-main.ss-open-below {
  -moz-border-radius-bottomleft: 0px;
       border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
       border-bottom-right-radius: 0px;
}

.ss-main .ss-values {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: var(--ss-spacing-m);
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
     -moz-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.ss-main .ss-values .ss-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--ss-spacing-s) var(--ss-spacing-m) var(--ss-spacing-s) var(--ss-spacing-m);
  margin: auto 0px auto 0px;
  line-height: 1em;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: var(--ss-font-placeholder-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ss-main .ss-values .ss-max {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: var(--ss-bg-color);
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  background-color: var(--ss-primary-color);
  -moz-border-radius: var(--ss-border-radius);
       border-radius: var(--ss-border-radius);
}

.ss-main .ss-values .ss-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0px auto var(--ss-spacing-s);
}

.ss-main .ss-values .ss-value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--ss-primary-color);
  -moz-border-radius: var(--ss-border-radius);
       border-radius: var(--ss-border-radius);
  -webkit-animation-name: ss-valueIn;
     -moz-animation-name: ss-valueIn;
          animation-name: ss-valueIn;
  -webkit-animation-duration: var(--ss-animation-timing);
     -moz-animation-duration: var(--ss-animation-timing);
          animation-duration: var(--ss-animation-timing);
  -webkit-animation-timing-function: ease-out;
     -moz-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.ss-main .ss-values .ss-value.ss-value-out {
  -webkit-animation-name: ss-valueOut;
     -moz-animation-name: ss-valueOut;
          animation-name: ss-valueOut;
  -webkit-animation-duration: var(--ss-animation-timing);
     -moz-animation-duration: var(--ss-animation-timing);
          animation-duration: var(--ss-animation-timing);
  -webkit-animation-timing-function: ease-out;
     -moz-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.ss-main .ss-values .ss-value .ss-value-text {
  font-size: 12px;
  color: var(--ss-bg-color);
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
}

.ss-main .ss-values .ss-value .ss-value-delete {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  cursor: pointer;
  border-left: solid 1px var(--ss-bg-color);
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

.ss-main .ss-values .ss-value .ss-value-delete svg {
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
}

.ss-main .ss-values .ss-value .ss-value-delete svg path {
  fill: none;
  stroke: var(--ss-bg-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-main .ss-deselect {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 8px;
  height: 8px;
  margin: 0 var(--ss-spacing-m) 0 var(--ss-spacing-m);
}

.ss-main .ss-deselect svg {
  width: 8px;
  height: 8px;
}

.ss-main .ss-deselect svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 20;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-main .ss-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
}

.ss-main .ss-arrow path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition-timing-function: ease-out;
     -moz-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition: var(--ss-animation-timing);
  -moz-transition: var(--ss-animation-timing);
  transition: var(--ss-animation-timing);
}

.ss-content {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  max-height: var(--ss-content-height);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px var(--ss-border-color);
  background-color: var(--ss-bg-color);
  -webkit-transition: opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  transition: opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  -moz-transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing), -moz-transform var(--ss-animation-timing);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing), -moz-transform var(--ss-animation-timing);
  opacity: 0;
  -webkit-transform: scaleY(0);
     -moz-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center top;
     -moz-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  overflow: hidden;
  z-index: 10000;
}

.ss-content.ss-relative {
  position: relative;
  height: 100%;
}

.ss-content.ss-open-above {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
     -moz-box-orient: vertical;
     -moz-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  opacity: 1;
  -webkit-transform: scaleY(1);
     -moz-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: center bottom;
     -moz-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -moz-border-radius-topleft: var(--ss-border-radius);
       border-top-left-radius: var(--ss-border-radius);
  -moz-border-radius-topright: var(--ss-border-radius);
       border-top-right-radius: var(--ss-border-radius);
}

.ss-content.ss-open-below {
  opacity: 1;
  -webkit-transform: scaleY(1);
     -moz-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: center top;
     -moz-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -moz-border-radius-bottomleft: var(--ss-border-radius);
       border-bottom-left-radius: var(--ss-border-radius);
  -moz-border-radius-bottomright: var(--ss-border-radius);
       border-bottom-right-radius: var(--ss-border-radius);
}

.ss-content .ss-search {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: var(--ss-spacing-l) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
}

.ss-content .ss-search input {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  padding: var(--ss-spacing-m) var(--ss-spacing-l);
  margin: 0;
  border: 1px solid var(--ss-border-color);
  -moz-border-radius: var(--ss-border-radius);
       border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  outline: 0;
  text-align: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.ss-content .ss-search input::-webkit-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input::-moz-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input:-ms-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input::-ms-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input::placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input:focus {
  -webkit-box-shadow: 0 0 5px var(--ss-primary-color);
          box-shadow: 0 0 5px var(--ss-primary-color);
}

.ss-content .ss-search .ss-addable {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: auto;
  margin: 0 0 0 var(--ss-spacing-m);
  border: 1px solid var(--ss-border-color);
  -moz-border-radius: var(--ss-border-radius);
       border-radius: var(--ss-border-radius);
}

.ss-content .ss-search .ss-addable svg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
}

.ss-content .ss-search .ss-addable svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-content .ss-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.ss-content .ss-list .ss-error {
  color: var(--ss-error-color);
  padding: var(--ss-spacing-l);
}

.ss-content .ss-list .ss-searching {
  color: var(--ss-font-color);
  padding: var(--ss-spacing-l);
}

.ss-content .ss-list .ss-optgroup.ss-close .ss-option {
  display: none !important;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: bold;
  color: var(--ss-font-color);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow) {
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--ss-spacing-m);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover {
  opacity: 0.5;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path {
  stroke: var(--ss-error-color);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 60%;
  text-align: center;
  padding: 0 var(--ss-spacing-s) 0 0;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 13px;
  height: 13px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path {
  fill: none;
  stroke: var(--ss-success-color);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child {
  stroke-width: 5;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child {
  stroke-width: 11;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 10px;
  height: 10px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition-timing-function: ease-out;
     -moz-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition: var(--ss-animation-timing);
  -moz-transition: var(--ss-animation-timing);
  transition: var(--ss-animation-timing);
}

.ss-content .ss-list .ss-optgroup .ss-option {
  padding: var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) -webkit-calc(var(--ss-spacing-l) * 3);
  padding: var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) -moz-calc(var(--ss-spacing-l) * 3);
  padding: var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) calc(var(--ss-spacing-l) * 3);
}

.ss-content .ss-list .ss-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
  color: var(--ss-font-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ss-content .ss-list .ss-option:hover {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color);
}

.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color);
}

.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  background-color: var(--ss-disabled-color);
}

.ss-content .ss-list .ss-option.ss-disabled:hover {
  color: var(--ss-font-color);
}

.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: var(--ss-highlight-color);
} 
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  -moz-animation: none;
       animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  -moz-border-radius: 5px;
       border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
       animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: -webkit-calc(100% + 2px);
  top: -moz-calc(100% + 2px);
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  -moz-border-radius-bottomright: 0;
       border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
       border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-box-flex: 1;
       flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month { /*
/*rtl:begin:ignore*/
  left: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month { /*
/*rtl:begin:ignore*/
  right: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  -moz-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  -moz-border-radius: 0;
       border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  -moz-border-radius: 0;
       border-radius: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -moz-box-align: center;
       align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-box-flex: 1;
       flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-box-flex: 1;
       flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -moz-box-align: start;
       align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  -moz-border-radius: 150px;
       border-radius: 150px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
       justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  -moz-border-radius: 50px 0 0 50px;
       border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  -moz-border-radius: 0 50px 50px 0;
       border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  -moz-border-radius: 50px;
       border-radius: 50px;
}

.flatpickr-day.inRange {
  -moz-border-radius: 0;
       border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  -moz-border-radius: 0;
       border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-box-flex: 1;
       flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  -moz-border-radius: 0;
       border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
      align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -moz-transform: translate3d(0, -20px, 0);
         transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -moz-transform: translate3d(0, -20px, 0);
         transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
  }
}
.IsTilePromo {
  display: inline-block;
  background: #858B8E;
  -moz-border-radius: 5px;
       border-radius: 5px;
  -webkit-box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.15);
          box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.15);
}
.IsTilePromo .IsTilePromo__title {
  font-weight: bold;
  font-size: 23px;
}
.IsTilePromo .IsTilePromo__text p {
  color: #fff;
  font-size: 19px;
}
.IsTilePromo .IsTilePromo__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 45px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.IsTilePromo .IsTilePromo__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.IsTilePromo .IsTilePromo__image {
  margin-right: 25px;
}
.IsTilePromo .IsTilePromo__image img {
  max-width: 60px;
}
.IsTilePromo.hasBackgroundImage .IsTilePromo__inner {
  padding: 0;
}
.IsTilePromo.hasBackgroundImage .IsTilePromo__image.isBackgroundImage {
  margin-right: 0;
}
.IsTilePromo.hasBackgroundImage .IsTilePromo__image.isBackgroundImage img {
  max-width: 100%;
  width: 100%;
}
.IsTilePromo.hasBackgroundImage .IsTilePromo__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 20px;
}
.IsTilePromo.hasBackgroundImage.hasText .IsTilePromo__inner {
  min-height: 240px;
}
.IsTilePromo.hasBackgroundImage.hasText .IsTilePromo__image.isBackgroundImage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.IsTilePromo.hasBackgroundImage.hasText .IsTilePromo__image.isBackgroundImage img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.IsTilePromo.hasUrl {
  position: relative;
}
.IsTilePromo.hasUrl .IsTilePromo__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
html.no-touch .IsTilePromo.hasUrl:hover .IsTilePromo__inner:before {
  opacity: 1;
  visibility: visible;
}

.IsNoticesWidget .IsNoticesWidget__header {
  background: #004A2C;
  color: #fff;
  -moz-border-radius: 5px 5px 0 0;
       border-radius: 5px 5px 0 0;
}
.IsNoticesWidget .IsNoticesWidget__header .IsNoticesWidget__icon i {
  font-size: 25px;
  color: #fff;
}
.IsNoticesWidget .IsNoticesWidget__header sup {
  background: #60BAB1;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  font-size: 15px;
  line-height: 27px;
}
.IsNoticesWidget .IsNoticesWidget__header label {
  font-size: 20px;
}
.IsNoticesWidget .IsNoticesWidget__header button {
  font-size: 14px;
}
.IsNoticesWidget .IsNoticesWidget__content {
  background: #fff;
  -moz-border-radius: 0 0 5px 5px;
       border-radius: 0 0 5px 5px;
}
.IsNoticesWidget .IsNoticesWidget__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
}
.IsNoticesWidget .IsNoticesWidget__header > div {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.IsNoticesWidget .IsNoticesWidget__header .IsNoticesWidget__icon {
  position: relative;
  display: inline-block;
}
.IsNoticesWidget .IsNoticesWidget__header sup {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  top: -80%;
  right: -40%;
}
.IsNoticesWidget .IsNoticesWidget__header label {
  padding-left: 20px;
  cursor: pointer;
}
.IsNoticesWidget .IsNoticesWidget__header button {
  background: none;
  border: 0;
  cursor: pointer;
}

.IsNoticesSlideOut {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9999998;
  pointer-events: none;
}
.IsNoticesSlideOut .IsNoticesSlideOut__topNav {
  background: #F5F5F5;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.IsNoticesSlideOut .IsNoticesSlideOut__body {
  background: #F5F5F5;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll i {
  color: #004A2C;
  font-size: 14px;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll span {
  font-size: 20px;
}
.IsNoticesSlideOut .IsNoticesSlideOut__close {
  background: #fff;
}
.IsNoticesSlideOut .IsNoticesSlideOut__close i:before,
.IsNoticesSlideOut .IsNoticesSlideOut__close i:after {
  background: #004A2C;
}
html.no-touch .IsNoticesSlideOut .IsNoticesSlideOut__close:hover {
  background: #858B8E;
}
html.no-touch .IsNoticesSlideOut .IsNoticesSlideOut__close:hover i:before, html.no-touch .IsNoticesSlideOut .IsNoticesSlideOut__close:hover i:after {
  background: #fff;
}
.IsNoticesSlideOut:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.IsNoticesSlideOut .IsNoticesSlideOut__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 830px;
  margin: 0 0 0 auto;
  z-index: 2;
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.IsNoticesSlideOut .IsNoticesSlideOut__topNav {
  position: relative;
  margin: 0 0 0 auto;
  font-size: 0;
  z-index: 3;
}
.IsNoticesSlideOut .IsNoticesSlideOut__body {
  min-height: -webkit-calc(100% - 50px);
  min-height: -moz-calc(100% - 50px);
  min-height: calc(100% - 50px);
  overflow-y: auto;
  height: -webkit-calc(100% - 50px);
  height: -moz-calc(100% - 50px);
  height: calc(100% - 50px);
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
html.touch .IsNoticesSlideOut .IsNoticesSlideOut__body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll {
  background: none;
  border: 0;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  pointer-events: all;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll i {
  display: inline-block;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll span {
  padding-left: 20px;
  cursor: pointer;
}
.IsNoticesSlideOut .IsNoticesSlideOut__backToAll.isVisible {
  opacity: 1;
  pointer-events: all;
}
html.no-touch .IsNoticesSlideOut .IsNoticesSlideOut__backToAll:hover i {
  -webkit-transform: rotate(180deg) translateX(10px);
     -moz-transform: rotate(180deg) translateX(10px);
      -ms-transform: rotate(180deg) translateX(10px);
          transform: rotate(180deg) translateX(10px);
}
.IsNoticesSlideOut .IsNoticesSlideOut__close {
  border: 0;
  z-index: 2;
  cursor: pointer;
  position: relative;
  left: 0;
  margin-left: 0;
  right: auto;
  top: 0;
  width: 50px;
  height: 50px;
  -moz-border-radius: 0;
       border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.IsNoticesSlideOut .IsNoticesSlideOut__close i {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.IsNoticesSlideOut .IsNoticesSlideOut__close i:before, .IsNoticesSlideOut .IsNoticesSlideOut__close i:after {
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.IsNoticesSlideOut .IsNoticesSlideOut__close i:before {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.IsNoticesSlideOut .IsNoticesSlideOut__close i:after {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.IsNoticesSlideOut .IsNoticesSlideOut__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 60px 30px 30px 30px;
}
.IsNoticesSlideOut .IsNoticesSlideOut__content .isHighlighted {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
     -moz-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  background: transparent;
  border: none;
}
.IsNoticesSlideOut .IsNoticesSlideOut__content > *:not(.isHighlighted) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.IsNoticesSlideOut h2 {
  font-size: 50px;
  font-weight: bold;
}
@-webkit-keyframes opening {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes opening {
  0% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes opening {
  0% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes closing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-moz-keyframes closing {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
  }
}
@keyframes closing {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.IsNoticesSlideOut.isOpened {
  pointer-events: all;
}
.IsNoticesSlideOut.isOpened .IsNoticesSlideOut__inner {
  -webkit-animation: opening 0.3s ease-in-out forwards;
     -moz-animation: opening 0.3s ease-in-out forwards;
          animation: opening 0.3s ease-in-out forwards;
}
.IsNoticesSlideOut.isOpened:after {
  opacity: 1;
  pointer-events: all;
}
.IsNoticesSlideOut.isClosing {
  pointer-events: none;
}
.IsNoticesSlideOut.isClosing .IsNoticesSlideOut__inner {
  -webkit-animation: closing 0.3s ease-in-out forwards;
     -moz-animation: closing 0.3s ease-in-out forwards;
          animation: closing 0.3s ease-in-out forwards;
}
.IsNoticesSlideOut.isClosing:after {
  opacity: 0;
  pointer-events: none;
}

.IsNotice {
  margin: 0 -25px;
  padding: 0 25px;
  position: relative;
}
.IsNotice .IsNotice__title {
  font-size: 20px;
  color: #004A2C;
}
.IsNotice .IsNotice__description {
  font-size: 17px;
  color: #262626;
  font-weight: 300;
  padding: 5px 0;
}
.IsNotice .IsNotice__description p:last-child {
  margin-bottom: 0;
}
.IsNotice .IsNotice__grades {
  color: #888888;
  font-size: 11px;
}
.IsNotice .IsNotice__arrow {
  font-size: 14px;
  color: #004A2C;
}
.IsNotice:not(:last-of-type) .IsNotice__inner {
  border-bottom: 1px solid rgba(0, 74, 44, 0.3);
}
.IsNotice .IsNotice__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.IsNotice .IsNotice__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 12px 0;
  border: none;
}
.IsNotice .IsNotice__contentWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.IsNotice .IsNotice__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 110px;
     -moz-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  height: 110px;
  position: relative;
  -moz-border-radius: 50%;
       border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.IsNotice .IsNotice__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.IsNotice .IsNotice__bottomInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.IsNotice .IsNotice__arrow {
  display: inline-block;
  pointer-events: none;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNotice .IsNotice__toggleHighlighted {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.IsNotice.isHighlighted {
  background: rgba(0, 0, 0, 0.05);
}
.IsNotice.isHighlighted .IsNotice__image {
  height: auto;
  -moz-border-radius: 0;
       border-radius: 0;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  display: inline-block;
  float: right;
  font-size: 0;
  position: relative;
  width: 50%;
  margin: 0 0 20px 20px;
}
.IsNotice.isHighlighted .IsNotice__image img {
  position: relative;
}
@media (max-width: 767px) {
  .IsNotice.isHighlighted .IsNotice__image {
    width: 100%;
  }
}
.IsNotice.isHighlighted .IsNotice__inner {
  display: block;
  border-bottom: none;
}
.IsNotice.isHighlighted .IsNotice__title {
  color: #100E0B;
  font-family: freight-big-pro, serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 1.875rem;
}
.IsNotice.isHighlighted .IsNotice__bottomInfo {
  display: none;
  margin-top: 20px;
}
.IsNotice.isHighlighted .IsNotice__bottomInfo .IsNotice__grades {
  color: #4e4e4e;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.875rem;
}
.IsNotice.isHighlighted .IsNotice__arrow {
  display: none;
}
.IsNotice.isHighlighted .IsNotice__toggleHighlighted {
  display: none;
}
.IsNotice.firstNotHighlighted {
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}
.IsNotice.firstNotHighlighted:before {
  content: "Other Notices";
  -webkit-transform: translateY(-30px);
     -moz-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  display: inline-block;
  color: #100E0B;
  font-family: "freight-big-pro", serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: capitalize;
}
html.no-touch .IsNotice:hover .IsNotice__arrow {
  -webkit-transform: translateX(5px);
     -moz-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

.IsCompactNotice {
  padding: 0 20px;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsCompactNotice .IsCompactNotice__title {
  font-size: 20px;
  color: #262626;
}
.IsCompactNotice .IsCompactNotice__grades {
  color: #888888;
  font-size: 11px;
}
.IsCompactNotice .IsCompactNotice__arrow {
  font-size: 10px;
  color: #004A2C;
}
.IsCompactNotice:not(:last-of-type) .IsCompactNotice__inner {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
html.no-touch .IsCompactNotice:hover {
  background: rgba(0, 0, 0, 0.05);
}
html.no-touch .IsCompactNotice:hover .IsCompactNotice__arrow {
  -webkit-transform: translateX(5px);
     -moz-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}
.IsCompactNotice .IsCompactNotice__inner {
  position: relative;
  padding: 12px 0;
}
.IsCompactNotice .IsCompactNotice__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.IsCompactNotice .IsCompactNotice__bottomInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.IsCompactNotice .IsCompactNotice__arrow {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 10px;
     -moz-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.IsEventsWidget {
  overflow: hidden;
  -webkit-box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.15);
          box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.15);
  background: #fff;
  -moz-border-radius: 5px;
       border-radius: 5px;
}
.IsEventsWidget .IsEventsWidget__tab {
  background: #858B8E;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}
.IsEventsWidget .IsEventsWidget__tab:nth-of-type(1):nth-last-of-type(1) i {
  font-size: 22px;
  color: #fff;
}
.IsEventsWidget .IsEventsWidget__tab.isActive, html.no-touch .IsEventsWidget .IsEventsWidget__tab:hover {
  color: #fff;
}
.IsEventsWidget .IsEventsWidget__tab.isActive:after, html.no-touch .IsEventsWidget .IsEventsWidget__tab:hover:after {
  opacity: 0;
}
.IsEventsWidget .IsEventsWidget__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.IsEventsWidget .IsEventsWidget__tab {
  border: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.IsEventsWidget .IsEventsWidget__tab:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsEventsWidget .IsEventsWidget__tab i {
  font-size: 0;
}
.IsEventsWidget .IsEventsWidget__tab:nth-of-type(1):nth-last-of-type(1) {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.IsEventsWidget .IsEventsWidget__tab:nth-of-type(1):nth-last-of-type(1) i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}
.IsEventsWidget .IsEventsWidget__panelContainer {
  position: relative;
}
.IsEventsWidget .IsEventsWidget__panel {
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsEventsWidget .IsEventsWidget__panel .secondLvlCss {
  max-width: unset;
  width: unset;
  margin: 5px 0 20px 20px;
}
.IsEventsWidget .IsEventsWidget__panel:not(.isVisible) {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  top: 0;
}
.IsEventsWidget .IsEventsWidget__panel.isVisible {
  opacity: 1;
}

.newsletterEvent {
  padding: 0 20px;
}
.newsletterEvent .newsletterEvent__title {
  font-size: 20px;
  line-height: 1.2;
  color: #262626;
}
.newsletterEvent .newsletterEvent__time {
  font-size: 12px;
  color: #858B8E;
}
.newsletterEvent .newsletterEvent__date {
  background: #858B8E;
  -moz-border-radius: 5px;
       border-radius: 5px;
}
.newsletterEvent .newsletterEvent__date .conn-word {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
}
.newsletterEvent .newsletterEvent__date .day {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}
.newsletterEvent .newsletterEvent__date .month {
  font-size: 12px;
  color: #fff;
}
.newsletterEvent:not(:last-of-type) .newsletterEvent__inner {
  border-bottom: 2px solid #F7F4EF;
}
.newsletterEvent .newsletterEvent__inner {
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 14px 0;
  position: relative;
}
.newsletterEvent .newsletterEvent__link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: all;
}
.newsletterEvent .newsletterEvent__content {
  margin-left: 14px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.newsletterEvent .newsletterEvent__date {
  height: 42px;
  min-width: 46px;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 0 9px;
  z-index: 3;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.newsletterEvent .newsletterEvent__date:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.newsletterEvent .newsletterEvent__date .newsletterEvent__dateInner {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  z-index: 2;
  position: relative;
}
.newsletterEvent .newsletterEvent__date .newsletterEvent__dateInner:before, .newsletterEvent .newsletterEvent__date .newsletterEvent__dateInner:after {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.newsletterEvent .newsletterEvent__date .start-date {
  display: inline-block;
  vertical-align: middle;
}
.newsletterEvent .newsletterEvent__date .end-date {
  display: inline-block;
  vertical-align: middle;
}
.newsletterEvent .newsletterEvent__date .conn-word {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}
.newsletterEvent .newsletterEvent__date .day {
  display: block;
  text-align: center;
}
.newsletterEvent .newsletterEvent__date .month {
  display: block;
  text-transform: uppercase;
  text-align: center;
}

.newsletterCard .newsletterCard__title {
  font-size: 32px;
  font-family: "freight-big-pro", serif;
  line-height: 1.1;
  font-weight: bold;
  color: #fff;
}
.newsletterCard .newsletterCard__shortDesc {
  font-size: 19px;
  color: #fff;
}
.newsletterCard .newsletterCard__inner {
  position: relative;
}
.newsletterCard .newsletterCard__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.newsletterCard .newsletterCard__image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.7;
}
.newsletterCard img {
  width: 100%;
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
}
.newsletterCard .newsletterCard__text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.newsletterCard[data-horizontal=center] .newsletterCard__text {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsletterCard[data-horizontal=left] {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.newsletterCard[data-horizontal=right] .newsletterCard__text {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.newsletterCard[data-vertical=top] .newsletterCard__text {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.newsletterCard[data-vertical=middle] .newsletterCard__text {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsletterCard[data-vertical=bottom] .newsletterCard__text {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.newsletterCard[data-horizontal=center][data-vertical=middle] .newsletterCard__image:before {
  background: -webkit-radial-gradient(center, ellipse, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 84%, rgba(0, 0, 0, 0) 100%);
  background: -moz-radial-gradient(center, ellipse, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 84%, rgba(0, 0, 0, 0) 100%);
  background: radial-gradient(ellipse at center, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 84%, rgba(0, 0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=center][data-vertical=top] .newsletterCard__image:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=center][data-vertical=bottom] .newsletterCard__image:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=left][data-vertical=top] .newsletterCard__image:before {
  background: -webkit-linear-gradient(315deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(315deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=left][data-vertical=middle] .newsletterCard__image:before {
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=left][data-vertical=bottom] .newsletterCard__image:before {
  background: -webkit-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=right][data-vertical=top] .newsletterCard__image:before {
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=right][data-vertical=middle] .newsletterCard__image:before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.newsletterCard[data-horizontal=right][data-vertical=bottom] .newsletterCard__image:before {
  background: -webkit-linear-gradient(315deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -moz-linear-gradient(315deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.newsletterCard.hasSlideOut {
  cursor: pointer;
}
.newsletterCard.noImage .newsletterCard__text {
  position: relative;
}
html.no-touch .newsletterCard:hover .newsletterCard__image img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.IsNewsletterHero {
  position: relative;
  height: 75vh;
  height: 75svh;
}
.IsNewsletterHero .IsNewsletterHero__media, .IsNewsletterHero img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.IsNewsletterHero__container {
  max-width: 1900px;
  left: 0;
  right: 0;
  margin: auto;
}
.IsNewsletterHero img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.IsNewsletterHero .IsNewsletterThumb {
  position: absolute;
  bottom: -145px;
  text-align: left;
  padding: 0 100px;
}
.IsNewsletterHero .IsNewsletterThumb > div {
  position: relative;
  width: 290px;
  height: 290px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 16px 22px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 16px 22px 0 rgba(0, 0, 0, 0.16);
}
.IsNewsletterHero__strapline {
  position: absolute;
  padding: 0 430px;
  text-align: center;
}
.IsNewsletterHero__strapline.isPrimary {
  bottom: 20px;
}
.IsNewsletterHero__strapline.isPrimary .js-newsletter-tags {
  margin: 0;
  color: #fff;
}
.IsNewsletterHero__strapline.isPrimary h1 {
  color: #fff;
  display: inline-block;
  width: auto;
  line-height: 1;
}
.IsNewsletterHero__strapline.isSecondary {
  position: relative;
  margin: 30px auto;
}
.IsNewsletterHero__strapline.isSecondary p {
  margin: 0;
  text-align: left;
}
.IsNewsletterHero__strapline.isSecondary h1 {
  padding-bottom: 10px;
  line-height: 1;
  color: #262626;
}
.IsNewsletterHero__strapline.isSecondary h1, .IsNewsletterHero__strapline.isSecondary .js-newsletter-tags {
  display: none;
  color: #262626;
}
.IsNewsletterHero__strapline.isSecondary .js-newsletter-tags {
  color: #262626;
}
.IsNewsletterHero__strapline.secondLvlCss .js-newsletter-tags {
  font-weight: 300;
  text-align: left;
}
.IsNewsletterHero__subtitle {
  text-align: left;
  min-height: 55px;
}
@media (max-width: 1400px) {
  .IsNewsletterHero__strapline {
    position: absolute;
    padding: 0 360px;
  }
  .IsNewsletterHero .IsNewsletterThumb {
    padding: 0 70px;
    bottom: -130px;
  }
  .IsNewsletterHero .IsNewsletterThumb > div {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1250px) {
  .IsNewsletterHero__strapline.isPrimary {
    display: none;
  }
  .IsNewsletterHero__strapline.isSecondary {
    margin: 180px auto 30px auto;
    padding: 0 70px;
    text-align: left;
  }
  .IsNewsletterHero__strapline.isSecondary h1 {
    display: block;
    padding-bottom: 20px;
  }
  .IsNewsletterHero__strapline.isSecondary .js-newsletter-tags {
    display: block;
  }
}
@media (max-width: 1023px) {
  .IsNewsletterHero__strapline.isSecondary {
    padding: 0 30px;
  }
  .IsNewsletterHero .IsNewsletterThumb {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .IsNewsletterHero {
    height: 65vh;
    height: 65svh;
    margin-top: 0;
  }
  .IsNewsletterHero__strapline.isSecondary {
    margin: 100px auto 30px auto;
  }
  .IsNewsletterHero .IsNewsletterThumb {
    bottom: -70px;
  }
  .IsNewsletterHero .IsNewsletterThumb > div {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 400px) {
  .IsNewsletterHero .IsNewsletterThumb {
    bottom: -45px;
  }
  .IsNewsletterHero .IsNewsletterThumb > div {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 340px) {
  .IsNewsletterHero .IsNewsletterThumb {
    bottom: -35px;
  }
  .IsNewsletterHero .IsNewsletterThumb > div {
    width: 70px;
    height: 70px;
  }
}

.IsVideoHeader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.IsVideoHeader .IsVideoHeader__controls {
  --color: #000;
  --hoverColor: $newsletter-baseColor;
}
.IsVideoHeader .IsVideoHeader__controls button {
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: #F6F7F9;
  border: 0;
  -webkit-box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.16);
          box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.16);
}
.IsVideoHeader video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.IsVideoHeader .IsVideoHeader__controls {
  position: absolute;
  left: 20px;
  bottom: 25px;
  z-index: 10;
  font-size: 0;
  --color: #000;
  --hoverColor: #858B8E;
}
.IsVideoHeader .IsVideoHeader__controls button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  margin-top: 12px;
}
.IsVideoHeader .IsVideoHeader__toggleAudio i {
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -10px;
  color: var(--color);
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.IsVideoHeader .IsVideoHeader__toggleAudio i.mute-icon {
  opacity: 0;
}
.IsVideoHeader .IsVideoHeader__toggleAudio.soundIsOn .unMute-icon {
  opacity: 0;
}
.IsVideoHeader .IsVideoHeader__toggleAudio.soundIsOn .mute-icon {
  opacity: 1;
}
html.no-touch .IsVideoHeader .IsVideoHeader__toggleAudio:hover i {
  color: var(--hoverColor);
}
.IsVideoHeader .IsVideoHeader__togglePlay.isPaused:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-left: 14px solid var(--color);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin: -7px 0 0 -6px;
  -webkit-transition: border-left-color 0.2s ease-in-out;
  -moz-transition: border-left-color 0.2s ease-in-out;
  transition: border-left-color 0.2s ease-in-out;
}
html.no-touch .IsVideoHeader .IsVideoHeader__togglePlay.isPaused:hover:after {
  border-left-color: var(--hoverColor);
}
.IsVideoHeader .IsVideoHeader__togglePlay.isPlaying:before, .IsVideoHeader .IsVideoHeader__togglePlay.isPlaying:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 20px;
  -moz-border-radius: 4px;
       border-radius: 4px;
  margin-top: -10px;
  background: var(--color);
  left: 50%;
}
.IsVideoHeader .IsVideoHeader__togglePlay.isPlaying:before {
  margin-left: -7px;
}
.IsVideoHeader .IsVideoHeader__togglePlay.isPlaying:after {
  margin-left: 3px;
}
html.no-touch .IsVideoHeader .IsVideoHeader__togglePlay.isPlaying:hover:before, html.no-touch .IsVideoHeader .IsVideoHeader__togglePlay.isPlaying:hover:after {
  background: var(--hoverColor);
}

.newsletterCardSlideOut {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 9999998;
  overflow: hidden;
}
.newsletterCardSlideOut .newsletterCardSlideOut__topNav {
  background: #F5F5F5;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.newsletterCardSlideOut .newsletterCardSlideOut__close {
  background: #FFF;
}
.newsletterCardSlideOut .newsletterCardSlideOut__close i {
  color: #100E0B;
}
html.no-touch .newsletterCardSlideOut .newsletterCardSlideOut__close:hover {
  background: #858B8E;
}
html.no-touch .newsletterCardSlideOut .newsletterCardSlideOut__close:hover i {
  color: #fff;
}
.newsletterCardSlideOut .newsletterCardSlideOut__content {
  background: #F5F5F5;
}
.newsletterCardSlideOut .newsletterCardSlideOut__title {
  font-family: "freight-big-pro", serif;
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 300;
  color: #100E0B;
  margin: 0 0 20px;
}
.newsletterCardSlideOut:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
.newsletterCardSlideOut .newsletterCardSlideOut__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 830px;
  margin: 0 0 0 auto;
  z-index: 2;
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
}
.newsletterCardSlideOut .newsletterCardSlideOut__topNav {
  position: relative;
  margin: 0 0 0 auto;
  font-size: 0;
  z-index: 3;
}
.newsletterCardSlideOut .newsletterCardSlideOut__close {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  border: 0;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.newsletterCardSlideOut .newsletterCardSlideOut__close i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}
.newsletterCardSlideOut .newsletterCardSlideOut__close i:before, .newsletterCardSlideOut .newsletterCardSlideOut__close i:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background: currentColor;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.newsletterCardSlideOut .newsletterCardSlideOut__close i:before {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.newsletterCardSlideOut .newsletterCardSlideOut__close i:after {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.newsletterCardSlideOut .newsletterCardSlideOut__content {
  min-height: -webkit-calc(100% - 50px);
  min-height: -moz-calc(100% - 50px);
  min-height: calc(100% - 50px);
  overflow-y: auto;
  height: -webkit-calc(100% - 50px);
  height: -moz-calc(100% - 50px);
  height: calc(100% - 50px);
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
html.touch .newsletterCardSlideOut .newsletterCardSlideOut__content {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.newsletterCardSlideOut .newsletterCardSlideOut__featuredPost {
  padding: 30px;
}
.newsletterCardSlideOut .newsletterCardSlideOut__image {
  margin-bottom: 20px;
}
.newsletterCardSlideOut .newsletterCardSlideOut__image img {
  width: 100%;
}
@keyframes opening {
  0% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes closing {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.newsletterCardSlideOut.isOpened .newsletterCardSlideOut__inner {
  -webkit-animation: opening 0.3s ease-in-out forwards;
     -moz-animation: opening 0.3s ease-in-out forwards;
          animation: opening 0.3s ease-in-out forwards;
}
.newsletterCardSlideOut.isClosing .newsletterCardSlideOut__inner {
  -webkit-animation: closing 0.3s ease-in-out forwards;
     -moz-animation: closing 0.3s ease-in-out forwards;
          animation: closing 0.3s ease-in-out forwards;
}

.IsNewsletterFilters {
  position: absolute;
  bottom: -82px;
  padding: 0 100px;
  height: 164px;
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 5;
  pointer-events: none;
}
.IsNewsletterFilters .IsNewsletter__datePicker {
  display: inline-block;
  width: 260px;
  padding: 0 15px 0 55px;
  position: relative;
  margin-bottom: 60px;
  pointer-events: all;
  border: 2px solid rgba(133, 139, 142, 0.4);
  -moz-border-radius: 60px;
       border-radius: 60px;
  font-size: 16px;
  min-height: 48px;
  background: #fff;
  color: black;
}
.IsNewsletterFilters .IsNewsletter__datePicker .datePicker-icon {
  color: #262626;
}
.IsNewsletterFilters .IsNewsletter__datePicker .datePicker-arrow {
  color: #262626;
}
.IsNewsletterFilters .IsNewsletter__datePicker input {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
  line-height: 48px;
}
@media (max-width: 767px) {
  .IsNewsletterFilters .IsNewsletter__datePicker input {
    font-size: 16px;
    line-height: 42px;
    -webkit-transform: scale(0.875);
       -moz-transform: scale(0.875);
        -ms-transform: scale(0.875);
            transform: scale(0.875);
    -webkit-transform-origin: left center;
       -moz-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    margin-right: -14.28%;
  }
}
.IsNewsletterFilters .IsNewsletter__datePicker .datePicker-icon {
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -11px;
  pointer-events: none;
  font-size: 22px;
}
.IsNewsletterFilters .IsNewsletter__datePicker .datePicker-arrow {
  display: block;
  position: absolute;
  cursor: pointer;
  pointer-events: none;
  right: 18px;
  top: 50%;
  margin-top: -11px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNewsletterFilters .IsNewsletter__datePicker .IsNewsletter__datePickerToggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  z-index: 2;
  cursor: pointer;
}
.IsNewsletterFilters .IsNewsletter__datePicker input {
  padding-left: 5px;
  background: none;
}
.IsNewsletterFilters .IsNewsletter__datePicker.isOpened .datePicker-arrow {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.IsNewsletterFilters .IsNewsletter__dropdown {
  margin-left: 25px;
  position: relative;
  width: 260px;
  display: inline-block;
  pointer-events: all;
}
.IsNewsletterFilters .IsNewsletter__dropdown .arrow-down-icon {
  color: #262626;
}
.IsNewsletterFilters .IsNewsletter__dropdown .grades-icon {
  color: #262626;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main {
  padding: 0 10px 0 55px;
  min-height: 52px;
  border: 2px solid rgba(133, 139, 142, 0.4);
  -moz-border-radius: 60px;
       border-radius: 60px;
  background: #fff;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values > *,
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-value-text {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content {
  background: #fff;
  -moz-border-radius: 5px;
       border-radius: 5px;
  -webkit-box-shadow: 0 10px 22px 0 rgba(17, 21, 21, 0.15);
          box-shadow: 0 10px 22px 0 rgba(17, 21, 21, 0.15);
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content .ss-list .ss-option {
  font-size: 16px;
  color: #262626;
  padding: 10px 30px;
  text-transform: capitalize;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content .ss-list .ss-option:hover {
  background: rgba(0, 0, 0, 0.1);
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content .ss-list .ss-option .ss-checkbox {
  width: 18px;
  height: 18px;
  -moz-border-radius: 3px;
       border-radius: 3px;
  border: 1px solid #858B8E;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content .ss-list .ss-option.ss-selected {
  background: none;
  color: initial;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content .ss-list .ss-option.ss-selected .ss-checkbox {
  background: #858B8E;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content .ss-list .ss-option.ss-selected:hover {
  background: rgba(0, 0, 0, 0.1);
}
.IsNewsletterFilters .IsNewsletter__dropdown .arrow-down-icon {
  margin: -11px 0 0 0;
  position: absolute;
  right: 18px;
  top: 50%;
  pointer-events: none;
  z-index: 2;
  font-size: 16px;
  visibility: hidden;
}
.IsNewsletterFilters .IsNewsletter__dropdown .grades-icon {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -12px;
  z-index: 2;
  pointer-events: none;
  font-size: 22px;
  visibility: hidden;
}
.IsNewsletterFilters .IsNewsletter__dropdown:has(.ss-main) .newsletter-icon {
  visibility: visible;
}
.IsNewsletterFilters .IsNewsletter__dropdown select {
  display: none;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main {
  width: 100%;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 20px;
  top: 50%;
  margin-top: -11px;
  background-size: contain;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main.ss-open-below .ss-arrow, .IsNewsletterFilters .IsNewsletter__dropdown .ss-main.ss-open-above .ss-arrow {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-deselect {
  display: none !important;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-deselect svg {
  display: none;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-arrow {
  width: 30px;
  height: 30px;
  display: none;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-arrow path {
  display: none;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main.hideOverflow .ss-values:after {
  opacity: 1;
  visibility: visible;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 80%;
  overflow: hidden;
  gap: 0;
  position: relative;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none;
}
@media (max-width: 766px) {
  .IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values {
    padding-left: 10px;
  }
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values .ss-value {
  -moz-border-radius: 0;
       border-radius: 0;
  background: transparent;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values .ss-value:first-child .ss-value-text {
  padding-left: 0;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values .ss-value .ss-value-delete {
  display: none;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values .ss-value .ss-value-text {
  color: #000;
  padding-right: 0;
  white-space: nowrap;
  position: relative;
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values .ss-value:not(:last-child) .ss-value-text:after {
  content: ",";
}
.IsNewsletterFilters .IsNewsletter__dropdown .ss-content {
  top: 100% !important;
  left: 0 !important;
  margin-top: 0 !important;
  border: 0;
  padding: 20px 0;
}
@media (max-width: 1400px) {
  .IsNewsletterFilters {
    padding: 0 70px;
  }
}
@media (max-width: 1023px) {
  .IsNewsletterFilters {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .IsNewsletterFilters {
    bottom: -52px;
    height: 108px;
  }
  .IsNewsletterFilters .IsNewsletter__datePicker {
    margin-bottom: 20px;
    padding-left: 39px;
    width: 180px;
    min-height: 42px;
  }
  .IsNewsletterFilters .IsNewsletter__datePicker .datePicker-icon {
    font-size: 18px;
    margin-top: -9px;
    left: 15px;
  }
  .IsNewsletterFilters .IsNewsletter__datePicker .datePicker-arrow {
    font-size: 14px;
    margin-top: -9px;
    right: 12px;
  }
  .IsNewsletterFilters .IsNewsletter__dropdown {
    width: 180px;
  }
  .IsNewsletterFilters .IsNewsletter__dropdown .arrow-down-icon {
    font-size: 14px;
    margin-top: -9px;
    right: 12px;
  }
  .IsNewsletterFilters .IsNewsletter__dropdown .grades-icon {
    font-size: 18px;
    margin-top: -10px;
  }
  .IsNewsletterFilters .IsNewsletter__dropdown .ss-main {
    min-height: 45px;
    padding: 0 4px 0 39px;
  }
  .IsNewsletterFilters .IsNewsletter__dropdown .ss-main .ss-values > * {
    font-size: 13px;
  }
}

.flatpickr-calendar.open {
  z-index: 7;
}
.flatpickr-calendar .flatpickr-months {
  background: #858B8E;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month,
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #fff;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  color: black;
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.selected {
  background: #858B8E;
  border: 0;
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.selected.week {
  -webkit-box-shadow: -5px 0 0 #858B8E, 5px 0 0 #858B8E;
          box-shadow: -5px 0 0 #858B8E, 5px 0 0 #858B8E;
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.prevMonthDay:not(.selected):not(.flatpickr-disabled), .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.nextMonthDay:not(.selected):not(.flatpickr-disabled) {
  color: #393939;
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.flatpickr-disabled {
  color: rgba(57, 57, 57, 0.5);
  pointer-events: none;
}
.flatpickr-calendar:before {
  display: none;
}
.flatpickr-calendar .flatpickr-months {
  height: 50px;
  position: relative;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month {
  height: 50px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month, .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  height: 100%;
  padding: 15px;
  -ms-touch-action: none;
      touch-action: none;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg, .flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month {
  height: 50px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper span {
  opacity: 1;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper span.arrowUp:after {
  opacity: 1;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper span.arrowDown:after {
  opacity: 1;
}
.flatpickr-calendar .numInput {
  pointer-events: none;
}
@media (max-width: 767px) {
  .flatpickr-calendar {
    right: 30px !important;
  }
}

.IsNewsletter {
  min-height: 500px;
  padding: 0 30px;
  margin: 100px auto;
  position: relative;
}
.IsNewsletter .IsNewsletter__content {
  width: auto;
  margin: 0;
  font-size: 0;
  min-height: 750px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.IsNewsletter .IsNewsletter__content > * {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  -webkit-box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.15);
          box-shadow: 0 16px 22px 0 rgba(17, 21, 21, 0.15);
}
.IsNewsletter .IsNewsletter__content > *:not(.IsNoticesWidget):not(.IsNewsletter__carouselContainer) {
  -moz-border-radius: 5px;
       border-radius: 5px;
  overflow: hidden;
}
.IsNewsletter .IsNewsletter__carouselContainer {
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.IsNewsletter .IsNewsletter__carouselContainer.featuredEvents .carousel-controls {
  padding-bottom: 0;
}
.IsNewsletter .IsNewsletter__carouselContainer .carousel-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  padding-bottom: 100%;
}
.IsNewsletter .IsNewsletter__carouselContainer .arrows-container {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.IsNewsletter .IsNewsletter__carouselContainer .arrows-container > * {
  pointer-events: all;
  color: #fff;
}
.IsNewsletter .IsNewsletter__carouselContainer .slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  z-index: 2;
  text-align: center;
}
.IsNewsletter .IsNewsletter__carouselContainer .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  pointer-events: all;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background: transparent;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.IsNewsletter .IsNewsletter__carouselContainer .slick-dots li:before {
  display: none;
}
.IsNewsletter .IsNewsletter__carouselContainer .slick-dots li button {
  width: 12px;
  height: 12px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  font-size: 0;
  border: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  opacity: 0.6;
  margin: -6px 0 0 -6px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.IsNewsletter .IsNewsletter__carouselContainer .slick-dots li.slick-active button, html.no-touch .IsNewsletter .IsNewsletter__carouselContainer .slick-dots li:hover button {
  opacity: 1;
}
.IsNewsletter .IsNewsletter__carouselContainer .slick-list {
  overflow: visible;
}
.IsNewsletter .IsNewsletter__carousel {
  position: relative;
}
.IsNewsletter .IsNewsletter__carousel:not(.slick-initialized) > *:nth-of-type(n+2) {
  display: none;
}
.IsNewsletter .IsNewsletter__carouselLabel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 11px 20px;
  top: -49px;
  left: 0;
  right: 0;
  -moz-border-radius: 5px 5px 0 0;
       border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.IsNewsletter .IsNewsletter__carouselLabel i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 0 0;
}
.IsNewsletter .IsNewsletter__carouselLabel span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.IsNewsletter .IsNewsletter__carouselLabel.forEvents {
  background: #858B8E;
}
.IsNewsletter .IsNewsletter__carouselLabel.forEvents i {
  font-size: 22px;
  color: #fff;
}
.IsNewsletter .IsNewsletter__carouselLabel.forNews {
  background: #100E0B;
}
.IsNewsletter .IsNewsletter__carouselLabel.forNews i {
  font-size: 22px;
  color: #fff;
}
.IsNewsletter .IsNewsletter__nav {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 100px 0 50px;
  display: none;
}
.IsNewsletter .IsNewsletter__button {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNewsletter .IsNewsletter__button i {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  position: relative;
}
.IsNewsletter .IsNewsletter__button i:before, .IsNewsletter .IsNewsletter__button i:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.IsNewsletter .IsNewsletter__button i:after {
  opacity: 0;
}
.IsNewsletter .IsNewsletter__button.isNext {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.IsNewsletter .IsNewsletter__button.isNext i {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
html.no-touch .IsNewsletter .IsNewsletter__button:hover i:before {
  opacity: 0;
}
html.no-touch .IsNewsletter .IsNewsletter__button:hover i:after {
  opacity: 1;
}
.IsNewsletter .IsNewsletter__button.isDisabled {
  opacity: 0.5;
  pointer-events: none;
}
.IsNewsletter.isVisible .IsNewsletter__content {
  opacity: 1;
  min-height: auto;
}
.IsNewsletter.isVisible .sprX-loading-container {
  opacity: 0;
}
@media (max-width: 1250px) {
  .IsNewsletter {
    margin: 30px auto 100px auto;
  }
}