.scxx .form-element-input-container {
   position: relative;
   display: flex;
}

.scxx .form-element-input-container input {
   width: 100%;
   padding: 5px 10px;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 1rem;
   font-family: "Outfit";
   margin: 5px 0;
}

.scxx .form-element-input-container input.has-icon {
   margin-left: 28px;
   border-radius: 0 4px 4px 0;
}

.scxx .rounded .form-element-input-container input {
   border-radius: 30px;
}

.scxx .grey-input .form-element-input-container input {
   border: 0px;
   background: #f5f7fb;
}

.scxx .form-element-icon {
   position: absolute;
   background: #f7f9fc;
   border: 1px solid #d8d8d8;
   border-radius: 13px 0 0 15px;
   border-width: 1px 0 1px 1px;
   left: 0px;
   top: 5px;
   bottom: 5px;
   display: flex;
   align-items: center;
   padding: 0 6px;
   box-sizing: border-box;
}

.scxx .inline-submit {
   margin: auto 0;
   padding: 5px;
   border-radius: 0 4px 4px 0;
   transform: translateX(-2px);
}

.scxx .text-input-password-view {
   background: none;
   position: absolute;
   right: 0px;
   color: #a0c6dd;
   font-size: 1.3rem;
   padding: 3px;
}

.scxx .text-input-password-view:hover {
   background: none;
   color: var(--s-blue);
}

.scxx .text-input-password-view:before {
   content: "\e81b";
   font-family: "icons";
}

.scxx .padded .form-element-input-container {
   box-shadow: 0px 4px 10px 2px rgb(161 190 226 / 31%);
   background: #fff;
   padding: 6px 0 3px 6px;
   border-radius: 4px;
   margin: 10px 0 0 0;
}

.scxx .form-element-input-container input:focus {
   outline: none;
   border-color: var(--s-blue);
   box-shadow: 0 0 2px var(--s-blue);
}

.scxx .invalid .form-element-input-container input {
   border-bottom: 2px solid var(--s-red);
   border-radius: 4px 4px 0 0;
}

.scxx .select-component-container {
   display: flex;
   justify-content: space-between;
   padding: 5px 8px;
   background: #fff;
   border-radius: 4px;
   margin: 4px;
   box-shadow: 2px 1px 3px #dcdcdc;
   flex-wrap: wrap;
   position: relative;
   font-family: "Outfit";
}

.scxx .select-component.inlineLabel {
   display: flex;
   align-items: center;
}

.scxx .select-component-container.buttons {
   background: none;
}

.scxx .select-component-button {
   position: relative;
}

.scxx .tiles .select-component-button {
   width: 150px;
   white-space: normal;
}

.scxx .select-component.vertical .select-component-button-container,
.scxx .small-buttons.vertical .select-component-button-container,
.scxx .medium-buttons.vertical .select-component-button-container,
.scxx .large-buttons.vertical .select-component-button-container {
   flex-direction: column;
   width: 100%;
}

.scxx .small-buttons .select-component-button,
.scxx .medium-buttons .select-component-button,
.scxx .large-buttons .select-component-button {
   border: 0px solid #d0dbec;
   background: #fff;
   padding: 10px;
   font-size: 1.1rem;
   color: var(--s-blue-dark);
   box-shadow: 0px 4px 10px 2px rgb(161 190 226 / 31%);
   max-width: 450px;
   border-radius: 9px;
   flex-grow: 1;
   white-space: normal;
}

.scxx .small-buttons .select-component-button {
   border-radius: 5px;
}

.scxx .small-buttons .select-component-button:hover,
.scxx .medium-buttons .select-component-button:hover,
.scxx .large-buttons .select-component-button:hover {
   color: #6e5098;
   box-shadow: 0px 3px 5px 2px rgb(161 190 226 / 41%);
}

.scxx .small-buttons .select-component-button-icon,
.scxx .medium-buttons .select-component-button-icon,
.scxx .large-buttons .select-component-button-icon {
   opacity: 1;
   text-align: center;
   left: 6px;
   width: auto;
}

.scxx .small-buttons .select-component-button-icon {
   padding: 3px;
}

.scxx .small-buttons .select-component-button-icon:before,
.scxx .medium-buttons .select-component-button-icon:before,
.scxx .large-buttons .select-component-button-icon:before {
   line-height: 40px;
   background: #c6ddee;
   border-radius: 50px;
   width: 45px;
   height: 45px;
   line-height: 45px;
   color: #fff;
   display: block;
   font-size: 1.8rem;
   margin: auto;
   box-shadow: inset 2px 1px 3px rgb(0 0 0 / 6%);
}

.scxx .small-buttons .select-component-button-icon:before {
   width: 26px;
   height: 26px;
   line-height: 28px;
   font-size: 1.2rem;
}

.scxx .medium-buttons .select-component-button-icon:before {
   width: 35px;
   height: 35px;
   line-height: 37px;
   font-size: 1.4rem;
}

.scxx .medium-buttons .select-component-button:hover .select-component-button-icon,
.scxx .large-buttons .select-component-button:hover .select-component-button-icon {
   font-size: 2rem;
}

.scxx .small-buttons .select-component-button:hover .select-component-button-icon {
   font-size: 1.5rem;
}

.scxx .small-buttons .select-component-button.selected,
.scxx .medium-buttons .select-component-button.selected,
.scxx .large-buttons .select-component-button.selected {
   color: var(--s-green);
   border: 1px solid var(--s-green);
   background: #fff;
}

.scxx .small-buttons .select-component-button.selected:after,
.scxx .medium-buttons .select-component-button.selected:after,
.scxx .large-buttons .select-component-button.selected:after {
   content: "\e80e";
   font-family: "icons";
   position: absolute;
   right: 3px;
   top: 2px;
   background: var(--s-green);
   color: #fff;
   font-weight: 400;
   font-size: 0.8rem;
   border-radius: 33px;
   width: 17px;
   height: 17px;
   line-height: 18px;
   text-align: center;
}

