/* Reusable column setup */
.col {
  border: 0px solid rgba(0, 0, 0, 0);
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding-box !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
}

.row {
  min-height: 1rem;
  clear: both;
  overflow: hidden;
}

/* 1. 12 Column Grid 0px - 969px
    -----------------------------------------------------------------------------

    Span 1:    6.5%
    Span 2:    15.0%
    Span 3:    23.5%
    Span 4:    32.0% 
    Span 5:    40.5%
    Span 6:    49.0%
    Span 7:    57.5%
    Span 8:    66.0%
    Span 9:    74.5%
    Span 10:    83.0%
    Span 11:    91.5%
    Span 12:    100%

    ----------------------------------------------------------------------------- */
@media screen and (min-width: 0px) and (max-width: 969px) {
  .col {
    margin-left: 0;
    padding: 0 1.5%;
    float: none;
  }

  /* --- Gridpak variables ---*/
  /*
        Add your semantic classnames in alongside their corresponding spans here. e.g.

        .span_3,
        .my_semantic_class_name {
            ...
        }

        */
  .span_1 {
    width: auto;
  }

  .span_2 {
    width: auto;
  }

  .span_3 {
    width: auto;
  }

  .span_4 {
    width: auto;
  }

  .span_5 {
    width: auto;
  }

  .span_6 {
    width: auto;
  }

  .span_7 {
    width: auto;
  }

  .span_8 {
    width: auto;
  }

  .span_9 {
    width: auto;
  }

  .span_10 {
    width: auto;
  }

  .span_11 {
    width: auto;
  }

  .span_12 {
    width: auto;
  }
}
/* 2. 12 Column Grid 970px - Infinity
    -----------------------------------------------------------------------------

    Span 1:    6.5%
    Span 2:    15.0%
    Span 3:    23.5%
    Span 4:    32.0%
    Span 5:    40.5%
    Span 6:    49.0%
    Span 7:    57.5%
    Span 8:    66.0%
    Span 9:    74.5%
    Span 10:    83.0%
    Span 11:    91.5%
    Span 12:    100%

    ----------------------------------------------------------------------------- */
