/* GENERAL */
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
html {
  font-size: 100%;
}
body {
  color: #000;
  font-family: "futura-pt";
  font-size: calc(9px + 0.47vw);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.025em;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
}
h1,
h2,
h3 {
  color: #4f1b63;
}
h1 {
  font-family: "banjax";
  font-weight: 700;
  font-size: calc(1.8125rem + 1.51vw);
  line-height: 1.03;
  letter-spacing: 0;
  margin: 0.56em 0;
}
h2 {
  font-family: "banjax";
  font-weight: 700;
  font-size: calc(1.125rem + 1.04vw);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0.75em 0;
}
h3 {
  font-size: calc(1rem + 0.73vw);
  line-height: 1.05;
  font-weight: 500;
  margin: 0.5em 0;
}
h4,
.h4 {
  font-size: calc(1rem + 0.416vw);
  font-weight: 500;
  margin: 1.45em 0;
}
b,
strong {
  font-weight: 700;
}
a,
a:hover,
a:focus {
  color: #4f1b63;
  text-decoration: none;
}
a:not([class]),
a[class="ui-link"] {
  color: #4f1b63;
  box-shadow: inset 0 -1px 0 #4f1b63;
  transition: box-shadow 0.1s ease-in-out;
}
a:not([class]):hover,
a[class="ui-link"]:hover {
  box-shadow: inset 0 -1px 0 transparent;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
p,
ul:not([class]),
ol:not([class]),
table:not([class]),
.table-wrapper {
  margin: 1.11em 0;
}
ul:not([class]),
ol:not([class]) {
  padding-left: 1.6em;
}
ul:not([class]) li {
  padding-left: 1.1em;
  position: relative;
  margin: 0.5em 0;
}
ul:not([class]) li:first-child,
ol:not([class]) li:first-child {
  margin-top: 0;
}
ul:not([class]) li:last-child,
ol:not([class]) li:last-child {
  margin-bottom: 0;
}
ul:not([class]) li:before {
  content: "";
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
  background: #4f1b63;
  position: absolute;
  left: 0;
  top: 0.5em;
}
ol:not([class]) li {
  position: relative;
  counter-increment: ol;
  margin: 0.5em 0;
}
ol:not([class]) ol {
  counter-reset: ol;
  margin: 0 0 0 1.67em;
}
ol:not([class]) li:before {
  content: counter(ol) ".";
  color: #4f1b63;
  font-weight: 600;
  display: inline-block;
  min-width: 1em;
  padding-right: 0.55em;
}
ol:not([class]) ol li:before {
  content: counters(ol, ".") ". ";
}
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}
input,
textarea {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}
.table-wrapper {
  max-width: 100%;
  overflow: auto;
}
.table-wrapper table {
  margin: 0;
}
table {
  border-collapse: collapse;
  width: 100% !important;
}
table th,
table td {
  padding: 0.5em 1.6em;
}
table th {
  color: #4f1b63;
  font-weight: inherit;
  text-align: left;
  border-top: 2px solid #d8d8d8;
  border-bottom: 2px solid #4f1b63;
}
table td {
  border-bottom: 2px solid #d8d8d8;
}
table td:not(:last-child) {
  border-right: 2px solid #d8d8d8;
}
table th:last-child,
table td:last-child {
  text-align: right;
}
.form_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.extra_form .order-btn:last-child {
  margin-top: 20px;
}
.extra_form .form_field {
  z-index: 50;
}
.form_field {
  width: calc(50% - 1rem);
  margin-top: 1rem;
  position: relative;
}
.form_field.large {
  width: 100%;
}
.form_field.search_address {
  z-index: 52;
}
.form_field.search_address + .search_address {
  z-index: 51;
}
.form_field:not(.radio):not(.checkbox) label:not(.radio-btn) {
  color: #4f1b63;
  display: block;
  width: 100%;
  margin-bottom: 0.55em;
}
.form_field input {
  width: 100%;
  height: 2.7em;
  border: 2px solid #4f1b63;
  padding: 0 0.83em;
  transition: border-color 0.1s ease-in-out;
}
.form_field.with-indicator:after {
  content: "";
  display: none;
  width: 1.67em;
  height: 1.67em;
  background-color: #4f1b63;
  background-image: url(/assets/check.svg);
  background-position: center;
  background-size: auto 35%;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 0.5em;
  transition: all 0.1s ease-in-out;
  top: 2.4em;
}
.form_error {
  color: red;
  font-size: 0.8em;
  margin-top: 0.4em;
  display: flex;
}
.form_field.with-indicator.success:after {
  display: block;
}
.form_field.with-indicator.success:after {
  display: block;
}
.form_field.with-indicator.error:after {
  display: block;
  background-color: #85fd5e;
  background-image: url(/assets/close.svg);
}
.form_field textarea {
  width: 100%;
  border: 2px solid #4f1b63;
  padding: 0.83em;
  resize: none;
  transition: border-color 0.1s ease-in-out;
}
.form_field input:focus,
.form_field textarea:focus {
  border-color: #85fd5e;
}
.form_field.radio,
.form_field.checkbox {
  position: relative;
  display: inline-block;
}
.form_field.radio label,
.form_field.checkbox label {
  color: #4f1b63;
  display: inline-flex;
  align-items: center;
  margin-right: 1.4em;
  position: relative;
}
.form_field.radio input,
.form_field.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form_field.radio span,
.form_field.checkbox span {
  display: block;
  width: 1.6em;
  height: 1.6em;
  background-position: center;
  background-size: auto 35%;
  background-repeat: no-repeat;
  border: 2px solid #4f1b63;
  border-radius: 50%;
  margin-right: 1.1em;
  flex-shrink: 0;
}
.form_field.radio input:checked + span,
.form_field.checkbox input:checked + span {
  background-color: #4f1b63;
  background-image: url(/assets/check.svg);
}
.form_field label a {
  position: relative;
  z-index: 1;
}
.form_field.error input,
.form_field.error input + span {
  border: 2px solid red;
}
.form_submit {
  color: #85fd5e;
  line-height: 1.25;
  text-align: center;
  display: inline-block;
  background: #4f1b63;
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
  margin-top: 1.6em;
  position: relative;
  z-index: 1;
}
.form_submit:hover {
  color: #4f1b63;
}
.form_submit:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #85fd5e;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.2s ease-in-out;
}
.form_submit:hover:before {
  width: 100%;
}
.form_submit input {
  padding: 0.5em 2.5em 0.5em 1.875em;
}
.form_submit:after {
  content: "";
  display: block;
  width: 0.39em;
  height: 0.83em;
  background-image: url(/assets/arrow-right-green.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 1.2em;
  bottom: 0;
  margin: auto;
}
.form_submit:hover:after {
  background-image: url(/assets/arrow-right-purple.svg);
}
.form_area .form_error,
.form_field_error {
  display: none;
}
.form_field_with_errors label {
  color: #ec0000 !important;
}
.form_field_with_errors input,
.form_field_with_errors textarea {
  border-color: #ec0000;
}
.radio-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.radio-btn {
  display: block;
  cursor: pointer;
  position: relative;
}
.radio-wrapper .radio-btn {
  width: calc(80% / 5);
  margin: 0.625rem 0;
}
.radio-btn input {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.radio-btn .indicator {
  display: block;
  background-image: url(/assets/package.svg);
  background-position: center;
  background-size: auto 55%;
  background-repeat: no-repeat;
  border: 2px solid #e5e5e5;
  position: relative;
  padding-top: calc(100% - 4px);
  transition: border 0.1s ease-in-out;
}
.package-info .type .icon.size_1,
.size_1 .indicator {
  background-image: url(/assets/Bentte_icons-07.svg);
  background-size: 90%;
}
.package-info .type .icon.size_2,
.size_2 .indicator {
  background-image: url(/assets/Bentte_icons-08.svg);
  background-size: 90%;
}
.package-info .type .icon.size_3,
.size_3 .indicator {
  background-image: url(/assets/Bentte_icons-09.svg);
  background-size: 90%;
}
.package-info .type .icon.size_4,
.size_4 .indicator {
  background-image: url(/assets/Bentte_icons-10.svg);
  background-size: 90%;
}
.package-info .type .icon.size_5,
.size_5 .indicator {
  background-image: url(/assets/Bentte_icons-17.svg);
  background-size: 90%;
}
.package-info .type .icon.size_6,
.size_6 .indicator {
  background-image: url(/assets/Bentte_icons-18.svg);
  background-size: 90%;
}

.radio-btn .indicator:after {
  content: "";
  display: block;
  width: 45%;
  height: 45%;
  background-color: #4f1b63;
  background-image: url(/assets/check.svg);
  background-position: center;
  background-size: auto 35%;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  margin: auto;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.radio-btn input:checked + .indicator {
  border: 2px solid #4f1b63;
}
.radio-btn input:checked + .indicator:after {
  opacity: 1;
}
.radio-btn .indicator .info {
  position: absolute;
  bottom: 0;
  opacity: 0;
  right: 50%;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out;
}
.radio-btn:hover .indicator .info {
  opacity: 1;
}
.radio-btn .indicator .info span {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  display: block;
  width: 11.25rem;
  padding: 0.78em 0.7em;
  background-color: #4f1b63;
  transform: translateX(50%) translateY(calc(100% + 0.625rem));
}
.radio-btn:first-child .indicator .info {
  right: auto;
  left: 0;
}
.radio-btn:first-child .indicator .info span {
  transform: translateX(0) translateY(calc(100% + 0.625rem));
}
.radio-btn:last-child .indicator .info {
  right: 0;
}
.radio-btn:last-child .indicator .info span {
  transform: translateX(0) translateY(calc(100% + 0.625rem));
}
.edys-gallery-grid-inner {
  width: calc(100% + 1.25rem);
  margin-left: -0.625rem;
}
.edys-gallery-grid .edys-gallery-grid-item {
  width: calc(100% / 4 - 1.25rem) !important;
  margin: 0.625rem !important;
  position: relative;
}
.edys-gallery-grid .edys-gallery-grid-item .edys-gallery-grid-aspect {
  padding-bottom: 56.25% !important;
}
.edys-gallery-grid .edys-gallery-grid-item:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(79, 27, 99, 0.6);
  background-image: url(/assets/bentte.svg);
  background-position: 0 50%;
  background-size: 60% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.1s ease-in-out,
    background-position 0.16s cubic-bezier(0.17, 0.67, 0.53, 1.26);
}
.edys-gallery-grid .edys-gallery-grid-item:hover:after {
  opacity: 1;
  background-position: 50% 50%;
}
/* CLASSES */
.custom-btn {
  color: #85fd5e;
  line-height: 1.25;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.2em;
  background: #4f1b63;
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
  margin: 1.6em 0;
  position: relative;
  z-index: 1;
}
.custom-btn:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #85fd5e;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.2s ease-in-out;
}
.custom-btn:hover:before {
  width: 100%;
}
.custom-btn:not(.lg):after {
  content: "";
  display: block;
  width: 0.39em;
  height: 0.83em;
  background-image: url(/assets/arrow-right-green.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 1.1em;
}
.custom-btn:not(.lg):hover:after {
  background-image: url(/assets/arrow-right-purple.svg);
}
.custom-btn:hover {
  color: #4f1b63;
}
.custom-btn.lg {
  font-size: calc(0.8125rem + 0.67em);
  padding: 0.5em 1.875em;
}
.styled-btn {
  color: #4f1b63;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.styled-btn:hover,
.styled-btn:focus {
  color: #4f1b63;
}
.styled-btn:after {
  content: "";
  display: block;
  width: 0.39em;
  height: 0.83em;
  background-image: url(/assets/arrow-right-purple.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 1.1em;
}
.styled-btn:not(.close):not(.prev):after {
  transform: translateX(-0.27em);
}
.styled-btn:not(.close):not(.prev):hover:after {
  animation: styled 0.8s infinite ease-in-out;
}
@keyframes styled {
  0% {
    transform: translateX(-0.27em);
  }
  15% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-0.27em);
  }
  45% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(-0.27em);
  }
  100% {
    transform: translateX(-0.27em);
  }
}
.styled-btn.close:after {
  width: 2em;
  height: 2em;
  border: 2px solid #4f1b63;
  background-image: url(/assets/close.svg);
  background-size: 35% 35%;
  border-radius: 50%;
  transition: all 0.1s ease-in-out;
}
.styled-btn.close:hover:after {
  border-color: #85fd5e;
  background-color: #85fd5e;
}
.styled-btn.prev {
  flex-direction: row-reverse;
}
.styled-btn.prev:after {
  background-image: url(/assets/arrow-left-purple.svg);
  margin-left: 0;
  margin-right: 1.1em;
}
.styled-btn.prev:after {
  transform: translateX(0.27em);
}
.styled-btn.prev:hover:after {
  animation: styled-prev 0.8s infinite ease-in-out;
}
@keyframes styled-prev {
  0% {
    transform: translateX(0.27em);
  }
  15% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0.27em);
  }
  45% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0.27em);
  }
  100% {
    transform: translateX(0.27em);
  }
}
.link {
  color: #4f1b63;
  box-shadow: inset 0 -1px 0 transparent;
  transition: box-shadow 0.1s ease-in-out;
}
.link:hover {
  color: #4f1b63;
  box-shadow: inset 0 -1px 0 #4f1b63;
}
.bg-white {
  background-color: #fff !important;
}
.bg-light {
  background-color: #efefef !important;
}
.bg-grey {
  background-color: #e6e6e6 !important;
}
.bg-purple {
  background-color: #4f1b63 !important;
}
.bg-tape {
  background-image: url(/assets/bentte-tape.svg);
  background-position: center 20%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg-tape.for-purple {
  background-image: url(/assets/bentte-tape-light.svg);
}
.bg-tape.for-info {
  background-image: url(/assets/bentte-tape-top.svg),
    url(/assets/bentte-tape-bottom.svg);
  background-position: center 0, center 100%;
}
.fb-btn {
  color: #4f1b63;
  display: inline-flex;
  align-items: center;
}
.fb-btn:before {
  content: "";
  display: block;
  width: 1.11em;
  height: 1.11em;
  background-image: url(../assets/fb-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-right: 0.83em;
}
.content-white .fb-btn {
  color: #fff;
}
.content-white .fb-btn:before {
  background-image: url(../assets/fb-icon-white.svg);
}
.content-white {
  color: #fff;
}
.content-white h1,
.content-white h2,
.content-white h3 {
  color: #fff;
}
.content-white a:not([class]),
.content-white a[class="ui-link"],
.content-white .link {
  color: #fff;
}
.content-white a:not([class]):not(:hover),
.content-white a[class="ui-link"]:not(:hover),
.content-white .link:hover {
  box-shadow: inset 0 -1px 0 #fff;
}
.content-white .styled-btn {
  color: #fff;
}
.content-white .styled-btn:after {
  background-image: url(/assets/arrow-right-white.svg);
}
.content-white .styled-btn.prev:after {
  background-image: url(/assets/arrow-left-white.svg);
}
.overflow {
  overflow: hidden;
}
.hidden {
  display: none !important;
}
.embed-image {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.embed-image:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
/* MARGIN */
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
ol:first-child,
ul:first-child,
li:first-child,
p:first-child,
.custom-btn:first-child,
.table-wrapper:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
ol:last-child,
ul:last-child,
li:last-child,
p:last-child,
.custom-btn:last-child,
.table-wrapper:last-child {
  margin-bottom: 0;
}
/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 65%;
  height: 3.125rem;
  padding: 0 0 0 2.5rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
}
.header.is-full {
  width: 100%;
}
.header:before,
.header:after {
  content: "";
  display: block;
  width: 0;
  height: 50%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.5s ease-in-out;
  display: none;
}
.header:after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}
.header.scroll:before,
.header.scroll:after {
  width: 100%;
}
.menu-wrapper {
  display: flex;
  align-items: center;
}
.menu-item {
  color: #8b8b8b;
  margin-right: 1.7em;
  padding: 0.16em 0.55em;
  display: inline-block;
  position: relative;
  transition: color 0.1s ease-in-out 0.1s;
  z-index: 1;
}
@media screen and (min-width: 64rem) {
  .menu-item.with-submenu {
    display: flex;
    align-items: center;
    height: 3.125rem;
  }
}
/* .header:not(.scroll) .menu-item {
  color: #fff;
} */
.menu-item:hover,
.menu-item.active {
  color: #4f1b63;
  transition: color 0.1s ease-in-out;
}
/* .menu-item:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #4f1b63;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.2s ease-in-out;
  z-index: -1;
}
.menu-item:hover:before,
.menu-item.active:before {
  width: 100%;
  transition: width 0.2s ease-in-out;
} */
.menu-item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 64rem) {
  .menu-item-submenu {
    width: 16.1em;
    background-color: #85fd5e;
    position: absolute;
    top: 100%;
    right: 0.55em;
    transform-origin: 0 0;
    transition: all 0.2s ease;
  }
  .menu-item:not(:hover) .menu-item-submenu {
    opacity: 0;
    visibility: 0;
    transform: rotateX(40deg);
    pointer-events: none;
  }
  .menu-item-submenu .submenu-item {
    color: #000;
    font-size: 1.22em;
    display: block;
    padding: 0.91em;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  .menu-item-submenu .submenu-item:hover,
  .menu-item-submenu .submenu-item.active {
    color: #fff;
    background-color: #4f1b63;
  }
}
.header-order-btn {
  color: #4f1b63;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #85fd5e;
  padding: 0 1.67em;
  margin-left: 1.67em;
}
.back-btn {
  display: flex;
  align-items: center;
  margin-right: auto;
  box-shadow: inset 0 -1px 0 #4f1b63;
  transition: box-shadow 0.2s ease;
}
.back-btn:not(:hover) {
  box-shadow: inset 0 -1px 0 transparent;
}
.back-btn:before {
  content: "";
  width: 0.445em;
  height: 0.834em;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4LjAyNCIgaGVpZ2h0PSIxNC45NTUiIHZpZXdCb3g9IjAgMCA4LjAyNCAxNC45NTUiPjxkZWZzPjxzdHlsZT4uYXtmaWxsOiM0ZjFiNjM7fTwvc3R5bGU+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MDkuOTc2IC0yNDQpIj48ZyB0cmFuc2Zvcm09Im1hdHJpeCgwLCAxLCAtMSwgMCwgNDE4LCAyNDQpIj48cGF0aCBkPSJNMTQuOC4xNTVhLjUyNy41MjcsMCwwLDAtLjc0NywwbC02LjU3LDYuNkwuOS4xNTVBLjUyOS41MjksMCwwLDAsLjE1NS45TDcuMSw3Ljg2OWEuNTE2LjUxNiwwLDAsMCwuMzc0LjE1NS41MzguNTM4LDAsMCwwLC4zNzQtLjE1NUwxNC43ODkuOUEuNTIxLjUyMSwwLDAsMCwxNC44LjE1NVptMCwwIi8+PC9nPjxwYXRoIGNsYXNzPSJhIiBkPSJNNDE3LjEsMjU4Ljc4OWwtNi45NjQtNi45NDNhLjUzOC41MzgsMCwwLDEtLjE1Ni0uMzczLjUxNS41MTUsMCwwLDEsLjE1Ni0uMzc0bDYuOTY0LTYuOTQzYS41MjkuNTI5LDAsMSwxLC43NS43NDdsLTYuNiw2LjU4Myw2LjYsNi41NzFhLjUyOS41MjksMCwwLDEsMCwuNzQ3LjUyLjUyLDAsMCwxLS43NS0uMDE0WiIvPjwvZz48L3N2Zz4=);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-right: 1.11em;
}
/* SIDEBAR */
.sidebar {
  width: 35%;
  height: 100%;
  background: #f4f4f4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  overflow: auto;
}
.sidebar-inner {
  width: calc(17rem + 10vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.125rem 0 0;
  margin: auto;
  position: relative;
  z-index: 1;
}
.sidebar-content {
  margin: 1.875rem 0;
}
.sidebar .bentte-logo img {
  width: calc(5.625rem + 4.68vw);
}
.sidebar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 3.125rem;
}
.sidebar-contact a {
  margin-right: 1.6em;
}
.order-modal {
  width: calc(14.375rem + 12vw);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.53, 1.26);
  position: fixed;
  top: 0;
  left: 35%;
  z-index: 100;
  overflow: auto;
}
.common-page .order-modal {
  left: 0;
}
.order-modal.open {
  transform: translateX(0);
}
.order-modal .modal-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.875rem 1.875rem 0;
}
.order-modal .modal-inner:after {
  content: "";
  display: block;
  padding-top: 1.875rem;
}
.modal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.5625rem;
  border-bottom: 2px solid #ebebeb;
  margin-bottom: 1.875rem;
}
.order-info-wrapper {
  margin-top: 2rem;
}
.order-info {
  color: #4f1b63;
  border-top: 2px solid #ebebeb;
  padding-top: 0.9em;
  margin-bottom: 0.9em;
}
.order-btn {
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}
.order-close-area {
  display: none;
  width: 65%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
}
.order-modal.open + .order-close-area {
  display: block;
}
.sidebar::-webkit-scrollbar,
.order-modal::-webkit-scrollbar {
  width: 10px;
}
.sidebar::-webkit-scrollbar-track,
.order-modal::-webkit-scrollbar-track {
  background-color: #eaeaf3;
  border-radius: 5px;
}
.sidebar::-webkit-scrollbar-thumb,
.order-modal::-webkit-scrollbar-thumb {
  background-color: #c3c3c3;
  border-radius: 5px;
}
/* FRONT PAGE */
.page-content {
  width: 65%;
  margin-left: auto;
  padding-top: 60vh;
}
.editmode .page-content {
  padding-top: 0;
}
.landing-image {
  width: 65%;
  height: 60%;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: 0;
}
.editmode .landing-image {
  width: 100%;
  height: 60vh;
  position: relative !important;
  z-index: 1;
}
.global-section {
  padding: 6.25rem 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.global-section-title {
  margin-bottom: 40px;
}
.container {
  max-width: calc(26.875rem + 22vw);
  margin: auto;
  padding: 0 0.9375rem;
}
.global-section .cover-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.global-section .cover-image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(79, 29, 99, 0.75);
  position: absolute;
  top: 0;
  left: 0;
}
.global-section.with-image {
  font-size: calc(1.125rem + 0.94vw);
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 43.75rem;
}
.mt-section {
  margin-top: 3.75rem;
}
.mt-section-sm {
  margin-top: 2.5rem;
}
.mb-section-sm {
  margin-bottom: 2.5rem;
}
.contacts-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-block {
  width: calc(50% - 1rem);
  margin-bottom: 3.125rem;
}
.contact-block:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48rem) {
  .contact-block:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}
