.ms-ctrl-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}

@keyframes slideTopToBottom {
  0% {
    transform: translate(0, -20px);
  }
}

@keyframes slideBottomToTop {
  0% {
    transform: translate(0, 20px);
  }
}

@keyframes slideLeftToRight {
  0% {
    transform: translate(-20px, 0);
  }
}

@keyframes slideRightToLeft {
  0% {
    transform: translate(20px, 0);
  }
}

.ms-ctrl-slide {
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1);
}

.ms-ctrl-slide.ms-ctrl-slideTopToBottom {
  animation-name: fadeIn, slideTopToBottom;
}

.ms-ctrl-slide.ms-ctrl-slideBottomToTop {
  animation-name: fadeIn, slideBottomToTop;
}

.ms-ctrl-slide.ms-ctrl-slideLeftToRight {
  animation-name: fadeIn, slideLeftToRight;
}

.ms-ctrl-slide.ms-ctrl-slideRightToLeft {
  animation-name: fadeIn, slideRightToLeft;
}

@font-face {
  font-family: 'FabricMDL2Icons';
  src: url("assets/fonts/fabricmdl2icons.woff2") format("woff2"),
       url("assets/fonts/fabricmdl2icons.woff") format("woff"),
       url("assets/fonts/fabricmdl2icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.ms-icon {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-family: 'FabricMDL2Icons';
  font-style: normal;
  font-weight: normal;
}

.ms-icon-close::before {
  content: '\E8BB';
}

.ms-icon-chevronDown::before {
  content: '\E70D';
}

.ms-icon-chevronLeft::before {
  content: "\E76B";
}

.ms-icon-chevronRight::before {
  content: "\E76C";
}

.ms-icon-calendar::before {
  content: "\E787";
}

.ms-icon-radioOff::before {
  content: "\ECCA";
}

.ms-icon-radioOn::before {
  content: "\ECCB";
}

.ms-icon-checkboxOff::before {
  content: "\E739";
}

.ms-icon-checkboxOn::before {
  content: "\E73A";
}

.ms-icon-checkboxOn-reversed::before {
  content: "\E73D";
}

.ms-icon-checkMark::before {
  content: "\E73E";
}

.ms-ctrl {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: normal;
}

.ms-ctrl-dropdown {
  border: 1px solid #EEEEEE;
  background-color: white;
  height: 32px;
  display: flex;
  padding-left: 12px;
  padding-right: 12px;
  cursor: pointer;
}

.ms-ctrl-dropdown:hover {
  border: 1px solid #0078D7;
}

@media (forced-colors: none) {
  .ms-ctrl-dropdown:focus {
    border: 1px solid #0078D7;
    outline: 0;
  }
}

.ms-dropdown-label {
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 100%;
  width: 100%;
  color: #333333;
  flex: 1 1 100%;
  padding-right: 12px;
}

.ms-dropdown-label.placeholder {
  color: gray;
}

.ms-ctrl-dropdown-button {
  line-height: 32px;
  flex: 0 0 auto;
}

.ms-ctrl-dropdown-button:hover {
  color: #0078D7;
}

.ms-ctrl-dropdown-item {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  padding: 0px 12px 0px 12px;
  line-height: 30px;
  cursor: pointer;
}

.ms-ctrl-dropdown-item:hover {
  background-color: #EEEEEE;
}

@media (forced-colors: none) {
  .ms-ctrl-dropdown-item:focus {
    outline: 0;
    background-color: #CCCCCC;
  }
}

.ms-ctrl-popup-container {
  border: 1px solid #EEEEEE;
  background-color: white;
  position: absolute;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}

.ms-ctrl-popup-container:focus {
  outline: 0;
}

.ms-ctrl-calendar {
  display: inline-block;
}

.ms-ctrl-calendarHeader {
  font-size: 18px;
  color: gray;
  padding-left: 4px;
  line-height: 34px;
}

.ms-ctrl-calendarNavButton {
  text-align: center;
  line-height: 34px;
  width: 30px;
  cursor: pointer;
}

.ms-ctrl-calendarNavButton:hover {
  background-color: #EEEEEE;
}

.ms-ctrl-calendarDayHeader {
  font-size: 12px;
  text-align: center;
  padding: 6px 8px 6px 8px;
  color: #333333;
}

.ms-ctrl-calendarDay {
  font-size: 12px;
  text-align: center;
  padding: 6px 8px 6px 8px;
  color: #333333;
  cursor: pointer;
}

.ms-ctrl-calendarDay:hover {
  background-color: #EEEEEE;
}

.ms-ctrl-calendarDay.subdued {
  color: gray;
}

.ms-ctrl-calendarDay.selected {
  color: white;
  background-color: #0078D7;
}

.ms-calendarPopup {
  padding: 6px;
  overflow: hidden;
}

.ms-ctrl-datePicker {
  border: 1px solid #EEEEEE;
  height: 32px;
  display: flex;
  padding-left: 12px;
  padding-right: 12px;
  cursor: pointer;
}

.ms-ctrl-datePicker:hover {
  border: 1px solid #0078D7;
}

.ms-ctrl-datePicker:focus {
  border: 1px solid #0078D7;
  outline: 0;
}

.ms-ctrl-checkbox {
  outline: 0;
  cursor: pointer;
}

.ms-ctrl-checkbox input[type=checkbox] {
  visibility: hidden;
}

.ms-ctrl-checkbox label {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.ms-ctrl-checkbox label span {
  margin-left: 24px;
  line-height: 18px;
  color: #333333;
  display: inline-block;
}

.ms-ctrl-checkbox label span:hover {
  color: black;
}

.ms-ctrl-checkbox label::before {
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  border: 1px solid #A6A6A6;
  content: "";
  width: 18px;
  height: 18px;
  transition-property: background, border, border-color;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1);
}

.ms-ctrl-checkbox label:hover::before {
  border: 1px solid #767676;
}

.ms-ctrl-checkbox input[type=checkbox]:checked+label::before {
  content: "";
  border: 1px solid #0078D7;
  background-color: #0078D7;
}

.ms-ctrl-checkbox input[type=checkbox]:checked+label::after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'FabricMDL2Icons';
  font-style: normal;
  font-weight: bold;
  content: "\E73E";
  color: white;
  position: absolute;
  width: 18px;
  line-height: 18px;
  left: 0;
  top: 0;
  text-align: center;
  transition-property: background, border, border-color;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1);
}

.ms-ctrl-radiobutton {
  outline: 0;
  cursor: pointer;
}

.ms-ctrl-radiobutton input[type=radio] {
  visibility: hidden;
}

.ms-ctrl-radiobutton label {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.ms-ctrl-radiobutton label span {
  margin-left: 22px;
  line-height: 16px;
  color: #333333;
  display: inline-block;
  vertical-align: top;
}

.ms-ctrl-radiobutton label span:hover {
  color: black;
}

.ms-ctrl-radiobutton label::before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  border: 1px solid #A6A6A6;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.ms-ctrl-radiobutton label:hover::before {
  border: 1px solid #767676;
}

.ms-ctrl-radiobutton input[type=radio]:checked+label::before {
  border: 1px solid #0078D7;
}

.ms-ctrl-radiobutton input[type=radio]+label::after {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 0;
  height: 0;
}

.ms-ctrl-radiobutton input[type=radio]:checked+label::after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #0078D7;
  border-radius: 50%;
  transition-property: top, left, right, width, height;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1);
}

.ms-ctrl-textbox {
  border: 1px solid #EEEEEE;
  color: #333333;
  outline: 0;
  resize: none;
  padding: 4px 8px;
}

.ms-ctrl-textbox-multiline {
  overflow: auto;
}

.ms-ctrl-textbox:-moz-placeholder {
  color: gray;
}

.ms-ctrl-textbox::-moz-placeholder {
  color: gray;
}

.ms-ctrl-textbox:-ms-input-placeholder {
  color: gray;
}

.ms-ctrl-textbox::-ms-input-placeholder {
  color: gray;
}

.ms-ctrl-textbox::-webkit-input-placeholder {
  color: gray;
}

.ms-ctrl-textbox:hover {
  border: 1px solid #0078D7;
}

.ms-ctrl-textbox:focus, .ms-ctrl-textbox:active {
  border: 1px solid #0078D7;
}

/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination-bullet {
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
}

.swiper-slide.swiper-slide-active.ac-carousel-page {
  visibility: visible;
}
.swiper-slide.ac-carousel-page {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  visibility: hidden;
}

.swiper-button-next.ac-carousel-right::after {
  font-family: "Segoe Fluent Icons";
  font-size: 14px;
  content: "\edda";
}
.swiper-button-next.ac-carousel-right:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 700ms;
}
.swiper-button-next.ac-carousel-right:hover::after {
  color: white;
  transition: color 700ms;
}

.swiper-button-prev.ac-carousel-left::after {
  font-family: "Segoe Fluent Icons";
  font-size: 14px;
  content: "\edd9";
}
.swiper-button-prev.ac-carousel-left:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 700ms;
}
.swiper-button-prev.ac-carousel-left:hover::after {
  color: white;
  transition: color 700ms;
}

.swiper-button-next.ac-carousel-down::after {
  font-family: "Segoe Fluent Icons";
  font-size: 14px;
  content: "\eddc";
}
.swiper-button-next.ac-carousel-down:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 700ms;
}
.swiper-button-next.ac-carousel-down:hover::after {
  color: white;
  transition: color 700ms;
}

.swiper-button-prev.ac-carousel-up::after {
  font-family: "Segoe Fluent Icons";
  font-size: 14px;
  content: "\eddb";
}
.swiper-button-prev.ac-carousel-up:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 700ms;
}
.swiper-button-prev.ac-carousel-up:hover::after {
  color: white;
  transition: color 700ms;
}

.ac-carousel-right,
.swiper-rtl.ac-carousel-left {
  right: 0px;
}

.ac-carousel-left,
.swiper-rtl.ac-carousel-right {
  left: 0px;
}

.ac-carousel-up {
  top: 0px !important;
  right: 0px !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0px !important;
}

.ac-carousel-down {
  bottom: 0px !important;
  right: 0px !important;
  left: auto !important;
  top: auto !important;
  margin: 0px !important;
}

.ac-carousel-pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
}

.ac-carousel-pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-vertical {
  right: 0px;
}

.ac-container.ac-carousel-page-container {
  width: 100%;
}

