body {
  /* overflow-x: hidden; */
  /* font-family: 'Martel Sans', sans-serif; */
}

.wf-structured-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.wf-structured-container,
.wf-footer {
  /* max-width: 1440px; */
  margin-right: auto;
  margin-left: auto;
}

/*

h1 {
  text-align: center;
  font-weight: bold !important;
  margin-top: 0.5em !important;
  margin-bottom: 1em !important;
}

h2 {
  margin: 0;
  padding-left: var(--spacing-sm);
  color: var(--clr-primary);
  align-self: start;
} 

*/

.wf-accordion__title {
  text-align: left;
  font-weight: bold;
}

:root {
  --clr-btn-input: #0a6821;
  --clr-th-primary: #362f4b;
  --clr-label-border: #85bfeb;
  --clr-label-hover: #dfd;
  --clr-label-checked-primary: #e2f1ad;
  --clr-label-checked-secondary: #a2b11a;
  --clr-work: #3b3b3b;
  --clr-electric: #2429ad;
  --clr-accordion-minimalistic: #1bb9d7;
}

/* TABLE */
thead th,
tbody:first-child th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--clr-light);
  background: var(--clr-th-primary);
}

thead tr th:first-child {
  color: var(--clr-dark);
}

thead th:first-child,
tbody:first-child th:first-child {
  left: 0;
  z-index: 3;
}

th,
td {
  padding: var(--spacing-sm);
  text-align: center;
}

tr > :first-child {
  position: sticky;
  background: var(--clr-primary-light);
  left: 0;
  z-index: 1;
}

/* INPUTS */
input {
  margin: 0;
}

/* .radio-toolbar {
  padding-top: var(--spacing-xlg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
} */

input[type='radio'] {
  opacity: 0;
  position: fixed;
  width: 0;
}

/* label {
  text-align: center;
  padding: var(--spacing-sm);
  font-size: var(--spacing-sm);
  color: var(--clr-light);
  background-color: var(--clr-primary);
  border: 2px solid var(--clr-label-border);
  border-radius: var(--spacing-xsm);
}

label:hover {
  color: var(--clr-dark);
  background-color: var(--clr-label-hover);
  cursor: pointer;
} */

/*input[type='radio']:focus + label {
  border: 2px solid var(--clr-grey);
}*/

input[type='radio']:checked + label {
  background-color: #009bf5;
}

input[type='radio']:checked .wf-accordion__title,
input[type='radio']:checked + label {
  color: white;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

.w-0 {
  width: 0 !important;
}

.border-0 {
  border: none;
}

/* NEXT AND BACK BUTTONS */
/* 
.wf-btnGroup {
  width: 50%;
} 
*/

.wf-btn__navigation:hover {
  background-color: var(--clr-grey);
}

/* STEP 1 PAGE */
.wf-structured-container {
  position: relative;
  min-height: 100vh;
  padding: 20px;
  padding-top: 7rem;
}

.wf-accordion__label {
  color: initial;
  background-color: initial;
  border: none;
}

.wf-accordion__label:hover {
  background-color: var(--clr-light);
}

.wf-accordion__body--step1 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wf-accordion__body--step1 label {
  display: block;
  width: 100%;
  height: 270px;
  padding: 0;
  border-radius: 20px;
  border: none;
  font-weight: bold;
}

.wf-accordion__body--step1:hover label {
  filter: grayscale(0);
}

.wf-accordion__body--step1 input[type='radio']:focus + label {
  filter: grayscale(0%);
  filter: contrast(2);
  filter: drop-shadow(0px 10px 20px rgba(209, 80, 5, 0.5));
  border: 5px solid var(--clr-secondary);
}

.wf-accordion__body--step1 label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* STEP 2 PAGE */
.wf-step2 {
  height: 115vh;
}

.wf-step__table {
  position: relative;
  max-width: 95%;
  height: 99%;
}

.output-container {
  overflow: scroll;
  height: 85%;
  min-width: 70vw;
}

.output-container::-webkit-scrollbar {
  width: 10px;
}

.output-container::-webkit-scrollbar-track {
  background-color: transparent;
}

.output-container::-webkit-scrollbar-thumb {
  background-color: var(--clr-grey-light);
}

.output-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--clr-grey);
}

