:root {
  --size-width-main: 1000px;
  --size-height-header: 60px;
  --color-accent: #F99000;
  --color-main: #1B3958;
  --color-secondary: #4f4f4f;
  --color-light-secondary: #f9f9f9;
  --color-extra-accent: #DC4C64;
}
.a-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 100%;
}
.a-table--profile tr td {
  width: 70%;
}
.a-table tr {
  border-bottom: 1px solid #E0E0E0;
}
.a-table tr:last-child {
  border-bottom: none;
}
.a-table th {
  text-align: left;
  font-weight: normal;
  color: #757575;
}
.a-table td, .a-table th {
  padding: 16px;
}
@media screen and (max-width: 576px) {
  .a-table td, .a-table th {
    padding: 10px;
  }
  .a-table td:first-child, .a-table th:first-child {
    padding-left: 0;
  }
  .a-table td:last-child, .a-table th:last-child {
    padding-right: 0;
  }
}
.a-table--collapse {
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .a-table--collapse {
    font-size: 12px;
  }
}
.a-table--collapse td {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 576px) {
  .a-table--collapse td {
    padding: 0 3px;
  }
}
@media screen and (max-width: 576px) {
  .a-table--collapse td:first-child {
    padding-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .a-table--collapse td:last-child {
    padding-right: 0;
  }
}
.a-table--collapse td:last-child:not(:first-child) {
  text-align: right;
}
.a-table__row-accent {
  font-weight: bold;
}
.a-table__row-accent td {
  padding-top: 25px;
}
@media screen and (max-width: 576px) {
  .a-table__row-accent td {
    padding-top: 15px;
  }
}
.a-table__row-accent:first-child td {
  padding-top: 0;
}

.td-collapse {
  padding-top: 5px;
  padding-bottom: 5px;
}
.api-container {
  width: 100%;
  padding: 0 40px;
}

.api-left-sidebar {
  background: #FDFCED !important;
}

.work-area--api {
  padding-top: 60px;
  padding-left: 260px;
  overflow-x: hidden;
}

.api-methods {
  margin: 20px 0;
  overflow-y: auto;
}
.api-methods__item {
  display: flex;
  padding: 5px 20px;
  box-sizing: border-box;
  line-height: 1.3;
}
.api-methods__item:hover:not(.api-methods__item--active) {
  background: #eeeeee;
}
.api-methods__item--active {
  background: #dde1e1;
}

.api-item {
  display: flex;
  border-bottom: 1px solid #E0E0E0;
}
.api-item__title {
  font-weight: 500;
}
.api-item__container {
  padding: 10px;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, max-content) 1fr minmax(0, max-content);
  gap: 30px;
  border-bottom: 2px solid #F6F6F6;
  transition: 0.2s;
  font-size: 14px;
  line-height: 1.3;
}
.api-item__container:hover {
  background: #FAFAFA;
}
.api-item__container__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.api-item .api-cell {
  padding: 10px !important;
}
.api-item__main {
  width: 50%;
  display: inline-block;
}
.api-item__right-sidebar {
  width: calc(50% - 5px);
  vertical-align: top;
  background: #0c0c0c;
  color: #fff;
  display: inline-block;
}
.api-item__right-sidebar__title {
  text-align: center;
  font-weight: 600;
}
.api-item__right-sidebar__result--title {
  text-align: center;
}
.api-item__right-sidebar__result--result {
  font-size: 11.5px;
  padding: 10px;
  font-family: monospace;
}
.api-item__example {
  padding: 5px 10px;
  font-family: monospace;
  font-size: 12px;
}
.api-item__example a {
  color: lightblue;
}
.block-accent {
  padding: 12px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}
.block-accent--max-width {
  max-width: 900px;
}
.block-accent--collapse {
  padding: 0;
  box-shadow: none;
}
@media screen and (max-width: 576px) {
  .block-accent--collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1640px) {
  .block-accent--collapse-mobile {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
}
.breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb-list {
  font-size: 16px;
}
@container (max-width: calc(576px * 0.95)) {
  .breadcrumb-list {
    display: none;
  }
}
.breadcrumb-list__item {
  display: inline-flex;
  color: #757575;
}
.breadcrumb-list__item:after {
  content: "/";
  margin: 0 8px;
}
.breadcrumb-list__item:last-child:after {
  display: none;
}

.breadcrumb-mobile {
  display: none;
}
@container (max-width: calc(576px * 0.95)) {
  .breadcrumb-mobile {
    display: flex;
  }
}
.breadcrumb-mobile__link {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: inherit;
}
.breadcrumb-mobile__link:before {
  margin-right: 5px;
  font-family: "Font Awesome 5 Pro";
  content: "\f053";
  font-weight: 600;
  font-size: 0.7em;
}
.btn-wrap {
  text-align: center;
}

.btn-reset-default {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 7px 22px 5px 22px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  background-color: var(--color-main);
  border-radius: 4px;
  box-shadow: 0 4px 9px -4px var(--color-main);
  border: 2px solid transparent;
  transition: 0.2s;
}
.btn:hover {
  box-shadow: 0 8px 9px -4px rgba(59, 113, 202, 0.3), 0 4px 18px 0 rgba(59, 113, 202, 0.2);
}
.btn--load {
  opacity: 0.8;
  position: relative;
  color: transparent !important;
}
.btn--load:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 -20 40 40"><style> /* ...YO DAWG... */ circle { animation: 4s a infinite linear, 3s o infinite linear; }@keyframes a {from{stroke-dasharray:100 0}50%25{stroke-dasharray:0 100}to{stroke-dasharray:100 0}}@keyframes o {from{stroke-dashoffset:75}to{stroke-dashoffset:375}}<%2Fstyle><circle r="15.9154943092" stroke-width="7" fill="none" stroke="snow" /></svg>');
  width: 18px;
  height: 18px;
}
.btn--min-width {
  min-width: 180px;
}
.btn--full-width {
  width: 100%;
}
.btn--mt {
  margin-top: 40px;
}
.btn--mb {
  margin-bottom: 40px;
}
.btn-icon {
  margin-right: 10px;
}
.btn--light {
  background-color: #E3EBF7;
  box-shadow: none;
  color: #285192;
}
.btn--light:hover {
  background-color: color-mix(in srgb, #E3EBF7, black 5%);
  box-shadow: none;
}
.btn--transparent {
  border: 2px solid var(--color-main);
  background-color: transparent;
  color: var(--color-main);
  box-shadow: none;
}
.btn--transparent:hover {
  background-color: transparent;
  box-shadow: 0 5px 11px 0 color-mix(in srgb, var(--color-main), transparent 80%), 0 4px 15px 0 color-mix(in srgb, var(--color-main), transparent 85%);
}
.btn--transparent-red {
  border: 2px solid var(--color-extra-accent);
  background-color: transparent;
  color: var(--color-extra-accent);
  box-shadow: none;
}
.btn--transparent-red:hover {
  background-color: transparent;
  box-shadow: 0 5px 11px 0 color-mix(in srgb, var(--color-extra-accent), transparent 80%), 0 4px 15px 0 color-mix(in srgb, var(--color-extra-accent), transparent 85%);
}
.btn--red {
  border: 2px solid var(--color-extra-accent);
  background-color: var(--color-extra-accent);
  box-shadow: #dc4c64 0 4px 9px -4px;
}
.btn--red:hover {
  border-color: color-mix(in srgb, var(--color-extra-accent), black 4%);
  background-color: color-mix(in srgb, var(--color-extra-accent), black 4%);
  box-shadow: 0 8px 9px -4px rgba(220, 76, 100, 0.3), 0 4px 18px 0 rgba(220, 76, 100, 0.2);
}
.btn--icon-link:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f08e";
  font-weight: 600;
}
.btn--icon-pdf:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f063";
  font-weight: 600;
}
.btn--icon-check:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  font-weight: 600;
}
.btn--icon-plus:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f055";
  font-weight: 600;
}
.btn--icon-remove:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f2ed";
  font-weight: 600;
}
.btn--icon-next:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .btn--icon-edit {
    width: 100%;
  }
}
.btn--icon-edit:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f044";
  font-weight: 600;
}
.btn--icon-file:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f0c6";
  font-weight: 500;
}
.btn--disabled {
  opacity: 0.5;
}

@media screen and (max-width: 484px) {
  .btn-icon {
    margin: 0;
  }
  .btn-label {
    display: none;
  }
}
.hole-access {
  width: 100%;
  height: 120px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: black;
}
.hole-access__unavailable, .hole-access__start-bypass {
  cursor: pointer;
  display: flex;
  height: 50px;
  border-radius: 15px;
  border: 2px dotted;
  background-color: #ff2a2b;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.hole-access__start-bypass {
  background-color: #03ff7f;
}

.stop-bypass {
  display: flex;
  cursor: pointer;
  height: 50px;
  border-radius: 15px;
  border: 2px dotted;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.uncheck-action, .check-action {
  display: grid;
  grid-template-columns: 75% 25%;
  grid-gap: 1px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid;
  margin: 8px 0;
}
.uncheck-action .left-side, .check-action .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
}
.uncheck-action .right-side, .check-action .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 1px solid;
  padding: 12px 0;
}
.uncheck-action span, .check-action span {
  font-weight: bold;
  margin-bottom: 8px;
}
.uncheck-action .quantity, .uncheck-action__quantity, .check-action .quantity, .check-action__quantity {
  display: grid;
  align-items: center;
  grid-template-columns: max-content max-content max-content max-content auto;
}
.uncheck-action .quantity .fa, .uncheck-action__quantity .fa, .check-action .quantity .fa, .check-action__quantity .fa {
  font-size: 30px;
  cursor: pointer;
}
.uncheck-action .quantity .fa-minus:before, .uncheck-action__quantity .fa-minus:before, .check-action .quantity .fa-minus:before, .check-action__quantity .fa-minus:before {
  color: #ef8c00;
}
.uncheck-action .quantity .fa-plus:before, .uncheck-action__quantity .fa-plus:before, .check-action .quantity .fa-plus:before, .check-action__quantity .fa-plus:before {
  color: #5ac4f6;
}
.uncheck-action .quantity i, .uncheck-action__quantity i, .check-action .quantity i, .check-action__quantity i {
  margin: 10px;
}
.uncheck-action .quantity #q, .uncheck-action__quantity #q, .check-action .quantity #q, .check-action__quantity #q {
  width: 50px;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .uncheck-action .quantity, .uncheck-action__quantity, .check-action .quantity, .check-action__quantity {
    font-size: 11px;
  }
}
.uncheck-action__name, .check-action__name {
  display: grid;
  grid-template-columns: auto min-content;
  grid-gap: 30px;
}
.uncheck-action__sum, .check-action__sum {
  text-align: right;
}
.uncheck-action__sum span, .check-action__sum span {
  text-wrap: nowrap;
}
.uncheck-action__button, .check-action__button {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: max-content max-content;
}
.green-circle, .red-circle {
  display: flex;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #64c466;
  justify-content: center;
  align-items: center;
}
.green-circle .fa, .red-circle .fa {
  font-size: 30px;
  color: white;
}

.red-circle {
  background-color: #ff2a2b;
}

.bypass-places {
  width: 100%;
  border-radius: 10px;
  border: 1px solid;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bypass-places__malfunctions {
  width: 100%;
  border-radius: 10px;
  border: 1px solid;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bypass-places__malfunctions span {
  font-weight: bold;
  margin: 10px 5px;
}
.bypass-places__malfunctions__content {
  border-radius: 10px;
  border: 1px solid;
  padding: 5px;
  margin: 8px 0;
}
.bypass-places__malfunctions__content__sector {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.bypass-places__malfunctions__content__sector:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b71ca'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  min-width: 20px;
  height: 20px;
  transition: 0.2s;
}
.bypass-places__malfunctions__content__sector.open:after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b71ca'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
.bypass-places__malfunctions__content__panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
  margin-bottom: 10px;
}
.bypass-places__malfunctions__content__panel__label {
  width: 80%;
}
.bypass-places__malfunctions__content__panel__input {
  width: 21px;
  height: 21px;
  vertical-align: middle;
}
.bypass-places__switch {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid;
  padding: 8px;
  margin: 8px 0;
}
.bypass-places__switch input {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.bypass-places__switch__label {
  cursor: pointer;
}
.bypass-places__switch__label:before {
  content: "";
  position: absolute;
  right: 8px;
  width: 45px;
  height: 25px;
  background-color: #BFBFBF;
  border-radius: 14px;
}
.bypass-places__switch__label:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 31px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
input:checked + .bypass-places__switch__label:before {
  background-color: #64c466;
}
input:checked + .bypass-places__switch__label:after {
  right: 10px;
  background-color: #fff;
}
.bypass-places span {
  text-align: center;
  font-weight: bold;
}

.next-action {
  width: 100px;
  height: 40px;
  cursor: pointer;
  border-radius: 15px;
  border: 1px solid;
  background-color: #5ac4f6;
  text-align: center;
  align-content: center;
  font-weight: bold;
  margin: 20px auto 0;
}

.malfunction-detect {
  border-radius: 10px;
  border: 0;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.malfunction-detect span {
  font-weight: bold;
}
.malfunction-detect .detection {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  font-weight: bold;
}
.malfunction-detect .detection .detected, .malfunction-detect .detection .not-detected {
  cursor: pointer;
  width: 50px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid;
  background-color: #ea4d3d;
  text-align: center;
  align-content: center;
}
.malfunction-detect .detection .not-detected {
  background-color: #64c466;
}
.malfunction-detect #closed-on-blur {
  height: 100%;
  border-radius: 10px;
  border: 1px solid;
  align-content: center;
  padding: 15px;
}

.malfunction-img {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}
.malfunction-img::file-selector-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.services-total {
  position: sticky;
  top: 59px;
  background-color: white;
}
[data-scrolldir=down] .services-total {
  top: 0;
}
.services-total__payment {
  justify-self: end;
}

.bypass-complete-button {
  display: flex;
  margin: auto;
}

.bypass-screenshots {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  padding: 10px;
  height: 350px;
}

.bypass-screenshot {
  position: relative;
}
.bypass-screenshot img {
  height: 330px;
}
.bypass-screenshot__remove {
  position: absolute;
  right: 3px;
  top: 3px;
  font-size: 35px;
  display: flex;
}
.bypass-screenshot__remove i {
  cursor: pointer;
  color: red;
  background: white;
  border-radius: 50%;
}
.bypass-screenshot__remove i:before {
  height: 35px;
  width: 35px;
  display: block;
  line-height: 38px;
}

.mallfunction-item {
  display: flex;
  gap: 10px;
  margin: 5px 0;
  padding: 5px 0;
}

.malfunction-slider {
  width: 800px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0px 0px 50px 0px #a19f9f;
  border: 0;
  border-radius: 10px;
}
.malfunction-slider__close {
  position: absolute;
  right: 23px;
  top: 3px;
  font-size: 35px;
  display: flex;
}
.malfunction-slider__close i {
  cursor: pointer;
}
.malfunction-slider__inner {
  margin-top: 40px;
}
.malfunction-slider__screenshot {
  display: flex;
  justify-content: center;
}
.malfunction-slider img {
  max-height: calc(100vh - 154px);
}
.services-total {
  text-align: right;
  font-weight: 500;
  margin: 10px 0;
}
.services-total--success {
  text-align: left;
  display: grid;
  grid-template-columns: 4fr 3fr 1fr 3fr 3fr;
  grid-gap: 10px;
  align-items: center;
  height: 40px;
  justify-self: end;
  max-width: 600px;
}
.services-total--success > button {
  justify-self: end;
}
.services-total--payment {
  margin: 0;
  font-weight: normal;
  grid-template-columns: 120px 80px 80px;
  margin-right: 50px;
}
.services-total__sum {
  text-align: right;
}
.services-total__mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .services-total__mobile {
    display: inline-block;
  }
}
.services-total__wide {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .services-total__wide {
    display: none;
  }
}

textarea.editable {
  width: 100%;
}

.act-save {
  margin: 15px 0;
}

.service-cost__input {
  width: 80px;
}

.service-cost__button {
  display: none;
}
@media screen and (max-width: 1640px) {
  .service-cost__button {
    padding: 1px 12px;
    width: 35px;
    display: block;
  }
}

.abonent-editor {
  width: 600px;
  height: 100px;
}
@media screen and (max-width: 1640px) {
  .abonent-editor {
    width: 160px;
    height: 100px;
  }
}

.services-total__menu {
  display: inline-block;
}

.services-total__dropdown-box {
  display: none;
  z-index: 10;
  position: absolute;
  width: 206px;
}

.services-total__subitems {
  display: block;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  color: initial;
  margin-top: 27px;
  background: #fff;
}

.services-total__item {
  padding: 7px 0px;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: left;
}

.no-mallfunctions {
  margin-bottom: 20px;
}

.contracts-info__row {
  display: grid;
  grid-template-columns: max-content auto;
  grid-gap: 50px;
}
.detect-gap-support {
  position: absolute;
  top: 0;
  height: 10px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  gap: 10px;
}
.detect-gap-support__item {
  width: 10px;
  height: 10px;
}
.docs-buttons {
  margin: 15px 0;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .docs-buttons {
    justify-content: center;
  }
}

.doc-sign__canvas {
  width: 898px;
  height: 449px;
  margin: 0 -25px 0 -25px;
}
@media screen and (max-width: 988px) {
  .doc-sign__canvas {
    height: calc((100vw - 44px) / 2);
    width: calc(100vw - 44px);
  }
}

.doc-sign-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  bottom: 0;
  position: relative;
}
.faq-section-list {
  margin-bottom: 20px;
}
.faq-section-list__link--active {
  font-weight: bold;
}
.favorite-btn {
  cursor: pointer;
  margin-left: 10px;
  transition: opacity 0.2s;
  opacity: 0.2;
}
.favorite-btn:hover {
  opacity: 0.4;
}
.favorite-btn:after {
  vertical-align: middle;
  font-family: "Font Awesome 5 Pro";
  content: "\f005";
  font-weight: 200;
  font-size: 0.7em;
}
.favorite-btn--in-favorites:after {
  font-weight: 600;
}

.favorite__section {
  margin-bottom: 50px;
}
.favorite__section:last-child {
  margin-bottom: 0;
}
.favorites-toggle {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  cursor: pointer;
  font-size: 2rem;
}
.favorites-toggle .fas,
.favorites-toggle .far {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.favorites-toggle .favorites-filled {
  opacity: 0;
  color: gold;
  transform: scale(0.8);
}
.favorites-toggle .favorites-empty {
  color: #aaa;
}
.favorites-toggle.favorites-active .favorites-filled {
  opacity: 1;
  animation: favorites-pop 0.3s ease;
}
.favorites-toggle.favorites-active .favorites-empty {
  opacity: 0;
}
.favorites-toggle.favorites-active .favorites-sparkles {
  animation: favorites-spark 0.6s ease forwards;
}
.favorites-toggle.favorites-active .favorites-sparkles::before {
  animation: favorites-sparkle-move-1 0.6s ease forwards;
}
.favorites-toggle.favorites-active .favorites-sparkles::after {
  animation: favorites-sparkle-move-2 0.6s ease forwards;
}
.favorites-toggle.favorites-active .favorites-pulse {
  animation: favorites-pulse-wave 0.6s ease-out forwards;
}
.favorites-toggle .favorites-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5em;
  height: 0.5em;
  pointer-events: none;
  opacity: 0;
}
.favorites-toggle .favorites-sparkles::before, .favorites-toggle .favorites-sparkles::after {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  background: gold;
  border-radius: 50%;
  opacity: 0;
}
.favorites-toggle .favorites-sparkles::before {
  top: -1em;
  left: -0.5em;
}
.favorites-toggle .favorites-sparkles::after {
  top: -1em;
  left: 0.5em;
}
.favorites-toggle .favorites-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2em;
  height: 2em;
  margin-left: -1em;
  margin-top: -1em;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.5);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

@keyframes favorites-pop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes favorites-spark {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes favorites-sparkle-move-1 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-1em, -1em) scale(0);
  }
}
@keyframes favorites-sparkle-move-2 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(1em, -1em) scale(0);
  }
}
@keyframes favorites-pulse-wave {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  70% {
    transform: scale(2);
    opacity: 0.3;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.form--mb {
  margin-bottom: 40px;
}
.form--mw {
  max-width: 600px;
}

.form-field {
  position: relative;
  margin: 25px 0;
}
.form-field--nm {
  margin: 0;
}
.form-field--hidden {
  display: none;
}
.form-field__label {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  white-space: nowrap;
}
.form-field__label::before {
  content: attr(data-title);
  position: absolute;
  transform: translateY(1px);
  left: 10px;
  line-height: 34px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  transition: 0.2s;
  border-radius: 2px;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .form-field__label::before {
    transform: translateY(-1px);
  }
}
.form-field__input {
  width: 100%;
  padding: 4.22px 10px;
  box-sizing: border-box;
  font-size: inherit;
  color: #222;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  transition: 0.2s;
  transition-property: box-shadow, border-color;
  max-width: 100%;
  line-height: inherit;
}
@media screen and (max-width: 576px) {
  .form-field__input {
    padding: 5.82px 10px;
  }
}
.form-field__input::placeholder {
  color: rgba(0, 0, 0, 0);
}
.form-field__input:not(:placeholder-shown) + label, .form-field__input:-webkit-autofill + label, .form-field__input:focus + label {
  overflow: visible;
}
.form-field__input:not(:placeholder-shown) + label::before, .form-field__input:-webkit-autofill + label::before, .form-field__input:focus + label::before {
  line-height: 1em;
  font-size: 13px;
  top: -10px;
  background: #fff;
  padding: 0 6px;
  left: 9px;
  color: var(--color-main);
  transform: translateY(2px);
}
.form-field__input:focus {
  outline: 0;
  border-color: var(--color-main);
  box-shadow: 0 0 0 1px var(--color-main);
}
.form-field__input:-webkit-autofill, .form-field__input:-webkit-autofill:hover, .form-field__input:-webkit-autofill:focus, .form-field__input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}
.form-field__input--width {
  width: 600px;
  max-width: 100%;
}
.form-field__input--textarea {
  min-width: 200px;
  min-height: 50px;
}
.form-field--max-width {
  max-width: 600px;
}
.form-field__file {
  display: flex;
  padding: 4.21px 12px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
}

.form-group--columns {
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: minmax(0, max-content) max-content;
}
@media screen and (max-width: 576px) {
  .form-group--columns {
    grid-template-columns: minmax(0, max-content);
  }
}
.form-group--margin {
  margin: 25px 0;
}

.form-mw {
  max-width: 300px;
}

.form-file-box {
  max-width: 360px;
  position: relative;
}
.form-file-box__input {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  font-size: 0;
}
.form-file-box__input:focus ~ .form-file {
  border-color: #3B71CA;
  box-shadow: 0 0 0 1px #3B71CA;
}
.form-file-box__input:focus ~ .form-file > *:first-child {
  border-right-color: var(--color-main);
}

.form-file {
  display: flex;
  align-items: center;
  padding: 0;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  transition: 0.2s;
}
.form-file > *:first-child {
  border-right: 1px solid #BDBDBD;
  transition: 0.2s;
}
.form-file__title, .form-file__filename {
  padding: 4.2px 12px;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .form-file__title, .form-file__filename {
    padding: 5.8px 12px;
  }
}
.form-file__filename {
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-valid-submit-btn:valid button[type=submit] {
  opacity: 1;
}

.switch {
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 24px;
}
.switch__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 20px;
  opacity: 0;
  z-index: 0;
}
.switch__label {
  display: block;
  padding: 0 0 0 44px;
  cursor: pointer;
}
.switch__label:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 36px;
  height: 14px;
  background-color: #BFBFBF;
  border-radius: 14px;
  z-index: 1;
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch__label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: left, background-color;
}
.switch__input:checked + .switch__label:before {
  background-color: color-mix(in srgb, var(--color-main), #fff 30%);
}
.switch__input:checked + .switch__label:after {
  left: 16px;
  background-color: var(--color-main);
}
.header {
  padding-right: 20px;
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  height: var(--size-height-header);
  background-color: #fff;
  transform: translateY(0);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.07), 0 2px 2px 0 rgba(0, 0, 0, 0.04);
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
}
@media screen and (max-width: 576px) {
  .header {
    padding-right: 0;
  }
}
[data-scrolldir=down] .header {
  box-shadow: 0 0 3px 0 transparent, 0 2px 2px 0 transparent;
  transform: translateY(-100%);
}
.header__info-box {
  display: flex;
}
@media screen and (max-width: 576px) {
  .header__info-box {
    margin-right: 10px;
  }
}
.header__logo-wrap {
  padding-left: 40px;
  height: var(--size-height-header);
  display: flex;
  align-items: center;
  visibility: hidden;
  transition: 0s;
}
@media screen and (max-width: 576px) {
  .header__logo-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .header__logo-wrap {
    visibility: visible;
  }
}
.header__logo-wrap:hover {
  color: var(--color-secondary);
}
.header__logo {
  position: relative;
  top: -2px;
  height: 40px;
  margin: 0 auto;
  display: block;
}
.header__inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header__btn {
  border: none;
  background-color: transparent;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  font-family: inherit;
  height: var(--size-height-header);
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .header__btn {
    height: calc(var(--size-height-header) - 20px);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
  }
}

.header-user__title {
  position: relative;
}
.header-user__title:after {
  margin-left: 8px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f007";
}
@media screen and (max-width: 576px) {
  .header-user__title-text {
    white-space: nowrap;
    max-width: 33vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.header-user__content {
  display: none;
}

.header-user-content {
  width: 150px;
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-user-content__link {
  padding: 5px 0;
  display: block;
  color: #fff;
}
.header-user-content__link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-notify {
  position: relative;
}
.header-notify__title:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f0f3";
}
.header-notify__count {
  padding: 0 4px;
  height: 13px;
  font-size: 9px;
  position: absolute;
  top: 17px;
  right: 15px;
  background-color: var(--color-extra-accent);
  border-radius: 50%;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .header-notify__count {
    top: 5px;
    right: 3px;
  }
}

.header-editor {
  position: relative;
}
.header-editor__title:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f51c";
}

.mobile-btn-nav {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 60px;
  right: 60px;
  background-color: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  z-index: 1;
  transition-property: opacity;
  transition-duration: 0.2s;
}
@media screen and (max-width: 800px) {
  .mobile-btn-nav {
    display: flex;
  }
}
[data-scrolldir=down] .mobile-btn-nav {
  pointer-events: none;
  opacity: 0;
}
.mobile-btn-nav:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 100%;
  content: "\f0c9";
  color: #fff;
}
.icon:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f05a";
  font-weight: 400;
}
.info-wrap {
  margin: 40px 0;
}
.info-wrap:first-child {
  margin-top: 0;
}

