@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
  position: relative;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #111111;
}
h1.dark, h2.dark, h3.dark, h4.dark {
  color: #111111;
}

h1, .h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1.5rem;
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

ul, ol {
  font-size: 0;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
ul li, ol li {
  font-size: 0.875rem;
  line-height: 1.15;
}

strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #D70D19;
}
a:hover {
  text-decoration: underline;
  color: #111111;
}

.button {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  padding: calc(0.75rem - 1px) 1.5rem;
  color: #FFFFFF;
  background-color: #D70D19;
  border: 1px solid #D70D19;
}
.button:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.button:hover .external {
  fill: #D70D19;
}
.button .external {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%) rotate(-135deg);
  width: 0.5625rem;
  height: 0.75rem;
  fill: #FFFFFF;
}
.button.icon {
  padding-right: 2.5rem;
}
.button.inverse, .button.cancel {
  color: #D70D19;
  background-color: #FFFFFF;
}
.button.light {
  color: #D70D19;
  border: 1px solid #D70D19;
  background-color: #FFFFFF;
}
.button.light .external {
  fill: #D70D19;
}
.button.danger {
  color: #eca05d;
  border: 1px solid #eca05d;
  background-color: #FFFFFF;
}
.button.danger:hover {
  color: #FFFFFF;
  background-color: #eca05d;
}

label {
  position: relative;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.125;
  padding: 0.65rem 1rem;
  min-height: 40px;
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #111111;
}

::-moz-placeholder {
  color: #666666;
}

::placeholder {
  color: #666666;
}

input[type=password] {
  font-family: "Roboto", Arial, sans-serif;
}

input[type=time] {
  padding: 0.5rem 1rem;
}

input[readonly],
input[disabled],
select[disabled] {
  border-color: #CCCCCC !important;
  background-color: #F0F0F0 !important;
  cursor: not-allowed;
}

button {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1;
  padding: calc(0.75rem - 1px) 1.5rem;
  color: #FFFFFF;
  background-color: #D70D19;
  border: 1px solid #D70D19;
}
button[disabled] {
  pointer-events: none;
  opacity: 0.25;
}

.select {
  position: relative;
}
.select select {
  padding-right: 2.5rem;
  background-image: url("../icons/chevron-down.svg");
  background-position: calc(100% - 1rem) 0.7rem;
  background-repeat: no-repeat;
  background-size: 1rem;
}

.checkbox {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.checkbox input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-height: auto;
  transform: translateY(-50%);
  padding: 0;
}
.checkbox input:checked {
  border-color: #D70D19;
  background-image: url("../icons/check.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 1rem;
}
.checkbox input:checked + span {
  color: #D70D19;
}
.checkbox span {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  vertical-align: middle;
}

.toggle {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.toggle input {
  display: none;
}
.toggle input:checked + span {
  background-color: #37a369;
}
.toggle input:checked + span::after {
  left: calc(100% - 1.35rem);
}
.toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D70D19;
}
.toggle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  transform: translateY(-50%);
  border-radius: 2rem;
  background-color: #FFFFFF;
  transition: all 0.4s;
}

.multi-select {
  position: relative;
}
.multi-select .tooltip {
  position: absolute;
  z-index: 2;
  bottom: calc(100% + 0.75rem);
  right: 0;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.15;
  padding: 0.375rem;
  color: #111111;
  background-color: #E6E6E6;
}
.multi-select .tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.25rem);
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
  background-color: #E6E6E6;
}
.multi-select .chosen {
  position: relative;
  display: block;
  width: 100%;
  min-height: 40px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.5;
  padding: 0.5rem 3rem 0.5rem 1rem;
  overflow: hidden;
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  background-image: url("../icons/chevron-down.svg");
  background-position: calc(100% - 1rem) 0.65rem;
  background-repeat: no-repeat;
  background-size: 1rem;
}
.multi-select .chosen span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select .options {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 20rem;
  overflow-y: auto;
  padding: 0.25rem 0.25rem 0.75rem 0.25rem;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  background-color: #FFFFFF;
}
.multi-select .options .search {
  padding: 0.5rem 0.75rem;
}
.multi-select .options .search input {
  font-size: 0.875rem;
  padding-left: 2rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background-image: url("../icons/search.svg");
  background-position: 0.125rem 50%;
  background-repeat: no-repeat;
  background-size: 0.875rem;
}
.multi-select .options .empty {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.15;
  padding: 0.5rem 0.75rem;
}
.multi-select .options .option {
  padding: 0.5rem 0.75rem;
}
.multi-select .options .option:not(:last-child) {
  border-bottom: 1px solid transparent;
}
.multi-select .options .checkbox {
  margin: 0;
}
.multi-select .select {
  display: none;
}

.group .checkbox {
  display: inline-block;
  width: 50%;
  margin-top: 0.65rem;
  margin-bottom: 0.65rem;
}

.horizontal {
  display: flex;
  position: relative;
  font-size: 0;
  margin-bottom: 1rem;
}
.horizontal label {
  display: inline-block;
  font-weight: 500;
  vertical-align: top;
  width: 40%;
  max-width: 295px;
  margin-top: 0.75rem;
}
.horizontal label .help {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.5rem;
  padding-right: 2rem;
  color: #666666;
}
.horizontal input,
.horizontal .group,
.horizontal .message {
  display: inline-block;
  width: 100%;
}
.horizontal .group.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.horizontal .message {
  margin-bottom: 1rem;
}