.ac-carousel-container {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

:root {
  --swiper-theme-color: #0078D7;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 0.2);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: #007aff;
  --swiper-navigation-size: 44px;
}

@media (forced-colors: active) {
  .swiper-pagination-bullet {
    background-color: ButtonBorder;
  }
}

/*# sourceMappingURL=adaptivecards-carousel.css.map */

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Regular"), local("Gilroy-Regular"),
    url("assets/fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Medium"), local("Gilroy-Medium"),
    url("assets/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"),
    url("assets/fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Bold"), local("Gilroy-Bold"),
    url("assets/fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

li {
  line-height: 1;
}

.ac-is-lineheightless {
  line-height: 0;
}

.ac-is-overflow-hidden {
  overflow: hidden;
}

.acd-host-wrapper {
  font-family: "Inter", "sans-serif";
  font-size: 14px;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*::placeholder {
  color: #64748b !important;
}

button {
  cursor: pointer;
}

button[aria-label] {
  position: relative;
}

button[aria-label]:hover:after {
  content: attr(aria-label);
  position: absolute;
  top: 100%;
  width: max-content;
  margin-top: 6px;
  padding: 4px 10px;
  background-color: #0f172acc;
  color: white;
  border-radius: 8px;
  pointer-events: none;
  text-align: center;
  font-family: "Inter", "sans-serif";
  font-weight: 500;
  font-size: 13px;
  font-style: normal;
  line-height: 16px;
  z-index: 1;
}

div.ac-container-scroll {
  height: 300px;
  min-height: 300px;
  overflow: scroll;
}

.default-ac-container,
.ac-container {
  display: flex;
  flex-direction: column;
  min-height: -webkit-min-content;
}

.default-ac-container.is-content-center,
.ac-container.is-content-center {
  justify-content: center;
}

.default-ac-container.is-content-flex-end,
.ac-container.is-content-flex-end {
  justify-content: flex-end;
}

.default-ac-container.is-content-flex-start,
.ac-container.is-content-flex-start {
  justify-content: flex-start;
}

.default-ac-columnSet,
.ac-columnSet {
  display: flex;
  min-height: -webkit-min-content;
}

.default-ac-columnSet.is-content-center,
.ac-columnSet.is-content-center {
  justify-content: center;
}

.default-ac-columnSet.is-content-flex-end,
.ac-columnSet.is-content-flex-end {
  justify-content: flex-end;
}

.default-ac-columnSet.is-content-flex-start,
.ac-columnSet.is-content-flex-start {
  justify-content: flex-start;
}

.ac-is-fullwidth {
  width: 100%;
}

.ac-is-fullheight {
  height: 100%;
}

.ac-flex-none {
  flex: none;
}

.ac-flex-auto {
  flex: 0 0 auto;
}

.ac-flex-spacer {
  flex: 1 1 auto;
}

.ac-element-placeholder {
  padding: 4px;
  min-height: 32px;
  font-size: 10px;
  color: var(--ac-element-placeholder-color);
}

.ac-element-placeholder-bordered {
  border: 1px dashed var(--ac-element-placeholder-color);
}

.acd-toolbar-actions-list button[aria-label]:hover:after,
.acd-control-collection button[aria-label]:hover:after {
  left: -50%;
}

.acd-peerButton[aria-label]:hover:after {
  left: -175%;
}

input {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  font-weight: 600;
  flex-grow: 1;
  border-radius: 4px;
  padding: 8px;
}

select::placeholder,
textarea::placeholder,
input::placeholder {
  font-size: 14px;
  line-height: 18px;
  color: #64748b;
}

input:focus {
  border-color: #39739d;
}

input:focus::placeholder {
  color: transparent;
}

input::-webkit-calendar-picker-indicator {
  display: none;
}

input[type="date"]::-webkit-input-placeholder {
  visibility: hidden;
}

/*
  Кастомизация checkboxa
*/

.input-area {
  position: relative;
  display: flex;
  align-items: center;
}

.input-area-checkbox {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  appearance: none;
  padding: 4px;
  background-color: #fff;
  border-radius: 5px;
  outline-color: transparent;
}

.input-area-checkbox:checked {
  background-color: #4D4DA9;
}

.input-area-checkbox:checked:before {
  content: "";
  position: absolute;
  left: auto;
  top: auto;
  width: 10px;
  height: 7px;
  border-radius: 1px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.input-area-caption {
  font-family: "Inter", "sans-serif";
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  margin-left: 8px;
  flex-grow: 1;
}

input.ac-checkbox-slide-toggle {
  appearance: none;
  position: relative;
  display: inline-block;
  background: #CBD5E1;
  height: 20px;
  width: 35px;
  vertical-align: middle;
  border-radius: 99px;
  box-shadow: 0px 1px 3px #0003 inset;
  transition: 0.25s linear background;
  flex-grow: 0;
  cursor: pointer;
}

input.ac-checkbox-slide-toggle::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  box-shadow: 0px 10px 30px 0px #0000000D, 0px 0px 10px 0px #00000005;
  transition: 0.25s linear transform;
  transform: translateX(0px);
}

input.ac-checkbox-slide-toggle:checked {
  background-color: #504ECA;
}

input.ac-checkbox-slide-toggle:checked::before {
  transform: translateX(14px);
}

input.ac-checkbox-slide-toggle:disabled {
  cursor: default;
  background-color: #E2E8F0;
}

input.ac-checkbox-slide-toggle:disabled::before {
  background-color: #CBD5E1;
}

input.ac-checkbox-slide-toggle:focus {
  outline-color: transparent;
}

.acd-saveactions-parameter-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 4px 0px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  position: relative;
  color: #1E293B;
}

.acd-saveactions-parameter-label .acd-icon-action-button {
  border: none;
  box-shadow: none;
}

.acd-sendmail-header-hint-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.acd-sendmail-header-hint-container > .acd-sendmail-header-hint {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #64748b;
  text-decoration: underline dashed;
  cursor: pointer;
}

.acd-sendmail-header-hint > .acd-sendmail-header-hint-dropdown {
  display: none;
  font-weight: 500;
  flex-direction: column;
  position: absolute;
  width: 331px;
  right: 0;
  margin-top: 8px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 4px 6px -2px #0000000d, 0px 10px 15px -3px #0000001a;
  z-index: 1;
}

.acd-sendmail-header-hint[aria-pressed] > .acd-sendmail-header-hint-dropdown {
  display: flex;
}

.acd-sendmail-dropdown-item {
  height: 68px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  text-align: left;
  vertical-align: middle;
  color: #334155;
}

.acd-sendmail-dropdown-item:last-child {
  height: 70px;
  background-color: #f1f5f9;
}

.acd-sendmail-dropdown-item > span:first-child {
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.acd-sendmail-second-item-text > span{
  background-color: #E5F1FC;
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: #504ECA;
  padding: 1px;
  border-radius: 2px;
}

.acd-sendmail-input-wrapper {
  min-height: 40px;
  width: 600px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  flex-wrap: wrap;
}

.acd-chip {
  height: 28px;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.acd-chip-success {
  background: #f1f5f9;
}

.acd-chip-error {
  color: #991B1B;
  background: #FEE2E2;
}

.acd-chip-error:before {
  content: url("assets/icons/chip-error.svg");
  cursor: pointer;
  width: 16px;
  display: flex;
  align-items: center;
  height: 16px;
}

.acd-chip .acd-icon-action-button {
  height: 28px;
  border: none;
  box-shadow: none;
}

.acd-sendmail-input-wrapper span {
  display: inline;
}

.acd-sendmail-input-wrapper input {
  display: inline;
  border: none;
  box-shadow: none;
  min-width: 30%;
  outline: none;
}

.acd-sendmail-textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-height: 40px;
  background-color: #fff;
  border: 1px solid #CBD5E1;
  box-shadow: 0px 1px 2px 0px #0000000D;
  padding: 8px 12px 8px 16px;
}

.acd-sendmail-textarea.acd-sendmail-textarea-body {
  min-height: 240px;
}

/* Стиль чекбокса в превью формы */
.checkbox__custom:before {
  background: url("assets/icons/ic-checkbox.svg") no-repeat center;
}

/*
  Верхняя часть (header)
*/

.acd-toolbar-area {
  padding: 16px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.acd-toolbar-area .acd-toolbox {
  flex-flow: row;
  align-items: center;
}

.acd-toolbar-area .acd-sidepanel-host {
  height: auto;
  order: 1;
}

.acd-toolbar-area .acd-toolbox-header {
  margin: 0;
  padding-right: 42px;
}

.acd-toolbar-area .acd-toolbox-body {
  width: 100%;
  display: flex;
  justify-content: center;
}

.acd-toolbox-header-title {
  display: flex;
  align-items: center;
  width: 100%;
  color: #0f172a;
}

.acd-toolbar-area .acd-toolbox-header-title {
  font-family: "Gilroy", "sans-serif";
  font-size: 14px;
  line-height: 16px;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
  flex-grow: 1;
  gap: 8px;
  padding: 8px;
  margin-left: 7px;
}

.acd-toolbox-header-title + .acd-toolbox-header-commandButton {
  margin-left: 4px;
}

.acd-editor-title-button.acd-editor-title-button--warning {
  display: none;
}

.acd-toolbar-area .acd-toolbox-header-title:before {
  content: url("assets/icons/form.svg");
  width: 16px;
  height: 16px;
}

.acd-toolbar-area .acd-toolbox-header-customCommands,
.acd-toolbar-area .acd-toolbox-header-commandButton {
  display: none;
}

.acd-toolbar-area .acd-control-collection {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.acd-toolbar-area .acd-toolbar-actions {
  order: 2;
}

.acd-toolbar-area .acd-toolbar-actions-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acd-toolbar-area .acd-toolbar-undo-redo {
  display: flex;
  align-items: center;
}

.acd-editor-title-button,
.acd-icon-action-button {
  position: relative;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #0f172a;
}

.acd-editor-title-button {
  font-weight: 500;
  padding: 6px 12px;
  gap: 4px;
}

.acd-editor-title-button.acd-editor-title-button--active {
  background-color: #f1f5f9;
}

.acd-icon-action-button {
  border: 1px solid #cbd5e1;
  padding: 8px 12px;
  gap: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.acd-icon-action-button-caption {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  text-wrap: nowrap;
}

.acd-icon-action-button--primary {
  background-color: #4d4da9;
  border-color: transparent;
  color: #fff;
}

.acd-icon-action-button--primary:disabled {
  opacity: 0.6;
}

.acd-icon-action-button[aria-pressed="true"] {
  background-color: #f1f5f9;
}

.acd-tab-warning .acd-error-pane-message:before,
.acd-icon-action-button:before {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  display: inline-block;
}

.acd-icon-action-button[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.acd-icon-action-button[aria-disabled="true"]:not(
    .acd-icon-action-button--primary
  )
  .acd-icon-action-button-caption,
.acd-icon-action-button[aria-disabled="true"]:not(
    .acd-icon-action-button--primary
  ):before {
  opacity: 0.3;
}

.acd-icon-action-button:not([aria-disabled="true"]):not(.acd-icon-action-button--error):not(
    .acd-icon-action-button--primary
  ):hover {
  background-color: #e2e8f0;
}

.acd-icon-action-button--warning {
  order: 1;
  gap: 3px;
}

.acd-icon-action-button--warning .acd-icon-action-button-caption {
  color: #d97706;
  font-weight: 600;
}

.acd-icon-action-button--setting {
  order: 3;
}

.acd-icon-action-button--edit {
  order: 3;
}

.acd-icon-action-button--preview {
  order: 4;
}

.acd-icon-action-button--preview__active {
  background-color: #FFFFFF!important;
}
.acd-icon-action-button--preview__active:hover {
  background-color: #e2e8f0!important;
}
.acd-icon-action-button--preview__active:before{
  content: none!important;
}
.acd-icon-action-button--save {
  background-color: #4d4da9;
  color: white;
  order: 5;
}

.acd-icon-action-button--regex {
  order: 6;
}

.acd-icon-action-button--save-action {
  order: 7;
}

.acd-toolbar-undo-redo {
  display: flex;
  align-items: center;
  order: 2;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.acd-icon-action-button--redo,
.acd-icon-action-button--undo {
  padding: 7px;
  border-radius: 0;
  border-color: transparent;
}

.acd-icon-action-button--undo:before {
  content: url("assets/icons/undo.svg");
}

.acd-icon-action-button--redo:before {
  content: url("assets/icons/redo.svg");
}

.acd-tab-warning .acd-error-pane-message:before,
.acd-icon-action-button--warning:before {
  content: url("assets/icons/alert.svg");
}

.acd-icon-action-button--setting:before {
  content: url("assets/icons/settings.svg");
}

.acd-icon-action-button--edit:before {
  content: url("assets/icons/edit.svg");
}

.acd-icon-action-button--preview:before {
  content: url("assets/icons/play.svg");
}

.acd-icon-action-button--save:before {
  content: url("assets/icons/save.svg");
}

.acd-icon-chevron-down:before {
  content: url("assets/icons/chevron-down.svg");
}

.acd-icon-chevron-down {
  margin-right: 4px;
}

.acd-icon-action-button[aria-pressed="true"] .acd-icon-action-button-popover {
  pointer-events: auto;
  visibility: visible;
}

.acd-icon-action-button-popover {
  display: flex;
  flex-flow: column;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10000;
  background-color: #fff;
  width: 260px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 24px;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
  max-height: 240px;
}

.acd-error-pane-message {
  font-family: "Inter", "sans-serif";
  color: #334155;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: flex-start;
}

.acd-error-pane-message::before {
  content: url("assets/icons/alert.svg");
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.acd-tab-warning .acd-error-pane-message {
  display: flex;
  gap: 8px;
}

.acd-tab-warning .acd-error-pane-message,
.acd-icon-action-button-popover--warning .acd-error-pane-message,
.acd-icon-action-button-popover--settings .acd-icon-action-button {
  border-radius: 0;
  border: 0;
  padding: 10px 12px;
}

.acd-tab-warning .acd-error-pane-message:hover,
.acd-icon-action-button-popover--warning .acd-error-pane-message:hover,
.acd-icon-action-button-popover--settings .acd-icon-action-button:hover {
  background-color: #eaf0f7;
}

.acd-icon-action-button-popover--warning
  .acd-error-pane-message:not(:last-child),
.acd-icon-action-button-popover--settings
  .acd-icon-action-button:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

.acd-palette-area {
  display: none;
  flex-flow: column;
  position: relative;
  order: 100;
  margin-left: 8px;
}

.acd-palette-area-button-more {
  font-family: "Inter", "sans-serif";
  font-size: 0;
  line-height: 16px;
  font-weight: 500;
  color: #334155;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  display: none;
}

.acd-palette-area-button-more:before,
.acd-palette-area-button-more:after {
  width: 16px;
  height: 16px;
  display: none;
  vertical-align: bottom;
}

.acd-palette-area-button-more:before {
  content: url("assets/icons/plus.svg");
  margin-right: 8px;
}

.acd-palette-area-button-more:after {
  content: url("assets/icons/more-horizontal.svg");
}

.acd-palette-area-list {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  background: #fff;
  width: 200px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.acd-palette-area-list-item .acd-palette-item {
  width: 100%;
  height: auto;
  border: none;
  justify-content: flex-start;
  text-overflow: initial;
  background: transparent;
  border-radius: 0;
  padding: 10px 12px;
  cursor: pointer;
  display: none;
}

.acd-palette-area-list-item .acd-icon-action-button-caption {
  display: block !important;
  width: 100%;
  text-align: left;
  margin-left: 10px;
}

.acd-palette-area-button-more.toggle + .acd-palette-area-list{
  pointer-events: auto;
  opacity: 1;
}

.acd-palette-area-button-more.toggle,
.acd-palette-area-button-more:hover {
  background-color: #e2e8f0;
}

.acd-palette-area-list-item .acd-palette-item:hover {
  background-color: #F1F5F9;
}

.acd-palette-area-list-item .acd-palette-item:hover:after {
  content: none !important;
}

@media screen and (max-width: 1024px) {
  .acd-palette-area {
    display: flex;
  }

  .acd-palette-area-button-more {
    display: block;
    width: 34px;
    height: 34px;
    padding: 0;
  }

  .acd-palette-container > .acd-palette-item--select,
  .acd-palette-container > .acd-palette-item--checkbox {
    display: none;
  }

  .acd-palette-area-list-item > .acd-palette-item--select,
  .acd-palette-area-list-item > .acd-palette-item--checkbox {
    display: flex;
  }

  .acd-palette-area-button-more:after {
    display: inline-block;
  }

  .acd-palette-container > .acd-palette-item--time {
    margin-right: 0;
  }
}

@media screen and (max-width: 910px) {
  .acd-palette-container > .acd-palette-item--number,
  .acd-palette-container > .acd-palette-item--time {
    display: none;
  }

  .acd-palette-area-list-item > .acd-palette-item--number,
  .acd-palette-area-list-item > .acd-palette-item--time {
    display: flex;
  }
}

@media screen and (max-width: 800px) {
  .acd-toolbar-area .acd-toolbox-body{
    justify-content: end;
  }

  .acd-palette-container,
  .acd-palette-container > .acd-palette-item,
  .acd-palette-area-button-more:after {
    display: none;
  }

  .acd-palette-area-button-more {
    font-size: 13px;
    padding: 8px 12px;
    width: auto;
    height: auto;
  }

  .acd-palette-area-button-more:before {
    display: inline-block;
  }

  .acd-palette-area-list-item .acd-palette-item {
    display: flex;
  }
}



/*
  notifics
*/

#notification-toast {
  transition: opacity 0.5s ease;
  opacity: 1;
}

@keyframes toast-reveal {
  from {
    transform: translateY(16px);
  }
}

@keyframes toast-hide {
  to {
    opacity: 0;
  }
}

.notification-list {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  flex-flow: column;
  width: 320px;
  margin-top: -8px;
  margin-right: 20px;
  margin-bottom: 100px;
  padding: 0;
  z-index: 1000;
}

.notification-list-item--error,
.notification-list-item--warning {
  background-color: #fef2f2;
  border-color: #fee2e2;
  box-shadow: 0 1px 2px 0 rgba(127, 29, 29, 0.06),
    0 1px 3px 0 rgba(127, 29, 29, 0.1);
  order: 2;
}

.notification-list-item--success {
  background-color: #ecfdf5;
  border-color: #d1fae5;
  box-shadow: 0 1px 2px 0 rgba(6, 78, 59, 0.06),
    0 1px 3px 0 rgba(6, 78, 59, 0.1);
  order: 1;
}

.notification-list-item--info {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  order: 3;
}

.notification-list-item--error:hover,
.notification-list-item--warning:hover {
  background-color: #fae9e9;
}

.notification-list-item--info:hover {
  background-color: #f2f7fc;
}

.notification-list-item--success:hover {
  background-color: #d9f4e8;
}

.notification-list-item--error:before,
.notification-list-item--warning:before {
  content: url("assets/icons/notific-warning.svg");
}

.notification-list-item--success:before {
  content: url("assets/icons/notific-success.svg");
}

.notification-list-item--info:before {
  content: url("assets/icons/notific-info.svg");
}

.notification-list-item--error:before,
.notification-list-item--warning:before,
.notification-list-item--success:before,
.notification-list-item--info:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 16px;
  margin-top: 13px;
}

.notification-list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px 12px 48px;
  margin-top: 8px;
  animation: toast-reveal 0.3s,
    toast-hide 0.3s var(--notification-item-duration, 3s) forwards;
}

.notification-list-item-msg {
  flex: 1;
  margin: 0;
  font-family: "Inter", "sans-serif";
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.notification-list-item-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  cursor: pointer;
  margin-top: 4px;
  margin-right: 4px;
}

.notification-list-item-close-btn:before {
  content: " ";
  width: 16px;
  height: 16px;
  display: inline-block;
  -webkit-mask: url("assets/icons/close-x.svg") no-repeat 50% 50%;
  mask: url("assets/icons/close-x.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.notification-list-item--error .notification-list-item-close-btn:before,
.notification-list-item--warning .notification-list-item-close-btn:before {
  background-color: #dc2626;
}

.notification-list-item--success .notification-list-item-close-btn:before {
  background-color: #16a34a;
}

.notification-list-item--info .notification-list-item-close-btn:before {
  background-color: #2563eb;
}

.acd-designer-root *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.acd-designer-root *::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.acd-designer-root *:hover::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
}

.acd-designer-card-header {
  display: none;
}

.acd-designersurface {
  outline: none;
}

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

.acd-opacity {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

.acd-tool-palette-pane {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  background-color: #fff;
}

.acd-tree-view-host {
  flex: 1 1 100%;
  padding-top: 6px;
}

.acd-horizontal-splitter {
  cursor: ns-resize;
  position: relative;
  width: 100%;
  height: 6px;
  flex: 0 0 6px;
  z-index: 1;
}

.acd-code-editor {
  overflow: hidden;
  height: 100%;
  display: block;
}

.acd-tab-warning {
  display: none;
}

.acd-json-editor-host {
  flex: 1 1 100%;
}

/*
    In-place editors
*/

.acd-inplace-editor-host {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  outline: 1px dashed steelblue;
  background-color: #fff;
}

.acd-inplace-editor {
  flex: 1 1 100%;
  align-items: stretch;
}

.acd-textBlock-inplace-editor {
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  resize: none;
  color: black !important;
}

.acd-dialog-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.editable-dropdown-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
  flex: 1 1 auto;
}

.dropdown-list {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  cursor: pointer;
  margin-bottom: 16px;
  flex: 1;
}

.dropdown-data-list {
  display: flex;
  width: 560px;
  flex-direction: column;
  padding: 0;
  padding-bottom: 32px;
  margin: 0;
}

.dropdown-data-list__item {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 12px;
  min-height: 80px;
}

.dropdown-data-list__item:not(:last-of-type) {
  margin-bottom: 16px;
}

.dropdown-data-list__label {
  font-size: 13px;
  line-height: 16px;
  display: inline-block;
  width: 90px;
  color: #1E293B;
}

.dropdown-data-list__input-field {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.dropdown-data-list__input-field > * {
  width: 100%;
  flex-grow: 0;
  height: 40px;
  padding: 8px 12px 8px 16px;
}

.acd-dialog-title {
  font-family: "Gilroy", "sans-serif";
  font-size: 18px;
  font-weight: 600;
  line-height: 16px;
  flex: 1;
  margin: 0;
}

.acd-dialog-subtext {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #64748B;
  display: block;
  margin-top: 4px;
}

.acd-dialog-subtitle {
  font-family: "Inter", "sans-serif";
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  margin-top: 20px;
  flex: 1;
}

.acd-dialog-message {
  margin-top: 10px;
}

.acd-open-sample-item-container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: space-evenly;
}

.acd-open-sample-item {
  width: 350px;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.acd-open-sample-item-thumbnail {
  overflow: hidden;
  height: 100%;
  min-height: 150px;
  max-height: 400px;
  width: 100%;
  pointer-events: none;
  border: 1.5px solid #eeeeee;
  display: flex;
  justify-content: center;
}

.acd-open-sample-item-title {
  margin-top: 10px;
}

.acd-open-sample-item:hover > .acd-open-sample-item-thumbnail {
  box-shadow: 0 0 20px -5px #cccccc;
  border: 1.5px solid #cccccc;
}

.acd-open-sample-item:hover > .acd-open-sample-item-title {
  font-weight: bold;
}

.acd-open-code-dialog-container {
  display: flex;
}

.acd-open-code-dialog-preview-container {
  flex: 1;
}

.acd-open-code-dialog-editor-container {
  flex: 1;
}

.acd-open-code-dialog-editor {
  width: 100%;
  height: 90%;
}

@keyframes acd-spinner-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.acd-spinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-width: 1.5px;
  border-style: solid;
  border-color: rgb(0, 120, 212) rgb(199, 224, 244) rgb(199, 224, 244)
    rgb(199, 224, 244);
  animation-name: acd-spinner-rotate;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);
}

/*
    Icons
*/

.acd-icon {
  font-family: "FabricMDL2Icons";
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  border-radius: 8px;
}

.acd-dialog-titleBar-button {
  color: black;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  padding: 4px;
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
}

.acd-dialog-titleBar-button:hover {
  color: #39739d;
}

.acd-toolPalette-icon {
  color: #2d7bb7;
}

.acd-tree-view-icon {
  color: #2d7bb7;
}

.acd-icon-adaptiveCard::before {
  content: url("assets/icons/Section.svg");
}

.acd-icon-columnSet::before {
  content: url("assets/icons/Columns.svg");
}

.acd-icon-actionSet::before {
  content: url("assets/icons/Button.svg");
}

.acd-icon-inputChoiceSet::before {
  content: url("assets/icons/Select.svg");
}

.acd-icon-autoComplete::before {
  content: url("assets/icons/auto-complete.svg");
}

.acd-icon-radioButton::before {
  content: url("assets/icons/radio-button.svg");
}

.acd-icon-inputDate::before {
  content: url("assets/icons/Calendar.svg");
}

.acd-icon-inputNumber::before {
  content: url("assets/icons/Number.svg");
}

.acd-icon-inputText::before {
  content: url("assets/icons/Input.svg");
}

.acd-icon-inputTime::before {
  content: url("assets/icons/Clock.svg");
}

.acd-icon-inputToggle::before {
  content: url("assets/icons/Checkbox.svg");
}

.acd-icon-textBlock::before {
  content: url("assets/icons/Text.svg");
}

.acd-icon-close::before {
  content: url("assets/icons/close-x.svg");
}

.acd-icon-error-close::before {
  content: url("assets/icons/chip-close-error.svg");
}

.acd-icon-chevronDown::before {
  content: url("assets/icons/triangle-right.svg");
  transform: rotate(90deg);
  display: flex;
  width: 16px;
  height: 16px;
}

.acd-icon-chevronRight::before {
  content: url("assets/icons/triangle-right.svg");
  display: flex;
  width: 16px;
  height: 16px;
}

.acd-icon-bolt::before {
  content: "\E945";
}

.acd-icon-addColumn::before {
  content: "\F1D6";
}

.acd-icon-remove::before {
  content: "\E711";
}

.acd-icon-drag::before {
  content: "\E7C2";
}

.acd-icon-defaultElementIcon::before {
  content: "\F50B";
}

.acd-icon-image::before {
  content: "\ECAB";
}

.acd-icon-column::before {
  content: url("assets/icons/column.svg");
}

.acd-icon-container::before {
  content: "\E739";
}

.acd-icon-factSet::before {
  content: "\F2A2";
}

.acd-icon-image::before {
  content: "\EB9F";
}

.acd-icon-imageSet::before {
  content: "\E7AA";
}

.acd-icon-richTextBlock::before {
  content: "\EDC2";
}

.acd-icon-carousel::before {
  content: "\F26F";
}

.acd-icon-carouselPage::before {
  content: "\EF6B";
}

.acd-icon-chevronUp::before {
  content: "\E70E";
}

.acd-icon-chevronLeft::before {
  content: "\E76B";
}

.acd-icon-newCard::before {
  content: "\F321";
}

.acd-icon-fullScreen::before {
  content: "\E740";
}

.acd-icon-actionShowCard::before {
  content: "\EEBD";
}

.acd-icon-actionOpenUrl::before {
  content: "\E71B";
}

.acd-icon-actionSubmit::before {
  content: "\E73E";
}

.acd-icon-actionToggleVisibility::before {
  content: "\E7B3";
}

.acd-icon-actionHttp::before {
  content: "\E774";
}

.acd-icon-help::before {
  content: "\E897";
}

.acd-icon-media::before {
  content: "\EB1C";
}

.acd-icon-dot::before {
  content: "\E915";
}

.acd-icon-dataStructure::before {
  content: "\EC8D";
}

.acd-icon-open::before {
  content: "\ED25";
}

.acd-icon-customPaletteItem::before {
  content: "\ECAA";
}

.acd-icon-table::before {
  content: "\ED86";
}

.acd-icon-tableRow::before {
  content: "\F82A";
}

.acd-icon-tableCell::before {
  content: "\F50A";
}

/*
    Side panes
*/

.acd-layout {
  font-family: "Gilroy", "sans-serif";
  font-weight: 600;
  color: #0f172a;
}

.acd-designersurface.dragging {
  cursor: move;
}

.acd-designersurface.dragging > .acd-peer:hover {
  background-color: transparent;
  border-color: transparent;
}

/*
    Designer peers
*/

@keyframes acd-peer-frame-appear {
  from {
    border-color: transparent;
  }
  to {
    border-color: steelblue;
  }
}

@keyframes acd-peer-frame-disappear {
  to {
    border-color: transparent;
  }
}

.acd-peer {
  animation-name: acd-peer-frame-disappear;
  animation-duration: 150ms;
  animation-fill-mode: forwards;
  border: 1px dashed transparent;
  cursor: pointer;
}

.acd-peer.invisible {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjEuNv1OCegAAAAwSURBVChTY/j//z8cA0EDOh+vJJjGJwll45YE81E4WBTjlQTT+CShbNyS////ZwAAVxKXcckJBiYAAAAASUVORK5CYII=");
  background-repeat: repeat;
  background-color: #fff;
  opacity: 0.4;
}

.acd-peer:hover,
.acd-peer.selected,
.acd-peer.dragging {
  animation-name: acd-peer-frame-appear;
  animation-duration: 200ms;
  animation-fill-mode: forwards;
}

.acd-peer.dragover {
  border: 1px dashed green !important;
}

.acd-peer.dragover:hover {
  background-color: none;
}

.acd-peerButton {
  font-size: 14px;
  border: 1px solid #2d7bb7;
  color: #2d7bb7;
  background-color: #fff;
  cursor: default;
  user-select: none;
  padding: 1px;
  display: flex;
  align-items: center;
  pointer-events: all !important;
  height: 20px;
  border-radius: 0;
  outline: none;
}

.acd-peerButton.fixedWidth {
  width: 20px;
}

.acd-peerButton.fixedWidth.circular {
  border-radius: 50%;
}

.acd-peerButton-icon {
  font-family: "FabricMDL2Icons";
  font-style: normal;
  font-weight: normal;
  justify-content: center;
}

.acd-peerButton-text {
  font-family: inherit;
  justify-content: center;
  padding: 0 4px;
}

.acd-peerButton:hover {
  background-color: #2d7bb7;
  color: #fff;
}

/*
    Tool box
*/

.acd-palette-group-control {
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.acd-icon-action-button--add-control,
.acd-icon-action-button--add-control
  > .acd-icon-action-button-popover
  > .acd-palette-item {
  display: none;
}

.acd-palette-item {
  cursor: move;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  text-overflow: ellipsis;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: #fff;
}

.acd-palette-item .acd-icon-action-button-caption {
  display: none;
}

.acd-palette-item:not(:last-child) {
  border-right: 1px solid #cbd5e1;
}

.acd-palette-item--text,
.acd-palette-item--input,
.acd-palette-item--select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.acd-palette-item--button,
.acd-palette-item--checkbox,
.acd-palette-item--time {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.acd-palette-item--date,
.acd-palette-item--number {
  border-radius: 0;
}

.acd-palette-item:hover {
  background-color: #e2e8f0;
}

.acd-palette-item--columns {
  order: 1;
  margin-right: 8px;
}

.acd-palette-item--text {
  order: 2;
}

.acd-palette-item--button {
  order: 3;
  margin-right: 8px;
}

.acd-palette-item--input {
  order: 4;
}

.acd-palette-item--date {
  order: 5;
}

.acd-palette-item--number {
  order: 6;
}

.acd-palette-item--time {
  order: 7;
  margin-right: 8px;
}

.acd-palette-item--select {
  order: 8;
}

.acd-palette-item--checkbox {
  order: 9;
}

@media screen and (max-width: 910px) {
  .acd-icon-action-button--add-control::before {
    content: url("assets/icons/more-horizontal.svg");
  }

  .acd-palette-item--date {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .acd-icon-action-button--add-control .acd-icon-action-button-popover {
    width: 200px;
  }

  .acd-icon-action-button-popover
    > .acd-palette-item
    > .acd-icon-action-button-caption {
    display: block;
  }

  .acd-icon-action-button--add-control,
  .acd-icon-action-button--add-control
    > .acd-icon-action-button-popover
    > .acd-palette-item.acd-palette-item--number,
  .acd-icon-action-button--add-control
    > .acd-icon-action-button-popover
    > .acd-palette-item.acd-palette-item--time,
  .acd-icon-action-button--add-control
    > .acd-icon-action-button-popover
    > .acd-palette-item.acd-palette-item--select,
  .acd-icon-action-button--add-control
    > .acd-icon-action-button-popover
    > .acd-palette-item.acd-palette-item--checkbox {
    display: flex;
  }

  .acd-icon-action-button--add-control
    > .acd-icon-action-button-popover
    > .acd-palette-item {
    border: none;
    width: 100%;
    height: 36px;
    gap: 10px;
    padding: 10px 12px 10px 10px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 660px) {
  .acd-icon-action-button--add-control > .acd-icon-action-button-caption {
    display: block;
  }

  .acd-icon-action-button--add-control::before {
    content: url("assets/icons/plus.svg");
  }

  .acd-palette-item {
    display: none;
  }

  .acd-icon-action-button--add-control
    > .acd-icon-action-button-popover
    > .acd-palette-item {
    display: flex;
  }
}

/*
    Toolbar
*/

.acd-toolbar {
  background-color: #f1f1f1;
  align-items: center;
}

.acd-toolbar-content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 16px;
}

.acd-toolbar-label {
  color: black;
  margin-left: 8px;
  margin-right: 8px;
}

.acd-toolbar-choicePicker {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0 8px;
}

.acd-toolbar-picker-hidden[aria-disabled="true"],
.acd-toolbar-picker-hidden + .acd-toolbar-separator {
  display: none;
}

.acd-toolbar-picker-disabled[aria-disabled="true"],
.acd-toolbar-picker-disabled + .acd-toolbar-separator,
.acd-toolbar-picker-disabled div {
  color: InactiveCaptionText;
  cursor: default;
}

.ms-ctrl.ms-ctrl-dropdown.disabled,
.ms-ctrl.ms-ctrl-dropdown.disabled span,
.ms-ctrl.ms-ctrl-dropdown.disabled i {
  color: InactiveCaptionText;
  cursor: default;
}

.ms-ctrl.ms-ctrl-dropdown.disabled:hover,
.ms-ctrl.ms-ctrl-dropdown.disabled:focus {
  color: InactiveCaptionText;
  cursor: default;
  border-color: #eeeeee;
}

.acd-toolbar-header-container {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-left: 42px;
  gap: 16px;
}

.acd-toolbar-separator {
  width: 1px;
  height: 20px;
  border-left: 1px solid #d2d2d2;
}

.acd-toolbar-button {
  font-family: "Inter", "sans-serif";
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  color: #334155;
}

.acd-toolbar-button.acd-toolbar-button-disabled {
  filter: opacity(25%);
  background-color: transparent;
  cursor: default;
}

@media (forced-colors: active) {
  .acd-toolbar-button.acd-toolbar-button-toggled {
    background-color: highlight;
    color: highlightText;
    forced-color-adjust: none;
  }
}

.acd-toolbar-button-toggled.acd-icon-preview {
  background-color: #f1f5f9 !important;
}

.acd-toolbar-button-iconOnly::before {
  margin-right: 0 !important;
}

.acd-toolbar-button::before {
  width: 16px;
  height: 16px;
  text-align: center;
}

.acd-icon-warning:hover,
.acd-icon-setting:hover,
.acd-icon-preview:hover {
  background-color: #f1f5f9;
}

.acd-fieldPicker-host {
  max-height: 200px;
  overflow-y: auto;
}

/*
    Adaptive Card renderer styles for Property Sheet and other
    designer AC-based parts of designer UI.
*/

.default-ac-image.default-ac-selectable {
  cursor: pointer;
}

.default-ac-media-poster.empty {
  height: 200px;
  background-color: #f2f2f2;
}

.default-ac-media-playButton {
  width: 56px;
  height: 56px;
  border: 1px solid #eeeeee;
  border-radius: 28px;
  box-shadow: 0 0 10px #eeeeee;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  cursor: pointer;
}

.default-ac-media-playButton-arrow {
  color: black;
}

.default-ac-media-playButton:hover {
  background-color: #fff;
}

a.default-ac-anchor {
  text-decoration: none;
}

a.default-ac-anchor:link,
a.default-ac-anchor:visited {
  color: #005a9e;
}

a.default-ac-anchor:link:active,
a.default-ac-anchor:visited:active {
  color: #004d84;
}

.default-ac-columnSet.default-ac-selectable {
  padding: 0;
}

.default-ac-columnSet.default-ac-selectable:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.default-ac-columnSet.default-ac-selectable:active {
  background-color: rgba(0, 0, 0, 0.15) !important;
}

.default-ac-pushButton,
.ac-pushButton,
.acd-dialog-button {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: #334155;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  white-space: nowrap;
}

.default-ac-pushButton,
.ac-pushButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 32px;
}

.acd-dialog-button {
  display: inline-block;
  padding: 12px 16px;
  border: none;
}

.acd-dialog-button.delete-regex-button {
  color: #dc2626;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(203, 213, 225);
}

.acd-dialog-button.delete-button,
.acd-dialog-button.delete-button__deleteForm {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

.acd-dialog-button-accept,
.acd-dialog-button.accept-button {
  background-color: #504ECA;
  border-color: #5555b2;
  color: #fff;
}

.acd-dialog-button.accept-button:disabled,
.acd-dialog-button.disabled-button {
  background: #e3e3e3;
  border-color: #e3e3e3;
  cursor: default;
  pointer-events: none;
}

.acd-dialog-button:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

.acd-dialog-button-accept:hover,
.acd-dialog-button.accept-button:hover {
  background: #434393;
  border-color: #434393;
}

.acd-dialog-button.delete-button:hover,
.acd-dialog-button.delete-button__deleteForm:hover {
  background: #df2626;
  border-color: #df2626;
}

.default-ac-pushButton:hover {
  border: 1px solid #777777;
}

.default-ac-pushButton:active {
  border: 1px solid #777777;
}

.default-ac-pushButton.subdued {
  color: #666666;
  border: 1px solid #eeeeee;
}

.default-ac-pushButton.subdued:hover {
  background-color: #0078d7;
  color: #fff;
  border: 1px solid #0078d7;
}

@media (forced-colors: none) {
  .default-ac-pushButton.expanded {
    background-color: #0078d7;
    color: #fff;
    border: 1px solid #0078d7;
  }
}

@media (forced-colors: active) {
  .default-ac-pushButton.expanded {
    background-color: highlight;
    color: highlightText;
    forced-color-adjust: none;
  }
}

.default-ac-pushButton.expandable:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-family: "FabricMDL2Icons";
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  margin: auto 0 auto 6px;
  content: "\E70D";
}

.default-ac-pushButton.expandable.expanded:after {
  content: "\E70E";
}

.ac-toggle-input {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.ac-toggle-input-link {
  font-family: "Inter", "sans-serif";
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #e86630;
}

.ac-input-outer-container {
  display: flex;
}

.ac-input-outer-container.inline-container {
  flex-direction: row;
}

.ac-input-outer-container.column-container {
  flex-direction: column;
}

.ac-input-container {
  display: flex;
  position: relative;
}

.ac-input-container.stretch-container {
  align-items: stretch;
  flex: 1 1 auto;
}

.default-ac-input {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: black;
  flex: 1 1 auto;
}

.default-ac-textInput-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 6px;
  padding: 4px 10px;
  background-color: #0f172acc;
  color: white;
  border-radius: 8px;
  pointer-events: none;
  text-align: left;
  font-family: "Inter", "sans-serif";
  font-weight: 500;
  font-size: 13px;
  font-style: normal;
  line-height: 16px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.ac-input-container
  > .default-ac-input:hover:not(:active)
  ~ .default-ac-textInput-tooltip:not(.empty-tooltip) {
  visibility: visible;
  opacity: 1;
}

.ac-toggle-input-caption {
  display: inline-block;
  flex: 1 !important;
  margin-left: 12px;
  vertical-align: middle;
}

.default-ac-input.default-ac-textInput {
  resize: none;
}

.default-ac-input.default-ac-textInput.default-ac-multiline {
  height: 72px;
}

#property-panel
  .default-ac-columnSet:not(.choice-columns):not(.choice-inputs-columns) {
  height: 32px;
}

#property-panel .default-ac-adaptiveCard > .default-ac-container {
  counter-reset: choiceGroupField;
}

#property-panel .default-ac-columnSet.choice-columns {
  padding: 0 20px !important;
  position: relative;
}

#property-panel .default-ac-columnSet.choice-columns:after {
  content: " ";
  border: 1px dashed #2563eb;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: calc(100% - 30px);
  height: calc(100% + 10px);
  margin: -5px auto;
  z-index: -1;
  opacity: 0;
}

#property-panel .default-ac-columnSet.choice-columns:not(.preview):hover::before {
  opacity: 0;
}

#property-panel .default-ac-columnSet.choice-columns:hover::after,
#property-panel
  .default-ac-columnSet.choice-columns:hover
  .choice-remove-column {
  opacity: 1;
}

#property-panel .default-ac-columnSet.choice-columns .choice-remove-column {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 20px !important;
  opacity: 0;
}

#property-panel .default-ac-columnSet.choice-columns:before {
  counter-increment: choiceGroupField;
  content: counter(choiceGroupField) ". ";
  width: 32px;
  height: 32px;
  font-family: "Inter", "sans-serif";
  color: #334155;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.default-element__this-choice-setisempty {
  padding: 0 20px;
  font-family: "Inter", "sans-serif" !important;
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 16px !important;
  font-weight: 500 !important;
  display: block;
}

.default-ac-input.default-ac-multichoiceInput,
.default-ac-input.default-ac-textInput,
.default-ac-input.default-ac-numberInput,
.default-ac-input.default-ac-dateInput,
.default-ac-input.default-ac-timeInput {
  height: 31px;
}

.default-ac-input.default-ac-textInput,
.default-ac-input.default-ac-numberInput,
.default-ac-input.default-ac-dateInput,
.default-ac-input.default-ac-timeInput,
.default-ac-input.default-ac-multichoiceInput {
  border: 1px solid #dddddd;
  padding: 4px 8px;
}

.default.ac-inputStyle-revealOnHover-onrender {
  border: 1px solid transparent;
  background-color: #fff;
}

.default.ac-inputStyle-revealOnHover-onrender:hover {
  border: 1px solid #686868 !important;
}

.default.ac-inputStyle-revealOnHover-onhover,
.default.ac-inputStyle-revealOnHover-onfocus {
  border: 1px solid #dddddd;
}

/* PIC2CARD css changes*/
.acd-pic2card-container {
  display: flex;
  overflow: hidden;
  background-color: #f9f9f9;
  margin: 10px;
  position: relative;
  flex-direction: column;
}

.acd-poweredby-title {
  font-family:  "Inter", "sans-serif";
  font-size: 13px;
  color: #0a0a0a;
  margin-top: 7px;
  margin-right: 9px;
  display: flex;
  justify-content: flex-end;
}

.acd-poweredby-title .link {
  margin-left: 3px;
  color: #0367c1;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.acd-poweredby-title .link:hover {
  color: blue;
}

.acd-sample-list {
  overflow: auto;
  height: calc(100% - 40px);
}

.acd-sample-image-container {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.acd-image-upload-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  border-right: solid 1px #dddbdb;
}

.acd-image-title {
  width: 60%;
  margin: 0 auto;
  margin-top: 20px;
  font-family:  "Inter", "sans-serif";
  font-size: 16px;
  color: #0a0a0a;
}

.acd-image-title-content {
  width: 60%;
  margin: 0 auto;
  margin-top: 10px;
  font-family:  "Inter", "sans-serif";
  font-size: 12px;
  opacity: 0.61;
  color: #0a0a0a;
}

.acd-image-file-container {
  width: 394px;
  min-height: 394px;
  margin-top: 30px;
  display: flex;
  align-self: center;
  border: dashed 1px #cdcdcd;
  background-color: #ffffff;
  overflow: auto;
}

.error-info {
  display: flex;
  justify-content: center;
  color: red;
}

.sample-info-text {
  margin-left: 15px;
}

.acd-spinner-host {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
}

.acd-image-spinner {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
}

.acd-conversion-text {
  position: absolute;
  width: 258px;
  height: 28px;
  top: 56%;
  left: 42%;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.acd-upload-control {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.acd-upload-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acd-image-placeholder {
  max-width: 270px;
  max-height: 280px;
}

.acd-file-type {
  height: 40px;
  color: #fff;
}

.acd-file-type::-webkit-file-upload-button {
  visibility: hidden;
}

.acd-file-type:focus::before {
  margin-top: 1px;
  border: 2px solid #0a0a0a;
}

.acd-file-type:focus {
  outline: none;
}

.acd-file-type::before,
.acd-card-button {
  content: attr(button-name);
  display: inline-block;
  width: 232px;
  height: 32px;
  background-color: #286ec0;
  font-family:  "Inter", "sans-serif";
  font-size: 14px;
  color: #ffffff;
  border: 1px solid #286ec0;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  text-align: center;
  line-height: 30px;
}

.acd-card-button {
  margin-top: 7px;
}

.acd-card-button:focus {
  outline: #0a0a0a auto 1px;
}

.acd-file-type:hover::before {
  border-color: black;
}

.acd-image-file-note {
  font-family:  "Inter", "sans-serif";
  font-size: 11px;
  color: #0a0a0a;
  margin-top: 7px;
}

.acd-image-file-note .link {
  color: #0367c1;
  cursor: pointer;
}

.acd-image-upload {
  width: 400px;
  height: 300px;
  border: dashed 1px #c9cbcc;
  background-color: rgba(235, 237, 240, 0.32);
  justify-content: space-evenly;
}

.acd-checkbox-container {
  align-items: center;
  display: flex;
  font-family:  "Inter", "sans-serif";
  font-size: 11px;
  margin-top: 7px;
  font-weight: bold;
  color: #0a0a0a;
}

.acd-checkbox-element {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.acd-custom-checkbox {
  height: 14px;
  width: 14px;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid#286ec0;
  z-index: 1;
}

.acd-custom-checkbox-foucs {
  border: 2px solid #0a0a0a;
}

.acd-custom-checkbox::after {
  position: absolute;
  content: "";
  left: 12px;
  top: 12px;
  height: 0;
  width: 0;
  border-radius: 5px;
  border: solid #009bff;
  border-width: 0 3px 3px 0;
  transform: rotate(0deg) scale(0);
  opacity: 1;
}

.acd-checkbox-element:checked ~ .acd-custom-checkbox {
  border-radius: 2px;
  transform: rotate(0deg) scale(1);
  opacity: 1;
  border: 1px solid #286ec0;
  background-color: #286ec0;
}

.acd-checkbox-element:checked ~ .acd-custom-checkbox::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
  top: 0;
  left: 4px;
  width: 2px;
  height: 9px;
  border: solid #fff;
  border-radius: 0;
  background-color: transparent;
  border-width: 0 2px 2px 0;
}

.acd-label-element {
  margin-left: 5px;
  cursor: pointer;
}

.acd-label-element .link {
  color: #0367c1;
  cursor: pointer;
}

.acd-image-container {
  width: 400px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acd-sample-container {
  display: flex;
  height: calc(100% - 21px);
}

.acd-image-upload:hover {
  box-shadow: 0 0 20px -5px #cccccc;
  border: 1.5px dashed #cccccc;
}

.acd-image-container:hover > .acd-open-sample-item-title {
  font-weight: bold;
}

.acd-sample-image {
  max-width: 40%;
  margin: 12px;
  cursor: pointer;
}

.acd-image-text-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.acd-image-new-title {
  background-color: #2d7bb7;
  color: #ffffff;
  padding: 3px 10px;
  font-weight: bold;
  font-family:  "Inter", "sans-serif";
  font-size: 14px;
}

.acd-image-upload-title {
  font-family:  "Inter", "sans-serif";
  font-size: 18px;
  font-weight: bold;
  color: #161717;
  margin-top: 10px;
}

.acd-image-description {
  opacity: 0.72;
  font-family:  "Inter", "sans-serif";
  font-size: 14px;
  text-align: center;
  color: #161717;
  margin-top: 10px;
  width: 80%;
}

.acd-try-now-button {
  width: 138px;
  height: 31px;
  border-radius: 2px;
  background-color: #2d7bb7;
  border: 1px solid #2d7bb7;
  font-family:  "Inter", "sans-serif";
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  margin-top: 10px;
}

.acd-error-text {
  font-size: 13px;
  margin-top: 10px;
  color: red;
  font-family:  "Inter", "sans-serif";
}

.acd-designer-card-header {
  display: flex;
  flex: 1 1 auto;
  height: 32px;
  align-items: center;
  font-size: 12px;
  padding: 4px 8px;
}

.acd-designer-root {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.acd-main {
  display: flex;
  align-items: stretch;
  flex: 100%;
  overflow: hidden;
}

.acd-aside {
  position: relative;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-radius: 8px;
}

.acd-aside-left {
  border-right: 1px solid #e2e8f0;
}

.acd-aside-right {
  border-left: 1px solid #e2e8f0;
}

#view-code-panel.acd-json-editor-panel,
.acd-bottomsheet {
  padding: 8px 20px 0;
}

.acd-bottomsheet {
  min-height: 189px;
  gap: 16px;
  overflow: hidden auto;
}

.acd-bottomsheet-title {
  display: flex;
  height: 32px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 16px;
}

.acd-bottomsheet-title .acd-icon-close,
.dialog__headings .acd-icon-close,
.dialog__headings .acd-icon-chevron-down {
  border: none;
  box-shadow: none;
}

.acd-json-key {
  color: #1e40af;
}

.acd-json-value {
  color: #991b1b;
}

.acd-sidepanel-host {
  display: flex;
  flex-flow: column;
  flex: 1 1 auto;
  position: relative;
  height: 100%;
}

.acd-open-sample-item {
  padding: 4px;
}

.acd-open-sample-item-title {
  margin-top: 5px;
}

.acd-toolbar-choicePicker {
  margin-left: 2px;
  margin-right: 2px;
  flex: 0 1 auto;
}

.ms-ctrl-dropdown {
  padding-left: 3px;
  padding-right: 3px;
}

.screen-reader-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

/*
  Модальное окно Validation Patterns
*/

.dialog {
  background-color: #F8FAFC;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: column;
  border-radius: 8px;
  padding: 0;
  width: auto;
  min-width: 420px;
  max-width: 768px;
  max-height: 80vh;
}

.dialog__header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  flex: none;
  height: 80px;
  padding: 0 40px;
  background-color: #fff;
}

.dialog__headings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.dialog__body {
  display: flex;
  flex-flow: column;
  padding: 0 40px;
  overflow: auto;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: 1px solid #E2E8F0;
}

.dialog__body div {
  font-family: "Inter", "sans-serif";
}

.dialog-inner-body {
  display: flex;
  flex-flow: column;
}

.dialog__footer {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: flex-end;
  height: 72px;
  padding: 0 40px;
  gap: 8px;
}

/*
  Верхняя часть
*/
.acd-toolbar-header {
  font-family: "Inter", "sans-serif";
  display: flex;
  background-color: #f8fafc;
  padding: 8px 16px;
  gap: 16px;
  display: flex;
  align-items: center;
}

.acd-toolbar-header-title {
  display: flex;
  align-items: center;
  flex-grow: 1;
  min-width: 80px;
  gap: 8px;
  margin: 0;
  font-family: "Gilroy", "sans-serif";
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #000;
}

.acd-toolbar-header-title::before {
  content: url("assets/icons/form.svg");
  padding-right: 8px;
  width: 16px;
  height: 16px;
}

#toolbar-nav {
  display: flex;
  align-items: center;
}

#toolbar-nav .acd-toolbox-header {
  display: none;
}

.acd-dockedPane {
  display: flex;
  align-items: flex-end;
}

.acd-toolbar-button {
  padding: 2px;
}

#toolbar-actions {
  background-color: #f8fafc;
}

.acd-toolbar-header-btns {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  height: 32px;
  background: #fff;
}

.acd-toolbar-header-btns button {
  border-radius: 8px;
  padding: 8px;
}

.acd-toolbar-content button {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  height: 32px;
  background: #fff;
  padding: 8px 12px;
  display: flex;
  gap: 8px;
}

.acd-toolbar-content button[aria-pressed="true"] {
  border-color: #5555b2;
}

.acd-icon-save::before {
  filter: brightness(0) invert(100%);
}

button.acd-icon-save {
  background: #5555b2;
  color: #fff;
}

button.acd-icon-save:hover {
  background: #3f3f9e;
}

/*
  Центральная часть
*/
.acd-preview {
  flex: 100%;
  height: 100%;
  background-color: rgba(226, 232, 240, 0.4);
  display: flex;
  flex-flow: column;
  overflow: auto;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.acd-preview-container {
  width: 100%;
  max-width: 870px;
  margin: 16px auto;
}

.acd-preview-frame {
  padding: 28px;
}

/*
  Левая часть
*/
#tree-view-panel {
  padding: 16px 20px 20px 20px;
  border-radius: 0 8px 0 0;
}

#tree-view-panel .acd-toolbox {
  height: 100%;
}

#tree-view-panel .acd-toolbox-body {
  overflow: auto;
  height: 100%;
}

#tree-view-panel .acd-toolbox-header-commandButton .acd-icon::before {
  content: url("assets/icons/panel-right.svg");
}

#tree-view-panel .acd-vertical-splitter {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  cursor: ew-resize;
}