.scxx .small-buttons .select-component-button.selected:hover,
.scxx .medium-buttons .select-component-button.selected:hover,
.scxx .large-buttons .select-component-button.selected:hover {
   background: #fff;
   color: var(--s-green);
}

.scxx .medium-buttons button.select-component-button.select-component-action {
   margin: 6px;
   min-height: 60px;
}

.scxx .large-buttons button.select-component-button.select-component-action {
   margin: 8px;
   min-height: 80px;
}

.scxx .small-buttons.mobile-menu .select-component-button {
   box-shadow: none;
   text-align: left;
}

.scxx .small-buttons.mobile-menu .select-component-button:hover {
   background: #f8f4ff;
}

.scxx .white .select-component-button {
   background: #fff;
}

.scxx .white .select-component-button:hover {
   background: #fff;
}

.scxx .tiles .select-component-button.selected {
   background: #fff;
   color: var(--s-green);
   border: 1px solid var(--s-green);
}

.scxx .tiles .select-component-button.selected:after {
   content: "\e80e";
   font-family: "icons";
   position: absolute;
   right: 1px;
   bottom: 1px;
   border-width: 2px 0 0 2px;
   border-radius: 15px;
   color: #fff;
   background: var(--s-green);
   padding: 4px;
   font-size: 12px;
}

.scxx .select-component-button-subtext {
   white-space: normal;
   font-weight: normal;
   color: #6b8ab1;
   margin-top: 10px;
}

.scxx .medium-buttons .select-component-button-subtext {
   margin-top: 4px;
}

.scxx .select-component-button.has-icon {
   padding-left: 45px !important;
}

.scxx .tiles .select-component-button.has-icon {
   padding-left: 60px !important;
}

.scxx .ui-tooltip.no-padding .select-component-container,
.scxx .step-modal-content.no-padding.inline .select-component-container {
   box-shadow: none;
   margin: 0;
}

.scxx .type-picker .select-component-container {
   width: 320px;
   min-height: 22px;
}

.scxx .type-button .select-component-container {
   box-shadow: none;
}

.scxx .select-component-container.inline {
   padding: 4px 0px 0px 0px;
   margin: 0;
   justify-content: center;
}

.scxx .full-width .select-component-container,
.scxx .select-component-container.full-width {
   width: 100%;
}

.scxx .inline .select-component-input-container {
   padding: 3px 0 0 9px;
   box-sizing: border-box;
}

.scxx .select-component-input-container {
   flex: 0 0 100%;
   display: flex;
   justify-content: space-between;
   position: relative;
}

.scxx .select-component-input-container.searching:after {
   content: "\f110";
   font-family: "icons";
   animation: scxx-spin 2.2s infinite linear;
   display: inline-block;
   height: 22px;
   font-size: 21px;
   margin-right: 6px;
   color: var(--s-purple);
}

.scxx .select-component .icon-search:before {
   margin-right: 4px;
   transform: translateY(7px);
}

.scxx .select-component-input[type="text"] {
   border: 3px solid #ddd;
   border-width: 0 0 3px 0;
   border-radius: 0;
   margin: 0 0 0 4px;
   padding: 3px 1px;
   font-family: "Outfit";
   transition: all 0.2s;
   flex-grow: 1;
}

.scxx .select-component-input::placeholder {
   color: var(--s-grey-text);
}

.scxx .select-component-input:focus {
   outline: none;
   border-color: var(--s-purple);
}

.scxx .select-component-input.upper-case {
   text-transform: uppercase;
}

.scxx .select-component-input.upper-case::placeholder {
   text-transform: none;
}

.scxx .select-component-selector {
   position: absolute;
   top: calc(100% - 1px);
   left: 0;
   width: 100%;
   background: #fff;
   z-index: 2;
   box-shadow: 2px 1px 3px #dcdcdc;
   max-height: 300px;
   overflow-y: auto;
   overflow-x: hidden;
}

.scxx .inline .select-component-selector {
   position: relative;
   margin-top: 6px;
   top: auto;
   box-shadow: none;
}

.scxx .select-component-selector::-webkit-scrollbar {
   width: 10px;
}

.scxx .select-component-selector::-webkit-scrollbar-track {
   background: #f2f5f9;
}

.scxx .select-component-selector::-webkit-scrollbar-thumb {
   background: #dee1e3;
   border-radius: 20px;
}

.scxx .select-component-filter-container {
   display: flex;
   flex-wrap: wrap;
   background: #f4f5f9;
   width: 100%;
   padding: 4px 8px;
}

.scxx .select-component-filter-container:before {
   content: "\f0b0";
   font-family: "icons";
   margin: 0 15px 0 0;
}

.scxx .select-component-filter-label {
   text-transform: none;
   background: #fff;
   color: #666;
}

.scxx .select-component-filter-label:hover {
   background: #fff;
   color: var(--s-purple);
}

.scxx .select-component-filter-label.selected,
.scxx .select-component-filter-label.selected:hover {
   background: var(--s-green);
   color: #fff;
}

.scxx .deselect-option {
   color: #aaa;
}

.scxx .ripple {
   position: relative;
   overflow: hidden;
}

.scxx .ripple .ripple-animation {
   position: absolute;
   border-radius: 50%;
   background-color: rgb(203 191 241 / 30%);
   width: 100px;
   height: 100px;
   margin-top: -50px;
   margin-left: -50px;
   animation: ripple 1000ms;
   opacity: 0;
   pointer-events: none;
}

@keyframes ripple {
   from {
      opacity: 1;
      transform: scale(0);
   }
   to {
      opacity: 0;
      transform: scale(4.5);
   }
}

.scxx .select-component-result-none {
   color: #888;
   padding: 9px 8px 5px 8px;
}

.scxx .select-component-result-none:before {
   content: "\f12a";
   font-family: "icons";
   margin-right: 8px;
   color: #bbb;
   font-weight: 400;
}

.scxx .select-component-result {
   position: relative;
   padding: 3px 6px 3px 8px;
   display: flex;
   justify-content: space-between;
   cursor: pointer;
   box-sizing: border-box;
   --ripple-background: #cbbff1;
   --ripple-opacity: 0.3;
   --ripple-duration: 600ms;
}