.info {
  overflow: hidden;
  padding-bottom: 18px;
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
}
.info > .info-item-box {
  display: none;
}
.info > .info-item-box:nth-child(1), .info > .info-item-box:nth-child(2), .info > .info-item-box:nth-child(3) {
  display: block;
}
@media screen and (max-width: 1199px) {
  .info > .info-item-box:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .info > .info-item-box:nth-child(2) {
    display: none;
  }
}

.info-item-box {
  float: left;
  padding: 40px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .info-item-box {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .info-item-box {
    width: 100%;
  }
}
.info-item-box--columns-4 {
  width: 25%;
}
@media screen and (max-width: 1199px) {
  .info-item-box--columns-4 {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 1199px) {
  .info-item-box--columns-4 {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .info-item-box--columns-4 {
    width: 100%;
  }
}

.info-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}
.info-item__pic {
  opacity: 0;
  width: 100%;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  height: 250px;
  object-fit: cover;
  object-position: 50% 20%;
  transition: opacity 0.2s;
}
@media screen and (max-width: 576px) {
  .info-item__pic {
    height: 180px;
  }
}
.info-item__pic[data-orientation=vertical] {
  width: auto;
}
.info-item__pic--visible {
  opacity: 1;
}
.info-item__pic--vestnik {
  opacity: 1;
  margin: 34px auto 0 auto;
  border-radius: 8px;
  max-width: 140px;
  height: auto;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.14);
}
.info-item__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 34px 24px;
}
.info-item__date {
  margin-bottom: 10px;
  font-size: 12px;
}
.info-item__title {
  overflow: hidden;
  font-weight: 500;
  margin-bottom: 10px;
  height: 3.5em;
}
.info-item__title--vestnik {
  text-align: center;
  height: 1.6em;
}
.info-item__des {
  overflow: hidden;
  margin-bottom: 25px;
  height: 5em;
}
.info-item__link {
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 1px;
}
.info-item__link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.2s;
  opacity: 0;
}
.info-item__link:hover {
  color: #fff;
}
.info-item__link:hover:before {
  opacity: 1;
}
.info-item__link--news {
  background-color: #E4E4E4;
}
.install-app {
  margin-top: 20px;
}
@media all and (display-mode: standalone) {
  .install-app {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .fancy-install-app.fancybox-container .fancybox-close-small {
    bottom: 0;
    right: 0;
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 576px) {
  .fancy-install-app.fancybox-container .fancybox-slide {
    opacity: 1;
    padding: 0;
    text-align: right;
  }
}
@media screen and (max-width: 576px) {
  .fancy-install-app.fancybox-container.fancybox-is-open .fancybox-content {
    animation: slideInUp;
    animation-duration: 0.3s;
  }
}
@media screen and (max-width: 576px) {
  .fancy-install-app.fancybox-container.fancybox-is-closing div.fancybox-content {
    animation: slideOutDown;
    animation-fill-mode: forwards;
    animation-duration: 0.3s;
  }
}
@media screen and (max-width: 576px) {
  .fancy-install-app.fancybox-container .fancybox-slide {
    display: flex;
    align-items: flex-end;
  }
  .fancy-install-app.fancybox-container .fancybox-slide:before {
    display: none;
  }
}
.fancy-install-app.fancybox-container .fancybox-content {
  max-width: 500px;
}
@media screen and (max-width: 576px) {
  .fancy-install-app.fancybox-container .fancybox-content {
    max-width: none;
    border-radius: 0;
  }
}
.jobs {
  border-radius: 20px;
  max-width: var(--size-width-main);
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

.jobs-item {
  padding: 20px 30px;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, max-content) 1fr minmax(0, max-content);
  gap: 30px;
  border-bottom: 2px solid #F6F6F6;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .jobs-item {
    grid-template-columns: 1fr;
    padding: 20px;
    grid-gap: 10px;
  }
}
.jobs-item:hover {
  background: #FAFAFA;
}
.jobs-item:last-child {
  border-bottom: none;
}
.jobs-item__title {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2em;
}
@media screen and (max-width: 1199px) {
  .jobs-item__title {
    font-size: 16px;
  }
}
.jobs-item__date {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}
.jobs-item__main {
  width: 180px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.jobs-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.jobs-item-props {
  width: 220px;
  max-width: 100%;
}
.jobs-item-props__item {
  font-weight: 400;
  font-size: 12px;
}

.job-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.job-header__inner {
  padding-left: 25px;
}
.job-header__label {
  font-style: italic;
}

.job-main-task {
  font-size: 18px;
}

.job-list {
  display: grid;
  grid-template-columns: 155px 155px 1fr 1fr;
  grid-column-gap: 20px;
  padding: 10px;
  width: 100%;
  color: var(--color-secondary);
}
.job-list--header {
  font-weight: 500;
  padding: 18px 24px;
}
.job-list__cell {
  vertical-align: middle;
}

.object_status {
  cursor: pointer;
}

.object_status:hover {
  background: lightblue;
}

.job__attach_file {
  text-align: center;
}

.job__attach_icon:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f0c6";
  font-style: normal;
}

.jobs-filter {
  margin-bottom: 40px;
}

.jobs-header {
  margin-bottom: 20px;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader__spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2196F3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
.loader__text {
  margin-left: 10px;
  font-size: 14px;
  font-family: Arial;
  color: #333;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.login-form-box {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #F5F2F0;
}
.login-form-box__inner {
  border-radius: 15px;
  max-width: 100%;
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .login-form-box__inner {
    padding: 20px;
  }
}
.login-form-box__bottom {
  margin: 25px 0;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .login-form-box__bottom {
    flex-direction: column;
  }
}
.login-form-box__caption {
  margin-top: 40px;
}

.login-form--max-width {
  max-width: 100%;
  width: 360px;
}

.login-form-box-intro {
  margin-bottom: 40px;
}
.login-form-box-intro__logo {
  width: 200px;
  height: 89px;
  margin: 0 auto;
  display: block;
}

.login-form-box-info {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 5px;
  flex-wrap: wrap;
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
}
.login-form-box-info__item {
  position: relative;
  color: var(--color-secondary);
}
.login-form-box-info__item:after {
  top: 50%;
  transform: translateY(-3px);
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  position: absolute;
  right: -12px;
}
.login-form-box-info__item:last-child:after {
  display: none;
}
.login-form-box-info__link {
  color: inherit;
}
.login-form-box-info__link:hover {
  transition: 0.2s;
  color: var(--color-main);
}
.lunch-room {
  border-radius: 20px;
  max-width: var(--size-width-main);
  padding: 30px;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 576px) {
  .lunch-room {
    padding: 20px;
  }
}

.lunch-room-group {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .lunch-room-group {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
.lunch-room-group:after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  max-width: 300px;
  width: 100%;
  background-color: var(--color-secondary);
  height: 1px;
}
@media screen and (max-width: 576px) {
  .lunch-room-group:after {
    max-width: 100px;
  }
}
.lunch-room-group:last-child:after {
  display: none;
}
.lunch-room-group__title {
  margin-bottom: 40px;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .lunch-room-group__title {
    font-size: 21px;
    margin-bottom: 20px;
    text-transform: initial;
  }
}

.lunch-room-wrap-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media screen and (max-width: 800px) {
  .lunch-room-wrap-items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .lunch-room-wrap-items {
    grid-gap: 20px;
  }
}

.lunch-room-item__title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.lunch-room-header {
  margin-bottom: 30px;
}
.lunch-room-header__update-date {
  font-size: 14px;
  color: var(--color-secondary);
}

.lunch-room-dish-title[aria-describedby] {
  color: var(--color-main);
}

.lunch-room-view {
  max-width: 270px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.lunch-room-view__title {
  white-space: nowrap;
}
.lunch-room-view__select-box {
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--color-secondary);
  background-color: #fff;
}

body:has(dialog[open]) {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--color-main);
  transition-property: color, background-color;
  transition-duration: 0.2s;
  word-wrap: break-word;
}

ul, ol {
  list-style: none;
}

p {
  margin: 20px 0;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 16px;
}

.link-new-window:after {
  margin-left: 7px;
  font-family: "Font Awesome 5 Pro";
  content: "\f08e";
  font-weight: 600;
}

.container {
  width: 100%;
  padding: 0 40px;
  max-width: 1380px;
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

[id^=wait_comp] {
  display: none !important;
}

img {
  max-width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.overflow-box {
  overflow: auto;
}

.intro-animation {
  animation: 0.2s show ease;
}
@keyframes show {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* for div on bottom page of '?show_page_exec_time=Y' param*/
.bx-debug-summary {
  position: relative;
  z-index: 10;
}

.hidden {
  display: none;
}

.o-hidden {
  overflow: hidden;
}

.checkbox-big {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 10px;
  border-color: var(--color-main);
}
.message {
  max-width: 800px;
  margin: 20px 0;
  display: flex;
  padding: 24px 20px;
  background-color: #F5F5F5;
  color: var(--color-secondary);
  border-radius: 8px;
}
.message:before {
  margin-right: 15px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.message a {
  color: inherit;
  text-decoration: underline;
  transition: text-decoration-color 0.2s;
}
.message a:hover {
  text-decoration-color: transparent;
}
.message--error {
  background-color: #F9E1E5;
  color: #af233a;
}
.message--error:before {
  content: "\f057";
}
.message--success {
  background-color: #d6f0e0;
  color: #0d6832;
}
.message--success:before {
  content: "\f058";
}
.message--warning {
  background-color: #FBF0DA;
  color: #73510d;
}
.message--warning:before {
  content: "\f071";
}
.message--info {
  background-color: #DFE7F6;
  color: #2c58a0;
}
.message--info:before {
  content: "\f05a";
}
.nav {
  display: block;
  list-style: none;
}
.nav__item {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.nav__item:last-child {
  border-bottom: none;
}
.nav__link {
  padding: 15px 25px;
  display: flex;
  color: #616161;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .nav__link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.nav__link:hover {
  color: var(--color-main);
}
.nav__link:before {
  width: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 15px;
}
.nav__link--icon-1:before {
  content: "\f46d";
}
.nav__link--icon-2:before {
  content: "\f2b9";
}
.nav__link--icon-3:before {
  content: "\f0a1";
}
.nav__link--icon-4:before {
  content: "\f1e4";
}
.nav__link--icon-5:before {
  content: "\f2e7";
}
.nav__link--icon-6:before {
  content: "\f1ea";
}
.nav__link--icon-7:before {
  content: "\f158";
}
.nav__link--icon-8:before {
  content: "\f11c";
}
.nav__link--icon-9:before {
  content: "\f015";
}
.nav__link--icon-10:before {
  content: "\f15c";
}
.nav__link--active {
  background-color: var(--color-light-secondary);
}
.nav__icon {
  margin-right: 15px;
}
.notice__header {
  margin-bottom: 40px;
}
.notice__date {
  font-size: 12px;
}
.notice__buttons {
  margin-top: 40px;
}

.notice-link {
  display: block;
  padding: 10px 20px;
  color: inherit;
}
.notice-link:hover {
  background-color: #EEEEEE;
}
.notice-link__date {
  font-weight: 400;
  font-size: 12px;
  color: var(--color-secondary);
}
.notice-link__message {
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.4;
}

.notice-tooltip {
  max-height: calc(100vh - 60px - 20px);
  overflow: hidden;
}
.notice-tooltip__info {
  padding: 40px 10px 0 10px;
  text-align: center;
  font-weight: 400;
}
.notice-tooltip__item {
  border-bottom: 1px solid #EEEEEE;
}
.notice-tooltip__item:first-child {
  border-top: 1px solid #EEEEEE;
}
.notice-tooltip__btn {
  margin: 30px auto 30px auto;
}

.notices {
  border-radius: 20px;
  max-width: var(--size-width-main);
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

.notices-item {
  position: relative;
  color: inherit;
}
.notices-item:last-child > * {
  border-bottom: none;
}
.notices-item__link {
  padding: 20px 30px;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, max-content) 1fr;
  gap: 30px;
  border-bottom: 2px solid #F6F6F6;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .notices-item__link {
    grid-template-columns: 1fr;
    padding: 20px;
    grid-gap: 10px;
  }
}
.notices-item__link:hover {
  background: #FAFAFA;
}
.notices-item__title {
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .notices-item__title {
    font-size: 16px;
  }
}
.notices-item__remove {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 15px;
  color: var(--color-extra-accent);
}
.notices-item__remove:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f2ed";
  font-weight: 400;
  color: var(--color-extra-accent);
  opacity: 0;
}
@media screen and (max-width: 1199px) {
  .notices-item__remove:after {
    opacity: 1;
  }
}
.notices-item:hover .notices-item__remove:after {
  opacity: 0.8;
}
.notices-item .notices-item__remove:hover:after {
  opacity: 1 !important;
}
.notices-item__date {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}
.notices-item__status {
  padding: 0 12px;
  font-size: 13px;
  line-height: 32px;
  border-radius: 16px;
  background-color: #ebedef;
  color: #40464f;
}
.notices-item__status--processing {
  background-color: #fbf0da;
  color: #73510d;
}
.notices-item__status--completed {
  background-color: #d6f0e0;
  color: #0d6832;
}
.notices-item__main {
  width: 180px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.notices-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.notices-item-props {
  width: 220px;
  max-width: 100%;
}
.notices-item-props__item {
  font-weight: 400;
  font-size: 12px;
}
.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__link {
  padding: 6px 12px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.2s;
  color: inherit;
}
.pagination__link:hover {
  background-color: #EEEEEE;
}
.pagination__link--current {
  font-weight: bold;
  pointer-events: none;
}
.polls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media screen and (max-width: 800px) {
  .polls {
    grid-template-columns: repeat(1, 1fr);
  }
}

.polls-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}
.polls-item__header {
  width: 100%;
  gap: 20px;
  display: flex;
  justify-content: space-between;
}
.polls-item__date {
  color: #838383;
  line-height: 32px;
}
@media screen and (max-width: 576px) {
  .polls-item__date {
    line-height: 1.6;
  }
}
.polls-item__title {
  font-size: 20px;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 576px) {
  .polls-item__title {
    line-height: 1.2;
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .polls-item__btn {
    width: 100%;
  }
}
.polls-item__description {
  margin-top: 8px;
}

.polls-item-footer {
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 20px;
  width: 100%;
  padding-top: 16px;
  margin-top: auto;
}
@media screen and (max-width: 576px) {
  .polls-item-footer {
    flex-direction: column;
  }
}

.polls-item-footer-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .polls-item-footer-tags {
    order: -1;
  }
}
.polls-item-footer-tags__item {
  padding: 0 12px;
  font-size: 13px;
  line-height: 32px;
  border: 1px solid var(--color-secondary);
  border-radius: 16px;
}
.polls-item-footer-tags__item--completed {
  border-color: var(--color-secondary);
}
.polls-item-footer-tags__item--new {
  border-color: #d1485f;
  color: #d1485f;
}
.profile__main {
  display: grid;
  align-items: flex-start;
  grid-template-columns: minmax(0, max-content) 1fr;
  grid-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .profile__main {
    grid-template-columns: 1fr;
  }
}
.profile__card {
  position: sticky;
  top: 80px;
  width: 400px;
  max-width: 100%;
  transition: 0.2s;
}
[data-scrolldir=down] .profile__card {
  top: 20px;
}
@media screen and (max-width: 1199px) {
  .profile__card {
    position: static;
  }
}
@media screen and (max-width: 800px) {
  .profile__card {
    width: auto;
  }
}
.profile__info {
  max-width: 876px;
}
.profile__card-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 34px 0;
}
.profile__change-password, .profile__change-email {
  max-width: 400px;
}

.profile-card__avatar {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.profile-card__avatar--circle {
  border-radius: 50%;
}
.profile-card__info {
  margin-top: 10px;
  margin-bottom: 30px;
}
.profile-card__name {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  color: #757575;
}
.profile-card__email {
  font-size: 14px;
  text-align: center;
  color: #757575;
}
.profile-card__buttons {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.profile-info__block {
  margin-bottom: 20px;
}
.profile-info__title {
  margin: 10px 0;
  font-weight: 500;
}
.acts-results {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  flex-flow: wrap;
}
.acts-results__result {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-gap: 5px 20px;
  font-weight: bold;
}

.success {
  background: #98fb98;
}

.no-access {
  background: #FFCBDB;
}

.new-request-dialog {
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px #a19f9f;
  border: 1px solid #a19f9f;
  box-sizing: border-box;
  background: #fff;
  position: fixed;
  left: 5%;
  top: 5%;
  right: 5%;
  bottom: 5%;
  width: 90%;
  max-width: 900px;
  overflow: auto;
  z-index: 30;
}
.new-request-dialog--small {
  bottom: unset;
}
.new-request-dialog__title {
  margin: -25px -25px 0 -25px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: var(--color-light-secondary);
  background: var(--color-main);
}
.new-request-dialog__close-xmark {
  font-size: 28px;
  position: absolute;
  right: calc(1em - 14px);
  top: 5px;
  color: var(--color-light-secondary);
}
.new-request-dialog__section {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
.new-request-dialog__section-label {
  position: relative;
  top: 6px;
  margin: 0 0 30px 0;
  font-weight: bold;
  width: max-content;
  display: block;
  background: #fff;
  padding: 0 10px;
  cursor: pointer;
}
.new-request-dialog__section-label:before {
  margin-right: 5px;
}
.new-request-dialog__section-label ~ .new-request-dialog__section {
  border-top: 1px dashed;
}
.new-request-dialog__section--hidden {
  display: none;
}
.new-request-dialog__field {
  position: relative;
  width: 100%;
  min-height: 1px;
  margin: 5px 0;
  padding-right: 15px;
  padding-left: 15px;
}
.new-request-dialog__field label {
  display: block;
  margin-bottom: 2px;
  color: var(--color-main);
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .new-request-dialog__field--16 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
}
@media screen and (min-width: 576px) {
  .new-request-dialog__field--25 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 576px) {
  .new-request-dialog__field--50 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 576px) {
  .new-request-dialog__field--75 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 576px) {
  .new-request-dialog__field--100 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.new-request-dialog__input {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 15px;
  color: var(--color-main);
}
.new-request-dialog__label {
  margin-left: 15px;
  margin-top: 30px;
  color: var(--color-main);
}
.new-request-dialog__file-attach {
  margin-left: 15px;
}
.new-request-dialog__file-attach:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s;
  font-size: 0.8125rem;
  line-height: 1;
  vertical-align: middle;
  font-weight: bold;
}
.new-request-dialog__slide {
  margin: 30px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
}
.new-request-dialog__tab-sale {
  margin-top: 30px;
}
.new-request-dialog__save-button {
  margin: 35px auto 10px;
  display: block;
  bottom: 0;
  position: relative;
}
.new-request-dialog input, .new-request-dialog select {
  width: 100%;
}
.new-request-dialog__autocomplete {
  z-index: 31 !important;
}
.form-outline {
  position: relative;
  background-color: #fff;
}

select {
  word-wrap: normal;
}

.form-label {
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
}

.form-control,
.select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4f4f4f;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bdbdbd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: all 0.2s linear;
}
@media screen and (max-width: 576px) {
  .form-control,
.select {
    font-size: 14px;
  }
}

.form-control:focus {
  color: #4f4f4f;
  background-color: #fff;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(59, 113, 202, 0.25);
}

.form-control:disabled, .form-control[readonly] {
  background-color: #eee;
  opacity: 1;
}

.form-control {
  min-height: auto;
  padding-top: 4px;
  padding-bottom: 3.28px;
  transition: all 0.1s linear;
}

.form-control:focus {
  transition: all 0.1s linear;
  border-color: #3b71ca;
  box-shadow: inset 0 0 0 1px #3b71ca;
}

.form-outline .form-control,
.select {
  min-height: auto;
  padding: 0.33em 0.75em;
  background: transparent;
  transition: all 0.2s linear;
}

.form-outline .form-control ~ .form-label {
  position: absolute;
  top: 0;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  left: 0.75rem;
  padding-top: 0.37rem;
  pointer-events: none;
  transform-origin: 0 0;
  transition: all 0.2s ease-out;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.form-outline .form-control ~ .form-notch {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  text-align: left;
  pointer-events: none;
}

.form-outline .form-control ~ .form-notch div {
  pointer-events: none;
  border: 1px solid #bdbdbd;
  box-sizing: border-box;
  background: transparent;
  transition: all 0.2s linear;
}

.form-outline .form-control ~ .form-notch .form-notch-leading {
  left: 0;
  top: 0;
  height: 100%;
  width: 0.5rem;
  border-right: none;
  border-radius: 0.25rem 0 0 0.25rem;
}

.form-outline .form-control ~ .form-notch .form-notch-middle {
  flex: 0 0 auto;
  width: auto;
  max-width: calc(100% - 1rem);
  height: 100%;
  border-right: none;
  border-left: none;
}

.form-outline .form-control ~ .form-notch .form-notch-trailing {
  flex-grow: 1;
  height: 100%;
  border-left: none;
  border-radius: 0 0.25rem 0.25rem 0;
}

.form-outline .form-control:focus {
  box-shadow: none !important;
}

.form-outline .form-control.active ~ .form-label, .form-outline .form-control:focus ~ .form-label {
  transform: translateY(-1rem) translateY(0.1rem) scale(0.8);
}

.form-outline .form-control:focus ~ .form-label {
  color: #3b71ca;
}

.form-outline .form-control.active ~ .form-notch .form-notch-middle, .form-outline .form-control:focus ~ .form-notch .form-notch-middle {
  border-right: none;
  border-left: none;
  border-top: 1px solid transparent;
}

.form-outline .form-control:focus ~ .form-notch .form-notch-middle {
  border-color: #3b71ca;
  box-shadow: 0 1px 0 0 #3b71ca;
  border-top: 1px solid transparent;
}

.form-outline .form-control.active ~ .form-notch .form-notch-leading, .form-outline .form-control:focus ~ .form-notch .form-notch-leading {
  border-right: none;
}

.form-outline .form-control:focus ~ .form-notch .form-notch-leading {
  border-color: #3b71ca;
  box-shadow: -1px 0 0 0 #3b71ca, 0 1px 0 0 #3b71ca, 0 -1px 0 0 #3b71ca;
}

.form-outline .form-control.active ~ .form-notch .form-notch-trailing, .form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
  border-left: none;
}

.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
  border-color: #3b71ca;
  box-shadow: 1px 0 0 0 #3b71ca, 0 -1px 0 0 #3b71ca, 0 1px 0 0 #3b71ca;
}

.form-outline .form-control.disabled, .form-outline .form-control:disabled, .form-outline .form-control[readonly] {
  background-color: #e9ecef;
}

.select-input.form-control[readonly]:not([disabled]) {
  background-color: transparent;
}

.select-dropdown {
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0;
  min-width: 100px;
  outline: 0;
  position: relative;
  transform: scaleY(0.8);
  opacity: 0;
  transition: all 0.2s;
}

.select-dropdown.open {
  transform: scaleY(1);
  opacity: 1;
}

.select-input.focused {
  color: #616161;
  outline: 0;
}

.select-options-wrapper {
  overflow-y: auto;
}

.select-options-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.select-options-wrapper::-webkit-scrollbar-button:end:increment, .select-options-wrapper::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 0;
  background-color: transparent;
}

.select-options-wrapper::-webkit-scrollbar-track-piece {
  background-color: transparent;
  border-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.select-options-wrapper::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  border-radius: 4px;
}

.select-options-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select-option {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.87);
  padding-left: 16px;
  padding-right: 16px;
  font-size: 1rem;
  font-weight: 400;
  background-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.select-option span {
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .select-option span {
    font-size: 14px;
  }
}

.select-option.active, .select-option.selected.active, .select-option:hover:not(.disabled) {
  background-color: rgba(0, 0, 0, 0.048);
}

.select-option.selected {
  background-color: rgba(0, 0, 0, 0.02);
}

.form-outline .form-control.active ~ .form-label.select-fake-value, .form-outline .form-control:focus ~ .form-label.select-fake-value, .form-outline .form-control ~ .form-label.select-fake-value {
  transform: none;
  display: none;
}

.select-input {
  cursor: pointer;
}
.sidebar {
  z-index: 30;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 260px;
  width: 100%;
  background-color: #fff;
  overflow-y: auto;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 800px) {
  .sidebar {
    display: none;
  }
}
.sidebar__logo {
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 576px) {
  .sidebar__logo {
    width: 140px;
    height: auto;
  }
}
.sidebar__logo-box {
  width: 100%;
  text-align: center;
  display: block;
  padding: 20px 0;
  align-self: center;
  color: var(--color-secondary);
}
@media screen and (max-width: 576px) {
  .sidebar__logo-box {
    padding: 20px 0;
  }
}
.sidebar__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .sidebar__inner.fancybox-content {
    display: inline-flex !important;
  }
}
.sidebar__bottom {
  margin-top: auto;
}

.fancy-nav.fancybox-container .fancybox-close-small {
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
}
.fancy-nav.fancybox-container .fancybox-slide {
  opacity: 1;
  padding: 0;
  text-align: right;
}
.fancy-nav.fancybox-container.fancybox-is-open .fancybox-content {
  animation: slideInRight;
  animation-duration: 0.3s;
}
.fancy-nav.fancybox-container.fancybox-is-closing div.fancybox-content {
  animation: slideOutRight;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}
.fancy-nav.fancybox-container .fancybox-content {
  padding: 0;
  width: 260px;
  margin-bottom: 0;
  border-radius: 0;
  min-height: 100vh;
  min-height: 100dvh;
}
.fancy-nav.fancybox-container .fancybox-content:after {
  content: "fancybox-disable";
  display: none;
}
@media screen and (max-width: 800px) {
  .fancy-nav.fancybox-container .fancybox-content:after {
    content: "";
    display: none;
  }
}

.sidebar-social {
  text-align: center;
  padding: 20px 0;
}
.sidebar-social__item {
  margin: 0 5px;
}
.sidebar-social__item:after {
  font-family: "Font Awesome 5 Brands";
  content: "\f08e";
  font-weight: 600;
  font-size: 20px;
  color: #696868;
  transition: 0.2s;
}
.sidebar-social__item--vk:after {
  content: "\f189";
}
.sidebar-social__item--vk:hover:after {
  color: #4E7DB2;
}
.sidebar-social__item--yt:after {
  content: "\f167";
}
.sidebar-social__item--yt:hover:after {
  color: #F70000;
}
.sidebar-social__item--tg:after {
  content: "\f2c6";
}
.sidebar-social__item--tg:hover:after {
  color: #0084C6;
}
.sidebar-social__item--ok:after {
  content: "\f263";
}
.sidebar-social__item--ok:hover:after {
  color: #E77E08;
}
.spoiler-box {
  max-width: var(--size-width-main);
  overflow: hidden;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
.spoiler-box--job-progress {
  max-width: unset;
}
.spoiler-box--full-width {
  max-width: none;
}

.spoiler-item {
  border-bottom: 1px solid #E0E0E0;
  color: rgba(0, 0, 0, 0.4);
}
.spoiler-item:last-child {
  border-bottom: none;
}
.spoiler-item__title {
  color: var(--color-secondary);
}
.spoiler-item__header {
  padding: 18px 24px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}
.spoiler-item__header, .spoiler-item__header ~ .spoiler-item__panel {
  transition-property: color, background-color;
  transition-duration: 0.2s;
}
.spoiler-item__header.open {
  font-weight: 500;
}
.spoiler-item__header.open, .spoiler-item__header.open ~ .spoiler-item__panel {
  background: var(--color-light-secondary);
}
.spoiler-item__header:hover {
  background-color: var(--color-light-secondary);
}
.spoiler-item__header:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f4f4f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  min-width: 20px;
  height: 20px;
  transition: 0.2s;
}
.spoiler-item__header.open:after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b71ca'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
.spoiler-item__header:before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: transparent;
  transition: background-color 0.2s;
}
.spoiler-item__header.open:before {
  background-color: #E0E0E0;
}
.spoiler-item__panel {
  transition: background-color 0.2s;
  display: none;
}
.spoiler-item__header, .spoiler-item__panel-inner {
  padding: 18px 24px;
}
.spoiler-item__header--mw, .spoiler-item__panel-inner--mw {
  max-width: 800px;
}
.spoiler-item__panel-inner {
  overflow: hidden;
  color: var(--color-secondary);
  padding-top: 0;
}
.status {
  padding: 0 12px;
  font-size: 13px;
  line-height: 32px;
  border-radius: 16px;
}
.status--icon:after {
  margin-left: 7px;
  font-family: "Font Awesome 5 Pro";
  content: "\f059";
  font-weight: 400;
}
.status--title {
  display: inline-flex;
  vertical-align: middle;
}
.status--new {
  background-color: #ebedef;
  color: #40464f;
}
.status--pause, .status--ready {
  background-color: #fbf0da;
  color: #73510d;
}
.status--process {
  background-color: #d6f0e0;
  color: #0d6832;
}
.status--end {
  background-color: #c0eefc;
  color: #0c5460;
}
.status--close {
  background-color: #5a6063;
  color: #b1bec2;
}
.support {
  border-radius: 20px;
  max-width: var(--size-width-main);
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

.support-item {
  padding: 20px 30px;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, max-content) 1fr minmax(0, max-content);
  gap: 30px;
  border-bottom: 2px solid #F6F6F6;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .support-item {
    grid-template-columns: 1fr;
    padding: 20px;
    grid-gap: 10px;
  }
}
.support-item:hover {
  background: #FAFAFA;
}
.support-item:last-child {
  border-bottom: none;
}
.support-item__title {
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .support-item__title {
    font-size: 16px;
  }
}
.support-item__date {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}
.support-item__status {
  padding: 0 12px;
  font-size: 13px;
  line-height: 32px;
  border-radius: 16px;
  background-color: #ebedef;
  color: #40464f;
}
.support-item__status--icon:after {
  margin-left: 7px;
  font-family: "Font Awesome 5 Pro";
  content: "\f059";
  font-weight: 400;
}
.support-item__status--processing {
  background-color: #fbf0da;
  color: #73510d;
}
.support-item__status--completed {
  background-color: #d6f0e0;
  color: #0d6832;
}
.support-item__main {
  width: 180px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.support-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-item-props {
  width: 220px;
  max-width: 100%;
}
.support-item-props__item {
  font-weight: 400;
  font-size: 12px;
}
.table-emulate {
  width: 100%;
  display: table;
  border-collapse: collapse;
  margin-top: 25px;
}
@media screen and (max-width: 1640px) {
  .table-emulate {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .table-emulate {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .table-emulate {
    grid-template-columns: repeat(1, 1fr);
  }
}
.table-emulate__row {
  position: relative;
  display: table-row;
  border: 0;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (max-width: 1640px) {
  .table-emulate__row {
    display: block;
    padding: 24px;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    border-bottom: none;
    border-radius: 10px;
  }
}
@media screen and (max-width: 576px) {
  .table-emulate__row {
    padding: 12px;
  }
}
.table-emulate__row:last-child {
  border-bottom: none;
}
.table-emulate__row--header {
  font-weight: 500;
}
@media screen and (max-width: 1640px) {
  .table-emulate__row--header {
    display: none;
  }
}
.table-emulate__row--header td {
  padding-top: 25px;
}
@media screen and (max-width: 576px) {
  .table-emulate__row--header td {
    padding-top: 15px;
  }
}
.table-emulate__row--header:first-child > * {
  padding-top: 0;
}
@media screen and (min-width: 1640px) {
  .table-emulate__row--link:hover {
    background-color: var(--color-light-secondary);
  }
}
.table-emulate__row-link {
  margin-top: 10px;
}
@media screen and (min-width: 1640px) {
  .table-emulate__row-link {
    margin: 0;
    padding: 0;
    transition-duration: 0s;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: var(--color-main);
    font-size: 0;
    background-color: transparent;
    box-shadow: none;
  }
}
@media screen and (max-width: 576px) {
  .table-emulate__row-link {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 0;
    background-color: transparent;
  }
}
@media screen and (min-width: 1640px) {
  .table-emulate__row-link:hover {
    background-color: transparent;
    box-shadow: none;
  }
}
.table-emulate__cell {
  padding: 16px;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 1640px) {
  .table-emulate__cell {
    margin: 8px 0;
    padding: 0;
    display: block;
  }
}
.table-emulate__cell--header {
  font-weight: bold;
}
@media screen and (max-width: 1640px) {
  .table-emulate__cell--hidden-mobile {
    display: none;
  }
}
@media screen and (max-width: 1640px) {
  .table-emulate__cell--services {
    display: grid;
    grid-template-columns: 3fr 1fr 2fr 1fr;
  }
}
.table-emulate__field-name {
  display: none;
}
.table-emulate__field-name:after {
  margin-right: 4px;
  content: ":";
}
@media screen and (max-width: 1640px) {
  .table-emulate__field-name {
    display: inline-block;
    font-weight: 500;
  }
}
.table-emulate .emptyList {
  margin-top: 30px;
}
.table-emulate .acts {
  display: flex;
  justify-content: space-between;
}
.tickets-wrap {
  max-width: 760px;
}

.tickets-messages-item {
  margin-bottom: 40px;
  background-color: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}
.tickets-messages-item--their {
  border-color: var(--color-main);
}
.tickets-messages-item__header {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}
.tickets-messages-item__header {
  padding: 12px 24px;
}
@media screen and (max-width: 576px) {
  .tickets-messages-item__header {
    padding: 12px;
  }
}
.tickets-messages-item__inner {
  padding: 24px;
}
@media screen and (max-width: 576px) {
  .tickets-messages-item__inner {
    padding: 12px;
  }
}
.tickets-messages-item__author {
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .tickets-messages-item__author {
    font-size: 12px;
  }
}
.tickets-messages-item--their .tickets-messages-item__author {
  color: var(--color-main);
}
@media screen and (max-width: 576px) {
  .tickets-messages-item__date {
    font-size: 12px;
  }
}

.tickets-messages-attach {
  margin-top: 20px;
}
.tickets-messages-attach__item {
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .tickets-messages-attach__item {
    font-size: 12px;
  }
}
.tickets-messages-attach__item:before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f0c6";
  font-weight: 400;
}
.title {
  color: var(--color-secondary);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 576px) {
  .title {
    font-size: 24px;
  }
}
.title--center {
  text-align: center;
}
.title--not-margin {
  margin: 0;
}
.title--mb-small {
  margin-bottom: 20px;
}
.title--small {
  font-size: 24px;
}
@media screen and (max-width: 576px) {
  .title--small {
    font-size: 21px;
  }
}
.title__accent {
  font-weight: 600;
}
.week-range {
  height: 61px;
  overflow: hidden;
  margin-bottom: 20px;
}
.week-range__aggregator {
  width: 100%;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}
.week-range__container {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin: 0 5px;
}
@media screen and (max-width: 576px) {
  .week-range__container {
    font-size: 13px;
    margin: auto;
  }
}
@media screen and (max-width: 576px) {
  .week-range {
    height: 59px;
  }
}
.week-range__dates {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f2f2f2;
}

.month-calendar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.month-calendar #calendar {
  cursor: pointer;
}

.daterangepicker {
  width: 320px !important;
}
.daterangepicker .calendar-table {
  width: 300px;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  font-size: 1.1em !important;
}
.daterangepicker .btn {
  margin-left: 30px !important;
}

.list-acts {
  margin-bottom: 20px;
}
.work-area--compensate {
  padding-top: 100px;
  padding-left: 260px;
}
@media screen and (max-width: 800px) {
  .work-area--compensate {
    padding-left: 0;
  }
}
.work-area--padding-bottom {
  padding-bottom: 155px;
}
.work-area--without-auth {
  padding: 40px 0;
}
.work-area--without-auth .container {
  margin: 0 auto;
}
.ya-browser-updater__stripe:after {
  content: "";
  position: fixed;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.ya-browser-updater__stripe__close,
.ya-browser-updater__popup__close {
  display: none;
}

.ya-browser-updater__popup__wrap:after {
  z-index: -100;
  content: "";
  position: fixed;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
}
.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
  background: #fff;
  z-index: 10;
  box-shadow: 0px 0px 50px 0px #a19f9f;
  border: 1px solid #a19f9f;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  max-width: 470px;
  padding: 5px 10px;
}
.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front li {
  cursor: pointer;
}
.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front li:hover {
  background: #ddd;
}
body .no-transition {
  transition-duration: 0s;
}
body .no-transition.open:before {
  transition-duration: 0s;
}
body .no-transition.open:after {
  transition-duration: 0s;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  z-index: 0;
  position: relative;
  display: inline-block;
  /* Input */
  /* Span */
  /* Box */
  /* Checkmark */
  /* Checked, Indeterminate */
  /* Hover, Focus */
  /* Active */
  /* Disabled */
}
.custom-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.custom-checkbox > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}
.custom-checkbox > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 3px 8px 3px 1px;
  border: solid 2px;
  /* Safari */
  border-color: #BFBFBF;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s;
}
@media screen and (max-width: 576px) {
  .custom-checkbox > span::before {
    vertical-align: bottom;
  }
}
.custom-checkbox > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 1px;
  width: 10px;
  height: 5px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
}
.custom-checkbox > input:checked, .custom-checkbox > input:indeterminate {
  background-color: var(--color-main);
}
.custom-checkbox > input:checked + span::before, .custom-checkbox > input:indeterminate + span::before {
  border-color: var(--color-main);
  background-color: var(--color-main);
}
.custom-checkbox > input:checked + span::after, .custom-checkbox > input:indeterminate + span::after {
  border-color: white;
}
.custom-checkbox > input:indeterminate + span::after {
  border-left: none;
  transform: translate(4px, 3px);
}
.custom-checkbox:hover > input {
  opacity: 0.04;
}
.custom-checkbox > input:focus {
  opacity: 0.12;
}
.custom-checkbox:hover > input:focus {
  opacity: 0.16;
}
.custom-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
.custom-checkbox > input:active + span::before {
  border-color: var(--color-main);
}
.custom-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.6);
}
.custom-checkbox > input:disabled {
  opacity: 0;
}
.custom-checkbox > input:disabled + span {
  color: rgba(0, 0, 0, 0.38);
  cursor: initial;
}
.custom-checkbox > input:disabled + span::before {
  border-color: currentColor;
}
.custom-checkbox > input:checked:disabled + span::before, .custom-checkbox > input:indeterminate:disabled + span::before {
  border-color: transparent;
  background-color: currentColor;
}
.nice-select {
  width: 100%;
  float: none;
  border: 1px solid #DFDFDF;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  color: rgba(55, 69, 74, 0.6);
}
.nice-select .current {
  color: #000;
}