.acd-tree-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 36px;
  gap: 4px;
  border-radius: 6px;
}

.acd-tree-item.selected {
  background-color: #e0e7ff;
  border: 1px solid #a5b4fc;
  height: 36px;
}

.acd-tree-item:hover {
  background-color: #e2e8f0;
}

.acd-tree-item.selected:hover {
  background-color: #a3d8ff;
}

.acd-tree-item-text {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  padding: 4px 4px 4px 8px;
}

.acd-tree-item .acd-tree-item-remove-item,
.acd-tree-item .acd-tree-item-clearcard {
  display: none;
}

.acd-tree-item:active .acd-tree-item-remove-item,
.acd-tree-item:focus .acd-tree-item-remove-item,
.acd-tree-item:hover .acd-tree-item-remove-item,
.acd-tree-item:active .acd-tree-item-clearcard,
.acd-tree-item:focus .acd-tree-item-clearcard,
.acd-tree-item:hover .acd-tree-item-clearcard {
  display: flex;
  flex: 0 0 auto;
  border: none;
}

.acd-tree-item:hover .acd-tree-item-remove-item:before {
  content: url("assets/icons/trash.svg");
}

.acd-tree-item:hover .acd-tree-item-clearcard:before,
.acd-icon-action-button--erase {
  content: url("assets/icons/erase.svg");
}

