@font-face {
  font-family: "poppins-bold";
  font-style: "normal";
  font-weight: "normal";
  src: url("../assets/fonts/poppins-bold-webfont.ttf") format("truetype"), url("../assets/fonts/poppins-bold-webfont.woff2") format("woff2"), url("../assets/fonts/poppins-bold-webfont.woff") format("woff");
}
@font-face {
  font-family: "poppins-medium";
  font-style: "normal";
  font-weight: "normal";
  src: url("../assets/fonts/poppins-medium-webfont.woff2") format("woff2"), url("../assets/fonts/poppins-medium-webfont.woff") format("woff");
}
@font-face {
  font-family: "poppins-regular";
  font-style: "normal";
  font-weight: "bold";
  src: url("../assets/fonts/poppins-medium-webfont.woff2") format("woff2"), url("../assets/fonts/poppins-medium-webfont.woff") format("woff");
}
@font-face {
  font-family: "poppins-regular";
  font-style: "normal";
  font-weight: "normal";
  src: url("../assets/fonts/poppins-regular-webfont.ttf") format("truetype"), url("../assets/fonts/poppins-regular-webfont.woff2") format("woff2"), url("../assets/fonts/poppins-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "dosis-regular";
  font-style: "normal";
  font-weight: "normal";
  src: url("../assets/fonts/dosis-regular-webfont.woff2") format("woff2"), url("../assets/fonts/dosis-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "dosis-bold";
  font-style: "normal";
  font-weight: "normal";
  src: url("../assets/fonts/dosis-bold-webfont.woff2") format("woff2"), url("../assets/fonts/dosis-bold-webfont.woff") format("woff");
}
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html,
html a {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

body {
  background: #f8f9fd;
  color: #737b9a;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.body--modal-shown {
  overflow: hidden;
  padding-right: 17px;
}
body.body--background {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f8f9fd;
  background-attachment: fixed;
}

input::-moz-placeholder {
  overflow: visible;
}

input::placeholder {
  overflow: visible;
}

strong {
  color: #2728a9;
}

.tooltiptext {
  position: absolute;
  top: -20px;
  margin-right: 8px;
  right: 0;
  white-space: nowrap;
  background: #737b9a;
  padding: 4px 8px;
  color: white;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transform: translateY(10px);
  transition: all 250ms ease-out;
}
.tooltiptext:before {
  content: "";
  width: 0;
  height: 0px;
  border: 6px solid transparent;
  border-top: 8px solid #737b9a;
  position: absolute;
  right: 30px;
  top: 100%;
}

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

[data-height="60"] {
  height: 60px;
}
@media (max-width: 575.98px) {
  [data-height="60"] {
    height: auto;
  }
}

[data-height="80"] {
  height: 80px;
}
@media (max-width: 575.98px) {
  [data-height="80"] {
    height: auto;
  }
}

[data-height="100"] {
  height: 100px;
}
@media (max-width: 575.98px) {
  [data-height="100"] {
    height: auto;
  }
}

.link {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #2728a9;
  text-decoration: none;
  position: relative;
  transition: top 200ms ease-out;
  padding-bottom: 4px;
  display: inline-block;
}
.link:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  transition: width 300ms ease-out;
  background-color: #2728a9;
  text-align: left;
}
.link:hover:before {
  width: 40px;
}

.image img {
  max-width: 100%;
  display: inline-block;
}
.image.image--scroll {
  position: absolute;
  left: 0;
  text-align: right;
  width: calc(100% - 30px);
}
.image.image--scroll img {
  max-width: 100%;
  display: inline-block;
}
.image.image--offset-bottom {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .image.image--offset-bottom {
    text-align: center;
    max-width: 100%;
  }
}
.image.image--offset-bottom img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .image.image--offset-bottom img {
    position: static;
    display: inline-block;
    max-width: 100%;
  }
}
.image.image--stay-bottom-right {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .image.image--stay-bottom-right {
    text-align: center;
    max-width: 100%;
  }
}
.image.image--stay-bottom-right img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .image.image--stay-bottom-right img {
    position: static;
    display: inline-block;
    max-width: 100%;
  }
}