.data-input {
  position: absolute;
  right: -30rem;
  top: -1.5rem;
  cursor: pointer;
  border: none;
  background: #f6f4f6 !important;
}

.data-input:hover {
  background-color: var(--clr-light);
}

input[type='file']::file-selector-button {
  border: none;
  background: var(--clr-primary);
  padding: var(--spacing-xsm);
  border-radius: calc(var(--spacing-xxsm) + 0.05rem);
  color: var(--clr-light);
  cursor: pointer;
}

input[type='file']::file-selector-button:hover {
  background: var(--clr-primary-light);
}

.data-input button {
  padding: var(--spacing-xsm);
  color: white;
  background-color: var(--clr-btn-input);
  border: none;
  border-radius: calc(var(--spacing-xxsm) + 0.05rem);
  cursor: pointer;
}

.data-input button:hover {
  background-color: #23813b;
}

/* STEP 2 BUTTON STYLE */
.wf-btnGroup__step2 {
  position: relative;
  align-self: start;
}

.wf-step2__btn--left:hover,
.wf-step2__btn--right:hover,
.wf-step2__btn--up:hover,
.wf-step2__btn--down:hover {
  background-color: var(--clr-label-border);
}

.wf-step2__btn--create,
.wf-step2__btn--upload {
  background-color: #009bf5;
}

.wf-step2__btn--delete {
  background-color: #ee1010;
}

.wf-step2__btn--delete:hover {
  background-color: #ff4d4d;
}

.wf-step2__btn--column {
  position: absolute;
  top: calc(var(--spacing-xlg) - var(--spacing-sm));
  left: -1.5rem;
  width: var(--spacing-lg);
}

.wf-step2__btn--row {
  align-self: start;
}

.wf-step2__btn--column:hover,
.wf-step2__btn--row:hover,
.wf-step2__btn--edit:hover {
  background-color: var(--clr-primary-light);
}

.wf-step2__btn--up,
.wf-step2__btn--down {
  position: absolute;
  top: calc(var(--spacing-xxlg) + 2rem);
  left: -1.5rem;
  width: var(--spacing-lg);
}

.wf-step2__btn--down {
  top: calc(var(--spacing-xxlg) + var(--spacing-xxlg));
  left: -1.5rem;
}

/* STEP 3 PAGE */
.layout-options {
  margin-top: var(--spacing-xlg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.layout-options label {
  width: var(--spacing-xxlg);
}

/* STEP 4 PAGE */
#wf-step3,
#wf-step4 {
  margin-right: 200px;
}

.wf-step4 h2 {
  margin-bottom: 0;
}

.wf-step4__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.wf-step4__group input {
  border: 1px solid var(--clr-grey-light);
}

.wf-step4__radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--spacing-sm) + 0.2rem);
  margin: var(--spacing-md);
}

.wf-step4__radio label {
  display: block;
  width: 150px;
  height: 150px;
  padding: 0;
  filter: grayscale(75%);
}

.wf-step4__radio:hover label {
  filter: grayscale(0);
}

.wf-step4__radio input[type='radio']:focus + label {
  filter: grayscale(0%);
  filter: contrast(2);
  filter: drop-shadow(0px 10px 20px rgba(209, 80, 5, 0.5));
  border: 5px solid #d37306;
}

.wf-step4__radio label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* STEP 5 PAGE */
.wf-step5 {
  display: block;
  padding-top: var(--spacing-md) !important;
}

.generated-layout {
  width: 100%;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  padding-bottom: 0;
}

.generated-layout p:first-child {
  font-weight: 700;
  font-size: calc(var(--spacing-sm) + 0.3rem);
}

.generated-layout p {
  font-size: calc(var(--spacing-sm) + 0.2rem);
  text-align: center;
}

.save-layout {
  justify-self: center;
  background: #009bf5 !important;
  cursor: pointer;
  border: none !important;
  font-weight: bold;
  padding: 10px 30px !important;
  color: white !important;
}

.save-layout:hover {
  color: #141314 !important;
}

/* TABLE LAYOUT */
.table-container {
  /* margin-left: calc(var(--spacing-xxlg) * 2); */
  overflow: scroll;
  /* max-width: 72%; */
  max-height: 100vh;
}

.table-container::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
}

.table-container::-webkit-scrollbar-track {
  background-color: transparent;
}