.acd-tree-item-expand-button {
  flex: 0 0 auto;
}

.acd-tree-item:not(.acd-tree-item-has-children) .acd-tree-item-expand-button {
  display: none;
}

.acd-tree-item.acd-tree-item-has-children .acd-tree-item-expand-button {
  display: block;
}

.acd-tree-item-typeName {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #0f172a;
}

.acd-tree-item-typeName,
.acd-tree-item-additionalText,
.acd-data-tree-item-additionalText {
  margin-left: 8px;
}

.acd-tree-item-additionalText {
  color: #757575;
}

.acd-data-tree-item-additionalText {
  color: #2d7bb7;
}

.acd-tree-view-panel {
  width: 100%;
}

.acd-tree-view-host {
  height: 100%;
}

/*
  Правая часть
*/
#property-panel {
  display: flex;
  flex-flow: column;
  min-width: 360px;
  max-width: 30vw;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#property-panel .acd-toolbox-header-commandButton .acd-icon::before {
  content: url("assets/icons/panel-left.svg");
}

#property-panel .acd-toolbox-header-title-adaptivecard:before {
  content: url("assets/icons/Section.svg");
}

#property-panel .acd-toolbox-header-title-autocomplete:before {
  content: url("assets/icons/auto-complete.svg");
}

#property-panel .acd-toolbox-header-title-radiobutton:before {
  content: url("assets/icons/radio-button.svg");
}

