*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  background-color: white;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "ProximaNova", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #2E2E2E;
  background-color: #FFFFFF;
}

header {
  pointer-events: none;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

input {
  font-family: inherit;
}

.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.popup {
  display: flex;
  flex-direction: column;
  width: 640px;
  height: 480px;
  padding: 16px 18px 14px 25px;
  background: #FAF8F5 url("../img/popup-bg.png") no-repeat bottom right;
}

.popup__logo {
  width: 136px;
  height: 36px;
}

.popup__title {
  margin-top: 14px;
  font-size: 29px;
  line-height: 31px;
  font-weight: 700;
}

.popup__gift-box {
  position: relative;
  width: 347px;
  margin: 5px 0 0 0;
  font-size: 17px;
  line-height: 120%;
  padding: 5px 15px 5px 10px;
  border-radius: 10px;
  border: 1px solid #E50000;
}
.popup__gift-box span {
  font-weight: 600;
}
.popup__gift-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("../img/icon/icon-gift.svg");
  background-size: contain;
  display: none;
}
.popup__gift-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  background: url("../img/icon/icon-end-of-week.svg");
  background-size: contain;
}

.popup__content {
  display: flex;
  width: 286px;
  height: 100%;
  margin: 14px auto 0 0;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup__form-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

.popup__form-label {
  display: block;
  width: 100%;
  height: 40px;
}
.popup__form-label input {
  width: 100%;
  height: 100%;
  padding-left: 14px;
  border: 1px solid #C2C2C2;
  border-radius: 6px;
}

.popup__form-button {
  width: 100%;
  height: 35px;
  font-size: 13px;
  color: #ffffff;
  background-color: #565656;
  border-radius: 6px;
  cursor: no-drop;
}
.popup__form-button.active {
  background-color: #E50000;
  cursor: pointer;
}

.permission {
  position: relative;
  padding-left: 24px;
  font-size: 10px;
  line-height: 0;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.66);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.permission__label {
  cursor: pointer;
  line-height: 120%;
}

.permission__rules {
  display: inline;
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: rgba(0, 0, 0, 0.66);
}

.permission__checkmark {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  min-width: 15px;
  min-height: 15px;
  margin-right: 15px;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
}

.permission__checkmark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 3px;
  display: none;
}

input[type=checkbox]:checked + .permission__checkmark {
  border: 0;
}

input[type=checkbox]:checked + .permission__checkmark:before {
  display: block;
  background: #E50000 url("../img/icon/icon-check-white.svg") no-repeat center;
  background-size: 65%;
  box-shadow: 0 0 10px 0 rgba(131, 25, 134, 0.33);
}

.crmresult {
  position: relative;
  margin: auto 0;
  padding-top: 80px;
  font-size: 16px;
  line-height: 1.3;
  display: none;
}
.crmresult::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: url("../../img/icon/icon-form_check.svg");
  background-size: contain;
}/*# sourceMappingURL=style.css.map */