.error-modal {

display: none;

&__overlay {
  align-items: center;
  background: rgba($jacarta, 0.64);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10;
}

&__box {
  align-items: flex-start;
  background: $scooter;
  border-radius: 12px;
  box-shadow: 0 12px 16px 0 rgba($jacarta, 0.64);
  display: flex;
  flex-direction: column;
  height: 360px;
  justify-content: space-between;
  max-width: calc(100% - 80px);
  padding: 64px;
  width: 690px;

  @media screen and (max-width: $tablet) {
    padding: 24px;
  }
}

&__title {
  color: $white;
  font-family: $ft-galano;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.13;

  span {
    display: block;
  }
}

&__description {
  color: $jacarta;
  font-family: $ft-open-sans;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;

  strong {
    font-weight: bold;
    display: block;
  }
}

&__button,
&__button:visited {
  background: $jacarta;
  border-radius: 6px;
  color: $white;
  font-family: $ft-open-sans;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.38;
  padding: 20px 60px;
  text-align: center;
  text-decoration: none;
}

}