.table-container::-webkit-scrollbar-thumb {
  background-color: var(--clr-grey);
}

.table-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--clr-grey-light);
}

/* TABLE STYLE - FUSION */
.generated-layout:has(table.fusion) {
  color: var(--clr-light);
  font-weight: 600;
  background: linear-gradient(45deg, #49a09d, #5f2c82);
}

table.fusion {
  border-collapse: collapse;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table.fusion th,
table.fusion td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
}

table.fusion thead tr th:first-child,
table.fusion tbody:first-child tr th:first-child {
  color: var(--clr-light);
}

table.fusion thead th,
table.fusion tbody:first-child th {
  background-color: #55608f;
}

table.fusion tr > :first-child {
  background: #7481b9;
  position: sticky;
}

table.fusion tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

table.fusion tbody td {
  position: relative;
}

table.fusion tbody td:hover:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(255, 255, 255, 0.2);
}

table.fusion tbody tr:last-child td:hover:before {
  top: 0;
  bottom: 0;
}
/*  */

/* TABLE STYLE - FOREST */
table.forest {
  border-collapse: collapse;
}

table.forest th,
table.forest td {
  background: var(--clr-light);
  color: var(--clr-grey);
  border: 1px solid var(--clr-grey);
}

table.forest tr > :first-child {
  background: var(--clr-light);
}

table.forest thead tr th:nth-child(1n),
table.forest tbody:first-child tr th:nth-child(1n),
table.forest tr.title td:nth-child(1n) {
  color: #509b6a;
}

table.forest thead tr th:nth-child(2n),
table.forest tbody:first-child tr th:nth-child(2n),
table.forest tr.title td:nth-child(2n) {
  background-color: #4d9558;
  color: var(--clr-light);
}

table.forest thead tr th:nth-child(3n),
table.forest tbody:first-child tr th:nth-child(3n),
table.forest tr.title td:nth-child(3n) {
  background-color: #214238;
  color: var(--clr-light);
}

table.forest tr.total td {
  color: var(--clr-dark);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-top: 2px solid var(--clr-dark);
  font-size: var(--fs-p-lg);
}

/* TABLE STYLE - ELEGANT */
.generated-layout:has(table.elegant) {
  color: #595c5e;
  font-weight: 600;
  background-color: #e9edef;
}

table.elegant thead th,
table.elegant tbody:first-child th {
  background-color: #7dd0ed;
}

table.elegant tr > :first-child {
  color: var(--clr-light);
  background: #68b9d6;
}

table.elegant td {
  background-color: var(--clr-light);
}

table.elegant tbody td:hover {
  color: var(--clr-light);
  transform: scale(1.1);
  font-size: var(--fs-p);
  background-color: #2ca8d4;
}
/*  */

