.ico-modal {
  position: fixed;
  z-index: -1;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.2s ease-out;
}
.ico-modal--show {
  display: block;
}
.ico-modal--visible {
  opacity: 1;
  transition: all 0.2s ease-in;
  top: 0;
}
.ico-modal--pop-up {
  max-width: 950px;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ico-modal--pop-up {
    max-width: 668px;
  }
}
@media (min-width: 992px) {
  .ico-modal--pop-up {
    max-width: 892px;
  }
}
@media (min-width: 1200px) {
  .ico-modal--pop-up {
    max-width: 1100px;
  }
}
.ico-modal--pop-up .ico-modal__main {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .ico-modal--pop-up .ico-modal__main {
    height: auto;
  }
}
@media (min-width: 1200px) {
  .ico-modal--pop-up .ico-modal__main {
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
.ico-modal--pop-up .ico-modal__content-wrapper {
  overflow: auto;
  height: 100%;
  max-height: calc(100vh - 60px);
}
@media (min-width: 768px) {
  .ico-modal--pop-up .ico-modal__content-wrapper {
    max-height: calc(100vh - 60px * 4);
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .ico-modal--pop-up .ico-modal__content-wrapper {
    max-height: calc(100vh - (50px - 15px) * 2.6);
  }
}
.ico-modal--compact {
  max-width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ico-modal--compact {
    max-width: 480px;
  }
}
@media (min-width: 992px) {
  .ico-modal--compact {
    max-width: 580px;
  }
}
@media (min-width: 1200px) {
  .ico-modal--compact {
    max-width: 680px;
  }
}
.ico-modal--compact .ico-modal__main {
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .ico-modal--compact .ico-modal__main {
    height: auto;
  }
}
@media (min-width: 1200px) {
  .ico-modal--compact .ico-modal__main {
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
.ico-modal--compact .ico-modal__content-wrapper {
  overflow: auto;
  height: auto;
  max-height: calc(100vh - 120px);
}
@media (min-width: 768px) {
  .ico-modal--compact .ico-modal__content-wrapper {
    max-height: calc(100vh - 180px);
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .ico-modal--compact .ico-modal__content-wrapper {
    max-height: calc(100vh - 200px);
  }
}
@media (min-width: 1200px) {
  .ico-modal--compact .ico-modal__content-wrapper {
    max-height: calc(100vh - 150px);
  }
}
.ico-modal--full-screen .ico-modal__main {
  height: 100vh;
  padding: 50px 0;
  overflow-y: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .ico-modal--full-screen .ico-modal__main {
    top: 0;
    position: fixed;
    padding: 30px 0;
  }
}
@media (min-width: 1200px) {
  .ico-modal--full-screen .ico-modal__main {
    overflow-y: hidden;
    top: 0;
  }
}
@media (min-width: 1440px) {
  .ico-modal--full-screen .ico-modal__main {
    padding: 60px 0;
    top: 0;
  }
}
.ico-modal__overlay {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.2s;
}
.ico-modal__overlay--show {
  opacity: 1;
}
.ico-modal__content-wrapper {
  width: 100%;
  padding: 0 15px 15px 15px;
}
.ico-modal__main {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding-top: 60px;
  background-color: #ffffff;
  transition: all 0.3s;
  top: 0;
  opacity: 1;
  box-shadow: none;
}
.ico-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 16px;
  color: #da291c;
  z-index: 1;
  cursor: pointer;
}
.ico-modal__close:hover,
.ico-modal__close:active,
.ico-modal__close:focus {
  color: #000;
}
.ico-modal__close--hide {
  display: none;
}
.ico-modal__close--show-icon::before {
  font-family: 'icomoon';
  content: '\e906';
  font-style: normal;
  color: #58595b;
  width: 25px;
  height: 25px;
  background-color: transparent !important;
  font-size: 16px;
}
.ico-modal--no-close .ico-modal__close {
  display: none;
}
.ico-modal--no-close .ico-modal__main {
  padding-top: 0;
}
.ico-modal--no-close .ico-modal__content-wrapper {
  height: 100vh;
  max-height: none;
}
@media (min-width: 768px) {
  .ico-modal--no-close .ico-modal__content-wrapper {
    height: 100%;
    max-height: calc(100vh - 60px);
  }
}
.ico-modal__header-inner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}
.ico-modal__header-section {
  display: flex;
  align-items: center;
}
.ico-modal--has-sticky-header {
  background-color: #f5f5f5;
}
.ico-modal--has-sticky-header.ico-modal--visible .ico-modal__header {
  top: 0;
  transition: all 0.2s ease-in;
}
.ico-modal--has-sticky-header.ico-modal--scrolled .ico-modal__header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.ico-modal--has-sticky-header.ico-modal--scrolled .ico-modal--has-sticky-header .ico-modal__header {
  box-shadow: none;
}
.ico-modal--has-sticky-header.ico-modal--scrolled .ico-modal--has-sticky-header.ico-modal--scrolled .ico-modal__header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.ico-modal--has-sticky-header .ico-modal__main {
  box-shadow: none;
}
.ico-modal--has-sticky-header .ico-modal__content-wrapper {
  padding: 0;
}
.ico-modal--has-sticky-header .ico-modal__header {
  position: sticky;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  z-index: 9;
  top: -60px;
  transition: all 0.2s ease-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}
.ico-modal--has-sticky-header .ico-modal__header-wrapper {
  padding: 16px;
  min-height: 60px;
}
.ico-modal--has-sticky-header .ico-modal__close {
  position: static;
  margin-left: 20px;
}
@media (min-width: 1440px) {
  .ico-modal--has-sticky-header .ico-modal__close {
    position: absolute;
    top: 16px;
    right: 40px;
  }
}
@media screen and (max-width: 575px) {
  .ico-modal__overlay {
    display: none;
  }
}
@media screen and (max-width: 768px) and (min-width: 1px) {
  .ico-modal__content {
    position: relative;
  }
  .ico-modal__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .ico-modal__close::after,
  .ico-modal__close::before {
    background-color: #ffffff;
  }
}
@media screen and (min-width: 576px) {
  .ico-modal__content-wrapper {
    padding: 24px;
    padding-top: 0;
  }
  .ico-modal__close {
    right: 24px;
    top: 24px;
  }
  .ico-modal__main {
    position: relative;
    top: 12%;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 60px;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 1440px) {
  .ico-modal__main {
    top: 15%;
  }
}
@media (min-width: 1440px) {
  .ico-modal--shifted {
    width: 1300px;
    margin: 35px auto 0 auto;
    right: 0;
  }
}
