@charset "UTF-8";
/* roboto-regular - cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/roboto-v20-cyrillic-regular.136baf04.eot");
  /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"), url("fonts/roboto-v20-cyrillic-regular.136baf04.eot?#iefix") format("embedded-opentype"), url("fonts/roboto-v20-cyrillic-regular.5beddc4f.woff2") format("woff2"), url("fonts/roboto-v20-cyrillic-regular.db6a4a56.woff") format("woff");
  /* Legacy iOS */
}
/* roboto-900 - cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/roboto-v20-cyrillic-900.a9c6615b.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Black"), local("Roboto-Black"), url("fonts/roboto-v20-cyrillic-900.629c71d3.woff2") format("woff2"), url("fonts/roboto-v20-cyrillic-900.35287862.woff") format("woff");
  /* Legacy iOS */
}
/* roboto-500 - cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/roboto-v20-cyrillic-500.dce59d11.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/roboto-v20-cyrillic-500.dce59d11.eot?#iefix") format("embedded-opentype"), url("fonts/roboto-v20-cyrillic-500.539aa768.woff2") format("woff2"), url("fonts/roboto-v20-cyrillic-500.81dd0a01.woff") format("woff");
  /* Legacy iOS */
}

* {
  box-sizing: border-box;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  /* Support for all WebKit browsers. */
  /* -webkit-font-smoothing: antialiased; */
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  /* -moz-osx-font-smoothing: grayscale; */
  /* Support for IE. */
  font-feature-settings: "liga";
}


body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffe659;
}

/* HELPERS */
.list-reset {
  margin: 0;
  padding: 0;
  list-style:none;
}