.nice-select .list {
  top: calc(100% + 20px);
  overflow: visible;
}
.nice-select .list:before, .nice-select .list:after {
  content: "";
  position: absolute;
  right: 20px;
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.nice-select .list:before {
  top: -15px;
  border-bottom-color: #DFDFDF;
}
.nice-select .list:after {
  top: -15px;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #F4F4F4;
  font-weight: normal;
  color: #000;
}

.nice-select .option.selected {
  font-weight: normal;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #000;
}

.nice-select:after {
  right: 25px;
  height: 9px;
  width: 9px;
  margin-top: -6px;
}

.nice-select.nice-full-width {
  width: 100%;
}
.nice-select.nice-full-width .list {
  left: 0;
  right: 0;
}

.nice-select.modified-select {
  margin-bottom: 30px;
  font-size: 16px;
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .nice-select.modified-select {
    margin-right: 12px;
  }
}
.nice-select.modified-select .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px 14px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #DFDFDF;
}
@media screen and (max-width: 576px) {
  .nice-select.modified-select .list {
    padding: 10px 5px;
  }
}
.nice-select.modified-select .list:hover {
  background-color: #fff;
}
.nice-select.modified-select .list:hover li.option:not(:hover) {
  background-color: #F4F4F8;
}
.nice-select.modified-select .list:hover li.option.selected.focus {
  background-color: #76B926;
}
.nice-select.modified-select .list li {
  display: inline-flex;
  width: 65px;
  height: 30px;
  min-height: 30px;
  margin: 5px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  justify-content: center;
  align-items: center;
  background-color: #F4F4F4;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .nice-select.modified-select .list li {
    width: auto;
    margin: 3px;
    padding: 0 5px;
  }
}
.nice-select.modified-select .list li[data-value=""] {
  display: none;
}
.nice-select.modified-select .list li.selected, .nice-select.modified-select .list li.focused {
  background-color: #76B926;
  color: #fff;
  font-weight: 400;
}
.nice-select.modified-select .list li:hover {
  border-color: #76B926;
}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: var(--color-main);
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  position: relative;
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}
.daterangepicker .drp-buttons:before {
  content: "";
  position: absolute;
  transform: translateY(100%);
  bottom: 0;
  left: 0;
  right: 0;
  height: 155px;
  background: transparent;
  pointer-events: none;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-top: 8px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: var(--color-main);
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
.js-dom-position-box {
  display: none;
}
.fancybox-content {
  border-radius: 20px;
  height: auto;
  overflow: hidden !important;
  background-color: #fff;
}

.fancybox-infobar {
  display: none;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .fancybox-infobar {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .fancybox-navigation .fancybox-button:after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .fancybox-navigation .fancybox-button--arrow_left {
    left: 0 !important;
    transform: scale(0.7);
  }
}
@media screen and (max-width: 576px) {
  .fancybox-navigation .fancybox-button--arrow_right {
    right: 0 !important;
    transform: scale(0.7);
  }
}
.fancybox-slide:before {
  margin: 0;
}

.fancybox-slide--html .fancybox-content {
  margin-bottom: 0;
}

.fancybox-slide--html {
  padding: 20px;
}

.fancybox-slide {
  overflow-x: hidden;
}

.fancybox-content {
  padding: 43px 40px;
  border-radius: 15px;
}
@media screen and (max-width: 576px) {
  .fancybox-content {
    padding: 35px 20px;
  }
}

.fancybox-slide--image {
  padding-left: 20px;
  padding-right: 20px;
}
.fancybox-slide--image .fancybox-content {
  border-radius: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancy-is-animation .fancybox-slide {
  overflow: hidden !important;
}
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.js-dropzone-form, .js-dropzone-form * {
  box-sizing: border-box;
}

.js-dropzone-form.dz-clickable {
  cursor: pointer;
}
.js-dropzone-form.dz-clickable * {
  cursor: default;
}
.js-dropzone-form.dz-clickable .dz-message, .js-dropzone-form.dz-clickable .dz-message * {
  cursor: pointer;
}
.js-dropzone-form.dz-started .dz-message {
  display: none;
}
.js-dropzone-form.dz-drag-hover {
  border-style: solid;
}
.js-dropzone-form.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.js-dropzone-form .dz-message {
  text-align: center;
}
.js-dropzone-form .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.js-dropzone-form .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.js-dropzone-form .dz-preview:hover .dz-details {
  opacity: 1;
}
.js-dropzone-form .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.js-dropzone-form .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.js-dropzone-form .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.js-dropzone-form .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.js-dropzone-form .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.js-dropzone-form .dz-preview:hover .dz-details {
  opacity: 1;
}
.js-dropzone-form .dz-preview .dz-details {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.js-dropzone-form .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.js-dropzone-form .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.js-dropzone-form .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.js-dropzone-form .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.js-dropzone-form .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.js-dropzone-form .dz-preview .dz-details .dz-filename span, .js-dropzone-form .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.js-dropzone-form .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.js-dropzone-form .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
}
.js-dropzone-form .dz-preview .dz-image img {
  display: block;
}
.js-dropzone-form .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.js-dropzone-form .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.js-dropzone-form .dz-preview .dz-success-mark, .js-dropzone-form .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}
.js-dropzone-form .dz-preview .dz-success-mark svg, .js-dropzone-form .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
  fill: white;
}
.js-dropzone-form .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.js-dropzone-form .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.js-dropzone-form .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.js-dropzone-form .dz-preview .dz-progress {
  opacity: 1;
  pointer-events: none;
  position: absolute;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: 15%;
  right: 15%;
  border: 3px solid rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  overflow: hidden;
}
.js-dropzone-form .dz-preview .dz-progress .dz-upload {
  background: white;
  display: block;
  position: relative;
  height: 100%;
  width: 0;
  transition: width 300ms ease-in-out;
  border-radius: 17px;
}
.js-dropzone-form .dz-preview.dz-error .dz-error-message {
  display: block;
  z-index: 1;
}
.js-dropzone-form .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.js-dropzone-form .dz-preview .dz-error-message {
  pointer-events: none;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #b10606;
  padding: 0.5em 1em;
  color: white;
}
.js-dropzone-form .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #b10606;
}

.js-dropzone-open {
  cursor: pointer;
}

.file {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  min-height: 178px;
  max-width: 470px;
  border: 2px dashed #A5AEA8;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.file:hover {
  border-color: #000;
}
.file__input {
  display: none;
}
.file__message-box {
  margin: 19px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.file__message-text {
  color: #37454A;
  font-size: 14px;
  transition: color 0.2s;
  font-weight: 600;
}
.file:hover .file__message-text {
  color: #000;
}
.file__message-icon {
  margin-bottom: 8px;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s;
}
.file-attach-block {
  margin-top: 50px;
}
.file-attach-block__filelist {
  margin-top: 10px;
  display: grid;
  grid-template-columns: max-content max-content;
  grid-gap: 5px 15px;
  align-items: center;
}
.file-attach-block__file-button {
  width: 70px;
  position: relative;
  margin-bottom: 30px;
}

.camera-dialog {
  top: 1em;
  left: 1em;
  right: 1em;
  bottom: 1em;
  height: 90vh;
  overflow: hidden;
  margin: auto;
  box-shadow: 0px 0px 50px 0px #a19f9f;
  border: 1px solid #a19f9f;
  box-sizing: border-box;
  position: relative;
}
.camera-dialog__close {
  position: absolute;
  right: 3px;
  top: 3px;
  font-size: 35px;
  display: flex;
}
.camera-dialog__close i {
  cursor: pointer;
}
.screenshot-image {
  max-width: 150px;
  max-height: 150px;
  border-radius: 4px;
  border: 2px solid whitesmoke;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 5px;
  left: 10px;
  background: white;
}

.display-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: auto;
  position: relative;
}

video {
  margin: auto;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
}

.video-options {
  position: absolute;
  left: 20px;
  top: 30px;
}

.controls {
  position: absolute;
  bottom: 20px;
  display: flex;
}

.controls > button {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 100%;
  margin: 0 6px;
  background: transparent;
}
.controls > button:hover svg {
  color: white !important;
}

@media (min-width: 300px) and (max-width: 400px) {
  .controls {
    flex-direction: column;
  }
  .controls button {
    margin: 5px 0 !important;
  }
}
.controls > button > svg {
  height: 20px;
  width: 18px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

.controls button:nth-child(1), .controls button:nth-child(4) {
  border: 2px solid #D2002E;
}
.controls button:nth-child(1) svg, .controls button:nth-child(4) svg {
  color: #D2002E;
}

.controls button:nth-child(2) {
  border: 2px solid #008496;
}
.controls button:nth-child(2) svg {
  color: #008496;
}

.controls button:nth-child(3) {
  border: 2px solid #00B541;
}
.controls button:nth-child(3) svg {
  color: #00B541;
}

.console-log, .btn.btn-info.pause, .btn.btn-danger.play {
  display: none !important;
}
.qr-scaner {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-flow: column;
  gap: 20px;
  width: 300px;
}
.qr-scaner__container {
  border-radius: 7px;
  height: 300px;
  overflow: hidden;
  position: relative;
  width: 300px;
}
.qr-scaner__message {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  font-size: 18px;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 20px;
  text-align: center;
  top: 0;
  width: 100%;
  word-break: break-all;
  color: #fff;
}
.qr-scaner video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto !important;
}
.qr-scaner #qr-shaded-region {
  border-width: 50px !important;
}
.je-ready .btn {
  margin: 3px;
  display: inline-block;
}

.card-title {
  color: var(--color-secondary);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 576px) {
  .card-title {
    font-size: 24px;
  }
}

.card [aria-label*="[name]"] {
  width: 400px;
}

.json-editor-box {
  margin-bottom: 20px;
}
.json-editor-box:last-child {
  margin-bottom: 0;
}
.json-editor-box--small-title .card-title {
  font-weight: bold;
  font-size: 16px;
}
.lavalamp {
  position: relative;
}
.lavalamp__object {
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lavalamp__object:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 3px solid var(--color-main);
}
.select-dropdown {
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0;
  min-width: 100px;
  outline: 0;
  position: relative;
  transform: scaleY(0.8);
  opacity: 0;
  transition: all 0.2s;
}
.select-dropdown .form-check-input label {
  display: block;
}
.select-dropdown > .input-group {
  padding: 10px;
}

select.select-initialized {
  display: none !important;
}

.select-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-size: 0.8rem;
  position: absolute;
  top: 9px;
  right: 9px;
}
.select-arrow:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f0d7";
}

.was-validated .form-control:valid ~ .select-arrow {
  color: #00b74a;
}
.was-validated .form-control:invalid ~ .select-arrow {
  color: #f93154;
}

.select-clear-btn {
  color: #000;
  font-size: 1rem;
  position: absolute;
  top: 7px;
  right: 27px;
  cursor: pointer;
}
.select-clear-btn:focus {
  color: #3b71ca;
  outline: none;
}

.form-control-sm ~ .select-clear-btn {
  font-size: 0.8rem;
  top: 4px;
}

.form-control-lg ~ .select-clear-btn {
  top: 11px;
}

.select-dropdown.open {
  transform: scaleY(1);
  opacity: 1;
}

.select-label {
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-label.active {
  transform: translateY(-1rem) translateY(0.1rem) scale(0.8);
}

.form-control-lg ~ .select-label.active {
  transform: translateY(-1.25rem) translateY(0.1rem) scale(0.8);
}

.form-control-sm ~ .select-label.active {
  transform: translateY(-0.83rem) translateY(0.1rem) scale(0.8);
}

.form-outline .select-label.active ~ .form-notch .form-notch-middle {
  border-right: none;
  border-left: none;
  border-top: 1px solid transparent !important;
}
.form-outline .form-control.active ~ .form-label.select-fake-value {
  transform: none;
  display: none;
}
.form-outline .form-control:focus ~ .form-label.select-fake-value {
  transform: none;
  display: none;
}
.form-outline .form-control:focus ~ .form-label.select-fake-value.active {
  display: block;
}
.form-outline .form-control ~ .form-label.select-fake-value {
  transform: none;
  display: none;
}
.form-outline .form-control.active ~ .form-label.select-fake-value.active {
  display: block;
}
.form-outline .form-control ~ .form-label.select-fake-value.active {
  display: block;
}

.select-input {
  cursor: pointer;
}

.select-input[disabled] {
  cursor: default;
}

.select-input.focused {
  color: #616161;
  outline: 0;
}
.select-input.focused::-moz-placeholder {
  opacity: 1;
}
.select-input.focused::placeholder {
  opacity: 1;
}

.select-input.focused ~ .select-label {
  color: #3b71ca;
}

.select-input.focused ~ .form-notch .form-notch-leading {
  border-color: #3b71ca;
  box-shadow: -1px 0 0 0 #3b71ca, 0 1px 0 0 #3b71ca, 0 -1px 0 0 #3b71ca;
}
.select-input.focused ~ .form-notch .form-notch-middle {
  border-color: #3b71ca;
  box-shadow: 0 1px 0 0 #3b71ca;
  border-top: 1px solid transparent;
}
.select-input.focused ~ .form-notch .form-notch-trailing {
  border-color: #3b71ca;
  box-shadow: 1px 0 0 0 #3b71ca, 0 -1px 0 0 #3b71ca, 0 1px 0 0 #3b71ca;
}

.select-input.focused ~ .select-arrow {
  color: #3b71ca;
}

.form-white .select-arrow {
  color: #fff;
}
.form-white .select-clear-btn {
  color: #fff;
}
.form-white .select-input:focus ~ .select-arrow {
  color: #fff;
}
.form-white .select-input.focused ~ .select-arrow {
  color: #fff;
}

.form-control-sm ~ .select-arrow {
  top: 3px;
}

.form-control-lg ~ .select-arrow {
  top: 13px;
}

.select-options-wrapper {
  overflow-y: auto;
}
.select-options-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.select-options-wrapper::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 0;
  background-color: transparent;
}
.select-options-wrapper::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 0;
  background-color: transparent;
}
.select-options-wrapper::-webkit-scrollbar-track-piece {
  background-color: transparent;
  border-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.select-options-wrapper::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  border-radius: 4px;
}

.select-options-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select-option-group-label {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 1rem;
  font-weight: 400;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.54);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.select-option-group > .select-option {
  padding-left: 26px;
}

.select-option {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.87);
  padding-left: 16px;
  padding-right: 16px;
  font-size: 1rem;
  font-weight: 400;
  background-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.select-option:hover:not(.disabled) {
  background-color: rgba(0, 0, 0, 0.048);
}

.select-option.active {
  background-color: rgba(0, 0, 0, 0.048);
}

.select-option.selected.active {
  background-color: rgba(0, 0, 0, 0.048);
}

.select-option.selected.disabled {
  cursor: default;
  color: #9e9e9e;
  background-color: transparent;
}

.select-option.selected {
  background-color: rgba(0, 0, 0, 0.02);
}

.select-option.disabled {
  cursor: default;
  color: #9e9e9e;
}

.select-option-text .form-check-input {
  margin-right: 10px;
}