.scxx .icons-on .select-component-result {
   padding-left: 32px;
}

.scxx .select-component-result.selectable:hover,
.scxx .select-component-result.selectable:focus,
.scxx .select-component-result.selectable.selected {
   background: #f4f5f9;
   font-weight: bold;
   border-radius: 2px;
   cursor: pointer;
}

.scxx .select-component-result.selectable.selected {
   background: #f9fbf8;
   color: #78a53c;
}

.scxx .select-component-result-actions {
   display: flex;
   flex-wrap: wrap;
   justify-content: end;
}

.scxx .select-component-result-actions:empty {
   display: none;
}

.scxx .select-component-result-icon {
   position: absolute;
   left: 5px;
   top: 0;
   width: 25px;
   text-align: center;
   font-size: 1.25rem;
   opacity: 0.5;
   display: flex;
   align-items: center;
   height: 100%;
}
.scxx .select-component-result-icon:before {
   margin-right: 0;
   display: block;
   width: 100%;
}

.scxx .select-component-result-label {
   align-items: center;
   display: flex;
   width: 100%;
   justify-content: space-between;
   text-align: left;
}

.scxx .select-component-result-secondary-label {
   background: #f0f6f8;
   padding: 0 6px;
   border-radius: 10px;
   color: #76abde;
   text-align: right;
}

.scxx .select-component-results {
   width: 100%;
   background: #fff;
}

.scxx .inline .select-component-results {
   position: relative;
}

.scxx .select-component-results-indicator {
   color: #9ec3d8;
   background: #fff;
   border-radius: 22px;
   padding: 2px 0 0 0;
   width: 22px;
   height: 22px;
   text-align: center;
}

.scxx .select-component-results-indicator:before {
   content: " ";
   font-family: "icons";
   width: 14px;
   display: inline-block;
}

.scxx .select-component-result.selected .select-component-results-indicator:before {
   content: "\e80e";
   color: var(--s-green);
   font-size: 0.95rem;
}

.scxx .select-component-results-indicator.folder:before {
   content: "\e82e";
}

.scxx .select-component-result:hover .select-component-results-indicator:before {
   content: "\e80e";
   color: var(--s-blue);
   font-size: 0.95rem;
}

.scxx .select-component-result:hover .select-component-results-indicator.folder:before {
   content: "\e82f";
}

.scxx .select-component-results-folder:after {
   content: "\e82e";
   font-family: "icons";
   color: #9ec3d8;
   width: 15px;
   margin-left: 4px;
   display: inline-block;
}

.scxx .select-component-result:hover .select-component-results-folder:after {
   content: "\e82f";
}

.scxx button.select-component-results-folder:hover:after {
   content: "\e80e" !important;
   color: var(--s-blue);
}

.scxx button.select-component-results-folder {
   width: auto;
   text-transform: none;
   font-weight: 400;
   font-size: 0.95rem;
   margin: 0;
   padding: 2px 4px;
   color: #6b85ae;
   background: #edf4f7;
}

.scxx button.select-component-results-folder:hover {
   background: #fff;
   color: var(--s-blue);
}

.scxx .select-component-browser-back {
   background-color: var(--s-purple);
   border-radius: 0 4px 4px 0;
   padding: 1px 6px;
   margin: 5px 0px;
}

.scxx .select-component-browser-back:before {
   content: "\f007";
   font-family: "icons";
   margin-right: 9px;
}

.scxx .select-component-browser-back:hover:focus {
   border: 0px;
}

.scxx .depth-1,
.scxx .depth-2,
.scxx .depth-3,
.scxx .depth-4,
.scxx .depth-5,
.scxx .depth-6,
.scxx .depth-7,
.scxx .depth-8 {
   border-left: 2px solid #ddd;
}

.scxx .depth-1 {
   margin-left: 20px;
}

.scxx .depth-2 {
   margin-left: 40px;
}

.scxx .depth-3 {
   margin-left: 60px;
}

.scxx .depth-4 {
   margin-left: 80px;
}

.scxx .depth-5 {
   margin-left: 100px;
}

.scxx .depth-6 {
   margin-left: 120px;
}

.scxx .depth-7 {
   margin-left: 140px;
}

.scxx .depth-8 {
   margin-left: 160px;
}

.scxx .select-component-checklist-container {
   width: 100%;
}

.scxx .horizontal .select-component-checklist-container {
   display: flex;
   flex-wrap: wrap;
}

.scxx .horizontal .select-component-checklist-item {
   width: auto;
   margin-right: 15px;
}

.scxx .select-component-checklist-item {
   width: 100%;
   cursor: pointer;
}

.scxx .select-component-checklist-item:before {
   width: 15px;
   display: inline-block;
   content: "\f096";
   font-family: "icons";
   margin: 0 6px;
   color: #999;
}

.scxx .select-component-checklist-item:hover {
   background: #f4f5f9;
}

.scxx .select-component-checklist-item.selected:before {
   color: var(--s-green);
   content: "\e84c";
}

/* Toggle  */

