@charset "UTF-8";
@font-face {
  font-family: Open Sans;
  src: url("../font/Open_Sans/OpenSans-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: Open Sans;
  src: url("../font/Open_Sans/OpenSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Open Sans;
  src: url("../font/Open_Sans/OpenSans-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Open Sans;
  src: url("../font/Open_Sans/OpenSans-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: Open Sans;
  src: url("../font/Open_Sans/OpenSans-Bold.ttf");
  font-weight: 700;
}
* {
  box-sizing: border-box;
  font-family: Open Sans, Arial;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  color: #111114;
}
@media (prefers-color-scheme: dark) {
  body {
    background: #111114;
    color: #FFFFFF;
  }
}

.container {
  max-width: 620px;
  width: 90vw;
  margin: auto;
}

button {
  cursor: pointer;
  transition: 0.1s;
}
button:hover {
  box-shadow: 2px 3px 1px rgba(131, 131, 131, 0.4);
}

header {
  color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.565) 0px -100px 200px inset;
  background: rgb(237, 18, 98);
  border-radius: 0px 0px 24px 24px;
  padding: 25px;
}
header .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top p span:last-child {
  font-size: 1.2em;
  text-decoration: none !important;
  color: rgb(255, 255, 255) !important;
}
header .center {
  font-weight: 600;
  font-size: 1.2em;
  max-width: 360px;
  text-align: center;
  margin: 60px auto;
  padding: 15px 25px;
  border: 1px solid #ffffff;
  border-radius: 0px 24px;
}
header .bottom {
  max-width: 360px;
  margin: 10px auto;
}
header .bottom p {
  text-align: center;
  margin-bottom: 15px;
}
header .bottom .buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
header .bottom .buttons a#btn-balance {
  text-transform: uppercase;
  background: #EE255C;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
header .bottom .buttons a#btn-megabytes {
  text-transform: uppercase;
  background: #FFFFFF;
  color: #111114;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

body.kcell header {
  background: #652D86;
}
body.kcell header .buttons a#btn-balance {
  text-transform: uppercase;
  background: #652D86;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
}
body.kcell header .buttons a#btn-megabytes {
  text-transform: uppercase;
  background: #FFFFFF;
  color: #111114;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
}

.slider {
  position: relative;
}
.slider h2 {
  font-size: 1.5em;
  margin: 20px 0 10px;
}
.slider .slider-container {
  position: relative;
  display: flex;
  gap: 8px;
  overflow: overlay;
  scroll-behavior: smooth;
}
.slider .slider-container::-webkit-scrollbar {
  display: none;
}
.slider .slider-container .slide {
  position: relative;
  min-width: 360px;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}
.slider .slider-container .slide .top {
  color: #fff;
  padding: 25px;
}
.slider .slider-container .slide .top p {
  width: 60%;
  font-weight: 600;
  font-size: 1.1em;
}
.slider .slider-container .slide .bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20% 25px 20px;
  background: linear-gradient(178.09deg, rgba(0, 0, 0, 0) 1.61%, #000000 98.39%);
}
.slider .slider-container .slide .bottom .bottom__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.slider .slider-container .slide .bottom .bottom__main img {
  width: 36px;
  height: 36px;
}
.slider .slider-container .slide .bottom .bottom__main .info {
  flex: 1;
}
.slider .slider-container .slide .bottom .bottom__main .info h4 {
  color: #FFFFFF;
  font-weight: 600;
}
.slider .slider-container .slide .bottom .bottom__main .info p {
  font-size: 0.9em;
  color: #FFFFFF;
}
.slider .slider-container .slide .bottom .bottom__main button {
  font-size: 0.9em;
  font-weight: 500;
  padding: 8px 16px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2392156863);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.slider .slider-container .slide .bottom .price {
  color: #fff;
  text-align: end;
  font-size: 0.8em;
  margin: 3px 3px 0 0;
}
.slider .left-arrow {
  left: -20px;
  position: absolute;
  top: 47%;
  display: flex;
  background: #F1F1F1;
  padding: 13px 16px;
  border: 1px solid rgba(17, 17, 20, 0.0588235294);
  border-radius: 50px;
  cursor: pointer;
}
@media (prefers-color-scheme: dark) {
  .slider .left-arrow {
    background: #26272B;
    border: 1px solid rgba(255, 255, 255, 0.0588235294);
  }
}
.slider .right-arrow {
  right: -20px;
  position: absolute;
  top: 47%;
  display: flex;
  background: #F1F1F1;
  padding: 13px 16px;
  border: 1px solid rgba(17, 17, 20, 0.0588235294);
  border-radius: 50px;
  cursor: pointer;
}
@media (prefers-color-scheme: dark) {
  .slider .right-arrow {
    background: #26272B;
    border: 1px solid rgba(255, 255, 255, 0.0588235294);
  }
}
.slider .right-arrow img {
  rotate: 180deg;
}
@media (prefers-color-scheme: dark) {
  .slider .left-arrow img, .slider .right-arrow img {
    filter: invert(1);
  }
}

.main {
  margin-bottom: 40px;
}
.main .block-container {
  margin: 0 0 40px;
}
.main h2 {
  font-size: 2em;
  font-weight: 700;
  margin: 30px 0 10px;
}
.main p.header {
  font-size: 1.1em;
}
.main .link {
  display: block;
  margin: 15px 0 10px;
  width: 100%;
  font-weight: 500;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #ee255c;
}
.main .link:hover {
  box-shadow: 2px 3px 1px rgba(131, 131, 131, 0.4);
}
.main h3 {
  font-size: 1.5em;
  margin: 10px 0;
}

body.kcell .main .link {
  background: rgb(101, 45, 134);
}

.payment {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
  background: rgba(237, 18, 98, 0.1);
  padding: 20px;
  border-radius: 12px;
}
@media (prefers-color-scheme: dark) {
  .payment {
    background: rgb(228, 206, 214);
  }
}
.payment a {
  height: 50px;
}
.payment a img {
  height: 100%;
}

body.kcell .payment {
  background: rgba(101, 45, 134, 0.1);
}
@media (prefers-color-scheme: dark) {
  body.kcell .payment {
    background: rgb(239, 222, 250);
  }
}

.important-to-know {
  margin-bottom: 40px;
}
.important-to-know h2 {
  font-size: 2em;
  font-weight: 700;
  margin: 30px 0 10px;
}
.important-to-know button {
  margin: 15px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  background: rgba(17, 17, 20, 0.0392156863);
}
@media (prefers-color-scheme: dark) {
  .important-to-know button {
    background: rgba(255, 255, 255, 0.0588235294);
  }
  .important-to-know button img {
    filter: invert(1);
  }
}
.important-to-know button p {
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  font-weight: 500;
}
@media (prefers-color-scheme: dark) {
  .important-to-know button p {
    color: #FFFFFF;
  }
}
.important-to-know button img:last-child {
  rotate: 180deg;
}
@media (prefers-color-scheme: dark) {
  .important-to-know button img:last-child {
    background: rgba(255, 255, 255, 0.0588235294);
    color: #FFFFFF;
  }
}

.popup-window {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 1;
}
.popup-window .background {
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 20, 0.55);
}
.popup-window .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 350px;
  max-height: 90vh;
  padding: 18px;
  border-radius: 24px;
  background: #FFFFFF;
  color: #111114;
}
.popup-window .content .sub-font {
  color: rgba(17, 17, 20, 0.4784313725);
}
.popup-window .content p {
  color: #111114;
  max-height: 70vh;
  overflow: overlay;
}
.popup-window .content p button {
  background: none;
  box-shadow: none;
  border: none;
  border-bottom: 0.8px solid #000;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
@media (prefers-color-scheme: dark) {
  .popup-window .content p button {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
  }
}
.popup-window .content #user-phone {
  color: #111114;
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  .popup-window .content {
    background: #26272B;
    color: #FFFFFF;
  }
  .popup-window .content .sub-font {
    color: rgba(255, 255, 255, 0.4784313725);
  }
  .popup-window .content p {
    color: #FFFFFF;
  }
  .popup-window .content #user-phone {
    color: #FFFFFF;
  }
}
.popup-window .content .close-cross {
  position: absolute;
  top: 13px;
  right: 15px;
  padding: 10px;
  width: 33px;
  height: 33px;
  cursor: pointer;
}
@media (prefers-color-scheme: dark) {
  .popup-window .content .close-cross {
    filter: invert(1);
  }
}
.popup-window .content h3 {
  padding: 0px 30px 10px;
  text-align: center;
  font-size: 1.2em;
}
.popup-window .content h4 {
  margin: 10px 0 10px;
}
.popup-window .content .cards {
  max-height: calc(90vh - 80px);
  overflow: overlay;
}
.popup-window .content .card {
  padding: 12px;
  margin: 12px 0;
  background: #FFFFFF;
  box-shadow: 0px 12px 24px 0px rgba(22, 22, 67, 0.0588235294);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
@media (prefers-color-scheme: dark) {
  .popup-window .content .card {
    background: #1C1D21;
  }
}
.popup-window .content .card .image {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 14px;
  background-size: cover;
  background-image: url("../img/world-icon-light.png");
}
@media (prefers-color-scheme: dark) {
  .popup-window .content .card .image {
    background-image: url("../img/world-icon-dark.png");
  }
}
.popup-window .content .card .info {
  width: 100%;
}
.popup-window .content .card .info p:last-child {
  font-size: 0.9em;
  color: rgba(17, 17, 20, 0.6392156863);
}
@media (prefers-color-scheme: dark) {
  .popup-window .content .card .info p:last-child {
    color: rgba(255, 255, 255, 0.4);
  }
}
.popup-window .content .card button {
  font-size: 0.9em;
  font-weight: 500;
  padding: 8px 16px;
  border: none;
  border-radius: 12px;
  background: rgba(17, 17, 20, 0.0392156863);
}
@media (prefers-color-scheme: dark) {
  .popup-window .content .card button {
    background: rgba(255, 255, 255, 0.0588235294);
    color: #FFFFFF;
  }
}
.popup-window .content .phone, .popup-window .content .to-pay, .popup-window .content .price {
  margin: 20px 0;
}
.popup-window .content .phone .sub-font, .popup-window .content .to-pay .sub-font, .popup-window .content .price .sub-font {
  font-size: 0.9em;
}
.popup-window .content .phone p, .popup-window .content .to-pay p, .popup-window .content .price p {
  font-size: 1.2em;
}
.popup-window .content .phone p span, .popup-window .content .to-pay p span, .popup-window .content .price p span {
  font-size: 1em;
}
.popup-window .content .price p {
  font-size: 1.1em;
}
.popup-window .content .continue {
  text-transform: uppercase;
  background: #EE255C;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 0 15px;
}
.popup-window .content .show-result {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.popup-window .content .show-result img {
  margin-bottom: 10px;
}
@media (prefers-color-scheme: dark) {
  .popup-window .content .show-result img {
    filter: invert(1);
  }
}

body.kcell .popup-window .content .continue {
  text-transform: uppercase;
  background: #652D86;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
}

.popup-window.big .content {
  max-width: 620px;
}

.confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none; /* Чтобы не мешало взаимодействовать с окном */
}

.confetti div {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: confettiAnimation 4s forwards;
}

@keyframes confettiAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--random-x), var(--random-y)) rotate(var(--random-rotate));
    opacity: 0;
  }
}
.no-page .background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.no-page .logo {
  position: absolute;
  top: 5%;
  left: 5%;
  height: 16px;
  z-index: 1;
}
.no-page p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  text-align: center;
  color: #fff;
  z-index: 1;
}

@media (max-width: 700px) {
  * {
    font-size: 13px;
  }
  header .top .logo {
    height: 18px;
  }
  header .top p {
    font-size: 12px;
  }
  header .bottom .buttons {
    flex-direction: column;
  }
  .slider .left-arrow {
    left: 5px;
    padding: 11px 14px;
  }
  .slider .right-arrow {
    right: 5px;
    padding: 11px 14px;
  }
  .slider .slider-container .slide {
    min-width: 320px;
  }
  .main .card {
    padding: 10px;
  }
  .main .card .image {
    min-width: 45px;
    height: 45px;
  }
  .main .card button {
    padding: 8px;
  }
  .payment a {
    height: 35px;
  }
}
@media (max-width: 355px) {
  header .top p span {
    display: block;
  }
}

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