html, body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  font-family: ArialBold, sans-serif;
  line-height: 1.5;
  font-size: 16px;
}
html *, body * {
  box-sizing: border-box;
}

body {
  background: url("/static/img/footer.svg") no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
}

.logo {
  text-align: center;
}
.logo img {
  width: 100px;
}

.greatings {
  background: #642872;
  color: #fff;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  padding-bottom: 2em;
}

.information {
  margin: 1em auto;
  padding: 0.25em 1em;
  max-width: 600px;
  text-align: left;
  background: #f3f3f3;
  border-radius: 8px;
}
.information p {
  margin: 1em 0;
  display: flex;
  justify-content: flex-start;
  line-height: 1;
}
.information p svg {
  margin-right: 1em;
  transform: scale(1.2);
}
.information__title {
  font-weight: 700;
  min-width: 40%;
  display: flex;
  align-items: center;
}

.button__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-top: 1em;
}
.button__list a {
  border: 1px solid #642872;
  background: #642872;
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 0.25em;
  box-sizing: border-box;
  transition: 0.5s;
  box-shadow: #FFF 3px 0, #FFF -3px 0, #FFF 0 3px, #FFF 0 -3px;
  text-decoration: none;
  text-align: center;
}
.button__list a svg {
  margin-right: 0.5em;
}
.button__list a:hover {
  background: #fff;
  color: #642872;
}

.payment {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.payment h3 {
  text-shadow: #FFF 2px 0, #FFF -2px 0, #FFF 0 2px, #FFF 0 -2px;
}
.payment #flexCheckDefault {
  height: 1.5em;
  width: 1.5em;
  position: relative;
  top: 3px;
}
.payment #flexCheckDefault:checked ~ div.banks__wrapper {
  position: relative;
}
.payment #flexCheckDefault:checked ~ div.banks__wrapper .banks {
  filter: grayscale(0);
}
.payment #flexCheckDefault:checked ~ div.banks__wrapper .banks:before {
  display: none;
}
.payment #flexCheckDefault:checked + label {
  color: #642872;
}
.payment label {
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
}
.payment label:hover {
  color: #642872;
}
.payment .banks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2em;
  filter: grayscale(1);
  position: relative;
}
.payment .banks__wrapper {
  margin-top: 1em;
}
.payment .banks:before {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 100%;
  content: "";
}
.payment .banks a {
  border: 1px solid #642872;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment .banks a:hover {
  transition: 0.5s;
  -webkit-box-shadow: 2px 2px 8px 0px #642872;
  -moz-box-shadow: 2px 2px 8px 0px #642872;
  box-shadow: 2px 2px 8px 0px #642872;
}
.payment .banks a img {
  width: 90%;
}

.popup, .halyk_qr, .rbk_qr {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s ease-out, z-index 1s ease;
  opacity: 0;
  z-index: -1;
}
.popup.show, .halyk_qr.show, .rbk_qr.show {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.5s ease-out, z-index 0s ease;
}
.popup__wrapper, .halyk_qr__wrapper, .rbk_qr__wrapper {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.popup__form, .halyk_qr__form, .rbk_qr__form {
  background: #fff;
  width: 300px;
  padding: 1em;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  z-index: 2;
  font-size: 16px;
  text-align: center;
}
.popup__form label, .halyk_qr__form label, .rbk_qr__form label {
  text-align: center;
}
.popup__form input, .halyk_qr__form input, .rbk_qr__form input {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 1em;
  border-radius: 8px;
  border: 1px solid #000;
}
.popup__form input[type=submit], .halyk_qr__form input[type=submit], .rbk_qr__form input[type=submit] {
  border: 1px solid #642872;
  background: #642872;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.5s;
  text-decoration: none;
  text-align: center;
}
.popup__form input[type=submit]:hover, .halyk_qr__form input[type=submit]:hover, .rbk_qr__form input[type=submit]:hover {
  box-shadow: #000 -1px 0 2px, #000 0 1px 2px;
}
.popup__error, .halyk_qr__error, .rbk_qr__error {
  color: red;
  font-weight: 700;
  text-align: center;
  font-size: 12px;
}
.popup__close, .halyk_qr__close, .rbk_qr__close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1em;
  width: 1em;
  right: -1.5em;
  top: -1.5em;
  color: #fff;
  cursor: pointer;
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .information, .payment {
    max-width: 75%;
  }
}
@media (max-width: 751px) {
  .information, .payment {
    max-width: 95%;
  }
  .button__list {
    display: flex;
    flex-direction: column;
  }
  .button__list a {
    margin: 0 0 1em;
    text-align: center;
    justify-content: center;
  }
  .button__list a:last-child {
    margin-bottom: 0;
  }
  .information > p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ccc;
    line-height: 1.5;
  }
  .information > p:last-child {
    border-bottom: none;
  }
  .popup, .halyk_qr, .rbk_qr {
    position: fixed;
  }
  .payment {
    margin-bottom: 2em;
  }
  .payment .banks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .payment .banks a {
    height: 52px;
    margin: 5px;
    width: 95%;
    padding: 5px;
    box-sizing: border-box;
  }
  .payment .banks a:nth-child(2) {
    order: -1;
  }
  .payment .banks a img {
    max-height: 100%;
    max-width: 80%;
    width: auto;
  }
  .button__list a {
    width: 95%;
    margin: 0 auto 1em;
    display: inline-block;
  }
}

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