.scxx .select-component-toggle,
.scxx .select-component-toggle *,
.scxx .select-component-toggle *::before,
.scxx .select-component-toggle *::after {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

.scxx .select-component-toggle {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   width: 20px;
   height: 20px;
   flex-shrink: 0;
   margin-right: 10px;
   border-radius: 5px;
   background: #fff;
   border: 1px solid #ccc;
   -webkit-transition: all 0.3s;
   -o-transition: all 0.3s;
   transition: all 0.3s;
   cursor: pointer;
   position: relative;
}

.scxx .select-component-toggle::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   -webkit-box-shadow: 0 0 0 calc(20px / 2.5) var(--s-blue);
   box-shadow: 0 0 0 calc(20px / 2.5) var(--s-blue);
   border-radius: inherit;
   opacity: 0;
   -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
   -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
   transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.scxx .select-component-toggle::before {
   top: 40%;
   left: 50%;
   content: "";
   position: absolute;
   width: 4px;
   height: 7px;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
   -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
   transform: translate(-50%, -50%) rotate(45deg) scale(0);
   opacity: 0;
   -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
   -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
   transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

.scxx input + label.select-component-action:before {
   display: none;
}

.scxx .select-component-toggle-label {
   text-align: left;
}

/* Select component toggle */
.scxx .select-component-container.boolean {
   justify-content: flex-start;
   background: none;
   box-shadow: none;
}

.scxx .select-component-container label {
   display: flex;
}

.scxx .select-component-container.boolean input {
   display: none;
}

.scxx .select-component-toggle:hover {
   border-color: var(--s-blue);
}

.scxx input:checked + label .select-component-toggle {
   background: var(--s-blue);
   border-color: transparent;
}

.scxx input:checked + label .select-component-toggle::before {
   opacity: 1;
   -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
   -ms-transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
   transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
   -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
   -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
   transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.scxx input:not(checked) + label:active .select-component-toggle::after {
   -webkit-transition: none;
   -o-transition: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   transition: none;
   opacity: 1;
}

/* Select component buttons */

.scxx .select-component-button-container {
   display: flex;
   flex-wrap: wrap;
   margin: auto;
}

.scxx .select-component-button {
   position: relative;
   text-transform: none;
   border-radius: 6px;
   background: #f5f5f5;
   border: 1px solid #f5f5f5;
   color: #000;
   font-size: 0.95rem;
   font-weight: bold;
}

.scxx .capitalize .select-component-button::first-letter {
   text-transform: capitalize;
}

.scxx .icons-on .select-component-button {
   padding: 3px 8px 3px 30px;
}

.scxx .small-buttons .select-component-button {
   padding: 7px 8px 7px 30px;
}

.scxx .select-component-button-icon {
   position: absolute;
   left: 2px;
   top: 0;
   width: 25px;
   text-align: center;
   font-size: 1.25rem;
   opacity: 0.6;
   display: flex;
   align-items: center;
   height: 100%;
}
.scxx .select-component-button-icon:before {
   margin-right: 0;
}

.scxx .select-component-button:hover {
   background: #fcfcfc;
   border-color: var(--s-purple);
   color: var(--s-purple);
}

.scxx .select-component-button.selected {
   background: var(--s-green);
   border: 1px solid var(--s-green);
   color: #fff;
}

.scxx .select-component-button.selected:hover {
   border: 1px solid var(--s-green);
}

.scxx .select-component-button.selected:before {
   color: #fff;
}

.scxx .select-component-selection-panel {
   display: flex;
   justify-content: space-between;
   width: 100%;
}

.scxx .select-component-selection-panel-items {
   display: flex;
   flex-wrap: wrap;
}

.scxx .select-component-selection-panel-item {
   background: #f6f6f6;
   padding: 1px 5px;
   border-radius: 4px;
   margin: 3px 4px 6px;
   box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
}

.scxx .select-component-selection-panel-placeholder {
   color: #aaa;
}

.scxx .select-component-item-deselect {
   background: none;
   color: #ddd;
   padding: 1px 3px;
   margin: 2px;
}

.scxx .select-component-item-deselect:hover {
   background: none;
   color: #000;
}

.scxx .select-component-item-deselect:before {
   content: "\e80f";
   font-family: "icons";
}

.scxx .select-component-selection-panel-items:empty {
   background: #f6f6f6;
   width: 100%;
}

.scxx .select-component-selection {
   width: 100%;
   position: relative;
   padding: 2px 15px 2px 2px;
}

.scxx .select-component-selection:after,
.scxx .show-drop-arrow:after {
   content: "\f0dd";
   font-family: "icons";
   position: absolute;
   right: 4px;
}

.scxx .show-drop-arrow:after {
   top: 9px;
}

.scxx .show-drop-arrow {
   cursor: pointer;
}

.scxx .select-component-selection {
   cursor: pointer;
}

.scxx .select-component-selected-overlay {
   position: absolute;
   background: #f6f4f4;
   left: 19px;
   top: 0px;
   font-size: 1.1rem;
   padding: 3px 6px;
   border-radius: 4px;
}

.scxx .clear-selected-overlay .select-component-selected-overlay {
   background: #fff;
}

.scxx button.select-component-selected-overlay-remove {
   color: #ddd;
   background: none;
   margin: 0;
   padding: 0;
   margin-left: 5px;
}

.scxx .select-component-selected-overlay-remove:before {
   font-family: "icons";
   content: "\e80f";
}

.scxx button.select-component-selected-overlay-remove:hover {
   color: #444;
}

.scxx .select-component-input:focus ~ .select-component-selected-overlay:before {
   content: " ";
   display: inline-block;
   height: 20px;
   border-right: 1px solid #6f6f6f;
   animation: blink 2.4s step-end infinite;
   position: absolute;
   right: -4px;
}

@keyframes blink {
   0%,
   50%,
   100% {
      border-color: transparent; /* Blink on */
   }
   25%,
   75% {
      border-color: #000; /* Blink off */
   }
}

.scxx .inlineLabel .input-text {
   display: flex;
   flex-wrap: wrap;
}

.scxx .inlineLabel .input-text > label {
   margin-right: 12px;
}

.scxx .disableToolbar .ql-editor {
   padding: 0px 6px;
}

.scxx .disableToolbar .ql-editor p {
   margin: 6px 0;
}

.scxx .ql-editor {
   min-height: 70px;
}

.scxx .ql-editor.ql-blank::before {
   font-style: normal !important;
   left: 8px !important;
   top: 8px;
}

.scxx .mapping-form .form-element label,
.scxx .mapping-form.select-component > label,
.scxx .mapping-form > label {
   font-size: 17px;
   font-family: "ceraRound";
   color: var(--s-purple);
}

.scxx .explanation-text {
   background: rgba(255, 255, 255, 0.5);
   padding: 4px 8px;
   border-radius: 6px;
   color: #4e5e85;
}

.scxx .date-component-container-input {
   width: 100%;
}

.scxx .date-component-container input,
.scxx .date-component-container select {
   border-radius: 4px;
   border: 1px solid #ddd;
   padding: 3px 6px;
   box-shadow: 2px 1px 3px #dcdcdc;
   margin: 4px 10px 4px 0;
   max-width: 130px;
}

.scxx .date-component-container select {
   font-family: "Outfit";
   font-size: 1rem;
   padding: 4px 5px;
}

.scxx .date-component-container input:focus,
.scxx .date-component-container select:focus {
   outline: none;
   border: 1px solid var(--focus-border);
   box-shadow: 0px 0px 4px var(--focus-shadow);
}

.scxx .inline-text-editor .ql-toolbar.ql-snow {
   border-width: 0 0 1px 0;
}

.scxx .inline-text-editor .ql-toolbar.ql-snow + .ql-container.ql-snow {
   border: none;
}

.scxx .form-element-textarea-container {
   width: 100%;
}

.scxx .inline-text-editor .form-element-textarea-container {
   margin: 0;
}

.scxx .inline-text-editor .ql-editor {
   padding: 0 4px;
}

.scxx .spinner-ring {
   position: absolute;
   top: 5px;
   right: 5px;
   width: 21px;
   height: 21px;
   border: 3px solid #83c2eb;
   border-bottom-color: transparent;
   border-radius: 50%;
   display: inline-block;
   box-sizing: border-box;
   animation: rotation 1.3s linear infinite;
}

@keyframes rotation {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

.scxx .location-input-status-indicator {
   position: absolute;
   right: 4px;
   top: 4px;
   color: #efefef;
   border: 3px solid #efefef;
   width: 18px;
   height: 18px;
   line-height: 19px;
   border-radius: 20px;
}

.scxx .location-input-status-indicator:before {
   content: "\e80e";
   font-family: "icons";
}

.scxx .location-input-status-indicator.valid {
   color: var(--s-green);
   border-color: var(--s-green);
}

.scxx .location-input-status-indicator.invalid {
   color: var(--s-red);
   border-color: var(--s-red);
   text-align: center;
}

.scxx .location-input-status-indicator.invalid:before {
   content: "\e80f";
}

.scxx .location-input-component-input {
   padding: 7px !important;
   border-radius: 4px !important;
}

.scxx .location-input-component-input:focus {
   border-width: 0 0 3px 0 !important;
   box-shadow: none !important;
}

.scxx .text-input-action-selection-panel {
   display: flex;
   flex-wrap: wrap;
}

.scxx .text-input-add {
   margin: 0;
   padding: 4px 7px;
   border-radius: 0 4px 4px 0;
   transform: translateX(-3px);
}

.scxx .icon-inside .form-element-icon {
   position: absolute;
   left: 10px;
   top: 11px;
   font-size: 1.2rem;
   width: 20px;
   color: #a0c6dd;
}

.scxx .slide-left-out {
   animation: slide-left-out 0.5s forwards ease-in-out;
}

.scxx .slide-left-in {
   animation: slide-left-in 0.5s forwards ease-in-out;
}

.scxx .slide-right-in {
   animation: slide-right-in 0.5s forwards ease-in-out;
}

@keyframes slide-left-out {
   0% {
      transform: translateX(0px);
      opacity: 1;
   }
   100% {
      transform: translateX(-130px);
      opacity: 0;
   }
}

@keyframes slide-left-in {
   0% {
      transform: translateX(130px);
      opacity: 0;
   }
   100% {
      transform: translateX(0px);
      opacity: 1;
   }
}

@keyframes slide-right-in {
   0% {
      transform: translateX(-130px);
      opacity: 0;
   }
   100% {
      transform: translateX(0px);
      opacity: 1;
   }
}

@media screen and (max-width: 450px) {
   .scxx .type-picker .select-component-container {
      width: auto;
   }

   .scxx .select-component-container {
      margin: 4px 0px;
   }
}

.scxx .fade-in {
   animation: scxx-fade-in 0.6s forwards ease-out;
}

.scxx .fade-in-up {
   animation: scxx-fade-in-up 0.6s forwards ease-out;
}

.scxx .fade-in-down {
   animation: scxx-fade-in-down 0.6s forwards ease-out;
}

.scxx .fade-in-left {
   animation: scxx-fade-in-left 0.6s forwards ease-out;
}

.scxx .fade-in-right {
   animation: scxx-fade-in-right 0.6s forwards ease-out;
}

.scxx .fade-out {
   animation: scxx-fade-out 0.6s forwards ease-out;
}

.scxx .fade-out-up {
   animation: scxx-fade-out-up 0.6s forwards ease-out;
}

.scxx .fade-out-down {
   animation: scxx-fade-out-down 0.6s forwards ease-out;
}

.scxx .fade-out-left {
   animation: scxx-fade-out-left 0.6s forwards ease-out;
}

.scxx .fade-out-right {
   animation: scxx-fade-out-right 0.6s forwards ease-out;
}

@keyframes scxx-fade-in {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 1;
   }
}

@keyframes scxx-fade-out {
   0% {
      opacity: 1;
   }
   100% {
      opacity: 0;
   }
}

@keyframes scxx-fade-in-up {
   0% {
      opacity: 0;
      transform: translate(0, 15px);
   }

   100% {
      opacity: 1;
      transform: translate(0, 0px);
   }
}

@keyframes scxx-fade-out-up {
   0% {
      opacity: 1;
      transform: translate(0, 0px);
   }

   100% {
      opacity: 0;
      transform: translate(0, 15px);
   }
}

@keyframes scxx-fade-in-down {
   0% {
      opacity: 0;
      transform: translate(0, 15px);
   }

   100% {
      opacity: 1;
      transform: translate(0, 0px);
   }
}

@keyframes scxx-fade-out-down {
   0% {
      opacity: 1;
      transform: translate(0, 0px);
   }

   100% {
      opacity: 0;
      transform: translate(0, 15px);
   }
}

@keyframes scxx-fade-in-left {
   0% {
      opacity: 0;
      transform: translate(-15px, 0);
   }
   100% {
      opacity: 1;
      transform: translate(0, 0);
   }
}

@keyframes scxx-fade-out-left {
   0% {
      opacity: 1;
      transform: translate(0, 0);
   }
   100% {
      opacity: 0;
      transform: translate(-15px, 0);
   }
}

@keyframes scxx-fade-in-right {
   0% {
      opacity: 0;
      transform: translate(15px, 0);
   }
   100% {
      opacity: 1;
      transform: translate(0, 0);
   }
}

@keyframes scxx-fade-out-right {
   0% {
      opacity: 1;
      transform: translate(0, 0);
   }
   100% {
      opacity: 0;
      transform: translate(15px, 0);
   }
}

.scxx .hide-placeholder {
   opacity: 0;
}

.scxx .angle-in {
   animation: angle-in 0.3s backwards ease-out;
}

@keyframes angle-in {
   0% {
      transform: rotateY(17deg) translate3d(0px, -1px, -18px);
   }
   100% {
      transform: rotateY(0deg) translate3d(0px, 0px, 0px);
   }
}

.scxx .point-circle {
   background: var(--s-purple);
   font-family: "CeraRound";
   font-size: 1.1rem;
   color: #fff;
   text-align: center;
   border-radius: 30px;
   min-width: 25px;
   min-height: 25px;
   line-height: 25px;
}

.scxx .point-circle:hover,
.scxx .point-circle.selected {
   background: var(--s-green);
}

.scxx .location-marker {
   position: relative;
}

.scxx .location-marker:before {
   font-family: "icons";
   content: "\e82c";
   color: var(--s-blue-dark);
   font-size: 30px;
   position: relative;
   top: -35px;
   left: -10px;
}

.scxx .tab-panel-container.panelBlock {
   padding: 10px;
   flex-grow: 1;
   background: var(--s-grey-light);
   border-radius: 6px;
}

.scxx .tab-panel-menu {
   display: flex;
   flex-wrap: wrap;
   margin: 0 0 10px;
}

.scxx .tab-panel-menu.menu-block {
   background: #fff;
   border-radius: 6px;
   box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
   border: 1px solid #eee;
}

.scxx .tab-panel-button-label {
   font-weight: 600;
}

.scxx .tab-panel-button {
   color: #666;
   padding: 4px 8px;
   margin: 5px;
   border-radius: 0;
   border-bottom: 3px solid #fff;
   margin-bottom: 0;
}

.scxx .menuBlock .tab-panel-button {
   background: #fff;
}

.scxx .panelBlock .tab-panel-button {
   background: var(--s-grey-light);
}

.scxx .tab-panel-button.has-icon {
   min-width: 100px;
   border-radius: 6px;
   border-bottom: 0px solid #fff;
   margin-bottom: 3px;
}

.scxx .tab-panel-button.active {
   border-bottom: 3px solid var(--s-blue);
   color: var(--s-blue);
}

.scxx .menuBlock .tab-panel-button.has-icon.active {
   border-bottom: 0px solid var(--s-blue);
   background: var(--s-grey-light);
   color: var(--s-blue-dark);
}

.scxx .panelBlock .tab-panel-button.has-icon.active {
   border-bottom: 0px solid var(--s-blue);
   background: #fff;
   color: var(--s-blue-dark);
}

.scxx .tab-panel-button:hover {
   color: var(--s-blue);
   background: #fff;
}

.scxx .tab-panel-button.has-icon:hover {
   color: var(--s-blue);
   background: var(--s-grey-light);
}

.scxx .tab-panel-button-icon {
   color: var(--s-purple);
}

.scxx .tab-panel-button.active .tab-panel-button-icon {
   color: var(--s-blue-dark);
}

.scxx .tab-panel-content {
   background: #fff;
   border-radius: 0 0 5px 5px;
   padding: 15px 8px 8px 8px;
   border-top: 2px solid var(--s-blue-dark);
}

.scxx .wording-item-container {
   background: var(--s-grey-light);
   padding: 0 8px;
   border-radius: 4px;
   margin: 15px 0px;
}

.scxx .wording-item-display {
   margin: 8px 0;
}

.scxx .interact-flash-message {
   font-size: 1.1rem;
   margin: 10px auto;
   padding: 4px 10px;
   border-radius: 4px;
   color: var(--s-primary);
   background: #fff;
   max-width: 800px;
   box-shadow: 1px 1px 5px 1px rgb(61 112 170 / 12%);
   max-width: 800px;
   display: flex;
   justify-content: space-between;
   min-height: 32px;
   position: relative;
   z-index: 2;
}

.scxx .interact-flash-message-icon {
   display: flex;
   align-items: center;
}

.scxx .interact-flash-message-icon:before {
   content: " ";
   display: block;
   background: var(--s-primary);
   width: 5px;
   height: 100%;
   border-radius: 10px;
   margin-right: 13px;
}

.scxx .interact-flash-message-icon:after {
   content: "\e84a";
   font-family: "icons";
   margin-right: 18px;
   margin-left: 10px;
   background: var(--s-primary);
   color: #fff;
   border-radius: 20px;
   font-size: 0.9rem;
   transform: translate(0px, -1px);
   display: inline-block;
   height: 20px;
   width: 20px;
   box-sizing: border-box;
   text-align: center;
   line-height: 21px;
}

.scxx .interact-flash-message-middle-text {
   margin: auto 0;
}

.scxx .interact-flash-message.success .interact-flash-message-icon:before {
   background: var(--s-green);
}

.scxx .interact-flash-message.success .interact-flash-message-icon:after {
   content: "\e80e";
   background: var(--s-green);
}

.scxx .interact-flash-message.nlp .interact-flash-message-icon:after {
   content: "\e828";
   font-size: 1.3rem;
   width: 30px;
   height: 30px;
   line-height: 30px;
}

.scxx .interact-flash-message.error .interact-flash-message-icon:before {
   background: var(--s-red);
}

.scxx .interact-flash-message.error .interact-flash-message-icon:after {
   color: var(--s-red);
   content: "\f12a";
   background: none;
   font-size: 1.2rem;
   transform: translate(0px, 3px);
}

.scxx .interact-flash-message.error .interact-flash-message-text {
   color: var(--s-red);
}

.scxx .interact-flash-message-text {
   align-items: center;
   display: flex;
   flex-grow: 1;
   font-size: 1rem;
   font-family: "CeraRound";
}

.scxx .nlp-repeat-text {
   font-family: "Outfit";
   color: #444;
}

.scxx .nlp-retry {
   background: #eeee;
   color: #444;
}

.scxx .interact-flash-message-delete {
   display: flex;
   align-items: center;
   cursor: pointer;
   color: #ccc;
   padding: 4px 8px;
}

.scxx .interact-flash-message-delete:hover {
   color: #666;
}

.scxx .interact-flash-message-delete:before {
   content: "\e80f";
   font-family: "icons";
}

.scxx .nlp-component {
   display: flex;
   background: #fff;
   padding: 3px;
   border-radius: 35px;
   align-items: center;
   box-shadow: 2px 2px 3px #dcdcdc87;
   position: relative;
   z-index: 1;
   margin: 20px 0;
   min-width: 220px;
}

.scxx .nlp-input {
   margin: 0 10px;
   flex-grow: 1;
}

.scxx .nlp-input .form-element-input-container input {
   border: 0px;
   padding-right: 45px;
}

.scxx .nlp-input .form-element-input-container input:focus {
   box-shadow: none;
}

.scxx .nlp-button {
   position: relative;
   border-radius: 50%;
   padding: 0;
   background-color: var(--s-green);
   width: 45px;
   height: 45px;
   margin: 0;
   display: flex;
   transition: all 0.4s;
}

.scxx .nlp-button-icon {
   position: absolute;
   left: 12px;
   top: 5px;
   font-size: 2rem;
   z-index: 1;
}

.scxx .nlp-button.listening {
   background-color: crimson;
}

.scxx .nlp-button:before,
.scxx .nlp-button:after {
   --pad: 0rem;
   content: "";
   display: block;
   position: absolute;
   z-index: 0;
   background-color: rgba(220, 20, 60, 0.1);
   top: var(--pad);
   left: var(--pad);
   right: var(--pad);
   bottom: var(--pad);
   border-radius: 50%;
   opacity: 0;
   transition: all 0.3s;
}

.scxx .nlp-button:after {
   transition: 0.5s;
}

.scxx .nlp-button:before {
   transition: 0.2s;
}

.scxx .nlp-button.listening.gain-low:before {
   --pad: 0rem;
   animation: smoothPadBeforeLow 2.5s ease-in alternate-reverse forwards infinite;
   opacity: 1;
}

.scxx .nlp-button.listening.gain-low:after {
   --pad: -2rem;
   animation: smoothPadAfterLow 1.5s ease-in alternate-reverse forwards infinite;
   opacity: 1;
}

.scxx .nlp-button.listening.gain-mid:before {
   --pad: -1rem;
   animation: smoothPadBeforeMid 2.7s ease-in alternate-reverse forwards infinite;
   opacity: 1;
}

.scxx .nlp-button.listening.gain-mid:after {
   --pad: -2rem;
   animation: smoothPadAfterMid 1.7s ease-in alternate-reverse forwards infinite;
   opacity: 1;
}

.scxx .nlp-button.listening.gain-high:before {
   --pad: -1rem;
   animation: smoothPadBeforeHigh 2.5s ease-in alternate-reverse forwards infinite;
   opacity: 1;
}

.scxx .nlp-button.listening.gain-high:after {
   --pad: -2rem;
   animation: smoothPadAfterHigh 1.5s ease-in alternate-reverse forwards infinite;
   opacity: 1;
}

.scxx .nlp-input .ql-container {
   margin-right: 35px;
}

.scxx .nlp-input .ql-container.ql-snow {
   border-radius: 10px;
   overflow: hidden;
   border: 1px solid #e6e6e6;
}

@keyframes smoothPadAfterLow {
   0% {
      top: -0.1rem;
      left: -0.1rem;
      right: -0.1rem;
      bottom: -0.1rem;
   }

   30% {
      top: -0.3rem;
      left: -0.3rem;
      right: -0.3rem;
      bottom: -0.3rem;
   }

   40% {
      top: -0.4rem;
      left: -0.4rem;
      right: -0.4rem;
      bottom: -0.4rem;
   }

   100% {
      top: -0.1rem;
      left: -0.1rem;
      right: -0.1rem;
      bottom: -0.1rem;
   }
}
@keyframes smoothPadBeforeLow {
   0% {
      top: -0.1rem;
      left: -0.1rem;
      right: -0.1rem;
      bottom: -0.1rem;
   }

   50% {
      top: -0.3rem;
      left: -0.3rem;
      right: -0.3rem;
      bottom: -0.3rem;
   }

   60% {
      top: -0.2rem;
      left: -0.2rem;
      right: -0.2rem;
      bottom: -0.2rem;
   }

   80% {
      top: -0.1rem;
      left: -0.1rem;
      right: -0.1rem;
      bottom: -0.1rem;
   }

   100% {
      top: -0.2rem;
      left: -0.2rem;
      right: -0.2rem;
      bottom: -0.2rem;
   }
}

@keyframes smoothPadAfterMid {
   0% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }

   30% {
      top: -1.5rem;
      left: -1.5rem;
      right: -1.5rem;
      bottom: -1.5rem;
   }

   40% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }

   60% {
      top: -1.6rem;
      left: -1.6rem;
      right: -1.6rem;
      bottom: -1.6rem;
   }

   100% {
      top: -1rem;
      left: -1rem;
      right: -1rem;
      bottom: -1rem;
   }
}
@keyframes smoothPadBeforeMid {
   0% {
      top: -0.5rem;
      left: -0.5rem;
      right: -0.5rem;
      bottom: -0.5rem;
   }

   40% {
      top: -1rem;
      left: -1rem;
      right: -1rem;
      bottom: -1rem;
   }

   50% {
      top: -0.5rem;
      left: -0.5rem;
      right: -0.5rem;
      bottom: -0.5rem;
   }

   60% {
      top: -3.5rem;
      left: -3.5rem;
      right: -3.5rem;
      bottom: -3.5rem;
   }

   80% {
      top: -1.5rem;
      left: -1.5rem;
      right: -1.5rem;
      bottom: -1.5rem;
   }

   90% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }

   100% {
      top: -0.5rem;
      left: -0.5rem;
      right: -0.5rem;
      bottom: -0.5rem;
   }
}

