@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 1 0;
}

* {
  font-family: "Onest";
}

a {
  text-decoration: none;
}

.button {
  background: #526168;
  white-space: nowrap;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  padding: 6px 20px;
  outline: none;
  border: none;
  transition: background-color 0.1s ease-in-out;
}
.button:hover {
  background: #3b464a;
}
.button:active {
  background: #6b7d85;
}
.button:disabled {
  background: #a6a6a6;
}
.button.button__cart {
  display: flex;
  gap: 8px;
}
.button.button__cart .button__icon {
  margin: 0;
}
.button.button__cart:after {
  display: inline-flex;
  border-radius: 15px;
  background: white;
  content: attr(data-count);
  color: black;
  font-size: 0.7em;
  align-items: center;
  justify-content: center;
  padding: 3px;
  min-width: 24px;
  text-align: center;
}

.button_big {
  font-size: 1.2em;
  padding: 10px 30px;
}

.button_medium {
  font-size: 1em;
  padding: 5px 20px;
}

input:focus {
  outline: none;
}

.button__icon {
  margin-right: 10px;
}

.base-input {
  padding: 7px 20px;
  border-radius: 5px;
  background-color: #eeeeee;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.2px;
  color: #1E1E1E;
  width: 100%;
  border: none;
}

.header {
  white-space: nowrap;
}

.header__top {
  background: #526168;
  min-height: 50px;
  max-height: 54px;
}