.select-option-secondary-text {
  font-size: 0.8rem;
  color: #6c757d;
  display: block;
  line-height: normal;
}

.select-option-icon {
  width: 28px;
  height: 28px;
}

.select-custom-content {
  padding: 16px;
}

.select-no-results {
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
}
.payment {
  width: 300px;
  border-radius: 10px;
  border: 1px solid;
  text-align: center;
  align-content: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow: visible;
  padding: 20px 10px;
  z-index: 10;
}
.payment span {
  font-weight: bold;
}
.payment .pay {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  font-weight: bold;
}
.payment .pay .accept, .payment .pay .cancel {
  cursor: pointer;
  border-radius: 8px;
  height: 30px;
  border: 1px solid;
  text-align: center;
  align-content: center;
}
.payment .pay .cancel {
  background-color: #ea4d3d;
}
.payment__mixed-field {
  display: flex;
  gap: 20px;
  margin: 20px;
  align-items: center;
  justify-content: flex-end;
}
.payment__mixed-label {
  margin-left: 14px;
  cursor: pointer;
}
.payment__mixed-variant {
  padding: 0 5px;
}
.payment--400 {
  width: 420px;
}
.payment__input {
  display: flex;
  align-items: center;
}
.payment__mixed-input {
  width: 150px;
}
.payment__link {
  font-weight: 550;
  gap: 30px;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.payment a {
  padding: 10px;
}
.payment__paginator {
  display: flex;
  margin: 0 auto 20px;
  grid-column-gap: 20px;
  min-height: 34px;
  justify-content: center;
}

.tab-box {
  padding-top: 20px;
}
.tab-box__item {
  width: 100%;
}

.payment-qr-code {
  width: 300px;
  height: 300px;
}
.popups {
  display: none;
}

.popup-message {
  max-width: 400px;
}

.popup--change-password, .popup--change-email {
  max-width: 380px;
  width: 100%;
}
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
}
.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none;
  cursor: pointer;
}
.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
  cursor: pointer;
}
.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1;
}
.irs-handle.type_last {
  z-index: 2;
}
.irs-min, .irs-max {
  position: absolute;
  display: block;
  cursor: default;
}
.irs-min {
  left: 0;
}
.irs-max {
  right: 0;
}
.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-with-grid .irs-grid {
  display: block;
}
.irs-grid-pol {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.irs-grid-pol.small {
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  outline: none;
  z-index: -9999;
  background: none;
  border-style: solid;
  border-color: transparent;
}

.irs--round-custom {
  height: 50px;
}
.irs--round-custom.irs-with-grid {
  height: 65px;
}
.irs--round-custom .irs-line {
  top: 36px;
  height: 4px;
  background-color: #D3D3D3;
  border-radius: 4px;
}
.irs--round-custom .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #000;
}
.irs--round-custom .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--round-custom .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: fade(#D3D3D3, 50%);
}
.irs--round-custom .irs-handle {
  top: 50%;
  width: 12px;
  height: 12px;
  border: 4px solid #000;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.irs--round-custom .irs-handle.state_hover, .irs--round-custom .irs-handle:hover {
  transform: scale(1.5);
}
.irs--round-custom .irs-min,
.irs--round-custom .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.irs--round-custom .irs-from,
.irs--round-custom .irs-to,
.irs--round-custom .irs-single {
  top: 10px;
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  background-color: transparent;
  color: #101010;
  border-radius: 4px;
}
.irs--round-custom .irs-from:before,
.irs--round-custom .irs-to:before,
.irs--round-custom .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: transparent;
}
.irs--round-custom .irs-grid {
  height: 25px;
}
.irs--round-custom .irs-grid-pol {
  background-color: #dedede;
}
.irs--round-custom .irs-grid-text {
  color: #B7B7B7;
  font-size: 14px;
}
div.js-readmore {
  overflow: hidden;
}
div.js-readmore > div > *:first-child {
  margin-top: 0;
}
div.js-readmore > div > *:last-child {
  margin-bottom: 0;
}
div.js-readmore.open > * {
  max-height: none;
}
[data-ripple] {
  -webkit-tap-highlight-color: transparent;
}
.materials-dialog {
  margin: auto;
  padding: 15px 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px #a19f9f;
  border: 1px solid #a19f9f;
  box-sizing: border-box;
  width: 480px;
  overflow: hidden;
  font-size: 24px;
  top: 1em;
  bottom: 1em;
  height: 90vh;
}
.materials-dialog__inner {
  height: 100%;
  display: grid;
  grid-template-rows: max-content auto max-content;
  gap: 10px;
}
.materials-dialog__content {
  overflow-y: auto;
  overflow-x: hidden;
}
.materials-dialog__search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 400px;
  background: #f0f0f0;
  border-radius: 0.5rem;
  padding: 0.3rem 0.5rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 90%;
  margin: auto;
}
.materials-dialog__search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.5rem;
  font-size: 1rem;
  color: #333;
}
.materials-dialog__search input::placeholder {
  color: #aaa;
}
.materials-dialog__search input:focus {
  color: #111;
}
.materials-dialog__search .clear-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1rem;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}
.materials-dialog__search .clear-btn:hover {
  color: #555;
  transform: scale(1.1);
}
.materials-dialog__search .clear-btn i {
  pointer-events: none;
}
.materials-dialog__buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.materials-dialog__button {
  text-align: center;
}

.materials-tree {
  list-style-type: none;
  margin-bottom: 0;
  user-select: none;
}
.materials-tree__item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.materials-tree__item-details {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.materials-tree__item-details i {
  font-style: normal;
}
.materials-tree__subitems {
  margin-left: 15px;
  margin-right: 15px;
  user-select: none;
  display: none;
}
.materials-tree__subitem {
  transition: all 0.3s linear;
  text-align: left;
  cursor: pointer;
  font-weight: normal;
  padding: 7px 0;
  display: grid;
  grid-template-columns: 1fr 15fr;
  margin: 10px 0;
}
.materials-tree__subitem.fa-circle:before {
  margin-right: 10px;
  font-weight: unset;
  font-size: 20px;
}
.materials-tree__subitem.fa-chevron-circle-down:before {
  margin-right: 10px;
  font-weight: 900;
  font-size: 20px;
}
.materials-tree__expand {
  transition: all 0.3s linear;
  text-align: left;
  cursor: pointer;
  font-weight: normal;
  display: block;
  padding: 7px 0;
}
.materials-tree__expand:before {
  margin-right: 10px;
  font-weight: 900;
}
.materials-tree__select-category {
  font-size: 16px;
  width: 20px;
  height: 20px;
  text-align: center;
  cursor: pointer;
}

.sale-material {
  display: grid;
  grid-template-columns: 75% 25%;
  grid-gap: 1px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid;
  margin: 8px 0;
}
.sale-material .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
}
.sale-material .right-side {
  display: grid;
  grid-template-rows: min-content auto;
  border-left: 1px solid;
  padding: 12px;
  justify-content: right;
  align-items: center;
}
.sale-material .quantity, .sale-material__quantity {
  display: grid;
  align-items: center;
  grid-template-columns: max-content max-content max-content max-content auto;
}
.sale-material .quantity .fa, .sale-material__quantity .fa {
  font-size: 30px;
  cursor: pointer;
}
.sale-material .quantity .fa-minus:before, .sale-material__quantity .fa-minus:before {
  color: #ef8c00;
}
.sale-material .quantity .fa-plus:before, .sale-material__quantity .fa-plus:before {
  color: #5ac4f6;
}
.sale-material .quantity i, .sale-material__quantity i {
  margin: 10px;
}
.sale-material .quantity input, .sale-material__quantity input {
  width: 50px;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .sale-material .quantity, .sale-material__quantity {
    font-size: 11px;
  }
}
.sale-material__name {
  display: grid;
  grid-template-columns: auto min-content;
  grid-gap: 24px;
}
.sale-material__sum, .sale-material__price {
  text-align: left;
  font-weight: bold;
}
.sale-material__price {
  display: none;
}
.sale-material__open-context-menu {
  text-align: right;
  height: 30px;
}
.sale-material__open-context-menu-ellipsis {
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  background: #fdf7ff;
}
.sale-material__dropdown-box {
  display: none;
  z-index: 10;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin: 8px 0 0 -92px;
  width: 170px;
  background: #fdf7ff;
  padding: 15px 25px;
  border-radius: 10px;
  color: initial;
}
.sale-material__dropdown-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.sale-material__dropdown-items {
  z-index: 10;
  position: relative;
}
.sale-material__button {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: max-content max-content;
  padding: 7px 12px;
}
.sale-material__bottom {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
.sale-material__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
}
.sale-material .ui-widget {
  font-family: Arial, Helvetica, sans-serif;
}
.sale-material .ui-widget .ui-widget-content {
  border: 1px solid #c5c5c5;
}
.sale-material .ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}
.sale-material .ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}
.sale-material .ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.sale-material .ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}
.sale-material .ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.sale-material .ui-front {
  z-index: 100;
}
.sale-material .ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #fff;
}

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.check {
  text-align: center;
}
.check--error {
  background-color: #F9E1E5;
  color: #af233a;
}
.check--wait {
  background-color: #FBF0DA;
  color: #73510d;
}
.font-size-14px {
  font-size: 14px !important;
}

.font-size-16px {
  font-size: 16px !important;
}

.font-size-18px {
  font-size: 18px !important;
}

.font-size-20px {
  font-size: 20px !important;
}

.font-size-22px {
  font-size: 22px !important;
}
.simplebar-track {
  background: #D3D3D3;
}
.simplebar-track.simplebar-vertical {
  width: 8px;
  border-radius: 4px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #A8A8A8;
  border-radius: 4px;
}

.simplebar-scrollbar:before {
  opacity: 0.4;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

[data-simplebar] {
  overflow: auto;
}
.flickity-page-dots {
  position: absolute;
  transform: scale(1.4);
  bottom: 0;
}
@media screen and (max-width: 576px) {
  .flickity-page-dots {
    display: none;
  }
}
.flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  margin: 0;
  background-color: transparent;
  opacity: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
@media screen and (max-width: 576px) {
  .flickity-page-dots .dot {
    width: 10px;
  }
}
.flickity-page-dots .dot:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-secondary), transparent 70%);
  transform: scale(0.5);
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .flickity-page-dots .dot:before {
    background: color-mix(in srgb, var(--color-secondary), transparent 70%);
    top: 5px;
    bottom: 5px;
    border-radius: 0;
    transform: none;
    transition: none;
  }
}
@media screen and (max-width: 576px) {
  .flickity-page-dots .dot:first-child:before {
    border-radius: 3px 0 0 3px;
  }
}
@media screen and (max-width: 576px) {
  .flickity-page-dots .dot:last-child:before {
    border-radius: 0 3px 3px 0;
  }
}
.flickity-page-dots .dot.is-selected:before {
  background-color: var(--color-main);
}
@media screen and (max-width: 576px) {
  .flickity-page-dots .dot.is-selected:before {
    border-radius: 3px;
    transform: scale(1);
  }
}

@media screen and (min-width: 1420px) {
  .slider-item-animation {
    opacity: 0;
    transition-delay: 0ms;
    transition-duration: 0.1s;
    transition-property: opacity;
  }
}

@media screen and (min-width: 1420px) {
  .slider-item-animation--columns-4.is-selected,
.slider-item-animation--columns-4.is-selected + .slider-item-animation--columns-4,
.slider-item-animation--columns-4.is-selected + .slider-item-animation--columns-4 + .slider-item-animation--columns-4,
.slider-item-animation--columns-4.is-selected + .slider-item-animation--columns-4 + .slider-item-animation--columns-4 + .slider-item-animation--columns-4 {
    transition-delay: 0.15s;
    transition-duration: 0.4s;
    opacity: 1;
  }
}

@media screen and (min-width: 1420px) {
  .slider-item-animation--columns-3.is-selected,
.slider-item-animation--columns-3.is-selected + .slider-item-animation--columns-3,
.slider-item-animation--columns-3.is-selected + .slider-item-animation--columns-3 + .slider-item-animation--columns-3 {
    transition-delay: 0.15s;
    transition-duration: 0.4s;
    opacity: 1;
  }
}

.slider-dynamic-dots {
  margin: 0 auto;
  max-width: 80px;
}
.slider-dynamic-dots__item {
  position: relative;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}
.slider-dynamic-dots__item:after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: #CCCCCC;
  transition-duration: 0.2s;
  transition-property: background-color, transform;
}
.slider-dynamic-dots__item.is-selected:after {
  transform: scale(2);
  background-color: var(--color-main);
}