.container {
  width: 100%;
  max-width: 976px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 25px;
  font-size: 1rem;
  color: #FFF;
  border: 2px solid transparent;
  border-radius: 5px;
  background: linear-gradient(25deg,#856891 ,#6E447F );
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out, ;
}

.btn:hover {
  border-color: #55156E;
  box-shadow: 0 0 3px 1px #777;
}

.btn:focus-visible {
  outline: 2px solid #55156E;
  outline-offset: 3px;
  
}
.btn:active {
  border-color: #55156E;
  box-shadow: inset 2px 2px 6px 1px #333;
}

.btn-remove {
  width: fit-content;
  background: red;
  font-size: 12px;
  padding: 5px 10px;
}

.form__box {
  display: block;
  min-width: 100%;
  margin-bottom: 2rem;
}


.box__title {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.box__text {
  margin: 0;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1rem;
}

.box__icon {
  display: flex;
  width: 25px;
  height: 25px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.header__title {
  margin: 0;
  padding: 1em 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2rem;
  text-align: center;
}

.field-hide {
  position: absolute;
  transform: scale(0);
}

.form__field {
  display: inline-flex;
  justify-content: center;
  text-align: left;
  min-width: 100%;
  font-size: 1rem;
  cursor: text;
  padding: 0.8rem 1rem;
  border: 2px solid #999;
  background: #eee;
  border-radius: 10px;
  outline: none;
  opacity: 1;
  transition: opacity 0.4s, background 0.3s, box-shadow 0.2s;
}

.form__field:hover {
  box-shadow: 0 0 3px 0 #333;
}

.form__field:focus {
  outline: none;
}

.form__field:focus-visible {
  background: #FFF;
}

.just-validate-error-field {
  border: 4px solid red;
  background-color: rgb(243, 191, 191) 
}

.file__label {
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
}

.box__file-desc {
  display: block;
  min-width: 100%;
  padding-right: 0.3rem;
}

.box__file-desc--hide {
  display: none;
}

.file__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100%;
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  background: #dbd800;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 0.3rem 1rem;
  transform: scale(1);
  transition: color 0.3s, background 0.3s, transform 0.3s;
}

.file__item:hover {
  color: #FFF;
  background: #4960AD;
}

.file__iconfile {
  float: left;
  margin-right: 10px;
}

.file__file-name {
  font-size: 0.7rem;
  float: left;
}

/* .file__btn-remove-file {
  vertical-align: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: transfrom 0.3s;
}

.file__btn-remove-file {
  transform: scale(1.2);
} */

.file__title-btn {
  margin-left: 10px;
  line-height: 1rem;
}

.file__icon {
  font-family: "Font Awesome", sans-serif;
  width: 1rem;
  height: 1rem;
}

.select-list__option {
  font-size: 1rem;
}

.select-list__wrap {
  min-width: 100%;
  min-height: auto;
  display: block;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  transition: border 0.4s;
  font-family: "Font Awesome", sans-serif;
  background: none;
}

.select-list__wrap:hover {
  border-color: rgba(0, 0, 0, 0.75);
}

.select-list__wrap:after {
  content: "";
  position: absolute;
  top: 0.1rem;
  right: 0rem;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  pointer-events: none;
}

/* processing */
.processing {
  display: flex;
  flex-direction: column;
}

.processing__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 25px;
  row-gap: 25px;
  width: 100%;
  max-width: 100%;
}

.processing__label {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.processing__label--active {
  box-shadow: 0 0 15px 0 #333;
}

.processing__input {
  position: absolute;
  margin: 0;
  border: none; 
    transform: scale(0); 

}

.processing__input:checked ~ .processing__desc {
  background-color: #133b2b;
  color: #fff;
}

.processing__img {
  border-radius: 15px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: none;
}

.processing__desc {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  bottom: 0;
  padding: 10px 25px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align:center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.social__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__item:not(:last-child) {
  margin-right: 10px;
}

.social__link {
  display: flex;
  width: 35px;
  height: 35px;
  transform: scale(1);
  transition: transform 0.3s;
}

.social__link svg path {
  fill: #6E447F;
  transition: fill 0.3s;
}

.social__link:hover {
  transform: scale(1.1);
}

.social__link:hover svg path{
  fill: #182C70;
}



.social__item:not(:last-child) {
  margin-right: 10px;
}


/* css checkbox-buttons */
.checkbox__input {
  display: none;
}

.checkbox__item {
  padding: 0.3rem 0;
}

.checkbox__label {
  display: flex;
  cursor: pointer;
}

.checkbox__text {
  position: relative;
  display: flex;
  align-items: center;
  color: black;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.checkbox__text::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #333;
  border-radius: 3px;
}

.checkbox__text::after {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 39%;
  left: 3px;
  width: 5px;
  height: 12px;
  margin-right: 10px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg) translateY(-50%) scale(0);
  transition: transform 0.2s;
}

.checkbox__input:checked ~ .checkbox__text::after {
  transform: rotate(45deg) translateY(-50%) scale(1);
}
/* end css checkbox-buttons */

.text-field {
  min-width: 100%;
  display: flex;
}
.text-field__input {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1rem;
  display: inline-flex;
  justify-content: center;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  padding: 0.8rem;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  transition: border 0.4s;
}
.text-field__input:hover {
  border-color: rgba(0, 0, 0, 0.75);
}
.text-field__input:focus {
  background: #fffed8;
}

.city {
  display: flex;
}

.city__input {
  text-align: left;
  cursor: text;
}

.textarea__wrap {
  display: flex;
  margin-top: 1rem;
}
.textarea__input {
  width: 100%;
  font-family: Roboto, Helvetica, Verdana, Roboto, sans-serif;
  font-size: 1rem;
  padding: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  transition: border 0.4s;
}
.textarea__input:hover {
  border-color: rgba(0, 0, 0, 0.75);
}
.textarea__input:focus {
  background: #fffed8;
}

.button__wrap-btn {
  display: flex;
  min-width: 100%;
}

.button__btn {
  width: 100%;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  padding: 0.8rem 1rem;
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  background: none;
  transition: border 0.5s;
  cursor: pointer;
}
.button__btn:hover {
  border: 2px solid black;
}
.button__btn:active {
  box-shadow: inset 0rem 0rem 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
  opacity: 0.8;
}

.button-link__wrap {
  width: 100%;
}

.button-link__btn {
  width: 100%;
  padding: 0.3rem;
  background: linear-gradient(yellow, #fffd98, yellow);
  outline: none;
  font-weight: bold;
}

.btn-socials__wrap {
  display: inline-flex;
  justify-content: center;
  min-width: 100%;
}
.btn-socials__btn {
  font-family: "Font Awesome", sans-serif;
  font-size: 1.2rem;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 1.5rem;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  text-decoration: none;
}
.btn-socials__btn:hover {
  border-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0rem 0rem 0.3rem 0rem rgba(0, 0, 0, 0.5);
}
.btn-socials__btn:active {
  border-color: rgba(0, 0, 0, 0.75);
  box-shadow: inset 0rem 0rem 0.3rem 0.1rem rgba(0, 0, 0, 0.25);
  opacity: 0.8;
}
.btn-socials__btn-ok:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}
.btn-socials__btn-vk:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}
.btn-socials__btn-ig:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}









