.red {
  color: #ff3e3e !important; }

.yellow {
  color: #f8b600 !important; }

.black {
  color: #000 !important; }

.gray {
  color: #a7a7a7 !important; }

.green {
  color: #1fb135 !important; }

.bg--fail {
  border: 1px solid #ff7748 !important; }

.blue {
  color: #4a75eb !important; }

.popup-mask {
  position: fixed;
  z-index: 1000;
  /*z-index: 3900;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease; }

.popup-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 90%;
  overflow-y: auto; }

.popup-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  font-family: Helvetica, Arial, sans-serif;
  height: 100%; }

.popup-header h3 {
  margin-top: 0;
  color: #bc9ddb; }

.popup-header__close {
  cursor: pointer;
  height: 27px;
  outline: none;
  opacity: 0.5;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 27px;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.popup-header__close:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 10px;
  height: 10px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTcuNzg3IDFMNSAzLjc4NyAyLjIxMyAxIDEgMi4yMTMgMy43ODcgNSAxIDcuNzg3IDIuMjEzIDkgNSA2LjIxMyA3Ljc4NyA5IDkgNy43ODcgNi4yMTMgNSA5IDIuMjEzIiBmaWxsPSIjOTk5IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: cover;
  content: ""; }

.popup-header__close:hover {
  opacity: 1; }

.popup-body {
  position: relative;
  margin: 20px 0; }

/*
 * The following styles are auto-applied to elements with
 * transition="popup" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the popup transition by editing
 * these styles.
 */
.popup-enter {
  opacity: 0; }

.popup-leave-active {
  opacity: 0; }

.popup-enter .popup-container,
.popup-leave-active .popup-container {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
      transform: scale(1.1); }