/* TABLE STYLE - MINIMALISTIC */
table.minimalistic {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

table.minimalistic thead th,
table.minimalistic tbody:first-child th {
  background-color: #009879;
  color: var(--clr-light);
  text-align: left;
}

table.minimalistic th,
table.minimalistic td {
  padding: 12px 15px;
}

table.minimalistic tbody tr {
  border-bottom: 1px solid #dddddd;
}

table.minimalistic tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

table.minimalistic tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

table.minimalistic tbody tr:hover {
  font-weight: bold;
  color: #009879;
}
/*  */

/* TABLE STYLE - BUSINESS */
table.business {
  border-collapse: collapse;
  color: #464545;
}

table.business thead tr th,
table.business tbody:first-child tr th {
  padding: var(--spacing-md);
  text-align: right;
  font-size: 1.35rem;
  font-weight: bold;
  color: #464545;
  background-color: var(--clr-light);
}

table.business tr > :first-child {
  background: var(--clr-light);
}

table.business th,
table.business td {
  padding: var(--spacing-xsm);
}

table.business tr.total {
  font-weight: bold;
  background-color: #f8b885;
}

table.business tr.title td {
  font-weight: bold;
  border-bottom: 3px solid #464545;
}
/*  */

/* TABLE STYLE - WORK */
table.work {
  border-collapse: collapse;
}

table.work thead th,
table.work tbody:first-child th,
table.work tbody td {
  color: var(--clr-work);
  background-color: var(--clr-light);
}

table.work tbody td {
  border-bottom: 1px solid var(--clr-work);
}

table.work thead th,
table.work tbody:first-child th {
  text-align: right;
  font-size: 0.9rem;
  font-weight: 300;
}

table.work tr.title td,
table.work tr.total td {
  font-weight: bold;
  font-size: var(--fs-h5);
  color: #919394;
  border-bottom: 2px solid var(--clr-work);
}

table.work tr.total td {
  color: var(--clr-work);
}

/*  */

/* TABLE STYLE - SKY */
table.sky {
  border-collapse: collapse;
}

table.sky th,
table.sky td {
  padding: var(--spacing-xxsm) var(--spacing-sm);
}

table.sky thead tr th,
table.sky tbody:first-child tr th,
table.sky tr.title td {
  color: #132749;
  background-color: #c9daed;
}

table.sky thead tr th:first-child,
table.sky tbody:first-child tr th:first-child,
table.sky tr.title td:first-child {
  font-weight: bold;
  font-style: italic;
  font-size: var(--fs-p-lg);
  background-color: #c9daed;
}

table.sky tr > :first-child {
  background: var(--clr-light);
}

table.sky tbody tr:nth-of-type(odd),
table.sky tr:nth-of-type(odd) > :first-child {
  background-color: #e8eff6;
}

table.sky tr.total td {
  font-weight: 800;
}

/*  */

/* TABLE STYLE - ELECTRIC */
table.electric {
  border-collapse: collapse;
}

table.electric th,
table.electric td {
  background: var(--clr-light);
  color: #383938;
}

table.electric thead tr th:nth-child(2n),
table.electric tbody:first-child tr th:nth-child(2n),
table.electric tr.title td:nth-child(2n) {
  color: var(--clr-electric);
  font-weight: 700;
}

table.electric tr.title td {
  border-bottom: 1px solid var(--clr-electric);
}

table.electric tr.total td,
table.electric tr.subtotal td {
  color: var(--clr-electric);
  border: none;
  border-bottom: 2px solid var(--clr-electric);
}

table.electric tr.total td:first-child,
table.electric tr.subtotal td:first-child {
  font-weight: 900;
}

table.electric tr.subtotal td {
  border: none;
}

/*  */

/* TABLE STYLE - NAVY */
table.navy {
  border-collapse: collapse;
}

table.navy th,
table.navy td {
  background: var(--clr-light);
  color: #536ea8;
  font-weight: 600;
}

table.navy thead th,
table.navy tbody:first-child th,
table.navy tr.title td,
table.navy tr.total td {
  color: #324d89;
  font-weight: 800;
  text-transform: uppercase;
}

/*  */

/* TABLE STYLE - FEATURES */
table.features {
  border-collapse: collapse;
}

table.features th,
table.features td {
  padding: var(--spacing-xxsm) var(--spacing-sm);
}

table.features thead tr th,
table.features tbody:first-child tr th,
table.features tr.title td {
  font-size: var(--fs-h5);
  color: #000;
  background-color: #fff;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid #e8eff6;
}

table.features thead tr th:first-child,
table.features tbody:first-child tr th:first-child,
table.features tr.title td:first-child {
  background-color: #fff;
}

table.features thead tr th:nth-child(3),
table.features tbody:first-child tr th:nth-child(3),
table.features tr.title td:nth-child(3) {
  color: var(--clr-secondary);
}

table.features tbody tr:first-child td {
  padding-top: var(--spacing-md);
}

table.features tr {
  font-weight: bold;
}

table.features tr > :nth-child(1n) {
  width: 20%;
}

table.features tr > :first-child {
  font-weight: lighter;
  background: var(--clr-light);
  width: 50%;
  text-align: left;
}

table.features tbody tr:nth-of-type(even),
table.features tr:nth-of-type(even) > :first-child {
  background-color: #f3f4fe;
}

/*  */

/* ACCORDION LAYOUT*/
.generated-layout:has(.wf-accordion) {
  /* margin-left: calc(var(--spacing-xxlg) * 2); */
}

.wf-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-size: var(--spacing-sm);
}
u .wf-accordion__head {
  cursor: pointer;
}

.wf-accordion__body {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: var(--spacing-sm);
  margin: var(--spacing-sm) 0;
}

.wf-accordion__body p {
  margin: 0;
}

