.cez-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
}
.cez-modal__overlay--opened {
  display: block;
}
.cez-modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.cez-modal {
  width: 100%;
  max-width: 928px;
  padding: 0;
  background: #ffffff;
  overflow-x: hidden;
  position: relative;
}
.cez-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: #e6e6e6;
  border: none;
  display: block;
  z-index: 1;
}
.cez-modal__close-icon {
  position: absolute;
  fill: #000;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -9px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.cez-modal__close:hover .cez-modal__close-icon {
  transform: rotatez(180deg);
}
.cez-modal__content {
  max-height: calc(100vh - 56px);
  margin-top: 56px;
  display: block;
  overflow-x: auto;
  position: relative;
  clear: both;
}
.cez-modal__headline {
  color: #f24f00;
  font-weight: 600;
  line-height: 32px;
  font-family: "RoobertCEZ", sans-serif;
  font-size: 24px;
  margin: 0 0 24px 0;
}
.cez-modal__headline--small {
  color: #363738;
  line-height: 24px;
  font-size: 16px;
}
.cez-modal__headline--big {
  color: #363738;
  line-height: 40px;
  font-size: 32px;
}
.cez-modal__container {
  padding: 64px 20px 0 20px;
}
.cez-modal__container:first-child {
  padding-top: 8px !important;
}
.cez-modal__headline--small-margin {
  margin-bottom: 8px;
}
.cez-modal__headline--medium-margin {
  margin-bottom: 16px;
}
.cez-modal__container--gray {
  background: #f6f6f6;
}
.cez-modal__text {
  font-family: "RoobertCEZ", sans-serif;
  color: #363738;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.cez-modal__text--compressed {
  line-height: 1em;
}
.cez-modal__text--small {
  font-size: 12px;
  line-height: 16px;
}
.cez-modal__text--margin {
  margin-bottom: 8px;
}
.cez-modal__button {
  display: inline-block;
  border-radius: 0;
  font-weight: 500;
  padding: 13px 26.5px 11px;
  position: relative;
  font-size: 16px;
  border: 0;
  background-color: transparent;
  text-align: center;
  white-space: normal;
  transition: all 0.4s ease;
  cursor: pointer;
  font-family: "RoobertCEZ", sans-serif;
  text-transform: uppercase;
  background: #f24f00;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 8px;
}
.cez-modal__button::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f24f00;
  z-index: -2;
}
.cez-modal__button::after {
  position: absolute;
  content: "";
  display: block;
  left: -2%;
  top: -400%;
  width: 104%;
  height: 300%;
  background-color: #000;
  z-index: -1;
  transform: skewY(15deg);
  transition: all 0.4s ease;
}
.cez-modal__button:hover {
  background: #bf3e00;
  color: #fff;
  text-decoration: none;
}
.cez-modal__button:hover::after {
  top: -93%;
}
.cez-modal__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -35px;
  margin-left: -35px;
}
.cez-modal__row--gutter-15 {
  margin-right: -15px !important;
  margin-left: -15px !important;
}
.cez-modal__col {
  position: relative;
  width: 100%;
  padding: 15px 35px;
}
.cez-modal__col--gutter-15 {
  padding: 15px !important;
}
.cez-modal__col--v-center {
  display: flex;
  align-items: center;
}
.cez-modal__col--middle {
  border-top: 1px solid #b8b3ad;
  border-bottom: 1px solid #b8b3ad;
}
@media (min-width: 768px) {
  .cez-modal__col {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cez-modal__col--middle {
    border-right: 1px solid #b8b3ad;
    border-left: 1px solid #b8b3ad;
    border-top: none;
    border-bottom: none;
  }
  .cez-modal__container {
    padding: 64px 96px;
  }
  .cez-modal__wrapper {
    height: 100%;
  }
}

.cez-modal__text-left {
  text-align: left;
}

.cez-modal__text-center {
  text-align: center;
}

.cez-modal__text-right {
  text-align: right;
}

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

.mce-content-body .cez-modal__row,
.mce-content-body .cez-modal__col {
  margin: 0;
  padding: 0;
}
