@charset "UTF-8";
.pricelist-wrap.classic {
  margin: -15px;
  width: calc(100% + 30px);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pricelist-wrap.classic .pricing-wrap {
  width: 50%;
  padding: 15px;
}
.pricelist-wrap.classic .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.classic .wrap {
  cursor: pointer;
  padding: 50px;
  position: relative;
  border: 1px solid var(--light-grey-color);
  -webkit-transition: border-color 350ms ease;
  -moz-transition: border-color 350ms ease;
  -ms-transition: border-color 350ms ease;
  -o-transition: border-color 350ms ease;
  transition: border-color 350ms ease;
}
.pricelist-wrap.classic .wrap:hover {
  border-color: var(--dark-color);
}
.pricelist-wrap.classic .wrap:hover .image-wrap .image {
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.pricelist-wrap.classic .image-wrap {
  padding-top: calc(100% / 3 * 2);
  position: relative;
  margin-bottom: 45px;
}
.pricelist-wrap.classic .image-wrap .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.classic .image-wrap .title {
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-color);
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 10;
}
.pricelist-wrap.classic .subtitle {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricelist-wrap.classic .list-wrap {
  list-style: none;
  font-size: 17px;
  color: var(--grey-color);
  line-height: 1.7;
  margin-bottom: 30px;
}
.pricelist-wrap.classic .list-wrap li i {
  font-size: 14px;
  color: var(--main-color);
  display: inline-block;
  margin-right: 15px;
}
.pricelist-wrap.classic .price-wrap {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 2px;
  font-family: var(--font2);
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricelist-wrap.classic .input-check-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  padding-top: 5px;
}
.pricelist-wrap.classic .input-check-wrap span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.classic .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.classic .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1199px) {
  .pricelist-wrap.classic .wrap {
    padding: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .pricelist-wrap.classic .pricing-wrap {
    width: calc(100% - 30px);
    max-width: 500px;
    padding: 0;
  }
  .pricelist-wrap.classic .pricing-wrap:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.classic .pricing-wrap:not(:first-of-type) {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.classic .wrap {
    padding: 15px;
  }
  .pricelist-wrap.classic .wrap .image-wrap {
    margin-bottom: 30px;
  }
  .pricelist-wrap.classic .wrap .image-wrap .title {
    left: 50%;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    bottom: 10px;
    font-size: 19px;
    letter-spacing: 1px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .pricelist-wrap.classic .wrap .input-check-wrap span {
    width: 25px;
    height: 25px;
  }
  .pricelist-wrap.classic .wrap .input-check-wrap span::before {
    width: 15px;
    height: 15px;
  }
  .pricelist-wrap.classic .wrap .subtitle {
    font-size: 17px;
    letter-spacing: 1px;
  }
  .pricelist-wrap.classic .wrap .list-wrap {
    margin-bottom: 10px;
  }
  .pricelist-wrap.classic .wrap .price-wrap {
    font-size: 29px;
    margin-bottom: 5px;
  }
}
.pricelist-wrap.creative .wrap {
  max-width: 500px;
}
.pricelist-wrap.creative .pricing-wrap {
  padding: 100px 40px;
  position: relative;
  color: var(--light-color);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.creative .pricing-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.3);
}
.pricelist-wrap.creative .pricing-wrap:hover {
  clip-path: inset(35px 35px 35px 35px);
}
.pricelist-wrap.creative .pricing-wrap * {
  position: relative;
  z-index: 10;
}
.pricelist-wrap.creative .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.creative .title {
  font-size: 29px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 10;
  line-height: 1.5;
}
.pricelist-wrap.creative .text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--light-color);
  margin-top: 40px;
}
.pricelist-wrap.creative .subtitle {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 50px;
}
.pricelist-wrap.creative .list-wrap {
  list-style: none;
  font-size: 17px;
  color: var(--light-color);
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 0;
}
.pricelist-wrap.creative .list-wrap i {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
.pricelist-wrap.creative .price-wrap {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 2px;
  font-family: var(--font2);
  margin-bottom: 50px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pricelist-wrap.creative .price {
  order: 2;
}
.pricelist-wrap.creative .input-check-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  order: 1;
  padding-top: 3px;
  margin-right: 15px;
}
.pricelist-wrap.creative .input-check-wrap span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.creative .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.creative .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1199px) {
  .pricelist-wrap.creative .pricing-wrap {
    padding: 80px 40px;
  }
  .pricelist-wrap.creative .pricing-wrap:hover {
    clip-path: inset(25px 25px 25px 25px);
  }
}
@media only screen and (max-width: 991px) {
  .pricelist-wrap.creative .price-wrap {
    margin-bottom: 40px;
  }
  .pricelist-wrap.creative .title {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .pricelist-wrap.creative .text {
    margin-top: 30px;
  }
  .pricelist-wrap.creative .subtitle {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.creative .subtitle,
.pricelist-wrap.creative .title {
    letter-spacing: 1px;
  }
  .pricelist-wrap.creative .pricing-wrap {
    padding: 50px 40px;
  }
  .pricelist-wrap.creative .pricing-wrap:hover {
    clip-path: inset(15px 15px 15px 15px);
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.creative .title {
    font-size: 21px;
  }
  .pricelist-wrap.creative .text {
    margin-top: 10px;
  }
  .pricelist-wrap.creative .pricing-wrap {
    padding: 35px 5px;
  }
  .pricelist-wrap.creative .pricing-wrap:hover {
    clip-path: inset(15px 5px 15px 5px);
  }
  .pricelist-wrap.creative .input-check-wrap span {
    width: 25px;
    height: 25px;
  }
  .pricelist-wrap.creative .input-check-wrap span::before {
    width: 15px;
    height: 15px;
  }
  .pricelist-wrap.creative .subtitle {
    margin-top: 30px;
  }
  .pricelist-wrap.creative .price-wrap {
    font-size: 29px;
    margin-bottom: 25px;
  }
}
.pricelist-wrap.contact_form {
  background: var(--black-color);
  color: var(--light-color);
  padding: 80px 0;
}
.pricelist-wrap.contact_form .col-12 {
  padding: 0;
}
.pricelist-wrap.contact_form.enable_light {
  background: transparent;
  color: var(--dark-color);
  padding: 0;
}
.pricelist-wrap.contact_form.enable_light .form form input, .pricelist-wrap.contact_form.enable_light .form form textarea {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form.enable_light .form form input:focus {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form.enable_light .form form textarea:focus {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form.enable_light .form form input:active {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form.enable_light .form form textarea:active {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form.enable_light .form form .button-wrap .term-wrap a:hover {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form.enable_light .form form input::-webkit-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form input::-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form input:-ms-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form input:-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form textarea::-webkit-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form textarea::-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form textarea:-ms-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .form form textarea:-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form.enable_light .top-wrap .title {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form .top-wrap {
  text-align: center;
  margin-bottom: 70px;
}
.pricelist-wrap.contact_form .top-wrap .title {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 20px;
}
.pricelist-wrap.contact_form .top-wrap .subtitle {
  font-size: 17px;
  line-height: 1.6;
}
.pricelist-wrap.contact_form .form {
  margin: auto;
  text-align: center;
}
.pricelist-wrap.contact_form .form form {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pricelist-wrap.contact_form .form form .button-wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap {
  padding-right: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: left;
  min-width: calc(100% - 200px);
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap label {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap span {
  width: 16px;
  height: 16px;
  border: 1px solid var(--main-color);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: -2px;
  position: relative;
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap span::before {
  content: "";
  font-family: "Ionicons";
  visibility: hidden;
  color: var(--main-color);
  font-size: 10px;
  position: absolute;
  top: 50%;
  letter-spacing: 0;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap input {
  width: auto;
  margin-bottom: 0;
  margin-top: -4px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap input:checked + span::before {
  visibility: visible;
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap a {
  color: var(--main-color);
  text-decoration: none;
  -webkit-transition: all 450ms ease;
  -moz-transition: all 450ms ease;
  -ms-transition: all 450ms ease;
  -o-transition: all 450ms ease;
  transition: all 450ms ease;
  margin-left: 7px;
}
.pricelist-wrap.contact_form .form form .button-wrap .term-wrap a:hover {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form textarea {
  height: 100px;
}
.pricelist-wrap.contact_form .form form input, .pricelist-wrap.contact_form .form form textarea {
  width: 100%;
  background: transparent;
  color: var(--light-color);
  border: none;
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid var(--grey-color);
  -webkit-transition: border-color 450ms ease;
  -moz-transition: border-color 450ms ease;
  -ms-transition: border-color 450ms ease;
  -o-transition: border-color 450ms ease;
  transition: border-color 450ms ease;
  margin-bottom: 35px;
}
.pricelist-wrap.contact_form .form form input:focus, .pricelist-wrap.contact_form .form form textarea:focus {
  border-color: var(--main-color);
  background: transparent;
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form button {
  cursor: pointer;
}
.pricelist-wrap.contact_form .form form button[disabled] {
  opacity: 0.5;
}
.pricelist-wrap.contact_form .form form input:first-of-type, .pricelist-wrap.contact_form .form form input:nth-of-type(3) {
  width: calc(50% - 15px);
  margin-right: 30px;
}
.pricelist-wrap.contact_form .form form input:nth-of-type(2), .pricelist-wrap.contact_form .form form input:nth-of-type(4) {
  width: calc(50% - 15px);
}
.pricelist-wrap.contact_form .form form input::-webkit-input-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form input::-moz-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form input:-ms-input-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form input:-moz-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form textarea::-webkit-input-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form textarea::-moz-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form textarea:-ms-input-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .form form textarea:-moz-placeholder {
  color: var(--light-color);
}
.pricelist-wrap.contact_form .reflector-send-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricelist-wrap.contact_form .reflector-send-popup.active {
  visibility: visible;
  opacity: 1;
}
.pricelist-wrap.contact_form .reflector-send-popup .content {
  max-width: 500px;
  min-height: 300px;
  background: var(--black-color);
  color: var(--light-color);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px;
  position: absolute;
}
.pricelist-wrap.contact_form .reflector-send-popup .content .pdf-wrap {
  margin-top: 20px;
  display: none;
}
.pricelist-wrap.contact_form .reflector-send-popup .content .close {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 20px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.contact_form .reflector-send-popup .content .close:hover {
  opacity: 0.7;
}
.pricelist-wrap.contact_form .reflector-send-popup .content .close .line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--light-color);
}
.pricelist-wrap.contact_form .reflector-send-popup .content .close .line:first-of-type {
  -webkit-transform: rotate(45deg) translateY(2px);
  -moz-transform: rotate(45deg) translateY(2px);
  -ms-transform: rotate(45deg) translateY(2px);
  -o-transform: rotate(45deg) translateY(2px);
  transform: rotate(45deg) translateY(2px);
}
.pricelist-wrap.contact_form .reflector-send-popup .content .close .line:last-of-type {
  -webkit-transform: rotate(-45deg) translateY(-1px);
  -moz-transform: rotate(-45deg) translateY(-1px);
  -ms-transform: rotate(-45deg) translateY(-1px);
  -o-transform: rotate(-45deg) translateY(-1px);
  transform: rotate(-45deg) translateY(-1px);
}
.pricelist-wrap.contact_form .reflector-send-popup .content .popup-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
  color: var(--main-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 30px;
}
.pricelist-wrap.contact_form .reflector-send-popup .content .popup-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background: currentColor;
  width: 50px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pricelist-wrap.contact_form .reflector-send-popup .content p {
  font-size: 19px;
  width: 100%;
}
.pricelist-wrap.contact_form .price-send-loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricelist-wrap.contact_form .price-send-loader.active {
  opacity: 1;
  visibility: visible;
}
.pricelist-wrap.contact_form .lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.pricelist-wrap.contact_form .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid var(--black-color);
  border-color: var(--black-color) transparent var(--black-color) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 991px) {
  .pricelist-wrap.contact_form {
    padding: 70px 0;
  }
  .pricelist-wrap.contact_form .top-wrap {
    margin-bottom: 60px;
  }
  .pricelist-wrap.contact_form .reflector-send-popup .content .popup-title {
    font-size: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.contact_form {
    padding: 35px 0;
  }
  .pricelist-wrap.contact_form .col-12 {
    padding: 0 15px;
  }
  .pricelist-wrap.contact_form .reflector-send-popup .content {
    padding: 40px;
  }
  .pricelist-wrap.contact_form .reflector-send-popup .content .close {
    top: 25px;
    right: 20px;
  }
  .pricelist-wrap.contact_form .reflector-send-popup .content .popup-title {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .pricelist-wrap.contact_form .reflector-send-popup .content .pdf-wrap {
    margin-top: 10px;
  }
  .pricelist-wrap.contact_form .top-wrap {
    margin-bottom: 35px;
  }
  .pricelist-wrap.contact_form .top-wrap .title {
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.contact_form .reflector-send-popup {
    max-width: calc(100% - 30px);
    min-height: 200px;
  }
  .pricelist-wrap.contact_form .form .button-wrap {
    flex-direction: column;
  }
  .pricelist-wrap.contact_form .form .button-wrap .term-wrap {
    margin-bottom: 25px;
  }
  .pricelist-wrap.contact_form .form form input:first-of-type, .pricelist-wrap.contact_form .form form input:nth-of-type(2), .pricelist-wrap.contact_form .form form input:nth-of-type(3), .pricelist-wrap.contact_form .form form input:nth-of-type(4) {
    width: 100%;
    margin-right: 0;
  }
  .pricelist-wrap.contact_form .title {
    font-size: 21px;
  }
}
.pricelist-wrap.modern {
  margin: -15px;
  width: calc(100% + 30px);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pricelist-wrap.modern .pricing-wrap {
  width: calc(100% / 3);
  padding: 15px;
}
.pricelist-wrap.modern .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.modern .wrap {
  cursor: pointer;
  padding: 30px;
  position: relative;
  border: 1px solid var(--light-grey-color);
  -webkit-transition: border-color 350ms ease;
  -moz-transition: border-color 350ms ease;
  -ms-transition: border-color 350ms ease;
  -o-transition: border-color 350ms ease;
  transition: border-color 350ms ease;
}
.pricelist-wrap.modern .wrap:hover {
  border-color: var(--dark-color);
}
.pricelist-wrap.modern .wrap:hover .image-wrap .image {
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.pricelist-wrap.modern .wrap:hover .price-wrap .price {
  color: var(--main-color);
}
.pricelist-wrap.modern .image-wrap {
  padding-top: calc(100% / 3 * 2);
  position: relative;
  margin-bottom: 30px;
}
.pricelist-wrap.modern .image-wrap .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.modern .image-wrap .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}
.pricelist-wrap.modern .image-wrap .wrap-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 10px;
  text-align: center;
}
.pricelist-wrap.modern .image-wrap .title,
.pricelist-wrap.modern .image-wrap .subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-color);
  z-index: 10;
}
.pricelist-wrap.modern .image-wrap .title {
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.pricelist-wrap.modern .image-wrap .subtitle {
  font-size: 13px;
  margin-bottom: 10px;
}
.pricelist-wrap.modern .list-wrap {
  list-style: none;
  font-size: 17px;
  color: var(--grey-color);
  line-height: 1.7;
  margin-bottom: 15px;
}
.pricelist-wrap.modern .list-wrap li i {
  font-size: 14px;
  color: var(--main-color);
  display: inline-block;
  margin-right: 15px;
}
.pricelist-wrap.modern .price-wrap {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 2px;
  font-family: var(--font2);
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricelist-wrap.modern .price-wrap .price {
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.modern .input-check-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  padding-top: 5px;
}
.pricelist-wrap.modern .input-check-wrap span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.modern .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.modern .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1199px) {
  .pricelist-wrap.modern .image-wrap .title {
    font-size: 21px;
  }
  .pricelist-wrap.modern .image-wrap .subtitle {
    font-size: 12px;
  }
  .pricelist-wrap.modern .wrap {
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .pricelist-wrap.modern .pricing-wrap {
    width: calc(50% - 30px);
    max-width: 500px;
    padding: 0 15px;
  }
  .pricelist-wrap.modern .pricing-wrap:not(:first-of-type):not(:nth-of-type(2)) {
    margin-top: 30px;
  }
  .pricelist-wrap.modern .wrap .image-wrap .title {
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.modern .pricing-wrap {
    width: 100%;
  }
  .pricelist-wrap.modern .pricing-wrap:not(:first-of-type) {
    margin-top: 15px !important;
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.modern .wrap {
    padding: 15px;
  }
  .pricelist-wrap.modern .wrap .image-wrap {
    margin-bottom: 30px;
  }
  .pricelist-wrap.modern .wrap .image-wrap .title {
    letter-spacing: 1px;
  }
  .pricelist-wrap.modern .wrap .input-check-wrap span {
    width: 25px;
    height: 25px;
  }
  .pricelist-wrap.modern .wrap .input-check-wrap span::before {
    width: 15px;
    height: 15px;
  }
  .pricelist-wrap.modern .wrap .subtitle {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .pricelist-wrap.modern .wrap .list-wrap {
    margin-bottom: 10px;
  }
  .pricelist-wrap.modern .wrap .price-wrap {
    font-size: 29px;
    margin-bottom: 5px;
  }
}
.pricelist-wrap.simple .wrap {
  max-width: 500px;
}
.pricelist-wrap.simple .pricing-wrap {
  padding: 100px 40px;
  position: relative;
  color: var(--light-color);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.simple .pricing-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
}
.pricelist-wrap.simple .pricing-wrap:hover {
  clip-path: inset(15px 15px 15px 15px);
}
.pricelist-wrap.simple .pricing-wrap * {
  position: relative;
  z-index: 10;
}
.pricelist-wrap.simple .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.simple .pricing-wrap .row {
  align-items: center;
}
.pricelist-wrap.simple .title {
  font-size: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 10;
  line-height: 1.5;
  max-width: 400px;
}
.pricelist-wrap.simple .text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--light-color);
}
.pricelist-wrap.simple .subtitle {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 50px;
}
.pricelist-wrap.simple .list-wrap {
  list-style: none;
  font-size: 17px;
  color: var(--light-color);
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 0;
}
.pricelist-wrap.simple .list-wrap i {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
.pricelist-wrap.simple .price-wrap {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 2px;
  font-family: var(--font2);
  margin-bottom: 30px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pricelist-wrap.simple .price {
  order: 2;
}
.pricelist-wrap.simple .input-check-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  order: 1;
  padding-top: 3px;
  margin-right: 15px;
}
.pricelist-wrap.simple .input-check-wrap span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.simple .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.simple .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1199px) {
  .pricelist-wrap.simple .title {
    font-size: 29px;
  }
  .pricelist-wrap.simple .pricing-wrap {
    padding: 80px 40px;
  }
  .pricelist-wrap.simple .pricing-wrap:hover {
    clip-path: inset(25px 25px 25px 25px);
  }
}
@media only screen and (max-width: 991px) {
  .pricelist-wrap.simple .pricing-wrap {
    padding: 60px 40px;
  }
  .pricelist-wrap.simple .price-wrap {
    margin-bottom: 40px;
  }
  .pricelist-wrap.simple .title {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .pricelist-wrap.simple .text {
    margin-top: 30px;
  }
  .pricelist-wrap.simple .subtitle {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.simple .subtitle,
.pricelist-wrap.simple .title {
    letter-spacing: 1px;
  }
  .pricelist-wrap.simple .pricing-wrap {
    padding: 50px 40px;
  }
  .pricelist-wrap.simple .pricing-wrap:hover {
    clip-path: inset(15px 15px 15px 15px);
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.simple .title {
    font-size: 21px;
  }
  .pricelist-wrap.simple .text {
    margin-top: 10px;
  }
  .pricelist-wrap.simple .pricing-wrap {
    padding: 35px 5px 40px;
  }
  .pricelist-wrap.simple .pricing-wrap:hover {
    clip-path: inset(15px 5px 15px 5px);
  }
  .pricelist-wrap.simple .input-check-wrap span {
    width: 25px;
    height: 25px;
  }
  .pricelist-wrap.simple .input-check-wrap span::before {
    width: 15px;
    height: 15px;
  }
  .pricelist-wrap.simple .subtitle {
    margin-top: 30px;
  }
  .pricelist-wrap.simple .price-wrap {
    font-size: 29px;
    margin-bottom: 25px;
  }
}
.pricelist-wrap.with_media {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricelist-wrap.with_media .media-wrap {
  padding-top: calc(60% / 4 * 3);
  width: 60%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pricelist-wrap.with_media .media-wrap.enable-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}
.pricelist-wrap.with_media .media-wrap .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  -moz-transform: translate(-50%, -50%) translateZ(0);
  -ms-transform: translate(-50%, -50%) translateZ(0);
  -o-transform: translate(-50%, -50%) translateZ(0);
  transform: translate(-50%, -50%) translateZ(0);
  color: var(--light-color);
  z-index: 10;
  background: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 50%;
  font-size: 35px;
  -webkit-transition: background 450ms ease;
  -moz-transition: background 450ms ease;
  -ms-transition: background 450ms ease;
  -o-transition: background 450ms ease;
  transition: background 450ms ease;
}
.pricelist-wrap.with_media .media-wrap .video-btn i {
  line-height: 1;
  display: inline-block;
  height: 35px;
  margin-left: 6px;
}
.pricelist-wrap.with_media .media-wrap .video-btn:hover {
  background: transparent;
}
.pricelist-wrap.with_media .pricing-wrap {
  width: 40%;
  padding-left: 70px;
  cursor: pointer;
}
.pricelist-wrap.with_media .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.with_media .pricing-wrap .title,
.pricelist-wrap.with_media .pricing-wrap .subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 10;
}
.pricelist-wrap.with_media .pricing-wrap .title {
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.pricelist-wrap.with_media .pricing-wrap .subtitle {
  font-size: 13px;
  margin-bottom: 25px;
}
.pricelist-wrap.with_media .pricing-wrap .list-wrap {
  list-style: none;
  font-size: 17px;
  color: var(--grey-color);
  line-height: 1.7;
  margin-bottom: 0;
}
.pricelist-wrap.with_media .pricing-wrap .list-wrap li i {
  font-size: 14px;
  color: var(--main-color);
  display: inline-block;
  margin-right: 15px;
}
.pricelist-wrap.with_media .pricing-wrap .price-wrap {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 2px;
  font-family: var(--font2);
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.pricelist-wrap.with_media .pricing-wrap .price-wrap .price {
  order: 2;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.with_media .pricing-wrap .input-check-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  order: 1;
  margin-right: 20px;
}
.pricelist-wrap.with_media .pricing-wrap .input-check-wrap span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.with_media .pricing-wrap .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.with_media .pricing-wrap .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 991px) {
  .pricelist-wrap.with_media {
    flex-direction: column;
  }
  .pricelist-wrap.with_media .media-wrap {
    width: 100%;
    padding-top: calc(100% / 4 * 3);
    margin-bottom: 35px;
  }
  .pricelist-wrap.with_media .pricing-wrap {
    width: 100%;
    padding-left: 0;
  }
  .pricelist-wrap.with_media .pricing-wrap .title {
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.with_media .pricing-wrap .title {
    letter-spacing: 1px;
    font-size: 24px;
    margin-bottom: 0;
  }
  .pricelist-wrap.with_media .pricing-wrap .subtitle {
    margin-bottom: 17px;
  }
  .pricelist-wrap.with_media .wrap .price-wrap {
    font-size: 29px;
    margin-bottom: 20px;
  }
  .pricelist-wrap.with_media .wrap .input-check-wrap {
    margin-right: 10px;
  }
  .pricelist-wrap.with_media .wrap .input-check-wrap span {
    width: 25px;
    height: 25px;
  }
  .pricelist-wrap.with_media .wrap .input-check-wrap span::before {
    width: 15px;
    height: 15px;
  }
}
.pricelist-wrap.contact_form_simple .top-wrap {
  text-align: center;
  margin-bottom: 70px;
}
.pricelist-wrap.contact_form_simple .top-wrap .title {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricelist-wrap.contact_form_simple .form {
  margin: auto;
  text-align: center;
}
.pricelist-wrap.contact_form_simple .form form {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap {
  padding-right: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: left;
  min-width: calc(100% - 200px);
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap label {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap span {
  width: 16px;
  height: 16px;
  border: 1px solid var(--main-color);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: -2px;
  position: relative;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap span::before {
  content: "";
  font-family: "Ionicons";
  visibility: hidden;
  color: var(--main-color);
  font-size: 10px;
  position: absolute;
  top: 50%;
  letter-spacing: 0;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap input {
  width: auto;
  margin-bottom: 0;
  margin-top: -4px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap input:checked + span::before {
  visibility: visible;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap a {
  color: var(--main-color);
  text-decoration: none;
  -webkit-transition: all 450ms ease;
  -moz-transition: all 450ms ease;
  -ms-transition: all 450ms ease;
  -o-transition: all 450ms ease;
  transition: all 450ms ease;
  margin-left: 7px;
}
.pricelist-wrap.contact_form_simple .form form .button-wrap .term-wrap a:hover {
  color: var(--dark-color);
}
.pricelist-wrap.contact_form_simple .form form textarea {
  height: 100px;
}
.pricelist-wrap.contact_form_simple .form form input, .pricelist-wrap.contact_form_simple .form form textarea {
  width: 100%;
  background: transparent;
  color: var(--dark-color);
  border: none;
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid var(--grey-color);
  -webkit-transition: border-color 450ms ease;
  -moz-transition: border-color 450ms ease;
  -ms-transition: border-color 450ms ease;
  -o-transition: border-color 450ms ease;
  transition: border-color 450ms ease;
  margin-bottom: 35px;
}
.pricelist-wrap.contact_form_simple .form form input:focus, .pricelist-wrap.contact_form_simple .form form textarea:focus {
  border-color: var(--main-color);
  background: transparent;
  color: var(--dark-color);
}
.pricelist-wrap.contact_form_simple .form form button {
  cursor: pointer;
}
.pricelist-wrap.contact_form_simple .form form button[disabled] {
  opacity: 0.5;
}
.pricelist-wrap.contact_form_simple .form form input:first-of-type {
  width: calc(50% - 15px);
  margin-right: 30px;
}
.pricelist-wrap.contact_form_simple .form form input:nth-of-type(2) {
  width: calc(50% - 15px);
}
.pricelist-wrap.contact_form_simple .form form input::-webkit-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form input::-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form input:-ms-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form input:-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form textarea::-webkit-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form textarea::-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form textarea:-ms-input-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .form form textarea:-moz-placeholder {
  color: var(--grey-color);
}
.pricelist-wrap.contact_form_simple .reflector-send-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup.active {
  visibility: visible;
  opacity: 1;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content {
  max-width: 500px;
  min-height: 300px;
  background: var(--black-color);
  color: var(--light-color);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px;
  position: absolute;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .pdf-wrap {
  margin-top: 20px;
  display: none;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .close {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 20px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .close:hover {
  opacity: 0.7;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .close .line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--light-color);
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .close .line:first-of-type {
  -webkit-transform: rotate(45deg) translateY(2px);
  -moz-transform: rotate(45deg) translateY(2px);
  -ms-transform: rotate(45deg) translateY(2px);
  -o-transform: rotate(45deg) translateY(2px);
  transform: rotate(45deg) translateY(2px);
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .close .line:last-of-type {
  -webkit-transform: rotate(-45deg) translateY(-1px);
  -moz-transform: rotate(-45deg) translateY(-1px);
  -ms-transform: rotate(-45deg) translateY(-1px);
  -o-transform: rotate(-45deg) translateY(-1px);
  transform: rotate(-45deg) translateY(-1px);
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .popup-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
  color: var(--main-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 30px;
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content .popup-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background: currentColor;
  width: 50px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pricelist-wrap.contact_form_simple .reflector-send-popup .content p {
  font-size: 19px;
  width: 100%;
}
.pricelist-wrap.contact_form_simple .price-send-loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricelist-wrap.contact_form_simple .price-send-loader.active {
  opacity: 1;
  visibility: visible;
}
.pricelist-wrap.contact_form_simple .lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.pricelist-wrap.contact_form_simple .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid var(--black-color);
  border-color: var(--black-color) transparent var(--black-color) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 991px) {
  .pricelist-wrap.contact_form_simple .reflector-send-popup .content .popup-title {
    font-size: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.contact_form_simple .reflector-send-popup .content {
    padding: 40px;
  }
  .pricelist-wrap.contact_form_simple .reflector-send-popup .content .close {
    top: 25px;
    right: 20px;
  }
  .pricelist-wrap.contact_form_simple .reflector-send-popup .content .popup-title {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .pricelist-wrap.contact_form_simple .reflector-send-popup .content .pdf-wrap {
    margin-top: 10px;
  }
  .pricelist-wrap.contact_form_simple .top-wrap {
    margin-bottom: 35px;
  }
  .pricelist-wrap.contact_form_simple .top-wrap .title {
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.contact_form_simple .reflector-send-popup {
    max-width: calc(100% - 30px);
    min-height: 200px;
  }
  .pricelist-wrap.contact_form_simple .form .button-wrap {
    flex-direction: column;
  }
  .pricelist-wrap.contact_form_simple .form .button-wrap .term-wrap {
    margin-bottom: 25px;
  }
  .pricelist-wrap.contact_form_simple .form form input:first-of-type, .pricelist-wrap.contact_form_simple .form form input:nth-of-type(2) {
    width: 100%;
    margin-right: 0;
  }
  .pricelist-wrap.contact_form_simple .title {
    font-size: 21px;
    letter-spacing: 1px;
  }
}
.pricelist-wrap.img_bg {
  margin: -15px;
  width: calc(100% + 30px);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.pricelist-wrap.img_bg .pricing-wrap {
  position: relative;
  width: calc(100% / 3);
  padding: 15px;
  clip-path: inset(15px);
}
.pricelist-wrap.img_bg .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.img_bg .pricing-wrap:hover .wrap {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.pricelist-wrap.img_bg .content {
  position: relative;
  z-index: 10;
  padding: 50px 30px;
}
.pricelist-wrap.img_bg .wrap {
  cursor: pointer;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 550ms ease;
  -moz-transition: all 550ms ease;
  -ms-transition: all 550ms ease;
  -o-transition: all 550ms ease;
  transition: all 550ms ease;
}
.pricelist-wrap.img_bg .wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}
.pricelist-wrap.img_bg .title,
.pricelist-wrap.img_bg .subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-color);
  z-index: 10;
}
.pricelist-wrap.img_bg .title {
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.pricelist-wrap.img_bg .subtitle {
  font-size: 13px;
  margin-bottom: 15px;
}
.pricelist-wrap.img_bg .list-wrap {
  list-style: none;
  font-size: 17px;
  color: var(--light-color);
  line-height: 1.7;
  margin-bottom: 35px;
}
.pricelist-wrap.img_bg .list-wrap li i {
  font-size: 14px;
  color: var(--main-color);
  display: inline-block;
  margin-right: 15px;
}
.pricelist-wrap.img_bg .price-wrap {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 2px;
  font-family: var(--font2);
  color: var(--light-color);
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricelist-wrap.img_bg .price-wrap .price {
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.img_bg .input-check-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  padding-top: 5px;
}
.pricelist-wrap.img_bg .input-check-wrap span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.img_bg .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.img_bg .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1199px) {
  .pricelist-wrap.img_bg .title {
    font-size: 21px;
    margin-bottom: 30px;
  }
  .pricelist-wrap.img_bg .subtitle {
    font-size: 12px;
  }
  .pricelist-wrap.img_bg .list-wrap {
    margin-bottom: 20px;
  }
  .pricelist-wrap.img_bg .content {
    padding: 40px 30px 35px;
  }
}
@media only screen and (max-width: 991px) {
  .pricelist-wrap.img_bg .pricing-wrap {
    width: calc(50% - 30px);
    max-width: 500px;
  }
  .pricelist-wrap.img_bg .title {
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.img_bg .pricing-wrap {
    width: 100%;
  }
  .pricelist-wrap.img_bg .pricing-wrap:not(:first-of-type) {
    margin-top: -15px;
  }
}
@media only screen and (max-width: 600px) {
  .pricelist-wrap.img_bg .wrap .title {
    letter-spacing: 1px;
  }
  .pricelist-wrap.img_bg .wrap .input-check-wrap span {
    width: 25px;
    height: 25px;
  }
  .pricelist-wrap.img_bg .wrap .input-check-wrap span::before {
    width: 15px;
    height: 15px;
  }
  .pricelist-wrap.img_bg .wrap .subtitle {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .pricelist-wrap.img_bg .wrap .list-wrap {
    margin-bottom: 10px;
  }
  .pricelist-wrap.img_bg .wrap .price-wrap {
    font-size: 29px;
    margin-bottom: 5px;
  }
}
.pricelist-wrap.simple_list::before, .pricelist-wrap.simple_list::after {
  content: "";
  display: table;
  clear: both;
}
.pricelist-wrap.simple_list .table-price-wrap {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.pricelist-wrap.simple_list .title {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-color);
}
.pricelist-wrap.simple_list .cell-1 {
  width: calc(100% - 205px);
}
.pricelist-wrap.simple_list .cell-3 {
  text-align: right;
  width: 70px;
}
.pricelist-wrap.simple_list .top-wrap {
  width: calc(50% - 20px);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-grey-color);
}
.pricelist-wrap.simple_list .top-wrap:first-of-type {
  margin-right: 40px;
  float: left;
}
.pricelist-wrap.simple_list .top-wrap .cell-2 {
  width: 135px;
  text-align: right;
}
.pricelist-wrap.simple_list .pricing-wrap {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 20px);
  margin-bottom: 20px;
  height: 100%;
  cursor: pointer;
}
.pricelist-wrap.simple_list .pricing-wrap.active .input-check-wrap span::before {
  opacity: 1;
}
.pricelist-wrap.simple_list .price-wrap {
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 2px;
  font-family: var(--font2);
  width: 205px;
  text-align: right;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricelist-wrap.simple_list .price-wrap .price {
  width: calc(100% - 70px);
  margin-top: -10px;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.pricelist-wrap.simple_list .input-check-wrap {
  position: relative;
  width: 26px;
  height: 26px;
}
.pricelist-wrap.simple_list .input-check-wrap span {
  width: 26px;
  height: 26px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.pricelist-wrap.simple_list .input-check-wrap span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 350ms ease;
  -moz-transition: opacity 350ms ease;
  -ms-transition: opacity 350ms ease;
  -o-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  z-index: 1;
}
.pricelist-wrap.simple_list .input-check-wrap input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 991px) {
  .pricelist-wrap.simple_list {
    padding: 0 30px;
  }
  .pricelist-wrap.simple_list .top-wrap {
    width: 100%;
    float: none !important;
    margin-right: 0 !important;
  }
  .pricelist-wrap.simple_list .top-wrap:nth-of-type(2) {
    display: none;
  }
  .pricelist-wrap.simple_list .pricing-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .pricelist-wrap.simple_list .price-wrap {
    font-size: 26px;
  }
  .pricelist-wrap.simple_list .pricing-wrap {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .pricelist-wrap.simple_list {
    padding: 0 15px;
  }
  .pricelist-wrap.simple_list .top-wrap .cell-3 {
    display: none;
  }
  .pricelist-wrap.simple_list .cell-1 {
    width: calc(100% - 100px);
  }
  .pricelist-wrap.simple_list .price-wrap {
    width: 100px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .pricelist-wrap.simple_list .price-wrap .price {
    width: 100%;
  }
  .pricelist-wrap.simple_list .input-check-wrap span {
    width: 20px;
    height: 20px;
  }
  .pricelist-wrap.simple_list .input-check-wrap span::before {
    width: 10px;
    height: 10px;
  }
}
.main-wrapper.active-wrapper {
  position: relative;
  z-index: 9999;
}

/*# sourceMappingURL=pricelist.css.map */