.explain {
  display: flex;
}
.explain label {
  width: 40%;
  max-width: 295px;
  margin-bottom: 0;
}
.explain p {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
  color: #666666;
}

.editor p, .editor ul, .editor ol, .editor li,
.editor-disabled p,
.editor-disabled ul,
.editor-disabled ol,
.editor-disabled li {
  font-size: 0.9rem !important;
}

.trumbowyg-box,
.trumbowyg-editor {
  min-height: 150px !important;
}

.field-error {
  background-color: rgba(230, 131, 116, 0.1);
  border: 1px solid #e68374;
}
.field-error .trumbowyg-box,
.field-error .trumbowyg-editor {
  border: 0 !important;
}
.field-error .trumbowyg-box.trumbowyg-reset-css,
.field-error .trumbowyg-editor.trumbowyg-reset-css {
  background: rgba(230, 131, 116, 0.05) !important;
}

.form-field {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-error {
  position: relative;
  max-width: auto;
  padding: 1rem 3rem 1rem 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #FFFFFF;
  border-left: 0.5rem solid #D70D19;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
}
.form-error ul {
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.form-error ul li {
  font-size: 0.875rem;
  line-height: 1.35;
  margin: 0;
  color: #111111;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

hr {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  background-color: #E6E6E6;
}

header,
main {
  min-width: 1400px;
}

main {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.container.large {
  max-width: 1440px;
}
.container.medium {
  max-width: 1000px;
}
.container.small {
  max-width: 680px;
}

.row::before,
.row::after {
  content: " ";
  display: table;
}

.row::after {
  clear: both;
}

.row {
  position: relative;
  *zoom: 1;
}

.column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.column.no-gutter {
  padding-right: 0;
  padding-left: 0;
}
.column.opposite {
  float: right;
}

.column.lg-12 {
  width: 100%;
}
.column.lg-11 {
  width: 91.6666666667%;
}
.column.lg-10 {
  width: 83.3333333333%;
}
.column.lg-9 {
  width: 0%;
}
.column.lg-8 {
  width: 66.6666666667%;
}
.column.lg-7 {
  width: 58.3333333333%;
}
.column.lg-6 {
  width: 50%;
}
.column.lg-5 {
  width: 41.6666666667%;
}
.column.lg-4 {
  width: 33.3333333333%;
}
.column.lg-3 {
  width: 25%;
}
.column.lg-2 {
  width: 16.6666666667%;
}
.column.lg-1 {
  width: 8.3333333333%;
}

@media screen and (max-width: 960px) {
  .column.md-12 {
    width: 100%;
  }
  .column.md-11 {
    width: 91.6666666667%;
  }
  .column.md-10 {
    width: 83.3333333333%;
  }
  .column.md-9 {
    width: 0%;
  }
  .column.md-8 {
    width: 66.6666666667%;
  }
  .column.md-7 {
    width: 58.3333333333%;
  }
  .column.md-6 {
    width: 50%;
  }
  .column.md-5 {
    width: 41.6666666667%;
  }
  .column.md-4 {
    width: 33.3333333333%;
  }
  .column.md-3 {
    width: 25%;
  }
  .column.md-2 {
    width: 16.6666666667%;
  }
  .column.md-1 {
    width: 8.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .column.sm-12 {
    width: 100%;
  }
  .column.sm-11 {
    width: 91.6666666667%;
  }
  .column.sm-10 {
    width: 83.3333333333%;
  }
  .column.sm-9 {
    width: 0%;
  }
  .column.sm-8 {
    width: 66.6666666667%;
  }
  .column.sm-7 {
    width: 58.3333333333%;
  }
  .column.sm-6 {
    width: 50%;
  }
  .column.sm-5 {
    width: 41.6666666667%;
  }
  .column.sm-4 {
    width: 33.3333333333%;
  }
  .column.sm-3 {
    width: 25%;
  }
  .column.sm-2 {
    width: 16.6666666667%;
  }
  .column.sm-1 {
    width: 8.3333333333%;
  }
}
@media screen and (max-width: 480px) {
  .column.xs-12 {
    width: 100%;
  }
  .column.xs-11 {
    width: 91.6666666667%;
  }
  .column.xs-10 {
    width: 83.3333333333%;
  }
  .column.xs-9 {
    width: 0%;
  }
  .column.xs-8 {
    width: 66.6666666667%;
  }
  .column.xs-7 {
    width: 58.3333333333%;
  }
  .column.xs-6 {
    width: 50%;
  }
  .column.xs-5 {
    width: 41.6666666667%;
  }
  .column.xs-4 {
    width: 33.3333333333%;
  }
  .column.xs-3 {
    width: 25%;
  }
  .column.xs-2 {
    width: 16.6666666667%;
  }
  .column.xs-1 {
    width: 8.3333333333%;
  }
}
.header {
  z-index: 991;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
}
.header .header-logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 3.5rem;
  padding-left: 3.5rem;
}
.header .header-logo a {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  background-color: #D70D19;
}
.header .header-logo a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 2.75rem;
}
.header .header-logo strong {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  padding-top: 0.65rem;
  padding-left: 4.5rem;
  color: #D70D19;
}
.header .header-menu {
  text-align: right;
}
.header .header-menu ul {
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.header .header-menu ul li {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: top;
}
.header .header-menu ul li.separator {
  width: 1px;
  height: 1.5rem;
  margin-top: 1rem;
  background-color: #CCCCCC;
}
.header .header-menu ul a {
  position: relative;
  display: block;
  text-decoration: none;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 0.25rem solid transparent;
  color: #111111;
}
.header .header-menu ul a:hover, .header .header-menu ul a.active {
  color: #D70D19;
  border-bottom-color: #D70D19;
}
.header .header-menu ul a.account {
  font-weight: 500;
  min-height: 3.5rem;
  padding-left: 4rem;
  padding-right: 1.5rem;
  margin-left: 1.25rem;
  margin-right: 0;
  color: #666666;
  background-color: #F0F0F0;
  background-image: url("../icons/user.svg");
  background-repeat: no-repeat;
  background-position: 1.5rem 50%;
  background-size: 1.5rem;
  border-bottom: 0;
}
.header .header-menu .admin-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: calc(100% - 1.25rem);
  font-size: 0;
  padding: 0.25rem 0.5rem;
  margin: 0;
  background-color: #FFFFFF;
  box-shadow: 10px 10px 20px rgba(17, 17, 17, 0.15);
}
.header .header-menu .admin-menu li {
  display: block;
  font-size: 0.875rem;
  text-align: left;
}
.header .header-menu .admin-menu li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.header .header-menu .admin-menu li a {
  display: block;
  padding: 0.25rem;
  margin: 0;
  border: 0;
}
.header .header-menu .admin-menu li a:hover {
  color: #111111;
}
.header .header-menu .admin-menu li a.logout {
  padding-left: 1.5rem;
  background-image: url("../icons/log-out.svg");
  background-position: 0.25rem 45%;
  background-repeat: no-repeat;
  background-size: 0.875rem;
}

.status-green,
.status-orange,
.status-blue,
.status-red,
.status-purple,
.status-salmon,
.status-partial,
.status-opacity,
.status-expire {
  position: relative;
  display: inline-block;
  width: 10rem;
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: bottom;
  padding: 0.25rem 0.5rem;
  margin-right: 1.25rem;
  border: 1px solid #CCCCCC;
  border-radius: 0.1875rem;
  background-color: #FFFFFF;
}

.status-green {
  color: #FFFFFF;
  border-color: #37a369;
  background-color: #37a369;
}

.status-blue {
  color: #FFFFFF;
  border-color: #57c6e2;
  background-color: #57c6e2;
}

.status-orange {
  color: #FFFFFF;
  border-color: #eca05d;
  background-color: #eca05d;
}

.status-red {
  color: #FFFFFF;
  border-color: #e68374;
  background-color: #e68374;
}

.status-purple {
  color: #FFFFFF;
  border-color: #C4B0FF;
  background-color: #C4B0FF;
}

.status-salmon {
  color: #FFFFFF;
  border-color: #E8A0BF;
  background-color: #E8A0BF;
}

.status-partial {
  color: #37a369;
  border-color: #37a369;
}

.status-opacity {
  color: #FFFFFF;
  border-color: #a1cfba;
  background-color: #a1cfba;
}

.status-expire {
  color: #666666;
  border-color: #666666;
}
.status-expire i {
  border-color: #666666;
  background-color: #666666;
}

.headline {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.headline .message {
  position: relative;
  font-weight: 1rem;
  font-weight: 600;
  padding: 1.25rem 10rem 1.25rem 1.25rem;
  margin-bottom: 2.5rem;
  color: #FFFFFF;
  background-color: #37a369;
}
.headline .message .button {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  line-height: 1;
  padding: 0.5rem 1rem 0.25rem 1rem;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.headline .message .button:hover {
  color: #37a369;
}
.headline h2 {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.headline p {
  display: block;
  margin-bottom: 1rem;
}
.headline .select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 15rem;
  margin-left: 2.5rem;
  margin-bottom: 0.625rem;
}
.headline .select select {
  border-color: #E6E6E6;
}

.breadcrumbs {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.breadcrumbs .items {
  font-size: 0;
  padding: 0;
  margin: 0;
}
.breadcrumbs .items span {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.25rem 2.25rem 0.25rem 0;
  color: #666666;
}
.breadcrumbs .items span:last-child {
  padding-right: 0;
}
.breadcrumbs .items span:last-child .icon {
  display: none;
}
.breadcrumbs .items span .icon {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
}
.breadcrumbs .items a {
  text-decoration: none;
  color: #666666;
}
.breadcrumbs .items a:hover {
  color: #111111;
}

.notification {
  position: fixed;
  z-index: 990;
  top: 4.5rem;
  right: 1rem;
}
.notification .notification-item {
  position: relative;
  max-width: auto;
  padding: 1rem 3rem 1rem 1rem;
  margin-bottom: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
}
.notification .notification-item p {
  font-size: 0.875rem;
  line-height: 1.35;
  margin: 0;
  color: #111111;
}
.notification .notification-item p a {
  color: #111111;
  text-decoration: underline;
}
.notification .notification-item ul {
  padding-top: 0.375rem;
  margin-bottom: 0;
}
.notification .notification-item ul li {
  font-size: 0.875rem;
  line-height: 1.35;
  margin: 0;
  color: #111111;
}
.notification .notification-item .close {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 1.1rem;
  right: 0.75rem;
  width: 1rem;
  height: 1rem;
  background-image: url("../icons/close-dark.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}
.notification .notification-item.green {
  border-left: 0.5rem solid #37a369;
}
.notification .notification-item.orange {
  border-left: 0.5rem solid #eca05d;
}
.notification .notification-item.red {
  border-left: 0.5rem solid #D70D19;
}
.notification .notification-item.closing {
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s;
}

.fixed-filter {
  padding-top: 185px;
}
.fixed-filter .voicelinks-filter,
.fixed-filter .chatlinks-filter,
.fixed-filter .logs-filter {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1400px;
  padding-top: 4.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
}

.fixed-head {
  padding-top: 185px;
}
.fixed-head .voicelinks-head,
.fixed-head .chatlinks-head {
  position: fixed;
  z-index: 97;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1400px;
  padding-top: 4rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
}
.fixed-head .voicelinks-head .headline,
.fixed-head .chatlinks-head .headline {
  margin-top: 0;
  margin-bottom: 0.5rem;
  transition: all 0.4s;
}

.loader {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

.loader-spinner {
  --size: 60px;
  --first-block-clr: #D70D19;
  --second-block-clr: #CCC;
  --clr: #111;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.loader-spinner::after,
.loader-spinner::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  width: var(--size);
  height: var(--size);
  top: 50%;
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  left: 50%;
  background: var(--first-block-clr);
}

.loader-spinner::after {
  background: var(--second-block-clr);
  top: calc(50% - var(--size));
  left: calc(50% - var(--size));
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes down {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(100%) translateY(100%);
  }
  75% {
    transform: translateY(100%);
  }
}
@keyframes up {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%) translateY(-100%);
  }
  75% {
    transform: translateY(-100%);
  }
}
.loader-visible {
  position: relative;
  min-height: 12rem;
}

#chatLinksList .loader,
#voiceLinksList .loader {
  left: 0.5rem;
  right: 0.5rem;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  width: auto;
}

.popup-visible {
  overflow: hidden;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background-color: rgba(17, 17, 17, 0.95);
  overflow: hidden;
}
.popup .popup-wrapper {
  position: absolute;
  padding: 1rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow-y: auto;
}
.popup .popup-content {
  position: relative;
  max-width: 500px;
  padding: 1rem;
  margin: 0 auto;
  background-color: #FFFFFF;
}
.popup .popup-content h2 {
  margin-bottom: 1rem;
  color: #111111;
}
.popup .popup-content .errors {
  position: relative;
  max-width: auto;
  padding: 1rem 3rem 1rem 1rem;
  margin-bottom: 2.5rem;
  background-color: #FFFFFF;
  border-left: 0.5rem solid #D70D19;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
}
.popup .popup-content .errors p {
  font-size: 0.875rem;
  line-height: 1.35;
  margin: 0;
  color: #111111;
}
.popup .popup-content .errors p a {
  color: #111111;
  text-decoration: underline;
}
.popup .popup-content .errors ul {
  padding-top: 0.375rem;
  margin-bottom: 0;
}
.popup .popup-content .errors ul li {
  font-size: 0.875rem;
  line-height: 1.35;
  margin: 0;
  color: #111111;
}
.popup .popup-content .buttons {
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.popup .popup-content .buttons li {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  margin-right: 1rem;
}
.popup .popup-content .buttons.background {
  position: relative;
}
.popup .popup-content .buttons.background::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background-color: #F0F0F0;
}
.popup .popup-content .buttons.background li {
  position: relative;
  z-index: 1;
}
.popup.large .popup-content {
  max-width: 1330px;
}
.popup.large .popup-content h2 {
  margin-bottom: 2rem;
}

.popup-exception {
  padding-bottom: 1rem;
}
.popup-exception .select,
.popup-exception .row {
  width: 100%;
}
.popup-exception .row .column.lg-6:nth-child(1) {
  padding-right: 1.25rem;
}
.popup-exception .row .column.lg-6:nth-child(2) {
  padding-left: 1.25rem;
}
.popup-exception .weekday .checkbox {
  width: 30%;
}
.popup-exception .weekday .time {
  width: 35%;
}
.popup-exception .weekday .time:nth-child(2) {
  padding-right: 0.625rem;
}
.popup-exception .weekday .time:nth-child(3) {
  padding-left: 0.625rem;
}
.popup-exception .weekday .time label {
  width: 20%;
}
.popup-exception .weekday .time input {
  max-width: 80%;
}
.popup-exception .date label {
  width: 10%;
}
.popup-exception .date input {
  width: 90%;
}
.popup-exception hr {
  margin: 2rem 0;
}
.popup-exception .audio {
  display: flex;
  padding-bottom: 1.25rem;
}
.popup-exception .audio .select {
  width: 100%;
  padding-left: 1.5rem;
}
.popup-exception .audio .select::before {
  content: "";
  cursor: grab;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 100%;
  background-image: url("../icons/custom/drag-vertical.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.popup-exception .audio .space {
  width: 100%;
  margin-left: 15%;
}
.popup-exception .audio .control {
  display: flex;
  justify-content: right;
}
.popup-exception .audio .control button {
  min-width: 150px;
  margin-left: 2rem;
}
.popup-exception .audio .control .command {
  position: relative;
  width: 150px;
  height: 40px;
  margin-left: 2rem;
  border: 1px solid #CCCCCC;
}
.popup-exception .audio .control .command::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #F0F0F0;
}
.popup-exception .audio .control .command .play,
.popup-exception .audio .control .command .pause,
.popup-exception .audio .control .command .stop {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  min-width: auto;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.popup-exception .audio .control .command .play:hover,
.popup-exception .audio .control .command .pause:hover,
.popup-exception .audio .control .command .stop:hover {
  background-color: rgba(240, 240, 240, 0.5);
}
.popup-exception .audio .control .command .play {
  left: 0;
  background-image: url("../icons/play.svg");
  background-size: 0.875rem;
}
.popup-exception .audio .control .command .pause {
  left: 0;
  background-image: url("../icons/pause.svg");
  background-size: 0.875rem;
}
.popup-exception .audio .control .command .stop {
  right: 0;
  background-image: url("../icons/square.svg");
  background-size: 0.75rem;
}
.popup-exception .audio .control .audio-play,
.popup-exception .audio .control .audio-pause,
.popup-exception .audio .control .audio-stop {
  min-width: 40px;
  margin-left: 0.375rem;
  background-color: #FFFFFF;
  border-color: #37a369;
  color: #37a369;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.popup-exception .audio .control .audio-play:hover,
.popup-exception .audio .control .audio-pause:hover,
.popup-exception .audio .control .audio-stop:hover {
  background-color: #37a369;
  color: #FFFFFF;
}
.popup-exception .audio .control .audio-play {
  margin-left: 2rem;
  background-image: url("../icons/custom/play-icon.svg");
  background-size: auto 50%;
}
.popup-exception .audio .control .audio-play:hover {
  background-image: url("../icons/custom/play-icon--hover.svg");
}
.popup-exception .audio .control .audio-pause {
  background-image: url("../icons/custom/pause-icon.svg");
  background-size: auto 50%;
}
.popup-exception .audio .control .audio-pause:hover {
  background-image: url("../icons/custom/pause-icon--hover.svg");
}
.popup-exception .audio .control .audio-stop {
  background-image: url("../icons/custom/stop-icon.svg");
  background-size: auto 42%;
}
.popup-exception .audio .control .audio-stop:hover {
  background-image: url("../icons/custom/stop-icon--hover.svg");
}
.popup-exception .audio .control .audio-remove {
  background-color: #FFFFFF;
  border-color: #D70D19;
  color: #D70D19;
}
.popup-exception .audio.hidden {
  display: none;
}

.footer {
  padding: 2.5rem 0;
  color: #666666;
  background-color: #F0F0F0;
}
.footer p {
  font-size: 0.9rem;
  margin-bottom: 0.9375rem;
}
.footer h4 {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.9375rem;
  color: rgba(17, 17, 17, 0.75);
}
.footer ul {
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.footer ul li {
  display: block;
  font-size: 0.9rem;
}
.footer ul li a {
  color: #666666;
}
.footer ul li a:hover {
  color: rgba(17, 17, 17, 0.75);
}

.showcase {
  height: 100vh;
  overflow: hidden;
}
.showcase .showcase-slide {
  display: none;
}
.showcase .showcase-slide .showcase-box {
  position: relative;
  height: calc(75vh - 11.5rem);
  margin-bottom: 1rem;
  padding: 1rem 0.5rem 1rem 1rem;
  border: 1px solid #CCCCCC;
  overflow: hidden;
}
.showcase .showcase-slide .showcase-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F0F0F0;
  -webkit-mask-image: url("../images/vig-ai.svg");
          mask-image: url("../images/vig-ai.svg");
  -webkit-mask-position: 130% 50%;
          mask-position: 130% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 60%;
          mask-size: 60%;
}
.showcase .showcase-slide .showcase-box .box-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-right: 0.5rem;
  overflow: auto;
}
.showcase .showcase-slide .showcase-box .box-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.showcase .showcase-slide .showcase-box .box-content p {
  font-size: 1rem;
  padding-right: 50%;
}
.showcase .showcase-slide .showcase-tip {
  position: relative;
  display: block;
  height: calc(25vh - 1rem);
  padding: 1.5rem;
  background: #D70D19;
  border: 1px solid #D70D19;
}
.showcase .showcase-slide .showcase-tip .tip-content {
  padding-left: 20%;
  color: #FFFFFF;
  background-color: #D70D19;
  background-image: url("../icons/showcase/custom-question.svg");
  background-position: 3% 0;
  background-repeat: no-repeat;
  background-size: auto 75%;
}
.showcase .showcase-slide .showcase-tip .tip-content h2 {
  color: #FFFFFF;
}
.showcase .showcase-slide .showcase-tip .tip-content p {
  margin-bottom: 0.75rem;
}
.showcase .showcase-slide .showcase-list {
  position: relative;
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.showcase .showcase-slide .showcase-list li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1rem;
  width: calc(50% - 0.5rem);
}
.showcase .showcase-slide .showcase-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.showcase .showcase-slide .showcase-list li:nth-child(even) {
  margin-left: 0.5rem;
}
.showcase .showcase-slide .showcase-list li:nth-child(odd) {
  margin-right: 0.5rem;
}
.showcase .showcase-slide .showcase-list li.planned {
  opacity: 0.25;
}
.showcase .showcase-slide .showcase-list .list-item {
  position: relative;
  display: block;
  padding: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-list .list-item p {
  height: calc(33.3333333333vh - 5.625rem);
  font-size: 1rem;
  padding: 1rem;
  margin: 0;
  background-color: #F0F0F0;
}
.showcase .showcase-slide .showcase-list .list-item p:hover {
  background-color: #E6E6E6;
}
.showcase .showcase-slide .showcase-list .list-item p strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem {
  position: relative;
  font-size: 0;
  overflow: hidden;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional {
  position: relative;
  display: inline-block;
  vertical-align: top;
  height: calc(100vh - 11.5rem);
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect .ecosystem-items,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items {
  position: relative;
  height: 100%;
  padding: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items h2,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect .ecosystem-items h2,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items h2,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items h2 {
  font-size: 2rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items h2 em,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect .ecosystem-items h2 em,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items h2 em,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items h2 em {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-style: normal;
  vertical-align: middle;
  padding-left: 2rem;
  color: #666666;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items h2 em::before,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect .ecosystem-items h2 em::before,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items h2 em::before,
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items h2 em::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../icons/chevron-right.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary {
  width: calc(23% - 0.75rem);
  padding: 0.5rem;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items {
  background-color: #F0F0F0;
  transition: all 0.4s;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services {
  position: absolute;
  top: 8rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  font-size: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5rem;
  transition: all 0.4s;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item:hover {
  cursor: zoom-in;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure {
  min-height: 7.5rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .icon {
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: #CCCCCC;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .icon.email {
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url("../icons/showcase/primary-email.svg");
          mask-image: url("../icons/showcase/primary-email.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .icon.call {
  -webkit-mask-size: 90%;
          mask-size: 90%;
  -webkit-mask-image: url("../icons/showcase/primary-call.svg");
          mask-image: url("../icons/showcase/primary-call.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .icon.chat {
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url("../icons/showcase/primary-chat.svg");
          mask-image: url("../icons/showcase/primary-chat.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure figcaption {
  position: absolute;
  top: 0.125rem;
  left: 5rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 1.625rem;
  padding-bottom: 0.5rem;
  color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .toggle {
  position: absolute;
  z-index: 1;
  bottom: 0.75rem;
  left: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .toggle span {
  background-color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .toggle input:checked + span {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .tooltip {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.5rem;
  background-color: #CCCCCC;
  border-radius: 1.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item figure .tooltip i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item .button {
  width: 100%;
  text-align: center;
  margin: 0.625rem 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item.active figure {
  border-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item.active figure .icon {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item.active figure figcaption {
  color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-services .services-item.active figure .tooltip {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-ai {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  margin-top: 6rem;
  padding: 1rem;
  background-color: #F0F0F0;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-ai figcaption {
  font-size: 0.875rem;
  color: #666666;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-primary .ecosystem-items .items-ai figcaption strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect {
  position: relative;
  z-index: 1;
  width: 1rem;
  padding: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  background-color: #e68374;
  border-radius: 0.625rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-connect::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  -webkit-mask-image: url("../icons/plus.svg");
          mask-image: url("../icons/plus.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: 50%;
          mask-size: 50%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory {
  width: calc(23% - 0.75rem);
  padding: 0.5rem;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items {
  transition: all 0.4s;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items:hover {
  background-color: #F0F0F0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services {
  position: absolute;
  top: 8rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  font-size: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure {
  min-height: 7.5rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .icon {
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: #CCCCCC;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .icon.app {
  -webkit-mask-image: url("../icons/showcase/mandatory-app.svg");
          mask-image: url("../icons/showcase/mandatory-app.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .icon.phone {
  -webkit-mask-image: url("../icons/showcase/mandatory-phone.svg");
          mask-image: url("../icons/showcase/mandatory-phone.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .icon.data {
  -webkit-mask-image: url("../icons/showcase/mandatory-data.svg");
          mask-image: url("../icons/showcase/mandatory-data.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .icon.record {
  -webkit-mask-image: url("../icons/showcase/mandatory-record.svg");
          mask-image: url("../icons/showcase/mandatory-record.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure figcaption {
  position: absolute;
  top: 0.125rem;
  left: 5rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .toggle {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .toggle span {
  background-color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .toggle input:checked + span {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .tooltip {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.5rem;
  background-color: #CCCCCC;
  border-radius: 1.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item figure .tooltip i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.disabled {
  opacity: 0.5;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.disabled figure .toggle {
  opacity: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.disabled::after::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: not-allowed;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.active figure {
  border-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.active figure .icon {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.active figure figcaption {
  color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-mandatory .ecosystem-items .items-services .services-item.active figure .tooltip {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional {
  width: calc(54% - 0.5rem);
  padding: 0.5rem;
  border: 1px dashed #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items {
  transition: all 0.4s;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items:hover {
  background-color: #F0F0F0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services {
  position: absolute;
  top: 8rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  font-size: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item {
  position: relative;
  display: inline-block;
  width: 33.3333333333%;
  padding: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure {
  min-height: 7.5rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon {
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: #CCCCCC;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.ai {
  -webkit-mask-image: url("../icons/showcase/optional-ai.svg");
          mask-image: url("../icons/showcase/optional-ai.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.analytics {
  -webkit-mask-image: url("../icons/showcase/optional-analytics.svg");
          mask-image: url("../icons/showcase/optional-analytics.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.blacklist {
  -webkit-mask-image: url("../icons/showcase/optional-blacklist.svg");
          mask-image: url("../icons/showcase/optional-blacklist.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.capacity {
  -webkit-mask-image: url("../icons/showcase/optional-capacity.svg");
          mask-image: url("../icons/showcase/optional-capacity.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.reporting {
  -webkit-mask-image: url("../icons/showcase/optional-reporting.svg");
          mask-image: url("../icons/showcase/optional-reporting.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.transcript {
  -webkit-mask-image: url("../icons/showcase/optional-transcript.svg");
          mask-image: url("../icons/showcase/optional-transcript.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.wallboard {
  -webkit-mask-image: url("../icons/showcase/optional-wallboard.svg");
          mask-image: url("../icons/showcase/optional-wallboard.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .icon.warehouse {
  -webkit-mask-image: url("../icons/showcase/optional-warehouse.svg");
          mask-image: url("../icons/showcase/optional-warehouse.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure figcaption {
  position: absolute;
  top: 0.125rem;
  left: 5rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .toggle {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .toggle span {
  background-color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .toggle input:checked + span {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .tooltip {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.5rem;
  background-color: #CCCCCC;
  border-radius: 1.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item figure .tooltip i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.disabled {
  opacity: 0.5;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.disabled figure .toggle {
  opacity: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.disabled::after::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: not-allowed;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.active figure {
  border-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.active figure .icon {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.active figure figcaption {
  color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item.active figure .tooltip {
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item .tooltip-content {
  position: absolute;
  top: 25%;
  right: 90%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border: 1px solid #CCCCCC;
  background-color: #F0F0F0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item .tooltip-content h4 {
  margin-bottom: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item .tooltip-content p, .showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item .tooltip-content ul {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item .tooltip-content p li, .showcase .showcase-slide .showcase-ecosystem .ecosystem-optional .ecosystem-items .items-services .services-item .tooltip-content ul li {
  font-size: 0.75rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 11.5rem);
  padding: 0.5rem;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs {
  position: relative;
  padding: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul {
  display: block;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li {
  display: inline-block;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li a {
  position: relative;
  display: block;
  font-size: 1.25rem;
  width: 8rem;
  height: 4rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li a:hover {
  color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li:first-child {
  border-right: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li:last-child {
  border-left: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li.hidden {
  display: none;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li.active {
  border-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-tabs ul li.active a {
  color: #FFFFFF;
  background-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .tab-item.hidden {
  display: none;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  width: 10%;
  z-index: 1;
  padding: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% - 0.5rem);
  width: 1rem;
  border-top: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure {
  display: block;
  position: relative;
  height: 100%;
  min-height: 6rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure figcaption {
  font-size: 1.25rem;
  font-weight: 600;
  color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.main {
  width: 50%;
  background-color: #D70D19;
  border-color: #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto 50%;
          mask-size: auto 50%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.main.email::after {
  -webkit-mask-image: url("../icons/showcase/primary-email.svg");
          mask-image: url("../icons/showcase/primary-email.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.main.call::after {
  -webkit-mask-image: url("../icons/showcase/primary-call.svg");
          mask-image: url("../icons/showcase/primary-call.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.main.chat::after {
  -webkit-mask-image: url("../icons/showcase/primary-chat.svg");
          mask-image: url("../icons/showcase/primary-chat.svg");
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.main figcaption {
  display: none;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item figure.optional {
  border-style: dashed;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item:first-child {
  width: 20%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item:first-child::before {
  right: auto;
  left: 50%;
  width: calc(50% - 0.5rem);
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-flow .flow-item.hidden {
  display: none;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0;
  margin-top: 2rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend .extend-ai {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 15%;
  padding: 0.5rem;
  margin-left: 20%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend .extend-ai::before {
  content: "";
  position: absolute;
  right: 115%;
  bottom: 50%;
  height: 9rem;
  border-left: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend .extend-ai::after {
  content: "";
  position: absolute;
  right: calc(100% - 0.5rem);
  bottom: 50%;
  width: calc(15% + 0.5rem);
  border-top: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend .extend-ai figure {
  display: block;
  position: relative;
  height: 100%;
  min-height: 6rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border: 1px dashed #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend .extend-ai figure figcaption {
  font-size: 1.25rem;
  font-weight: 600;
  color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-extend.hidden {
  display: none;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-addon {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-addon .addon-item {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  width: 10%;
  z-index: 1;
  padding: 0.5rem;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-addon .addon-item figure {
  display: block;
  position: relative;
  height: 100%;
  min-height: 6rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-addon .addon-item figure figcaption {
  font-size: 1.25rem;
  font-weight: 600;
  color: #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-addon .addon-item figure.optional {
  border-style: dashed;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-addon .addon-item.hidden {
  display: none;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail .detail-close a {
  position: relative;
  display: block;
  width: 4rem;
  height: 4rem;
  text-indent: -9999px;
  background-color: #D70D19;
  -webkit-mask-image: url("../icons/close.svg");
          mask-image: url("../icons/close.svg");
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 50%;
          mask-size: 50%;
}
.showcase .showcase-slide .showcase-ecosystem .ecosystem-detail.active {
  display: block;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail {
  display: none;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 11.5rem);
  background-color: rgba(255, 255, 255, 0.75);
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper {
  position: absolute;
  z-index: 2;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 30rem;
  padding: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-content {
  position: relative;
  padding: 1rem;
  background-color: #F0F0F0;
  border: 1px solid #CCCCCC;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-content h4 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-content p, .showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-content ul {
  margin-bottom: 1rem;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-content ul li {
  line-height: 1.5;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  transform: translate(50%, -50%);
  background-color: #D70D19;
  border: 1px solid #D70D19;
}
.showcase .showcase-slide .showcase-ecosystem .tooltip-detail .detail-wrapper .wrapper-close a {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  text-indent: -9999px;
  background-color: #FFFFFF;
  -webkit-mask-image: url("../icons/close.svg");
          mask-image: url("../icons/close.svg");
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 50%;
          mask-size: 50%;
}
.showcase .showcase-slide .showcase-contact {
  position: relative;
  height: calc(100vh - 11.5rem);
  margin-bottom: 1rem;
  padding: 1rem 0.5rem 1rem 1rem;
  border: 1px solid #CCCCCC;
  overflow: hidden;
}
.showcase .showcase-slide .showcase-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F0F0F0;
  -webkit-mask-image: url("../images/vig-ai.svg");
          mask-image: url("../images/vig-ai.svg");
  -webkit-mask-position: 130% 50%;
          mask-position: 130% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 60%;
          mask-size: 60%;
}
.showcase .showcase-slide .showcase-contact .contact-content {
  position: relative;
  z-index: 1;
  padding-right: 55%;
}
.showcase .showcase-slide .showcase-contact .contact-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.showcase .showcase-slide .showcase-contact .contact-content p {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.showcase .showcase-slide .showcase-contact .contact-content p span {
  display: inline-block;
  padding-top: 0.5rem;
}
.showcase .showcase-slide.active {
  display: block;
}
.showcase .showcase-control {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  font-size: 0;
}
.showcase .showcase-control .control-info {
  position: relative;
  vertical-align: top;
  width: 16rem;
  height: 4rem;
  margin-right: 2rem;
  border: 1px solid #D70D19;
  background-color: #D70D19;
}
.showcase .showcase-control .control-info span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  font-size: 1.25rem;
  text-align: center;
  color: #FFFFFF;
}
.showcase .showcase-control .control-info.hidden {
  display: none;
}
.showcase .showcase-control .control-info.visible {
  display: inline-block;
}
.showcase .showcase-control .control-prev,
.showcase .showcase-control .control-next {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 4rem;
  height: 4rem;
  border: 1px solid #D70D19;
}
.showcase .showcase-control .control-prev::after,
.showcase .showcase-control .control-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.showcase .showcase-control .control-prev.disabled,
.showcase .showcase-control .control-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.showcase .showcase-control .control-prev {
  margin-right: 2rem;
  background-color: #FFFFFF;
}
.showcase .showcase-control .control-prev::after {
  background-color: #D70D19;
  -webkit-mask-image: url("../icons/arrow-left.svg");
          mask-image: url("../icons/arrow-left.svg");
}
.showcase .showcase-control .control-next {
  background-color: #D70D19;
}
.showcase .showcase-control .control-next::after {
  background-color: #FFFFFF;
  -webkit-mask-image: url("../icons/arrow-right.svg");
          mask-image: url("../icons/arrow-right.svg");
}

#slide-1 {
  --transition: 0.6s;
  --delay-step: 0.8s;
}
#slide-1 .showcase-box {
  opacity: 0;
  transform: translateX(-50%);
  transition: all linear var(--transition);
}
#slide-1 .showcase-tip {
  opacity: 0;
  transform: translateY(100%);
  transition: all linear calc(1 * var(--transition));
}
#slide-1 .showcase-list li .list-item {
  opacity: 0;
  transform: translateY(25%);
  transition: opacity linear calc(0.5 * var(--transition)), transform linear calc(0.75 * var(--transition));
}
#slide-1 .showcase-list li:nth-child(1) .list-item {
  transition-delay: calc(0.75 * var(--delay-step));
}
#slide-1 .showcase-list li:nth-child(2) .list-item {
  transition-delay: calc(1.5 * var(--delay-step));
}
#slide-1 .showcase-list li:nth-child(3) .list-item {
  transition-delay: calc(2.25 * var(--delay-step));
}
#slide-1 .showcase-list li:nth-child(4) .list-item {
  transition-delay: calc(3 * var(--delay-step));
}
#slide-1 .showcase-list li:nth-child(5) .list-item {
  transition-delay: calc(3.75 * var(--delay-step));
}
#slide-1 .showcase-list li:nth-child(6) .list-item {
  transition-delay: calc(4.5 * var(--delay-step));
}
#slide-1 .showcase-list li:nth-child(8) .list-item {
  transition-delay: calc(5.25 * var(--delay-step));
}
#slide-1.animation .showcase-box {
  opacity: 1;
  transform: translateX(0);
}
#slide-1.animation .showcase-tip {
  opacity: 1;
  transform: translateY(0);
}
#slide-1.animation .showcase-list li .list-item {
  opacity: 1;
  transform: translateY(0);
}

#slide-2 {
  --transition: 0.6s;
  --delay-step: 0.8s;
}
#slide-2 .ecosystem-primary {
  opacity: 0;
  transform: translateX(-50%);
  transition: all linear var(--transition);
}
#slide-2 .ecosystem-connect {
  opacity: 0;
  transition: all linear var(--transition);
}
#slide-2 .ecosystem-mandatory {
  opacity: 0;
  transform: translateX(25%);
  transition: all linear var(--transition);
}
#slide-2 .ecosystem-optional {
  opacity: 0;
  transform: translateX(50%);
  transition: all linear var(--transition);
}
#slide-2.animation .ecosystem-primary {
  opacity: 1;
  transform: translateX(0);
}
#slide-2.animation--second .ecosystem-primary {
  opacity: 1;
  transform: translateX(0);
}
#slide-2.animation--second .ecosystem-connect {
  opacity: 1;
  transition-delay: calc(1.5 * var(--delay-step));
}
#slide-2.animation--second .ecosystem-mandatory {
  opacity: 1;
  transform: translateX(0);
}
#slide-2.animation--second .ecosystem-optional {
  opacity: 1;
  transform: translateX(0);
}