/**
 * Modal
 */

.modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background:rgba(0, 0, 0, 0.5);
  transform: scale(0);
  visibility: hidden;
  transition: transform 0.3s, visibility 0.3s;
}

.modal--active {
  visibility: visible;
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1.5rem;
  height: 1.5rem;
  fill: red;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s;
}

.modal__close:hover {
  transform: scale(1.2);
}

.modal__container {
  position: relative;
  display: flex;
  align-items:center;
  width:100%;
  max-width: 300px;
  padding: 1rem;
  padding-top: 2rem;
  border-radius: 5px;
  background-color: #FFF;
}

.modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal__content svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.modal__title {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
}

.modal__text {
  text-align: center;
  color: #333;
}

/**
 * Mobile styling
 */
@media (max-width: 39.9375em) {
  h1 {
    font-size: 1rem;
  }
}


/**
 * Mobile styling
 */
@media (max-width: 39.9375em) {
  h1 {
    font-size: 1rem;
  }
}

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


.price {
  min-width: 100%;
  position: sticky;
  bottom: 0;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  padding: 0.2rem;
  pointer-events: none;
}
.price__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 1rem;
  min-width: 40%;
  border: 3px dashed rgba(0, 0, 0, 0.75);
  border-radius: 3rem;
  background: #ffe659;
  box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.75);
}
.price__desc {
  font-family: Roboto, Helvetica, Verdana, Roboto, sans-serif;
  font-size: 0.4rem;
  margin-top: 0.1rem;
}
.price__price {
  font-family: Roboto, Helvetica, Verdana, Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}
.price__icon-r {
  font-family: "Font Awesome", sans-serif;
  font-size: 0.9rem;
  margin-left: 3px;
  margin-right: 1rem;
}
.price__icon-r:after {
  content: "";
}
.price__inner {
  display: flex;
  flex-direction: column;
}
.price__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
}
.price__delivery-icon {
  padding-left: 1rem;
  font-size: 1.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
.price__delivery {
  font-size: 0.5rem;
  padding: 0.1rem;
  padding-left: 0.2rem;
}

.select-people {
  height: 7rem;
  opacity: 1;
  transition: all 0.4s;
  margin-bottom: 0.5rem;
}
.select-people--hide {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.input--error {
  border: 2px solid red;
  box-shadow: 0 0 0.8rem red;
  background: #ffc7c7ea;
}
.input--error:focus {
  background: #fffed8;
}

.footer {
  padding: 25px;
}


.loader {
  width: 100%;
  height: 4.8px;
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  width: 0;
  height: 4.8px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  animation: animFw 10s linear infinite;
}

@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


@media (min-width: 1221px) {
  html {
    font-size: 1.5rem;
  }
}
@media  (max-width: 1221px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 988px) {
  html {
    font-size: 16px;
  }

  .processing__list {
    grid-template-columns: repeat(4,1fr);
  }
}
@media  (max-width: 600px) {
  html {
    font-size: 16px;
  }
  .processing__list {
    grid-template-columns: repeat(2,1fr);
    row-gap: 10px;
    column-gap: 10px;
  }

}
@media  (max-width: 450px) {
  html {
    font-size: 16px;
  }
  
}

/*# sourceMappingURL=/art22.5050dc49.css.map */