#property-panel .acd-toolbox-header-title-text:before {
  content: url("assets/icons/Text.svg");
}

#property-panel .acd-toolbox-header-title-button:before {
  content: url("assets/icons/Button.svg");
}

#property-panel .acd-toolbox-header-title-columns:before {
  content: url("assets/icons/Columns.svg");
}

#property-panel .acd-toolbox-header-title-column:before {
  content: url("assets/icons/column.svg");
}

#property-panel .acd-toolbox-header-title-date:before {
  content: url("assets/icons/Calendar.svg");
}

#property-panel .acd-toolbox-header-title-input:before {
  content: url("assets/icons/Input.svg");
}

#property-panel .acd-toolbox-header-title-time:before {
  content: url("assets/icons/Clock.svg");
}

#property-panel .acd-toolbox-header-title-number:before {
  content: url("assets/icons/Number.svg");
}

#property-panel .acd-toolbox-header-title-select:before {
  content: url("assets/icons/Select.svg");
}

#property-panel .acd-toolbox-header-title-checkbox:before {
  content: url("assets/icons/Checkbox.svg");
}

#property-panel:not(.is-collapsed)
  .acd-toolbox-header-title-adaptivecard:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-text:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-button:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-columns:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-column:before,
#property-panel:not(.is-collapsed) .default-element__validation:before,
#property-panel:not(.is-collapsed) .default-element__style:before,
#property-panel:not(.is-collapsed) .default-element__choices:before,
#property-panel:not(.is-collapsed) .default-element__patterns:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-date:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-time:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-input:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-number:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-select:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-autocomplete:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-radiobutton:before,
#property-panel:not(.is-collapsed) .acd-toolbox-header-title-checkbox:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

