html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  list-style: none;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
}


* {
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

.lightbox {
  padding: 0;
  overflow: auto;
}

.lb_container {
  margin: 170px auto;
  padding: 0 30px 40px;
  position: relative;
}
@media (max-width: 1440px) {
  .lb_container {
    margin: 100px auto;
  }
}
@media (max-width: 980px) {
  .lb_container {
    padding: 0 20px 40px;
  }
}

.title_lb {
  margin-top: 125px;
}
.title_lb:before {
  background-image: url(../images/present_box_lb.svg);
  width: 59px;
  height: 79px;
}

.close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  top: -25px;
  right: -25px;
  display: inline-block;
  border-radius: 50%;
  background-color: #EF4B57;
  cursor: pointer;
}
@media (max-width: 980px) {
  .close_btn {
    transform: scale(0.75);
  }
}
.close_btn:before, .close_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 5px;
  background-color: white;
  transform-origin: center;
  border-radius: 10px;
}
.close_btn:before {
  transform: translate(-50%, -50%) rotate(135deg);
}
.close_btn:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form_group {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}
.form_group label {
  width: 100%;
  display: block;
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 2;
  font-family: "Inter", sans-serif;
}
@media (max-width: 980px) {
  .form_group label {
    font-size: 16px;
  }
}
.form_group input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14.5px 16px;
  font-size: 18px;
  background-color: #f6f6f6;
  border: 1px solid #cfc8c8;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
@media (max-width: 980px) {
  .form_group input {
    padding: 12px;
    font-size: 16px;
  }
}
.form_group input:-webkit-input-placeholder {
  color: #bcbec0;
  font-size: 18px;
}
@media (max-width: 980px) {
  .form_group input:-webkit-input-placeholder {
    font-size: 14px;
  }
}
.form_group .remind {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 2.5;
  color: #faeb00;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
@media (max-width: 980px) {
  .form_group .remind {
    top: 4px;
    line-height: 1.5;
  }
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid white;
  box-sizing: border-box;
  border-radius: 5px;
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.form_checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  top: 3px;
}
@media (max-width: 980px) {
  .form_checkbox {
    top: 2px;
  }
}
.form_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 0;
  top: 0;
  left: 0;
  box-sizing: border-box;
  line-height: unset;
  display: inline-block;
  border: unset;
  border-radius: unset;
  margin: 0;
  z-index: 2;
}
.form_checkbox input:checked ~ .checkmark:after {
  display: block;
}
.form_checkbox .checkmark::after {
  left: 1px;
  top: -2px;
  width: 24px;
  height: 18px;
  background-image: url(../images/checked.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.form_group--checkbox {
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form_group--checkbox p {
  color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 980px) {
  .form_group--checkbox p {
    font-size: 16px;
  }
}
.form_group--checkbox a {
  color: #faeb00;
  border-bottom: 1px solid #faeb00;
}

.send_btn {
  max-width: 307px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  position: relative;
  transition: all 0.2s linear;
  background-color: #fff;
  padding: 12.5px;
  border-radius: 8px;
  border: 2px solid #EF4B57;
}
@media (max-width: 980px) {
  .send_btn {
    max-width: 250px;
  }
}
.send_btn:hover {
  background-color: #faeb00;
  border-color: #faeb00;
}
.send_btn:hover p {
  color: black;
}
.send_btn:hover p:before {
  background-image: url(../images/present_black.svg);
}
.send_btn:active {
  background-color: #EF4B57;
  border-color: #EF4B57;
}
.send_btn:active p {
  color: white;
}
.send_btn:active p::before {
  background-image: url(../images/present_white.svg);
}
.send_btn p {
  font-size: 20px;
  color: #EF4B57;
  text-align: center;
  width: unset;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1px;
  transform: translateX(15px);
  position: relative;
}
@media (max-width: 980px) {
  .send_btn p {
    font-size: 16px;
  }
}
.send_btn p:before {
  content: "";
  position: absolute;
  background-image: url(../images/present_red.svg);
  width: 24px;
  height: 24px;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}