.wf-accordion__item--active .wf-accordion__head svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* ACCORDION STYLE - ELEGANT */
.elegant2 .wf-accordion__head {
  padding: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--clr-light);
  background-color: #2c3e50;
  border-radius: var(--spacing-xsm);
}

.elegant2 .wf-accordion__body {
  padding: var(--spacing-sm);
  max-height: var(--spacing-xxlg);
  gap: 0.8rem;
  color: var(--clr-light);
  border-radius: 0.7rem;
  background-color: #34495e;
  overflow-y: scroll;
}
/*  */

/* ACCORDION STYLE - FORMAL */
.formal {
  background-color: var(--clr-dark);
}

.formal .wf-accordion__head {
  font-weight: bold;
  color: var(--clr-light);
  border-bottom: 3px solid var(--clr-light);
}

.formal .wf-accordion__body {
  gap: var(--spacing-xsm);
  padding: var(--spacing-xlg);
  border-radius: var(--spacing-sm);
  color: var(--clr-dark);
  background-color: var(--clr-light);
}
/*  */

/* ACCORDION STYLE - MINIMALISTIC */
.minimalistic2 {
  width: 50%;
  margin-top: var(--spacing-md);
  border: 1px solid var(--clr-accordion-minimalistic);
}

.minimalistic2 .wf-accordion__head {
  font-weight: normal;
  color: var(--clr-accordion-minimalistic);
  border-radius: 0;
  border-bottom: 3px solid #9095a6;
}

.minimalistic2 .wf-accordion__body {
  gap: var(--spacing-xsm);
  margin: var(--spacing-sm) 0;
  padding: var(--spacing-lg);
  border-radius: var(--spacing-sm);
  color: var(--clr-dark);
  background-color: var(--clr-light);
  border: 1px solid var(--clr-accordion-minimalistic);
}
/*  */

/* ACCORDION STYLE - MOOWOODLE */
.moowoodle {
  background-color: #edeefd;
}

.moowoodle .wf-accordion__item {
  box-shadow: var(--shadow-md);
  border-radius: var(--spacing-md);
}

.moowoodle .wf-accordion__head {
  padding: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--clr-dark);
  background-color: var(--clr-light);
  border-radius: var(--spacing-md);
}

.moowoodle .wf-accordion__item--active .wf-accordion__head {
  color: #51ccfb;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.moowoodle .wf-accordion__item--active .wf-accordion__title {
  color: #51ccfb;
}

.moowoodle .bi-arrow-down {
  color: var(--clr-light);
  background-color: #51ccfb;
  position: relative;
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
}

.moowoodle .wf-accordion__body {
  margin: 0;
  padding: var(--spacing-md);
  max-height: var(--spacing-xxlg);
  gap: 0.8rem;
  color: var(--clr-dark);
  border-bottom-left-radius: var(--spacing-md);
  border-bottom-right-radius: var(--spacing-md);
  background-color: var(--clr-light);
  overflow-y: auto;
}
/*  */

/* TABS LAYOUT */
/* .wf-tabs {
  width: 70%;
  margin-left: calc(var(--spacing-xxlg) * 2);
  margin-top: var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: var(--spacing-sm);
  border: 1px solid #ccc;
  border-radius: var(--spacing-xsm);
} */

.wf-tab__nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  max-height: calc(var(--spacing-xxlg) * 3);
  overflow-y: scroll;
}

.wf-tab__nav::-webkit-scrollbar {
  width: 10px;
}

.wf-tab__nav::-webkit-scrollbar-track {
  background-color: transparent;
}

.wf-tab__nav::-webkit-scrollbar-thumb {
  background-color: #888;
}

.wf-tab__nav::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.wf-tab__link {
  padding: var(--spacing-sm);
  font-size: 1.2rem;
  color: var(--clr-dark);
  background-color: var(--clr-light);
  border: 1px solid #ccc;
  border-radius: var(--spacing-xsm);
  cursor: pointer;
}

/* TABS STYLE - NEONIC */
.neonic {
  grid-template-columns: 1fr;
  grid-template-rows: 0.7fr 3fr;
  background-color: #35363f;
}

.neonic .wf-tab__nav {
  gap: var(--spacing-xsm);
  padding-bottom: 0.1rem;
  flex-direction: row;
  align-items: end;
  overflow-y: hidden;
  overflow-x: scroll;
  background-color: var(--clr-dark);
  border-radius: var(--spacing-xsm) var(--spacing-xsm) 0 0;
}