.contact-block .image {
  display: block;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-block .image:before {
  content: "";
  display: block;
  padding-top: calc(100% / 16 * 9);
}
.contact-block .image:not([style]) {
  background-color: #fff;
  background-image: url(/assets/bentte.svg);
  background-position: center;
  background-size: auto 2.78em;
  background-repeat: no-repeat;
}
.contact-block.is-light .image {
  background-color: #f4f4f4;
}
.contact-block .info-wrapper {
  padding: 1.5625rem 0 0;
}
.contact-block .title {
  margin-bottom: 0;
}
.contact-block .subtitle {
  font-style: italic;
  margin-bottom: 0.6em;
}
.companies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.25rem;
}
.company-item {
  height: 2.5rem;
  margin: 1.25rem 0;
}
.company-item img {
  height: 100%;
}
/* COMMON PAGE */
.common-page {
  padding-top: 6.7em;
}
.common-page .ui-page-theme-a {
  background-color: transparent !important;
}
.global-container {
  width: 63.34em;
  margin: auto;
}
.global-container.for-common {
  padding: 3.89em;
}
.global-container.for-footer {
  padding-left: 3.89em;
  padding-right: 3.89em;
}
.global-container.for-footer .container {
  max-width: none;
}
.details-section,
.common-section {
  padding-bottom: 4.375rem;
}
.common-logo img {
  width: calc(4.375rem + 3.64vw);
}
.common-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.22em;
}
.common-header a:not(:last-child) {
  margin-right: 1.6em;
}
.details-container {
  padding: 2.5rem 5rem 3.75rem;
}
.details-container.with-borders {
  padding-bottom: 0;
}
.details-header {
  display: flex;
  justify-content: space-between;
}
.steps-wrapper {
  display: flex;
  align-items: center;
}
.step-indicator {
  color: #4f1b63;
  font-size: calc(1em - 0.125rem);
  text-align: center;
  counter-increment: step;
  position: relative;
}
.step-indicator:not(:last-child) {
  margin-right: 2.5em;
}
.step-indicator:before {
  content: counter(step);
  font-family: "banjax";
  font-weight: 700;
  font-size: calc(1.25rem + 1.04vw);
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
  display: block;
  width: 1.57em;
  height: 1.57em;
  border: 2px solid #4f1b63;
  border-radius: 50%;
  margin: 0 auto 0.3125rem;
  transition: color 0.1s ease-in-out;
}
.step-indicator.active:before {
  color: #85fd5e;
  background-color: #4f1b63;
}
.step-indicator:hover:before {
  color: #85fd5e;
}
.details-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-top: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  padding: 0.625rem 0;
  margin-top: 1.5625rem;
}
.details-nav .tag {
  color: #4f1b63;
  padding: 0.5em 0;
  margin-left: auto;
}
.details-nav .custom-btn {
  margin: 0 0 0 1.875rem;
}
.details-content-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.details-form {
  width: 40%;
  padding-top: 2.5rem;
  padding-right: 4.5%;
}
.details-content {
  width: 60%;
  padding-top: 2.5rem;
  padding-left: 4.5%;
}
.details-container.with-borders .details-form {
  border-right: 2px solid #ebebeb;
}
.details-container.with-borders .details-form,
.details-container.with-borders .details-content {
  padding-bottom: 3.75rem;
}
.package-info {
  color: #4f1b63;
  padding-bottom: 2rem;
  border-bottom: 2px solid #ebebeb;
  margin-bottom: 2rem;
}
.package-info .type {
  display: flex;
  align-items: center;
}
.package-info .type .icon {
  width: 3.6em;
  border: 2px solid #4f1b63;
  background-image: url(/assets/package.svg);
  background-position: center;
  background-size: 60% auto;
  background-repeat: no-repeat;
  margin-right: 1.5em;
  flex-shrink: 0;
}
.package-info .type .icon:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.payment-select {
  width: calc(100% + 1.875rem);
  margin-left: -0.9375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.payment-select label {
  width: calc(100% / 3 - 1.875rem);
  position: relative;
  margin: 0.9375rem;
  cursor: pointer;
}
.payment-select input {
  position: absolute;
  opacity: 0;
}
.payment-select .indicator {
  display: block;
  width: 100%;
  padding-top: 45%;
  border: 2px solid #f3f3f3;
}
.payment-select input:checked + .indicator {
  border-color: #4f1b63;
}
.payment-select .indicator:after {
  content: "";
  display: block;
  width: 75%;
  height: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.payment-select .indicator.seb:after {
  background-image: url(/assets/seb.svg);
}
.payment-select .indicator.swedbank:after {
  background-image: url(/assets/swedbank.svg);
}
.payment-select .indicator.lhv:after {
  background-image: url(/assets/lhv-logo.svg);
}
.payment-select .indicator.danske:after {
  background-image: url(/assets/danske.svg);
}
.payment-select .indicator.luminor:after {
  background-image: url(/assets/luminor.svg);
}
.payment-select .indicator.visa:after {
  background-image: url(/assets/master.svg);
}
.payment-info {
  color: #4f1b63;
  text-align: center;
  background-color: #ebebeb;
  padding: 0.55em 0.9375rem;
  margin: 1.5625rem 0 0;
}
.payment-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.payment-submit .custom-btn,
.payment-submit .form_field {
  margin-top: 1.5625rem;
}
/* SERVICE PAGE */
.common-cover {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.common-cover:not([style]) {
  display: none;
}
.common-cover:before {
  content: "";
  display: block;
  padding-top: 39%;
}
.content-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1.11em;
}
.content-box-item {
  flex: 1;
  min-width: calc(100% - 2.23em);
  background-color: #f4f4f4;
  padding: 2.22em;
  margin: 1.11em;
}
@media screen and (min-width: 64rem) {
  .content-box-item {
    min-width: calc(50% - 2.23em);
  }
}
.content-tabs {
  display: flex;
  flex-direction: column-reverse;
}
.content-tab-item {
  border: 2px solid #4f1b63;
}
.content-tab-item + .content-tab-item {
  border-top: none;
}
.content-tab-item .tab-content {
  padding: 1.11em;
}
html:not(.editmode) .content-tab-item:not(:first-child) .tab-content {
  display: none;
}
.content-tab-label {
  color: #4f1b63;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.11em;
  transition: color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}
.content-tab-label.active {
  color: #85fd5e;
  background-color: #4f1b63;
}
.content-tabs-desktop {
  display: none;
  flex-wrap: wrap;
  margin: 0 -1.11em;
}
.content-tabs-desktop .content-tab-label {
  width: calc(100% - 2.23em);
  min-height: 7.77em;
  margin: 1.11em;
  border: 2px solid #4f1b63;
}
@media screen and (min-width: 64rem) {
  html:not(.editmode) .content-tab-item {
    border: none;
  }
  html:not(.editmode) .content-tab-item .tab-content {
    padding: 0;
  }
  html:not(.editmode) .content-tab-item .content-tab-label {
    display: none;
  }
  .content-tabs-desktop {
    display: flex;
  }
  .content-tabs-desktop .content-tab-label {
    width: calc(25% - 2.23em);
  }
  .content-tab-label span {
    font-size: 1.33em;
  }
  .content-tabs-desktop .content-tab-label + .spacer {
    height: 1.25rem;
    width: 100%;
  }
}
.common-notice {
  text-align: center;
  padding: 1.67em;
  margin-top: 1.67em;
}
.common-notice a {
  color: #85fd5e !important;
}
.common-notice a:not(:hover) {
  box-shadow: inset 0 -1px 0 #85fd5e !important;
}
@media screen and (max-width: 48rem) {
  .common-notice {
    padding: 1.67em 1.11em;
  }
}
/* FOOTER */
.new-footer {
  display: flex;
}
.footer-logo-wrapper {
  width: 27.2%;
}
.footer-logo {
  display: inline-block;
  line-height: 0;
}
.footer-logo img {
  height: 3.6em;
}
.footer-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
}
.footer-info-item {
  width: 47.5%;
  margin-bottom: 1.67em;
}
.footer-info-item.is-full {
  width: 100%;
  margin-bottom: 0;
}
/* INFO PAGE */
.info-section {
  min-height: 100vh;
  padding-top: 12vw;
  padding-bottom: 4.375rem;
}
.info-page .styled-btn {
  margin-top: 1.1em;
}
.madein {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 30px;
  width: 85px;
  background-image: url(/assets/madeinNeway.svg);
  background-repeat: no-repeat;
  background-size: 85px;
  background-position: center;
  z-index: 1;
}
.madein.purple {
  background-image: url(/assets/madeinNeway-purple.svg);
}
/* ADMIN PAGE */
.admin-block {
  margin: 2.7em 0;
}
/* VOOG POPUP */
.pswp__bg {
  background-color: rgba(255, 255, 255, 0.95) !important;
}
.pswp__ui {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: auto;
  bottom: 0;
}
.pswp__button.pswp__button--zoom,
.pswp__button.pswp__button--fs {
  display: none !important;
}
.pswp__button,
.pswp__top-bar {
  opacity: 1 !important;
}
.pswp__top-bar {
  position: relative !important;
  height: auto !important;
  width: auto !important;
  z-index: 1;
  order: 2;
}
.pswp__scroll-wrap {
  height: calc(100vh - 5rem) !important;
  overflow: visible !important;
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: transparent !important;
}
.pswp__caption.pswp__caption--empty,
.pswp__caption.pswp__caption--fake,
.pswp__preloader {
  display: none !important;
}
.pswp__button.pswp__button--close {
  line-height: 0;
  width: 2em;
  height: 2em;
  background-image: url(/assets/close.svg) !important;
  background-position: center;
  background-size: auto 35%;
  background-repeat: no-repeat;
  border: 2px solid #4f1b63;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 1.5em;
  float: none;
  z-index: 1;
  transition: all 0.1s ease-in-out;
}
.pswp__button.pswp__button--close:hover {
  border-color: #85fd5e;
  background-color: #85fd5e;
}
.pswp__button.pswp__button--close:hover {
}
.pswp__button.pswp__button--close:before {
}
.pswp__zoom-wrap {
  max-width: calc(100% - 200px) !important;
}
.pswp__ui .pswp__button.pswp__button--arrow--left,
.pswp__ui .pswp__button.pswp__button--arrow--right {
  color: #4f1b63;
  font-size: 1em;
  line-height: 1.3;
  width: auto;
  height: 2em;
  background-size: auto 0.83em;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  bottom: 0;
  margin: 0;
  opacity: 1;
  z-index: 1;
}
.pswp__ui .pswp__button.pswp__button--arrow--left {
  background-image: url(/assets/arrow-left-purple.svg);
  background-position: 0.27em center;
  padding-left: 1.6em;
  order: 1;
}
.pswp__ui .pswp__button.pswp__button--arrow--left:after {
  content: "eelmine";
}
.pswp__ui .pswp__button.pswp__button--arrow--right {
  background-image: url(/assets/arrow-right-purple.svg);
  background-position: calc(100% - 0.27em) center;
  padding-right: 1.6em;
  order: 3;
}
.pswp__ui .pswp__button.pswp__button--arrow--right:after {
  content: "järgmine";
}
.pswp__ui .pswp__button.pswp__button--arrow--left:hover {
  animation: gallery-arrow-prev 0.8s infinite ease-in-out;
}
.pswp__ui .pswp__button.pswp__button--arrow--right:hover {
  animation: gallery-arrow 0.8s infinite ease-in-out;
}
@keyframes gallery-arrow {
  0% {
    background-position: calc(100% - 0.27em) center;
  }
  15% {
    background-position: 100% center;
  }
  30% {
    background-position: calc(100% - 0.27em) center;
  }
  45% {
    background-position: 100% center;
  }
  65% {
    background-position: calc(100% - 0.27em) center;
  }
  100% {
    background-position: calc(100% - 0.27em) center;
  }
}
@keyframes gallery-arrow-prev {
  0% {
    background-position: 0.27em center;
  }
  15% {
    background-position: 0 center;
  }
  30% {
    background-position: 0.27em center;
  }
  45% {
    background-position: 0 center;
  }
  65% {
    background-position: 0.27em center;
  }
  100% {
    background-position: 0.27em center;
  }
}
.pswp__ui .pswp__button.pswp__button--arrow--left:before,
.pswp__ui .pswp__button.pswp__button--arrow--right:before {
  display: none;
}
.pswp__caption.pswp__caption--empty {
  display: block !important;
}
.pswp__caption__center {
  color: #002c81 !important;
  font-family: "Overpass", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
}
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0) !important;
}
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: visible !important;
}
/* LOADING */
.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}
.loading-screen.purple {
  background-color: #4f1b63;
}
.loading-screen .image-wrapper {
  display: block;
  width: 0;
  height: 100%;
  background-image: url(/assets/loading1.svg);
  background-position: 0 20%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.loading-screen .image-wrapper.green {
  background-image: url(/assets/loading2.svg);
}
.loading-screen.purple .image-wrapper:not(.green) {
  background-image: url(/assets/loading1-light.svg);
}
.loading-screen.complete .image-wrapper {
  animation: loading 0.5s ease-in-out;
  animation-fill-mode: forwards;
}
.loading-screen .image-wrapper.green {
  animation-delay: 0.5s;
}
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.loading-screen .title {
  margin-top: auto;
  margin-bottom: 5rem;
}
.loading-screen.purple .title {
  color: #fff;
}
.inAdsCopyright {
  display: none !important;
}
.form_field .ui-select {
  display: none !important;
}
.inaadressSearch {
  width: 100% !important;
}
.form_field .ui-input-clear {
  display: none;
}
.ui-filterable {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
}
.ui-listview {
  position: absolute;
  top: calc(100% - 2px);
  max-height: 200px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  border: 2px solid #4f1b63;
  width: 100%;
  background-color: #fff;
}
.ui-listview li {
  width: 100%;
  padding: 5px 0px;
  border-bottom: 1px solid #4f1b63;
}
.ui-listview .ui-last-child {
  border: none;
}
.in_address_item {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 46px !important;
}
.ui-listview:empty {
  display: none;
}
/* UI FIX */
.ui-popup-container,
.ui-loader,
.ui-screen-hidden {
  display: none;
}

.edy-tb-size.edy-tb-g {
  display: none !important;
}

.grecaptcha-badge {
  display:none;
}