#property-panel.is-collapsed .acd-toolbox-header-title-adaptivecard:before,
#property-panel.is-collapsed .acd-toolbox-header-title-text:before,
#property-panel.is-collapsed .acd-toolbox-header-title-button:before,
#property-panel.is-collapsed .acd-toolbox-header-title-columns:before,
#property-panel.is-collapsed .acd-toolbox-header-title-column:before,
#property-panel.is-collapsed .default-element__validation:before,
#property-panel.is-collapsed .default-element__style:before,
#property-panel.is-collapsed .default-element__choices:before,
#property-panel.is-collapsed .default-element__patterns:before,
#property-panel.is-collapsed .acd-toolbox-header-title-date:before,
#property-panel.is-collapsed .acd-toolbox-header-title-time:before,
#property-panel.is-collapsed .acd-toolbox-header-title-input:before,
#property-panel.is-collapsed .acd-toolbox-header-title-number:before,
#property-panel.is-collapsed .acd-toolbox-header-title-select:before,
#property-panel.is-collapsed .acd-toolbox-header-autocomplete:before,
#property-panel.is-collapsed .acd-toolbox-header-radiobutton:before,
#property-panel.is-collapsed .acd-toolbox-header-title-checkbox:before {
  margin-bottom: 8px;
  transform: rotate(90deg);
}