.page--background {
  background-color: rgba(115, 123, 154, 0.2);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.page--centered {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  .page--centered {
    min-height: auto;
  }
}
.page--centered .page__wrapper {
  text-align: center;
}
.page--centered .page__title {
  color: #2728a9;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin: 0;
  margin-bottom: 14px;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
}
.page--centered .page__image {
  margin-bottom: 20px;
}
.page--centered .page__image img {
  max-width: 100%;
  display: inline-block;
}
.page--centered .page__content h2 {
  color: black;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
}
.page--centered .page__content h4 {
  margin: 0;
  color: #737b9a;
  font-weight: normal;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.page--centered .page__content p {
  margin: 0;
  margin-bottom: 20px;
}
.page--centered .page__content .hgroup h2 {
  margin-bottom: 4px;
}
.page--centered .page__content .hgroup + .box {
  margin: 0;
  margin-top: 24px;
}
.page--centered .page__box {
  margin-bottom: 0;
}
.page--centered table {
  width: 100%;
}
.page--centered table td {
  padding: 4px 8px;
}
.page--centered table td:last-child {
  text-align: right;
}

.caption-white {
  color: white;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 767.98px) {
  .caption-white {
    font-size: 0.8125rem !important;
    line-height: 1.25rem !important;
  }
}

.d-flex {
  display: flex;
  flex-flow: row wrap;
}

.text-center {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.my-5 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.icon.icon--large {
  width: 48px;
  height: 48px;
}

.icon.icon--danger {
  stroke: #e5493d;
}

.small {
  font-size: 0.75rem;
  line-height: 1.125rem;
  margin: 0;
  margin-bottom: 18px;
}

.wrapper {
  height: 100%;
}
.wrapper--flex {
  display: flex;
  flex-flow: column nowrap;
}
.wrapper--flex .navbar,
.wrapper--flex .main,
.wrapper--flex .footer {
  width: 100%;
}
.wrapper--flex .navbar {
  flex: 0 0 auto;
}
.wrapper--flex .main {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.wrapper--flex .footer {
  flex: 0 0 auto;
}
@media (max-width: 575.98px) {
  .wrapper--flex {
    display: block;
  }
}

.main--simplify {
  margin-bottom: -68px;
  padding-bottom: 68px;
}
.main--empty {
  margin-bottom: -48px;
  padding-bottom: 48px;
  min-height: 100vh;
}

.aside-main {
  display: flex;
  flex-flow: row wrap;
}
.aside-main .aside {
  width: 280px;
  padding-right: 40px;
}
@media (max-width: 767.98px) {
  .aside-main .aside {
    display: none;
  }
}
.aside-main .aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aside-main .aside li {
  padding: 8px 0;
}
.aside-main .aside__link {
  text-decoration: none;
  color: #737b9a;
  transition: color 250ms ease-out;
}
.aside-main .aside__link:hover {
  color: #2728a9;
}
.aside-main .aside__link.active {
  color: #2728a9;
}
.aside-main .main {
  width: calc(100% - 280px);
}
@media (max-width: 767.98px) {
  .aside-main .main {
    width: 100%;
  }
}
.aside-main .main__content {
  padding: 0 0 60px;
}
.aside-main .main__content:last-child {
  padding: 0;
}
.aside-main .main__title {
  color: #2728a9;
  font-family: dosis-bold, "Segoe UI", Arial, sans-serif;
  margin: 0;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 16px;
  font-weight: normal;
}
@media (max-width: 575.98px) {
  .aside-main .main__title {
    text-align: center;
  }
}
.aside-main .main__list {
  margin: 0;
  padding: 0;
  padding-left: 15px;
}
.aside-main .main__list li {
  padding: 4px 0;
}
.aside-main--scroll .aside {
  position: relative;
}
.aside-main--scroll .aside .box {
  position: absolute;
  left: 0;
  width: calc(100% - 40px);
}
.aside-main--scroll .active .aside__link {
  color: #2728a9;
}

.grid {
  display: flex;
  flex-flow: row wrap;
  margin-left: -24px;
  margin-right: -24px;
}
.grid--compact {
  margin-left: -8px;
  margin-right: -8px;
}
.grid--compact .grid__item {
  margin-bottom: 0px;
  padding: 0 16px;
}
.grid--3col .grid__item {
  width: 33.333%;
}
@media (max-width: 991.98px) {
  .grid--3col .grid__item {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .grid--3col .grid__item {
    width: 100%;
  }
}
.grid__item {
  width: 100%;
  padding: 0 24px;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .grid__item {
    margin-bottom: 48px;
    text-align: center;
  }
  .grid__item:last-child {
    margin-bottom: 0;
  }
}
.grid__image {
  margin-bottom: 20px;
  line-height: 0;
  min-height: 150px;
}
.grid__image img {
  max-width: 100%;
  display: inline-block;
}
.grid__title {
  color: #2728a9;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  margin-bottom: 4px;
}
.grid__title a {
  color: #2728a9;
  text-decoration: none;
}
.grid__content {
  height: 60px;
  overflow: hidden;
  margin-bottom: 8px;
}
@media (max-width: 575.98px) {
  .grid__content {
    height: auto;
    max-height: 60px;
  }
}
.grid__content p {
  margin: 0;
  margin-bottom: 20px;
}
.grid__content p:last-child {
  margin-bottom: 0;
}

.gallery {
  margin-bottom: 24px;
}
.gallery.gallery--center {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.gallery__item {
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
}
.gallery__image img {
  max-height: 40px;
  display: inline-block;
}

.footer > .footer__text {
  text-align: center;
}
.footer__text {
  text-align: left;
  margin: 16px 0 24px;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
@media (max-width: 991.98px) {
  .footer__text {
    text-align: center;
  }
}
.footer__wrapper {
  background: white;
  padding: 64px 0;
}
.footer__container {
  width: 80%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1199.98px) {
  .footer__container {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .footer__container {
    width: 100%;
  }
}
.footer__row {
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.footer__colnav {
  width: 25%;
  padding: 0 16px;
}
@media (max-width: 991.98px) {
  .footer__colnav {
    width: 25%;
    padding: 0 16px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .footer__colnav {
    width: 50%;
    padding: 0 16px;
  }
}
.footer__colnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__colnav li {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  padding: 4px 0;
}
.footer__colnav a {
  text-decoration: none;
  color: #737b9a;
  transition: color 250ms ease-out;
}
.footer__colnav a:hover {
  color: #2728a9;
}
.footer__title {
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  color: #2728a9;
  font-weight: normal;
  margin: 0;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (max-width: 767.98px) {
  .footer__title {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(115, 123, 154, 0.2);
    margin-bottom: 16px;
  }
}
.footer__nav {
  width: calc(100% - 240px);
  padding: 0 16px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .footer__nav {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__info {
  width: 240px;
  padding: 0 16px;
  font-size: 0.8125rem;
  color: #737b9a;
  line-height: 1.25rem;
}
@media (max-width: 991.98px) {
  .footer__info {
    width: 100%;
    text-align: center;
  }
}
.footer__logo {
  margin-bottom: 8px;
}
.footer__text {
  margin-top: 20px;
}
.footer__text span {
  display: block;
  line-height: 20px;
}
.footer__text-link {
  text-decoration: none;
  color: #2728a9;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.footer__text-link:hover {
  text-decoration: underline;
}
.footer__socials {
  margin-top: 10px;
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 991.98px) {
  .footer__socials {
    justify-content: center;
  }
}
.footer__social {
  padding-right: 4px;
}
.footer__social-link {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #dfe7fe;
  line-height: 16px;
  padding: 8px;
  transition: background-color 300ms ease-out;
}
.footer__social-link .icon {
  width: 16px;
  height: 16px;
}
.footer__social-link:hover {
  background: #2728a9;
}
.footer__social-link:hover .icon {
  stroke: white;
}

.footer--simplified .footer__wrapper {
  padding: 16px 0;
}
@media (max-width: 767.98px) {
  .footer--simplified .footer__wrapper {
    padding: 0;
  }
}
.footer--simplified .footer__container {
  width: 100%;
}
.footer--simplified .footer__row {
  align-items: center;
}
.footer--simplified .footer__logo,
.footer--simplified .footer__socials,
.footer--simplified .footer__text {
  margin: 0;
  text-align: left;
}
@media (max-width: 991.98px) {
  .footer--simplified .footer__logo,
  .footer--simplified .footer__socials,
  .footer--simplified .footer__text {
    text-align: center;
  }
}
.footer--simplified .footer__text {
  text-align: center;
  font-size: 0.6875rem;
}
@media (max-width: 991.98px) {
  .footer--simplified .footer__text {
    margin: 16px 0;
  }
}
.footer--simplified .footer__socials {
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .footer--simplified .footer__socials {
    justify-content: center;
  }
}

.section,
.banner {
  overflow-x: hidden;
  overflow-y: visible;
}
.section--static,
.banner--static {
  padding: 64px 0 64px;
  position: relative;
  margin-bottom: 64px;
}
.section--blue,
.banner--blue {
  background: #2728a9;
  color: white;
  padding: 64px 0;
}
.section--blue h1,
.banner--blue h1 {
  color: inherit;
  font-size: 2rem;
  margin: 0;
  margin-bottom: 24px;
}
.section--blue .align-center,
.section--blue .section__action,
.banner--blue .align-center,
.banner--blue .section__action {
  text-align: center;
  justify-content: center;
}
.section__header,
.banner__header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 24px;
}
.section__header .card,
.banner__header .card {
  width: 100%;
}
.section__header .push-left,
.banner__header .push-left {
  margin-left: auto;
}
.section__header .section__title,
.banner__header .section__title {
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #2728a9;
  margin: 0;
  font-weight: normal;
  margin-bottom: 8px;
}
.section__header--border-bottom,
.banner__header--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.section__single,
.banner__single {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .section__single,
  .banner__single {
    width: 100%;
    margin: 0;
  }
}
.section__single p,
.section__single ul,
.section__single ol,
.banner__single p,
.banner__single ul,
.banner__single ol {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 20px;
}
.section__single ol,
.section__single ul,
.banner__single ol,
.banner__single ul {
  padding: 0;
  padding-left: 16px;
}
.section__single li,
.banner__single li {
  padding-left: 8px;
}
.section__single strong,
.banner__single strong {
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  color: #737b9a;
}
.section__desc,
.banner__desc {
  margin-bottom: 40px;
  max-height: 80px;
  overflow: hidden;
}
.section__desc p,
.banner__desc p {
  line-height: 20px;
  margin: 0;
  margin-bottom: 20px;
}
.section__vcenter,
.banner__vcenter {
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .section__vcenter,
  .banner__vcenter {
    display: block;
  }
}
.section__highlight-text,
.banner__highlight-text {
  font-size: 2rem;
  line-height: 3rem;
  margin: 0;
  margin-bottom: 20px;
  color: black;
}
@media (max-width: 575.98px) {
  .section__highlight-text,
  .banner__highlight-text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.section__hgroup,
.banner__hgroup {
  max-width: 800px;
  padding: 0 32px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .section__hgroup,
  .banner__hgroup {
    max-width: none;
    margin: 0;
  }
}
.section__hgroup + div,
.banner__hgroup + div {
  margin-top: 48px;
}
.section__hgroup + .banner__meta,
.banner__hgroup + .banner__meta {
  margin-top: 20px;
}
.section__hgroup + .banner__action,
.banner__hgroup + .banner__action {
  margin-top: 24px;
}
.section__hgroup.center,
.banner__hgroup.center {
  text-align: center;
}
@media (max-width: 767.98px) {
  .section__hgroup.center,
  .banner__hgroup.center {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.section__summary,
.banner__summary {
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  text-transform: capitalize;
  color: #afb5ce;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 16px;
  border-left: 2px solid #afb5ce;
  margin-bottom: 40px;
}
.section__summary p,
.banner__summary p {
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .section__summary,
  .banner__summary {
    margin: 0;
    max-width: none;
  }
}
.section__image--offset-right,
.banner__image--offset-right {
  text-align: right;
}
@media (max-width: 991.98px) {
  .section__image--offset-right,
  .banner__image--offset-right {
    text-align: center;
  }
}
.section__image--offset-right img,
.banner__image--offset-right img {
  display: inline-block;
  max-width: 100%;
}
.section__image--offset-left,
.banner__image--offset-left {
  position: relative;
  width: 100%;
}
.section__image--offset-left img,
.banner__image--offset-left img {
  position: absolute;
  right: 0;
}
@media (max-width: 991.98px) {
  .section__image--offset-left,
  .banner__image--offset-left {
    text-align: center;
  }
  .section__image--offset-left img,
  .banner__image--offset-left img {
    position: static;
    max-width: 100%;
    display: inline-block;
    margin-bottom: 32px;
  }
}
.section__highlight,
.banner__highlight {
  margin: 0;
  line-height: 20px;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  color: #737b9a;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.section__title,
.banner__title {
  font-family: dosis-bold, "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #2728a9;
  margin: 0;
  font-weight: normal;
  margin-bottom: 8px;
}
.section__feature,
.banner__feature {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
.section__feature h1,
.banner__feature h1 {
  font-size: 2rem;
  color: #2728a9;
  font-family: dosis-bold, "Segoe UI", Arial, sans-serif;
  margin: 0;
  margin-bottom: 16px;
}
.section__feature p,
.banner__feature p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}
.section__feature p + p,
.banner__feature p + p {
  margin-top: 24px;
}
.section__subline,
.banner__subline {
  font-weight: normal;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  color: #737b9a;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin: 0;
}
.section__action,
.banner__action {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
@media (max-width: 575.98px) {
  .section__action,
  .banner__action {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 575.98px) {
  .section__action .button,
  .banner__action .button {
    display: flex;
    justify-content: center;
    margin: 0;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }
}
.section__left, .section__right,
.banner__left,
.banner__right {
  width: 50%;
}
@media (max-width: 767.98px) {
  .section__left, .section__right,
  .banner__left,
  .banner__right {
    width: 100%;
  }
  .section__left .button, .section__right .button,
  .banner__left .button,
  .banner__right .button {
    width: 100% !important;
    margin-bottom: 8px;
  }
  .section__left p, .section__right p,
  .banner__left p,
  .banner__right p {
    text-align: center !important;
  }
}
.section__right,
.banner__right {
  margin-left: auto;
  text-align: right;
}
.section__right button + p,
.banner__right button + p {
  margin-top: 20px;
}
.section--bluish,
.banner--bluish {
  background-color: #f8f9fd;
}
.section--white,
.banner--white {
  background-color: white;
}
.section--vspace,
.banner--vspace {
  padding: 64px 0;
}
@media (max-width: 767.98px) {
  .section--vspace,
  .banner--vspace {
    padding: 32px 0 16px;
  }
}
@media (max-width: 575.98px) {
  .section--vspace,
  .banner--vspace {
    margin: 0 !important;
  }
}
.section--vtopspace,
.banner--vtopspace {
  padding: 120px 0 64px;
}
.section--top-page,
.banner--top-page {
  padding: 160px 0 64px;
}
.section--background-dark,
.banner--background-dark {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.section--background-dark .section__title,
.section--background-dark .section__highlight,
.section--background-dark .section__subline,
.section--background-dark .banner__title,
.section--background-dark .banner__desc,
.section--background-dark .banner__highlight,
.section--background-dark .banner__subline,
.banner--background-dark .section__title,
.banner--background-dark .section__highlight,
.banner--background-dark .section__subline,
.banner--background-dark .banner__title,
.banner--background-dark .banner__desc,
.banner--background-dark .banner__highlight,
.banner--background-dark .banner__subline {
  color: white;
}
.section--background,
.banner--background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.section--repeaty,
.banner--repeaty {
  background-repeat: repeat-y;
}

.section__date + .section__content {
  padding-top: 20px;
}
.section__image {
  text-align: center;
}
.section__image img {
  max-width: 70%;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .section__image {
    padding-bottom: 24px;
  }
  .section__image img {
    max-width: 80%;
    display: inline-block;
  }
}
.section--top-page {
  padding: 160px 0 64px;
}
@media (max-width: 575.98px) {
  .section--top-page {
    padding: 120px 0 64px;
  }
}
.section__content {
  padding-top: 30px;
}
.section__content h2,
.section__content h3,
.section__content h4,
.section__content h5 {
  color: black;
}
.section__content p,
.section__content ol,
.section__content ul {
  color: #59607e;
  margin: 0;
  margin-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .section__content p,
  .section__content ol,
  .section__content ul {
    font-size: 0.8125rem;
  }
}
.section__content [data-height="80"] {
  height: 96px;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .section__content [data-height="80"] {
    height: auto;
    overflow: visible;
  }
}
.section__content p + h3,
.section__content ul + h3,
.section__content ol + h3 {
  margin-top: 40px;
}
.section__content ul {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  padding-left: 14px;
}
.section__content ul li {
  padding-left: 4px;
  color: #59607e;
}
@media (max-width: 991.98px) {
  .section__content {
    padding-bottom: 40px;
  }
}
.section__meta {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .section__meta {
    max-width: none;
    margin: 0;
  }
}
.section__meta p {
  margin: 0;
  margin-bottom: 20px;
}
.section__meta-content {
  padding-bottom: 20px;
}
.section__meta-title {
  margin: 0;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}

.section--banner-promo {
  background: #0066b3;
}
.section--banner-promo .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.section--banner-promo img {
  max-width: 100%;
}

.banner {
  overflow: visible;
}
.banner.banner--top-page {
  padding-top: 80px;
  padding-bottom: 32px;
}
@media (max-width: 575.98px) {
  .banner.banner--top-page {
    padding-bottom: 60px;
  }
}
.banner__hgroup {
  max-width: none;
  margin: 0;
  padding: 0;
}
.banner__content {
  padding-top: 30px;
}
.banner__meta {
  color: #afb5ce;
  margin: 0;
}
.banner__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.banner__description {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .banner__description {
    padding: 0 32px;
    width: 100%;
  }
}
.banner__description p {
  font-size: 0.875rem;
}
.banner__description strong {
  color: white;
}
.banner.banner--background-dark {
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 991.98px) {
  .banner.banner--background-dark {
    background-position: left bottom;
  }
}
@media (max-width: 575.98px) {
  .banner.banner--background-dark {
    text-align: center;
  }
}
.banner.banner--background-dark .banner__description {
  color: white;
}
.banner.banner--center {
  text-align: center;
}
.banner.banner--center .banner__action {
  justify-content: center;
}
.banner.banner--center .banner__hgroup {
  text-align: center;
  padding: 0 32px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .banner.banner--center .banner__hgroup {
    max-width: none;
    margin: 0;
  }
}
.banner.banner--center .banner__hgroup + .banner__description {
  margin-top: 16px !important;
}
.banner.banner--large .row {
  min-height: 388px;
}
@media (max-width: 991.98px) {
  .banner .col-2of4:first-child {
    order: 1;
  }
  .banner .col-2of4:last-child {
    order: 0;
  }
  .banner .image.image--offset-bottom {
    width: 30%;
  }
  .banner .button {
    margin-bottom: 16px;
    padding: 12px 16px;
  }
}
@media (max-width: 575.98px) {
  .banner .image.image--offset-bottom {
    width: 60%;
    margin: 0 auto;
  }
}

.container {
  margin: 0 auto;
  width: 1200px;
  padding: 0 16px;
  box-sizing: border-box;
}
.container.container--fluid {
  width: 100%;
  padding: 0 16px;
}
@media (max-width: 1199.98px) {
  .container.container--fluid {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container.container--fluid {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .container.container--fluid {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .container.container--fluid {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    width: 750px;
  }
}
@media (max-width: 767.98px) {
  .container {
    width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 575.98px) {
  .container {
    width: 100%;
    margin: 0;
  }
}

.row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -16px;
  margin-right: -16px;
  width: auto;
}
.row--justify-center {
  justify-content: center;
}
.row--align-items-center {
  align-items: center;
}
.row + div {
  margin-top: 24px;
}

.row--dotted, .row--dotted-light {
  position: relative;
}
.row--dotted:before, .row--dotted-light:before, .row--dotted:after, .row--dotted-light:after {
  content: "";
  position: absolute;
  top: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../assets/images/default/ornament-dot-violet.png");
  width: 67px;
  height: 175px;
}
.row--dotted:before, .row--dotted-light:before {
  left: 0;
  transform: translate(-99px, -60%);
}
.row--dotted:after, .row--dotted-light:after {
  left: 100%;
  transform: translate(32px, -60%);
}
@media (max-width: 991.98px) {
  .row--dotted:before, .row--dotted-light:before, .row--dotted:after, .row--dotted-light:after {
    display: none;
  }
}

.row--dotted-light:before, .row--dotted-light:after {
  background-image: url("../assets/images/default/ornament-dot-white.png");
}

.col {
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  position: relative;
}

.col-1of3, .col-4of4, .col-3of4, .col-2of4, .col-1of4, .col-3of3, .col-2of3 {
  width: 33.333%;
  box-sizing: border-box;
  padding: 0 16px;
  position: relative;
}
.col-1of3:last-child, .col-4of4:last-child, .col-3of4:last-child, .col-2of4:last-child, .col-1of4:last-child, .col-3of3:last-child, .col-2of3:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .col-1of3, .col-4of4, .col-3of4, .col-2of4, .col-1of4, .col-3of3, .col-2of3 {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .col-1of3, .col-4of4, .col-3of4, .col-2of4, .col-1of4, .col-3of3, .col-2of3 {
    padding: 0 16px;
  }
}

.col-2of3 {
  width: 66.666%;
}
@media (min-width: 1200px) {
  .col-2of3 {
    width: 66.666%;
  }
}
@media (max-width: 991.98px) {
  .col-2of3 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-3of3 {
    width: 100%;
  }
}

.col-1of4 {
  width: 25%;
}
@media (max-width: 991.98px) {
  .col-1of4 {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .col-1of4 {
    width: 100%;
  }
}

.col-2of4 {
  width: 50%;
}
@media (max-width: 991.98px) {
  .col-2of4 {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .col-2of4 {
    width: 100%;
  }
}

.col-3of4 {
  width: 75%;
}
@media (max-width: 991.98px) {
  .col-3of4 {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .col-3of4 {
    width: 100%;
  }
}

.col-push-1of4 {
  margin-left: 12%;
}
@media (max-width: 991.98px) {
  .col-push-1of4 {
    margin-left: 0%;
  }
}
@media (max-width: 767.98px) {
  .col-push-1of4 {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .col-4of4 {
    width: 100%;
  }
}

.overlay {
  position: fixed;
  background: white;
  transition: all 250ms ease-out;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 575.98px) {
  .part {
    width: calc(100% - 48px);
    padding-top: 32px;
  }
}
.part__hgroup {
  text-align: center;
  padding-bottom: 24px;
}
.part__hgroup .title {
  margin: 0;
  margin-bottom: 4px;
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
.part__hgroup .desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.part__hgroup .label {
  margin: 0;
}
.part__hgroup .link {
  color: #4443e9;
}
.part__image {
  text-align: center;
  padding-bottom: 24px;
}
.part__image img {
  display: inline-block;
  max-width: 100%;
}
.part__text {
  width: 336px;
  padding-bottom: 16px;
}
@media (max-width: 575.98px) {
  .part__text {
    width: 100%;
  }
}
.part__text h1,
.part__text h2,
.part__text h3,
.part__text h4,
.part__text h5 {
  font-weight: normal;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  margin: 0;
  margin-bottom: 8px;
}
.part__text ul {
  margin: 0;
  padding: 0;
  padding-left: 16px;
}
.part__text li {
  padding: 4px;
}
.part__box {
  background: white;
  box-shadow: 0 3px 8px rgba(148, 165, 220, 0.3);
  border-radius: 12px;
  min-width: 400px;
  max-width: 600px;
  padding: 32px;
  height: 100%;
  position: relative;
  transform: translate(0, 0);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}
@media (max-width: 575.98px) {
  .part__box {
    min-width: auto;
    width: 100%;
    max-width: none;
  }
}
.part .table td {
  padding: 8px 16px;
}
@media (max-width: 575.98px) {
  .part .button {
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 575.98px) {
  .part .collapsible__content {
    padding: 0 4px;
  }
}

.box {
  background: white;
  box-shadow: 0 3px 8px rgba(148, 165, 220, 0.3);
  border-radius: 12px;
  padding: 16px;
  height: 100%;
  position: relative;
  transform: translate(0, 0);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}
@media (max-width: 767.98px) {
  .box {
    margin-bottom: 24px;
  }
}
.box__label-icon {
  text-align: right;
}
.box__label-icon .icon {
  stroke: rgba(39, 40, 169, 0.3);
}
.box__label {
  margin: 0;
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: #737b9a;
}
.box__num {
  margin: 0;
  line-height: 1;
  font-size: 2.5rem;
  color: #59607e;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.box__num span {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #afb5ce;
  margin-left: 4px;
}
.box__header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-bottom: 16px;
}
@media (max-width: 575.98px) {
  .box__header {
    align-items: flex-start;
  }
}
.box__header .title {
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  flex: 1 1 0;
}
.box__header .button {
  margin-left: auto;
  font-size: 0.75rem;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 4px;
}
.box__content--scroll {
  padding-right: 16px;
  height: 300px;
  position: relative;
}
@media (max-width: 767.98px) {
  .box__content--scroll {
    height: auto;
  }
}
.box__item {
  padding: 16px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.box__item:last-child {
  border-bottom: 0;
}
.box__item .cat {
  text-transform: uppercase;
  font-size: 0.625rem;
  color: #7d97f4;
  letter-spacing: 1px;
}
.box__item .text {
  font-size: 0.8125rem;
  color: #59607e;
  line-height: 1.5;
  margin-bottom: 4px;
}
.box__item .text a {
  text-decoration: none;
  color: #e5493d;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.box__item .text a:hover {
  color: #f26055;
  text-decoration: underline;
}
.box__item .date {
  font-size: 0.625rem;
  color: #afb5ce;
}
.box__hgroup {
  margin-bottom: 24px;
}
.box__hgroup .title {
  margin: 0;
  margin-bottom: 4px;
  line-height: 1.2;
  font-weight: normal;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}
.box__hgroup .desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}
.box__hgroup .desc span {
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
}
.box__image-offset {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(30px, 20px);
}
@media (max-width: 767.98px) {
  .box__image-offset {
    margin-top: 24px;
    position: static;
    text-align: center;
    transform: none;
  }
  .box__image-offset img {
    display: inline-block;
  }
}
.box--background {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ebeffd;
}
.box--text-white {
  color: white;
}
.box--content-center {
  text-align: center;
  padding: 96px 24px;
}
@media (max-width: 991.98px) {
  .box--content-center {
    padding: 64px 24px;
  }
}
@media (max-width: 767.98px) {
  .box--content-center {
    padding: 32px 24px;
  }
}

button[type=submit] {
  margin-top: 16px;
}

button:disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.button {
  background: #ebeffd;
  font-size: 0.875rem;
  color: #737b9a;
  border: 0;
  padding: 0;
  line-height: 1.3125rem;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 250ms ease-out, border-color 250ms ease-out;
  padding: 8px 16px;
  border-radius: 4px;
}
.button:hover {
  background: #7d97f4;
  color: white;
}
.button:active {
  background: #4443e9;
  color: white;
}
.button .icon {
  height: 16px;
  width: 16px;
}
.button .icon + .text {
  margin-left: 6px;
}
.button .text + .icon {
  margin-left: 6px;
}
.button .text {
  font-size: 0.875rem;
}

.button--primary {
  background: #e5493d;
  color: white;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.button--primary:hover {
  background: #f26055;
  color: white;
}
.button--primary:active {
  background: #b81307;
  color: white;
}
.button--primary:disabled:hover, .button--primary:disabled:active {
  background: #e5493d;
  color: white;
}

.button--secondary {
  background: #ff908c;
  color: white;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.button--secondary:hover {
  background: #ffa7a3;
  color: white;
}
.button--secondary:active {
  background: #f17470;
  color: white;
}

.button--third {
  background: #7d97f4;
  color: white;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.button--third:hover {
  background: #4443e9;
}
.button--third:active {
  background: #2728a9;
}

.button--link {
  padding: 0;
  background: transparent;
}
.button--link .icon {
  width: 16px;
  height: 16px;
}
.button--link .text + .icon {
  margin-left: 4px;
}
.button--link:hover {
  padding: 0;
  color: #7d97f4;
  background: transparent;
}
.button--link:hover {
  padding: 0;
  color: #2728a9;
  background: transparent;
}

.button--big-icon {
  padding: 12px !important;
  border-radius: 24px !important;
  line-height: 0 !important;
  transition: all 250ms ease-out;
}
.button--big-icon .icon {
  width: 24px;
  height: 24px;
}
.button--big-icon:hover {
  box-shadow: 2px 8px 8px rgba(189, 200, 242, 0.8);
  transform: translate(0, -2px);
}
.button--big-icon:active {
  box-shadow: 0px 2px 6px rgba(189, 200, 242, 0.8);
  transform: translate(0, 0px);
}
.button--big-icon:before {
  content: attr(data-label);
  position: absolute;
  background: #ebeffd;
  color: #2728a9;
  font-size: 0.75rem;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 0px;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -14px);
  opacity: 0;
  transition: all 250ms 200ms ease-out;
}
.button--big-icon:hover:before {
  opacity: 1;
  transform: translate(-50%, -24px);
}

.button--outline {
  background: transparent;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  border: 1px solid rgba(115, 123, 154, 0.5);
  padding: 7px 15px;
}
.button--outline:hover {
  background: transparent;
  border: 1px solid rgba(115, 123, 154, 0.2);
  color: #737b9a;
}
.button--outline:active {
  background: #afb5ce;
  border: 1px solid rgba(115, 123, 154, 0.2);
  color: white;
}

.cart__item {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  padding: 16px 0 24px;
  position: relative;
}
@media (max-width: 767.98px) {
  .cart__item {
    padding: 24px 0;
  }
}
.cart__item:before {
  position: absolute;
  width: calc(100% - 27px);
  height: 1px;
  bottom: 0;
  background-color: rgba(89, 96, 126, 0.2);
  right: 0;
  content: "";
}
@media (max-width: 767.98px) {
  .cart__item:before {
    width: 100%;
  }
}
.cart__item:last-child:before {
  display: none;
}
.cart .cart__top {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  align-items: flex-start;
}
.cart .cart__top .selector {
  padding-top: 0px;
}
.cart .cart__top .title {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  flex: 1 1 0;
  padding-right: 16px;
}
.cart .cart__top h4 {
  font-weight: normal;
  font-size: 0.875rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  margin: 0;
  margin-right: 4px;
  line-height: 1.125rem;
  color: #2728a9;
}
@media (max-width: 767.98px) {
  .cart .cart__top h4 {
    margin-bottom: 4px;
  }
}
.cart .cart__top .button {
  width: 22px;
  height: 22px;
  padding: 2px;
  background: transparent;
}
@media (max-width: 575.98px) {
  .cart .cart__top .button {
    align-items: flex-start;
  }
}
.cart .cart__top .button .icon {
  width: 14px;
  height: 14px;
}
.cart .cart__top .button:hover {
  background: #7d97f4;
  color: white;
}
.cart .cart__top .button:hover .icon {
  color: inherit;
  stroke: currentColor;
}
.cart .cart__top .button--icon-danger:hover {
  background: #f26055;
  color: white;
}
.cart .cart__top .button--icon-danger:hover .icon {
  color: inherit;
  stroke: currentColor;
}
.cart .cart__top .button--icon-danger:active {
  background: #e5493d;
  color: white;
}
.cart .cart__top .button--icon-danger:active .icon {
  color: inherit;
  stroke: currentColor;
}
.cart .cart__top .button + .button {
  margin-right: 4px;
}
.cart .label {
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .cart .label .selector {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .cart .label .checkbox {
    margin: 0;
    margin-right: 8px;
  }
}
.cart__content {
  margin-left: 27px;
  padding-top: 8px;
}
.cart__content .button {
  margin-left: 8px;
}
.cart__content .button .icon {
  width: 14px;
  height: 14px;
}
.cart__content .button .text {
  font-size: 0.75rem;
  line-height: 1;
  display: block;
}
.cart__content .description .button {
  font-size: 0.8125rem;
  padding: 4px 8px;
  background: #ebeffd;
  margin: 0;
}
.cart__content .description-inner {
  margin-bottom: 16px;
  overflow: hidden;
  height: 100px;
  transition: height 250ms ease-out;
}
.cart__content .description-inner p {
  margin: 0;
  line-height: 1.125rem;
  font-size: 0.8125rem;
}
.cart__content .description-inner .price {
  font-style: italic;
  color: #e5493d;
  padding-left: 16px;
}
.cart__content .description-inner ul,
.cart__content .description-inner ol {
  margin: 0;
  padding: 0;
  padding-left: 16px;
  font-size: 0.8125rem;
}
.cart__content .description-inner p + p {
  margin-top: 18px;
}
.cart__content .description-inner p + ol,
.cart__content .description-inner p + ul {
  margin-top: 8px;
}
@media (max-width: 767.98px) {
  .cart__content {
    width: 100%;
  }
}
.cart__meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 767.98px) {
  .cart__meta {
    padding: 8px 0;
    width: 100%;
    justify-content: flex-end;
  }
}
.cart__meta .price {
  font-size: 0.875rem;
  color: #59607e;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  line-height: 1.125rem;
}
@media (max-width: 767.98px) {
  .cart__coupon {
    padding: 24px 16px;
    background: #f8f9fd;
    text-align: center;
    border: 1px solid #7d97f4;
    border-radius: 6px;
    margin-bottom: 16px;
  }
  .cart__coupon .form__group {
    margin-bottom: 0;
  }
}
.cart__coupon .form__label {
  width: 100% !important;
}
.cart__coupon .button {
  font-size: 0.75rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  line-height: 18px;
  padding: 10px 24px;
  color: #4443e9;
}
.cart__coupon .button:hover {
  color: white;
}
.cart__total {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .cart__total {
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(175, 181, 206, 0.5);
  }
}
.cart__total .item {
  display: flex;
  flex-flow: row wrap;
}
.cart__total .item--border-top {
  border-top: 3px solid rgba(89, 96, 126, 0.2);
  margin-top: 8px;
}
@media (max-width: 767.98px) {
  .cart__total .item {
    padding: 8px 0;
  }
}
.cart__total .label {
  text-align: right;
}
.cart__total .price,
.cart__total .label {
  width: 180px;
  text-align: right;
  padding: 4px 0;
}
@media (max-width: 767.98px) {
  .cart__total .price,
  .cart__total .label {
    width: 100%;
    text-align: left;
    padding: 0;
  }
}
.cart__total .price {
  color: #59607e;
}
.cart__total .price--total {
  font-size: 0.875rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
.cart + .button-action {
  margin-top: 24px;
}

.button-action {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
}
.button-action .button {
  margin-left: 8px;
  margin-bottom: 8px;
}
.button-action .button .text {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .button-action .button {
    width: 100%;
    margin-left: 0;
  }
}

.terms {
  padding: 16px 0 32px;
}
.terms--right {
  text-align: right;
}
@media (max-width: 767.98px) {
  .terms--right {
    text-align: left;
  }
}
.terms .small {
  font-size: 0.75rem;
  line-height: 1.125rem;
  margin: 0;
}
.terms .small + p {
  margin-top: 18px;
}

.catalogue {
  width: 140px;
  position: relative;
}
.catalogue .button-close {
  display: none;
  background: white;
  padding: 12px;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 991.98px) {
  .catalogue .button-close {
    display: block;
    position: absolute;
    line-height: 0;
    left: -41px;
    width: 42px !important;
    top: 48px;
  }
}
@media (max-width: 767.98px) {
  .catalogue .button-close {
    padding: 16px 8px;
    border-radius: 8px 0 0 8px;
  }
}
.catalogue .button-close .icon {
  width: 20px;
  height: 20px;
  stroke: #afb5ce;
}
@media (max-width: 991.98px) {
  .catalogue {
    position: fixed;
    opacity: 0;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 320px;
    background: white;
    padding: 24px 16px;
    border-radius: 12px 0 0 0;
    box-shadow: 0 6px 16px rgba(148, 165, 220, 0.3);
    transform: translate(20px, 20px);
    transition: opacity 250ms ease-out, transform 250ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
  }
}
@media (max-width: 767.98px) {
  .catalogue {
    bottom: unset;
    top: 0;
    width: 280px;
    height: 100%;
  }
}
.catalogue.active {
  z-index: 101;
}
.catalogue.in {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 250ms ease-out, transform 250ms 100ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
}
.catalogue__list {
  padding: 32px 0;
}
.catalogue__item {
  padding-bottom: 16px;
}
.catalogue__link {
  text-align: center;
  padding: 8px 16px 8px 16px;
  text-decoration: none;
  color: rgba(39, 40, 169, 0.5);
  opacity: 0.5;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: relative;
  transition: opacity 250ms ease-out;
}
.catalogue__link:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0px;
  height: 100%;
  background: #7d97f4;
  opacity: 0;
  transition: width 250ms ease-out, opacity 250ms ease-out;
}
.catalogue__link .icon {
  display: inline-block;
  text-align: center;
  width: 100%;
  width: 20px;
  height: 20px;
  color: inherit;
  stroke: currentColor;
}
.catalogue__link .text {
  margin-top: 8px;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  transition: color 250ms ease-out;
}
.catalogue__link:hover {
  opacity: 1;
  color: #59607e;
}
.catalogue__link:hover:before {
  width: 5px;
  opacity: 1;
}
.catalogue__link.active {
  opacity: 1;
  color: #59607e;
}
.catalogue__link.active .icon {
  stroke: #2728a9;
}
.catalogue__link.active:before {
  width: 5px;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .catalogue__link {
    text-align: left;
    align-items: center;
    justify-content: flex-start;
  }
  .catalogue__link .icon {
    margin-right: 4px;
  }
  .catalogue__link .text {
    display: inline-block;
    width: auto;
    margin: 0;
  }
  .catalogue__link:hover {
    opacity: 1;
    color: #59607e;
  }
  .catalogue__link:hover:before {
    display: none;
  }
  .catalogue__link:hover .icon {
    stroke: #2728a9;
  }
  .catalogue__link.active {
    opacity: 1;
    color: #59607e;
  }
  .catalogue__link.active .icon {
    stroke: #2728a9;
  }
  .catalogue__link.active:before {
    display: none;
  }
}

.summary {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  padding: 48px 0px 24px 24px;
  box-shadow: -2px 3px 20px rgba(189, 200, 242, 0.8);
  border-radius: 16px 0 0 0;
  background: white;
  width: 400px;
  height: calc(100% - 58px);
  transform: translateX(400px);
  transition: transform 200ms ease-out;
}
@media (max-width: 1599.98px) {
  .summary {
    width: 300px;
    transform: translateX(300px);
  }
}
@media (max-width: 991.98px) {
  .summary {
    position: static;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 32px 24px;
    border: 1px solid rgba(115, 123, 154, 0.3);
    height: auto;
    margin-bottom: 48px;
  }
}
.summary.in {
  transform: translateX(0);
}
.summary__wrapper {
  height: 100%;
  overflow: auto;
  padding-right: 24px;
}
@media (max-width: 991.98px) {
  .summary__wrapper {
    padding-right: 0;
  }
}
.summary__head, .summary__body {
  padding-bottom: 16px;
}
.summary__title {
  margin: 0;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
.summary__item {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  padding-bottom: 16px;
}
.summary__item .text {
  flex: 1 1 auto;
  margin-bottom: 8px;
}
.summary__item .label {
  font-size: 0.625rem;
  color: #afb5ce;
}
.summary__item .price {
  flex: 1 1 auto;
  text-align: right;
  color: black;
  margin-bottom: 8px;
}
.summary__item .button {
  flex: 0 0 16px;
  margin-left: 8px;
  margin-bottom: 9px;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
}
.summary__total {
  border-top: 1px solid #59607e;
  padding-top: 16px;
  text-align: center;
}
.summary__total .price span {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: #59607e;
}
.summary__total .info {
  font-size: 0.75rem;
}
.summary__action .button {
  width: 100%;
  margin-bottom: 8px;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.summary .button-toggler {
  transform: rotate(-90deg);
  position: absolute;
  top: 100px;
  left: -94px;
  background: #7d97f4;
  border-radius: 8px 8px 0 0;
  z-index: -1;
  color: white;
}
.summary .button-toggler .text {
  font-size: 0.75rem;
}
.summary .button-toggler:hover {
  background: #4443e9;
}
@media (max-width: 991.98px) {
  .summary .button-toggler {
    display: none;
  }
}

.collapsible__item {
  margin-bottom: 16px;
}
.collapsible__header {
  padding: 8px 16px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.collapsible__header:before {
  content: "";
  width: 0px;
  opacity: 0;
  height: 100%;
  position: absolute;
  background: #f26055;
  top: 0;
  left: 0;
  transition: width 300ms ease-out, opacity 300ms ease-out;
}
.collapsible__header:hover span {
  color: #59607e;
}
.collapsible__header:hover:before {
  width: 5px;
  opacity: 1;
}
.collapsible__header .icon {
  flex: 0 0 auto;
  margin-right: 8px;
  height: 22px;
  width: 16px;
  line-height: 22px;
  transform: rotate(0deg);
  transition: transform 250ms 100ms ease-out;
}
.collapsible__header .span {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #737b9a;
  display: block;
}
.collapsible__content {
  padding: 16px 40px;
  color: #737b9a;
  font-size: 0.8125rem;
  display: none;
}
@media (max-width: 767.98px) {
  .collapsible__content {
    padding: 16px;
  }
}
.collapsible__content p {
  margin: 0;
  margin-bottom: 18px;
  line-height: 1.375rem;
  font-size: 0.8125rem;
}
.collapsible__content p:last-child {
  margin-bottom: 0;
}
.collapsible__content ul,
.collapsible__content ol {
  margin: 0;
  padding: 0;
  padding-left: 18px;
}
.collapsible__content ul + p,
.collapsible__content ol + p {
  margin-top: 16px;
}
.collapsible__content li {
  padding: 4px 0 4px 4px;
}
.collapsible__item.active .collapsible__header .icon {
  transform: rotate(180deg);
}
.collapsible__item.active .collapsible__header span {
  color: #e5493d;
}
.collapsible__item.active .collapsible__header:before {
  width: 5px;
  background: #f26055;
  opacity: 1;
}
.collapsible__item.active .collapsible__content {
  display: block;
  animation: fadeEffect 500ms;
}

.flash {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 201;
  display: none;
}
.flash__content {
  margin: 0 auto;
  margin-top: 20px;
}
.flash__lists {
  display: flex;
  flex-flow: column wrap;
}
.flash__item {
  padding: 8px 16px;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: flex-start;
  background-color: #f8f9fd;
  color: #737b9a;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 300ms ease-out;
}
.flash__item.success {
  background-color: #8ac80c;
  color: white;
}
.flash__item.error {
  background-color: #e5493d;
  color: white;
}
.flash__item .icon {
  stroke: white;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.flash__item span {
  flex: 1 1 0;
  line-height: 20px;
}
.flash__item strong {
  color: white;
}
.flash.active {
  display: block;
}
.flash.active .flash__item {
  opacity: 1;
  transform: translateY(0);
}

.form {
  margin-bottom: 16px;
}
.form--space {
  padding: 24px;
  margin-bottom: 0;
}
.form--search {
  width: 300px;
  margin-bottom: 0px;
}
.form--search .form__group {
  position: relative;
}
.form--search .form__control {
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  padding: 10px 20px 10px 40px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f8f9fd;
  outline: none;
  margin: 0;
  color: #59607e;
  box-shadow: 0px 0px 0px 0px rgba(68, 67, 233, 0.3);
  transition: box-shadow 200ms ease-out;
}
.form--search .form__control:focus {
  box-shadow: 0px 0px 0px 2px rgba(68, 67, 233, 0.3);
  border: 1px solid rgba(39, 40, 169, 0.1);
  background: #ebeffd;
}
.form--search .icon {
  position: absolute;
  height: 19px;
  width: 19px;
  top: 11px;
  left: 11px;
}
.form--horizontal {
  display: flex;
  flex-flow: row wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.form--horizontal .form__group {
  margin: 0 4px;
  min-width: 240px;
}
.form--inline .form__group {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media (max-width: 767.98px) {
  .form--inline .form__group {
    width: 100%;
  }
}
.form--inline .form__control {
  width: auto;
  margin: 0;
}
@media (max-width: 767.98px) {
  .form--inline .form__control {
    width: 100%;
    text-align: center;
  }
}
.form--inline .form__label {
  margin-right: 16px;
  width: auto;
}
@media (max-width: 767.98px) {
  .form--inline .form__label {
    margin: 0;
    margin-bottom: 8px;
  }
}
.form--inline .form__control + .button {
  margin-left: 8px;
  margin-top: 0 !important;
  width: auto;
}
@media (max-width: 767.98px) {
  .form--inline .form__control + .button {
    width: 100%;
    margin: 0;
    margin-top: 16px !important;
  }
}
.form.form--ticket {
  padding: 24px;
  margin-bottom: 0px;
}
@media (max-width: 767.98px) {
  .form.form--ticket {
    padding: 14px 16px;
    width: 100%;
    overflow: hidden;
  }
}
.form__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.form__row p {
  margin-top: 16px;
  margin-bottom: 0;
}
.form__row ul {
  padding: 0;
  margin: 8px 0 16px;
  padding-left: 16px;
}
.form__col {
  flex: 1 1 auto;
  flex-basis: 0;
  padding: 0 8px;
}
@media (max-width: 767.98px) {
  .form__col {
    width: 100%;
    flex-basis: auto;
  }
}
.form__label {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-weight: normal;
}
.form__desc {
  margin: 0;
  margin-bottom: 16px;
}
.form__desc p {
  margin: 0;
  margin-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.form__col--30p, .form__col--70p, .form__col--60p, .form__col--50p, .form__col--40p {
  width: 30%;
  flex: 0 1 auto;
}
@media (max-width: 991.98px) {
  .form__col--30p, .form__col--70p, .form__col--60p, .form__col--50p, .form__col--40p {
    width: 100%;
  }
}
.form__col--40p {
  width: 40%;
}
@media (max-width: 991.98px) {
  .form__col--40p {
    width: 100%;
  }
}
.form__col--50p {
  width: 50%;
}
@media (max-width: 991.98px) {
  .form__col--50p {
    width: 100%;
  }
}
.form__col--60p {
  width: 60%;
}
@media (max-width: 991.98px) {
  .form__col--60p {
    width: 100%;
  }
}
.form__col--70p {
  width: 70%;
}
@media (max-width: 991.98px) {
  .form__col--70p {
    width: 100%;
  }
}
.form__flex-groups {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 16px;
}
.form__flex-groups .form__group {
  width: 30%;
  padding: 0px 4px;
  line-height: 0;
  margin-bottom: 8px;
}
@media (max-width: 1199.98px) {
  .form__flex-groups .form__group {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .form__flex-groups .form__group {
    width: 100%;
  }
}
.form__group {
  margin-bottom: 24px;
}
.form__group--nomargin {
  margin: 0;
}
.form__group--hidden {
  display: none;
}
.form__group--inline {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.form__group--inline.align-center {
  align-items: center;
}
.form__group--inline .form__label {
  width: auto;
  text-align: right;
  margin-right: 8px;
  flex: 0 0 auto;
  line-height: 36px;
}
.form__group--inline .form__label--full {
  width: 100%;
  text-align: left;
  line-height: 1.25rem;
}
.form__group--inline > .form__control {
  width: auto;
  flex: 1 1 auto;
}
@media (max-width: 991.98px) {
  .form__group--inline > .form__control {
    width: 100%;
    flex: 1 0 auto;
  }
}
.form__group--inline > .form__control + .button {
  margin-left: 8px;
}
@media (max-width: 991.98px) {
  .form__group--inline > .form__control + .button {
    margin-top: 8px;
    margin-left: 0;
  }
}
.form__group--inline .form__content {
  flex: 1 1 auto;
}
.form__group--inline span {
  padding-right: 32px;
}
.form__group--inline label {
  margin-right: 16px;
}
@media (max-width: 991.98px) {
  .form__group--inline {
    display: block;
  }
  .form__group--inline.survey-rate {
    display: flex;
  }
  .form__group--inline .form__label {
    line-height: 1.5;
    text-align: left;
    margin-right: 0;
    width: 100%;
  }
  .form__group--inline label {
    margin-right: 0;
  }
}
.form__category {
  padding-top: 16px;
}
.form__category .form__head {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.form__category .title {
  font-size: 0.875rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  position: relative;
}
.form__category .title .icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  cursor: pointer;
}
.form__category .title .icon:hover + .form__block-info {
  opacity: 1;
  transform: translate(-32px, -32px);
  z-index: 10;
}
@media (max-width: 991.98px) {
  .form__category .title .icon:hover + .form__block-info {
    transform: translate(0px, -32px);
  }
}
.form__category .title .form__block-info {
  position: absolute;
  bottom: 0;
  opacity: 0;
  left: 100%;
  transform: translate(-32px, -52px);
  background: #ebeffd;
  color: #737b9a;
  line-height: 1.5;
  font-size: 0.6875rem;
  width: 300px;
  padding: 16px;
  border-radius: 6px;
  z-index: -1;
  transition: all 250ms ease-out;
}
@media (max-width: 991.98px) {
  .form__category .title .form__block-info {
    left: 0;
    width: 200px;
    transform: translate(0px, -52px);
  }
}
.form__category .title .form__block-info:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 8px solid #dfe7fe;
  border-bottom: 8px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 100%;
  left: 20px;
  z-index: 1;
  transform: translateY(-1px);
}
@media (max-width: 767.98px) {
  .form__category .title .form__block-info:before {
    display: none;
  }
}
.form__category .title .form__block-info p {
  margin: 0;
}
.form__category .title .form__block-info p + p {
  margin-top: 18px;
}
.form__label, .form__control {
  width: 100%;
  display: block;
}
.form__message {
  font-size: 0.6875rem;
  line-height: 1.5;
}
.form__label {
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  color: #afb5ce;
  line-height: 1.25rem;
  margin-bottom: 4px;
}
.form__flex {
  display: flex;
  flex-flow: row wrap;
}
.form__flex > label {
  flex: 0 0 auto;
}
.form__flex .form__flex-groups {
  flex: 1 1 0;
}
.form__control {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  padding: 8px;
  border: 1px solid #afb5ce;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  background: white;
  margin-bottom: 4px;
}
.form__control:focus {
  box-shadow: 0px 0px 0px 2px rgba(68, 67, 233, 0.3);
  border: 1px solid rgba(39, 40, 169, 0.1);
  background: #ebeffd;
}
.form__control:disabled {
  background: #f8f9fd;
  border: 1px solid rgba(175, 181, 206, 0.3);
  color: #59607e;
}
.form__unit, .form__affix, .form__suffix {
  position: relative;
}
.form__unit:after, .form__affix:after, .form__suffix:after {
  content: attr(data-unit);
  font-size: 0.8125rem;
  line-height: 1.5rem;
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 16px;
  color: #afb5ce;
}
.form__unit .form__control, .form__affix .form__control, .form__suffix .form__control {
  padding-right: 48px;
}
.form__affix:after {
  right: unset;
  left: 12px;
  top: 6px;
}
.form__affix .form__control {
  padding-left: 40px;
  padding-right: 8px;
}
.form__check {
  cursor: pointer;
}
.form__check input[type=radio],
.form__check input[type=checkbox] {
  display: none;
}
.form__check div {
  line-height: 40px;
  position: relative;
  min-height: 40px;
  padding-left: 24px;
  padding-right: 16px;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #afb5ce;
}
.form__check div:before, .form__check div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.form__check div:before {
  width: 18px;
  height: 18px;
  background: #ebeffd;
  border-radius: 50%;
  border: 2px solid #7d97f4;
  box-sizing: border-box;
  z-index: 1;
  top: 10px;
  transition: background-color 350ms ease-out;
}
.form__check div:after {
  width: 8px;
  height: 8px;
  background: #ebeffd;
  border-radius: 50%;
  z-index: 1;
  top: 15px;
  left: 5px;
  transition: transform 350ms ease-out;
  transform: scale(0);
}
.form__check input:checked + div {
  color: #59607e;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.form__check input:checked + div:before {
  background-color: #2728a9;
  border-color: #2728a9;
}
.form__check input:checked + div:after {
  transform: scale(1);
}
.form__checkbox input[type=checkbox] {
  display: none;
}
.form__checkbox .selector {
  display: flex;
  flex-flow: row wrap;
  padding: 0 0 10px 0;
  cursor: pointer;
}
.form__checkbox .checkbox {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #ebeffd;
  margin-right: 8px;
  border: 2px solid #7d97f4;
  display: block;
  cursor: pointer;
  padding: 0px;
  transition: background-color 250ms ease-out;
}
@media (max-width: 767.98px) {
  .form__checkbox .checkbox {
    margin-bottom: 8px;
  }
}
.form__checkbox .content {
  flex: 1 1 0;
}
.form__checkbox .icon {
  width: 14px;
  height: 14px;
  transform-origin: center center;
  transform: rotate(-60deg);
  transition: all 250ms ease-out;
  opacity: 0;
}
.form__checkbox .text {
  line-height: 20px;
  font-size: 0.8125rem;
  margin-right: 4px;
}
.form__checkbox .button {
  padding: 0;
  background: transparent;
  color: #ff908c;
  font-size: 0.8125rem;
  line-height: 20px;
}
@media (max-width: 767.98px) {
  .form__checkbox .button {
    padding: 0;
  }
}
.form__checkbox .button:hover {
  text-decoration: underline;
}
.form__checkbox input:checked + .selector .checkbox {
  background: #2728a9;
  border: 2px solid #2728a9;
}
.form__checkbox input:checked + .selector .text {
  color: #59607e;
}
.form__checkbox input:checked + .selector .icon {
  transform: rotate(0);
  stroke: white;
  opacity: 1;
}
.form__check-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: height 250ms ease-out;
  padding: 0 24px;
}
@media (max-width: 767.98px) {
  .form__check-content {
    padding: 0;
  }
}
.form__check-content ul {
  margin: 0px 0 18px;
  padding: 0;
  padding-left: 16px;
}
.form__check-content li {
  padding: 4px 0;
}
.form__info {
  margin-top: 6px;
  font-size: 0.6875rem;
  color: #afb5ce;
  line-height: 1;
}
.form .error-validate .form__control,
.form .error-validate .select2-container--default .select2-selection--single,
.form .error-validate .attachment__control {
  border: 1px solid #f26055;
  background: rgba(242, 96, 85, 0.1);
  color: #e5493d;
}
.form .error-validate .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
}
.form .error-validate .form__message {
  color: #e5493d;
  margin-top: 6px;
  line-height: 1.5;
}

.select {
  position: relative;
}
.select__target {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 250ms ease-out;
}
.select__target .icon {
  width: 16px;
  line-height: 16px;
  height: 16px;
  stroke: currentColor;
  color: inherit;
}
.select__target .text {
  font-size: 0.75rem;
  margin-right: 2px;
  line-height: 1.125rem;
}
.select__target:hover {
  background: #7d97f4;
  color: white;
}
.select__options {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
  background: white;
  border: 1px solid #ebeffd;
  z-index: -1;
  opacity: 0;
  transform: translateY(10px);
  transition: all 250ms ease-out;
}
.select__option {
  padding: 8px 16px;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.select__option:hover {
  cursor: pointer;
  background: #ebeffd;
}
.select.active .select__target {
  color: white;
  background: #7d97f4;
}
.select.active .select__options {
  opacity: 10;
  transform: translate(0);
  z-index: 10;
}

.attachment {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.attachment__item {
  display: none;
}
.attachment__item.in {
  display: block;
}
.attachment__item + .attachment__item {
  margin-top: 8px;
}
.attachment__list {
  padding-right: 4px;
  flex: 1 1 auto;
}
.attachment__button {
  flex: 0 0 auto;
  padding: 10px 16px;
}
.attachment__button .icon {
  height: 18px;
}
.attachment__control {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 8px;
  border: 1px solid #afb5ce;
  border-radius: 4px;
  line-height: 1.25rem;
  cursor: pointer;
}
.attachment__control .icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.attachment__control .text {
  line-height: 1.25rem;
  font-size: 0.8125rem;
}
.attachment input[type=file] {
  display: none;
}

.select2-container {
  width: 100% !important;
  display: block;
}

.select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid #afb5ce;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  outline: none;
  padding-right: 32px;
}

.select2-container--default .select2-selection--single:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px rgba(68, 67, 233, 0.3);
  border: 1px solid rgba(39, 40, 169, 0.1);
  background: #ebeffd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  width: 32px;
}

.ck-editor__editable {
  min-height: 160px;
}

.fixed-content {
  display: none;
}
@media (max-width: 991.98px) {
  .fixed-content {
    display: block;
    position: fixed;
    bottom: 8px;
    left: 214px;
    z-index: 100;
  }
}
@media (max-width: 767.98px) {
  .fixed-content {
    left: 42px;
  }
}
.fixed-content .button {
  margin: 0 8px 8px 0;
  border-radius: 18px;
  padding: 8px 8px 8px 16px;
}

.adm-wrapper {
  height: calc(100% - 60px);
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 767.98px) {
  .adm-wrapper {
    height: calc(100% - 72px);
  }
}

.adm-aside {
  padding-top: 80px;
  flex: 0 1 230px;
}
@media (max-width: 767.98px) {
  .adm-aside {
    flex: 0 0 60px;
  }
}
.adm-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.adm-aside__item {
  padding: 8px 0;
}
.adm-aside__link {
  display: flex;
  padding: 8px 24px;
  align-items: center;
  text-decoration: none;
  color: #737b9a;
  font-size: 0.875rem;
  position: relative;
  transition: padding-left 200ms 180ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
}
@media (max-width: 767.98px) {
  .adm-aside__link {
    padding: 8px;
  }
}
.adm-aside__link:before {
  position: absolute;
  width: 0px;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  transition: width 200ms ease-in;
  background: #2728a9;
}
.adm-aside__link:hover, .adm-aside__link.active {
  padding-left: 34px;
}
@media (max-width: 767.98px) {
  .adm-aside__link:hover, .adm-aside__link.active {
    padding-left: 12px;
  }
}
.adm-aside__link:hover:before, .adm-aside__link.active:before {
  width: 5px;
}
@media (max-width: 767.98px) {
  .adm-aside__link:hover:before, .adm-aside__link.active:before {
    width: 4px;
  }
}
.adm-aside__link:hover .icon, .adm-aside__link.active .icon {
  stroke: #2728a9;
}
.adm-aside__link:hover .text, .adm-aside__link.active .text {
  color: #59607e;
}
.adm-aside__link:hover:before {
  background: #7d97f4;
}
.adm-aside__link .icon {
  height: 16px;
}
.adm-aside__link .text {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .adm-aside__link .text {
    display: none;
  }
}
.adm-aside__link .icon + .text {
  margin-left: 0px;
}

.adm-main {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row wrap;
}
.adm-main__metacontent {
  padding: 16px 32px 16px 0;
  background: rgba(235, 239, 253, 0.5);
  height: 100%;
  flex: 0 0 auto;
  border-radius: 16px 0 0 0;
  box-shadow: -2px 3px 20px rgba(189, 200, 242, 0.8);
}
@media (max-width: 1199.98px) {
  .adm-main__metacontent {
    padding: 16px 16px 16px 0;
  }
}
.adm-main__action {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .adm-main__action {
    margin-bottom: 60px;
  }
}
.adm-main__action .button--big {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px;
  line-height: 24px;
  background: #e5493d;
  border-radius: 24px;
  box-shadow: 0px 2px 6px #bdc8f2;
  transition: all 200ms ease-out;
  transform: translate(0, 0);
  z-index: 1;
}
.adm-main__action .button--big:hover {
  background: #f26055;
  box-shadow: 2px 8px 8px rgba(189, 200, 242, 0.8);
  transform: translate(0, -2px);
}
.adm-main__action .button--big:active {
  background: #b81307;
  box-shadow: 0px 2px 6px rgba(189, 200, 242, 0.8);
  transform: translate(0, 0px);
}
.adm-main__action .button--big:before {
  content: attr(data-label);
  position: absolute;
  background: #ebeffd;
  color: #2728a9;
  font-size: 0.75rem;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 0px;
  z-index: -1;
  top: 0;
  left: -50%;
  transform: translateY(-14px);
  opacity: 0;
  transition: all 250ms 200ms ease-out;
}
.adm-main__action .button--big:hover:before {
  opacity: 1;
  transform: translateY(-24px);
}
.adm-main__action .icon {
  width: 24px;
  height: 24px;
  stroke: white;
}
.adm-main__balance {
  padding: 32px 16px 16px 24px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .adm-main__balance {
    z-index: -1;
    opacity: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    background: white;
    padding: 32px 48px;
    border-radius: 12px 0 0 0;
    box-shadow: 0 6px 16px rgba(148, 165, 220, 0.3);
    transform: translate(20px, 20px);
    transition: opacity 250ms ease-out, transform 250ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
  }
}
.adm-main__balance.active {
  z-index: 101;
}
.adm-main__balance.in {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 250ms ease-out, transform 250ms 100ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
}
.adm-main__balance .image {
  display: inline-block;
  margin-bottom: 16px;
}
.adm-main__balance .label {
  margin: 0;
  margin-bottom: 4px;
  font-size: 0.625rem;
  color: #737b9a;
  line-height: 1;
}
.adm-main__balance .balance {
  margin: 0;
  margin-bottom: 16px;
  color: #59607e;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}
.adm-main__balance .button {
  background: #e5493d;
  font-size: 0.875rem;
  color: white;
  border: 0;
  line-height: 1.3125rem;
  padding: 7px 16px;
  border-radius: 4px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  justify-content: center;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 250ms ease-out;
}
.adm-main__balance .button:hover {
  background: #f26055;
}
.adm-main__balance .button:active {
  background: #b81307;
}
.adm-main__balance .icon {
  height: 16px;
}
.adm-main__balance .icon + .text {
  padding-left: 0px;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.adm-main__balance .close-button {
  display: none;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
}
.adm-main__balance .close-button .icon {
  height: 18px;
}
@media (max-width: 1199.98px) {
  .adm-main__balance .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.adm-main__content {
  border-radius: 16px 0 0 0;
  padding: 32px 400px 0 48px;
  flex: 1 1 auto;
  width: 100px;
  background: #fcfcfc;
  height: 100%;
  box-shadow: -2px 3px 20px rgba(189, 200, 242, 0.8);
  margin-left: -16px;
  position: relative;
}
.adm-main__content:before {
  width: 400px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: #ebeffd;
}
@media (max-width: 1599.98px) {
  .adm-main__content:before {
    display: none;
  }
}
@media (max-width: 1599.98px) {
  .adm-main__content {
    padding: 32px 0 0 48px;
  }
}
@media (max-width: 1199.98px) {
  .adm-main__content {
    margin-left: -8px;
    padding: 24px 0 0 24px;
  }
}
.adm-main__wrapper {
  padding: 0px 48px 0 0;
  height: calc(100vh - 90px);
  overflow: auto;
}
@media (max-width: 767.98px) {
  .adm-main__wrapper {
    padding: 0px 24px 0 0;
    height: 100%;
  }
}
.adm-main__wrapper .footer__wrapper {
  background: transparent;
}
.adm-main .row {
  margin-left: -4px;
  margin-right: -4px;
}
.adm-main .row + .row {
  margin-top: 16px;
}
@media (max-width: 991.98px) {
  .adm-main .row + .row {
    margin-top: 0px;
  }
}
.adm-main .col,
.adm-main .col.col-2of3,
.adm-main .col.col-3of3,
.adm-main .col.col-1of4,
.adm-main .col.col-2of4,
.adm-main .col.col-3of4,
.adm-main .col.col-4of4 {
  padding: 0 8px;
}
@media (max-width: 991.98px) {
  .adm-main .col,
  .adm-main .col.col-2of3,
  .adm-main .col.col-3of3,
  .adm-main .col.col-1of4,
  .adm-main .col.col-2of4,
  .adm-main .col.col-3of4,
  .adm-main .col.col-4of4 {
    padding-bottom: 16px;
  }
}
@media (max-width: 767.98px) {
  .adm-main .col,
  .adm-main .col.col-2of3,
  .adm-main .col.col-3of3,
  .adm-main .col.col-1of4,
  .adm-main .col.col-2of4,
  .adm-main .col.col-3of4,
  .adm-main .col.col-4of4 {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .adm-main .col-1of3, .adm-main .col-2of3, .adm-main .col-3of3, .adm-main .col-1of4, .adm-main .col-2of4, .adm-main .col-3of4, .adm-main .col-4of4 {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .adm-main .col-2of3 {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .adm-main .box--background {
    width: 100%;
    height: auto;
  }
}

.footer__wrapper {
  padding-top: 16px;
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .footer__wrapper {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .footer__copy {
    margin-bottom: 12px;
  }
}
.footer__llogin {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .footer__llogin {
    margin-bottom: 8px;
  }
}
.footer__llogin span {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}

.ind-content {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding-bottom: 32px;
}
.ind-content .image {
  max-width: 100%;
  display: inline-block;
  margin-bottom: 8px;
}
.ind-content .title {
  font-family: dosis-bold, "Segoe UI", Arial, sans-serif;
  color: #59607e;
  font-size: 1.875rem;
  line-height: 1;
  margin: 0;
  margin-bottom: 8px;
}
.ind-content .desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}
.ind-content .desc + .button {
  margin-top: 16px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 16px;
}
.list li {
  padding: 16px 0;
}
.list--striped li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0;
}
.list--striped li .cat {
  color: #7d97f4;
  font-size: 0.625rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.list--striped li .date {
  margin-left: auto;
  color: #afb5ce;
  font-size: 0.625rem;
  margin-bottom: 4px;
}
.list--striped li .text {
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list--striped li .text .debit {
  color: #e5493d;
}
.list--striped li .text .credit {
  color: #4aad56;
}
.list--striped li .text a {
  text-decoration: none;
  color: #e5493d;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.list--striped li .text a:hover {
  color: #f26055;
  text-decoration: underline;
}
.list--striped li:last-child .text {
  border-bottom: 0;
}
.list--space li {
  padding: 0px 24px;
}
.list--payment {
  padding: 24px 0;
}
.list__item {
  position: relative;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 0px;
}
.list__item:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #afb5ce;
  position: absolute;
  top: 4px;
  left: 0;
}
.list__item:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #afb5ce;
  position: absolute;
  top: 6px;
  left: 6px;
}
.list__item:last-child:after {
  display: none;
}
.list__item:last-child .list__wrap {
  border-bottom: 0;
  padding-bottom: 0;
}
.list__wrap {
  display: flex;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list__left {
  flex: 1;
}
.list__title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
}
.list__title .text {
  font-size: 0.875rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
.list__title .label {
  font-size: 0.6875rem;
  line-height: 1;
  background-color: #737b9a;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
}
.list__title .label.label--success {
  background: #8ac80c;
}
.list__title .label.label--warning {
  background: #e47c0c;
}
.list__title .label.label--info {
  background: #119cad;
}
.list__title .label.label--danger {
  background: #e5493d;
}
.list__title .text + .label {
  margin-left: 8px;
}
.list__date {
  margin-top: 24px;
  font-size: 0.75rem;
}
.list__amount {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: black;
}

.clist--striped .clist__item {
  border-bottom: 1px solid #e1e1e1;
}
.clist__item {
  margin-bottom: 16px;
  padding: 16px 0;
}
.clist__item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.clist__title {
  margin: 0;
  margin-bottom: 8px;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: black;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0 16px;
}
.clist__button {
  display: flex;
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  flex-flow: row wrap;
  align-items: center;
  padding: 16px 16px;
  text-decoration: none;
  color: #737b9a;
  font-size: 0.8125rem;
  transition: background-color 350ms ease-out;
}
.clist__button:hover {
  background: #f2f2f2;
}
.clist__button span {
  display: block;
  font-size: 0.6875rem;
  color: #aaa;
}
.clist__button img {
  margin-right: 8px;
}
.clist__button .icon {
  margin-left: auto;
  width: 18px;
  height: 18px;
}
.clist ol {
  list-style: decimal;
}
.clist ul {
  list-style: circle;
}
.clist li {
  display: list-item;
  padding: 4px;
}

.modal {
  position: fixed;
  display: none;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  transform: translate(0, 20px);
  transition: transform 250ms 200ms ease-out, opacity 250ms 200ms ease-out;
}
.modal.in {
  z-index: 200;
  display: block;
  transform: translate(0, 0);
  opacity: 1;
}
.modal__dialog {
  background: white;
  position: relative;
  width: 600px;
  border-radius: 6px;
  box-shadow: 0px 3px 20px rgba(189, 200, 242, 0.8);
  margin: 32px auto;
}
@media (max-width: 767.98px) {
  .modal__dialog {
    width: calc(100% - 32px);
    margin: 32px auto;
  }
}
.modal__header {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.modal__header .title {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-weight: normal;
}
.modal__header .button-close {
  padding: 0px;
  background: transparent;
  margin-left: auto;
}
.modal__header .button-close:hover .icon {
  stroke: #afb5ce;
}
.modal__header .button-close:active .icon {
  stroke: #59607e;
}
.modal__header .icon {
  height: 18px;
  stroke: #737b9a;
}
.modal__body--space {
  padding: 32px 16px;
}
.modal__body--yspace {
  padding: 24px 0px;
}
.modal__icon {
  margin-bottom: 4px;
}
.modal__text {
  margin-bottom: 32px;
}
.modal__text .title {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  margin-bottom: 4px;
  color: #59607e;
  font-size: 1rem;
  line-height: 1.5;
}
.modal__text .desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}
.modal__action .button {
  margin: 0 4px;
}
@media (max-width: 575.98px) {
  .modal__action .button {
    width: 100%;
    margin: 0;
    margin-bottom: 8px;
  }
}
.modal__content {
  overflow: auto;
  max-height: calc(100vh - 138px);
  width: 100%;
}
@media (max-width: 767.98px) {
  .modal__content {
    height: calc(100vh - 100px);
    height: auto;
  }
}
.modal__content .list {
  padding: 0;
  padding-top: 16px;
}
.modal__content .action {
  text-align: center;
  padding-bottom: 16px;
}
.modal__content--space {
  padding: 24px;
}
.modal__content .hgroup {
  margin-bottom: 32px;
}
.modal__content .hgroup .headline {
  margin: 0;
  margin-bottom: 4px;
  font-weight: normal;
  font-size: 1.125rem;
  color: black;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
}
.modal__content .hgroup .subheadline {
  margin: 0;
  line-height: 1.5;
}
.modal--from-left {
  top: unset;
  left: unset;
  bottom: 0;
  right: 0;
  width: auto;
  margin: 0;
  height: calc(100% - 60px);
  transform: translate(20px, 0);
  overflow: visible;
}
@media (max-width: 767.98px) {
  .modal--from-left {
    height: 100%;
    bottom: unset;
    right: unset;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(0, 20px);
    overflow: auto;
  }
}
.modal--from-left .modal__content {
  max-height: none;
  height: calc(100vh - 121px);
}
@media (max-width: 767.98px) {
  .modal--from-left .modal__content {
    max-height: none;
  }
}
.modal--from-left .modal__dialog {
  border-radius: 12px 0 0 0;
  box-shadow: -2px 3px 20px rgba(189, 200, 242, 0.8);
  margin: 0;
}
@media (max-width: 767.98px) {
  .modal--from-left .modal__dialog {
    width: 600px;
    height: auto;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0px 3px 20px rgba(189, 200, 242, 0.8);
  }
}
@media (max-width: 575.98px) {
  .modal--from-left .modal__dialog {
    width: calc(100% - 32px);
    margin: 32px auto;
  }
}
.modal--from-left .modal__header {
  padding: 24px 16px 16px 24px;
}

.submodal {
  display: none;
  opacity: 0;
  position: absolute;
  background: white;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
  margin-top: 52px;
  margin-bottom: 52px;
  top: 0;
  left: 0;
  transform: translate(0, 20px);
  transition: transform 250ms 200ms ease-out, opacity 250ms 200ms ease-out;
}
.submodal.in {
  opacity: 1;
  display: block;
  z-index: 201;
  transform: translate(0, 0);
}
.submodal h4.title {
  color: #737b9a;
}
.submodal h4 {
  font-weight: normal;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.875rem;
  margin: 0;
  margin-top: 16px;
  margin-bottom: 8px;
  color: black;
}
.submodal img {
  display: inline-block;
  margin-bottom: 16px;
}
.submodal ul,
.submodal ol {
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
  padding-left: 20px;
}
.submodal__header {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.submodal__header .title {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-weight: normal;
}
.submodal__header .button-close {
  padding: 0px;
  background: transparent;
  margin-left: auto;
}
.submodal__header .button-close:hover .icon {
  stroke: #afb5ce;
}
.submodal__header .button-close:active .icon {
  stroke: #59607e;
}
.submodal__header .icon {
  height: 18px;
  stroke: #737b9a;
}
.submodal__content {
  width: 100%;
}
.submodal .table {
  margin: 16px 0;
}
.submodal__rowdetail {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  margin-bottom: 4px;
  padding-top: 8px;
}
.submodal__rowdetail .submodal__label,
.submodal__rowdetail .submodal__price {
  width: 50%;
}
@media (max-width: 575.98px) {
  .submodal__rowdetail .submodal__label,
  .submodal__rowdetail .submodal__price {
    width: 100%;
  }
}
.submodal__rowdetail .submodal__price {
  text-align: right;
}
.submodal__rowdetail--total {
  border-top: 1px solid #737b9a;
  margin-top: 16px;
}
.submodal__rowdetail--total .submodal__price {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: #2728a9;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: rgba(235, 239, 253, 0.8);
  transition: opacity 250ms ease-out;
}
.overlay.show {
  z-index: 199;
  opacity: 1;
}

.modal--lg .modal__dialog {
  width: 1200px;
}
@media (max-width: 1199.98px) {
  .modal--lg .modal__dialog {
    width: 900px;
  }
}
@media (max-width: 991.98px) {
  .modal--lg .modal__dialog {
    width: 600px;
  }
}
@media (max-width: 767.98px) {
  .modal--lg .modal__dialog {
    width: 600px;
    height: auto;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0px 3px 20px rgba(189, 200, 242, 0.8);
  }
}
@media (max-width: 575.98px) {
  .modal--lg .modal__dialog {
    width: calc(100% - 32px);
    margin: 32px auto;
  }
}

.adm-navbar {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .adm-navbar {
    padding: 16px;
  }
}
.adm-navbar__brand img {
  display: block;
}
.adm-navbar__nav {
  margin-left: auto;
}

.adm-nav__lists {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.adm-nav__item {
  position: relative;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.adm-nav__item:last-child {
  margin-left: 16px;
}
@media (max-width: 767.98px) {
  .adm-nav__item:last-child {
    margin-left: 0;
  }
}
.adm-nav__item .label {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #afb5ce;
  line-height: 1;
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .adm-nav__item .label {
    display: none;
  }
}
.adm-nav__item .label + .adm-nav__button, .adm-nav__item .label + .adm-nav__login-button {
  margin-left: 8px;
}
.adm-nav__link {
  text-decoration: none;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  height: 24px;
  color: #737b9a;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 16px;
  position: relative;
  transition: color 250ms ease-out;
  background: transparent;
  padding: 0;
}
@media (max-width: 767.98px) {
  .adm-nav__link {
    margin: 0 4px;
    padding: 7px 8px;
    height: auto;
  }
}
.adm-nav__link .icon {
  height: 16px;
  width: 16px;
  stroke: currentColor;
  transition: stroke 250ms ease-out;
}
@media (max-width: 767.98px) {
  .adm-nav__link .icon {
    height: 18px;
    width: 18px;
  }
}
.adm-nav__link .icon + .text {
  padding-left: 8px;
  margin-left: 0;
}
.adm-nav__link .text {
  transition: color 250ms ease-out;
}
@media (max-width: 767.98px) {
  .adm-nav__link .text {
    display: none;
  }
}
.adm-nav__link:hover {
  background: transparent;
}
.adm-nav__link:hover .icon {
  stroke: #2728a9;
}
.adm-nav__link:hover .text {
  color: #59607e;
}
.adm-nav__button, .adm-nav__login-button {
  background: #dfe7fe;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  line-height: 1;
  font-size: 0.875rem;
  padding: 6px 8px 6px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #2728a9;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .adm-nav__button, .adm-nav__login-button {
    padding: 7px 8px;
    border-radius: 17px;
  }
}
.adm-nav__button .icon, .adm-nav__login-button .icon {
  height: 16px;
}
@media (max-width: 767.98px) {
  .adm-nav__button .icon, .adm-nav__login-button .icon {
    height: 18px;
  }
}
.adm-nav__button .icon-user, .adm-nav__login-button .icon-user {
  display: none;
}
@media (max-width: 767.98px) {
  .adm-nav__button .icon-user, .adm-nav__login-button .icon-user {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .adm-nav__button .icon-arrow, .adm-nav__login-button .icon-arrow {
    display: none;
  }
}
.adm-nav__button .text, .adm-nav__login-button .text {
  font-size: 0.875rem;
  line-height: 1rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .adm-nav__button .text, .adm-nav__login-button .text {
    display: none;
  }
}
.adm-nav__login-button {
  padding: 6px 16px 6px 12px;
}
@media (max-width: 767.98px) {
  .adm-nav__login-button {
    padding: 7px 8px;
    border-radius: 17px;
  }
}
.adm-nav__item--had-item .adm-nav__link:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 13px;
  width: 6px;
  height: 6px;
  border: 2px solid white;
  border-radius: 50%;
  background: #b81307;
}
@media (max-width: 767.98px) {
  .adm-nav__item--had-item .adm-nav__link:before {
    top: 3px;
    left: 20px;
    width: 8px;
    height: 8px;
  }
}

.submenu {
  position: absolute;
  right: 0px;
  top: 0px;
  background: #4443e9;
  color: white;
  min-width: 240px;
  border-radius: 6px;
  padding-bottom: 16px;
  box-shadow: 0px 8px 16px rgba(39, 40, 169, 0.4);
  z-index: -1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 250ms ease-out, transform 250ms 50ms ease-out;
  display: block;
}
.submenu.in {
  transform: translateY(0px);
  display: block;
  opacity: 1;
  z-index: 51;
}
.submenu__header {
  padding: 16px;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.submenu__header .label {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-size: 0.625rem;
  line-height: 1;
}
.submenu__header .icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #7d97f4;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.submenu__header .icon {
  height: 16px;
  color: inherit;
  stroke: white;
}
.submenu__header .text {
  color: #59607e;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: inherit;
}
.submenu__header .icon-wrapper + .text {
  padding-left: 8px;
}
.submenu__flex {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.submenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.submenu__link {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: white;
  transition: background-color 250ms ease-out;
}
.submenu__link .icon {
  height: 16px;
}
.submenu__link .icon + .text {
  padding-left: 4px;
}
.submenu__link:hover {
  background: #2728a9;
}

.navbar--admin .navbar__brand {
  width: auto;
}
.navbar--admin .navbar__brand span {
  text-decoration: none;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #737b9a;
  margin-left: 8px;
}
.navbar--admin .navbar__link {
  text-decoration: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.navbar--admin .navbar__nav {
  width: auto;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .navbar--admin .navbar__nav {
    display: flex;
    opacity: 1;
    position: static;
    visibility: visible;
    background: transparent;
    transform: translateX(0px);
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .nav--admin {
    height: auto;
    overflow: unset;
    overflow: initial;
  }
}
@media (max-width: 767.98px) {
  .nav--admin .nav__lists {
    display: flex;
  }
}
.nav--admin li {
  margin-left: 48px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .nav--admin li {
    margin-left: 16px;
    height: 20px;
  }
}
.nav--admin .nav__item {
  position: relative;
}
.nav--admin .nav__link {
  color: #737b9a;
  opacity: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5rem;
  position: relative;
  padding: 0;
}
@media (max-width: 767.98px) {
  .nav--admin .nav__link {
    padding: 0;
  }
}
.nav--admin .nav__link span {
  transition: color 250ms ease-out;
}
@media (max-width: 767.98px) {
  .nav--admin .nav__link span {
    display: none;
  }
}
.nav--admin .nav__link:hover span {
  color: #2728a9;
}
.nav--admin .nav__link:hover .icon {
  stroke: #737b9a;
}
.nav--admin .nav__link--had-item:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 13px;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 12px;
  background: #b81307;
}
@media (max-width: 767.98px) {
  .nav--admin .nav__link--had-item:before {
    top: -3px;
  }
}
.nav--admin .icon {
  height: 18px;
}
.nav--admin .text {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.875rem;
  color: #afb5ce;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .nav--admin .text {
    display: none;
  }
}
.nav--admin .button--light {
  border: 0;
  padding: 4px 8px 4px 16px;
  line-height: 16px;
  border-radius: 12px;
  color: #59607e;
  background: #dfe7fe;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .nav--admin .button--light {
    padding: 0;
    background: transparent;
  }
}
@media (max-width: 767.98px) {
  .nav--admin .button--light .button__label {
    display: none;
  }
}
.nav--admin .button--light:hover {
  color: white;
  background-color: #7d97f4;
}
.nav--admin .button--light:hover span {
  color: white;
}
.nav--admin .button--light:hover .icon {
  stroke: white;
}
.nav--admin .user-icon {
  display: none;
}
@media (max-width: 767.98px) {
  .nav--admin .user-icon {
    display: inline-block;
  }
}
.nav--admin .submenu {
  display: block;
  opacity: 1;
  left: unset;
  right: 0;
}
@media (max-width: 767.98px) {
  .nav--admin .submenu {
    position: absolute;
    height: auto;
    width: auto;
  }
}
.nav--admin .submenu ul {
  background: none;
  border-radius: 4px;
  box-shadow: 0px 4px 16px rgba(68, 67, 233, 0.3);
}
.nav--admin .submenu li {
  margin-left: 0px;
  height: auto;
}
.nav--admin .submenu li:first-child a {
  border-radius: 4px 4px 0 0;
}
.nav--admin .submenu li:last-child a {
  border-radius: 0 0 4px 4px;
}
.nav--admin .submenu a {
  background: #7d97f4;
  color: white;
  padding: 8px 16px;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  font-size: 0.8125rem;
}
.nav--admin .submenu a:hover {
  background: #4443e9;
  color: white;
}

.panel {
  margin-bottom: 16px;
  padding: 0 4px;
}
.panel--space {
  padding: 32px 16px;
}
.panel--center {
  text-align: center;
}
.panel__header {
  padding-bottom: 16px;
  display: flex;
  flex-flow: row wrap;
}
.panel__header .datepicker {
  margin-left: auto;
}
.panel__icon {
  flex: 0 0 auto;
  padding-right: 8px;
  line-height: 0;
  font-size: 0;
}
.panel__icon .icon {
  width: 20px;
  height: 20px;
}
.panel__content {
  flex: 1 1 0;
}
.panel__footer .info {
  font-size: 0.75rem;
}

.panel--info, .panel--warning, .panel--blockquote {
  background: #ebeffd;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #7d97f4;
  display: flex;
  margin-bottom: 16px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .panel--info, .panel--warning, .panel--blockquote {
    padding: 16px 16px 24px;
  }
}
.panel--info .icon, .panel--warning .icon, .panel--blockquote .icon {
  stroke: #2728a9;
}
.panel--info .title, .panel--warning .title, .panel--blockquote .title {
  font-weight: normal;
  margin: 0;
  margin-bottom: 4px;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #2728a9;
}
.panel--info ul, .panel--warning ul, .panel--blockquote ul,
.panel--info ol,
.panel--warning ol,
.panel--blockquote ol {
  margin: 0;
  padding: 0;
  padding-left: 24px;
  margin: 8px 0 8px;
  color: #737b9a;
  line-height: 1.5;
  font-size: 0.8125rem;
}
.panel--info p, .panel--warning p, .panel--blockquote p {
  margin: 0;
  color: #737b9a;
  line-height: 1.5;
  font-size: 0.8125rem;
}
.panel--info a, .panel--warning a, .panel--blockquote a {
  color: #f26055;
  text-decoration: none;
}
.panel--info a:hover, .panel--warning a:hover, .panel--blockquote a:hover {
  text-decoration: underline;
}
.panel--info p + p, .panel--warning p + p, .panel--blockquote p + p {
  margin-top: 18px;
}

.panel--blockquote {
  padding: 16px;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-left: 3px solid rgba(115, 123, 154, 0.2);
}
@media (max-width: 767.98px) {
  .panel--blockquote {
    padding: 16px;
  }
}

.panel--warning {
  background: #fff7cf;
  padding: 16px 24px;
  border: 1px solid #e47c0c;
}
.panel--warning .icon {
  stroke: #e47c0c;
}
.panel--warning p {
  margin-bottom: 0;
  color: #59607e;
}
.panel--warning p + p {
  margin-top: 18px;
}

.panel--ticket .panel__header {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.panel--ticket .panel__header .title {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #59607e;
  margin: 0;
}
.panel--ticket .panel__header .select {
  margin-left: auto;
}

.panel--cart .panel__header {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  position: relative;
  padding: 0;
}
.panel--cart .panel__header:before {
  position: absolute;
  width: calc(100% - 27px);
  height: 3px;
  bottom: 0;
  background-color: rgba(89, 96, 126, 0.2);
  right: 0;
  content: "";
}
@media (max-width: 767.98px) {
  .panel--cart .panel__header:before {
    width: 100%;
  }
}
.panel--cart .panel__header .button {
  font-size: 0.8125rem;
  flex: 0 0 auto;
  padding-top: 10px;
  margin-left: auto;
}
.panel--cart .panel__footer {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  position: relative;
  padding: 16px 0px 16px 27px;
}
@media (max-width: 767.98px) {
  .panel--cart .panel__footer {
    padding: 16px 0;
  }
}
.panel--cart .panel__footer:before {
  position: absolute;
  width: calc(100% - 27px);
  height: 3px;
  top: 0;
  background-color: rgba(89, 96, 126, 0.2);
  right: 0;
  content: "";
}
@media (max-width: 767.98px) {
  .panel--cart .panel__footer:before {
    width: 100%;
  }
}

.table__responsive {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0px;
}
.table .debit {
  color: #e5493d;
}
.table .credit {
  color: #4aad56;
}
.table.table--no-bordered td {
  border-bottom: 0;
}
.table.table--no-bordered td:last-child,
.table.table--no-bordered th:last-child {
  text-align: left;
}
.table th {
  text-align: left;
  padding: 8px 16px 8px 8px;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.table td {
  padding: 8px 16px 8px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table td:last-child,
.table th:last-child {
  text-align: right;
  padding: 8px;
}
.table .status {
  position: relative;
  padding-left: 16px;
}
.table .status:before {
  width: 8px;
  height: 8px;
  line-height: 0;
  border-radius: 4px;
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
}
.table .status--active:before {
  background: #4aad56;
}
.table .status--suspended:before {
  background: #e5493d;
}
.table .action {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
}
.table .action .button {
  display: block;
  position: relative;
  margin-left: 4px;
}
.table .action .button .icon {
  height: 19px;
}
.table .action .button:before {
  content: attr(data-label);
  position: absolute;
  background: #ebeffd;
  color: #2728a9;
  font-size: 0.75rem;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 0px;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -14px);
  opacity: 0;
  transition: all 200ms ease-out;
}
.table .action .button:hover:before {
  opacity: 1;
  z-index: 1;
  transform: translate(-50%, -24px);
}
@media (max-width: 767.98px) {
  .table {
    /* Force table to not be like tables anymore */
  }
  .table table,
  .table thead,
  .table tbody,
  .table th,
  .table td,
  .table tr {
    display: block;
  }
  .table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table tr {
    margin: 0 0 1rem 0;
  }
  .table tr:nth-child(odd) {
    background: #ebeffd;
  }
  .table td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid rgba(39, 40, 169, 0.2);
    position: relative;
    padding-left: 50%;
  }
  .table td:last-child,
  .table th:last-child {
    text-align: left;
    border: none;
    border-bottom: 0;
    position: relative;
    padding-left: 50%;
  }
  .table td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 8px;
    left: 8px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-label);
  }
  .table .action {
    justify-content: flex-start;
  }
}

.table--comparison {
  width: 100%;
}
.table--comparison.w1200 {
  width: 1200px;
}
@media (max-width: 767.98px) {
  .table--comparison.w1200 {
    width: 100%;
  }
}
.table--comparison th {
  font-weight: normal;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
.table--comparison th,
.table--comparison td {
  width: 100px;
  text-align: center;
  vertical-align: top;
}
.table--comparison th:first-child,
.table--comparison td:first-child {
  width: 200px;
  text-align: right;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
.table--comparison td:last-child,
.table--comparison th:last-child {
  text-align: center;
}
.table--comparison th:nth-of-type(even),
.table--comparison td:nth-of-type(even) {
  background: #ebeffd;
}
.table--comparison .icon {
  width: 18px;
  height: 18px;
}
.table--comparison .icon + div {
  margin-top: 4px;
}
.table--comparison .icon--success {
  stroke: #8ac80c;
}
.table--comparison div {
  font-size: 0.6875rem;
}
.table--comparison h3 {
  margin: 0;
  line-height: 1.5;
  font-size: 0.875rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  color: #59607e;
}
@media (max-width: 767.98px) {
  .table--comparison {
    width: 100%;
  }
  .table--comparison td,
  .table--comparison td:first-child,
  .table--comparison th,
  .table--comparison th:first-child {
    width: 100%;
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  .table--comparison .icon {
    margin-right: 8px;
  }
  .table--comparison td:last-child,
  .table--comparison th:last-child {
    padding-right: 16px;
    text-align: left;
  }
  .table--comparison th:nth-of-type(even),
  .table--comparison td:nth-of-type(even) {
    background: white;
  }
  .table--comparison th:nth-of-type(odd),
  .table--comparison td:nth-of-type(odd) {
    background: white;
  }
  .table--comparison tr:nth-of-type(even) td {
    background: #ebeffd;
  }
  .table--comparison td:before {
    left: 16px;
  }
}

.table--mutation {
  padding: 24px 0;
  width: 50%;
}
@media (max-width: 991.98px) {
  .table--mutation {
    width: 100%;
  }
}
.table--mutation .item {
  display: flex;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table--mutation .label,
.table--mutation .text {
  flex: 1;
  padding: 0 8px;
}
.table--mutation .text {
  text-align: right;
  color: #59607e;
}

.tabs .button-tabs {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  background: #59607e;
  color: white;
}
.tabs__selector {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .tabs__selector {
    display: none;
    opacity: 0;
    transition: all 250ms ease-out;
    flex-flow: column wrap;
    border-bottom: 0;
  }
  .tabs__selector.in {
    opacity: 1;
  }
}
.tabs__item {
  line-height: 0;
  padding-right: 32px;
}
@media (max-width: 767.98px) {
  .tabs__item {
    padding-right: 0;
  }
}
.tabs__link {
  font-size: 0.875rem;
  display: block;
  text-decoration: none;
  color: #afb5ce;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  line-height: 1.25rem;
  padding: 8px 0px 13px 0;
  position: relative;
  transition: color 200ms 100ms ease-out;
}
.tabs__link:before {
  content: "";
  width: 0px;
  height: 4px;
  position: absolute;
  background: #e5493d;
  left: 0;
  bottom: -1px;
  transition: width 200ms ease-out;
}
.tabs__link:hover {
  color: #737b9a;
}
.tabs__link:hover:before {
  width: 48px;
}
@media (max-width: 767.98px) {
  .tabs__link {
    padding: 12px;
    background: #ebeffd;
  }
  .tabs__link:before {
    display: none;
  }
  .tabs__link:hover, .tabs__link:active {
    color: #737b9a;
    background: rgba(39, 40, 169, 0.1);
  }
}
.tabs__item.active .tabs__link {
  color: #59607e;
}
@media (max-width: 767.98px) {
  .tabs__item.active .tabs__link {
    background: rgba(39, 40, 169, 0.1);
  }
}
.tabs__item.active .tabs__link:before {
  width: 48px;
}
@media (max-width: 767.98px) {
  .tabs__item.active .tabs__link:before {
    display: none;
  }
}
.tabs__content {
  padding: 32px 0;
}
.tabs__pane {
  display: none;
  animation: fadeEffect 500ms;
  position: relative;
}
.tabs__pane.in {
  display: block;
}

.ticket {
  width: 280px;
  padding: 32px 24px 8px 16px;
  position: relative;
}
.ticket .button-close {
  display: none;
  background: white;
  padding: 12px;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 991.98px) {
  .ticket .button-close {
    display: block;
    position: absolute;
    line-height: 0;
    left: -41px;
    width: 42px !important;
    top: 48px;
  }
}
@media (max-width: 767.98px) {
  .ticket .button-close {
    padding: 16px 8px;
    border-radius: 8px 0 0 8px;
  }
}
.ticket .button-close .icon {
  width: 20px;
  height: 20px;
  stroke: #afb5ce;
}
@media (max-width: 991.98px) {
  .ticket {
    position: fixed;
    opacity: 0;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 320px;
    background: white;
    padding: 24px 16px;
    border-radius: 12px 0 0 0;
    box-shadow: 0 6px 16px rgba(148, 165, 220, 0.3);
    transform: translate(20px, 20px);
    transition: opacity 250ms ease-out, transform 250ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
  }
}
@media (max-width: 767.98px) {
  .ticket {
    bottom: unset;
    top: 0;
    width: calc(100% - 48px);
    height: 100%;
  }
}
.ticket.active {
  z-index: 101;
}
.ticket.in {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 250ms ease-out, transform 250ms 100ms cubic-bezier(0.36, 0.12, 0.18, 1.59);
}
.ticket .button {
  width: 100%;
}
.ticket .form--search {
  width: 100%;
}
.ticket .button + .form--search,
.ticket .form--search + .panel--ticket {
  margin-top: 16px;
}
.ticket__list {
  height: 450px;
  padding-right: 4px;
  overflow: auto;
}
@media (max-width: 991.98px) {
  .ticket__list {
    height: calc(100vh - 270px);
    padding: 8px;
  }
}
@media (max-width: 767.98px) {
  .ticket__list {
    height: calc(100vh - 265px);
  }
}
.ticket__item.unread .box .title {
  color: #59607e;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
}
.ticket__item.selected .box:before {
  width: 5px;
  opacity: 1;
}
.ticket__item.selected .box .title {
  color: #f26055;
  font-family: poppins-bold, "Segoe UI", Arial, sans-serif;
}
.ticket__link {
  text-decoration: none;
}
.ticket__link .box {
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 8px 8px 8px 16px;
  position: relative;
}
.ticket__link .box:before {
  width: 0px;
  opacity: 0;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ff908c;
  border-radius: 4px 0 0 4px;
  transition: all 250ms 100ms ease-out;
}
.ticket__link .box .title {
  margin: 0;
  font-weight: normal;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.8125rem;
  color: #737b9a;
  margin-bottom: 16px;
}
.ticket__link .box .date {
  margin: 0;
  line-height: 1;
  font-family: poppins-regular, "Segoe UI", Arial, sans-serif;
  font-size: 0.6875rem;
  color: #afb5ce;
  text-align: right;
}
.ticket__link .box .status {
  font-size: 0.6875rem;
  line-height: 1;
  margin-bottom: 16px;
  color: #59607e;
}
.ticket__link .box .status span {
  padding: 4px 8px;
  background-color: #f2f2f2;
  border-radius: 4px;
  color: black;
}
.ticket__link .box .status--open span {
  background-color: #8ac80c;
  color: white;
}
.ticket__link .box .status--waiting span {
  background-color: #e47c0c;
  color: white;
}
.ticket__link .box .status--close span {
  background-color: #737b9a;
  color: white;
}
.ticket__link:hover .box {
  transform: none;
}
.ticket__link:hover .box:before {
  width: 5px;
  opacity: 1;
}
.ticket .select .icon {
  width: 14px;
  height: 14px;
}

.ticket-body__message {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ticket-body__message .head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding-bottom: 32px;
}
.ticket-body__message .head .sender {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.ticket-body__message .head .profile {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #ebeffd;
  padding: 14px;
  line-height: 20px;
  margin-right: 8px;
}
.ticket-body__message .head .icon {
  width: 20px;
  height: 20px;
  stroke: #59607e;
}
.ticket-body__message .head .text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #59607e;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
}
.ticket-body__message .head .time {
  font-size: 0.75rem;
  color: #737b9a;
  line-height: 1.5;
}
.ticket-body__message .head .action {
  flex: 0 0 auto;
}
.ticket-body__message .head .action .button {
  display: none;
}
@media (max-width: 991.98px) {
  .ticket-body__message .head .action .button {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .ticket-body__message .head .action .text {
    display: none;
  }
}
.ticket-body__message .body .subject {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  padding-bottom: 16px;
}
.ticket-body__message .body .hgroup {
  flex: 1 1 auto;
  padding-right: 16px;
}
.ticket-body__message .body .hgroup .ticketid {
  font-size: 0.75rem;
  color: #7d97f4;
  line-height: 1;
  margin: 0;
  margin-bottom: 4px;
}
.ticket-body__message .body .hgroup h4 {
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  margin: 0;
  margin-bottom: 16px;
  line-height: 1.5rem;
  font-size: 1rem;
  color: #59607e;
  font-weight: normal;
}
.ticket-body__message .body .hgroup .status {
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 16px;
  color: #59607e;
}
.ticket-body__message .body .hgroup .status span {
  padding: 4px 8px;
  background-color: #f2f2f2;
  border-radius: 4px;
  color: black;
}
.ticket-body__message .body .hgroup .status--open span {
  background-color: #8ac80c;
  color: white;
}
.ticket-body__message .body .hgroup .status--waiting span {
  background-color: #e47c0c;
  color: white;
}
.ticket-body__message .body .hgroup .status--close span {
  background-color: #737b9a;
  color: white;
}
.ticket-body__message .body .button {
  flex: 0 0 auto;
}
.ticket-body__message .body .content p {
  margin: 0;
  margin-bottom: 20px;
  line-height: 1.25rem;
  font-size: 0.8125rem;
}
.ticket-body__message .body .attached-files {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.ticket-body__message .body .attached-files__item {
  padding: 4px 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  color: #59607e;
  background: #ebeffd;
  text-decoration: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border: 1px solid rgba(89, 96, 126, 0.3);
}
.ticket-body__message .body .attached-files__item:hover {
  color: #afb5ce;
}
.ticket-body__message .body .attached-files__item:active {
  color: #59607e;
}
.ticket-body__message .body .attached-files .icon {
  height: 14px;
  width: 14px;
  margin-right: 4px;
  stroke: currentColor;
  color: inherit;
}
.ticket-body__message .body .attached-files .text {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.ticket-feedback__title {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 16px 0;
  margin: 0;
}
.ticket-feedback__title h3 {
  font-size: 1rem;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  line-height: 1;
  margin: 0;
  font-weight: normal;
  color: #59607e;
}
.ticket-feedback__item {
  padding: 8px 0 8px 24px;
}
.ticket-feedback__item.incoming {
  padding: 8px 24px 8px 0;
}
.ticket-feedback__item.incoming .body {
  background: #fdf9eb;
}
.ticket-feedback__item .head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 8px 0;
}
@media (max-width: 767.98px) {
  .ticket-feedback__item .head {
    display: block;
  }
}
.ticket-feedback__item .sender {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  flex: 1 1 auto;
  padding-right: 16px;
}
.ticket-feedback__item .time {
  color: #737b9a;
  font-size: 0.75rem;
  line-height: 1.5;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .ticket-feedback__item .time {
    padding-top: 8px;
    padding-left: 40px;
  }
}
.ticket-feedback__item .profile {
  line-height: 1;
  padding: 8px;
  border-radius: 16px;
  background: #ebeffd;
  margin-right: 8px;
}
.ticket-feedback__item .profile .icon {
  width: 16px;
  height: 16px;
}
.ticket-feedback__item .hgroup h4 {
  color: #59607e;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  margin-bottom: 2px;
}
.ticket-feedback__item .hgroup p {
  color: #afb5ce;
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
}
.ticket-feedback__item .body {
  padding: 32px;
  border-radius: 12px;
  background: #ebeffd;
}
.ticket-feedback__item .body p {
  margin: 0;
  margin-bottom: 18px;
  line-height: 1.125rem;
  font-size: 0.8125rem;
}
.ticket-feedback__item .attached-files {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.ticket-feedback__item .attached-files__item {
  padding: 4px 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  color: #59607e;
  background: #ebeffd;
  text-decoration: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border: 1px solid rgba(89, 96, 126, 0.3);
}
.ticket-feedback__item .attached-files__item:hover {
  color: #afb5ce;
}
.ticket-feedback__item .attached-files__item:active {
  color: #59607e;
}
.ticket-feedback__item .attached-files .icon {
  height: 14px;
  width: 14px;
  margin-right: 4px;
  stroke: currentColor;
  color: inherit;
}
.ticket-feedback__item .attached-files .text {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.ticket-feedback__action {
  padding: 32px 0;
  text-align: right;
}
.ticket-feedback__action .button {
  margin-left: 4px;
  padding-right: 24px;
}
@media (max-width: 991.98px) {
  .ticket-feedback__action .button {
    margin-bottom: 8px;
  }
}

[data-height="300"] {
  height: 300px;
  overflow: auto;
}

.text-left {
  text-align: left;
}
.text-left span.text {
  font-size: 0.8125rem;
  color: #737b9a;
  font-family: poppins-medium, "Segoe UI", Arial, sans-serif;
  display: block;
  line-height: 1.5;
}

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

.image-bottom {
  height: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .image-bottom {
    text-align: center;
  }
}
.image-bottom img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .image-bottom img {
    position: static;
  }
}

.push-right {
  margin-left: auto;
}

p.big {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.875rem;
}

.my0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx4 {
  margin-left: 4px;
  margin-right: 4px;
}

.mb8 {
  margin-bottom: 8px;
}

.p24 {
  padding: 24px;
}

.pl-26 {
  padding-left: 26px !important;
}

.pb16 {
  padding-bottom: 16px;
}

.pb32 {
  padding-bottom: 32px;
}

.py32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.button + .small {
  padding-top: 16px;
}

.label-sticker {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-53px);
}
@media (max-width: 767.98px) {
  .label-sticker {
    position: static;
    transform: none;
    padding-bottom: 16px;
  }
}

.button-floating {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-57px);
}
@media (max-width: 767.98px) {
  .button-floating {
    transform: translateY(-74px);
  }
}

.body--background {
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .body--background {
    overflow: visible;
  }
}

.body--freeze {
  height: 100%;
  overflow: hidden !important;
}

.heading {
  font-size: 1.875rem;
  line-height: 2.5rem;
  margin: 0;
  margin-bottom: 16px;
  font-family: dosis-bold, "Segoe UI", Arial, sans-serif;
  color: #59607e;
  font-weight: normal;
}
.heading span {
  color: #e5493d;
}
@media (max-width: 767.98px) {
  .heading {
    margin-bottom: 8px;
  }
}

.flex-stretch {
  flex: 1 1 0;
}

.flex-static {
  flex: 0 0 auto;
}

.justify-right {
  justify-content: flex-end;
}

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

.text-danger {
  color: #e5493d !important;
}

.owl-carousel {
  touch-action: none;
}

/* Fade in tabs */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=cmp-admin.css.map */
