@charset "UTF-8";

@font-face {
  font-family: "Iqos-Light";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/iqos/IQOS-Light.woff) format("woff");
}

@font-face {
  font-family: "Iqos-Regular";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/iqos/IQOS-Regular.woff) format("woff");
}

@font-face {
  font-family: "Iqos-Bold";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/iqos/IQOS-Bold.woff) format("woff");
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* toggle lang styles */

.toggle-lang {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--slate);
}

.toggle-lang-to {
  margin-right: 10px;
}

.toggle-lang-to:last-child {
  margin-left: 10px;
  margin-right: 0px;
}

.toggle-lang input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-lang-slider {
  background: #524F5A;
  border-radius: 15px;
  width: 48px;
  height: 28px;
  position: relative;
}

.toggle-lang-slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  background-color: #00D1D2;
  transform-origin: left top;
  transform: translate(2px, -12px);
  transition: transform .2s ease;
}

.toggle-lang input:checked + .toggle-lang-slider::before {
  transform: translate(22px, -12px);
}

/* header */

.header__inner {
  padding: 85px 0 0 0;
}

/* footer */

.footer {
  margin-top: auto;
}

.footer__top,
.footer__bottom {
  padding: 30px 0;
}

.footer__top {
  border-bottom: 1px solid var(--soft-white);
}

/* conditions */

.conditions {
  display: flex;
  justify-content: space-around;
}

/* age */
.age ul {
  list-style-type: disc;
}

.age__actions {
  display: flex;
  justify-content: center;
}

/* rul */

.rul ol {
  list-style-type: auto;
}

.rul__actions {
  display: flex;
  justify-content: center;
}

/* modal rul */

.modal-rul.modal {
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
}

.modal-rul.modal .modal-header {
  margin-bottom: 12px;
}

.modal-rul.modal .modal-inner {
  max-width: 1088px;
  height: 100%;
  margin: 0 auto;
  padding: 40px 0;
}

.modal-rul.modal .modal-content {
  height: 100%;
  overflow: hidden;
}

.modal-rul.modal .modal-body {
  margin-bottom: 0;
  max-height: calc(100% - 48px);
  overflow-y: scroll;
  padding: 0 32px 44px 0;
}


.modal-rul.modal .modal-body::-webkit-scrollbar {
  width: 4px;
  background-color: rgba(52, 48, 61, 0.15)!important;
  border-radius: 2px;
}

.modal-rul.modal .modal-body::-webkit-scrollbar-thumb {
  width: 4px;
  background-color: rgba(52, 48, 61, 0.77)!important;
  border-radius: 2px;
}