@keyframes smoothPadAfterHigh {
   0% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }

   30% {
      top: -1.5rem;
      left: -1.5rem;
      right: -1.5rem;
      bottom: -1.5rem;
   }

   40% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }

   60% {
      top: -1.6rem;
      left: -1.6rem;
      right: -1.6rem;
      bottom: -1.6rem;
   }

   100% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }
}
@keyframes smoothPadBeforeHigh {
   0% {
      top: -0.7rem;
      left: -0.7rem;
      right: -0.7rem;
      bottom: -0.7rem;
   }

   40% {
      top: -1rem;
      left: -1rem;
      right: -1rem;
      bottom: -1rem;
   }

   50% {
      top: -0.7rem;
      left: -0.7rem;
      right: -0.7rem;
      bottom: -0.7rem;
   }

   60% {
      top: -3.5rem;
      left: -3.5rem;
      right: -3.5rem;
      bottom: -3.5rem;
   }

   80% {
      top: -1.5rem;
      left: -1.5rem;
      right: -1.5rem;
      bottom: -1.5rem;
   }

   90% {
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
   }

   100% {
      top: -0.7rem;
      left: -0.7rem;
      right: -0.7rem;
      bottom: -0.7rem;
   }
}

.scxx .nlp-status {
   flex-grow: 1;
   color: #2c507a;
   font-size: 1.2rem;
   font-weight: bold;
   opacity: 0;
   animation: expandTextIn 0.3s forwards;
}