.flickity-prev-next-button {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background-color: #98C07F;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  border-radius: 50%;
  transition-property: opacity, border-color;
  transition-duration: 0.2s;
  top: calc(50% - 9px);
}
.flickity-prev-next-button:disabled {
  pointer-events: auto;
}
.flickity-prev-next-button:focus {
  box-shadow: none;
}
.flickity-prev-next-button, .flickity-prev-next-button:hover {
  background-color: var(--color-main);
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='28' viewBox='0 0 17 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L14 14L3 25' stroke='white' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.flickity-prev-next-button.previous {
  left: 0px;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 1460px) {
  .flickity-prev-next-button.previous {
    left: 0px;
    transform: translateY(-50%) scale(0.7) rotate(180deg);
  }
}
.flickity-prev-next-button.next {
  right: 0px;
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (max-width: 1460px) {
  .flickity-prev-next-button.next {
    right: 0px;
    transform: translateY(-50%) scale(0.7);
  }
}
.flickity-prev-next-button svg {
  display: none;
}

.slider-count-dots {
  position: absolute;
  bottom: 0;
  display: none;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--color-secondary);
}
@media screen and (max-width: 576px) {
  .slider-count-dots {
    display: block;
  }
}

.flick-disable-arrows .flickity-button {
  display: none;
  pointer-events: none;
}
.flick-disable-arrows .flickity-page-dots {
  display: none;
}
.sd-root-modern {
  --foreground: var(--color-secondary);
  --foreground-light: #909090;
  --primary-foreground: #fff;
  --primary-foreground-disabled: rgba(255, 255, 255, 0.25);
  --sjs-general-forecolor: var(--foreground);
  --sjs-general-forecolor-light: var(--foreground-light);
  --sjs-primary-forecolor: var(--primary-foreground);
  --sjs-primary-forecolor-light: var(--primary-foreground-disabled);
}

.sv-action-bar {
  display: flex;
  box-sizing: content-box;
  position: relative;
  align-items: center;
  margin-left: auto;
  overflow: hidden;
  white-space: nowrap;
}

.sv-action-bar-separator {
  display: inline-block;
  width: 1px;
  height: 24px;
  vertical-align: middle;
  margin-right: 16px;
  background-color: var(--border, #d6d6d6);
}

.sv-action-bar--default-size-mode .sv-action-bar-separator {
  margin: 0 calc(1 * var(--base-unit, 8px));
}

.sv-action-bar--small-size-mode .sv-action-bar-separator {
  margin: 0 calc(0.5 * var(--base-unit, 8px));
}

.sv-action-bar-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  padding: calc(1 * var(--base-unit, 8px));
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background-color: transparent;
  color: var(--sjs-general-forecolor, #161616);
  cursor: pointer;
  overflow-x: hidden;
  white-space: nowrap;
}

button.sv-action-bar-item {
  overflow: hidden;
}

.sv-action-bar--default-size-mode .sv-action-bar-item {
  height: calc(5 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  margin: 0 calc(1 * var(--base-unit, 8px));
}

.sv-action-bar--small-size-mode .sv-action-bar-item {
  height: calc(4 * var(--base-unit, 8px));
  font-size: calc(1.5 * var(--base-unit, 8px));
  line-height: calc(2 * var(--base-unit, 8px));
  margin: 0 calc(0.5 * var(--base-unit, 8px));
}

.sv-action:first-of-type .sv-action-bar-item {
  margin-inline-start: 0;
}
.sv-action:last-of-type .sv-action-bar-item {
  margin-inline-end: 0;
}

.sv-action-bar--default-size-mode .sv-action-bar-item__title--with-icon {
  margin-inline-start: calc(1 * var(--base-unit, 8px));
}

.sv-action-bar--small-size-mode .sv-action-bar-item__title--with-icon {
  margin-inline-start: calc(0.5 * var(--base-unit, 8px));
}

.sv-action-bar-item__icon svg {
  display: block;
}
.sv-action-bar-item__icon use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sv-action-bar-item:not(.sv-action-bar-item--pressed):hover:enabled, .sv-action-bar-item:not(.sv-action-bar-item--pressed):focus:enabled {
  outline: none;
  background-color: var(--background-dim, #f3f3f3);
}

.sv-action-bar-item--active.sv-action-bar-item--pressed:focus, .sv-action-bar-item--active.sv-action-bar-item--pressed:focus-visible {
  outline: none;
}

.sv-action-bar-item:not(.sv-action-bar-item--pressed):active:enabled {
  opacity: 0.5;
}
.sv-action-bar-item:disabled {
  opacity: 0.25;
  cursor: default;
}

.sv-action-bar-item__title {
  color: inherit;
  vertical-align: middle;
  white-space: nowrap;
}

.sv-action-bar-item--secondary .sv-action-bar-item__icon use {
  fill: var(--secondary, #ff9814);
}

.sv-action-bar-item--active .sv-action-bar-item__icon use {
  fill: var(--primary, var(--color-main));
}

.sv-action-bar-item-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  height: calc(5 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px));
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background-color: transparent;
  cursor: pointer;
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
}

.sv-expand-action:before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='2,2 0,4 5,9 10,4 8,2 5,5 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  height: 10px;
  width: 12px;
  margin: auto 8px;
}

.sv-expand-action--expanded:before {
  transform: rotate(180deg);
}

.sv-dots {
  width: 48px;
}

.sv-dots__item {
  width: 100%;
}
.sv-dots__item .sv-action-bar-item__icon {
  margin: auto;
}

.sv-action--hidden {
  width: 0px;
  height: 0px;
  overflow: hidden;
  visibility: hidden;
}

.sv-action__content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sv-action__content > * {
  flex: 0 0 auto;
}

.sv-action--space {
  margin-left: auto;
}

.sv-action-bar-item--pressed:not(.sv-action-bar-item--active) {
  background-color: var(--background-dim, #f3f3f3);
  opacity: 50%;
}

.sv-dragged-element-shortcut {
  height: calc(3 * var(--base-unit, 8px));
  min-width: calc(12.5 * var(--base-unit, 8px));
  border-radius: calc(4.5 * var(--base-unit, 8px));
  background-color: var(--background, #fff);
  padding: calc(2 * var(--base-unit, 8px));
  cursor: grabbing;
  position: absolute;
  z-index: 1000;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  font-size: calc(2 * var(--base-unit, 8px));
  padding-left: calc(2.5 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
}

.sv-matrixdynamic__drag-icon {
  padding-top: calc(1.75 * var(--base-unit, 8px));
}
.sv-matrixdynamic__drag-icon:after {
  content: " ";
  display: block;
  height: calc(0.75 * var(--base-unit, 8px));
  width: calc(2.5 * var(--base-unit, 8px));
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  border-radius: calc(1.25 * var(--base-unit, 8px));
  cursor: move;
  margin-top: calc(1.5 * var(--base-unit, 8px));
}

.sv-matrix-row--drag-drop-ghost-mod td {
  background-color: var(--background-dim, #f3f3f3);
}
.sv-matrix-row--drag-drop-ghost-mod td > * {
  visibility: hidden;
}

sv-popup {
  display: block;
  position: absolute;
  z-index: -1;
}

.sv-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  outline: none;
  z-index: 1500;
}

.sv-popup__container {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  padding: 0;
}

.sv-popup__shadow {
  width: 100%;
  height: 100%;
  border-radius: calc(1 * var(--base-unit, 8px));
}

.sv-popup__body-content {
  background-color: var(--background, #fff);
  border-radius: calc(0.5 * var(--base-unit, 8px));
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  max-width: 90vw;
}

.sv-popup.sv-popup--modal, .sv-popup.sv-popup--overlay {
  height: 100vh;
}

.sv-popup--modal {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-semitransparent, rgba(144, 144, 144, 0.5));
  padding: calc(11 * var(--base-unit, 8px)) calc(15 * var(--base-unit, 8px));
  box-sizing: border-box;
}
.sv-popup--modal .sv-popup__container {
  position: static;
}
.sv-popup--modal .sv-popup__body-content {
  padding: calc(4 * var(--base-unit, 8px));
}

.sv-popup--overlay.sv-popup--overlay {
  width: 100%;
  height: var(--sv-popup-overlay-height, 100vh);
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__container {
  background: var(--background-semitransparent, rgba(144, 144, 144, 0.5));
  max-width: 100vw;
  max-height: calc(var(--sv-popup-overlay-height, 100vh) - 1 * var(--base-unit, 8px));
  height: calc(var(--sv-popup-overlay-height, 100vh) - 1 * var(--base-unit, 8px));
  width: 100%;
  padding-top: calc(2 * var(--base-unit, 8px));
  border: unset;
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-content {
  max-height: var(--sv-popup-overlay-height, 100vh);
  max-width: 100vw;
  border-radius: calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) 0px 0px;
  background: var(--background, #fff);
  box-shadow: 0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1);
  padding: calc(3 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
  height: calc(100% - 1 * var(--base-unit, 8px));
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__scrolling-content {
  height: calc(100% - 10 * var(--base-unit, 8px));
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer {
  margin-top: calc(2 * var(--base-unit, 8px));
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer .sv-action-bar, .sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer .sv-action {
  width: 100%;
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer-item {
  width: 100%;
}
.sv-popup--overlay.sv-popup--overlay .sv-popup__button {
  background-color: var(--primary, var(--color-main));
  border: 2px solid var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
}

.sv-popup--modal .sv-popup__scrolling-content {
  padding: 2px;
  margin: -2px;
}

.sv-popup__scrolling-content {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.sv-popup__scrolling-content::-webkit-scrollbar, .sv-popup__scrolling-content *::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: var(--background-dim, #f3f3f3);
}
.sv-popup__scrolling-content::-webkit-scrollbar-thumb, .sv-popup__scrolling-content *::-webkit-scrollbar-thumb {
  background: var(--primary-light, rgba(25, 179, 148, 0.1));
}

.sv-popup__content {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.sv-popup--show-pointer.sv-popup--top .sv-popup__pointer {
  transform: translate(calc(-1 * var(--base-unit, 8px))) rotate(180deg);
}
.sv-popup--show-pointer.sv-popup--bottom .sv-popup__pointer {
  transform: translate(calc(-1 * var(--base-unit, 8px)), calc(-1 * var(--base-unit, 8px)));
}
.sv-popup--show-pointer.sv-popup--right {
  transform: translate(calc(1 * var(--base-unit, 8px)));
}
.sv-popup--show-pointer.sv-popup--right .sv-popup__pointer {
  transform: translate(-12px, -4px) rotate(-90deg);
}
.sv-popup--show-pointer.sv-popup--left {
  transform: translate(calc(-1 * var(--base-unit, 8px)));
}
.sv-popup--show-pointer.sv-popup--left .sv-popup__pointer {
  transform: translate(-4px, -4px) rotate(90deg);
}

.sv-popup__pointer {
  display: block;
  position: absolute;
}
.sv-popup__pointer:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-left: calc(1 * var(--base-unit, 8px)) solid transparent;
  border-right: calc(1 * var(--base-unit, 8px)) solid transparent;
  border-bottom: calc(1 * var(--base-unit, 8px)) solid var(--background, #fff);
  align-self: center;
}

.sv-popup__body-header {
  font-family: Open Sans;
  font-size: calc(3 * var(--base-unit, 8px));
  line-height: calc(4 * var(--base-unit, 8px));
  font-style: normal;
  font-weight: 700;
  margin-bottom: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
}

.sv-popup__body-footer {
  display: flex;
  margin-top: calc(4 * var(--base-unit, 8px));
}
.sv-popup__body-footer .sv-action-bar {
  gap: calc(1.5 * var(--base-unit, 8px));
}

.sv-popup__button {
  padding: calc(2 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
  background: var(--background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 2px;
  cursor: pointer;
  font-style: normal;
  font-weight: 600;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  text-align: center;
  color: var(--primary, var(--color-main));
  border: none;
  outline: none;
}
.sv-popup__button:hover {
  box-shadow: 0 0 0 2px var(--primary, var(--color-main));
}
.sv-popup__button:disabled {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
  cursor: default;
}
.sv-popup__button:disabled:hover {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.sv-popup__button--apply {
  background-color: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
}
.sv-popup__button--apply:disabled {
  background-color: var(--background-dim, #f3f3f3);
}

.sv-popup--modal .sv-list__filter, .sv-popup--overlay .sv-list__filter {
  padding-top: calc(1 * var(--base-unit, 8px));
}

.sv-popup--modal .sv-list__filter-icon, .sv-popup--overlay .sv-list__filter-icon {
  top: calc(2.5 * var(--base-unit, 8px));
}

.sv-dropdown-popup.sv-popup--overlay {
  z-index: 2001;
  padding: 0;
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__body-content {
  padding: 0;
  border-radius: 0;
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__body-footer .sv-action-bar .sv-action {
  width: auto;
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__button {
  background-color: transparent;
  color: var(--primary, var(--color-main));
  border: none;
  box-shadow: none;
  padding: calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
  border-radius: calc(12.5 * var(--base-unit, 8px));
  margin: 0;
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__container {
  max-height: calc(var(--sv-popup-overlay-height, 100vh));
  height: calc(var(--sv-popup-overlay-height, 100vh));
  padding-top: 0;
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__body-content {
  height: calc(var(--sv-popup-overlay-height, 100vh));
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__body-footer {
  background-color: var(--background-dim-light, #f9f9f9);
  margin-top: 0;
  padding-top: calc(0.5 * var(--base-unit, 8px));
  padding-bottom: calc(0.5 * var(--base-unit, 8px));
  border-top: 1px solid var(--border-light, #eaeaea);
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__scrolling-content {
  height: calc(100% - 6 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-icon .sv-svg-icon {
  width: calc(2 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__container {
  padding: 0;
}
.sv-dropdown-popup.sv-popup--overlay .sv-list {
  flex-grow: 1;
  padding: calc(0.5 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter {
  display: flex;
  align-items: center;
  padding: calc(0.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px)) calc(0.5 * var(--base-unit, 8px)) calc(2.5 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-icon {
  position: static;
  top: calc(1.5 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__empty-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: calc(1 * var(--base-unit, 8px)) calc(0.5 * var(--base-unit, 8px));
  background-color: var(--background, #fff);
}
.sv-dropdown-popup.sv-popup--overlay .sv-popup__button:disabled {
  pointer-events: none;
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-clear-button {
  height: calc(3 * var(--base-unit, 8px));
  width: calc(3 * var(--base-unit, 8px));
  padding: calc(0.5 * var(--base-unit, 8px));
  appearance: none;
  border: none;
  border-radius: 100%;
  background-color: transparent;
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-clear-button svg {
  height: calc(2 * var(--base-unit, 8px));
  width: calc(2 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-clear-button svg use {
  fill: var(--sjs-general-forecolor-light, #909090);
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__input {
  color: var(--sjs-general-forecolor-light, #909090);
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  padding: calc(0.5 * var(--base-unit, 8px)) 0 calc(0.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px));
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:hover .sv-list__item-body, .sv-dropdown-popup.sv-popup--overlay .sv-list__item:focus .sv-list__item-body {
  background: var(--background, #fff);
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__item--focused .sv-list__item-body {
  background: var(--background, #fff);
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:hover.sv-list__item--selected .sv-list__item-body, .sv-dropdown-popup.sv-popup--overlay .sv-list__item:focus.sv-list__item--selected .sv-list__item-body {
  background: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
  font-weight: 600;
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__item--focused.sv-list__item--selected .sv-list__item-body {
  background: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
  font-weight: 600;
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:hover.sv-list__item--selected .sd-list__item-body, .sv-dropdown-popup.sv-popup--overlay .sv-list__item:focus.sv-list__item--selected .sd-list__item-body {
  background: var(--primary-light, rgba(25, 179, 148, 0.1));
  color: var(--sjs-general-forecolor, #161616);
}
.sv-dropdown-popup.sv-popup--overlay .sv-list__item--focused.sv-list__item--selected .sd-list__item-body {
  background: var(--primary-light, rgba(25, 179, 148, 0.1));
  color: var(--sjs-general-forecolor, #161616);
}
.sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-popup__body-content {
  --sv-popup-overlay-max-height: calc(var(--sv-popup-overlay-height, 100vh) - var(--base-unit, 8px) * 8);
  --sv-popup-overlay-max-width: calc(100% - var(--base-unit, 8px) * 8);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-height: var(--sv-popup-overlay-max-height);
  min-height: min(var(--sv-popup-overlay-max-height), 31 * var(--base-unit, 8px));
  height: auto;
  width: auto;
  min-width: min(40 * var(--base-unit, 8px), var(--sv-popup-overlay-max-width));
  max-width: var(--sv-popup-overlay-max-width);
  border-radius: calc(0.5 * var(--base-unit, 8px));
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
}
.sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-popup__content, .sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-popup__scrolling-content, .sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-list__container {
  flex-grow: 1;
}

.sv-button-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: calc(2 * var(--base-unit, 8px));
  overflow: auto;
  border: 1px solid var(--border, #d6d6d6);
}
.sv-button-group:focus-within {
  box-shadow: 0 0 0 1px var(--primary, var(--color-main));
  border-color: var(--primary, var(--color-main));
}

.sv-button-group__item {
  display: flex;
  box-sizing: border-box;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  appearance: none;
  width: 100%;
  padding: 11px calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  outline: none;
  font-size: calc(2 * var(--base-unit, 8px));
  font-weight: 400;
  background: var(--background, #fff);
  cursor: pointer;
  overflow: hidden;
  color: var(--sjs-general-forecolor, #161616);
  position: relative;
}
.sv-button-group__item:not(:last-of-type) {
  border-right: 1px solid var(--border, #d6d6d6);
}

.sv-button-group__item--hover:hover {
  background-color: var(--background-dim, #f3f3f3);
}

.sv-button-group__item-icon {
  display: block;
  height: calc(3 * var(--base-unit, 8px));
}
.sv-button-group__item-icon use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sv-button-group__item--selected {
  font-weight: 600;
  color: var(--primary, var(--color-main));
}
.sv-button-group__item--selected .sv-button-group__item-icon use {
  fill: var(--primary, var(--color-main));
}
.sv-button-group__item--selected:hover {
  background-color: var(--background, #fff);
}

.sv-button-group__item-decorator {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.sv-button-group__item-caption {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-button-group__item-icon + .sv-button-group__item-caption {
  margin-left: calc(1 * var(--base-unit, 8px));
}

.sv-button-group__item--disabled {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
  cursor: default;
}
.sv-button-group__item--disabled .sv-button-group__item-icon use {
  fill: var(--sjs-general-forecolor, #161616);
}
.sv-button-group__item--disabled:hover {
  background-color: var(--background, #fff);
}

.sv-button-group:focus-within {
  box-shadow: 0 0 0 1px var(--primary, var(--color-main));
  border-color: var(--primary, var(--color-main));
}

.sv-visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.sv-hidden {
  display: none !important;
}

.sv-title-actions {
  display: flex;
  align-items: center;
  width: 100%;
}

.sv-title-actions__title {
  flex-wrap: wrap;
  max-width: 90%;
  min-width: 50%;
  white-space: initial;
}

.sv-action-title-bar {
  min-width: 56px;
}

.sv-title-actions .sv-title-actions__title {
  flex-wrap: wrap;
  flex: 0 0 auto;
  max-width: unset;
  min-width: unset;
}
.sv-title-actions .sv-action-title-bar {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: unset;
}

.sv_window {
  position: fixed;
  bottom: 3px;
  right: 10px;
  background-color: cadetblue;
  padding: 1px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto;
  z-index: 100;
}

.sv_window_title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.sv_window_content {
  padding: 0;
  margin: 0;
  max-height: 80vh;
  overflow-y: auto;
}

.sv_window_title a {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  color: black;
}
.sv_window_title a:link, .sv_window_title a:visited {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  color: black;
}

.sv-brand-info {
  width: 100%;
  text-align: center;
  color: #161616;
  background: white;
  padding: 32px 0;
  box-shadow: 0px -1px 0px #D6D6D6;
}
.sv-brand-info a {
  color: #161616;
  text-decoration-line: underline;
}

.sv-brand-info__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #161616;
}

.sv-brand-info__logo {
  display: inline-block;
}
.sv-brand-info__logo img {
  width: 118px;
}

.sv-brand-info__terms {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.sv-brand-info__terms a {
  color: #909090;
}

.sv-ranking {
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}

.sv-ranking-item {
  cursor: pointer;
  position: relative;
}
.sv-ranking-item:focus .sv-ranking-item__icon--hover {
  visibility: hidden;
}
.sv-ranking-item:hover:not(:focus) .sv-ranking-item__icon--hover {
  visibility: visible;
}

.sv-question--disabled .sv-ranking-item:hover .sv-ranking-item__icon--hover {
  visibility: hidden;
}

.sv-ranking-item:focus {
  outline: none;
}
.sv-ranking-item:focus .sv-ranking-item__icon--focus {
  visibility: visible;
  top: calc(0.6 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}
.sv-ranking-item:focus .sv-ranking-item__index {
  background: var(--background, #fff);
  outline: calc(0.25 * var(--base-unit, 8px)) solid var(--primary, var(--color-main));
}

.sv-ranking-item__content.sv-ranking-item__content {
  display: flex;
  align-items: center;
  line-height: 1em;
  padding: calc(0.5 * var(--base-unit, 8px)) 0px;
  border-radius: calc(12.5 * var(--base-unit, 8px));
}

.sv-ranking-item__icon-container {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  flex-shrink: 0;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(4 * var(--base-unit, 8px));
}

.sv-ranking-item__icon.sv-ranking-item__icon {
  visibility: hidden;
  fill: var(--primary, var(--color-main));
  position: absolute;
  top: calc(1 * var(--base-unit, 8px));
  width: calc(1.75 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
}

.sv-ranking-item__index.sv-ranking-item__index {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
  color: var(--sjs-general-forecolor, #161616);
  font-size: calc(2 * var(--base-unit, 8px));
  border-radius: 100%;
  border: calc(0.25 * var(--base-unit, 8px)) solid transparent;
  width: calc(5 * var(--base-unit, 8px));
  height: calc(5 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  box-sizing: border-box;
  font-weight: 600;
  margin-left: calc(0 * var(--base-unit, 8px));
}
.sv-ranking-item__index.sv-ranking-item__index.sv-ranking-item__index--empty:empty {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAArSURBVHgB7cuhEQAwDMNAtUN4//m8RMtygcE5PxMQxAKnh6Q3mWzXd4mAD4cJBAQCqfbUAAAAAElFTkSuQmCC");
  background-position: center;
  background-repeat: no-repeat;
}

.sv-ranking-item__text {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--sjs-general-forecolor, #161616);
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  margin: 0 calc(2 * var(--base-unit, 8px));
}

.sd-ranking--disabled .sv-ranking-item__text {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
}

.sv-ranking-item__ghost.sv-ranking-item__ghost {
  display: none;
  background-color: var(--background-dim, #f3f3f3);
  border-radius: calc(12.5 * var(--base-unit, 8px));
  padding: calc(0.5 * var(--base-unit, 8px)) 0px;
  width: calc(25 * var(--base-unit, 8px));
  height: calc(5 * var(--base-unit, 8px));
  z-index: 1;
  position: absolute;
  left: calc(5 * var(--base-unit, 8px));
}

[dir=rtl] .sv-ranking-item__ghost {
  left: initilal;
  right: calc(5 * var(--base-unit, 8px));
}

.sv-ranking-item--ghost .sv-ranking-item__ghost {
  display: block;
}
.sv-ranking-item--ghost .sv-ranking-item__content {
  visibility: hidden;
}

.sv-ranking-item--drag .sv-ranking-item__content {
  box-shadow: 0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1);
  border-radius: calc(12.5 * var(--base-unit, 8px));
}

.sv-ranking--drag .sv-ranking-item:hover .sv-ranking-item__icon {
  visibility: hidden;
}

.sv-ranking-item--drag .sv-ranking-item__icon--hover {
  visibility: visible;
}

.sv-ranking--mobile .sv-ranking-item__icon--hover {
  visibility: visible;
  fill: var(--sjs-general-forecolor-light, #909090);
}
.sv-ranking--mobile.sv-ranking--drag .sv-ranking-item--ghost .sv-ranking-item__icon.sv-ranking-item__icon--hover {
  visibility: hidden;
}
.sv-ranking--mobile.sv-ranking-shortcut {
  max-width: 80%;
}
.sv-ranking--mobile .sv-ranking-item__index.sv-ranking-item__index, .sv-ranking--mobile .sd-element--with-frame .sv-ranking-item__icon {
  margin-left: 0;
}

.sv-ranking--design-mode .sv-ranking-item:hover .sv-ranking-item__icon {
  visibility: hidden;
}

.sv-ranking--disabled {
  opacity: 0.8;
}

.sv-ranking-shortcut[hidden] {
  display: none;
}
.sv-ranking-shortcut .sv-ranking-item__icon {
  fill: var(--primary, var(--color-main));
}
.sv-ranking-shortcut .sv-ranking-item__text {
  margin-right: calc(4 * var(--base-unit, 8px));
}
.sv-ranking-shortcut .sv-ranking-item__icon--hover {
  visibility: visible;
}
.sv-ranking-shortcut .sv-ranking-item__icon {
  width: calc(1.75 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
  top: calc(1 * var(--base-unit, 8px));
}
.sv-ranking-shortcut .sv-ranking-item__icon-container {
  margin-left: calc(1 * var(--base-unit, 8px));
}

.sv-list {
  padding: 0;
  margin: 0;
  overflow-y: auto;
  background: var(--background, #fff);
  list-style-type: none;
}

.sv-list__empty-container {
  width: 100%;
  box-sizing: border-box;
  padding: calc(1.5 * var(--base-unit, 8px)) calc(8 * var(--base-unit, 8px));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-list__empty-text {
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  font-weight: 400;
  text-align: center;
  color: var(--sjs-general-forecolor-light, #909090);
}

.sv-list__item {
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  color: var(--sjs-general-forecolor, #161616);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-list__item-body {
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  padding-block: calc(1 * var(--base-unit, 8px));
  padding-inline-end: calc(8 * var(--base-unit, 8px));
  padding-inline-start: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-list__item.sv-list__item--focused, .sv-list__item:hover, .sv-list__item:focus {
  outline: none;
}
.sv-list__item.sv-list__item--focused .sv-list__item-body, .sv-list__item:hover .sv-list__item-body, .sv-list__item:focus .sv-list__item-body {
  background-color: var(--background-dim, #f3f3f3);
}

.sv-list__item--with-icon.sv-list__item--with-icon {
  padding: 0;
}
.sv-list__item--with-icon.sv-list__item--with-icon .sv-list__item-body {
  padding-top: calc(1.5 * var(--base-unit, 8px));
  padding-bottom: calc(1.5 * var(--base-unit, 8px));
  gap: calc(2 * var(--base-unit, 8px));
  display: flex;
}

.sv-list__item-icon {
  float: left;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}
.sv-list__item-icon svg {
  display: block;
}
.sv-list__item-icon use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

[dir=rtl] .sv-list__item-icon, [style*="direction:rtl"] .sv-list__item-icon, [style*="direction: rtl"] .sv-list__item-icon {
  float: right;
}

.sv-list__item-separator {
  margin: calc(1 * var(--base-unit, 8px)) 0;
  height: 1px;
  background-color: var(--border, #d6d6d6);
}

.sv-list__item.sv-list__item--selected .sv-list__item-body, .sv-list__item.sv-list__item--selected:hover .sv-list__item-body, .sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-body {
  background-color: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
  font-weight: 600;
}

.sv-multi-select-list .sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-body, li:focus .sv-list__item.sv-list__item--selected .sv-list__item-body {
  background-color: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
  font-weight: 600;
}

.sv-list__item.sv-list__item--selected .sv-list__item-icon use, .sv-list__item.sv-list__item--selected:hover .sv-list__item-icon use, .sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-icon use {
  fill: var(--background, #fff);
}

.sv-multi-select-list .sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-icon use, li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
  fill: var(--background, #fff);
}

.sv-multi-select-list .sv-list__item.sv-list__item--selected .sv-list__item-body, .sv-multi-select-list .sv-list__item.sv-list__item--selected:hover .sv-list__item-body {
  background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
  color: var(--sjs-general-forecolor, #161616);
  font-weight: 400;
}

.sv-list__item.sv-list__item--disabled .sv-list__item-body {
  cursor: default;
  color: var(--sjs-general-forecolor-light, #909090);
}
.sv-list__item span {
  white-space: nowrap;
}

.sv-list__container {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  display: flex;
  min-height: 0;
}

.sv-list__filter {
  border-bottom: 1px solid var(--border-inside, rgba(0, 0, 0, 0.16));
  background: var(--background, #fff);
  padding-bottom: calc(1 * var(--base-unit, 8px));
}

.sv-list__filter-icon {
  display: block;
  position: absolute;
  top: calc(1.5 * var(--base-unit, 8px));
  inset-inline-start: calc(2 * var(--base-unit, 8px));
}
.sv-list__filter-icon .sv-svg-icon {
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}
.sv-list__filter-icon .sv-svg-icon use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sv-list__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  background: var(--background, #fff);
  box-sizing: border-box;
  width: 100%;
  outline: none;
  font-size: 1em;
  color: var(--sjs-general-forecolor, #161616);
  padding: calc(1.5 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
  padding-inline-start: calc(7 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  border: none;
}
.sv-list__input::placeholder {
  color: var(--sjs-general-forecolor-light, #909090);
}
.sv-list__input:disabled {
  color: var(--sjs-general-forecolor-light, #909090);
}
.sv-list__input:disabled::placeholder {
  color: var(--sjs-general-forecolor-light, #909090);
}

.sv-list__loading-indicator {
  pointer-events: none;
}
.sv-list__loading-indicator .sv-list__item-body {
  background-color: transparent;
}

.sv-save-data_root {
  position: absolute;
  left: 50%;
  bottom: calc(3 * var(--base-unit, 8px));
  background: var(--background, #fff);
  opacity: 0;
  padding: calc(3 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: calc(1 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  min-width: calc(30 * var(--base-unit, 8px));
  text-align: center;
  z-index: 1600;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%) translateY(calc(3 * var(--base-unit, 8px)));
  transition-timing-function: ease-in;
  transition-property: transform, opacity;
  transition-delay: 0.25s;
  transition: 0.5s;
}
.sv-save-data_root.sv-save-data_root--shown {
  transition-timing-function: ease-out;
  transition-property: transform, opacity;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.25s;
  opacity: 0.75;
}
.sv-save-data_root span {
  display: flex;
  flex-grow: 1;
}
.sv-save-data_root .sv-action-bar {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
}

.sv-save-data_root--shown.sv-save-data_success, .sv-save-data_root--shown.sv-save-data_error {
  opacity: 1;
}

.sv-save-data_root.sv-save-data_error {
  background-color: var(--red, #e60a3e);
  color: var(--background, #fff);
  font-weight: 600;
  padding: calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
  gap: calc(6 * var(--base-unit, 8px));
}
.sv-save-data_root.sv-save-data_error .sv-save-data_button {
  font-weight: 600;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  height: calc(5 * var(--base-unit, 8px));
  color: #ffffff;
  background-color: var(--red, #e60a3e);
  border: calc(0.25 * var(--base-unit, 8px)) solid #ffffff;
  border-radius: calc(0.75 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
  display: flex;
  align-items: center;
}
.sv-save-data_root.sv-save-data_error .sv-save-data_button:hover, .sv-save-data_root.sv-save-data_error .sv-save-data_button:focus {
  color: var(--red, #e60a3e);
  background-color: var(--background, #fff);
}
.sv-save-data_root.sv-save-data_success {
  background-color: var(--primary, var(--color-main));
  color: #ffffff;
  font-weight: 600;
}

.sd-element {
  padding-left: var(--sv-element-add-padding-left, 0px);
  padding-right: var(--sv-element-add-padding-right, 0px);
}

.svc-logic-question-value, .sd-element--with-frame:not(.sd-element--collapsed) {
  border-radius: calc(0.5 * var(--base-unit, 8px));
  box-sizing: border-box;
  padding-left: calc(var(--sd-base-padding) + var(--sv-element-add-padding-left, 0px));
  padding-right: calc(var(--sd-base-padding) + var(--sv-element-add-padding-right, 0px));
  padding-bottom: var(--sd-base-padding);
  background: var(--sjs-question-background, #fff);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
}

.svc-logic-question-value > .sd-question__erbox--outside-question, .sd-element--with-frame:not(.sd-element--collapsed) > .sd-question__erbox--outside-question {
  margin-left: calc(-1 * var(--sd-base-padding));
  margin-right: calc(-1 * var(--sd-base-padding));
  width: calc(100% + 2 * var(--sd-base-padding));
}

.svc-logic-question-value.sd-question--paneldynamic, .sd-element--with-frame:not(.sd-element--collapsed).sd-question--paneldynamic {
  padding-bottom: 0;
}

.svc-logic-question-value.sd-question--paneldynamic > .sd-question__erbox--below-question {
  bottom: 0;
  margin-top: 0;
}

.sd-element--with-frame:not(.sd-element--collapsed).sd-question--paneldynamic > .sd-question__erbox--below-question {
  bottom: 0;
  margin-top: 0;
}
.sd-element--with-frame > .sd-question__erbox--above-question {
  margin-top: calc(-1 * var(--sd-base-vertical-padding));
}

.svc-logic-question-value, .sd-element:not(.sd-element--collapsed) {
  padding-top: var(--sd-base-vertical-padding);
}

.sd-table__cell--detail-panel .sd-element:not(.sd-element--collapsed) {
  padding-top: calc(0.5 * var(--base-unit, 8px));
}

.sd-element.sd-element--complex {
  padding-top: 0;
}

.sd-element--expanded > .sd-element__header {
  cursor: pointer;
}

.sd-element--collapsed > .sd-element__header {
  cursor: pointer;
  padding: calc(2 * var(--base-unit, 8px)) var(--sd-base-padding);
  box-sizing: border-box;
  background-color: var(--background, #fff);
}
.sd-element--collapsed.sd-element--with-frame > .sd-element__header {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(0.5 * var(--base-unit, 8px));
}
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
  background-color: var(--background-dim-light, #f9f9f9);
}

.sd-element__title {
  outline: none;
}
.sd-element__title.sd-element__title--disabled {
  opacity: 0.25;
}

.sd-root--readonly .sd-element__title.sd-element__title--disabled {
  opacity: 1;
}

.sd-element--collapsed:not(.sd-element--with-frame) > .sd-element__header {
  margin-left: calc(-1 * var(--sd-base-padding));
  width: calc(100% + 2 * var(--sd-base-padding));
}

.sd-element--complex:not(.sd-element--collapsed) > .sd-element__header--location-top {
  padding-top: var(--sd-base-vertical-padding);
  padding-bottom: var(--sd-base-vertical-padding);
}
.sd-element--complex:not(.sd-element--collapsed) > .sd-element__header--location-top:after {
  content: " ";
  display: block;
  position: relative;
  bottom: calc(-1 * var(--sd-base-vertical-padding));
  height: 1px;
  background: var(--border-light, #eaeaea);
}
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top:after {
  content: " ";
  left: calc(-1 * var(--sd-base-padding));
  width: calc(100% + 2 * var(--sd-base-padding));
}

.sd-element--nested.sd-element--complex > .sd-element__header--location-top {
  padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
}
.sd-element--nested.sd-element--complex > .sd-element__header--location-top:after {
  bottom: calc(-0.5 * var(--sd-base-vertical-padding));
}
.sd-element--nested.sd-question--image {
  padding-top: var(--sd-base-vertical-padding);
}
.sd-element--nested.sd-panel, .sd-element--nested.sd-question--paneldynamic {
  border: 1px solid var(--border-light, #eaeaea);
  box-sizing: border-box;
  padding-left: var(--sd-base-padding);
  padding-right: var(--sd-base-padding);
  margin-top: var(--sd-base-vertical-padding);
}
.sd-element--nested.sd-panel > .sd-element__header--location-top, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top {
  padding-top: calc(0.5 * var(--sd-base-vertical-padding));
  padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
}
.sd-element--nested.sd-panel > .sd-element__header--location-top:after, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top:after {
  left: calc(-1 * var(--sd-base-padding));
  width: calc(100% + 2 * var(--sd-base-padding));
  bottom: calc(-0.5 * var(--sd-base-vertical-padding));
}
.sd-element--nested.sd-panel > .sd-question__erbox--outside-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--outside-question {
  margin-left: calc(-1 * var(--sd-base-padding));
  margin-right: calc(-1 * var(--sd-base-padding));
  width: calc(100% + 2 * var(--sd-base-padding));
}
.sd-element--nested.sd-panel > .sd-question__erbox--below-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--below-question {
  bottom: 0;
  margin-top: 0;
}
.sd-element--nested.sd-panel:not(.sd-element--collapsed) {
  padding-bottom: var(--sd-base-padding);
}

.svc-question__content .sd-element {
  padding-top: 0;
}
.svc-question__content .sd-element--complex > .sd-element__header--location-top {
  padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
  padding-top: 0;
}
.svc-question__content .sd-element--complex > .sd-element__header--location-top:after {
  display: none;
}

.sd-element--invisible {
  opacity: 0.35;
}

.sd-element__title {
  font-size: 0;
  line-height: 0;
  position: static;
  font-weight: 600;
  margin: 0;
}
.sd-element__title .sd-element__num {
  font-size: calc(1.5 * var(--base-unit, 8px));
  line-height: calc(2 * var(--base-unit, 8px));
}
.sd-element__title span {
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
}
@media screen and (max-width: 576px) {
  .sd-element__title span {
    font-size: 14px;
  }
}
.sd-element__title .sv-title-actions__title {
  font-size: 0;
  line-height: 0;
}
.sd-element__title .svc-string-editor {
  display: inline-block;
  max-width: 100%;
}
.sd-element__title .sv-string-editor {
  max-width: 100%;
  white-space: normal;
}
.sd-element__title .sv-title-actions__title {
  white-space: nowrap;
}
.sd-element__title .sv-string-viewer {
  white-space: normal;
}

.sd-element__num {
  float: left;
  padding-top: calc(0.625 * var(--base-unit, 8px));
  padding-bottom: calc(0.375 * var(--base-unit, 8px));
  padding-inline-start: 0;
  padding-inline-end: calc(1 * var(--base-unit, 8px));
  width: calc(5 * var(--base-unit, 8px));
  font-size: calc(1.5 * var(--base-unit, 8px));
  line-height: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
  margin-inline-start: calc(-5 * var(--base-unit, 8px));
  text-align: end;
  box-sizing: border-box;
  white-space: nowrap;
  flex-shrink: 0;
}
.sd-element__num + span {
  float: left;
  width: 0;
}

[dir=rtl] .sd-element__num, [style*="direction:rtl"] .sd-element__num, [style*="direction: rtl"] .sd-element__num {
  float: right;
}

.sd-element__title--num-inline .sd-element__num {
  float: none;
  margin-inline-start: 0;
  width: auto;
  padding-inline-start: 0;
  padding-inline-end: 0;
}
.sd-element__title--num-inline .sd-element__num + span {
  float: none;
  width: auto;
}

.sd-element__title--expandable.sd-element__title--expandable {
  position: relative;
  display: block;
}
.sd-element__title--expandable:before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 14L5 13L10 8L5 3L6 2L12 8L6 14Z' fill='%23909090'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  height: calc(2 * var(--base-unit, 8px));
  width: calc(2 * var(--base-unit, 8px));
  position: absolute;
  left: calc(-3 * var(--base-unit, 8px));
  top: calc(0.5 * var(--base-unit, 8px));
}
.sd-element__title--expandable.sd-element__title--expanded:before {
  transform: rotate(90deg);
}

.sd-question {
  position: relative;
}

.sd-question__description {
  font-size: calc(2 * var(--base-unit, 8px));
}

.sd-question__erbox {
  padding: calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px));
  border-radius: calc(0.5 * var(--base-unit, 8px));
  font-weight: 600;
  line-height: calc(2 * var(--base-unit, 8px));
  font-size: calc(1.5 * var(--base-unit, 8px));
  white-space: normal;
  text-align: left;
}

.sd-question__erbox--outside-question {
  width: 100%;
  color: var(--red, #e60a3e);
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
  box-sizing: border-box;
}

.sd-question__erbox--above-question {
  border-radius: calc(0.5 * var(--base-unit, 8px)) calc(0.5 * var(--base-unit, 8px)) 0 0;
  margin-bottom: calc(var(--sd-base-vertical-padding) - var(--base-unit, 8px));
}

.sd-question__erbox--below-question {
  margin-top: calc(1 * var(--base-unit, 8px));
}

.sd-element--with-frame > .sd-question__erbox--below-question {
  position: relative;
  margin-top: 0;
  bottom: calc(-1 * var(--sd-base-padding));
  border-radius: 0 0 calc(0.5 * var(--base-unit, 8px)) calc(0.5 * var(--base-unit, 8px));
}

.sd-root-modern--mobile .sd-question__erbox--below-question {
  margin-top: calc(1 * var(--base-unit, 8px));
}

.sd-question__header {
  width: 100%;
}

.sd-question__header--location-top {
  padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
}

.sd-scrollable .sd-question__content {
  overflow-x: auto;
  padding: calc(2 * var(--base-unit, 8px)) 0;
}

.sd-question__header--location--left {
  display: inline-block;
  width: auto;
  max-width: 50%;
  vertical-align: top;
  margin-top: calc(1.5 * var(--base-unit, 8px));
}

.sd-question--left {
  display: flex;
  flex-wrap: wrap;
}

.sd-question__content--left {
  display: inline-block;
  padding-left: calc(3 * var(--base-unit, 8px));
  flex: 1;
}

.sd-question__required-text {
  color: var(--red, #e60a3e);
  vertical-align: top;
}

.sd-question__comment-area {
  font-size: calc(2 * var(--base-unit, 8px));
  margin-top: calc(2 * var(--base-unit, 8px));
  display: flex;
  flex-direction: column;
  gap: calc(1 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  white-space: normal;
}

.sd-question__erbox--tooltip {
  display: none;
  position: fixed;
  height: auto;
  width: auto;
  max-width: calc(29 * var(--base-unit, 8px));
  background-color: var(--background, #fff);
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.75;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sd-question__content:hover:not(:focus-within) > .sd-question__erbox--tooltip {
  display: block;
}

.sd-question__erbox--location--top, .sd-question__erbox--location--bottom {
  display: block;
  color: var(--red, #e60a3e);
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.sd-question--complex .sd-question__erbox--above-question {
  margin-top: 0;
}
.sd-question--complex .sd-question__erbox--above-question ~ .sd-question__header--location-top {
  padding-top: calc(1 * var(--base-unit, 8px));
}

.sd-question--empty.sd-question--complex > .sd-question__header--location-top {
  padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
}
.sd-question--empty.sd-question--complex > .sd-question__header--location-top:after {
  display: none;
}

.sd-question__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: calc(0.5 * var(--base-unit, 8px));
  justify-content: center;
  min-height: calc(24 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
}
.sd-question__placeholder > div .sv-string-viewer, .sd-question__placeholder > span .sv-string-viewer {
  white-space: pre-line;
}

.sd-question--empty.sd-question--complex > .sd-question__content {
  padding-top: 0;
  padding-bottom: 0;
}
.sd-question--empty.sd-question--complex > .sd-question__content:first-child {
  padding-top: var(--sd-base-padding);
}

.sd-scrollable-container:not(.sd-scrollable-container--compact) {
  width: max-content;
  overflow-x: hidden;
  max-width: 100%;
}

.sd-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: static;
  width: 100%;
  height: calc(6 * var(--base-unit, 8px));
  box-sizing: border-box;
  padding: calc(1.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  background-color: var(--sjs-editor-background, #f9f9f9);
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 3px;
  text-align: start;
  font-family: inherit;
}
.sd-input.sd-input:focus {
  outline: none;
}

.sd-input--disabled {
  background-color: var(--sjs-editor-background, #f9f9f9);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sd-input::placeholder {
  color: var(--sjs-general-forecolor-light, #909090);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sd-input--disabled {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
}
.sd-input--disabled::placeholder {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
}

.sd-root--readonly .sd-input--disabled {
  color: var(--sjs-general-forecolor, #161616);
}
.sd-root--readonly .sd-input--disabled::placeholder {
  color: var(--sjs-general-forecolor, #161616);
}

.sd-input:focus {
  box-shadow: 0 0 0 2px var(--primary, var(--color-main));
}

.sd-input--error {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
}

.sd-text__content {
  position: relative;
}

.sd-remaining-character-counter {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0px;
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
  position: absolute;
  inset-inline-end: calc(2 * var(--base-unit, 8px));
  inset-block-end: calc(1.5 * var(--base-unit, 8px));
}

.sd-question__content:focus-within .sd-remaining-character-counter {
  display: flex;
}

.sd-input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--primary, var(--color-main));
  border-radius: calc(1 * var(--base-unit, 8px));
  height: calc(1.5 * var(--base-unit, 8px));
}
.sd-input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: calc(-0.75 * var(--base-unit, 8px));
  border-radius: 100%;
  border: 2px solid var(--primary, var(--color-main));
  box-shadow: inset 0 0 0 2px var(--background, #fff);
  background-color: var(--primary, var(--color-main));
  height: calc(3 * var(--base-unit, 8px));
  width: calc(3 * var(--base-unit, 8px));
}
.sd-input[type=range]::-moz-range-track {
  background-color: var(--primary, var(--color-main));
  border-radius: calc(1 * var(--base-unit, 8px));
  height: calc(1.5 * var(--base-unit, 8px));
}
.sd-input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: calc(-0.75 * var(--base-unit, 8px));
  border-radius: 100%;
  border: 2px solid var(--primary, var(--color-main));
  box-shadow: inset 0 0 0 2px var(--background, #fff);
  background-color: var(--primary, var(--color-main));
  height: calc(3 * var(--base-unit, 8px));
  width: calc(3 * var(--base-unit, 8px));
}

.sd-comment {
  display: block;
  height: auto;
  min-width: calc(6 * var(--base-unit, 8px));
  min-height: calc(6 * var(--base-unit, 8px));
  max-width: 100%;
}

.sd-comment__content {
  position: relative;
}

.sd-panel {
  position: relative;
}
.sd-panel .sd-row {
  margin-top: 0;
}
.sd-panel :not(.svc-row) > .sd-row--multiple {
  row-gap: 0;
}
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header {
  padding-top: 0;
  padding-bottom: 0;
}
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header:after {
  content: none;
}
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title {
  position: static;
  font-size: calc(3 * var(--base-unit, 8px));
  line-height: calc(4 * var(--base-unit, 8px));
  margin: calc(0.5 * var(--base-unit, 8px)) 0px;
  font-weight: 700;
}
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title span {
  font-size: inherit;
  line-height: inherit;
}
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__description {
  position: static;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  margin: calc(0.5 * var(--base-unit, 8px)) 0px;
  font-weight: 400;
}

.sd-panel__required-text {
  color: var(--red, #e60a3e);
}

.sd-panel__footer {
  box-sizing: border-box;
  padding-left: calc(var(--sd-base-padding) - 3 * var(--base-unit, 8px));
  margin-left: calc(-1 * var(--sd-base-padding));
  width: calc(100% + 2 * var(--sd-base-padding));
  margin-bottom: calc(-1 * var(--sd-base-padding) + 0.5 * var(--sd-base-vertical-padding));
  margin-top: calc(0.5 * var(--sd-base-vertical-padding));
  border-top: 1px solid var(--border-light, #eaeaea);
  padding-top: calc(0.5 * var(--sd-base-vertical-padding));
}

.sjs_sp_placeholder {
  color: var(--sjs-general-forecolor-light, #909090);
}

.sjs_sp_container {
  border: 1px dashed var(--border, #d6d6d6);
}

.sjs_sp_controls.sd-signaturepad__controls {
  right: calc(1 * var(--base-unit, 8px));
  top: calc(1 * var(--base-unit, 8px));
  left: auto;
  bottom: auto;
}

.sd-question--signature:not(.sd-question--answered) .sd-signaturepad__controls {
  display: none;
}
.sd-question--signature.sd-question--error .sjs_sp_placeholder {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
}

.sd-checkbox__decorator {
  border-radius: 3px;
}

.sd-checkbox__svg {
  display: none;
  width: calc(2.5 * var(--base-unit, 8px));
  height: calc(2.5 * var(--base-unit, 8px));
}

.sd-checkbox--checked .sd-checkbox__svg {
  display: block;
}
.sd-checkbox--checked .sd-checkbox__svg use {
  fill: var(--sjs-primary-forecolor, #fff);
}
.sd-checkbox--checked.sd-checkbox--disabled .sd-checkbox__svg use {
  fill: var(--border, #d6d6d6);
}
.sd-checkbox--checked .sd-checkbox__control:focus + .sd-checkbox__decorator .sd-checkbox__svg use {
  fill: var(--primary, var(--color-main));
}

.sd-matrixdynamic__btn.sd-matrixdynamic__add-btn {
  position: sticky;
  left: calc(-3 * var(--base-unit, 8px));
  margin-left: calc(-3 * var(--base-unit, 8px));
  z-index: 12;
}

.sd-matrixdynamic__footer {
  padding-top: calc(1 * var(--base-unit, 8px));
}
.sd-matrixdynamic__footer:first-child {
  padding-bottom: calc(2 * var(--base-unit, 8px));
}

.sd-action.sd-matrixdynamic__remove-btn {
  opacity: 0.5;
}

.sd-matrixdynamic__btn {
  appearance: none;
  background: transparent;
  border: none;
  line-height: calc(3 * var(--base-unit, 8px));
  font-size: calc(2 * var(--base-unit, 8px));
  font-weight: 600;
  padding: calc(1 * var(--base-unit, 8px)) 0;
}

.sd-matrixdynamic__drag-element {
  padding: calc(2 * var(--base-unit, 8px));
}
.sd-matrixdynamic__drag-element:hover {
  background-color: var(--background, #fff);
}
.sd-matrixdynamic__drag-element:after {
  content: " ";
  display: block;
  height: calc(0.5 * var(--base-unit, 8px));
  width: calc(2 * var(--base-unit, 8px));
  border: 1px solid var(--border, #d6d6d6);
  box-sizing: border-box;
  border-radius: 10px;
}

.sd-matrixdynamic__placeholder .sd-matrixdynamic__add-btn {
  margin-left: 0;
}

.sd-drag-element__svg {
  width: calc(2 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
  display: block;
}
.sd-drag-element__svg use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sd-table {
  width: 100%;
  border-collapse: collapse;
  white-space: normal;
}

.sd-table--align-top .sd-table__cell {
  vertical-align: top;
}

.sd-table--alternate-rows {
  margin: 0 8px;
  width: calc(100% - 2 * var(--base-unit, 8px));
}
.sd-table--alternate-rows .sd-table__cell:first-of-type {
  padding-left: calc(2 * var(--base-unit, 8px));
}
.sd-table--alternate-rows .sd-table__cell:last-of-type {
  padding-right: calc(2 * var(--base-unit, 8px));
}
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td {
  background-color: var(--background-dim-light, #f9f9f9);
}
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
  background-color: var(--background-dim-light, #f9f9f9);
}
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
  background-color: var(--sjs-primary-forecolor, #fff);
}
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item__decorator {
  --sd-item-default-background: var(--primary-foreground, #fff);
}
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input {
  background-color: var(--sjs-primary-forecolor, #fff);
}
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item__decorator {
  --sd-item-default-background: var(--primary-foreground, #fff);
}

.sd-table__cell {
  font-weight: normal;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  text-align: center;
}

.sd-table__cell--item .sd-selectbase__item {
  text-align: center;
}
.sd-table__cell--item .sd-selectbase__label {
  justify-content: center;
}

.sd-question--disabled .sd-table__cell {
  opacity: 0.25;
}

.sd-root--readonly .sd-question--disabled .sd-table__cell {
  opacity: 1;
}

.sd-table__cell--header {
  font-weight: 600;
  vertical-align: top;
  padding: calc(1.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px)) calc(2.5 * var(--base-unit, 8px));
}
.sd-table__cell--header:not(.sd-table__cell--empty) {
  min-width: calc(14 * var(--base-unit, 8px));
}

.sd-matrixdropdown .sd-table__cell--header.sd-table__cell--empty {
  min-width: calc(14 * var(--base-unit, 8px));
  width: calc(14 * var(--base-unit, 8px));
}
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty) {
  min-width: calc(14 * var(--base-unit, 8px));
  width: calc(14 * var(--base-unit, 8px));
}
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--dropdown, .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--rating {
  min-width: calc(22 * var(--base-unit, 8px));
  width: calc(22 * var(--base-unit, 8px));
}
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--boolean {
  min-width: calc(18 * var(--base-unit, 8px));
  width: calc(18 * var(--base-unit, 8px));
}

.sd-table__cell--detail-panel {
  padding: 0 calc(1 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px));
}

.sd-table__cell--actions .sv-action-bar, .sd-matrixdynamic__add-btn .sv-action-bar {
  overflow: visible;
}

.sd-table__cell--actions .svc-string-editor__button--done, .sd-matrixdynamic__add-btn .svc-string-editor__button--done {
  width: calc(2 * var(--base-unit, 8px));
}

.svc-question__content .sd-table__cell--actions .sv-action-bar-item:disabled {
  background: var(--background, #fff);
  opacity: 1;
}
.svc-question__content .sd-table__cell--actions .sv-action-bar-item:disabled use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sd-table__cell--actions:not(.sd-table__cell--vertical) {
  width: 0;
}

.sd-table__cell--detail-button {
  border: none;
  background: transparent;
  border-radius: calc(2 * var(--base-unit, 8px));
  width: calc(4 * var(--base-unit, 8px));
  height: calc(4 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px));
}
.sd-table__cell--detail-button svg {
  width: calc(2 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
  fill: var(--sjs-general-forecolor-light, #909090);
}
.sd-table__cell--detail-button:hover {
  background: var(--green-light, rgba(25, 179, 148, 0.1));
}
.sd-table__cell--detail-button:hover svg {
  fill: var(--primary, var(--color-main));
}

.sd-table__cell--actions {
  white-space: nowrap;
}
.sd-table__cell--actions.sd-table__cell--vertical .sd-action-bar {
  justify-content: center;
}

.sd-table__cell--row-text {
  font-weight: 600;
  text-align: left;
  min-width: calc(12 * var(--base-unit, 8px));
  padding: calc(2.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px));
}

.sd-matrixdynamic__content .sd-table__question-wrapper {
  position: relative;
}

.sd-table__question-wrapper:not(:focus-within):hover {
  position: relative;
}
.sd-table__question-wrapper:not(:focus-within):hover .sd-question__erbox--tooltip {
  display: inline-block;
}

.sd-table__cell--actions:not(.sd-table__cell--vertical), .sd-table__cell--empty, .sd-table__cell--row-text, .sd-matrix__cell:first-of-type, .sd-matrix tr > td:first-of-type {
  position: sticky;
  z-index: 12;
}

.sd-table__cell--actions:not(.sd-table__cell--vertical):first-of-type, .sd-table__cell--empty:first-of-type, .sd-table__cell--row-text:first-of-type, .sd-matrix__cell:first-of-type:first-of-type, .sd-matrix tr > td:first-of-type:first-of-type {
  left: calc(-1 * var(--base-unit, 8px));
}

.sd-table__cell--actions:not(.sd-table__cell--vertical):last-of-type, .sd-table__cell--empty:last-of-type, .sd-table__cell--row-text:last-of-type, .sd-matrix__cell:first-of-type:last-of-type, .sd-matrix tr > td:first-of-type:last-of-type {
  right: calc(-1 * var(--base-unit, 8px));
}

.sd-table__cell--actions:not(.sd-table__cell--vertical):last-child .sd-action-bar {
  margin-right: calc(-3 * var(--base-unit, 8px));
  justify-content: flex-end;
}

.sd-question.sd-question--table {
  position: relative;
  overflow-x: auto;
}

.sd-table-wrapper {
  display: flex;
  margin: 0 calc(-1 * var(--sd-base-padding));
  width: fit-content;
  min-width: calc(100% + 2 * var(--sd-base-padding));
}
.sd-table-wrapper:before, .sd-table-wrapper:after {
  content: "";
  display: block;
  position: sticky;
  min-height: 100%;
  width: calc(var(--sd-base-padding) - var(--base-unit, 8px));
  flex-shrink: 0;
  background: var(--sjs-question-background, #fff);
  z-index: 11;
}
.sd-table-wrapper::before {
  left: calc(-1 * var(--sd-base-padding));
}
.sd-table-wrapper:after {
  right: calc(-1 * var(--sd-base-padding));
}
.sd-table-wrapper > * {
  flex-basis: 100%;
}

.sd-question--table > .sd-question__header, .sd-question--table .sd-question__description--under-input .sv-string-viewer {
  position: sticky;
  left: 0;
}
.sd-question--table > .sd-question__content {
  padding-top: calc(2.5 * var(--base-unit, 8px));
  min-width: min-content;
}
.sd-question--table:not(.sd-element--with-frame) {
  padding-right: var(--sd-base-padding);
  margin-right: calc(-1 * var(--sd-base-padding));
  padding-left: var(--sd-base-padding);
  margin-left: calc(-1 * var(--sd-base-padding));
  box-sizing: content-box;
}

.sd-question--scroll {
  overflow-x: scroll;
}

.sd-matrixdropdown.sd-table {
  table-layout: fixed;
}

.sd-body--responsive .sd-page {
  padding: calc(5 * var(--base-unit, 8px)) var(--sd-page-vertical-padding) calc(2 * var(--base-unit, 8px));
}
.sd-body--responsive .sd-page.sd-page__empty-header {
  padding-top: calc(3 * var(--base-unit, 8px));
}

.sd-root-modern--mobile .sd-page {
  padding-top: calc(2 * var(--base-unit, 8px));
}

.sd-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.sd-page .sd-page__title {
  position: static;
  font-size: calc(3 * var(--base-unit, 8px));
  line-height: calc(4 * var(--base-unit, 8px));
  margin: 30px 0 10px;
  font-weight: 700;
  color: var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91));
}
.sd-page .sd-page__description {
  position: static;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  margin: calc(0.5 * var(--base-unit, 8px)) 0px;
  font-weight: 400;
  color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
}

.sd-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
  margin-top: calc(2 * var(--base-unit, 8px));
}
.sd-row > div {
  min-width: auto !important;
}

.sd-page__row.sd-row {
  margin-top: calc(2 * var(--base-unit, 8px));
}
.sd-page__row.sd-row--multiple {
  background: var(--sjs-question-background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(0.5 * var(--base-unit, 8px));
}

.svc-row > .sd-row--multiple {
  background: var(--sjs-question-background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(0.5 * var(--base-unit, 8px));
}

:not(.svc-row) > .sd-row--multiple {
  row-gap: calc(1 * var(--base-unit, 8px));
  margin-left: calc(-1 * var(--sd-base-padding));
  width: calc(100% + var(--sd-base-padding));
  flex-wrap: wrap;
}
:not(.svc-row) > .sd-row--multiple > div {
  box-sizing: border-box;
  padding-left: var(--sd-base-padding);
}
:not(.svc-row) > .sd-page__row.sd-row--multiple {
  padding: 0 var(--sd-base-padding) var(--sd-base-padding) 0;
  margin-left: 0;
  width: 100%;
}

.svc-row .sd-row--multiple {
  overflow: auto;
  margin-top: calc(2 * var(--base-unit, 8px));
}

.svc-row--multiple .sd-row--multiple {
  gap: calc(1 * var(--base-unit, 8px));
}

:not(.svc-row--ghost) > .sd-row {
  min-height: 50px;
}

.sd-row__panel {
  box-sizing: border-box;
  width: 100%;
}

.sd-row__question {
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
}

.svc-tab-designer .sd-title {
  display: flex;
}

.sd-title {
  display: block;
  font-style: normal;
  color: var(--sjs-general-forecolor, #161616);
  flex-direction: row;
  white-space: normal;
  word-break: break-word;
}
.sd-title.sd-container-modern__title {
  display: flex;
  align-items: center;
  padding: 0 0 var(--sd-page-vertical-padding) 0;
  overflow: auto;
  gap: calc(4 * var(--base-unit, 8px));
  box-shadow: 0px 2px 0px var(--primary, var(--color-main));
  margin-bottom: 2px;
}
.sd-title.sd-container-modern__title .sd-logo__image {
  margin-top: calc(1 * var(--base-unit, 8px));
}

.sd-header__text {
  display: flex;
  flex-direction: column;
  gap: calc(1 * var(--base-unit, 8px));
  flex-grow: 1;
}
.sd-header__text h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 576px) {
  .sd-header__text h3 {
    font-size: 24px;
  }
}
.sd-header__text h5 {
  font-size: calc(2 * var(--base-unit, 8px));
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  .sd-header__text h5 {
    font-size: 14px;
  }
}

.sd-title .sv-title-actions {
  width: 100%;
  justify-content: space-between;
}

.sd-root-modern:not(.svc-tab-designer) .sd-container-modern__title {
  background-color: var(--background, #fff);
}
.sd-root-modern .sd-container-modern__title .sd-header__text h3, .sd-root-modern .sd-container-modern__title .sd-description {
  margin: 0;
}

.sd-title .sv-title-actions {
  align-items: flex-start;
  width: calc(100% + 3 * var(--base-unit, 8px));
}
.sd-title .sv-title-actions .sv-title-actions__title {
  flex-wrap: wrap;
  flex: 0 1 auto;
  max-width: calc(100% - 3 * var(--base-unit, 8px));
  white-space: initial;
  min-width: unset;
}

.sd-action-title-bar {
  flex: 1 9 auto;
  min-width: calc(6 * var(--base-unit, 8px));
  justify-content: flex-end;
  margin: calc(-1 * var(--base-unit, 8px)) 0;
}
.sd-action-title-bar .sv-action {
  flex: 0 0 auto;
}
.sd-action-title-bar.sd-action-bar--empty {
  min-width: 0;
}

.sd-description {
  font-style: normal;
  font-weight: normal;
  white-space: normal;
  word-break: break-word;
}

.sd-item {
  padding: calc(1.5 * var(--base-unit, 8px)) 0;
}

.sd-item--disabled.sd-item--disabled .sd-item__decorator, .sd-item__decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
  box-sizing: border-box;
  background: var(--sd-item-default-background, var(--sjs-editor-background, #f9f9f9));
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
  border: none;
  flex-shrink: 0;
}

.sd-item--checked .sd-item__decorator {
  box-shadow: none;
}

.sd-item__control:focus + .sd-item__decorator, .sd-item--allowhover .sd-selectbase__label:hover .sd-item__decorator {
  box-shadow: 0 0 0 2px var(--primary, var(--color-main));
  outline: none;
}

.sd-item__control:focus + .sd-item__decorator, .sd-item--allowhover .sd-selectbase__label:hover .sd-item__decorator {
  background: var(--background, #fff);
}

.sd-item--checked .sd-item__decorator {
  background: var(--primary, var(--color-main));
}

.sd-item__control-label {
  font-style: normal;
  font-weight: normal;
  line-height: calc(3 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  white-space: normal;
  word-break: break-word;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 576px) {
  .sd-item__control-label {
    font-size: 14px;
  }
}

.sd-item--disabled .sd-item__control-label {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
}

.sd-root--readonly .sd-item--disabled .sd-item__control-label {
  color: var(--sjs-general-forecolor, #161616);
}

.sd-item--error .sd-item__decorator {
  background: var(--red-light, rgba(230, 10, 62, 0.1));
}

.sd-selectbase {
  border: none;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
  min-width: 0;
}

.sd-selectbase--row {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: calc(4 * var(--base-unit, 8px));
}
@media screen and (min-width: 1500px) {
  [data-name=resources] .sd-selectbase--row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.sd-selectbase--multi-column {
  display: flex;
  flex: 1 1 0px;
}

.sd-selectbase__label {
  display: inline-flex;
  position: relative;
  gap: calc(1 * var(--base-unit, 8px));
  vertical-align: top;
}

.sd-selectbase__column {
  vertical-align: top;
  display: block;
  box-sizing: border-box;
  word-break: break-word;
  flex: 1 1 0px;
}
.sd-selectbase__column:not(:last-child) {
  padding-right: calc(2 * var(--base-unit, 8px));
}
.sd-selectbase__column.sv-q-column-1 {
  width: 100%;
}

.sd-checkbox__decorator {
  border-radius: 3px;
}

.sd-checkbox__svg {
  display: none;
  width: calc(2.5 * var(--base-unit, 8px));
  height: calc(2.5 * var(--base-unit, 8px));
}

.sd-checkbox--checked .sd-checkbox__svg {
  display: block;
}
.sd-checkbox--checked .sd-checkbox__svg use {
  fill: var(--sjs-primary-forecolor, #fff);
}
.sd-checkbox--checked.sd-checkbox--disabled .sd-checkbox__svg use {
  fill: var(--border, #d6d6d6);
}
.sd-checkbox--checked .sd-checkbox__control:focus + .sd-checkbox__decorator .sd-checkbox__svg use {
  fill: var(--primary, var(--color-main));
}

.sd-radio__decorator {
  border-radius: 50%;
}

.sd-radio--checked .sd-radio__decorator:after {
  content: " ";
  display: block;
  width: calc(1 * var(--base-unit, 8px));
  height: calc(1 * var(--base-unit, 8px));
  border-radius: 50%;
  background-color: var(--sjs-primary-forecolor, #fff);
}
.sd-radio--checked.sd-radio--disabled .sd-radio__decorator:after {
  background-color: var(--border, #d6d6d6);
}
.sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after {
  background-color: var(--primary, var(--color-main));
}

.sd-radio__svg {
  display: none;
}

.sd-visuallyhidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.sd-matrix fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.sd-matrix__label {
  display: flex;
  justify-content: center;
}

.sd-matrix__text {
  padding: calc(2 * var(--base-unit, 8px));
}

.sd-matrix__text--checked {
  background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
  padding: calc(2 * var(--base-unit, 8px));
}

.sd-matrix__cell:first-of-type {
  font-weight: 600;
  text-align: left;
}

.sd-rating {
  overflow-x: auto;
  min-height: calc(8 * var(--base-unit, 8px));
}
.sd-rating fieldset {
  display: flex;
  border: none;
  padding: 0 0 calc(2 * var(--base-unit, 8px)) 0;
  flex-wrap: nowrap;
  gap: calc(1 * var(--base-unit, 8px));
  margin-inline-start: 0;
  align-items: center;
}
.sd-rating.sd-rating--wrappable fieldset {
  flex-wrap: wrap;
}

.sd-rating__item {
  position: relative;
  background: var(--background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(12.5 * var(--base-unit, 8px));
  white-space: nowrap;
  padding: calc(0.5 * var(--base-unit, 8px)) calc(2.5 * var(--base-unit, 8px));
  height: calc(6 * var(--base-unit, 8px));
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-width: calc(6 * var(--base-unit, 8px));
  text-align: center;
  border: 2px solid var(--background, #fff);
  color: var(--sjs-general-forecolor, #161616);
  fill: var(--sjs-general-forecolor, #161616);
  font-size: calc(2 * var(--base-unit, 8px));
}

.sd-rating__item--fixed-size {
  width: calc(6 * var(--base-unit, 8px));
  padding: 0;
}

legend + .sd-rating__item, legend + sv-ng-rating-item + .sd-rating__item {
  margin-inline-start: 2px;
}

.sd-rating__item--error {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
  box-shadow: 0px 1px 2px transparent;
  border-color: transparent;
}

.sd-rating__item.sd-rating__item--disabled {
  color: var(--sjs-general-forecolor, #161616);
  fill: var(--sjs-general-forecolor, #161616);
}
.sd-rating__item.sd-rating__item--selected.sd-rating__item--disabled {
  color: var(--sjs-primary-forecolor, #fff);
  fill: var(--sjs-general-forecolor, #161616);
}

.sd-question--disabled .sd-rating__item-text {
  opacity: 0.25;
}

.sd-rating__item--allowhover:hover, .sd-rating__item:focus-within {
  border-color: var(--primary, var(--color-main));
}

.sd-rating__item--selected {
  background-color: var(--primary, var(--color-main));
  border-color: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
  font-weight: 600;
  box-shadow: 0px 1px 2px transparent;
}
.sd-rating__item--selected:focus-within {
  box-shadow: inset 0 0 0 2px var(--background, #fff);
}

.sd-rating__item-smiley {
  position: relative;
  background: var(--background, #fff);
  border-radius: calc(12.5 * var(--base-unit, 8px));
  white-space: nowrap;
  padding: calc(1.25 * var(--base-unit, 8px));
  box-sizing: border-box;
  min-width: calc(6 * var(--base-unit, 8px));
  text-align: center;
  border: 2px solid var(--border, #d6d6d6);
  color: var(--sjs-general-forecolor, #161616);
  fill: var(--border, #d6d6d6);
}
.sd-rating__item-smiley svg {
  display: block;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}

legend + .sd-rating__item-smiley, legend + sv-ng-rating-item + .sd-rating__item-smiley {
  margin-inline-start: 2px;
}

.sd-rating__item-smiley--error {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
  border-color: transparent;
}

.sd-rating__item-smiley.sd-rating__item-smiley--disabled {
  opacity: 0.5;
}
.sd-rating__item-smiley.sd-rating__item-smiley--selected.sd-rating__item-smiley--disabled {
  opacity: initial;
  fill: var(--sjs-primary-forecolor, #fff);
}

.sd-rating__item-smiley--allowhover:hover, .sd-rating__item-smiley:focus-within {
  border-color: var(--primary, var(--color-main));
}

.sd-rating__item-smiley--selected {
  background-color: var(--primary, var(--color-main));
  border-color: var(--primary, var(--color-main));
  fill: var(--sjs-primary-forecolor, #fff);
  font-weight: 600;
}
.sd-rating__item-smiley--selected:focus-within {
  box-shadow: inset 0 0 0 2px var(--background, #fff);
}

.sd-rating__item-star {
  position: relative;
  background: var(--background, #fff);
  width: calc(6 * var(--base-unit, 8px));
  height: calc(6 * var(--base-unit, 8px));
}
.sd-rating__item-star:not(:first-of-type) {
  padding-left: calc(0.5 * var(--base-unit, 8px));
  margin-left: calc(-0.5 * var(--base-unit, 8px));
}
.sd-rating__item-star:not(:last-of-type) {
  padding-right: calc(0.5 * var(--base-unit, 8px));
  margin-right: calc(-0.5 * var(--base-unit, 8px));
}
.sd-rating__item-star svg {
  stroke: var(--border, #d6d6d6);
  fill: none;
  width: calc(6 * var(--base-unit, 8px));
  height: calc(6 * var(--base-unit, 8px));
  display: block;
}
.sd-rating__item-star .sv-star-2 {
  display: none;
}

.sd-rating__item-star--selected svg {
  stroke: none;
  fill: var(--primary, var(--color-main));
}

.sd-rating__item-star--error svg {
  stroke: none;
  fill: var(--red-light, rgba(230, 10, 62, 0.1));
}

.sd-rating__item-star--disabled {
  opacity: 0.5;
}
.sd-rating__item-star--disabled svg {
  stroke: var(--border, #d6d6d6);
  fill: none;
}

.sd-rating__item-star--selected.sd-rating__item-star--disabled svg {
  stroke: none;
  fill: var(--border, #d6d6d6);
}

.sd-rating__item-star:focus-within svg {
  stroke: var(--primary, var(--color-main));
  fill: none;
}

.sd-rating__item-star--unhighlighted svg {
  stroke: none;
  fill: var(--border, #d6d6d6);
}

.sd-rating__item-star--highlighted svg {
  stroke: var(--primary, var(--color-main));
  fill: none;
}

.sd-rating__item-star--selected.sd-rating__item-star--unhighlighted:focus-within svg {
  stroke: var(--border, #d6d6d6);
  fill: var(--border, #d6d6d6);
}
.sd-rating__item-star--selected:focus-within svg {
  stroke: var(--primary, var(--color-main));
  fill: var(--primary, var(--color-main));
}
.sd-rating__item-star--selected:focus-within .sv-star {
  display: none;
}
.sd-rating__item-star--selected:focus-within .sv-star-2 {
  display: block;
}

.sd-rating__item-text.sd-rating__item-text {
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  display: inline-block;
}
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text, .sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
  margin-top: calc(1.25 * var(--base-unit, 8px));
  margin-bottom: calc(1.25 * var(--base-unit, 8px));
  border: 2px solid var(--background, #fff);
  color: var(--sjs-general-forecolor-light, #909090);
}
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text {
  margin-right: calc(1 * var(--base-unit, 8px));
  border-left: 0px;
}
.sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
  margin-right: calc(2 * var(--base-unit, 8px));
  margin-left: calc(1 * var(--base-unit, 8px));
}
.sd-rating__item-text.sd-rating__item-text .sv-string-editor {
  white-space: nowrap;
}
.sd-rating__item-text.sd-rating__item-text.sd-rating__item--fixed-size {
  min-width: calc(3 * var(--base-unit, 8px));
}

.sv-ranking-item--error .sv-ranking-item__index {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
  box-shadow: 0px 1px 2px transparent;
  border-color: transparent;
}

.sd-element--with-frame .sv-ranking-item {
  left: calc(-3 * var(--base-unit, 8px));
}
.sd-element--with-frame .sv-ranking--mobile .sv-ranking-item__icon-container {
  margin-left: 0;
  margin-right: calc(1 * var(--base-unit, 8px));
}
.sd-element--with-frame .sv-ranking--mobile .sv-ranking-item {
  left: 0;
}

.sv-ranking-item__content.sd-ranking-item__content {
  line-height: calc(3 * var(--base-unit, 8px));
}

.sd-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-inline-end: calc(6 * var(--base-unit, 8px));
  padding-inline-start: calc(2 * var(--base-unit, 8px));
  background-position: right calc(1.5 * var(--base-unit, 8px)) top 50%, 0 0;
  background-repeat: no-repeat;
  background-size: calc(3 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15L17 10H7L12 15Z' fill='%23909090'/%3E%3C/svg%3E%0A");
  opacity: 1;
  display: flex;
  justify-content: space-between;
}
.sd-dropdown[disabled] {
  pointer-events: none;
}

.sd-dropdown--empty:not(.sd-input--disabled) {
  color: var(--sjs-general-forecolor-light, #909090);
}
.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__value {
  color: var(--sjs-general-forecolor-light, #909090);
}

.sd-dropdown__input-field-component {
  height: auto;
}

.sd-dropdown option {
  color: var(--sjs-general-forecolor, #161616);
  font-size: calc(2 * var(--base-unit, 8px));
}

.sd-dropdown__value {
  width: 100%;
  min-height: calc(3 * var(--base-unit, 8px));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  position: relative;
}

.sd-dropdown_clean-button {
  padding: 0 calc(1 * var(--base-unit, 8px));
  margin: auto 0;
}

.sd-dropdown_clean-button-svg {
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}

.sd-dropdown use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sd-input.sd-dropdown:focus-within {
  box-shadow: 0 0 0 2px var(--primary, var(--color-main));
}
.sd-input.sd-dropdown:focus-within .sd-dropdown__filter-string-input {
  z-index: 2000;
}

.sd-dropdown__filter-string-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  border: none;
  outline: none;
  padding: 0;
  font-size: calc(2 * var(--base-unit, 8px));
  background-color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  line-height: calc(3 * var(--base-unit, 8px));
  appearance: none;
}

.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__filter-string-input::placeholder {
  color: var(--sjs-general-forecolor-light, #909090);
}

.sd-dropdown__filter-string-input::placeholder {
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  line-height: calc(3 * var(--base-unit, 8px));
  appearance: none;
}

.sd-dropdown__hint-prefix {
  color: var(--sjs-general-forecolor-light, #909090);
}
.sd-dropdown__hint-prefix span {
  white-space: pre;
}

.sd-dropdown__hint-suffix {
  display: flex;
  color: var(--sjs-general-forecolor-light, #909090);
}
.sd-dropdown__hint-suffix span {
  white-space: pre;
}

[dir=rtl] .sd-dropdown, [style*="direction:rtl"] .sd-dropdown, [style*="direction: rtl"] .sd-dropdown {
  background-position: left calc(1.5 * var(--base-unit, 8px)) top 50%, 0 0;
}

.sd-input.sd-tagbox:not(.sd-tagbox--empty):not(.sd-input--disabled) {
  height: auto;
  padding: calc(0.5 * var(--base-unit, 8px));
  padding-inline-end: calc(6 * var(--base-unit, 8px));
  padding-inline-start: calc(0.5 * var(--base-unit, 8px));
}

.sd-tagbox.sd-tagbox--empty {
  padding-block: calc(0.5 * var(--base-unit, 8px));
  padding-inline-end: calc(6 * var(--base-unit, 8px));
  padding-inline-start: calc(2 * var(--base-unit, 8px));
}

.sd-tagbox_clean-button {
  height: calc(3 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px));
  margin: auto 0;
}

.sd-input.sd-tagbox:focus-within {
  box-shadow: 0 0 0 2px var(--primary, var(--color-main));
}

.sv-tagbox__item {
  position: relative;
  display: flex;
  height: calc(3 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px));
  background-color: var(--primary, var(--color-main));
  border-radius: calc(0.25 * var(--base-unit, 8px));
}

.sv-tagbox__item-text {
  color: var(--sjs-primary-forecolor, #fff);
  min-width: calc(5.5 * var(--base-unit, 8px));
  text-align: center;
  font-weight: 600;
}

.sv-tagbox__item:hover .sd-tagbox-item_clean-button, .sv-tagbox__item:focus .sd-tagbox-item_clean-button, .sv-tagbox__item:focus-within .sd-tagbox-item_clean-button {
  display: block;
}

.sd-tagbox-item_clean-button {
  display: none;
  position: absolute;
  inset-inline-end: calc(1.5 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
  padding: 0;
  padding-inline-start: calc(4 * var(--base-unit, 8px));
  background: linear-gradient(270deg, var(--primary, var(--color-main)) 53.12%, rgba(25, 179, 148, 0) 100%);
}

.sd-tagbox-item_clean-button-svg {
  padding: calc(0.5 * var(--base-unit, 8px));
  width: calc(2 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
}
.sd-tagbox-item_clean-button-svg:hover {
  border-radius: 100px;
  background: var(--sjs-primary-forecolor-light, rgba(255, 255, 255, 0.25));
}
.sd-tagbox-item_clean-button-svg use {
  fill: var(--sjs-primary-forecolor, #fff);
}

.sd-tagbox__value.sd-dropdown__value {
  position: relative;
  gap: calc(0.5 * var(--base-unit, 8px));
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  padding-inline: unset;
  margin-inline: unset;
  margin-block: unset;
}

.sd-tagbox__filter-string-input {
  width: auto;
  display: flex;
  flex-grow: 1;
  height: calc(5 * var(--base-unit, 8px));
  position: initial;
}

.sd-tagbox__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: auto;
  height: 100%;
  text-align: left;
  cursor: text;
  pointer-events: none;
  color: var(--sjs-general-forecolor-light, #909090);
}

[dir=rtl] .sd-tagbox-item_clean-button, [style*="direction:rtl"] .sd-tagbox-item_clean-button, [style*="direction: rtl"] .sd-tagbox-item_clean-button {
  background: linear-gradient(90deg, var(--primary, var(--color-main)) 53.12%, rgba(25, 179, 148, 0) 100%);
}

.sd-imagepicker {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  border: none;
  gap: calc(2 * var(--base-unit, 8px));
  width: 100%;
  margin: 0;
}

.sd-imagepicker--column {
  align-items: flex-start;
  flex-direction: column;
}

@supports not (aspect-ratio: 1/1) {
  .sd-imagepicker > div {
    margin-right: calc(2 * var(--base-unit, 8px));
  }
}
.sd-imagepicker__item img, .sd-imagepicker__item .sd-imagepicker__image-container > div {
  border-radius: calc(0.5 * var(--base-unit, 8px));
  background-color: var(--background-dim-light, #f9f9f9);
}

.sd-imagepicker__item-decorator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sd-imagepicker__image-container {
  position: relative;
}

.sd-imagepicker__check-decorator {
  display: none;
  position: absolute;
  top: calc(1 * var(--base-unit, 8px));
  right: calc(1 * var(--base-unit, 8px));
  width: calc(6 * var(--base-unit, 8px));
  height: calc(6 * var(--base-unit, 8px));
  padding: calc(1.5 * var(--base-unit, 8px));
  box-sizing: border-box;
  border-radius: 100%;
  background-color: var(--background, #fff);
  z-index: 1;
}

.sd-imagepicker__check-icon {
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
  fill: var(--primary, var(--color-main));
}

.sd-imagepicker__item--checked .sd-imagepicker__check-decorator {
  display: block;
}

.sd-imagepicker__item--error .sd-imagepicker__image-container::before {
  display: block;
  position: absolute;
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
  border-radius: calc(0.5 * var(--base-unit, 8px));
  background: linear-gradient(0deg, var(--red-light, rgba(230, 10, 62, 0.1)), var(--red-light, rgba(230, 10, 62, 0.1)));
}

.sd-imagepicker__item:focus-within .sd-imagepicker__image, .sd-imagepicker__item--allowhover .sd-imagepicker__image:hover {
  opacity: 0.5;
}

.sd-imagepicker__image {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
}

.sd-imagepicker__text {
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  margin-top: calc(1 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor, #161616);
}

.sd-imagepicker__no-image {
  display: flex;
  background-color: var(--background-dim-light, #f9f9f9);
  inset-block-start: 0;
}

.sd-imagepicker__no-image-svg {
  height: calc(6 * var(--base-unit, 8px));
  width: calc(6 * var(--base-unit, 8px));
  margin: auto;
}
.sd-imagepicker__no-image-svg use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sd-imagepicker__column {
  display: flex;
  flex-direction: column;
  gap: calc(2 * var(--base-unit, 8px));
  align-items: flex-start;
  padding-right: 0;
}

.sd-selectbase__column.sd-imagepicker__column:not(:last-child) {
  padding-right: 0;
}

.sd-image__image {
  display: block;
  max-width: 100%;
  border-radius: calc(0.5 * var(--base-unit, 8px));
}

.sd-image__image--adaptive {
  width: 100%;
  height: auto;
  max-width: calc(80 * var(--base-unit, 8px));
}

.sd-image__no-image {
  background: var(--background-dim-light, #f9f9f9);
  min-width: calc(5 * var(--base-unit, 8px));
  min-height: calc(5 * var(--base-unit, 8px));
  width: 100%;
  height: 100%;
  position: absolute;
  inset-block-start: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-image__no-image use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sd-html {
  white-space: initial;
}

.sd-expression {
  color: var(--sjs-general-forecolor, #161616);
  font-size: calc(2 * var(--base-unit, 8px));
}

.sd-progress {
  height: 2px;
  background-color: var(--border-light, #eaeaea);
  position: relative;
}

.sd-progress__bar {
  position: relative;
  height: 100%;
  background-color: var(--primary, var(--color-main));
  overflow: hidden;
}

.sd-progress__text {
  position: absolute;
  margin-top: calc(1 * var(--base-unit, 8px));
  right: calc(3 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
  font-size: calc(1.5 * var(--base-unit, 8px));
  line-height: calc(2 * var(--base-unit, 8px));
  font-weight: 600;
}

@media only screen and (min-width: calc(125 * var(--base-unit, 8px))) {
  .sd-progress__text {
    margin-left: 5%;
  }
}
@media only screen and (max-width: calc(125 * var(--base-unit, 8px))) {
  .sd-progress__text {
    margin-left: 10px;
  }
}
.sd-boolean {
  display: flex;
  width: max-content;
  position: relative;
  padding: calc(0.5 * var(--base-unit, 8px));
  background: var(--sjs-editor-background, #f9f9f9);
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(12.5 * var(--base-unit, 8px));
}

.sd-boolean__thumb, .sd-boolean__label {
  display: block;
  color: var(--sjs-general-forecolor-light, #909090);
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
}

.sd-boolean__switch {
  display: flex;
  padding: calc(0.5 * var(--base-unit, 8px));
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: calc(12.5 * var(--base-unit, 8px));
}

.sd-boolean__control:focus ~ .sd-boolean__switch {
  box-shadow: inset 0 0 0 2px var(--primary, var(--color-main));
}

.sd-boolean--indeterminate .sd-boolean__thumb {
  display: none;
}

.sd-boolean__thumb {
  background: var(--background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(12.5 * var(--base-unit, 8px));
  transition-duration: 0.2s;
  transition-property: margin-left, transform;
  transition-timing-function: linear;
  color: var(--primary, var(--color-main));
  font-weight: 600;
  margin-left: 0%;
  transform: translateX(0);
}

.sd-boolean--checked .sd-boolean__thumb {
  margin-left: 100%;
  transform: translateX(-100%);
}

.sd-boolean--disabled .sd-boolean__thumb, .sd-boolean--disabled .sd-boolean__label {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
}

.svc-question__content .sd-boolean:not(.sd-boolean--checked):not(.sd-boolean--indeterminate) .sd-boolean__label:nth-of-type(1), .svc-question__content .sd-boolean--checked .sd-boolean__label:nth-of-type(2) {
  color: var(--primary, var(--color-main));
  font-weight: 600;
  background: var(--background, #fff);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: calc(12.5 * var(--base-unit, 8px));
}
.svc-question__content .sd-boolean__switch {
  display: none;
}

.sd-boolean--error {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
}

.sd-paneldynamic .sd-progress {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  transform: translateY(-1px);
}
.sd-paneldynamic > .sd-panel {
  padding-top: 1px;
  padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
}
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
  padding-bottom: 0;
  padding-top: calc(0.5 * var(--sd-base-vertical-padding) + var(--base-unit, 8px));
}
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header:after {
  display: none;
}
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header > .sd-panel__title {
  color: var(--sjs-general-forecolor-light, #909090);
}

.sd-question__content:first-child > .sd-paneldynamic > .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
  padding-top: var(--sd-base-vertical-padding);
}

.sd-paneldynamic__separator {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  border-color: var(--border-light, #eaeaea);
  background: var(--border-light, #eaeaea);
  height: 1px;
  border: none;
}

.sd-paneldynamic__panel-wrapper {
  padding-bottom: calc(1 * var(--sd-base-padding));
}
.sd-paneldynamic__panel-wrapper:after {
  display: table;
  clear: both;
  content: " ";
}

.sd-paneldynamic__panel-wrapper--in-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sd-paneldynamic__footer {
  clear: both;
}
.sd-paneldynamic__footer .sd-paneldynamic__prev-btn, .sd-paneldynamic__footer .sd-paneldynamic__next-btn {
  display: block;
}
.sd-paneldynamic__footer .sd-paneldynamic__prev-btn svg, .sd-paneldynamic__footer .sd-paneldynamic__next-btn svg {
  width: calc(2 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
}
.sd-paneldynamic__footer .sd-paneldynamic__add-btn, .sd-paneldynamic__footer .sd-paneldynamic__progress-text, .sd-paneldynamic__footer .sd-paneldynamic__progress--bottom {
  display: initial;
}

.sd-paneldynamic__buttons-container {
  display: flex;
  align-items: center;
  padding: calc(var(--sd-base-vertical-padding) - var(--base-unit, 8px)) 0;
}

.sd-paneldynamic__progress-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: calc(-1 * var(--base-unit, 8px));
}

.sd-paneldynamic__progress-text {
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
  margin: 0;
  margin-right: calc(3 * var(--base-unit, 8px));
}

.sd-paneldynamic__prev-btn, .sd-paneldynamic__next-btn {
  width: calc(2 * var(--base-unit, 8px));
  height: calc(2 * var(--base-unit, 8px));
}

.sd-paneldynamic__prev-btn .sv-svg-icon, .sd-paneldynamic__next-btn .sv-svg-icon {
  display: block;
}

.sd-paneldynamic__prev-btn {
  margin-right: calc(2 * var(--base-unit, 8px));
}

.sd-paneldynamic__next-btn {
  margin-left: calc(-1 * var(--base-unit, 8px));
  margin-right: calc(2 * var(--base-unit, 8px));
  transform: rotate(180deg);
}

.sd-paneldynamic__placeholder .sd-paneldynamic__add-btn {
  display: initial;
  margin-left: 0;
}

.sd-question--empty.sd-question--paneldynamic > .sd-question__content {
  padding-bottom: var(--sd-base-padding);
}

.svc-question__content .sd-paneldynamic__panel-wrapper {
  padding: 0;
}

.sd-paneldynamic__buttons-container .sd-action-bar {
  width: 100%;
  margin: 0 calc(-3 * var(--base-unit, 8px));
  width: calc(100% + 6 * var(--base-unit, 8px));
}

.sd-paneldynamic__panel-footer {
  border-top: none;
  position: relative;
  top: calc(0.5 * var(--sd-base-vertical-padding));
  margin-right: calc(-3 * var(--base-unit, 8px));
  justify-content: flex-end;
}
.sd-paneldynamic__panel-footer .sv-action:not(.sv-action--hidden) {
  margin-bottom: calc(-1 * var(--base-unit, 8px));
}

.sv-tabs-toolbar.sv-action-bar {
  gap: calc(4 * var(--base-unit, 8px));
}
.sv-tabs-toolbar.sv-tabs-toolbar--left {
  justify-content: flex-start;
}
.sv-tabs-toolbar.sv-tabs-toolbar--right {
  justify-content: flex-end;
}
.sv-tabs-toolbar.sv-tabs-toolbar--center {
  justify-content: center;
}

.sv-tab-item__root {
  display: flex;
}

.sv-tab-item {
  padding: calc(1 * var(--base-unit, 8px)) 0 calc(2 * var(--base-unit, 8px)) 0;
  display: flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  padding: calc(1 * var(--base-unit, 8px));
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: calc(2 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
  overflow-x: hidden;
  white-space: nowrap;
}
.sv-tab-item.sv-tab-item--pressed {
  color: var(--sjs-general-forecolor, #161616);
  box-shadow: inset 0px -2px 0px var(--primary, var(--color-main));
}

.sv-tab-item__title {
  line-height: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
  display: flex;
  align-items: center;
}

.sd-paneldynamic__header.sd-element__header.sd-paneldynamic__header-tab {
  padding-bottom: 0;
}
.sd-paneldynamic__header.sd-element__header.sd-paneldynamic__header-tab::after {
  bottom: 0;
}

.sd-file {
  min-height: calc(36 * var(--base-unit, 8px));
  position: relative;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
}
.sd-file .sv-action-bar {
  padding: calc(1 * var(--base-unit, 8px)) 0;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.sd-file .sv-action-bar .sv-action-bar-item {
  height: calc(4 * var(--base-unit, 8px));
  color: var(--sjs-general-forecolor-light, #909090);
  border-radius: calc(2 * var(--base-unit, 8px));
}
.sd-file .sv-action-bar #fileIndex .sv-action-bar-item {
  padding: calc(0.5 * var(--base-unit, 8px)) 0;
}
.sd-file .sv-action-bar #fileIndex .sv-action-bar-item:hover {
  background-color: var(--background, #fff);
}
.sd-file .sv-action-bar #fileIndex .sv-action-bar-item:disabled {
  opacity: initial;
}

.sd-file__decorator {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px dashed var(--border, #d6d6d6);
  justify-content: center;
  align-items: center;
}

.sd-file__decorator--drag {
  border: 1px solid var(--primary, var(--color-main));
  box-shadow: inset 0 0 0 1px var(--primary, var(--color-main));
  background: var(--primary-light, rgba(25, 179, 148, 0.1));
  z-index: 1;
}

.sd-file__no-file-chosen {
  display: none;
}

.sd-file__drag-area-placeholder {
  padding: 0 calc(8 * var(--base-unit, 8px));
  text-align: center;
  word-break: break-word;
  white-space: normal;
  color: var(--sjs-general-forecolor-light, #909090);
}

.sd-file__choose-btn--text {
  display: block;
  margin-top: calc(1 * var(--base-unit, 8px));
  font-weight: 600;
  color: var(--primary, var(--color-main));
  cursor: pointer;
}

.sd-question--answered .sd-file__drag-area-placeholder, .sd-file__choose-btn--text svg {
  display: none;
}

.sd-file__choose-btn--icon {
  z-index: 2;
  top: calc(1 * var(--base-unit, 8px));
  position: absolute;
}
.sd-file__choose-btn--icon span:first-child {
  display: none;
}

.sd-file__clean-btn {
  top: calc(1 * var(--base-unit, 8px));
  position: absolute;
  z-index: 2;
  right: calc(1 * var(--base-unit, 8px));
}
.sd-file__clean-btn span:first-child {
  display: none;
}

.sd-file__choose-btn--icon {
  right: calc(8 * var(--base-unit, 8px));
}

.sd-file__list {
  overflow: auto;
  display: flex;
  box-sizing: content-box;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  padding: calc(10.5 * var(--base-unit, 8px)) 0;
  min-height: calc(15 * var(--base-unit, 8px));
  max-height: calc(15 * var(--base-unit, 8px));
  position: absolute;
  width: 100%;
}

.sd-file__preview {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
  margin: 0 auto;
}
.sd-file__preview .sd-file__default-image {
  width: calc(7 * var(--base-unit, 8px));
  height: 90px;
}
.sd-file__preview img:hover + .sd-file__remove-file-button, .sd-file__preview svg:hover + .sd-file__remove-file-button, .sd-file__preview .sd-file__remove-file-button:hover {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sd-file__sign {
  margin-top: calc(1 * var(--base-unit, 8px));
  text-align: center;
  font-size: calc(1.5 * var(--base-unit, 8px));
  line-height: calc(2 * var(--base-unit, 8px));
}
.sd-file__sign a {
  display: block;
  text-decoration: none;
  color: var(--sjs-general-forecolor, #161616);
  white-space: normal;
  word-break: break-all;
  width: calc(12 * var(--base-unit, 8px));
  overflow: hidden;
  max-height: calc(6 * var(--base-unit, 8px));
  text-overflow: ellipsis;
  line-height: calc(2 * var(--base-unit, 8px));
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sd-file__remove-file-button {
  display: none;
}

.sd-file__decorator--error {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
}

.sd-file__image-wrapper {
  position: relative;
  text-align: center;
  min-width: calc(12 * var(--base-unit, 8px));
  min-height: calc(12 * var(--base-unit, 8px));
}
.sd-file__image-wrapper img:not(.sd-file__default-image) {
  display: block;
  width: calc(12 * var(--base-unit, 8px));
  height: calc(12 * var(--base-unit, 8px));
  object-fit: contain;
  background: var(--background-dim, #f3f3f3);
}

.sd-file--single img:hover + .sd-file__remove-file-button {
  display: none;
}

.sd-file--mobile .sd-file__list {
  height: calc(100% - 4 * var(--base-unit, 8px));
}

.sd-file--single-image {
  height: calc(36 * var(--base-unit, 8px));
}
.sd-file--single-image .sd-file__preview {
  width: 100%;
  margin: 0;
}
.sd-file--single-image .sd-file__list {
  padding: 0;
  height: 100%;
  max-height: 100%;
  width: 100%;
}
.sd-file--single-image .sd-file__image-wrapper {
  min-height: 100%;
  min-width: 100%;
}
.sd-file--single-image .sd-file__image-wrapper img {
  width: 100%;
  height: 100%;
  background-color: var(--background-dim-light, #f9f9f9);
}
.sd-file--single-image .sd-file__sign {
  position: absolute;
  margin: 0;
  width: 100%;
  min-height: 100%;
}
.sd-file--single-image .sd-file__sign a {
  color: transparent;
  width: 100%;
  height: 100%;
  outline: none;
}

.sd-file > input:focus + .sd-file__decorator .sd-file__choose-btn.sd-file__choose-btn--icon use {
  fill: var(--primary, var(--color-main));
}
.sd-file > input:focus + .sd-file__decorator .sd-file__choose-btn:not(.sd-file__choose-btn--icon) {
  background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
}

.sd-file__drag-area {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sd-hidden {
  display: none !important;
}

.sd-root-modern--mobile .sd-body__navigation .sv-action:not(.sv-action--hidden) {
  flex-grow: 1;
}

.sd-body__navigation .sv-action--hidden {
  display: none;
}

.sd-btn {
  margin-top: 30px;
  min-width: 180px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px 22px 0 22px;
  height: 36px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  background-color: var(--color-main);
  border-radius: 4px;
  border: none;
  box-shadow: 0 4px 9px -4px var(--color-main);
  transition: 0.2s;
  height: 36px;
}
.sd-btn:not(:disabled):hover, .sd-btn:not(:disabled):focus {
  background-color: #386BC0;
  box-shadow: 0 8px 9px -4px rgba(59, 113, 202, 0.3), 0 4px 18px 0 rgba(59, 113, 202, 0.2);
}
.sd-btn:disabled {
  opacity: 0.7;
}
@media screen and (max-width: 576px) {
  .sd-btn {
    width: 100%;
  }
}
.sd-btn:disabled {
  color: var(--sjs-general-forecolor, #161616);
  opacity: 0.25;
  cursor: default;
}

.sd-btn--action {
  background-color: var(--primary, var(--color-main));
  color: var(--sjs-primary-forecolor, #fff);
}

.sd-body {
  width: 100%;
}
.sd-body .sd-body__timer {
  padding: calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) 0;
  box-sizing: border-box;
}
.sd-body.sd-body--static {
  max-width: calc(84 * var(--base-unit, 8px));
  margin-left: auto;
  margin-right: auto;
}
.sd-body.sd-body--static .sd-body__timer, .sd-body.sd-body--static .sd-body__navigation, .sd-body.sd-body--static .sd-body__page {
  margin-left: 0;
  margin-right: 0;
}
.sd-body.sd-body--responsive {
  max-width: initial;
}
.sd-body.sd-body--responsive .sd-body__timer, .sd-body.sd-body--responsive .sd-body__navigation {
  padding: calc(2 * var(--base-unit, 8px)) var(--sd-page-vertical-padding);
}
.sd-body.sd-body--responsive.sd-body--with-timer {
  max-width: calc(100% + var(--sd-timer-size) * -1.4444444444 + 6 * var(--base-unit, 8px));
  margin-left: auto;
  margin-right: auto;
}

.sd-root-modern--mobile .sd-body.sd-body--with-timer.sd-body--responsive {
  max-width: initial;
  margin-left: 0;
  margin-right: 0;
}

.sd-body__navigation.sd-action-bar {
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: calc(2 * var(--base-unit, 8px));
}

.sd-body__progress {
  margin-bottom: calc(4 * var(--base-unit, 8px));
}

.sd-body__progress--top {
  position: sticky;
  top: 0;
  z-index: 50;
}

.sd-body--empty {
  min-height: 400px;
  text-align: center;
  padding-top: 180px;
  box-sizing: border-box;
}

.sd-multipletext {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  height: 1px;
}

.sd-multipletext__cell {
  height: 100%;
}
.sd-multipletext__cell:not(:last-child) {
  padding-right: calc(2 * var(--base-unit, 8px));
}

.sd-multipletext__item-container {
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.sd-multipletext__item-container.sd-input:focus-within {
  box-shadow: inset 0 0 0 2px var(--primary, var(--color-main));
}
.sd-multipletext__item-container .sd-input {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  height: calc(3 * var(--base-unit, 8px));
  margin-top: calc(1.5 * var(--base-unit, 8px));
  margin-bottom: calc(1.5 * var(--base-unit, 8px));
}

.sd-multipletext__item-title {
  margin-top: calc(1.5 * var(--base-unit, 8px));
  margin-bottom: calc(1.5 * var(--base-unit, 8px));
  height: calc(100% - var(--base-unit, 8px) * 3);
  max-width: 30%;
  padding-right: calc(2 * var(--base-unit, 8px));
  border-right: 1px solid var(--border, #d6d6d6);
  word-break: break-word;
  white-space: normal;
  color: var(--sjs-general-forecolor-light, #909090);
}

.sd-multipletext__item {
  flex-grow: 1;
}

.sd-multipletext__content .sd-multipletext__item-container {
  position: relative;
}

.sd-multipletext__item-container--error {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
}
.sd-multipletext__item-container--error .sd-input--error {
  background-color: transparent;
}

.sd-multipletext__item-container:hover:not(:focus-within) > .sd-question__erbox--tooltip {
  display: inline-block;
}

.sd-multipletext tr:not(:last-child) .sd-multipletext__cell {
  padding-bottom: calc(2 * var(--base-unit, 8px));
}

.sd-action {
  appearance: none;
  border: none;
  background: transparent;
  padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
  color: var(--primary, var(--color-main));
  border-radius: calc(12.5 * var(--base-unit, 8px));
  font-weight: 600;
  font-style: normal;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  outline: none;
}

.sd-action--negative {
  color: var(--red, #e60a3e);
}

.sd-action--icon {
  padding: calc(1 * var(--base-unit, 8px));
}
.sd-action--icon use {
  fill: var(--sjs-general-forecolor-light, #909090);
}

svg.sd-action--icon {
  fill: var(--sjs-general-forecolor-light, #909090);
}

.sd-action:disabled, .sd-action--disabled {
  color: var(--sjs-general-forecolor, #161616);
  cursor: default;
  opacity: 0.25;
  pointer-events: none;
}

.sd-action:not(.sd-action--pressed):hover, .sd-action:not(.sd-action--pressed):focus {
  outline: none;
  background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
  cursor: pointer;
  opacity: 1;
}
.sd-action:not(.sd-action--pressed):hover.sd-action--icon, .sd-action:not(.sd-action--pressed):focus.sd-action--icon {
  background-color: var(--background-dim, #f3f3f3);
}
.sd-action:not(.sd-action--pressed):hover.sd-action--negative, .sd-action:not(.sd-action--pressed):focus.sd-action--negative {
  background-color: var(--red-light, rgba(230, 10, 62, 0.1));
}
.sd-action:not(.sd-action--pressed):hover.sd-action--negative.sd-action--icon use, .sd-action:not(.sd-action--pressed):focus.sd-action--negative.sd-action--icon use {
  fill: var(--red, #e60a3e);
}
.sd-action:not(.sd-action--pressed):hover:active, .sd-action:not(.sd-action--pressed):focus:active {
  opacity: 0.5;
}

.sd-action__icon {
  display: block;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}

.sd-action--pressed:not(.sd-action--active) {
  background-color: var(--background-dim, #f3f3f3);
  opacity: 0.5;
}

.sd-action-bar {
  display: flex;
  align-items: center;
}
.sd-action-bar .sv-action:not(:last-child) .sv-action__content {
  padding-right: 0;
}

.sd-context-btn {
  background-color: var(--background, #fff);
  padding: calc(1.5 * var(--base-unit, 8px));
  border-radius: calc(12.5 * var(--base-unit, 8px));
  border: none;
  outline: none;
  cursor: pointer;
}
.sd-context-btn svg {
  display: block;
  width: calc(3 * var(--base-unit, 8px));
  height: calc(3 * var(--base-unit, 8px));
}
.sd-context-btn use {
  fill: var(--sjs-general-forecolor-light, #909090);
}
.sd-context-btn:hover use, .sd-context-btn:focus use {
  fill: var(--primary, var(--color-main));
}
.sd-context-btn:hover.sd-context-btn--negative use, .sd-context-btn:focus.sd-context-btn--negative use {
  fill: var(--red, #e60a3e);
}
.sd-context-btn:disabled {
  opacity: 0.25;
}

.sd-completedpage {
  font-weight: bold;
  box-sizing: border-box;
  text-align: center;
  height: auto;
}
.sd-completedpage h3 {
  font-size: calc(3 * var(--base-unit, 8px));
}
.sd-completedpage:before, .sd-completedpage:after {
  display: block;
  width: calc(9 * var(--base-unit, 8px));
  margin-left: calc(50% - 4.5 * var(--base-unit, 8px));
  content: "";
}
.sd-completedpage:before {
  height: calc(13 * var(--base-unit, 8px));
}
.sd-completedpage:after {
  height: calc(2 * var(--base-unit, 8px));
}

.sd-progress-buttons__image-button-left, .sd-progress-buttons__image-button-right {
  display: none;
}

.sd-progress-buttons__image-button--hidden {
  visibility: hidden;
}

.sd-progress-buttons__list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sd-progress-buttons__list li {
  text-align: center;
  flex-grow: 1;
  text-decoration: none;
  border-top: 2px solid var(--border-light, #eaeaea);
  padding-top: calc(2 * var(--base-unit, 8px));
  padding-bottom: calc(4 * var(--base-unit, 8px));
  cursor: pointer;
}
.sd-progress-buttons__list li:hover .sd-progress-buttons__page-title {
  text-decoration-line: underline;
}
.sd-progress-buttons__list .sd-progress-buttons__list-element--current, .sd-progress-buttons__list .sd-progress-buttons__list-element--passed {
  border-top: 2px solid var(--primary, var(--color-main));
}

.sd-progress-buttons__list-element--nonclickable .sd-progress-buttons__page-title {
  color: var(--sjs-general-forecolor-light, #909090);
}

.sd-progress-buttons__list-element--current .sd-progress-buttons__page-title, .sd-progress-buttons__list-element--current .sd-progress-buttons__page-description {
  color: var(--primary, var(--color-main));
}

.sd-progress-buttons__page-title {
  width: 100%;
  font-size: calc(2 * var(--base-unit, 8px));
  font-weight: 600;
  line-height: calc(3 * var(--base-unit, 8px));
}

.sd-progress-buttons__page-description {
  width: 100%;
  font-size: calc(1.5 * var(--base-unit, 8px));
  line-height: calc(2 * var(--base-unit, 8px));
  font-weight: 600;
  color: var(--sjs-general-forecolor-light, #909090);
}

.sv_progress-toc {
  padding: calc(1 * var(--base-unit, 8px));
  max-width: calc(42 * var(--base-unit, 8px));
  height: 100%;
  background: var(--background, #fff);
  box-sizing: border-box;
  min-width: calc(32 * var(--base-unit, 8px));
}
.sv_progress-toc .sv-list__item.sv-list__item--selected .sv-list__item-body {
  background: var(--primary-light, rgba(25, 179, 148, 0.1));
  color: var(--sjs-general-forecolor, #161616);
  font-weight: 400;
}
.sv_progress-toc .sv-list__item span {
  white-space: break-spaces;
}
.sv_progress-toc .sv-list__item-body {
  padding-inline-start: calc(2 * var(--base-unit, 8px));
  padding-inline-end: calc(2 * var(--base-unit, 8px));
  border-radius: 3px;
  padding-top: calc(1.5 * var(--base-unit, 8px));
  padding-bottom: calc(1.5 * var(--base-unit, 8px));
}

.sv_progress-toc--left {
  border-right: 1px solid var(--border, #d6d6d6);
}

.sv_progress-toc--right {
  border-left: 1px solid var(--border, #d6d6d6);
}

.sd-list {
  padding-right: calc(0.5 * var(--base-unit, 8px));
  padding-left: calc(0.5 * var(--base-unit, 8px));
}

.sd-list__item.sd-list__item {
  padding: 0;
}
.sd-list__item.sd-list__item .sd-list__item-body {
  padding-top: calc(1.5 * var(--base-unit, 8px));
  padding-bottom: calc(1.5 * var(--base-unit, 8px));
  border-radius: 3px;
  font-size: calc(2 * var(--base-unit, 8px));
  line-height: calc(3 * var(--base-unit, 8px));
  padding-inline: calc(2 * var(--base-unit, 8px)) calc(8 * var(--base-unit, 8px));
}

.sd-timer {
  z-index: 2;
  position: fixed;
  bottom: calc(var(--sd-timer-size) / 144 * 32);
  right: calc(1 * var(--base-unit, 8px));
  background: white;
  width: var(--sd-timer-size);
  height: var(--sd-timer-size);
  margin-right: calc(var(--sd-timer-size) / 144 * 32);
  display: flex;
  border-radius: 100%;
  padding: calc(var(--sd-timer-size) / 144 * 8);
  filter: drop-shadow(0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1));
  box-shadow: 0 2px 6px #0000001a;
  box-sizing: border-box;
}

.sd-timer--top {
  top: calc(var(--sd-timer-size) / 144 * 32);
  margin-top: calc(4 * var(--base-unit, 8px));
  margin-bottom: calc(-1 * var(--sd-timer-size));
}

.sd-timer--bottom {
  bottom: calc(var(--sd-timer-size) / 144 * 32);
  margin-top: calc(var(--sd-timer-size) * -1.2222222222);
}

.sd-timer__progress {
  --sd-timer-stroke-background-color: var(--background-dim, #f3f3f3);
  --sd-timer-stroke-background-width: 2px;
  stroke-linecap: round;
  height: 100%;
  width: 100%;
  transform: rotate(-90deg);
  stroke: var(--primary, var(--color-main));
  stroke-dashoffset: 0;
  fill: none;
  stroke-width: 4px;
}

.sd-timer__progress--animation {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.sd-timer__text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: calc(1 * var(--base-unit, 8px));
  color: var(--primary, var(--color-main));
  font-weight: 700;
  font-size: calc(var(--sd-timer-size) / 144 * 32);
}

.sd-timer__text--major {
  color: var(--primary, var(--color-main));
  font-weight: 700;
  font-size: calc(var(--sd-timer-size) / 144 * 32);
}

.sd-timer__text--minor {
  color: var(--sjs-general-forecolor-light, #909090);
  font-weight: 600;
  font-size: calc(1.5 * var(--base-unit, 8px));
}

sv-components-container, .sd-components-container {
  display: flex;
}

.sv-components-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.sv-components-column {
  display: flex;
  flex-direction: column;
}

.sv-components-column--expandable {
  flex-grow: 1;
}

.sjs_sp_container {
  position: relative;
}

.sjs_sp_controls {
  position: absolute;
  left: 0;
  bottom: 0;
}
.sjs_sp_controls > button {
  user-select: none;
}

.sjs_sp_container > div > canvas:focus {
  outline: none;
}

.sjs_sp_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.sd-root-modern, .svc-logic-question-value {
  --sd-base-padding: calc(5 * var(--base-unit, 8px));
  --sd-base-vertical-padding: calc(4 * var(--base-unit, 8px));
  --sd-page-vertical-padding: calc(3 * var(--base-unit, 8px));
}

.svc-creator--mobile .sd-root-modern {
  --sd-base-padding: calc(3 * var(--base-unit, 8px));
  --sd-base-vertical-padding: calc(2 * var(--base-unit, 8px));
  --sd-page-vertical-padding: calc(2 * var(--base-unit, 8px));
}

.sd-root-modern.sd-root-modern--mobile {
  --sd-base-padding: calc(3 * var(--base-unit, 8px));
  --sd-base-vertical-padding: calc(2 * var(--base-unit, 8px));
  --sd-page-vertical-padding: calc(2 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-element__num {
  float: none;
  margin-inline-start: 0;
  width: auto;
  padding-inline-start: 0;
  padding-inline-end: 0;
}
.sd-root-modern.sd-root-modern--mobile .sd-element__num + span {
  float: none;
  width: auto;
}
.sd-root-modern.sd-root-modern--mobile .sd-element__title--expandable:before {
  left: calc(-2.5 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-title.sd-container-modern__title {
  flex-direction: column;
}
.sd-root-modern.sd-root-modern--mobile .sd-header__text {
  min-width: 100%;
}
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell {
  display: block;
}
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell:not(:last-child) {
  padding-right: 0;
  padding-bottom: calc(2 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-container {
  flex-direction: column;
}
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title {
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  padding-right: 0;
  border-right: none;
  margin-bottom: 0;
  margin-top: calc(1 * var(--base-unit, 8px));
  width: 100%;
  max-width: none;
}
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item {
  width: 100%;
}
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item .sd-input {
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: calc(1 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-selectbase--multi-column {
  flex-direction: column;
}
.sd-root-modern.sd-root-modern--mobile .sd-selectbase--multi-column .sd-selectbase__column:not(:last-child) {
  padding-right: 0;
}
.sd-root-modern.sd-root-modern--mobile .sd-question.sd-question--table > .sd-question__content {
  padding-top: 0;
}
.sd-root-modern.sd-root-modern--mobile .sd-question--table, .sd-root-modern.sd-root-modern--mobile .sd-question--scroll {
  overflow-x: visible;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell {
  display: flex;
  align-items: flex-start;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell .sd-matrix__responsive-title {
  margin-left: calc(1 * var(--base-unit, 8px));
  text-align: left;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell:first-of-type {
  padding-top: calc(2 * var(--base-unit, 8px));
  padding-bottom: calc(1 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-table thead {
  display: none;
}
.sd-root-modern.sd-root-modern--mobile .sd-table tr {
  display: block;
}
.sd-root-modern.sd-root-modern--mobile .sd-matrix__table tr + tr {
  margin-top: calc(1 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr {
  padding-bottom: calc(1 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr::after {
  z-index: 12;
  content: " ";
  display: block;
  position: relative;
  height: 1px;
  background-color: var(--border-light, #eaeaea);
  left: calc(-2 * var(--base-unit, 8px));
  bottom: calc(-1 * var(--base-unit, 8px));
  width: calc(100% + 4 * var(--base-unit, 8px));
  z-index: 12;
}
.sd-root-modern.sd-root-modern--mobile .sd-matrix__label {
  justify-content: start;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell:not(.sd-matrix__cell):not(:first-of-type) {
  margin-top: calc(1 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell:not(.sd-matrix__cell):not(.sd-table__cell--actions):not(.sd-table__cell--row-text)::before {
  padding-top: calc(2 * var(--base-unit, 8px));
  padding-bottom: calc(1 * var(--base-unit, 8px));
  content: attr(data-responsive-title);
  font-weight: 600;
  display: block;
  text-align: left;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-table__cell--actions {
  width: auto;
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-table__cell--actions .sd-action-bar {
  margin-right: calc(-3 * var(--base-unit, 8px));
  justify-content: flex-end;
  background: var(--background, #fff);
}
.sd-root-modern.sd-root-modern--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn {
  opacity: 1;
  padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn .sd-action__icon {
  display: none;
}
.sd-root-modern.sd-root-modern--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn:after {
  content: attr(title);
}
.sd-root-modern.sd-root-modern--mobile .sd-matrixdynamic__footer {
  padding-top: calc(1 * var(--base-unit, 8px));
  margin-bottom: calc(-2 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--row-text:not(.sd-matrix__cell) {
  color: var(--sjs-general-forecolor-light, #909090);
  padding-top: calc(2 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr:not(:last-child) {
  padding-bottom: calc(2 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr::after {
  bottom: calc(-2 * var(--base-unit, 8px));
}
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr:last-child:after {
  content: none;
}
.sd-root-modern.sd-root-modern--mobile .sv-ranking-item__icon-container {
  margin-left: 0;
  margin-right: 0;
}

body {
  --sv-defaultV2-mark: true;
}

.sd-root-modern {
  -webkit-font-smoothing: antialiased;
  --sd-mobile-width: 600px;
  --sd-imagepicker-gap: 16px;
  --sd-timer-size: calc(18 * var(--base-unit, 8px));
  width: 100%;
  background-color: transparent;
}
.sd-root-modern * {
  scrollbar-width: thin;
  scrollbar-color: var(--border, #d6d6d6) transparent;
}
.sd-root-modern ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background-color: transparent;
}
.sd-root-modern ::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 32px;
  background-color: var(--border, #d6d6d6);
}
.sd-root-modern ::-webkit-scrollbar-track {
  background: transparent;
}
.sd-root-modern ::-webkit-scrollbar-thumb:hover {
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: var(--sjs-general-forecolor-light, #909090);
}

.sd-container-modern {
  margin-bottom: calc(10 * var(--base-unit, 8px));
}

.sd-root-modern--mobile {
  --sd-timer-size: calc(9 * var(--base-unit, 8px));
}

.sv-popup .sv-popup__scrolling-content {
  scrollbar-width: thin;
  scrollbar-color: var(--border, #d6d6d6) transparent;
}
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar, .sv-popup .sv-popup__scrolling-content::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background-color: var(--background, #fff);
}
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-thumb, .sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 32px;
  background-color: var(--border, #d6d6d6);
}
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-track, .sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-track {
  background: transparent;
}
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-thumb:hover, .sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-thumb:hover {
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: var(--sjs-general-forecolor-light, #909090);
}
.sv-popup.sv-popup--dropdown .sv-popup__shadow {
  box-shadow: 0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1);
}
.sv-popup.sv-popup--dropdown .sv-popup__body-content {
  background-color: var(--background, #fff);
  padding: calc(1 * var(--base-unit, 8px)) 0;
}
.sv-popup.sv-popup--modal .sv-popup__body-content {
  box-shadow: 0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1);
  background-color: var(--background-dim-light, #f9f9f9);
}
.sv-popup.sv-popup--modal .sv-popup__body-footer {
  padding-bottom: 2px;
}
.sv-popup.sv-popup--overlay .sv-popup__body-content {
  background-color: var(--background-dim, #f3f3f3);
}

.survey-compelete-html {
  display: none;
}
.survey-compelete-html__inner {
  margin-top: 30px;
}

@media screen and (min-width: 1200px) {
  #sp_101_content .sd-element--nested {
    display: flex;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  #sp_101_content .sd-question__header {
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  #sp_101_content .sd-question__content {
    flex: 1;
  }
}
.tabs-header {
  display: flex;
  overflow-y: hidden;
  white-space: nowrap;
}
.tabs-header__item:first-child {
  position: relative;
}
.tabs-header__item:first-child:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 3px solid var(--color-main);
}
.tabs-header__link {
  display: block;
  padding: 15px 30px;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .tabs-header__link {
    padding: 10px 8px;
  }
}
.tabs-header__link.active a {
  color: var(--color-accent);
}
@media screen and (min-width: 320px) and (max-width: 344px) {
  .tabs-header {
    font-size: 12px;
  }
}

.tabs-box {
  padding-top: 20px;
}
.tabs-box__item:not(:first-child) {
  display: none;
}
.tippy-box[data-theme~=main] {
  background-color: transparent;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}
.tippy-box[data-theme~=main] .tippy-content {
  max-width: 300px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  background: #37454A;
  line-height: 1.4;
}
.tippy-box[data-theme~=main] .tippy-arrow {
  color: #37454A;
}

.tippy-box[data-theme~=links] {
  background-color: transparent;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}
.tippy-box[data-theme~=links] .tippy-content {
  max-width: calc(100vw - 60px);
  padding: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  border-radius: 4px;
  background: #37454A;
}
@media screen and (max-width: 576px) {
  .tippy-box[data-theme~=links] .tippy-content {
    width: auto;
  }
}
.tippy-box[data-theme~=links] .tippy-arrow {
  color: #37454A;
}
.tippy-box[data-theme~=links] .tippy-tooltip {
  min-width: 150px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tippy-box[data-theme~=links] .tippy-tooltip__accent {
  color: #E34C4C;
}
.tippy-box[data-theme~=links] .tippy-tooltip p {
  font-weight: 400;
}
.tippy-box[data-theme~=links] .tippy-tooltip p:last-child {
  margin-bottom: 0;
}
.tippy-box[data-theme~=links] .tippy-tooltip__list {
  list-style: none;
}
.tippy-box[data-theme~=links] .tippy-tooltip__list-item {
  padding: 0 10px 0 16px;
  position: relative;
  margin-bottom: 20px;
}
.tippy-box[data-theme~=links] .tippy-tooltip__list-item:before {
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  border-radius: 50%;
  content: "";
  background: #E34C4C;
  width: 8px;
  height: 8px;
}
.tippy-box[data-theme~=links] .tippy-tooltip__list-item:last-child {
  margin-bottom: 0;
}
.tippy-box[data-theme~=links] .tippy-tooltip__link {
  font-weight: normal;
  padding: 10px 20px;
  display: block;
  color: #fff;
}
.tippy-box[data-theme~=links] .tippy-tooltip__link:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.1);
}

.tippy-box[data-theme~=notices] {
  background-color: transparent;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}
.tippy-box[data-theme~=notices] .tippy-content {
  max-width: calc(100vw - 60px);
  width: 350px;
  padding: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: var(--color-secondary);
  border-radius: 4px;
  background: #fff;
}
.tippy-box[data-theme~=notices] .tippy-arrow {
  display: none;
  color: #fff;
}

@media screen and (max-width: 576px) {
  .tippy-content {
    width: calc(100vw - 60px);
  }
}

[data-tippy-content] {
  cursor: pointer;
}

.wrap-tooltip {
  display: none;
}

.tooltip-close {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.tooltip-close:hover {
  opacity: 1;
}
.tooltip-close svg {
  stroke-width: 2px;
  fill: #878F92;
  stroke: #878F92;
}
/*# sourceMappingURL=styles.min.css.map */
