* {
    --bg-color: #F9F9F9;
    --bg-white: #FFF;
    --editor-height: 160px;
    --fc-primary-dark: #505050;
    --fc-secondary-dark: #8A8A8A;
    --fs-400: 1.125rem;
    --fs-300: 1rem;
    --primary-font-family: 'Barlow Semi Condensed', sans-serif;
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--fc-secondary-dark);
    font-family: var(--primary-font-family);
  }
  
  h3 {
    color: var(--fc-primary-dark);
    font-size: var(--fs-300);
    font-weight: 600;
    margin: 0;
  }
  
  h2 {
    color: var(--fc-primary-dark);
    font-size: var(--fs-400);
    margin: 0;
  }
  
  hr {
    background-color: #E9E9E9;
    border: none;
    height: 1px;
    margin: 10px 0;
  }
  
  .title h1 {
    margin: 0;
  }
  
  .csv-file {
    display: inline-block;
    margin: 10px 0;
    width: 100%;
  }
  
  .file-uploader {
    background-color: #339dff;
    border: 1px dotted #CCC;
    border-radius: 5px;
    color: #FFF;
    height: 70px;
    text-align: center;
    padding-top: 10px;
  }
  
  .file-uploader:hover {
    background: #0A89FF;
  }
  
  .file-uploader a {
    color: #FFF;
  }

  .file-uploader p {
    font-size: .9rem;
    margin: 0;
    line-height: 25px;
  }
  
  .file-uploader select {
    background-image: url('https://cdn3.iconfinder.com/data/icons/faticons/32/arrow-down-01-256.png');
    background-position: 90% center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #0A89FF;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    padding: 5px 25px 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .file-uploader select:active, .file-uploader select:focus-visible {
    border-color: #0A89FF;
    outline-color: #0A89FF;
   }
  
  .file-uploader select::-ms-expand {
    display: none;
  }
  
  .csv-file .icon {
    background: #55DD6E;
    border-radius: 100%;
    color: #FFF;
    display: inline-block;
    float: left;
    font-size: 1.25rem;
    height: 50px;
    line-height: 45px;
    margin-right: 10px;
    text-align: center;
    width: 50px;
  }
  
  .csv-file .status {
    float: left;
  }
  
  .csv-file .remove-file {
    float: right;
    height: 50px;
  }
  
  .csv-file button {
    background: none;
    border: 1px solid #CCC;
    color: var(--fc-secondary-dark);
    margin: 0;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .csv-file button:hover {
    background-color: #F4C95D;
    border-color: #F4C95D;
    color: #FFF;
  }
  
  .file-name {
    color: #777;
    font-weight: 600;
    display: inline-block;
    line-height: 25px;
  }
  
  .empty-state .title {
    background: #F1F2F5;
    display: block;
    height: 20px;
    width: 80px;
  }
  
  .empty-state ul li {
    background: #F1F2F5;
    border-radius: 35px;
    display: inline-flex;
    margin: 0 0 10px 0;
    height: 35px;
    width: 100px;
  }
  
  .registers {
    display: block;
  }
  
  .card-stack {
    position: relative;
  }
  
  .card {
    background: #FCFCFC;
    position: absolute;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform-origin: 0 0;
    transition: transform 0.6s cubic-bezier(.8,.2,.1,0.8) 0.1s, background 0.4s linear;
  }
  
  .card.card.active {
    z-index: 4;
    transform: none;
  }

  .card-3 {
    transform: translateY(30px) rotate(-4deg) translateX(-25px) scale(0.95);
  }
  
.card.not-active-secondary, .card.not-active-terciary {
    animation: card-out 0.6s cubic-bezier(.8,.2,.1,0.8);
}

.card.not-active-secondary {
    transform: translateY(15px) rotate(-2deg) translateX(-15px) scale(1);
    z-index: 3;
}

.card.not-active-terciary {
    transform: translateY(40px) rotate(-4deg) translateX(-25px) scale(1);
    z-index: 2;
}

@keyframes card-out {
    0% { z-index: 20; transform: translateY(0px) rotate(-4deg); }
    50% { transform: translateY(-120%) rotate(-5deg) translateX(-40px); }
    80% { z-index: 2; }
    100% { transform: translateY(15px) rotate(-2deg) translateX(-15px) scale(1); }
}

.card.active {
    background-color: #FFF;
    transform: none;
}
  
  .card-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .editor {
    height: var(--editor-height);
    border: 1px dotted #CCC;
    margin-top: 10px;
    width: 100%;
  }

  .editor.result {
    height: calc(var(--editor-height) + 20px);
  }
  
  .content {
    margin-left: 50%;
    transform: translateX(-50%);
    width: 70%;
  }
  
  .empty-state ul, .tags {
    list-style: none;
    margin: 5px 0 10px 0;
    padding: 0;
  }
          
  .tags li {
    background: #FFF;
    display: inline-flex;
    border: 1px solid #E9E9E9;
    border-radius: 30px;
    cursor: pointer;
    margin: 0 0 10px 0;
    padding: 7px 9px;
    position: relative;
    transition: 0.1s ease-in-out;
  }
  
  .tags li:hover {
    background-color: #FFDF91;
    border-color: #FFDF91;
  }
  
  .tags .icon {
    border-radius: 50%;
    color: #FFF;
    height: 20px;
    margin: 0;
    width: 20px;
  }
  
  .tags .icon {
    background: #8A8A8A;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
  }
  
  .tags .label {
    background: transparent;
    font-size: 14px;
    line-height: 20px;
    margin-left: 6px;
  }
  
  .tags li:hover .label {
    color: #333;
  }
  
  .tags li:hover .decimal {
    background-color: #53B3CB;
  }
  
  .tags li:hover .integer {
    background-color: #EF6F6C;
  }
  
  .tags li:hover .text {
    background-color: #C8963E;
  }
  
button {
    border: none;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
    margin-top: 15px;
    padding: 10px 20px;
    position: relative;
}

button.primary {
    background-color: #53DD6C;
}

button.primary:hover {
    background-color: #25BB41;
}

button.secondary {
    background: none;
    color: var(--fc-primary-dark);
}

button.secondary:hover {
    text-decoration: underline;
}

.result-actions {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: fit-content;
}

.populate-script {
    left: 50%;
    transform: translateX(-50%);
}
  
.drag-over {
    background-color: #0069CC;
    border-color: #274060;
}

@keyframes float {
    0% {
      transform: translatey(5px);
    }
    50% {
      transform: translatey(-5px);
    }
    100% {
      transform: translatey(5px);
    }
}

@keyframes popInRight {
    0% {
      transform: scale(0) translatex(0px);
      opacity: 0;
    }
    100% {
      transform: scale(1) translatex(-30px);
      opacity: 100%;
    }
}
  
@keyframes popInLeft {
    0% {
      transform: scale(0) translatex(0px);
      opacity: 0;
    }
    100% {
      transform: scale(1) translatex(30px);
      opacity: 100%;
    }
}
  
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}

