﻿.event-now-dot {
  position: relative;
  height: 12px;
  width: 12px;
  background: #66bb6a;
  border-radius: 50%;
  display: inline-block;
  margin: 5px 0 5px 2px;
}

.event-now-dot:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #66bb6a;
  animation: pulse 2s infinite;
  transform-origin: center center;
}
.shadow-none {
  box-shadow: none !important;
}
.calendarIcon {
  font-size: 16px;
  opacity: 0.75;
  width: 18px;
  vertical-align: sub;
  margin-right: 10px;
  color: #13689f;
}

#eventsCalendarInfoModal button.close {
  float: none !important;
}

.rsvp-dropdown {
  border: 1px solid #f1f1f1 !important;
  box-shadow: 0 1px 15px 1px rgba(62, 57, 107, 0.07);
  right: 0;
  left: inherit;
  text-align: right;
  min-width: 120px;
}

#projectSidebar .rsvpGroup {
  display: block;
  margin-bottom: 10px;
}

.rsvp-dropdown > li {
  padding: 5px 10px;
  cursor: pointer;
}

.rsvp-dropdown > li:hover {
  background: #f5f5f5;
}

.upcomingMeetings li p:last-of-type {
  display: inline-block;
}

.rsvpGroup,
.meeting-accessibility-wrapper {
  display: inline-block;
}

.cz-media-card-content__content .sub-content a:not(.btn) {
  text-decoration: underline;
  color: #13689f !important;
}

.meeting-signup-confirmation .event-address {
  padding: 20px;
}

.cz-media-card-content__content .sub-content a:hover {
  font-weight: bold;
  text-decoration: none;
}

button.btn.toggle-accessibility-options {
  line-height: 0.8;
  vertical-align: bottom;
  font-weight: 600;
  height: 25px;
  font-size: 13px;
}

.meetingContent {
  padding: 13px 13px;
  background: #f2f3f6;
}

@media (max-device-width: 768px) {
  .rsvpGroup {
    text-align: center;
    width: 100%;
    margin: 10px 0 0;
  }
  .form .fas.fa-info-circle {
    display: none;
  }
}

@media (min-device-width: 768px) {
  .meeting-accessibility-wrapper {
    float: right;
  }
  .cz-media-card-content__content__principal .rsvpGroup {
    float: right;
  }
}

.event-icon {
  float: left;
}

.rsvpGroup .btn {
  background: #13689f;
  color: #fff !important;
  font-weight: 600;
}

.rsvp-form-outer .rsvp-form {
  max-width: 450px;
  margin: auto auto 25px;
  padding: 0 20px 0;
  margin-top: 5px;
  /*background: #fefefe;*/
}
@media (max-width: 667px) {
  form.rsvp-form {
    padding: 0 !important;
  }
}

.rsvp-form .checkbox.i-checks {
  font-size: 13px;
}

.rsvp-form .vote-button-inner-radio {
  display: inline-block;
  margin-right: 6px !important;
}

.rsvp-form legend.poll-header {
  margin-bottom: 5px;
  border-bottom: 0;
}