#property-panel .acd-toolbox,
#property-panel .acd-toolbox-body,
#property-panel .acd-propertySheet-host,
#property-panel .default-ac-adaptiveCard {
  height: 100%;
}

#tree-view-panel .acd-tree-view-host::-webkit-scrollbar,
#property-panel .acd-sidepanel-host::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}

#tree-view-panel .acd-toolbox-body::-webkit-scrollbar-track,
#property-panel .acd-toolbox-body::-webkit-scrollbar-track {
  background-color: #fff;
}

#tree-view-panel .acd-toolbox-body::-webkit-scrollbar-thumb,
#property-panel .acd-toolbox-body::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
}

#tree-view-panel .acd-toolbox-body::-webkit-scrollbar-track,
#tree-view-panel .acd-toolbox-body::-webkit-scrollbar-thumb,
#property-panel .acd-toolbox-body::-webkit-scrollbar-track,
#property-panel .acd-toolbox-body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#property-panel .acd-toolbox-header {
  padding: 16px 20px;
}

#property-panel .default-ac-horizontal-separator {
  display: block;
  height: 12px !important;
  width: 100%;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#property-panel
  .default-ac-horizontal-separator
  > .default-ac-horizontal-separator {
  display: none !important;
}

#property-panel .acd-toolbox-body {
  overflow-x: hidden;
}

#property-panel .default-ac-columnSet.choice-inputs-columns {
  flex-flow: column;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background-color: #fff;
}

#property-panel .choice-inputs-columns .default-ac-input.default-ac-textInput {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

#property-panel .choice-inputs-columns .default-ac-vertical-separator {
  display: none;
}

#property-panel .choice-inputs-columns .default-ac-container {
  flex: none !important;
}

#property-panel
  .choice-inputs-columns
  .default-ac-container
  ~ .default-ac-container {
  border-top: 1px solid #dddddd;
}

#property-panel .default-ac-container.choice-count-column {
  padding: 0 10px 0 0 !important;
}

#property-panel .acd-tree-view-panel {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  background-color: #fff;
}

#property-panel .acd-vertical-splitter {
  cursor: ew-resize;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  z-index: 1;
}

#property-panel .default-ac-container.default-ac-selectable {
  padding: 0;
}

#property-panel .default-ac-pushButton {
  border-radius: 8px;
  border: 1px solid rgba(203, 213, 225, 0.6);
  padding: 8px 36px;
  margin-left: auto;
  text-align: center;
  background-color: #fff;
}

#property-panel .default-ac-pushButton > div {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: #334155;
}

input,
select {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #0f172a;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
  border: 1px solid rgba(203, 213, 225, 0.6);
  background-color: #fff;
}

#property-panel .default-ac-columnSet .default-ac-textBlock {
  font-family: "Inter", "sans-serif" !important;
  font-size: 13px !important;
  line-height: 16px !important;
  font-weight: 400 !important;
  color: #475569 !important;
  text-align: left !important;
}

#property-panel
  .default-ac-vertical-separator
  + .default-ac-container
  .default-ac-actionSet
  button {
  padding: 0;
  border-radius: 0;
  border: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
}

#property-panel
  .default-ac-vertical-separator
  + .default-ac-container
  .default-ac-actionSet
  button:before {
  content: url("assets/icons/trash.svg");
  width: 16px;
  height: 16px;
  display: inline-block;
}

#property-panel .default-element__text,
#property-panel .default-element__button,
#property-panel .default-element__columns,
#property-panel .default-element__style,
#property-panel .default-element__choices,
#property-panel .default-element__patterns,
#property-panel .default-element__date,
#property-panel .default-element__time,
#property-panel .default-element__input,
#property-panel .default-element__number,
#property-panel .default-element__select,
#property-panel .default-element__checkbox,
#property-panel .default-element__api {
  color: #0f172a !important;
  border-top: 1px solid #cbd5e1;
  padding: 12px 20px 0 20px;
}

.default-ac-actionSet,
.default-ac-columnSet:not(.choice-columns):not(.choice-inputs-columns),
.default-element__column {
  padding: 0 20px !important;
}

.choice-remove-column .default-ac-actionSet {
  padding: 0 !important;
}

#property-panel .default-element__validation,
#property-panel .default-element__separator,
#property-panel .default-element__separator2,
#property-panel .default-element__separator3 {
  color: #0f172a !important;
  border-top: 1px solid #cbd5e1;
  font-size: 0 !important;
  line-height: 0 !important;
}

#property-panel
  .default-ac-columnSet
  > .default-ac-container
  > .default-element__text {
  padding: 0;
  border: 0;
}

#property-panel .acd-toolbox-header-title {
  font-weight: 500;
}

#property-panel .default-ac-textBlock {
  font-weight: 400 !important;
}

#property-panel .default-ac-textBlock.default-ac-selectable:hover {
  color: #2d7bb7 !important;
  cursor: pointer;
}

.choice-count-column {
  display: none !important;
}

.choice-count-column ~ .default-ac-vertical-separator {
  display: none !important;
}

#property-panel .choice-count-column .default-ac-actionSet button {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.choice-count-column .default-ac-actionSet button:before {
  content: url("assets/icons/trash.svg");
  width: 16px;
  height: 16px;
  display: inline-block;
}

.acd-placeholder-template {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #64748b;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
  text-align: center;
}

#property-panel .default-ac-horizontal-separator ~ .acd-placeholder-template {
  display: none;
}

/*
  Нижняя часть
*/

#view-code-panel .acd-toolbox-header-commandButton .acd-icon::before {
  content: url("assets/icons/code-view-down.svg");
}

#view-code-panel .acd-sidepanel-host {
  height: auto;
  overflow: hidden;
}

#view-code-panel .monaco-editor {
  width: 100% !important;
}

#view-code-panel .codicon-folding-expanded:before,
#view-code-panel .codicon-folding-collapsed:before {
  font-family: "Gilroy", "sans-serif";
  font-weight: 500;
}

#view-code-panel .codicon-folding-expanded:before {
  content: "–";
}

#view-code-panel .codicon-folding-collapsed:before {
  content: "+";
}

#view-code-panel .monaco-editor .margin-view-overlays .codicon-folding-expanded,
#view-code-panel
  .monaco-editor
  .margin-view-overlays
  .codicon-folding-collapsed {
  opacity: 1;
}

#view-code-panel.acd-json-editor-panel {
  min-height: 335px;
}

.acd-json-editor-panel {
  display: flex;
  flex-flow: column;
  flex: 0 0 auto;
  background-color: #f8fafc;
  order: 1;
  max-height: 500px;
  overflow: hidden;
}

.acd-json-editor-panel > .acd-toolbox-header {
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 12px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 0;
}