.neonic .wf-tab__link {
  padding: var(--spacing-sm) 4rem;
  text-transform: uppercase;
  color: var(--clr-light);
  background: hsl(232deg 6% 17%);
  border: 1px solid #3b3d3f;
  border-radius: 7px 7px 0 0;
  box-shadow: 1px 1px 2px 1px #231f20;
}

.neonic .wf-tab__link--active {
  position: relative;
  color: deepskyblue;
}

.neonic .wf-tab__link--active:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.35rem;
  bottom: var(--spacing-xxsm);
  left: 0;
  border-radius: var(--spacing-xsm);
  background: linear-gradient(
    113deg,
    hsl(260deg 100% 64%) 0%,
    hsl(190deg 100% 55%) 100%
  );
}

.neonic .wf-tab__content {
  padding: var(--spacing-xlg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xsm);
  border-radius: var(--spacing-xsm) var(--spacing-xsm) 0 0;
  color: #f0f2fc;
  background-color: #20222c;
}

.neonic .wf-tab__content p:first-child {
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 800 !important;
  background: linear-gradient(
    60deg,
    hsl(202deg 100% 75%),
    hsl(205deg 100% 64%),
    hsl(230deg 100% 75%),
    hsl(270deg 100% 72%)
  );
}

.neonic .wf-tab__content:nth-child(2n) p:first-child {
  background: linear-gradient(
    60deg,
    hsl(202deg 100% 75%),
    hsl(205deg 100% 64%),
    hsl(230deg 100% 75%),
    hsl(270deg 100% 72%)
  );
}