.rsvp-form .customRegistrationFormQuestion.poll-body {
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.rsvp-form .vote-button.radio {
  margin-top: 0;
}

@media (max-width: 768px) {
  .public-header {
    z-index: 1;
  }
}

@media (min-width: 667px) {
  /*Do not stretch out the agenda items on a modal*/
  .modal-body .rsvp-form .dvAgendaList.well {
    margin-left: auto;
    margin-right: auto;
  }
}

.rsvp-form label.vote-button-inner,
.rsvp-form .vote-button .checkbox {
  padding-left: 10px;
}

.rsvp-form .vote-button {
  margin-top: 0;
}
.rsvp-form .vote-button i {
  /*Keep checkboxes and radio buttons from aligning outside box*/
  margin-left: 0;
}
/* Prevent BS5 list group defaults from adding a second border to inputs */
.rsvp-form .list-group-item {
  border: none;
}

.rsvpGroup .dropdown-toggle {
  background: #13689f;
  color: #fff !important;
  line-height: 0.8;
  vertical-align: bottom;
  font-weight: 600;
}

.rsvpGroup .caret {
  margin-left: 3px;
}

.cz-text-bs--fixed.event-description > * {
  text-align: left;
}

.event-description img {
  max-width: 100% !important;
  height: auto !important;
}

.date-thumbnail span {
  margin-bottom: 10px;
  display: inline-block;
}

@media only screen and (max-device-width: 480px) {
  p.date-thumbnail__month {
    font-size: 1.5em;
    margin-bottom: 0.25em;
    margin-top: 0.5em;
  }

  p.date-thumbnail__day {
    font-size: 2.4em;
  }

  .rsvpGroup button.btn {
    font-size: 1.3em;
    line-height: 1.4em;
    padding-left: 14px;
    padding-right: 14px;
  }

  .rsvp-form-outer.well {
    border: none;
    box-shadow: none;
    padding: 0;
    background: #fafafa;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  25% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(4.5);
    opacity: 0;
  }
}

@-webkit-keyframes moveIn {
  0% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes moveOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  65% {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  65% {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes elevate {
  to {
    -webkit-transform: perspective(200px) translateZ(30px);
    transform: perspective(200px) translateZ(30px);
    -webkit-box-shadow: 0 1px 17px 0 rgba(40, 44, 53, 0.1),
      0 2px 4px 0 rgba(40, 44, 53, 0.1);
    box-shadow: 0 1px 17px 0 rgba(40, 44, 53, 0.1),
      0 2px 4px 0 rgba(40, 44, 53, 0.1);
  }
}

@-webkit-keyframes shake {
  20% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes depress {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes shorten {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.5, 0.5);
    transform: scale(1.5, 0.5);
  }
}

@-webkit-keyframes pop {
  20% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes bounce {
  20% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  70% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

  85% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  90% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  95% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@-webkit-keyframes rotateX {
  to {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
}

@-webkit-keyframes rotateY {
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes bouncy {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-transform: translate3d(0, -8%, 0);
    transform: translate3d(0, -8%, 0);
  }

  70% {
    -webkit-transform: translate3d(0, -4%, 0);
    transform: translate3d(0, -4%, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -2%, 0);
    transform: translate3d(0, -2%, 0);
  }
}

@-webkit-keyframes drawDash {
  to {
    stroke-dashoffset: 0;
  }
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

aside,
main,
section {
  display: block;
}

[hidden] {
  display: none;
}

a:active,
a:hover {
  outline: 0;
}

b {
  font-weight: 700;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

.cz-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  margin-bottom: 15px;
}

.cz-card--neutral {
  background-color: transparent;
  -webkit-transition: background-color 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    -webkit-box-shadow 0.24s cubic-bezier(0.4, 0, 0.3, 1);
  transition: background-color 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    -webkit-box-shadow 0.24s cubic-bezier(0.4, 0, 0.3, 1);
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    background-color 0.24s cubic-bezier(0.4, 0, 0.3, 1);
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    background-color 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    -webkit-box-shadow 0.24s cubic-bezier(0.4, 0, 0.3, 1);
}

@media (min-width: 960px) {
  .cz-card--neutral:hover {
    -webkit-box-shadow: 0 4px 15px 0 rgba(40, 44, 53, 0.06),
      0 2px 2px 0 rgba(40, 44, 53, 0.08);
    box-shadow: 0 4px 15px 0 rgba(40, 44, 53, 0.06),
      0 2px 2px 0 rgba(40, 44, 53, 0.08);
    background-color: #fff;
    border-radius: 4px;
    z-index: 3;
  }

  #projectSidebar .cz-card--neutral:hover {
    -webkit-box-shadow: 0 2px 0px 0 rgba(40, 44, 53, 0.08);
    box-shadow: 0 2px 0px 0 rgba(40, 44, 53, 0.08);
  }
}

@keyframes bouncy {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-transform: translate3d(0, -8%, 0);
    transform: translate3d(0, -8%, 0);
  }

  70% {
    -webkit-transform: translate3d(0, -4%, 0);
    transform: translate3d(0, -4%, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -2%, 0);
    transform: translate3d(0, -2%, 0);
  }
}

@keyframes drawDash {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes croppermarchingants {
  to {
    stroke-dashoffset: 100%;
  }
}

@keyframes croppermarchingants {
  to {
    stroke-dashoffset: 100%;
  }
}

.cz-field__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes phabPopIn {
  0% {
    -webkit-transform: rotate(0) scale(0.9);
    transform: rotate(0) scale(0.9);
  }

  50%,
  to {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

@keyframes phabPopIn {
  0% {
    -webkit-transform: rotate(0) scale(0.9);
    transform: rotate(0) scale(0.9);
  }

  50%,
  to {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

@-webkit-keyframes phabPopOut {
  0% {
    -webkit-transform: rotate(-135deg) scale(0.9);
    transform: rotate(-135deg) scale(0.9);
  }

  50%,
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes phabPopOut {
  0% {
    -webkit-transform: rotate(-135deg) scale(0.9);
    transform: rotate(-135deg) scale(0.9);
  }

  50%,
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes cylon {
  0% {
    left: -110%;
  }

  to {
    left: 110%;
  }
}

@keyframes cylon {
  0% {
    left: -110%;
  }

  to {
    left: 110%;
  }
}

.cz-align--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cz-align--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cz-align--center {
  -ms-flex-pack: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
}

.cz-align--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.cz-events-cell {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

.cz-events-cell {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

.cz-events-cell.cz-events-cell--align-center {
  vertical-align: middle;
}

.cz-events-cell-6-12 {
  width: 50%;
}

@media (min-width: 792px) {
  .cz-events-cell-mn-1-12 {
    width: 8.33333%;
  }

  .cz-events-cell-mn-2-12 {
    width: 16.66667%;
  }

  .cz-events-cell-mn-3-12 {
    width: 25%;
  }

  .cz-events-cell-mn-4-12 {
    width: 33.33333%;
  }

  .cz-events-cell-mn-5-12 {
    width: 41.66667%;
  }

  .cz-events-cell-mn-6-12 {
    width: 50%;
  }

  .cz-events-cell-mn-7-12 {
    width: 58.33333%;
  }

  .cz-events-cell-mn-8-12 {
    width: 66.66667%;
  }

  .cz-events-cell-mn-9-12 {
    width: 75%;
  }

  .cz-events-cell-mn-10-12 {
    width: 83.33333%;
  }

  .cz-events-cell-mn-11-12 {
    width: 91.66667%;
  }

  .cz-events-cell-mn-12-12 {
    width: 100%;
  }

  .cz-events-cell-mn-1-9 {
    width: 11.11111%;
  }

  .cz-events-cell-mn-2-9 {
    width: 22.22222%;
  }

  .cz-events-cell-mn-3-9 {
    width: 33.33333%;
  }

  .cz-events-cell-mn-4-9 {
    width: 44.44444%;
  }

  .cz-events-cell-mn-5-9 {
    width: 55.55556%;
  }

  .cz-events-cell-mn-6-9 {
    width: 66.66667%;
  }

  .cz-events-cell-mn-7-9 {
    width: 77.77778%;
  }

  .cz-events-cell-mn-8-9 {
    width: 88.88889%;
  }

  .cz-events-cell-mn-9-9 {
    width: 100%;
  }

  .cz-events-cell-mn-1-8 {
    width: 12.5%;
  }

  .cz-events-cell-mn-2-8 {
    width: 25%;
  }

  .cz-events-cell-mn-3-8 {
    width: 37.5%;
  }

  .cz-events-cell-mn-4-8 {
    width: 50%;
  }

  .cz-events-cell-mn-5-8 {
    width: 62.5%;
  }

  .cz-events-cell-mn-6-8 {
    width: 75%;
  }

  .cz-events-cell-mn-7-8 {
    width: 87.5%;
  }

  .cz-events-cell-mn-8-8 {
    width: 100%;
  }

  .cz-events-cell-mn-1-4 {
    width: 25%;
  }

  .cz-events-cell-mn-2-4 {
    width: 50%;
  }

  .cz-events-cell-mn-3-4 {
    width: 75%;
  }

  .cz-events-cell-mn-4-4 {
    width: 100%;
  }

  .cz-events-cell-mn-1-3 {
    width: 33.33333%;
  }

  .cz-events-cell-mn-2-3 {
    width: 66.66667%;
  }

  .cz-events-cell-mn-3-3 {
    width: 100%;
  }

  .cz-events-cell-mn-1-2 {
    width: 50%;
  }

  .cz-events-cell-mn-1-1,
  .cz-events-cell-mn-2-2 {
    width: 100%;
  }
}

.cz-max-img {
  max-width: 100%;
  height: auto;
}

.cz-link,
.sub-content a {
  text-decoration: none;
  color: #3659e3;
  color: var(--cz-control, #3659e3);
}

.cz-link:active,
.cz-link:focus,
.cz-link:hover,
a:active,
a:focus,
a:hover {
  text-decoration: underline;
}

.cz-link:hover,
a:hover,
.cz-button:hover {
  color: #f16573;
  color: var(--cz-control--hover, #f16573);
}

.cz-link:active,
.cz-link:focus,
a:active,
a:focus,
.cz-button:focus {
  color: #f16573;
  color: var(--cz-control--active, #f16573);
  box-shadow: none;
}

.cz-link--neutral {
  color: #39364f;
  color: var(--cz-ui-800, #39364f);
}

.cz-l-mar-top-1 {
  margin-top: 4px;
}

.cz-l-pad-top-5 {
  padding-top: 20px;
}

@-webkit-keyframes showNotification {
  0% {
    -webkit-transform: translateY(-280px);
    transform: translateY(-280px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes showNotification {
  0% {
    -webkit-transform: translateY(-280px);
    transform: translateY(-280px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes hideNotification {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-280px);
    transform: translateY(-280px);
  }
}

@keyframes hideNotification {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-280px);
    transform: translateY(-280px);
  }
}

.cz-is-hidden-accessible {
  position: absolute;
  left: -999999px;
}

@media (min-width: 480px) and (max-width: 659px) {
  .cz-align--sm-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cz-align--sm-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .cz-align--sm-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cz-align--sm-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 792px) and (max-width: 959px) {
  .cz-align--mn-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cz-align--mn-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .cz-align--mn-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cz-align--mn-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 960px) and (max-width: 1079px) {
  .cz-align--md-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cz-align--md-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .cz-align--md-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cz-align--md-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@-webkit-keyframes exitSlideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  2% {
    opacity: 0;
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(6000px);
    transform: translateX(6000px);
  }
}

@keyframes exitSlideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  2% {
    opacity: 0;
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(6000px);
    transform: translateX(6000px);
  }
}

@-webkit-keyframes exitSlideLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  2% {
    opacity: 0;
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(-6000px);
    transform: translateX(-6000px);
  }
}

@keyframes exitSlideLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  2% {
    opacity: 0;
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(-6000px);
    transform: translateX(-6000px);
  }
}

@-webkit-keyframes enterSlideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes enterSlideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes enterSlideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes enterSlideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.cz-text-bl,
.cz-text-bs--fixed {
  text-rendering: optimizeLegibility;
}

.cz-text-bl,
.cz-text-bl--fixed,
.cz-text-bs,
.cz-text-bs--fixed {
  font-weight: 400;
}

@media (min-width: 960px) {
  .cz-text-bl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1272px) {
  .cz-text-bl {
    font-size: 1.333rem;
  }
}

.cz-text-bl,
.cz-text-bs--fixed {
  text-rendering: optimizeLegibility;
}

.cz-text-bl,
.cz-text-bl--fixed,
.cz-text-bs,
.cz-text-bs--fixed {
  font-weight: 400;
}

@media (min-width: 960px) {
  .cz-text-bl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1272px) {
  .cz-text-bl {
    font-size: 1.333rem;
  }
}

.event-card__formatted-name--is-clamped {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
}

#projectSidebar .event-card__formatted-name--is-clamped {
  overflow: hidden;
  line-height: 1.25em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: flex;
  width: 100%;
}

#projectSidebar .event-start-display,
#projectSidebar .event-map-link {
  margin-right: 0.5em;
}

#projectSidebar .sub-content .add-to-calendar {
  display: block;
  padding: 0;
  padding-bottom: 5px;
  vertical-align: bottom;
  margin: 0.5em 0;
}

.add-to-calendar li a {
  margin-left: 0.5em;
}

@-webkit-keyframes loadingCardSwipeY {
  0% {
    -webkit-transform: translateY(-66.66%);
    transform: translateY(-66.66%);
  }

  to {
    -webkit-transform: translateY(66.66%);
    transform: translateY(66.66%);
  }
}

@keyframes loadingCardSwipeY {
  0% {
    -webkit-transform: translateY(-66.66%);
    transform: translateY(-66.66%);
  }

  to {
    -webkit-transform: translateY(66.66%);
    transform: translateY(66.66%);
  }
}

@-webkit-keyframes loadingCardSwipeX {
  0% {
    -webkit-transform: translateX(-66.66%);
    transform: translateX(-66.66%);
  }

  to {
    -webkit-transform: translateX(66.66%);
    transform: translateX(66.66%);
  }
}

@keyframes loadingCardSwipeX {
  0% {
    -webkit-transform: translateX(-66.66%);
    transform: translateX(-66.66%);
  }

  to {
    -webkit-transform: translateX(66.66%);
    transform: translateX(66.66%);
  }
}

.cz-media-card-content {
  border-radius: 4px;
  width: 100%;
}

h3.cz-media-card-content__title {
  margin-top: 0;
}

.cz-media-card-content__action-link {
  display: block;
  outline: 0;
}

.cz-media-card-content__action-link:hover {
  text-decoration: none;
}

.cz-media-card-content__image-container {
  position: relative;
  overflow: visible;
}

.cz-media-card-content__image-container .cz-media-card-content__flag {
  width: 87px;
  height: 36px;
  border-radius: 4px;
  background-color: #fff;
  position: absolute;
  top: 12px;
  right: -12px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(40, 44, 53, 0.06),
    0 2px 2px 0 rgba(40, 44, 53, 0.08);
  box-shadow: 0 4px 15px 0 rgba(40, 44, 53, 0.06),
    0 2px 2px 0 rgba(40, 44, 53, 0.08);
  z-index: 3;
}

.cz-media-card-content__image-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cz-media-card-content__image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 4px;
  border: 1px solid #eeedf2;
  -webkit-transition: border-radius 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    border 0.24s cubic-bezier(0.4, 0, 0.3, 1);
  transition: border-radius 0.24s cubic-bezier(0.4, 0, 0.3, 1),
    border 0.24s cubic-bezier(0.4, 0, 0.3, 1);
}

.cz-media-card-content__image-content {
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: border-radius 0.24s cubic-bezier(0.4, 0, 0.3, 1);
  transition: border-radius 0.24s cubic-bezier(0.4, 0, 0.3, 1);
}

.cz-media-card-content__image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.meeting-preview-outer .cz-media-card-content__image-placeholder {
  background: none !important;
}

.cz-media-card-content__image {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.cz-media-card-content__content__principal {
  word-break: break-word;
}

.cz-media-card-content__content .sub-content a {
}

.cz-media-card-content--fixed .cz-media-card-content__image-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.cz-media-card-content--fixed .cz-media-card-content__image-content {
  width: 100%;
  padding-top: 50%;
}

.cz-media-card-content--grid.cz-media-card-content--standard.cz-media-card-content {
  overflow: visible;
  background: #fff;
}

.cz-media-card-content--grid.cz-media-card-content--standard
  .cz-media-card-content__image-container {
  display: block;
}

.cz-media-card-content--grid.cz-media-card-content--standard
  .cz-media-card-content__content-container {
  display: block;
  overflow: visible;
  position: relative;
  padding: 24px;
}

.cz-media-card-content--grid.cz-media-card-content--standard
  .cz-media-card-content__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cz-media-card-content--grid.cz-media-card-content--standard
  .cz-media-card-content__extra-content {
  max-width: 48px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.cz-media-card-content--grid.cz-media-card-content--standard
  .cz-media-card-content__content__principal {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 960px) {
  .cz-media-card-content--grid.cz-media-card-content--standard:hover
    .cz-media-card-content__image-wrapper
    .cz-media-card-content__image-content {
    border-radius: 4px 4px 0 0;
  }

  .cz-media-card-content--grid.cz-media-card-content--standard:hover
    .cz-media-card-content__image-wrapper:after {
    left: -1px;
    right: -1px;
    border-color: transparent;
    border-bottom: 1px solid #eeedf2;
    border-radius: 4px 4px 0 0;
  }
}

@media (max-width: 660px) {
  .cz-media-card-content--grid.cz-media-card-content--standard
    .cz-media-card-content__content-container {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 660px) {
  .cz-media-card-content__content__principal {
    padding: 0 15px;
  }
}

.cz-text-bl,
.cz-text-bs--fixed {
  text-rendering: optimizeLegibility;
}

.cz-text-bl,
.cz-text-bl--fixed,
.cz-text-bs,
.cz-text-bs--fixed {
  font-weight: 400;
}

.cz-text-bs,
.cz-text-bs--fixed {
  line-height: 1.2;
  font-size: 14px;
}

.cz-text-bl,
.cz-text-bs--fixed {
  text-rendering: optimizeLegibility;
}

.cz-text-bl,
.cz-text-bl--fixed,
.cz-text-bs,
.cz-text-bs--fixed {
  font-weight: 400;
}

.cz-text-bl,
.cz-text-bl--fixed {
  line-height: 1.25;
}

.cz-text-bs,
.cz-text-bs--fixed {
  line-height: 1.2;
}

.cz-text-bl,
.cz-text-bl--fixed {
  font-size: 1.2rem;
}

.cz-text-bs,
.cz-text-bs--fixed {
  font-size: 14px;
}

@media (min-width: 960px) {
  .cz-text-bl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1272px) {
  .cz-text-bl {
    font-size: 1.333rem;
  }
}

.cz-color,
.cz-events-cell {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.cz-events-grid,
.cz-events-group {
  font-size: 0;
  letter-spacing: 0;
}

.cz-events-grid {
  margin-left: auto;
  margin-right: auto;
}

.cz-color,
.cz-events-cell {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

.cz-events-cell--align-center.cz-color,
.cz-events-cell.cz-events-cell--align-center {
  vertical-align: middle;
}

.cz-events-cell-1-12 {
  width: 8.33333%;
}

.cz-events-cell-2-12 {
  width: 16.66667%;
}

.cz-events-cell-3-12 {
  width: 25%;
}

.cz-events-cell-4-12 {
  width: 33.33333%;
}

.cz-events-cell-5-12 {
  width: 41.66667%;
}

.cz-events-cell-6-12 {
  width: 50%;
}

.cz-events-cell-7-12 {
  width: 58.33333%;
}

.cz-events-cell-8-12 {
  width: 66.66667%;
}

.cz-events-cell-9-12 {
  width: 75%;
}

.cz-events-cell-10-12 {
  width: 83.33333%;
}

.cz-events-cell-11-12 {
  width: 91.66667%;
}

.cz-events-cell-12-12 {
  width: 100%;
}

.cz-events-cell-1-9 {
  width: 11.11111%;
}

.cz-events-cell-2-9 {
  width: 22.22222%;
}

.cz-events-cell-3-9 {
  width: 33.33333%;
}

.cz-events-cell-4-9 {
  width: 44.44444%;
}

.cz-events-cell-5-9 {
  width: 55.55556%;
}

.cz-events-cell-6-9 {
  width: 66.66667%;
}

.cz-events-cell-7-9 {
  width: 77.77778%;
}

.cz-events-cell-8-9 {
  width: 88.88889%;
}

.cz-events-cell-9-9 {
  width: 100%;
}

.cz-events-cell-1-8 {
  width: 12.5%;
}

.cz-events-cell-2-8 {
  width: 25%;
}

.cz-events-cell-3-8 {
  width: 37.5%;
}

.cz-events-cell-4-8 {
  width: 50%;
}

.cz-events-cell-5-8 {
  width: 62.5%;
}

.cz-events-cell-6-8 {
  width: 75%;
}

.cz-events-cell-7-8 {
  width: 87.5%;
}

.cz-events-cell-8-8 {
  width: 100%;
}

.cz-events-cell-1-4 {
  width: 25%;
}

.cz-events-cell-2-4 {
  width: 50%;
}

.cz-events-cell-3-4 {
  width: 75%;
}

.cz-events-cell-4-4 {
  width: 100%;
}

.cz-events-cell-1-3 {
  width: 33.33333%;
}

.cz-events-cell-2-3 {
  width: 66.66667%;
}

.cz-events-cell-3-3 {
  width: 100%;
}

.cz-events-cell-1-2 {
  width: 50%;
}

.cz-events-cell-1-1,
.cz-events-cell-2-2 {
  width: 100%;
}

@media (min-width: 480px) {
  .cz-events-cell-sm-1-12 {
    width: 8.33333%;
  }

  .cz-events-cell-sm-2-12 {
    width: 16.66667%;
  }

  .cz-events-cell-sm-3-12 {
    width: 25%;
  }

  .cz-events-cell-sm-4-12 {
    width: 33.33333%;
  }

  .cz-events-cell-sm-5-12 {
    width: 41.66667%;
  }

  .cz-events-cell-sm-6-12 {
    width: 50%;
  }

  .cz-events-cell-sm-7-12 {
    width: 58.33333%;
  }

  .cz-events-cell-sm-8-12 {
    width: 66.66667%;
  }

  .cz-events-cell-sm-9-12 {
    width: 75%;
  }

  .cz-events-cell-sm-10-12 {
    width: 83.33333%;
  }

  .cz-events-cell-sm-11-12 {
    width: 91.66667%;
  }

  .cz-events-cell-sm-12-12 {
    width: 100%;
  }

  .cz-events-cell-sm-1-9 {
    width: 11.11111%;
  }

  .cz-events-cell-sm-2-9 {
    width: 22.22222%;
  }

  .cz-events-cell-sm-3-9 {
    width: 33.33333%;
  }

  .cz-events-cell-sm-4-9 {
    width: 44.44444%;
  }

  .cz-events-cell-sm-5-9 {
    width: 55.55556%;
  }

  .cz-events-cell-sm-6-9 {
    width: 66.66667%;
  }

  .cz-events-cell-sm-7-9 {
    width: 77.77778%;
  }

  .cz-events-cell-sm-8-9 {
    width: 88.88889%;
  }

  .cz-events-cell-sm-9-9 {
    width: 100%;
  }

  .cz-events-cell-sm-1-8 {
    width: 12.5%;
  }

  .cz-events-cell-sm-2-8 {
    width: 25%;
  }

  .cz-events-cell-sm-3-8 {
    width: 37.5%;
  }

  .cz-events-cell-sm-4-8 {
    width: 50%;
  }

  .cz-events-cell-sm-5-8 {
    width: 62.5%;
  }

  .cz-events-cell-sm-6-8 {
    width: 75%;
  }

  .cz-events-cell-sm-7-8 {
    width: 87.5%;
  }

  .cz-events-cell-sm-8-8 {
    width: 100%;
  }

  .cz-events-cell-sm-1-4 {
    width: 25%;
  }

  .cz-events-cell-sm-2-4 {
    width: 50%;
  }

  .cz-events-cell-sm-3-4 {
    width: 75%;
  }

  .cz-events-cell-sm-4-4 {
    width: 100%;
  }

  .cz-events-cell-sm-1-3 {
    width: 33.33333%;
  }

  .cz-events-cell-sm-2-3 {
    width: 66.66667%;
  }

  .cz-events-cell-sm-3-3 {
    width: 100%;
  }

  .cz-events-cell-sm-1-2 {
    width: 50%;
  }

  .cz-events-cell-sm-1-1,
  .cz-events-cell-sm-2-2 {
    width: 100%;
  }
}

@media (min-width: 792px) {
  .cz-events-cell-mn-1-12 {
    width: 8.33333%;
  }

  .cz-events-cell-mn-2-12 {
    width: 16.66667%;
  }

  .cz-events-cell-mn-3-12 {
    width: 25%;
  }

  .cz-events-cell-mn-4-12 {
    width: 33.33333%;
  }

  .cz-events-cell-mn-5-12 {
    width: 41.66667%;
  }

  .cz-events-cell-mn-6-12 {
    width: 50%;
  }

  .cz-events-cell-mn-7-12 {
    width: 58.33333%;
  }

  .cz-events-cell-mn-8-12 {
    width: 66.66667%;
  }

  .cz-events-cell-mn-9-12 {
    width: 75%;
  }

  .cz-events-cell-mn-10-12 {
    width: 83.33333%;
  }

  .cz-events-cell-mn-11-12 {
    width: 91.66667%;
  }

  .cz-events-cell-mn-12-12 {
    width: 100%;
  }

  .cz-events-cell-mn-1-9 {
    width: 11.11111%;
  }

  .cz-events-cell-mn-2-9 {
    width: 22.22222%;
  }

  .cz-events-cell-mn-3-9 {
    width: 33.33333%;
  }

  .cz-events-cell-mn-4-9 {
    width: 44.44444%;
  }

  .cz-events-cell-mn-5-9 {
    width: 55.55556%;
  }

  .cz-events-cell-mn-6-9 {
    width: 66.66667%;
  }

  .cz-events-cell-mn-7-9 {
    width: 77.77778%;
  }

  .cz-events-cell-mn-8-9 {
    width: 88.88889%;
  }

  .cz-events-cell-mn-9-9 {
    width: 100%;
  }

  .cz-events-cell-mn-1-8 {
    width: 12.5%;
  }

  .cz-events-cell-mn-2-8 {
    width: 25%;
  }

  .cz-events-cell-mn-3-8 {
    width: 37.5%;
  }

  .cz-events-cell-mn-4-8 {
    width: 50%;
  }

  .cz-events-cell-mn-5-8 {
    width: 62.5%;
  }

  .cz-events-cell-mn-6-8 {
    width: 75%;
  }

  .cz-events-cell-mn-7-8 {
    width: 87.5%;
  }

  .cz-events-cell-mn-8-8 {
    width: 100%;
  }

  .cz-events-cell-mn-1-4 {
    width: 25%;
  }

  .cz-events-cell-mn-2-4 {
    width: 50%;
  }

  .cz-events-cell-mn-3-4 {
    width: 75%;
  }

  .cz-events-cell-mn-4-4 {
    width: 100%;
  }

  .cz-events-cell-mn-1-3 {
    width: 33.33333%;
  }

  .cz-events-cell-mn-2-3 {
    width: 66.66667%;
  }

  .cz-events-cell-mn-3-3 {
    width: 100%;
  }

  .cz-events-cell-mn-1-2 {
    width: 50%;
  }

  .cz-events-cell-mn-1-1,
  .cz-events-cell-mn-2-2 {
    width: 100%;
  }
}

@media (min-width: 960px) {
  .cz-events-cell-md-1-12 {
    width: 8.33333%;
  }

  .cz-events-cell-md-2-12 {
    width: 16.66667%;
  }

  .cz-events-cell-md-3-12 {
    width: 25%;
  }

  .cz-events-cell-md-4-12 {
    width: 33.33333%;
  }

  .cz-events-cell-md-5-12 {
    width: 41.66667%;
  }

  .cz-events-cell-md-6-12 {
    width: 50%;
  }

  .cz-events-cell-md-7-12 {
    width: 58.33333%;
  }

  .cz-events-cell-md-8-12 {
    width: 66.66667%;
  }

  .cz-events-cell-md-9-12 {
    width: 75%;
  }

  .cz-events-cell-md-10-12 {
    width: 83.33333%;
  }

  .cz-events-cell-md-11-12 {
    width: 91.66667%;
  }

  .cz-events-cell-md-12-12 {
    width: 100%;
  }

  .cz-events-cell-md-1-9 {
    width: 11.11111%;
  }

  .cz-events-cell-md-2-9 {
    width: 22.22222%;
  }

  .cz-events-cell-md-3-9 {
    width: 33.33333%;
  }

  .cz-events-cell-md-4-9 {
    width: 44.44444%;
  }

  .cz-events-cell-md-5-9 {
    width: 55.55556%;
  }

  .cz-events-cell-md-6-9 {
    width: 66.66667%;
  }

  .cz-events-cell-md-7-9 {
    width: 77.77778%;
  }

  .cz-events-cell-md-8-9 {
    width: 88.88889%;
  }

  .cz-events-cell-md-9-9 {
    width: 100%;
  }

  .cz-events-cell-md-1-8 {
    width: 12.5%;
  }

  .cz-events-cell-md-2-8 {
    width: 25%;
  }

  .cz-events-cell-md-3-8 {
    width: 37.5%;
  }

  .cz-events-cell-md-4-8 {
    width: 50%;
  }

  .cz-events-cell-md-5-8 {
    width: 62.5%;
  }

  .cz-events-cell-md-6-8 {
    width: 75%;
  }

  .cz-events-cell-md-7-8 {
    width: 87.5%;
  }

  .cz-events-cell-md-8-8 {
    width: 100%;
  }

  .cz-events-cell-md-1-4 {
    width: 25%;
  }

  .cz-events-cell-md-2-4 {
    width: 50%;
  }

  .cz-events-cell-md-3-4 {
    width: 75%;
  }

  .cz-events-cell-md-4-4 {
    width: 100%;
  }

  .cz-events-cell-md-1-3 {
    width: 33.33333%;
  }

  .cz-events-cell-md-2-3 {
    width: 66.66667%;
  }

  .cz-events-cell-md-3-3 {
    width: 100%;
  }

  .cz-events-cell-md-1-2 {
    width: 50%;
  }

  .cz-events-cell-md-1-1,
  .cz-events-cell-md-2-2 {
    width: 100%;
  }
}

.cz-l-mar-all-0 {
  margin: 0;
}

.cz-l-mar-hor-0 {
  margin-left: 0;
  margin-right: 0;
}

.cz-l-mar-vert-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.cz-l-mar-right-0 {
  margin-right: 0;
}

.cz-l-mar-top-0 {
  margin-top: 0;
}

.cz-color p {
  margin-bottom: 0;
}

.cz-l-mar-all-1 {
  margin: 4px;
}

.cz-l-mar-hor-1 {
  margin-left: 4px;
  margin-right: 4px;
}

.cz-l-mar-vert-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.cz-l-mar-right-1 {
  margin-right: 4px;
}

.cz-color p,
.cz-l-mar-top-1 {
  margin-top: 4px;
}

.cz-l-mar-all-2 {
  margin: 8px;
}

.cz-l-mar-hor-2 {
  margin-left: 8px;
  margin-right: 8px;
}

.cz-l-mar-vert-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.cz-l-mar-right-2 {
  margin-right: 8px;
}

.cz-l-mar-top-2 {
  margin-top: 8px;
}

.cz-l-mar-all-3 {
  margin: 12px;
}

.cz-l-mar-hor-3 {
  margin-left: 12px;
  margin-right: 12px;
}

.cz-l-mar-vert-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.cz-l-mar-right-3 {
  margin-right: 12px;
}

.cz-l-mar-top-3 {
  margin-top: 12px;
}

.cz-l-mar-all-4 {
  margin: 16px;
}

.cz-l-mar-hor-4 {
  margin-left: 16px;
  margin-right: 16px;
}

.cz-l-mar-vert-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.cz-l-mar-right-4 {
  margin-right: 16px;
}

.cz-l-mar-top-4 {
  margin-top: 16px;
}

.cz-l-mar-all-5 {
  margin: 20px;
}

.cz-l-mar-hor-5 {
  margin-left: 20px;
  margin-right: 20px;
}

.cz-l-mar-vert-5 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.cz-l-mar-right-5 {
  margin-right: 20px;
}

.cz-l-mar-top-5 {
  margin-top: 20px;
}

.cz-l-mar-all-6 {
  margin: 24px;
}

.cz-l-mar-hor-6 {
  margin-left: 24px;
  margin-right: 24px;
}

.cz-l-mar-vert-6 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.cz-l-mar-right-6 {
  margin-right: 24px;
}

.cz-l-mar-top-6 {
  margin-top: 24px;
}

.cz-l-mar-all-8 {
  margin: 32px;
}

.cz-l-mar-hor-8 {
  margin-left: 32px;
  margin-right: 32px;
}

.cz-l-mar-vert-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.cz-l-mar-right-8 {
  margin-right: 32px;
}

.cz-l-mar-top-8 {
  margin-top: 32px;
}

.cz-l-mar-all-10 {
  margin: 40px;
}

.cz-l-mar-hor-10 {
  margin-left: 40px;
  margin-right: 40px;
}

.cz-l-mar-vert-10 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.cz-l-mar-right-10 {
  margin-right: 40px;
}

.cz-l-mar-top-10 {
  margin-top: 40px;
}

.cz-l-mar-all-12 {
  margin: 48px;
}

.cz-l-mar-hor-12 {
  margin-left: 48px;
  margin-right: 48px;
}

.cz-l-mar-vert-12 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.cz-l-mar-right-12 {
  margin-right: 48px;
}

.cz-l-mar-top-12 {
  margin-top: 48px;
}

.cz-l-mar-all-14 {
  margin: 56px;
}

.cz-l-mar-hor-14 {
  margin-left: 56px;
  margin-right: 56px;
}

.cz-l-mar-vert-14 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.cz-l-mar-right-14 {
  margin-right: 56px;
}

.cz-l-mar-top-14 {
  margin-top: 56px;
}

.cz-l-mar-all-16 {
  margin: 64px;
}

.cz-l-mar-hor-16 {
  margin-left: 64px;
  margin-right: 64px;
}

.cz-l-mar-vert-16 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.cz-l-mar-right-16 {
  margin-right: 64px;
}

.cz-l-mar-top-16 {
  margin-top: 64px;
}

.cz-l-mar-all-18 {
  margin: 72px;
}

.cz-l-mar-hor-18 {
  margin-left: 72px;
  margin-right: 72px;
}

.cz-l-mar-vert-18 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.cz-l-mar-right-18 {
  margin-right: 72px;
}

.cz-l-mar-top-18 {
  margin-top: 72px;
}

.cz-l-mar-all-20 {
  margin: 80px;
}

.cz-l-mar-hor-20 {
  margin-left: 80px;
  margin-right: 80px;
}

.cz-l-mar-vert-20 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.cz-l-mar-right-20 {
  margin-right: 80px;
}

.cz-l-mar-top-20 {
  margin-top: 80px;
}

.cz-l-pad-all-0 {
  padding: 0;
}

.cz-l-pad-hor-0 {
  padding-left: 0;
  padding-right: 0;
}

.cz-l-pad-vert-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.cz-l-pad-right-0 {
  padding-right: 0;
}

.cz-l-pad-top-0 {
  padding-top: 0;
}

.cz-l-pad-all-1 {
  padding: 4px;
}

.cz-l-pad-hor-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.cz-l-pad-vert-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.cz-l-pad-right-1 {
  padding-right: 4px;
}

.cz-l-pad-top-1 {
  padding-top: 4px;
}

.cz-l-pad-all-2 {
  padding: 8px;
}

.cz-l-pad-hor-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.cz-l-pad-vert-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.cz-l-pad-right-2 {
  padding-right: 8px;
}

.cz-l-pad-top-2 {
  padding-top: 8px;
}

.cz-l-pad-all-3 {
  padding: 12px;
}

.cz-l-pad-hor-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.cz-l-pad-vert-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.cz-l-pad-right-3 {
  padding-right: 12px;
}

.cz-l-pad-top-3 {
  padding-top: 12px;
}

.cz-l-pad-all-4 {
  padding: 16px;
}

.cz-l-pad-hor-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.cz-l-pad-vert-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.cz-l-pad-right-4 {
  padding-right: 16px;
}

.cz-l-pad-top-4 {
  padding-top: 16px;
}

.cz-l-pad-all-5 {
  padding: 20px;
}

.cz-l-pad-hor-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.cz-l-pad-vert-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cz-l-pad-right-5 {
  padding-right: 20px;
}

.cz-color,
.cz-l-pad-top-5 {
  padding-top: 20px;
}

.cz-l-pad-all-6 {
  padding: 24px;
}

.cz-l-pad-hor-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.cz-l-pad-vert-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.cz-color {
  padding-left: 24px;
}

.cz-l-pad-right-6 {
  padding-right: 24px;
}

.cz-l-pad-top-6 {
  padding-top: 24px;
}

.cz-l-pad-all-8 {
  padding: 32px;
}

.cz-l-pad-hor-8 {
  padding-left: 32px;
  padding-right: 32px;
}

.cz-l-pad-vert-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.cz-l-pad-right-8 {
  padding-right: 32px;
}

.cz-l-pad-top-8 {
  padding-top: 32px;
}

.cz-l-pad-all-10 {
  padding: 40px;
}

.cz-l-pad-hor-10 {
  padding-left: 40px;
  padding-right: 40px;
}

.cz-l-pad-vert-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.cz-l-pad-right-10 {
  padding-right: 40px;
}

.cz-l-pad-top-10 {
  padding-top: 40px;
}

.cz-l-pad-all-12 {
  padding: 48px;
}

.cz-l-pad-hor-12 {
  padding-left: 48px;
  padding-right: 48px;
}

.cz-l-pad-vert-12 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.cz-l-pad-right-12 {
  padding-right: 48px;
}

.cz-l-pad-top-12 {
  padding-top: 48px;
}

.cz-l-pad-all-14 {
  padding: 56px;
}

.cz-l-pad-hor-14 {
  padding-left: 56px;
  padding-right: 56px;
}

.cz-l-pad-vert-14 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.cz-l-pad-right-14 {
  padding-right: 56px;
}

.cz-l-pad-top-14 {
  padding-top: 56px;
}

.cz-l-pad-all-16 {
  padding: 64px;
}

.cz-l-pad-hor-16 {
  padding-left: 64px;
  padding-right: 64px;
}

.cz-l-pad-vert-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.cz-l-pad-right-16 {
  padding-right: 64px;
}

.cz-l-pad-top-16 {
  padding-top: 64px;
}

.cz-l-pad-all-18 {
  padding: 72px;
}

.cz-l-pad-hor-18 {
  padding-left: 72px;
  padding-right: 72px;
}

.cz-l-pad-vert-18 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.cz-l-pad-right-18 {
  padding-right: 72px;
}

.cz-l-pad-top-18 {
  padding-top: 72px;
}

.cz-l-pad-all-20 {
  padding: 80px;
}

.cz-l-pad-hor-20 {
  padding-left: 80px;
  padding-right: 80px;
}

.cz-l-pad-vert-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cz-l-pad-right-20 {
  padding-right: 80px;
}

.cz-l-pad-top-20 {
  padding-top: 80px;
}

@media (min-width: 480px) and (max-width: 659px) {
  .cz-l-sm-mar-all-0 {
    margin: 0;
  }

  .cz-l-sm-mar-hor-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .cz-l-sm-mar-vert-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .cz-l-sm-mar-right-0 {
    margin-right: 0;
  }

  .cz-l-sm-mar-top-0 {
    margin-top: 0;
  }

  .cz-l-sm-pad-all-0 {
    padding: 0;
  }

  .cz-l-sm-pad-hor-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .cz-l-sm-pad-vert-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cz-l-sm-pad-right-0 {
    padding-right: 0;
  }

  .cz-l-sm-pad-top-0 {
    padding-top: 0;
  }

  .cz-l-sm-mar-all-1 {
    margin: 4px;
  }

  .cz-l-sm-mar-hor-1 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .cz-l-sm-mar-vert-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .cz-l-sm-mar-right-1 {
    margin-right: 4px;
  }

  .cz-l-sm-mar-top-1 {
    margin-top: 4px;
  }

  .cz-l-sm-pad-all-1 {
    padding: 4px;
  }

  .cz-l-sm-pad-hor-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .cz-l-sm-pad-vert-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .cz-l-sm-pad-right-1 {
    padding-right: 4px;
  }

  .cz-l-sm-pad-top-1 {
    padding-top: 4px;
  }

  .cz-l-sm-mar-all-2 {
    margin: 8px;
  }

  .cz-l-sm-mar-hor-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .cz-l-sm-mar-vert-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .cz-l-sm-mar-right-2 {
    margin-right: 8px;
  }

  .cz-l-sm-mar-top-2 {
    margin-top: 8px;
  }

  .cz-l-sm-pad-all-2 {
    padding: 8px;
  }

  .cz-l-sm-pad-hor-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .cz-l-sm-pad-vert-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cz-l-sm-pad-right-2 {
    padding-right: 8px;
  }

  .cz-l-sm-pad-top-2 {
    padding-top: 8px;
  }

  .cz-l-sm-mar-all-3 {
    margin: 12px;
  }

  .cz-l-sm-mar-hor-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .cz-l-sm-mar-vert-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .cz-l-sm-mar-right-3 {
    margin-right: 12px;
  }

  .cz-l-sm-mar-top-3 {
    margin-top: 12px;
  }

  .cz-l-sm-pad-all-3 {
    padding: 12px;
  }

  .cz-l-sm-pad-hor-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cz-l-sm-pad-vert-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cz-l-sm-pad-right-3 {
    padding-right: 12px;
  }

  .cz-l-sm-pad-top-3 {
    padding-top: 12px;
  }

  .cz-l-sm-mar-all-4 {
    margin: 16px;
  }

  .cz-l-sm-mar-hor-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .cz-l-sm-mar-vert-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .cz-l-sm-mar-right-4 {
    margin-right: 16px;
  }

  .cz-l-sm-mar-top-4 {
    margin-top: 16px;
  }

  .cz-l-sm-pad-all-4 {
    padding: 16px;
  }

  .cz-l-sm-pad-hor-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cz-l-sm-pad-vert-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cz-l-sm-pad-right-4 {
    padding-right: 16px;
  }

  .cz-l-sm-pad-top-4 {
    padding-top: 16px;
  }

  .cz-l-sm-mar-all-5 {
    margin: 20px;
  }

  .cz-l-sm-mar-hor-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cz-l-sm-mar-vert-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cz-l-sm-mar-right-5 {
    margin-right: 20px;
  }

  .cz-l-sm-mar-top-5 {
    margin-top: 20px;
  }

  .cz-l-sm-pad-all-5 {
    padding: 20px;
  }

  .cz-l-sm-pad-hor-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cz-l-sm-pad-vert-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cz-l-sm-pad-right-5 {
    padding-right: 20px;
  }

  .cz-l-sm-pad-top-5 {
    padding-top: 20px;
  }

  .cz-l-sm-mar-all-6 {
    margin: 24px;
  }

  .cz-l-sm-mar-hor-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .cz-l-sm-mar-vert-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .cz-l-sm-mar-right-6 {
    margin-right: 24px;
  }

  .cz-l-sm-mar-top-6 {
    margin-top: 24px;
  }

  .cz-l-sm-pad-all-6 {
    padding: 24px;
  }

  .cz-l-sm-pad-hor-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cz-l-sm-pad-vert-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cz-l-sm-pad-right-6 {
    padding-right: 24px;
  }

  .cz-l-sm-pad-top-6 {
    padding-top: 24px;
  }

  .cz-l-sm-mar-all-8 {
    margin: 32px;
  }

  .cz-l-sm-mar-hor-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .cz-l-sm-mar-vert-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .cz-l-sm-mar-right-8 {
    margin-right: 32px;
  }

  .cz-l-sm-mar-top-8 {
    margin-top: 32px;
  }

  .cz-l-sm-pad-all-8 {
    padding: 32px;
  }

  .cz-l-sm-pad-hor-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cz-l-sm-pad-vert-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cz-l-sm-pad-right-8 {
    padding-right: 32px;
  }

  .cz-l-sm-pad-top-8 {
    padding-top: 32px;
  }

  .cz-l-sm-mar-all-10 {
    margin: 40px;
  }

  .cz-l-sm-mar-hor-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .cz-l-sm-mar-vert-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .cz-l-sm-mar-right-10 {
    margin-right: 40px;
  }

  .cz-l-sm-mar-top-10 {
    margin-top: 40px;
  }

  .cz-l-sm-pad-all-10 {
    padding: 40px;
  }

  .cz-l-sm-pad-hor-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cz-l-sm-pad-vert-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cz-l-sm-pad-right-10 {
    padding-right: 40px;
  }

  .cz-l-sm-pad-top-10 {
    padding-top: 40px;
  }

  .cz-l-sm-mar-all-12 {
    margin: 48px;
  }

  .cz-l-sm-mar-hor-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .cz-l-sm-mar-vert-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .cz-l-sm-mar-right-12 {
    margin-right: 48px;
  }

  .cz-l-sm-mar-top-12 {
    margin-top: 48px;
  }

  .cz-l-sm-pad-all-12 {
    padding: 48px;
  }

  .cz-l-sm-pad-hor-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .cz-l-sm-pad-vert-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cz-l-sm-pad-right-12 {
    padding-right: 48px;
  }

  .cz-l-sm-pad-top-12 {
    padding-top: 48px;
  }

  .cz-l-sm-mar-all-14 {
    margin: 56px;
  }

  .cz-l-sm-mar-hor-14 {
    margin-left: 56px;
    margin-right: 56px;
  }

  .cz-l-sm-mar-vert-14 {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .cz-l-sm-mar-right-14 {
    margin-right: 56px;
  }

  .cz-l-sm-mar-top-14 {
    margin-top: 56px;
  }

  .cz-l-sm-pad-all-14 {
    padding: 56px;
  }

  .cz-l-sm-pad-hor-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .cz-l-sm-pad-vert-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cz-l-sm-pad-right-14 {
    padding-right: 56px;
  }

  .cz-l-sm-pad-top-14 {
    padding-top: 56px;
  }

  .cz-l-sm-mar-all-16 {
    margin: 64px;
  }

  .cz-l-sm-mar-hor-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .cz-l-sm-mar-vert-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .cz-l-sm-mar-right-16 {
    margin-right: 64px;
  }

  .cz-l-sm-mar-top-16 {
    margin-top: 64px;
  }

  .cz-l-sm-pad-all-16 {
    padding: 64px;
  }

  .cz-l-sm-pad-hor-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .cz-l-sm-pad-vert-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cz-l-sm-pad-right-16 {
    padding-right: 64px;
  }

  .cz-l-sm-pad-top-16 {
    padding-top: 64px;
  }

  .cz-l-sm-mar-all-18 {
    margin: 72px;
  }

  .cz-l-sm-mar-hor-18 {
    margin-left: 72px;
    margin-right: 72px;
  }

  .cz-l-sm-mar-vert-18 {
    margin-top: 72px;
    margin-bottom: 72px;
  }

  .cz-l-sm-mar-right-18 {
    margin-right: 72px;
  }

  .cz-l-sm-mar-top-18 {
    margin-top: 72px;
  }

  .cz-l-sm-pad-all-18 {
    padding: 72px;
  }

  .cz-l-sm-pad-hor-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .cz-l-sm-pad-vert-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cz-l-sm-pad-right-18 {
    padding-right: 72px;
  }

  .cz-l-sm-pad-top-18 {
    padding-top: 72px;
  }

  .cz-l-sm-mar-all-20 {
    margin: 80px;
  }

  .cz-l-sm-mar-hor-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .cz-l-sm-mar-vert-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .cz-l-sm-mar-right-20 {
    margin-right: 80px;
  }

  .cz-l-sm-mar-top-20 {
    margin-top: 80px;
  }

  .cz-l-sm-pad-all-20 {
    padding: 80px;
  }

  .cz-l-sm-pad-hor-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .cz-l-sm-pad-vert-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cz-l-sm-pad-right-20 {
    padding-right: 80px;
  }

  .cz-l-sm-pad-top-20 {
    padding-top: 80px;
  }
}

@media (min-width: 792px) and (max-width: 959px) {
  .cz-l-mn-mar-all-0 {
    margin: 0;
  }

  .cz-l-mn-mar-hor-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .cz-l-mn-mar-vert-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .cz-l-mn-mar-right-0 {
    margin-right: 0;
  }

  .cz-l-mn-mar-top-0 {
    margin-top: 0;
  }

  .cz-l-mn-pad-all-0 {
    padding: 0;
  }

  .cz-l-mn-pad-hor-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .cz-l-mn-pad-vert-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cz-l-mn-pad-right-0 {
    padding-right: 0;
  }

  .cz-l-mn-pad-top-0 {
    padding-top: 0;
  }

  .cz-l-mn-mar-all-1 {
    margin: 4px;
  }

  .cz-l-mn-mar-hor-1 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .cz-l-mn-mar-vert-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .cz-l-mn-mar-right-1 {
    margin-right: 4px;
  }

  .cz-l-mn-mar-top-1 {
    margin-top: 4px;
  }

  .cz-l-mn-pad-all-1 {
    padding: 4px;
  }

  .cz-l-mn-pad-hor-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .cz-l-mn-pad-vert-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .cz-l-mn-pad-right-1 {
    padding-right: 4px;
  }

  .cz-l-mn-pad-top-1 {
    padding-top: 4px;
  }

  .cz-l-mn-mar-all-2 {
    margin: 8px;
  }

  .cz-l-mn-mar-hor-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .cz-l-mn-mar-vert-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .cz-l-mn-mar-right-2 {
    margin-right: 8px;
  }

  .cz-l-mn-mar-top-2 {
    margin-top: 8px;
  }

  .cz-l-mn-pad-all-2 {
    padding: 8px;
  }

  .cz-l-mn-pad-hor-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .cz-l-mn-pad-vert-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cz-l-mn-pad-right-2 {
    padding-right: 8px;
  }

  .cz-l-mn-pad-top-2 {
    padding-top: 8px;
  }

  .cz-l-mn-mar-all-3 {
    margin: 12px;
  }

  .cz-l-mn-mar-hor-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .cz-l-mn-mar-vert-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .cz-l-mn-mar-right-3 {
    margin-right: 12px;
  }

  .cz-l-mn-mar-top-3 {
    margin-top: 12px;
  }

  .cz-l-mn-pad-all-3 {
    padding: 12px;
  }

  .cz-l-mn-pad-hor-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cz-l-mn-pad-vert-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cz-l-mn-pad-right-3 {
    padding-right: 12px;
  }

  .cz-l-mn-pad-top-3 {
    padding-top: 12px;
  }

  .cz-l-mn-mar-all-4 {
    margin: 16px;
  }

  .cz-l-mn-mar-hor-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .cz-l-mn-mar-vert-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .cz-l-mn-mar-right-4 {
    margin-right: 16px;
  }

  .cz-l-mn-mar-top-4 {
    margin-top: 16px;
  }

  .cz-l-mn-pad-all-4 {
    padding: 16px;
  }

  .cz-l-mn-pad-hor-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cz-l-mn-pad-vert-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cz-l-mn-pad-right-4 {
    padding-right: 16px;
  }

  .cz-l-mn-pad-top-4 {
    padding-top: 16px;
  }

  .cz-l-mn-mar-all-5 {
    margin: 20px;
  }

  .cz-l-mn-mar-hor-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cz-l-mn-mar-vert-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cz-l-mn-mar-right-5 {
    margin-right: 20px;
  }

  .cz-l-mn-mar-top-5 {
    margin-top: 20px;
  }

  .cz-l-mn-pad-all-5 {
    padding: 20px;
  }

  .cz-l-mn-pad-hor-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cz-l-mn-pad-vert-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cz-l-mn-pad-right-5 {
    padding-right: 20px;
  }

  .cz-l-mn-pad-top-5 {
    padding-top: 20px;
  }

  .cz-l-mn-mar-all-6 {
    margin: 24px;
  }

  .cz-l-mn-mar-hor-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .cz-l-mn-mar-vert-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .cz-l-mn-mar-right-6 {
    margin-right: 24px;
  }

  .cz-l-mn-mar-top-6 {
    margin-top: 24px;
  }

  .cz-l-mn-pad-all-6 {
    padding: 24px;
  }

  .cz-l-mn-pad-hor-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cz-l-mn-pad-vert-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cz-l-mn-pad-right-6 {
    padding-right: 24px;
  }

  .cz-l-mn-pad-top-6 {
    padding-top: 24px;
  }

  .cz-l-mn-mar-all-8 {
    margin: 32px;
  }

  .cz-l-mn-mar-hor-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .cz-l-mn-mar-vert-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .cz-l-mn-mar-right-8 {
    margin-right: 32px;
  }

  .cz-l-mn-mar-top-8 {
    margin-top: 32px;
  }

  .cz-l-mn-pad-all-8 {
    padding: 32px;
  }

  .cz-l-mn-pad-hor-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cz-l-mn-pad-vert-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cz-l-mn-pad-right-8 {
    padding-right: 32px;
  }

  .cz-l-mn-pad-top-8 {
    padding-top: 32px;
  }

  .cz-l-mn-mar-all-10 {
    margin: 40px;
  }

  .cz-l-mn-mar-hor-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .cz-l-mn-mar-vert-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .cz-l-mn-mar-right-10 {
    margin-right: 40px;
  }

  .cz-l-mn-mar-top-10 {
    margin-top: 40px;
  }

  .cz-l-mn-pad-all-10 {
    padding: 40px;
  }

  .cz-l-mn-pad-hor-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cz-l-mn-pad-vert-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cz-l-mn-pad-right-10 {
    padding-right: 40px;
  }

  .cz-l-mn-pad-top-10 {
    padding-top: 40px;
  }

  .cz-l-mn-mar-all-12 {
    margin: 48px;
  }

  .cz-l-mn-mar-hor-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .cz-l-mn-mar-vert-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .cz-l-mn-mar-right-12 {
    margin-right: 48px;
  }

  .cz-l-mn-mar-top-12 {
    margin-top: 48px;
  }

  .cz-l-mn-pad-all-12 {
    padding: 48px;
  }

  .cz-l-mn-pad-hor-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .cz-l-mn-pad-vert-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cz-l-mn-pad-right-12 {
    padding-right: 48px;
  }

  .cz-l-mn-pad-top-12 {
    padding-top: 48px;
  }

  .cz-l-mn-mar-all-14 {
    margin: 56px;
  }

  .cz-l-mn-mar-hor-14 {
    margin-left: 56px;
    margin-right: 56px;
  }

  .cz-l-mn-mar-vert-14 {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .cz-l-mn-mar-right-14 {
    margin-right: 56px;
  }

  .cz-l-mn-mar-top-14 {
    margin-top: 56px;
  }

  .cz-l-mn-pad-all-14 {
    padding: 56px;
  }

  .cz-l-mn-pad-hor-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .cz-l-mn-pad-vert-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cz-l-mn-pad-right-14 {
    padding-right: 56px;
  }

  .cz-l-mn-pad-top-14 {
    padding-top: 56px;
  }

  .cz-l-mn-mar-all-16 {
    margin: 64px;
  }

  .cz-l-mn-mar-hor-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .cz-l-mn-mar-vert-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .cz-l-mn-mar-right-16 {
    margin-right: 64px;
  }

  .cz-l-mn-mar-top-16 {
    margin-top: 64px;
  }

  .cz-l-mn-pad-all-16 {
    padding: 64px;
  }

  .cz-l-mn-pad-hor-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .cz-l-mn-pad-vert-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cz-l-mn-pad-right-16 {
    padding-right: 64px;
  }

  .cz-l-mn-pad-top-16 {
    padding-top: 64px;
  }

  .cz-l-mn-mar-all-18 {
    margin: 72px;
  }

  .cz-l-mn-mar-hor-18 {
    margin-left: 72px;
    margin-right: 72px;
  }

  .cz-l-mn-mar-vert-18 {
    margin-top: 72px;
    margin-bottom: 72px;
  }

  .cz-l-mn-mar-right-18 {
    margin-right: 72px;
  }

  .cz-l-mn-mar-top-18 {
    margin-top: 72px;
  }

  .cz-l-mn-pad-all-18 {
    padding: 72px;
  }

  .cz-l-mn-pad-hor-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .cz-l-mn-pad-vert-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cz-l-mn-pad-right-18 {
    padding-right: 72px;
  }

  .cz-l-mn-pad-top-18 {
    padding-top: 72px;
  }

  .cz-l-mn-mar-all-20 {
    margin: 80px;
  }

  .cz-l-mn-mar-hor-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .cz-l-mn-mar-vert-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .cz-l-mn-mar-right-20 {
    margin-right: 80px;
  }

  .cz-l-mn-mar-top-20 {
    margin-top: 80px;
  }

  .cz-l-mn-pad-all-20 {
    padding: 80px;
  }

  .cz-l-mn-pad-hor-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .cz-l-mn-pad-vert-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cz-l-mn-pad-right-20 {
    padding-right: 80px;
  }

  .cz-l-mn-pad-top-20 {
    padding-top: 80px;
  }
}

@media (min-width: 960px) and (max-width: 1079px) {
  .cz-l-md-mar-all-0 {
    margin: 0;
  }

  .cz-l-md-mar-hor-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .cz-l-md-mar-vert-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .cz-l-md-mar-right-0 {
    margin-right: 0;
  }

  .cz-l-md-mar-top-0 {
    margin-top: 0;
  }

  .cz-l-md-pad-all-0 {
    padding: 0;
  }

  .cz-l-md-pad-hor-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .cz-l-md-pad-vert-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cz-l-md-pad-right-0 {
    padding-right: 0;
  }

  .cz-l-md-pad-top-0 {
    padding-top: 0;
  }

  .cz-l-md-mar-all-1 {
    margin: 4px;
  }

  .cz-l-md-mar-hor-1 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .cz-l-md-mar-vert-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .cz-l-md-mar-right-1 {
    margin-right: 4px;
  }

  .cz-l-md-mar-top-1 {
    margin-top: 4px;
  }

  .cz-l-md-pad-all-1 {
    padding: 4px;
  }

  .cz-l-md-pad-hor-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .cz-l-md-pad-vert-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .cz-l-md-pad-right-1 {
    padding-right: 4px;
  }

  .cz-l-md-pad-top-1 {
    padding-top: 4px;
  }

  .cz-l-md-mar-all-2 {
    margin: 8px;
  }

  .cz-l-md-mar-hor-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .cz-l-md-mar-vert-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .cz-l-md-mar-right-2 {
    margin-right: 8px;
  }

  .cz-l-md-mar-top-2 {
    margin-top: 8px;
  }

  .cz-l-md-pad-all-2 {
    padding: 8px;
  }

  .cz-l-md-pad-hor-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .cz-l-md-pad-vert-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cz-l-md-pad-right-2 {
    padding-right: 8px;
  }

  .cz-l-md-pad-top-2 {
    padding-top: 8px;
  }

  .cz-l-md-mar-all-3 {
    margin: 12px;
  }

  .cz-l-md-mar-hor-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .cz-l-md-mar-vert-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .cz-l-md-mar-right-3 {
    margin-right: 12px;
  }

  .cz-l-md-mar-top-3 {
    margin-top: 12px;
  }

  .cz-l-md-pad-all-3 {
    padding: 12px;
  }

  .cz-l-md-pad-hor-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cz-l-md-pad-vert-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cz-l-md-pad-right-3 {
    padding-right: 12px;
  }

  .cz-l-md-pad-top-3 {
    padding-top: 12px;
  }

  .cz-l-md-mar-all-4 {
    margin: 16px;
  }

  .cz-l-md-mar-hor-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .cz-l-md-mar-vert-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .cz-l-md-mar-right-4 {
    margin-right: 16px;
  }

  .cz-l-md-mar-top-4 {
    margin-top: 16px;
  }

  .cz-l-md-pad-all-4 {
    padding: 16px;
  }

  .cz-l-md-pad-hor-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cz-l-md-pad-vert-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cz-l-md-pad-right-4 {
    padding-right: 16px;
  }

  .cz-l-md-pad-top-4 {
    padding-top: 16px;
  }

  .cz-l-md-mar-all-5 {
    margin: 20px;
  }

  .cz-l-md-mar-hor-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cz-l-md-mar-vert-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cz-l-md-mar-right-5 {
    margin-right: 20px;
  }

  .cz-l-md-mar-top-5 {
    margin-top: 20px;
  }

  .cz-l-md-pad-all-5 {
    padding: 20px;
  }

  .cz-l-md-pad-hor-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cz-l-md-pad-vert-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cz-l-md-pad-right-5 {
    padding-right: 20px;
  }

  .cz-l-md-pad-top-5 {
    padding-top: 20px;
  }

  .cz-l-md-mar-all-6 {
    margin: 24px;
  }

  .cz-l-md-mar-hor-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .cz-l-md-mar-vert-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .cz-l-md-mar-right-6 {
    margin-right: 24px;
  }

  .cz-l-md-mar-top-6 {
    margin-top: 24px;
  }

  .cz-l-md-pad-all-6 {
    padding: 24px;
  }

  .cz-l-md-pad-hor-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cz-l-md-pad-vert-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cz-l-md-pad-right-6 {
    padding-right: 24px;
  }

  .cz-l-md-pad-top-6 {
    padding-top: 24px;
  }

  .cz-l-md-mar-all-8 {
    margin: 32px;
  }

  .cz-l-md-mar-hor-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .cz-l-md-mar-vert-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .cz-l-md-mar-right-8 {
    margin-right: 32px;
  }

  .cz-l-md-mar-top-8 {
    margin-top: 32px;
  }

  .cz-l-md-pad-all-8 {
    padding: 32px;
  }

  .cz-l-md-pad-hor-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cz-l-md-pad-vert-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cz-l-md-pad-right-8 {
    padding-right: 32px;
  }

  .cz-l-md-pad-top-8 {
    padding-top: 32px;
  }

  .cz-l-md-mar-all-10 {
    margin: 40px;
  }

  .cz-l-md-mar-hor-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .cz-l-md-mar-vert-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .cz-l-md-mar-right-10 {
    margin-right: 40px;
  }

  .cz-l-md-mar-top-10 {
    margin-top: 40px;
  }

  .cz-l-md-pad-all-10 {
    padding: 40px;
  }

  .cz-l-md-pad-hor-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cz-l-md-pad-vert-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cz-l-md-pad-right-10 {
    padding-right: 40px;
  }

  .cz-l-md-pad-top-10 {
    padding-top: 40px;
  }

  .cz-l-md-mar-all-12 {
    margin: 48px;
  }

  .cz-l-md-mar-hor-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .cz-l-md-mar-vert-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .cz-l-md-mar-right-12 {
    margin-right: 48px;
  }

  .cz-l-md-mar-top-12 {
    margin-top: 48px;
  }

  .cz-l-md-pad-all-12 {
    padding: 48px;
  }

  .cz-l-md-pad-hor-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .cz-l-md-pad-vert-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cz-l-md-pad-right-12 {
    padding-right: 48px;
  }

  .cz-l-md-pad-top-12 {
    padding-top: 48px;
  }

  .cz-l-md-mar-all-14 {
    margin: 56px;
  }

  .cz-l-md-mar-hor-14 {
    margin-left: 56px;
    margin-right: 56px;
  }

  .cz-l-md-mar-vert-14 {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .cz-l-md-mar-right-14 {
    margin-right: 56px;
  }

  .cz-l-md-mar-top-14 {
    margin-top: 56px;
  }

  .cz-l-md-pad-all-14 {
    padding: 56px;
  }

  .cz-l-md-pad-hor-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .cz-l-md-pad-vert-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cz-l-md-pad-right-14 {
    padding-right: 56px;
  }

  .cz-l-md-pad-top-14 {
    padding-top: 56px;
  }

  .cz-l-md-mar-all-16 {
    margin: 64px;
  }

  .cz-l-md-mar-hor-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .cz-l-md-mar-vert-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .cz-l-md-mar-right-16 {
    margin-right: 64px;
  }

  .cz-l-md-mar-top-16 {
    margin-top: 64px;
  }

  .cz-l-md-pad-all-16 {
    padding: 64px;
  }

  .cz-l-md-pad-hor-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .cz-l-md-pad-vert-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cz-l-md-pad-right-16 {
    padding-right: 64px;
  }

  .cz-l-md-pad-top-16 {
    padding-top: 64px;
  }

  .cz-l-md-mar-all-18 {
    margin: 72px;
  }

  .cz-l-md-mar-hor-18 {
    margin-left: 72px;
    margin-right: 72px;
  }

  .cz-l-md-mar-vert-18 {
    margin-top: 72px;
    margin-bottom: 72px;
  }

  .cz-l-md-mar-right-18 {
    margin-right: 72px;
  }

  .cz-l-md-mar-top-18 {
    margin-top: 72px;
  }

  .cz-l-md-pad-all-18 {
    padding: 72px;
  }

  .cz-l-md-pad-hor-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .cz-l-md-pad-vert-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cz-l-md-pad-right-18 {
    padding-right: 72px;
  }

  .cz-l-md-pad-top-18 {
    padding-top: 72px;
  }

  .cz-l-md-mar-all-20 {
    margin: 80px;
  }

  .cz-l-md-mar-hor-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .cz-l-md-mar-vert-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .cz-l-md-mar-right-20 {
    margin-right: 80px;
  }

  .cz-l-md-mar-top-20 {
    margin-top: 80px;
  }

  .cz-l-md-pad-all-20 {
    padding: 80px;
  }

  .cz-l-md-pad-hor-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .cz-l-md-pad-vert-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cz-l-md-pad-right-20 {
    padding-right: 80px;
  }

  .cz-l-md-pad-top-20 {
    padding-top: 80px;
  }
}

:root {
  font-size: 15px;
}

body {
  font-family: Neue Plak, -apple-system, BlinkMacSystemFont, Roboto,
    Helvetica Neue, Helvetica, Tahoma, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #39364f;
  color: var(--cz-ui-800, #39364f);
}

.cz-text-bl,
.cz-text-bs--fixed {
  text-rendering: optimizeLegibility;
}

.cz-color p,
.cz-text-bl,
.cz-text-bl--fixed,
.cz-text-bs,
.cz-text-bs--fixed {
  font-weight: 400;
}

.cz-text-bl,
.cz-text-bl--fixed {
  line-height: 1.25;
}

.cz-color p,
.cz-text-bs,
.cz-text-bs--fixed {
  line-height: 1.2;
}

.cz-text-bl,
.cz-text-bl--fixed {
  font-size: 1.2rem;
}

.cz-color p,
.cz-text-bs,
.cz-text-bs--fixed {
  font-size: 14px;
}

@media (min-width: 960px) {
  .cz-text-bl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1272px) {
  .cz-text-bl {
    font-size: 1.333rem;
  }
}

.cz-text--right {
  text-align: right;
}

.cz-text--center {
  text-align: center;
}

body .cz-text-color--ui-orange {
  color: #f05537;
}

body .cz-text-color--grey-100 {
  color: #f8f7fa;
}

body .cz-text-color--grey-200 {
  color: #eeedf2;
}

body .cz-text-color--grey-300 {
  color: #dbdae3;
}

body .cz-text-color--grey-400 {
  color: #c2c2cc;
}

body .cz-text-color--grey-500 {
  color: #a9a8b3;
}

body .cz-text-color--grey-600 {
  color: #6f7287;
}

body .cz-text-color--grey-700 {
  color: #4b4d63;
}

body .cz-text-color--grey-800 {
  color: #39364f;
}

body .cz-text-color--grey-900 {
  color: #1e0a3c;
}

.cz-color {
  height: 160px;
}

body .cz-text-color--background {
  color: #fff;
  color: var(--cz-background, var(--cz-background, #fff));
}

body .cz-text-color--ui-100 {
  color: #f8f7fa;
  color: var(--cz-ui-100, var(--cz-ui-100, #f8f7fa));
}

body .cz-text-color--ui-200 {
  color: #eeedf2;
  color: var(--cz-ui-200, var(--cz-ui-200, #eeedf2));
}

body .cz-text-color--ui-300 {
  color: #dbdae3;
  color: var(--cz-ui-300, var(--cz-ui-300, #dbdae3));
}

body .cz-text-color--ui-500 {
  color: #a9a8b3;
  color: var(--cz-ui-500, var(--cz-ui-500, #a9a8b3));
}

body .cz-text-color--ui-600 {
  color: #6f7287;
  color: var(--cz-ui-600, var(--cz-ui-600, #6f7287));
}

body .cz-text-color--ui-700 {
  color: #4b4d63;
  color: var(--cz-ui-700, var(--cz-ui-700, #4b4d63));
}

body .cz-text-color--ui-800 {
  color: #39364f;
  color: var(--cz-ui-800, var(--cz-ui-800, #39364f));
}

body .cz-text-color--ui-900 {
  color: #1e0a3c;
  color: var(--cz-ui-900, var(--cz-ui-900, #1e0a3c));
}

body .cz-text-color--ui-1000 {
  color: #13002d;
  color: var(--cz-ui-1000, var(--cz-ui-1000, #13002d));
}

@keyframes moveIn {
  0% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes moveOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  65% {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  65% {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elevate {
  to {
    -webkit-transform: perspective(200px) translateZ(30px);
    transform: perspective(200px) translateZ(30px);
    -webkit-box-shadow: 0 1px 17px 0 rgba(40, 44, 53, 0.1),
      0 2px 4px 0 rgba(40, 44, 53, 0.1);
    box-shadow: 0 1px 17px 0 rgba(40, 44, 53, 0.1),
      0 2px 4px 0 rgba(40, 44, 53, 0.1);
  }
}

@keyframes shake {
  20% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
}

@keyframes grow {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes depress {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes shorten {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.5, 0.5);
    transform: scale(1.5, 0.5);
  }
}

@keyframes pop {
  20% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes bounce {
  20% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  70% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

  85% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  90% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  95% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.meeting-preview-outer .cz-media-card-content__image-content a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.meeting-preview-outer .cz-media-card-content__image-content a img {
  height: calc(100% - 10px);
  width: calc(100% - 10px);
}

@keyframes rotateX {
  to {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
}

@keyframes rotateY {
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/*Live event*/
.meeting-preview-outer {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #262626;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.facebook-iframe-wrapper {
  position: relative;
  padding-bottom: 54.9%;
}

.facebook-iframe-wrapper iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}

.meeting-preview-outer .sub-content-div {
  margin: 5px 0;
  font-size: 16px;
  color: #6f7287;
}

.sub-content-div a {
  text-decoration: underline;
  font-weight: bold;
}

p a {
  text-decoration: underline;
}

.sub-content-div a:hover,
.sub-content-div a:focus {
  color: black;
  background-color: #ffe386;
  text-decoration: underline !important;
  padding: 5px 0px 5px 0px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  border-radius: 4px;
}

.meeting-preview-outer .comment-entry-outer {
  padding: 0;
}

.meeting-preview-outer .commenter-identity-outer,
.meeting-preview-outer .comment-submit-outer,
.meeting-preview-outer .post-as-admin {
  margin: 0;
  margin-top: 5px;
}

.meeting-preview-outer .comment-display-outer {
  padding: 10px 0;
  margin: 0;
  margin-bottom: 10px;
}

.comment-display-outer .closed-to-comments {
  text-align: center;
  padding: 10px 5px;
}

.comment-scrollbox {
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(30%, white),
      to(rgba(255, 255, 255, 0))
    ),
    -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(255, 255, 255, 0)),
        color-stop(70%, white)
      ) 0 100%,
    radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
    radial-gradient(
        50% 100%,
        farthest-side,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
      )
      0 100%;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)),
    linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%,
    radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
    radial-gradient(
        50% 100%,
        farthest-side,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
      )
      0 100%;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(30%, white),
      to(rgba(255, 255, 255, 0))
    ),
    -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(255, 255, 255, 0)),
        color-stop(70%, white)
      ) 0 100%,
    radial-gradient(
      farthest-side at 50% 0,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
        farthest-side at 50% 100%,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
      )
      0 100%;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)),
    linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%,
    radial-gradient(
      farthest-side at 50% 0,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
        farthest-side at 50% 100%,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
      )
      0 100%;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  /* Opera doesn’t support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
}

.meeting-preview-outer .comment-display-privacy-prepend {
  display: none !important;
}

.meeting-preview-outer .comment-entry-prompt {
  display: none !important;
}

.meeting-preview-outer .comment-div:last-child {
  padding-bottom: 0;
}

.meeting-preview-outer .my-comment .comment-right,
.meeting-preview-outer
  .my-comment
  .comment-time
  .meeting-preview-outer
  .my-comment
  .comment-actions {
  display: block;
  float: right;
}

.meeting-preview-outer .child .comment-right,
.meeting-preview-outer .child .comment-time,
.meeting-preview-outer .child .comment-actions {
  float: none !important;
}

.meeting-preview-outer .my-comment > .comment-right .comment-text-body {
  background: #0042a9;
  color: #fff !important;
}

.meeting-preview-outer .my-comment > .comment-right span.comment-user,
.meeting-preview-outer .my-comment > .comment-right span.comment-user {
  color: #fff !important;
}

.meeting-preview-outer .circular {
  display: none;
}

.meeting-preview-outer .comment-entry-outer {
  padding-bottom: 10px;
}

.meeting-preview-outer .comment-actions {
  margin: 3px 0 3px 10px;
}

.meeting-preview-outer .comment-time {
  margin: 3px 0 3px 8px;
  color: #8e8e8e;
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  .meeting-preview-outer .liveStream,
  .meeting-preview-outer .comment-container-outer {
    padding: 0;
  }
}

#projectSidebar-container .meeting-preview-outer {
  box-shadow: none;
}

.event-admin-outer .col-sm-12.col-md-6 {
  padding: 0 2px;
}

.meeting-registration-page .rsvp-form-outer {
  width: 100%;
  max-width: 480px;
  padding: 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #262626;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.embed .meeting-registration-page .rsvp-form-outer {
  margin-bottom: 2px;
  margin-top: 1px;
}

.event-rsvp-modal .modal-header {
  border-radius: 3px 3px 0 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.event-rsvp-modal button.close {
  top: 7px;
  right: 12px;
  font-size: 1.8em;
  position: absolute;
}

.meeting-registration-page .rsvp-form-outer {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.event-actions-row button {
  margin-bottom: 10px;
}

section.meeting-preview-outer.past-event {
  box-shadow: #e2e2e2 1px 1px 0;
}

.past-meetings-outer .container > h2,
.upcoming-meetings-outer .container > h2 {
  font-size: 21px;
  font-weight: 400;
  color: #505050;
}

section.container.live-event {
  width: 100%;
}

.redirect-to-conference {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.redirect-to-conference .meeting-happening,
.redirect-to-conference .join-meeting-button,
.redirect-to-conference .conf-public-phone-info > div {
  margin: 15px 0;
  text-align: center;
}

.comments-and-video-outer .meeting-tab-content .tab-pane {
  padding: 15px;
  color: #262626;
  background: #fff;
}

.below-video-menu {
  margin-top: -6px;
  background: #000;
  color: #fff;
  text-align: right;
  padding: 3px 15px;
}
.closedCaptionsContainer {
  background: #000;
  color: #fff;
  height: 70px;
  overflow-y: scroll;
  position: relative;
}
.closedCaptionsInner {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  padding: 0 15px;
}
html.translated-ltr .cc-partial {
  display: none;
}
.agenda-item-list-front img {
  max-width: 100%;
}

.agenda-list > li {
  list-style-type: none;
}

.dvAgendaList .list-group {
  margin-bottom: 0px;
  margin-left: 0;
}

.dvAgendaList li.checkbox.i-checks {
  padding: 8px 15px;
  border-bottom: 1px solid #dedede;
  margin-top: 0;
  margin-bottom: 0;
}

.dvAgendaList li.checkbox.i-checks:hover {
  background-color: #fbfbfb;
}

.panel .e-agenda-item.selected,
.e-agenda-item.selected {
  border-width: 2px;
  border-color: #174561;
}

button.a-i-comment {
  float: right;
  margin: 0 0 6px 6px;
  padding: 1px 9px;
}

.e-agenda-item.selected .a-i-comment {
  display: none;
}

.loading-agenda-items-ui {
  padding: 5px 0 5px;
}

.e-agenda-item-select-ui {
  margin-bottom: 10px;
  margin-top: 15px;
}

.chart-comments-by-agenda-item .no-comments-found {
  margin-top: 26px;
  font-style: italic;
}

.meeting-tab-content {
  -webkit-overflow-scrolling: touch;
}

#eventTabs li.tab a {
  padding-top: 10px;
  padding-bottom: 8px;
  border: none;
  line-height: 2em;
}

#eventTabs li.tab.active {
  border-bottom: 3px solid #33333324;
}

@media only screen and (max-width: 767px) {
  #eventTabs {
    height: auto !important;
  }
}

button.btn.btn-default.select-agenda-item-button {
  width: 100%;
  max-width: 330px;
  text-align: left;
  border-radius: 5px;
}

.select-agenda-item-button .caret {
  float: right;
  margin-top: 9px;
}

.e-agenda-select-label-chosen button.e-agenda-item {
  margin-top: -7px;
  padding: 2px 7px;
  margin-left: 5px;
  margin-bottom: 2px;
}

.agenda-item-search input {
  margin-top: -7px;
  height: 25px;
  font-size: 14px;
  border-radius: 4px;
  padding: 5px 5px;
}

.list-group.agenda-item-ul {
  max-height: 40vh;
  overflow-y: auto;
  border-bottom: 1px solid #dedede;
  margin-bottom: 0;
  padding: 3px 0;
}

.calendar-events-list-outer .pagination-wrapper {
  padding: 30px 0 50px;
}

.conferenceCallParticipants-table-wrapper {
  overflow-x: scroll;
  width: 100%;
}

.rsvp-dropdown {
  width: 100px;
}

#rsvp-form .i-checks i {
  margin-left: 0;
}