.scxx .pulseText {
   animation: pulseText 1.8s ease-in-out alternate-reverse forwards infinite;
}

@keyframes expandTextIn {
   0% {
      opacity: 0;
      font-size: 0.2rem;
   }

   100% {
      opacity: 0.1;
      font-size: 1.1rem;
   }
}

@keyframes pulseText {
   0% {
      opacity: 0.3;
      transform: scale(1);
   }

   100% {
      opacity: 1;
      transform: scale(1.01);
   }
}

.scxx .thinking-spinner-container {
   position: relative;
   transition: all 0.8s ease-in-out;
   left: calc(0%);
}

.scxx .thinking-spinner {
   width: 50px;
   height: 50px;
   box-sizing: border-box;
   border-top: 4px solid hotpink;
   border-radius: 50%;
   position: relative;
   background: #ffffff99;
   animation: thinkingRotate 2.5s cubic-bezier(0.31, 0.11, 0.77, 0.96) infinite;
}

.scxx .thinking-spinner::before,
.scxx .thinking-spinner::after {
   content: "";
   position: absolute;
   width: inherit;
   height: inherit;
   border-radius: 50%;
   box-sizing: border-box;
   top: -0.2em;
}

.scxx .thinking-spinner::before {
   border-top: 4px solid dodgerblue;
   transform: rotate(120deg);
   animation: colorRotate1 3s ease-in-out alternate-reverse forwards infinite;
}

