﻿.non-reg-popup {
  position: fixed;
  top: 92px;
  width: 454px;
  z-index: 2;
  padding: 16px 16px 18.5px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.14);
}
.non-reg-popup--position-right {
  right: 10px;
}
.non-reg-popup--position-left {
  left: 10px;
}
.non-reg-popup--position-center {
  left: calc(50% - 227px);
}
.non-reg-popup__close {
  width: 100%;
  text-align: right;
}
.non-reg-popup__close span {
  cursor: pointer;
}
.non-reg-popup__icon {
  margin: 10px 0 16px 0;
}
.non-reg-popup__buttons {
  display: flex;
}
.non-reg-popup__buttons a {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .non-reg-popup__overlay {
    width: 100%;
    height: 100%;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(101, 101, 101, 0.6784313725);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .non-reg-popup__overlay .non-reg-popup {
    position: static;
    padding-bottom: 22px;
  }
  .non-reg-popup__description {
    padding: 0 16px;
  }
  .non-reg-popup__buttons {
    flex-flow: column;
    width: 100%;
    padding: 0 16px;
  }
  .non-reg-popup__buttons button {
    width: 100%;
    margin: 10px 0;
  }
}

.popup-hidden {
  display: none;
}