.neonic .wf-tab__content:nth-child(3n) p:first-child {
  background: linear-gradient(10deg, #f7ec9c, #ff8651);
}

.neonic .wf-tab__content:nth-child(4n) p:first-child {
  background: linear-gradient(10deg, #02ce85, #02ceab);
}

.neonic .wf-tab__content:nth-child(5n) p:first-child {
  background: linear-gradient(70deg, #c51574, #97389b);
}

.neonic .wf-tab__content p {
  margin: 0;
}

/* TABS STYLE - SIMPLE */
.simple {
  padding: var(--spacing-md);
  border-radius: 48px;
  border: 16px solid #ebf0f4;
  background-color: #dfe6ed;
  overflow: hidden;
  box-shadow: 16px 16px 48px #2e364330;
}

.simple .wf-tab__nav {
  overflow-x: hidden;
}

.simple .wf-tab__link {
  font-size: 24px;
  font-weight: 700;
  color: #525d6f;
  opacity: 0.4;
  transition: opacity 0.4s ease-in-out;
  display: block;
  width: calc(100% - 48px);
  border: none;
  box-shadow: 32px 32px 48px #2e364315;
}

.simple .wf-tab__link--active {
  position: relative;
  color: #525d6f;
  opacity: 1;
}

.simple .wf-tab__link--active:after {
  content: '';
  position: absolute;
  width: 7rem;
  height: 100%;
  top: 0;
  right: -5rem;
  background-color: var(--clr-light);
  box-shadow: 32px 32px 48px #2e364315;
}

.simple .wf-tab__content {
  padding: var(--spacing-md);
  background-color: var(--clr-light);
  border-radius: var(--spacing-md);
}
/*  */

/* TABS STYLE - GREEN */
.green {
  grid-template-columns: 1fr;
  grid-template-rows: 0.7fr 3fr;
  background: #2c3e50;
}

.green .wf-tab__nav {
  position: relative;
  flex-direction: row;
  gap: 0;
  padding: 0;
  background-color: #1abc9c;
  border-radius: var(--spacing-xxsm) var(--spacing-xxsm) 0 0;
  overflow-y: hidden;
}

.green .wf-tab__link {
  position: relative;
  padding: var(--spacing-sm) 4rem;
  color: var(--clr-light);
  background-color: transparent;
  border: none;
  border-right: 0.125rem solid #16a085;
  border-radius: 0;
}

.green .wf-tab__link:hover {
  padding-top: var(--spacing-xsm);
  transition: padding-top 0.25s ease-in-out;
}

.green .wf-tab__link--active {
  color: #2c3e50;
  background-color: var(--clr-light);
}

.green .wf-tab__content--active {
  color: #2c3e50;
  background-color: var(--clr-light);
  border-radius: 0 0 var(--spacing-xsm) var(--spacing-xsm);
}
/*  */

/* TABS STYLE - FEATURES */
.features2 .wf-tab__nav {
  overflow-x: hidden;
}

.features2 .wf-tab__link {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-dark);
  border: none;
  box-shadow: var(--shadow-md);
}

.features2 .wf-tab__link--active {
  color: var(--clr-light);
  background-color: #1a30ff;
}

.features2 .wf-tab__link--active:after {
  content: '';
  position: absolute;
  width: 7rem;
  height: 100%;
  top: 0;
  right: -5rem;
  background-color: var(--clr-light);
  box-shadow: 32px 32px 48px #2e364315;
}

.features2 .wf-tab__content {
  text-align-last: left;
  padding: var(--spacing-md);
  background-color: var(--clr-light);
  border-radius: var(--spacing-md);
}
/*  */


/* COLUMN STYLE - NEON */
.neon {
  color: var(--clr-light);
  background-color: #5824e5;
  border-radius: var(--spacing-xsm);
  margin-bottom: var(--spacing-xsm);
  margin-left: 0;
}

.neon .wf-cols {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xsm);
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--spacing-xsm);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.neon .wf-cols div:first-child {
  font-size: var(--fs-h3);
  font-weight: 700;
}
/*  */

/* COLUMN STYLE - CRYSTAL */
.crystal {
  margin-bottom: var(--spacing-md);
  color: #224;
  background: url(https://source.unsplash.com/E8Ufcyxz514/2400x1823) center /
    cover no-repeat fixed;
  border-radius: var(--spacing-xsm);
}

.crystal .wf-cols {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}
/*  */

/* COLUMN STYLE - MODERN */
.modern {
  margin-bottom: var(--spacing-xsm);
  padding: var(--spacing-md);
  gap: var(--spacing-xsm);
  color: var(--clr-light);
  background-color: var(--clr-dark);
  border-radius: var(--spacing-xsm);
}

.modern .wf-cols {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xsm);
  border: 2px solid transparent;
  background-clip: padding-box !important;
  border-radius: 45px;
  background: linear-gradient(71deg, #080509, #1a171c, #080509);
}

.modern .wf-cols::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: '';
  z-index: -1;
  border-radius: 45px;
  background: linear-gradient(71deg, #110e0e, #afa220, #110e0e);
}

.modern .wf-cols div {
  font-weight: 600;
  line-height: 32px;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 16px;
  max-width: 470px;
}

.modern .wf-cols div:first-child {
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
}

/*  */

.wf-step5__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: var(--spacing-md);
}

.owl-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  /* gap: var(--spacing-lg); */
  /* padding: 0 var(--spacing-lg); */
}

.owl-stage .owl-item {
  padding: 0 var(--spacing-lg);
}

/* Miscellaneous */
.hide {
  display: none;
}

.show {
  display: block;
}

.selected {
  background-color: #bcade9 !important;
}

/* FOOTER */
.wf-footer {
  /* max-width: 600px; */
}

@media only screen and (max-width: 768px) {
  /*.wf-footer {
    left: unset;
    bottom: 0;
    width: 100% !important;
    height: 15vh;
  }*/

  .wf-btnGroup__navigation {
    flex-direction: row !important;
  }

  .wf-accordion__body {
    grid-template-columns: repeat(1, 1fr);
  }

  .wf-accordion.wf-accordion__step1 {
    width: calc(100% - 40px) !important;
    padding: 0.5em !important;
  }

  .wf-accordion__label {
    padding: 0 !important;
  }

  .layout-data,
  .wf-btnGroup__navigation {
    grid-template-columns: 1fr !important;
  }
}

.wf-btnGroup__navigation {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

header {
  background: #141314;
  padding: 20px;
}


/* .wf-btn:hover {
  color: #bcade9;
} */

.wf-step4__content {
  max-width: 829px;
}

.u-centered {
  text-align: center;
}

.u-bold {
  font-weight: bold;
}

.u-border-radius-lg {
  border-radius: 20px;
}

.layout-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.layout-data {
  margin: 0.5em auto;
}