.scxx .thinking-spinner::after {
   border-top: 3px solid gold;
   transform: rotate(240deg);
   animation: colorRotate2 3s ease-in-out alternate-reverse forwards infinite;
}

.scxx .thinking-spinner-content {
   position: absolute;
   left: 16px;
   top: 14px;
   color: #8990af;
   text-align: center;
   animation: pulseText 1.8s ease-in-out alternate-reverse forwards infinite;
   z-index: 10;
   font-size: 1.2rem;
}

@keyframes colorRotate1 {
   0% {
      border-top: 4px solid dodgerblue;
   }
   33% {
      border-top: 4px solid rgb(30, 255, 158);
   }

   66% {
      border-top: 4px solid rgb(255, 188, 30);
   }
}

@keyframes colorRotate2 {
   0% {
      border-top: 3px solid gold;
   }
   33% {
      border-top: 3px solid rgb(73, 216, 207);
   }

   66% {
      border-top: 3px solid rgb(237, 77, 45);
   }
}

@keyframes thinkingRotate {
   50% {
      transform: rotate(180deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

.scxx .nlp-component.thinking {
   background-color: #fff;
   background: radial-gradient(circle, #53c8a62e, #ed9b801a, #23a6d53b, #23d5ab5e);
   background-size: 400% 400%;
   animation: gradient 15s ease infinite;
   box-shadow: none;
}

@keyframes gradient {
   0% {
      background-position: 0% 50%;
   }
   50% {
      background-position: 100% 50%;
   }
   100% {
      background-position: 0% 50%;
   }
}

.scxx .nlp-button-text-submit {
   background: var(--s-green);
   border-radius: 50%;
   width: 40px;
   height: 40px;
   position: absolute;
   right: -10px;
   opacity: 0;
   font-size: 1.4rem;
   transition: all 0.4s;
}

.scxx .nlp-button-text-submit.in-right {
   right: 0px;
   opacity: 1;
}

.scxx .nlp-button.out-left {
   opacity: 0.3;
   background-color: #aaa;
   pointer-events: none;
}

.scxx .nlp-warning-container {
   position: absolute;
   bottom: calc(100% + 10px);
}

.scxx .nlp-warning {
   position: relative;
   background: var(--s-purple);
   color: #fff;
   padding: 4px 8px;
   border-radius: 5px;
   padding-left: 30px;
}

.scxx .nlp-warning:after {
   content: "";
   position: absolute;
   top: 100%;
   left: 23px;
   margin-left: -8px;
   border-width: 8px;
   border-style: solid;
   border-color: var(--s-purple) transparent transparent transparent;
}

.scxx .nlp-warning:before {
   position: absolute;
   left: 5px;
   top: 7px;
   font-size: 1.3rem;
   margin: auto;
}

.scxx .vertical .step-question-response > :not(:first-child) {
   margin-top: 20px;
}