.acd-sidepanel-host-horizontal {
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 12px 28px 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.monaco-editor {
  overflow: hidden;
}

.monaco-editor .minimap-slider .minimap-slider-horizontal {
  height: 50px !important;
}

.monaco-editor .minimap.slider-mouseover:hover .minimap-slider,
.monaco-editor .minimap.slider-mouseover .minimap-slider {
  opacity: 0.5;
}

/*
  Стилизация "шапки" блоков: разметка, панель свойств, код
*/
.acd-toolbox {
  display: flex;
  flex-flow: column;
  position: relative;
}

.acd-toolbox-header {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.acd-toolbox-header-commandsHost {
  display: flex;
  align-items: center;
}

.acd-toolbox-header-commandButton {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.acd-toolbox-header-commandButton .acd-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acd-toolbox-header-commandButton:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

.acd-peer.published {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjEuNv1OCegAAAAwSURBVChTY/j//z8cA0EDOh+vJJjGJwll45YE81E4WBTjlQTT+CShbNyS////ZwAAVxKXcckJBiYAAAAASUVORK5CYII=);
  background-repeat: repeat;
  opacity: 0.2;
  background-color: red;
}

/*
  Стилизация модального окна SaveActions
*/
.dialog-overlay {
  position: fixed;
  padding: 24px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-overlay-hide {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.dialog-overlay-show {
  opacity: 1;
  z-index: 1000;
}

.acd-saveactions-list {
  display: flex;
  flex-flow: column;
  padding-bottom: 20px;
  gap: 4px;
}

.acd-saveactions-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  max-height: 68px;
  height: auto;
  width: 600px;
  padding: 8px 12px;
  background-color: #F8FAFC;
  font-weight: 400;
  line-height: 16px;
  border-radius: 6px;
}

.acd-saveactions-list-item:not(.toggled):hover {
  background-color: #E2E8F0;
}

.acd-saveactions-list-item .acd-icon-action-button--setting {
  order: unset;
}

.acd-save-action-dialog-footer-message {
  display: flex;
  align-items: center;
  flex: 1;
  height: 34px;
  font-size: 13px;
  line-height: 16px;
  color: #64748B;
}

.acd-dialog-button-cancel {
  background-color: white;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(203, 213, 225);
}

.acd-regex-list {
  display: flex;
  flex-flow: column;
  padding-bottom: 32px;
  gap: 8px;
}

.acd-dialog-regex-title {
  font-family: "Gilroy", "sans-serif";
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  flex: 1;
  margin: 0;
}

.acd-regex-list-item {
  border: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 64px;
  width: 560px;
  padding: 8px 12px;
  background-color: #F8FAFC;
  font-weight: 400;
  line-height: 16px;
  border-radius: 6px;
}

.acd-regex-list-item:not(.toggled):hover {
  background-color: #E2E8F0;
}

.acd-regex-list-item .acd-icon-action-button--edit {
  order: unset;
  background-color: white;
  height: 32px;
  font-family: 'Inter';
  font-size: 13px;
}

.regex-value-textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-height: 40px;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px #0000000D;
  padding: 8px 12px 8px 16px;
}

.list-item-first-column {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.acd-save-action-title {
  font-family: "Inter", "sans-serif";
  font-size: 13px;
}

.acd-save-action-details-caption {
  font-size: 12px;
  color: #504ECA;
}

.acd-save-action-details-caption.is-valid-details {
  color: #059669;
}

.acd-save-action-restriction-caption {
  font-size: 12px;
  line-height: 16px;
  color:  #64748B;
}

.acd-saveactions-parameter-list {
  display: flex;
  flex-flow: column;
}

.acd-saveactions-parameter-list-item {
  display: flex;
  flex-direction: column;
  min-width: 560px;
  padding-bottom: 28px;
}

.acd-saveactions-parameter-list-item:last-child {
  padding-bottom: 32px;
}

.acd-saveactions-parameter-list-item.subject-field,
.acd-saveactions-parameter-list-item.body-field {
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #F8FAFC;
}

.acd-saveactions-parameter-list-item.subject-field {
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0
}

.acd-saveactions-parameter-list-item-caption {
  font-family: "Inter", "sans-serif";
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 8px;
}

.acd-dialog-button-accept:disabled {
  cursor: auto;
  background-color: #504ECA;
  border-color: grey;
  opacity: 0.6;
}

input.acd-saveactions-parameter-input {
  height: 40px;
}

.acd-saveactions-parameter-list-item-error-msg {
  color: red;
  display: flex;
  align-items: center;
  font-size: 13px;
  padding-top: 6px;
}

.acd-saveactions-parameter-list-item-error-msg:before {
  content: url("assets/icons/chip-error.svg");
  cursor: pointer;
  width: 16px;
  display: flex;
  align-items:end;
  height: 16px;
}

.error-message {
  font-size: 12px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.01px;
  color: #e70e02;
  display: block;
  width: 100%;
}

.common-forms .chosen-single div {
  background-image: url("assets/icons/arrow-orange.svg");
}

#property-panel,
#tree-view-panel {
  min-width: 252px;
  max-width: 30vw;
  height: 100%;
  background-color: #f8fafc;
}

#property-panel.is-collapsed,
#tree-view-panel.is-collapsed {
  min-width: 0;
  max-width: 66px;
}

#view-code-panel.acd-json-editor-panel.is-collapsed {
  min-height: 0;
  max-height: 66px;
}

#property-panel.is-collapsed .acd-vertical-splitter,
#property-panel.is-collapsed .acd-toolbox-body,
#tree-view-panel.is-collapsed .acd-vertical-splitter,
#tree-view-panel.is-collapsed .acd-toolbox-body,
#view-code-panel.is-collapsed .acd-horizontal-splitter,
#view-code-panel.is-collapsed .acd-toolbox-body {
  display: none;
}

#property-panel.is-collapsed .acd-toolbox-header-commandsHost,
#tree-view-panel.is-collapsed .acd-toolbox-header-commandsHost {
  position: relative;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

#property-panel.is-collapsed .acd-toolbox-header-title,
#tree-view-panel.is-collapsed .acd-toolbox-header-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

#property-panel.is-collapsed
  .acd-toolbox-header-title
  + .acd-toolbox-header-commandButton,
#tree-view-panel.is-collapsed
  .acd-toolbox-header-title
  + .acd-toolbox-header-commandButton {
  margin-left: 0;
}

.acd-rename-title-container {
  height: 32px;
  width: 232px;
  display: block;
  position: relative;
}

.acd-rename-title-container > .acd-rename-title-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 8px;
}

.acd-rename-title-container > .acd-rename-title-wrapper > input {
  flex-grow: 1;
  flex-shrink: 1;
  border: none;
  box-shadow: none;
  background: none;
  z-index: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.acd-rename-title-container > .acd-rename-title-wrapper > input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 32px #F8FAFC inset !important;
}

.acd-rename-title-container > .acd-rename-title-wrapper > input:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 32px #ffffff inset !important;
}

.acd-rename-title-container > .acd-rename-title-wrapper > input:focus {
  flex-grow: 1;
  flex-shrink: 1;
  box-shadow: none;
  background: #ffffff;
  font-weight: normal;
  border: 1px solid rgba(203, 213, 225, 0.6);
  border-right: none;
  padding: 7px 8px;
}

.acd-rename-title-container > .acd-rename-title-wrapper > .acd-icon-action-button {
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 0;
  background-color: #ffffff;
  display: none;
  z-index: 1;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}

.acd-rename-title-container > .acd-rename-title-wrapper:focus-within > .acd-icon-action-button {
  display: flex;
}

.acd-rename-title-container > .acd-rename-title-wrapper > .acd-icon-action-button::before {
  content: url("/assets/icons/check.svg");
}

.acd-rename-title-tooltip {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  overflow: hidden;
  white-space: normal;
  margin-top: 5px;
  padding: 4px 10px;
  background-color: #0f172acc;
  color: white;
  border-radius: 8px;
  pointer-events: none;
  text-align: left;
  font-family: "Inter", "sans-serif";
  font-weight: 500;
  font-size: 13px;
  font-style: normal;
  line-height: 16px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.acd-rename-title-container > .acd-rename-title-wrapper:hover:not(:focus-within) + .acd-rename-title-tooltip:not(.empty-tooltip) {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .acd-toolbar-area {
    padding: 12px;
  }

  .acd-toolbar-area .acd-toolbar-actions-list {
    gap: 8px;
  }

  #property-panel,
  #tree-view-panel {
    min-width: 300px;
  }

  #property-panel .acd-toolbox-header {
    padding: 16px;
  }

  #property-panel .choice-count-column > div:last-child,
  #property-panel .choice-count-column > .default-ac-horizontal-separator {
    display: none;
  }

  #property-panel
    .choice-columns:hover
    .choice-count-column
    > .default-ac-textBlock {
    display: none !important;
  }

  #property-panel .choice-columns:hover .choice-count-column > div:last-child {
    display: block !important;
  }

  .choice-inputs-columns {
    flex-direction: column;
  }

  .choice-inputs-columns > .default-ac-container {
    flex: 1 1 31px !important;
  }

  .choice-inputs-columns
    .default-ac-container:first-child
    .default-ac-input.default-ac-textInput {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
  }

  .choice-inputs-columns
    .default-ac-container:last-child
    .default-ac-input.default-ac-textInput {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .acd-editor-title-button.acd-editor-title-button--warning {
    display: flex;
  }

  .acd-code-editor:not(.acd-tab-active),
  .acd-tab-warning:not(.acd-tab-active) {
    display: none;
  }

  .acd-code-editor.acd-tab-active,
  .acd-tab-warning.acd-tab-active {
    display: block;
    height: 100%;
  }

  .acd-tab-warning.acd-tab-active {
    overflow: hidden auto;
  }

  .acd-editor-title-button.acd-editor-title-button--warning:after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    background-color: #d97706;
    color: white;
    content: attr(data-warningcount);
  }

  #tree-view-panel {
    padding: 8px 16px 20px 16px;
  }

  .acd-icon-action-button--warning {
    display: none;
  }

  .acd-icon-action-button--preview:not(.acd-icon-action-button--preview__active) .acd-icon-action-button-caption {
    display: none;
  }

  .acd-icon-action-button--save:before {
    content: none;
  }
}

.tab {
  width: 100%;
  background-color: #f1f5f9;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 2px;
  gap: 2px;
}

.tab-button {
  height: 28px;
  width: 100%;
  font-size: 12px;
  color: #0f172a;
  font-family: "Inter", "sans-serif";
}


.tab-button-active,
.tab-button:hover,
.tab-button:focus {
  background-color: white;
  border-radius: 6px;
  border: 1px solid #0000000a;
  box-shadow: 0 1px 3px 0 #0000001a;
}
.acd-dialog-button-forward {
  border: none;
}

.default-ac-columnSet.choice-inputs-columns {
  padding: 0 !important;
}

.select-field {
  align-items: center;
}

.select-list-forward-settings,
.list-forward-settings {
  display: none;
}

.down-arrow {
  display: flex;
  align-items: center;
}

.down-arrow::before {
  content: url("assets/icons/chevron-up-down.svg");
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.show {
  display: block;
  margin: 8px 0;
  box-shadow: 0 4px 6px -1px #0000001A;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px 0;
}

.input-selector {
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
}

.checkmark-forward {
  display: inline-block;
  user-select: none;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.checkbox-forward {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  padding: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  user-select: none;
}

.checkmark-forward::before {
  content: " ";
  display: inline-block;
  width: inherit;
  height: inherit;
}

.checkbox-forward:checked ~ .checkmark-forward::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("assets/icons/Checkmark.svg");
  background-size: cover;
}

.forward-wrapper__label {
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  min-height: 40px;
  border: 1px solid #e2e8f0;
  align-items: center;
}

.label-text {
  color: #64748B;
}

.label-text.active {
  color: black;
}

.list-settings-item.forward:hover {
  background-color: #E5F1FC;
}

.list-settings-item.forward {
  height: 40px;
  padding: 12px 8px 12px 16px;
  margin: 0 4px 1px 4px;
  border-radius: 4px;
}