.header__contact-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header__contact-entity {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__top-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.header__bottom-wrapper {
  padding: 6px;
  position: relative;
  display: flex;
  min-height: 54px;
  justify-content: space-between;
  align-items: center;
}

.header__bottom-links-list {
  display: flex;
  justify-content: space-between;
  min-width: 400px;
  gap: 14px;
}

.header__bottom-link_active {
  font-weight: bold;
}

.header__bottom-link a {
  color: #1e1e1e;
  text-decoration: none;
}

.header__bottom-actions-list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__wrapper {
  margin-bottom: 20px;
}

.header__bottom-wrapper {
  margin-top: 20px;
}

.header__search-input {
  border-radius: 5px;
  border: none;
  background: url(/images/icons/search.svg) no-repeat center left 10px;
  background-color: white;
  padding: 5px 10px 5px 37px;
  width: 240px;
  transition: width 0.2s ease-in-out;
}

.header__search-input-container {
  position: relative;
  display: block;
}

.header__search-input-container_expand .header__search-input {
  width: 500px;
}

.header__search-result-block {
  position: absolute;
  top: 35px;
  left: 0;
  height: 0px;
  width: 100%;
  transition: height 0.2s ease-in-out;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: white;
  font-size: 0.8em;
  z-index: 9;
}

.header__search-await-block {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.header__search-result-block_visible {
  height: 260px;
  border: #526168 1px solid;
}

.header__search-result-header {
  background: #EEEEEE;
  padding: 3px 6px;
  border-radius: 5px;
}

.header__search-result-content {
  padding: 3px 6px;
  display: flex;
  flex-direction: column;
}

.header__search-result-wrapper {
  padding: 12px;
}

.header__bottom-action:hover {
  transform: scale(1.07);
}
@media (min-width: 960px) {
  .header__bottom-action {
    position: relative;
    transition: transform 0.2s ease-in-out;
  }
  .header__bottom-action:not(.header__bottom-action_cart):after {
    content: attr(data-count);
    font-size: 11px;
    height: 100%;
    text-align: left;
    margin-left: 7px;
    margin-bottom: 10px;
  }
}

.header__search-result-category-entity {
  padding: 3px;
  width: 100%;
  color: black;
  transition: 0.4s background-color;
  border-radius: 6px;
}
.header__search-result-category-entity:hover {
  background: #EEEEEE;
}

@media (max-width: 576px) {
  .header__search-input-container {
    display: none;
  }
  .header__bottom-logo img {
    width: 90%;
  }
  .header__bottom-action {
    background: #526168;
    border-radius: 5px;
    padding: 3px;
  }
  .header__bottom-action img {
    filter: brightness(100);
    transform: scale(0.8);
  }
}
@media (max-width: 767px) {
  .header__bottom-links-list {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    right: 0;
    background: #fff;
    z-index: 100;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .header__bottom-links-list.active {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}
.header__mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}
@media (min-width: 768px) {
  .header__mobile-menu-toggle {
    display: none;
  }
}

.header__search-result-not-found {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.footer {
  background-color: #526168;
  padding-top: 32px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__top-logo img {
  max-width: 217px;
  max-height: 40px;
}

.footer__top-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__contact-info {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

@media (max-width: 576px) {
  .footer__top-links {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
  .footer__top-link {
    text-align: left;
  }
  .footer__top {
    gap: 12px;
    flex-direction: column;
  }
}
.footer__top-link a {
  color: white;
  text-decoration: none;
}

.footer__description {
  font-size: 0.6666666667em;
  color: white;
  padding-bottom: 30px;
  padding-top: 20px;
}

.footer__contact-entity a {
  color: white;
}

.category-card {
  width: 100%;
}

.category-card__preview {
  display: flex;
  background: #E5EAF3;
  border-radius: 10px;
  height: 240px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 576px) {
  .category-card__preview {
    height: 180px;
  }
}
.category-card__preview-image {
  width: 100%;
  transition: transform 0.2s ease-in-out;
}

.category-card:hover .category-card__preview-image {
  transform: scale(1.05);
}

.category-card_name > * {
  color: black;
  text-align: center;
  text-decoration: none;
}

.category-card__preview--see-catalog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  color: black;
  font-size: 1.3em;
  text-align: center;
  font-weight: bold;
  line-height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #8e9eb7;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("/images/see_catalog.png");
}

.actions-list {
  margin: 40px 0;
}

.actions-list__col {
  display: flex;
  justify-content: center;
}

.action-card {
  display: flex;
  gap: 14px;
  align-items: center;
}

.action-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  border-radius: 50%;
  width: 88px;
  height: 88px;
}

.action-card__icon img {
  width: 65px;
  height: 65px;
}

.action-card__info p {
  margin: 0;
}

.action-card__title {
  font-weight: bold;
}

.about-company__image,
.about-company__image img {
  width: 100%;
}

.features-list {
  border: rgba(0, 0, 0, 0.1254901961) 1px solid;
  border-left: none;
  border-right: none;
  margin: 15px 0;
}

.feature-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  height: 225px;
  border-left: 1px solid rgba(0, 0, 0, 0.1254901961);
}

@media (max-width: 768px) {
  .feature-card {
    height: auto;
  }
  .feature-card:nth-child(1), .feature-card:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
  }
  .about-company__text {
    text-align: justify;
  }
}
.features-list__col:first-child .feature-card {
  border-left: none;
}

.feature-card__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
}

.features-list__col {
  margin: 0;
  padding: 0;
}

.catalog__content {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.catalog__sidebar-filters {
  display: flex;
  flex-direction: column;
}

.sidebar__category-container {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 16px 16px 54px;
}

.sidebar__category-entity:hover {
  text-decoration: underline;
}

.sidebar__category-deep {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 20px;
  font-size: 12px;
}
.sidebar__category-deep a {
  display: list-item;
  color: rgba(30, 30, 30, 0.8);
}

.sidebar__category-entity {
  color: black;
  font-size: 11px;
}

.catalog-categories-card-body {
  border-radius: 10px;
  border: 0.5px #7d828b solid;
  height: 216px;
}

.catalog-categories-card-body img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.catalog__categories-card {
  color: black;
}

.catalog-categories-card-footer {
  text-align: center;
}

.catalog__sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 576px) {
  .catalog__content {
    margin-top: 20px;
  }
}
.product-page__actions {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.product-page__action {
  border: none;
  border-radius: 5px;
  width: 48px;
  height: 48px;
}
.product-page__action[data-action=cart] img {
  filter: invert(1);
}

.product-page__name * {
  font-size: 24px;
  font-weight: bold;
}

.product-page__price {
  font-weight: bold;
  font-size: 24px;
  margin-top: 32px;
}

.product-page__action_active {
  background: #526168;
}
.product-page__action_active[data-action=compare] img, .product-page__action_active[data-action=favorite] img {
  filter: brightness(100);
}
.product-page__action_active[data-action=cart] img {
  filter: invert(0) !important;
}

.product-page__gallery {
  height: 400px;
  width: 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.13);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-page__gallery img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-page__info-list {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

[data-on-cart="0"] .product-page__add-to-cart {
  display: inline;
}
[data-on-cart="0"] .product-page__on-cart {
  display: none;
}

[data-on-cart="1"] [data-action=cart] {
  background: #6f7477;
}
[data-on-cart="1"] .product-page__add-to-cart {
  display: none;
}
[data-on-cart="1"] .product-page__on-cart {
  display: inline;
}

.contacts__map {
  position: relative;
  height: 420px;
}

.contacts__map-download {
  display: flex;
  gap: 10px;
  padding: 14px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.contacts__info-entity-header {
  font-weight: 600;
  font-size: 1.2em;
}

.contacts__info-entity-data {
  display: flex;
  align-items: center;
}

.contacts__info-entity-name {
  font-weight: 500;
  line-height: 18px;
  padding-right: 2px;
  color: #526168;
}

.cooperation-form__thanks {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5em;
  font-weight: bold;
  z-index: 9;
  text-align: center;
}

.cooperation-form_sended .cooperation-form__left {
  display: none;
}

.cooperation-form_sended .cooperation-form__thanks {
  display: flex;
}

.service-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 14px;
}

.service-page__header-title {
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0.2px;
  font-weight: 700;
  margin: 0;
}

.service-modal-body {
  padding: 20px;
}

.service-modal-body input,
.service-modal-body textarea {
  padding: 7px 20px;
  border-radius: 5px;
  background-color: #eeeeee;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.2px;
  color: #1E1E1E;
  border: none;
}

.service-modal-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #272727;
  margin: 0;
  max-width: 475px;
}

.service-modal-deliver {
  width: 100%;
  height: 1px;
  background-color: rgba(166, 0, 0, 0.2);
  margin: 0;
}

.service-modal-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-page__banner-picture {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .service-page__header {
    flex-direction: column;
  }
  .service-page__header-actions,
  .service-page__header-action {
    width: 100%;
  }
}
.service-page__content * {
  max-width: 100%;
}

.service-modal-content {
  display: flex;
  justify-content: space-between;
}

.cooperation-form {
  position: relative;
  background: rgb(229, 234, 243);
  border-radius: 15px;
  margin: 20px 0;
  overflow: hidden;
}

.cooperation-form__top {
  user-select: none;
}

.cooperation-form__wrapper {
  padding: 20px;
}

.cooperation-form__form-control {
  background: white;
  min-width: 120px;
}

.cooperation-form__bottom .help-block {
  text-wrap: nowrap;
}

.cooperation-form__controls {
  display: flex;
  gap: 7px;
}

.cooperation-form__bottom {
  padding: 14px 0;
}

.cooperation-form__left {
  width: 50%;
}

.cooperation-form__image {
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.23s ease-in-out;
}

.cooperation-form:hover .cooperation-form__image {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .cooperation-form__image {
    display: none;
  }
  .cooperation-form__left {
    width: 100%;
  }
  .cooperation-form__controls {
    flex-direction: column;
  }
  .cooperation-form__form-control {
    width: 100%;
  }
}
.breadcrumbs__list {
  background: #EEEEEE;
  padding: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  width: fit-content;
  border-radius: 5px;
}

.breadcrumb__entity:not(:first-child):before {
  content: "/";
  margin-right: 6px;
}

.breadcrumb__entity a {
  color: black;
}

.product-table__header {
  display: flex;
  justify-content: space-between;
  max-height: 110px;
}

.product-table__header-info {
  width: 100%;
}

.product-table__header-preview {
  display: flex;
  justify-content: end;
}

.product-table__image {
  height: 100%;
}

.offers-table {
  width: 100%;
}

.offers-table__header-col {
  border-bottom: 1px solid black;
  font-size: 12px;
  padding: 10px 20px 10px 0;
}

.offers-table__data-actions {
  display: flex;
  flex-direction: row;
}

.offers-table__row:nth-child(2n) {
  background: #EEEEEE;
}

.offers-table__data-col {
  padding: 10px 20px 10px 10px;
  font-size: 12px;
}

.offers-table__data-col_actions {
  width: 180px;
}

.offers-table__link {
  color: black;
  font-weight: bold;
}

.offers-table__link:hover {
  text-decoration: underline;
}

.offers-table__data-actions {
  display: flex;
  gap: 7px;
}

.offers-table__action {
  border: none;
  border-radius: 5px;
  padding: 3px;
}
.offers-table__action[data-action=cart] img {
  filter: invert(1);
}

.offers-table__action_active {
  background: #526168;
}
.offers-table__action_active[data-action=compare] img, .offers-table__action_active[data-action=favorite] img {
  filter: brightness(100);
}
.offers-table__action_active[data-action=cart] img {
  filter: invert(0);
}

.offers-list {
  display: flex;
  flex-direction: column;
}

.offers-list__load-more {
  text-align: center;
  padding: 15px 0;
}

.offers-table__body-picture {
  max-width: 32px;
}

.counter__container {
  background: #EEEEEE;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter__container_product-page {
  width: 86px;
  height: 100%;
}

.counter__input {
  width: 100%;
  background: none;
  border: none;
  text-align: center;
  min-width: 40px;
}

.counter__action {
  background: none;
  border: none;
  font-size: 1.3em;
}

.info-card {
  background: #EEEEEE;
}

.info-card__preview-image {
  width: 100%;
  height: 200px;
}

.info-card__wrapper {
  padding: 16px;
}

.info-card__action * {
  color: #A60000;
}

.expand-list {
  background: #eeeeee;
  border-radius: 5px;
  padding: 5px;
  transition: background-color 0.2s ease-in-out;
}
.expand-list:hover {
  background: #dddddd;
}

.expand-list__arrow {
  transition: transform 0.2s ease-in-out;
}

.expand-list_expanded .expand-list__arrow {
  transform: rotate(180deg);
}

.expand-list__body {
  height: 0px;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}

.expand-list_expanded .expand-list__body {
  height: 160px;
}

.expand-list__category.expand-list_expanded .expand-list__body {
  height: auto;
}

.expand-list__header {
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.expand-list__header.expand-list__header_no-expand {
  cursor: default;
}

.expand-list__header.expand-list__header_no-expand .expand-list__action {
  visibility: hidden;
}

.expand-list__values {
  background: white;
  margin: 10px 8px;
  padding: 8px;
  border-radius: 5px;
  max-height: 160px;
  overflow: auto;
}

.expand-list__value {
  display: flex;
  gap: 6px;
}

.expand-list__search {
  background: white;
  margin: 10px 8px;
  border-radius: 5px;
}

.expand-list__search-input {
  border: none;
  padding: 5px 15px;
}

.expand-list__header-picture {
  width: 32px;
  height: 32px;
}

.expand-list__title {
  text-align: center;
  color: black;
}
.expand-list__title a {
  color: black;
}

.expand-list__category .expand-list__title {
  font-size: 12px;
  font-weight: 500;
}
.expand-list__category.expand-list_expanded .expand-list__title {
  width: 75%;
  font-weight: 700;
}

.overlay__cookie {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(250px);
  transition: transform 750ms cubic-bezier(0.23, 1, 0.32, 1);
}

.overlay__cookie_show {
  transform: translateY(0);
}

.overlay__cookie-container {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  gap: 20px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  .overlay__cookie {
    bottom: 0;
  }
  .overlay__cookie-container {
    border-radius: 0;
    flex-direction: column;
  }
  .overlay__cookie-actions,
  .overlay__cookie-action {
    width: 100%;
  }
}
.overlay__cookie-content-text {
  margin: 0;
}

.services-list__col {
  padding: 12px;
}

.error-page {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #526168;
}

.error-page::before {
  content: "";
  display: block;
  position: absolute;
  width: 465px;
  height: 550px;
  top: 166px;
  left: 0;
  background-image: url(/images/404-left-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.error-page::after {
  content: "";
  display: block;
  position: absolute;
  top: 122px;
  right: 0;
  width: 572px;
  height: 621px;
  background-image: url(/images/404-right-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.error-page__title {
  font-weight: 700;
  font-style: normal;
  font-size: 150px;
  line-height: 160px;
  margin: 0;
}

.error-page__description {
  color: #272727;
  line-height: 37.55px;
  font-weight: 700;
  font-size: 30px;
}

.error-page__go-back {
  margin-top: 24px;
  width: 100%;
}

.error-page__button-back {
  padding: 12px 60px;
}

@media (max-width: 576px) {
  .error-page::before {
    top: 130px;
    width: 172px;
    height: 206px;
  }
  .error-page::after {
    top: 115px;
    width: 172px;
    height: 206px;
  }
  .error-page {
    height: 50%;
    z-index: 999;
    overflow: hidden;
  }
  .error-page__description {
    font-size: 23px;
    line-height: 25px;
  }
}
.news-list__col {
  padding: 12px;
}

.order-form__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-form {
  margin: 20px 0;
}

.form-group .help-block {
  text-align: center;
  font-size: 0.7em;
  color: palevioletred;
}

.form-group {
  transition: background-color 0.2s ease-in-out;
}

.form-group.has-error .base-input {
  background-color: #ffeeee;
}

.info-page {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #526168;
}

.info-page::before {
  content: "";
  display: block;
  position: absolute;
  width: 465px;
  height: 550px;
  top: 166px;
  left: 0;
  background-image: url(/images/404-left-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.info-page::after {
  content: "";
  display: block;
  position: absolute;
  top: 122px;
  right: 0;
  width: 572px;
  height: 621px;
  background-image: url(/images/404-right-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.info-page__title {
  font-weight: 700;
  font-style: normal;
  font-size: 150px;
  line-height: 160px;
  margin: 0;
}

.info-page__description {
  color: #272727;
  line-height: 37.55px;
  font-weight: 700;
  font-size: 30px;
}

.info-page__go-back {
  margin-top: 24px;
  width: 100%;
}

.info-page__button-back {
  padding: 12px 60px;
}

@media (max-width: 576px) {
  .info-page::before {
    top: 130px;
    width: 172px;
    height: 206px;
  }
  .info-page::after {
    top: 115px;
    width: 172px;
    height: 206px;
  }
  .info-page {
    height: 50%;
    z-index: 999;
    overflow: hidden;
  }
  .info-page__description {
    font-size: 23px;
    line-height: 25px;
  }
}
.header__search-result-category-entity {
  width: 100%;
  color: black;
  transition: 0.4s background-color;
  border-radius: 6px;
}
.header__search-result-category-entity:hover {
  background: #EEEEEE;
}

.catalog__pagination {
  display: flex;
  justify-content: space-between;
}

.base-paginator {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.base-paginator__container {
  min-width: 30px;
  height: 30px;
  text-align: center;
  background-color: #526168;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.base-paginator__container:hover:not(.disabled) {
  background-color: #3b464a;
  color: white;
}
.base-paginator__container.active {
  background-color: #6b7d85;
}
.base-paginator__container.disabled {
  background-color: #a6a6a6;
}

.base-paginator__link {
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=main.css.map */