@media screen and (min-width: 970px) {
  .col {
    margin-left: 2%;
    padding: 0 1.5%;
  }

  /* --- Gridpak variables ---*/
  .row .col:first-child {
    margin-left: 0;
    padding-left: 0;
  }

  .span_1 {
    width: 6.5%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_2 {
    width: 15%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_3 {
    width: 23.5%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_4 {
    width: 32%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_5 {
    width: 40.5%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_6 {
    width: 49%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_7 {
    width: 57.5%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_8 {
    width: 66%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_9 {
    width: 74.5%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_10 {
    width: 83%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_11 {
    width: 91.5%;
    border-left-width: 0;
    padding: 0 1.5%;
    margin-left: 2%;
    min-height: 1rem;
  }

  .span_12 {
    margin-left: 0;
    width: 100%;
  }
}
.button {
  height: 52px;
  font-family: "Eir Medium", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 48px;
  color: #470a68;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #d111c9 !important;
  border-radius: 50px;
  transition: color 250ms ease-in-out, background-color 250ms ease-in-out,
    border-color 250ms ease-in-out;
}

.button:active,
.button:hover,
.button.alt {
  color: #ffffff;
  background: #d111c9;
  border: 2px solid #d111c9 !important;
}

.button.secondary {
  color: #470a68;
  background: #ffffff;
  border: 2px solid #892ba0 !important;
}

.button.secondary:active,
.button.secondary:hover {
  color: #ffffff;
  background: #892ba0;
  border-color: #892ba0;
}

.button[disabled],
.button[readonly] {
  color: #888;
  background: #ececec;
  border: 2px solid #ececec !important;
}

.button.button-block {
  display: block;
  width: 100%;
  text-align: center;
}

.button.half-block {
  display: block;
  width: 50%;
  margin: 0 auto;
}

.button.filled {
  color: #ffffff;
  background: #892ba0 !important;
  border: 2px solid #892ba0 !important;
}
/*//
// Text colors
//*/
.text-grey-dark {
  color: #25262a;
}

.text-grey-mid {
  color: #54585a;
}

.text-grey-mid-light {
  color: #888;
}

.text-grey-light {
  color: #c6c6c6;
}

.text-grey-light-very {
  color: #ececec;
}

.text-turquoise {
  color: #00b5d5;
}

.text-turquoise-dark {
  color: #005670;
}

.text-purple {
  color: #8b00ef;
}

.text-blue {
  color: #307fe2;
}

.text-blue-dark {
  color: #003380;
}

.text-purple-dark {
  color: #470a86;
}

.text-green {
  color: #3bb700;
}

.text-green-dark {
  color: #008c15;
}

.text-pink-dark {
  color: #b20072;
}

.text-yellow {
  color: #ffc800;
}

.text-orange {
  color: #ed8b00;
}

.text-red {
  color: #e40046;
}

/*//
// Background colors
//*/
.background-grey-dark {
  background-color: #25262a;
}

.background-grey-mid {
  background-color: #54585a;
}

.background-grey-mid-light {
  background-color: #888;
}

.background-grey-light {
  background-color: #c6c6c6;
}

.background-grey-light-very {
  background-color: #ececec;
}

.background-turquoise {
  background-color: #00b5d5;
}

.background-turquoise-dark {
  background-color: #005670;
}

.background-blue {
  background-color: #307fe2;
}

.background-blue-dark {
  background-color: #003380;
}

.background-purple {
  background-color: #8b00ef;
}

.background-purple-dark {
  background-color: #470a86;
}

.background-green {
  background-color: #3bb700;
}

.background-green-dark {
  background-color: #008c15;
}

.background-pink-dark {
  background-color: #b20072;
}

.background-yellow {
  background-color: #ffc800;
}

.background-orange {
  background-color: #ed8b00;
}

.background-red {
  background-color: #e40046;
}

@font-face {
  font-family: "Eir Medium";
  src: url("../fonts/eir-medium-web.eot");
  src: url("../fonts/eir-medium-web.woff") format("woff"),
    url("../fonts/eir-medium-web.woff2") format("woff"),
    url("../fonts/eir-medium-web.ttf") format("truetype"),
    url("../images/eir-medium-web.svg#webfont") format("svg");
}
@font-face {
  font-family: "GT Walsheim Regular";
  src: url("../fonts/GT-Walsheim-Regular.eot");
  src: url("../fonts/GT-Walsheim-Regular.woff") format("woff"),
    url("../fonts/GT-Walsheim-Regular.ttf") format("truetype"),
    url("../images/GT-Walsheim-Regular.svg#webfont") format("svg");
}
@font-face {
  font-family: "GT Walsheim Medium";
  src: url("../fonts/GT-Walsheim-Medium.eot");
  src: url("../fonts/GT-Walsheim-Medium.woff") format("woff"),
    url("../fonts/GT-Walsheim-Medium.ttf") format("truetype"),
    url("../images/GT-Walsheim-Medium.svg#webfont") format("svg");
}
@font-face {
  font-family: "GT Walsheim Bold";
  src: url("../fonts/GT-Walsheim-Bold.eot");
  src: url("../fonts/GT-Walsheim-Bold.woff") format("woff"),
    url("../fonts/GT-Walsheim-Bold.ttf") format("truetype"),
    url("../images/GT-Walsheim-Bold.svg#webfont") format("svg");
}
.form-input {
  position: relative;
}

.form-input input[type="text"],
.form-input input[type="password"],
.form-input input[type="datetime"],
.form-input input[type="datetime-local"],
.form-input input[type="date"],
.form-input input[type="month"],
.form-input input[type="time"],
.form-input input[type="week"],
.form-input input[type="number"],
.form-input input[type="email"],
.form-input input[type="url"],
.form-input input[type="search"],
.form-input input[type="tel"],
.form-input textarea,
.form-input select {
  height: 52px;
  padding: 12px;
  margin: 0;
  width: 100%;
  font-family: "GT Walsheim Regular", sans-serif;
  font-size: 20px;
  line-height: normal;
  color: #000000;
  background-color: #fff;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  transition: border 200ms ease-in-out, line-height 300ms ease-in-out,
    box-shadow 300ms ease-in-out;
  box-shadow: none;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.form-input input:focus,
.form-input textarea:focus,
.form-input select:focus {
  color: #25262a;
  border-color: #892ba0;
  box-shadow: inset 0px 0px 0px 2px #892ba0;
}

.form-input input.error,
.form-input textarea.error,
.form-input select.error {
  color: #25262a;
  border-color: #e40046;
  box-shadow: inset 0px 0px 0px 2px #e40046;
}

.form-input textarea {
  min-height: 100px;
  padding: 12px;
}

.form-input select {
  padding: 10px 12px;
}

label {
  padding: 10px 0 4px;
  margin: 0;
  display: block;
  font-size: 16px;
  color: #323435;
}

.form-checkbox,
.form-radio {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.form-checkbox input,
.form-radio input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.form-checkbox input:checked + label .box span,
.form-radio input:checked + label .box span {
  display: block;
}

.form-checkbox input:focus + label .box,
.form-radio input:focus + label .box {
  border-color: #892ba0;
  box-shadow: inset 0px 0px 0px 2px #892ba0;
}

.form-checkbox label,
.form-radio label {
  display: inline-block;
  padding: 10px 0 0;
  font-size: 16px;
  line-height: 32px;
  color: #323435;
}

.form-checkbox label .box,
.form-radio label .box {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 10px 0 0;
  border: 2px solid #ececec;
  border-radius: 4px;
  cursor: pointer;
}

.form-radio label .box {
  border-radius: 50%;
}

.form-checkbox label .box span,
.form-radio label .box span {
  display: block;
  margin: 6px 0 0 6px;
  width: 20px;
  height: 20px;
  background-color: #892ba0;
  border-radius: 3px;
  display: none;
}

.form-radio label .box span {
  border-radius: 50%;
}

.form-checkbox label .box span.error,
.form-radio label .box span.error {
  border: 4px solid #e40046;
}

/* Скрываем все сообщения об ошибках */
.error-text,
.vamTextErrorFormat {
  display: none !important;
  visibility: hidden !important;
}

.error-text {
  color: #e40046;
}

.error-text div {
  padding: 4px 0 0;
}

.error-text::selection {
  background-color: #e40046;
  color: #fff;
}

.error-text::-moz-selection {
  background-color: #e40046;
  color: #fff;
}

input:-webkit-autofill {
  box-shadow: inset 0 0 0px 1000px #fff !important;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "GT Walsheim Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #25262a;
  background: #fff;
}

.container {
  padding: 2rem 15px;
  margin: 0 auto;
  max-width: 960px;
  min-width: 320px;
}

.colors:after {
  content: "";
  display: block;
  clear: both;
}

.colors p {
  box-sizing: border-box;
  display: inline-block;
  height: 32px;
  width: 50%;
  padding: 0 10px;
  margin: 10px 0;
  line-height: 32px;
  float: left;
}

hr {
  padding: 0;
  margin: 15px 0;
  border: 0;
  height: 1px;
  background-color: #c6c6c6;
}

h1,
h2,
h3 {
  font-family: "Eir Medium", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  padding: 20px 0;
}

h2 {
  font-size: 28px;
  padding: 15px 0;
}

h3 {
  font-size: 20px;
  padding: 10px 0 5px;
}

h4,
h5,
h6 {
  font-family: "GT Walsheim Regular", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  padding: 10px 0;
}

h5 {
  font-size: 16px;
  padding: 10px 0 5px;
}

h6 {
  font-size: 14px;
  padding: 5px 0;
}

a {
  color: #892ba0;
  text-decoration: underline;
  transition: color 250ms ease-in-out;
}
a:active,
a:hover,
a.active {
  color: #470a68;
}
a::selection {
  background-color: #470a68;
  color: #fff;
}
a::-moz-selection {
  background-color: #470a68;
  color: #fff;
}

strong {
  font-family: "GT Walsheim Medium", sans-serif;
  font-weight: 700;
}

small {
  font-size: 14px;
}

::selection {
  background-color: #8b00ef;
  color: #fff;
}

::-moz-selection {
  background-color: #8b00ef;
  color: #fff;
}

form .select {
  background: url(../images/eir_chevron_down.png) no-repeat #fff;
  background-position: calc(100% - 1rem) center;
  background-size: 1rem 0.5rem;
  padding-right: 2rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
*/
.table-full-width {
  width: 100%;
}

.gap-right {
  padding-right: 2rem;
}

.eir-border-style {
  border-bottom: 2px dotted #c6c6c6;
}

.container {
  min-width: auto;
}

.button {
  cursor: pointer;
}

.app-navigation {
  display: block;
}
@media (min-width: 60.625rem) {
  .app-navigation {
    float: left;
    width: 20%;
  }
}
.app-navigation__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.app-navigation__item {
  margin: 0;
  margin-bottom: 1px;
  background-color: #ececec;
  color: #25262a;
}
.app-navigation__item a {
  color: #25262a;
  display: block;
  padding: 8px;
  text-decoration: none;
  transition: none;
  cursor: pointer;
}
.app-navigation__item--current {
  background-color: #892ba0;
  color: #ececec;
}
.app-navigation__item--current a {
  color: #ececec;
}

@media (min-width: 60.625rem) {
  .app-main {
    float: right;
    width: 80%;
  }
}
.app-main__inner {
  margin-bottom: 2rem;
}
@media (min-width: 60.625rem) {
  .app-main__inner {
    border-left: solid 1px #ececec;
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
    min-height: 20rem;
  }
}

.heading-without-top-padding {
  padding-top: 0;
}
@media (min-width: 60.625rem) {
  .heading-without-top-padding {
    max-width: 75%;
  }
}

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

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

.heading-without-top-padding {
  padding-top: 0;
}
@media (min-width: 60.625rem) {
  .heading-without-top-padding {
    max-width: 85%;
  }
}

#accept_terms_checkbox,
#accept_terms_label {
  display: inline-block;
}

.panel-add-number {
  border-radius: 4px;
  background-color: #ececec;
  margin-top: 0.5rem;
  padding: 1rem;
  padding-top: 0;
  padding-bottom: 0.5rem;
}

.bottom-gap {
  margin-bottom: 0.5rem;
}
.bottom-gap--large {
  margin-bottom: 1rem;
}

.no-wrap {
  white-space: nowrap;
}

.summary-item {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  word-break: break-word;
}

.schedule-topup-table td,
.schedule-topup-table th {
  text-align: left;
  font-weight: normal;
}

.cvv-field,
.card-field {
  width: 75% !important;
}

.cvv-image-container,
.card-image-container {
  float: right;
  width: 25%;
  text-align: right;
}

.card-image-container img {
  margin-top: 0.75rem;
}

.laptop-only {
  display: none;
}
@media (min-width: 60.625rem) {
  .laptop-only {
    display: block;
  }
}

@media (min-width: 60.625rem) {
  .laptop-hide {
    display: none;
  }
}

.deferred-link,
.cursor-pointer {
  cursor: pointer;
}

.form-checkbox label .box.darker-outline {
  border: 2px solid #aaa;
}

.checkbox-confirm-text {
  margin-left: 2.5rem;
  margin-top: -0.75rem;
  font-size: 0.813rem;
  color: #888;
}

.notice-banner-container {
  background: #ddd;
  color: #555;
  font-size: 13px;
  display: none;
  padding: 7px 10px;
}
.notice-banner-container__inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notice-banner-container__text {
  margin-right: 10px;
}
.notice-banner-container__banner-button {
  font-size: 13px;
  line-height: normal;
  height: 26px;
  width: 80px !important;
}

.center-text {
  text-align: center;
}
/*# sourceMappingURL=application.css.map */