.emptystate {
    &__container {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
}

.illustration__container {
    width: 160px;
    height: 160px;
    background-color: #f0f8ff;
    box-sizing: border-box;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.illustration__container:hover .illustration__containerBackground svg {
    animation: pulse 4s ease-in-out infinite;
}

.illustration__containerBackground {
    width: 160px;
    height: 160px;
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
}

.illustration__elements {
    animation: float 6s ease-in-out infinite;
    background-color: none;
    animation-delay: 2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translatey(5px);
}

.illustration__element {
    margin-bottom: 15px;
    background-color: #FFF;
    width: 140px;
    border-radius: 6px;
    transform: scale(O);
    opacity: 0;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.illustration__element--right.illustration__element--1 {
    transform: translatex(-30px);
    animation: popInRight 0.3s ease-in-out;
    animation-fill-mode: forwards;
    transform-origin: top left;
}

.illustration__element--right.illustration__element--1 .illustration__elementType {
    background-color: #55DD6E;
    font-size: .75rem;
}

.illustration__element--left.illustration__element--2 .illustration__elementType {
    font-size: .75rem;
}

.illustration__element--right.illustration__element--3 .illustration__elementType {
    background-color: #333;
}

.illustration__element--right.illustration__element--3 {
    transform: translatex(-30px);
    animation: popInRight 0.3s ease-in-out 0.6s;
    animation-fill-mode: forwards;
    transform-origin: top left;
    margin: 0;
}

.illustration__element--left {
    transform: translatex(30px);
    animation: popInLeft 0.3s ease-in-out 0.3s;
    animation-fill-mode: forwards;
    transform-origin: top right;
}

.illustration__elementType {
    width: 24px;
    height: 24px;
    background-color: #339dff;
    border-radius: 6px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 10px;
}
  
.illustration__elementWireframe {
    width: 100px;
    height: 8px;
    background-color: #dddddd;
    border-radius: 6px;
  }

  .script-copied {
    background: #333;
    border-radius: 30px;
    color: #FFF;
    visibility: hidden;
    font-weight: 200;
    line-height: 30px;
    opacity: 0;
    padding: 5px 15px;
    position: absolute;
    transform: translate(-10px, -10px);
    z-index: 1;
    right: -5px;
    bottom: -10px;
}

.script-copied.shown {
    opacity: 1;
    transform: translate(0, 0);
    transition: visibility 0s, opacity 0.5s linear;;
    visibility: visible;
}