/* VARIABLES */
/*FONTS*/
* {
  box-sizing: border-box;
  outline: none; }

::-webkit-scrollbar-track {
  background-color: #264f98; }

::-webkit-scrollbar {
  width: 12px;
  height: 10px;
  background-color: rgba(84, 110, 122, 0); }

::-webkit-scrollbar-thumb {
  cursor: pointer;
  width: 3px;
  border-radius: 10px;
  border: solid 4px #264f98;
  background-color: #249adc; }

html, body {
  font-size: 14px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  font-family: montserrat, sans-serif;
  color: #284354;
  background-attachment: fixed; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 900;
  color: #141d23; }

a {
  display: inline-block;
  text-decoration: none;
  color: #42708c;
  position: relative;
  transition: all 0.25s ease-out; }
  a:hover {
    color: #284354; }
  a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #284354;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out; }
  a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom right; }
  a.white {
    color: white; }
    a.white:hover {
      color: rgba(255, 255, 255, 0.8); }
  a.text {
    color: #284354; }
    a.text:hover {
      color: rgba(40, 67, 84, 0.8); }
  a.black {
    color: #141d23; }
    a.black:hover {
      color: rgba(20, 29, 35, 0.8); }
  a.red {
    color: #f97a7a; }
    a.red:hover {
      color: rgba(249, 122, 122, 0.8); }
  a.pink {
    color: #d952aa; }
    a.pink:hover {
      color: rgba(217, 82, 170, 0.8); }
  a.violet {
    color: #c892f7; }
    a.violet:hover {
      color: rgba(200, 146, 247, 0.8); }
  a.purple {
    color: #7759d8; }
    a.purple:hover {
      color: rgba(119, 89, 216, 0.8); }
  a.blue {
    color: #4b8af9; }
    a.blue:hover {
      color: rgba(75, 138, 249, 0.8); }
  a.cyan {
    color: #90f3fe; }
    a.cyan:hover {
      color: rgba(144, 243, 254, 0.8); }
  a.teal {
    color: #91f9b9; }
    a.teal:hover {
      color: rgba(145, 249, 185, 0.8); }
  a.green {
    color: #b0fc90; }
    a.green:hover {
      color: rgba(176, 252, 144, 0.8); }
  a.yellow {
    color: #ffd67b; }
    a.yellow:hover {
      color: rgba(255, 214, 123, 0.8); }
  a.orange {
    color: #ffa780; }
    a.orange:hover {
      color: rgba(255, 167, 128, 0.8); }
  a.success {
    color: #3cd380; }
    a.success:hover {
      color: rgba(60, 211, 128, 0.8); }
  a.error {
    color: #d83636; }
    a.error:hover {
      color: rgba(216, 54, 54, 0.8); }
  a.info {
    color: #23518c; }
    a.info:hover {
      color: rgba(35, 81, 140, 0.8); }
  a.warning {
    color: #f2d027; }
    a.warning:hover {
      color: rgba(242, 208, 39, 0.8); }

strong {
  font-weight: 700 !important; }

button, a.button {
  font-size: inherit;
  font-family: montserrat, sans-serif;
  border: none;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: #42708c;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease-out; }
  button:hover, a.button:hover {
    background-color: rgba(66, 112, 140, 0.8); }
  button.red, a.button.red {
    background-color: #f97a7a; }
    button.red:hover, a.button.red:hover {
      background-color: rgba(249, 122, 122, 0.8); }
  button.pink, a.button.pink {
    background-color: #d952aa; }
    button.pink:hover, a.button.pink:hover {
      background-color: rgba(217, 82, 170, 0.8); }
  button.violet, a.button.violet {
    background-color: #c892f7; }
    button.violet:hover, a.button.violet:hover {
      background-color: rgba(200, 146, 247, 0.8); }
  button.purple, a.button.purple {
    background-color: #7759d8; }
    button.purple:hover, a.button.purple:hover {
      background-color: rgba(119, 89, 216, 0.8); }
  button.blue, a.button.blue {
    background-color: #4b8af9; }
    button.blue:hover, a.button.blue:hover {
      background-color: rgba(75, 138, 249, 0.8); }
  button.cyan, a.button.cyan {
    background-color: #90f3fe; }
    button.cyan:hover, a.button.cyan:hover {
      background-color: rgba(144, 243, 254, 0.8); }
  button.teal, a.button.teal {
    background-color: #91f9b9; }
    button.teal:hover, a.button.teal:hover {
      background-color: rgba(145, 249, 185, 0.8); }
  button.green, a.button.green {
    background-color: #b0fc90;
    color: #284354; }
    button.green:hover, a.button.green:hover {
      background-color: rgba(176, 252, 144, 0.8); }
  button.yellow, a.button.yellow {
    background-color: #ffd67b; }
    button.yellow:hover, a.button.yellow:hover {
      background-color: rgba(255, 214, 123, 0.8); }
  button.orange, a.button.orange {
    background-color: #ffa780; }
    button.orange:hover, a.button.orange:hover {
      background-color: rgba(255, 167, 128, 0.8); }
  button.white, a.button.white {
    background-color: white; }
    button.white:hover, a.button.white:hover {
      background-color: rgba(255, 255, 255, 0.8); }
  button.black, a.button.black {
    background-color: #141d23; }
    button.black:hover, a.button.black:hover {
      background-color: rgba(20, 29, 35, 0.8); }
  button.success, a.button.success {
    background-color: #3cd380; }
    button.success:hover, a.button.success:hover {
      background-color: rgba(60, 211, 128, 0.8); }
  button.error, a.button.error {
    background-color: #d83636; }
    button.error:hover, a.button.error:hover {
      background-color: rgba(216, 54, 54, 0.8); }
  button.info, a.button.info {
    background-color: #23518c; }
    button.info:hover, a.button.info:hover {
      background-color: rgba(35, 81, 140, 0.8); }
  button.warning, a.button.warning {
    background-color: #f2d027; }
    button.warning:hover, a.button.warning:hover {
      background-color: rgba(242, 208, 39, 0.8); }

.icon, span.icon {
  display: inline-block;
  color: #284354;
  font-size: inherit; }
  .icon.white, span.icon.white {
    color: white; }
  .icon.black, span.icon.black {
    color: #141d23; }
  .icon.red, span.icon.red {
    color: #f97a7a; }
  .icon.pink, span.icon.pink {
    color: #d952aa; }
  .icon.violet, span.icon.violet {
    color: #c892f7; }
  .icon.purple, span.icon.purple {
    color: #7759d8; }
  .icon.blue, span.icon.blue {
    color: #4b8af9; }
  .icon.cyan, span.icon.cyan {
    color: #90f3fe; }
  .icon.teal, span.icon.teal {
    color: #91f9b9; }
  .icon.green, span.icon.green {
    color: #b0fc90; }
  .icon.yellow, span.icon.yellow {
    color: #ffd67b; }
  .icon.orange, span.icon.orange {
    color: #ffa780; }

main {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  background-color: #FFF;
  position: relative; }
  main.login {
    height: 100%;
    display: flex; }
    main.login .spacer {
      width: 59%; }
    main.login .form {
      width: 40%;
      max-width: 450px;
      padding: 50px;
      text-align: left; }
      main.login .form img.logo {
        display: block;
        margin: 0 auto; }
      main.login .form .login-button {
        margin: 20px 0;
        width: 100%;
        display: block; }
      main.login .form p {
        padding: 10px;
        font: normal 300 14px montserrat, sans-serif; }

table.table {
  width: 100%;
  border: none; }
  table.table tbody tr td {
    border: none;
    padding: 5px; }

header {
  font-size: 16px;
  height: 50px;
  border-bottom: solid 1px #141d23;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #FFFFFF; }

aside.sidebar {
  border-right: solid 1px #141d23;
  width: 180px;
  height: 100%;
  position: fixed;
  float: left;
  left: 0;
  z-index: 10;
  padding: 50px 0 0 0;
  background-color: #FFFFFF;
  transition: all 0.3s ease-out; }
  aside.sidebar.hide {
    margin-left: -180px; }
  aside.sidebar ul {
    margin: 0;
    padding: 0; }
    aside.sidebar ul li {
      display: block;
      transition: all 0.3s ease-out; }
      aside.sidebar ul li a {
        opacity: 0.5;
        color: #141d23;
        display: block;
        padding: 10px 10px 10px 25px; }
        aside.sidebar ul li a:hover {
          background-color: rgba(20, 29, 35, 0.3); }
        aside.sidebar ul li a.current {
          opacity: 1;
          background-color: rgba(20, 29, 35, 0.1); }
        aside.sidebar ul li a.disabled, aside.sidebar ul li a[disabled] {
          opacity: 0.25; }
        aside.sidebar ul li a.parent {
          opacity: 1;
          font-weight: 700; }
      aside.sidebar ul li ul li a {
        padding: 10px 10px 10px 40px; }

.content {
  flex-grow: 1; }
  .content .container {
    padding: 10px; }

.tabi-gallery {
  width: 100%;
  padding: 10px;
  display: block;
  flex-basis: auto;
  flex-grow: 10;
  padding: 70px 0 0 0; }
  .tabi-gallery ul {
    margin: 0;
    padding: 0;
    padding: 0 20px 30px;
    position: relative;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    align-items: center; }

.tabi-item {
  flex: 0 0 100vw;
  background-position: center center;
  background-size: cover;
  position: relative;
  max-width: 320px;
  max-height: 560px;
  perspective: 600px;
  scroll-snap-align: center;
  height: 100vh;
  width: 100vw;
  order: 49;
  overflow: hidden;
  border-radius: 12px;
  border: solid 2px #37474F;
  background-color: #FFF; }
  .tabi-item.add-new {
    position: relative;
    display: inline-flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
    flex-direction: column;
    border: solid 2px #1976d2;
    background-color: rgba(25, 118, 210, 0.5); }
    .tabi-item.add-new.from-template {
      border: solid 2px #F57C00;
      background-color: rgba(245, 124, 0, 0.5); }
    .tabi-item.add-new button, .tabi-item.add-new a {
      width: 100%;
      text-align: center;
      background-color: transparent;
      color: #FFF;
      border: none;
      font-size: 24px; }
      .tabi-item.add-new button .icon.icon-add, .tabi-item.add-new a .icon.icon-add {
        font-size: 40px; }
  .tabi-item .tabi-flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.5s ease-out;
    transform-style: preserve-3d; }
    .tabi-item .tabi-flip-card .tabi-card-content {
      transition: all 0.3s ease-out; }
    .tabi-item .tabi-flip-card.flipped {
      transform: rotateY(180deg); }
      .tabi-item .tabi-flip-card.flipped .front .tabi-card-content {
        opacity: 0; }
      .tabi-item .tabi-flip-card.flipped .back .tabi-card-content {
        opacity: 1; }
    .tabi-item .tabi-flip-card .front {
      z-index: 2;
      backface-visibility: hidden;
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #141d23; }
      .tabi-item .tabi-flip-card .front .tabi-card-content {
        opacity: 1; }
    .tabi-item .tabi-flip-card .back {
      z-index: 1;
      backface-visibility: hidden;
      width: 100%;
      height: 100%;
      position: absolute;
      background-color: #284354;
      transform: rotateY(180deg); }
      .tabi-item .tabi-flip-card .back .tabi-card-content {
        opacity: 0; }
  .tabi-item .tabi-actions {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px;
    border-radius: 8px;
    background-color: rgba(20, 29, 35, 0.8);
    color: #FFF;
    z-index: 100; }
    .tabi-item .tabi-actions a.button, .tabi-item .tabi-actions button {
      padding: 6px; }
  .tabi-item .tabi-name {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    height: 42px;
    padding: 9px;
    border-radius: 8px;
    background-color: rgba(20, 29, 35, 0.8);
    color: #FFF;
    display: flex;
    z-index: 100;
    align-items: center;
    justify-content: center; }
    .tabi-item .tabi-name:hover, .tabi-item .tabi-name:focus, .tabi-item .tabi-name:active {
      background-color: rgba(20, 29, 35, 0.8); }
    .tabi-item .tabi-name img.tabi-icon {
      width: 24px;
      height: 24px;
      border-radius: 100px; }
    .tabi-item .tabi-name h2 {
      font-size: 14px;
      white-space: nowrap;
      margin: 0 0 0 5px; }

.media-group .media-thumb-preview {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  cursor: pointer;
  width: 150px;
  height: 150px;
  margin: 5px 0;
  padding: 10px;
  background-color: rgba(40, 67, 84, 0.1);
  border: solid 3px #284354;
  transition: all 0.3s ease-out;
  place-self: center;
  position: relative;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat; }

.media-library {
  width: 70vw;
  max-width: 1000px;
  min-width: 880px;
  background-color: white;
  padding: 10px;
  border-radius: 8px; }
  .media-library .media-library-header {
    flex-basis: 100%; }
    .media-library .media-library-header h3 {
      font-size: 28px;
      font-weight: 100;
      margin: 10px 0; }
    .media-library .media-library-header button {
      position: absolute;
      top: 0;
      right: 15px;
      width: 36px;
      height: 36px; }
  .media-library .media-library-body {
    width: 100%;
    display: flex;
    flex-direction: row; }
  .media-library .media-library-footer {
    width: 100%;
    padding: 5px;
    margin: 10px 0;
    background-color: #42708c;
    color: #FFFFFF;
    text-align: right; }
  .media-library .media-library-new-file {
    flex-grow: 1;
    width: 200px;
    padding: 10px;
    text-align: center;
    background-color: rgba(40, 67, 84, 0.1);
    border-radius: 10px; }
    .media-library .media-library-new-file h3 {
      font-size: 20px;
      font-weight: 600;
      padding: 5px; }
    .media-library .media-library-new-file h4 {
      font-size: 12px;
      font-weight: 600;
      padding: 5px;
      color: rgba(40, 67, 84, 0.7); }
    .media-library .media-library-new-file label.media_file_upload_button {
      margin: 10px auto;
      padding: 5px;
      border-radius: 8px;
      display: block;
      font-size: 18px;
      text-align: center;
      width: 100px;
      background-color: #b0fc90;
      transition: all 0.3s ease-out;
      cursor: pointer;
      color: #284354;
      font-weight: 300; }
      .media-library .media-library-new-file label.media_file_upload_button:hover {
        background-color: #3cd380; }
      .media-library .media-library-new-file label.media_file_upload_button:active {
        background-color: #91f9b9; }
    .media-library .media-library-new-file form input[type='file'] {
      opacity: 0;
      position: absolute;
      z-index: -1; }
    .media-library .media-library-new-file .selected-asset {
      width: 324px;
      height: 80px;
      background-color: rgba(255, 255, 255, 0.1);
      display: inline-table; }
  .media-library .media-library-thumbs {
    height: 100%;
    overflow-y: scroll;
    position: relative;
    transition: all 0.3s ease-out;
    z-index: 1;
    flex-grow: 100;
    background-color: rgba(40, 67, 84, 0.1);
    border-radius: 10px;
    margin: 0 0 0 10px;
    padding: 10px;
    max-height: 460px; }
    .media-library .media-library-thumbs .thumbs {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      margin: 0;
      padding: 0; }
      .media-library .media-library-thumbs .thumbs .thumb {
        border-radius: 8px;
        cursor: pointer;
        width: 150px;
        height: 150px;
        margin: 5px 0;
        padding: 10px;
        border: solid 3px #284354;
        transition: all 0.3s ease-out;
        place-self: center;
        position: relative;
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #284354;
        background-blend-mode: luminosity; }
        .media-library .media-library-thumbs .thumbs .thumb[disabled] {
          cursor: no-drop;
          background-color: rgba(40, 67, 84, 0.3);
          border: solid 3px #284354; }
          .media-library .media-library-thumbs .thumbs .thumb[disabled] .image .oct-container .oct {
            background-color: #141d23;
            background-blend-mode: luminosity; }
        .media-library .media-library-thumbs .thumbs .thumb button.select-thumb {
          position: absolute;
          width: 100%;
          height: 100%;
          background-color: transparent;
          top: 0;
          left: 0;
          cursor: pointer;
          z-index: 10; }
          .media-library .media-library-thumbs .thumbs .thumb button.select-thumb:hover {
            background-color: rgba(20, 29, 35, 0.1); }
        .media-library .media-library-thumbs .thumbs .thumb button.trash-thumb {
          position: absolute;
          top: 5px;
          right: 5px;
          background-color: #f97a7a;
          color: #FFFFFF; }
        .media-library .media-library-thumbs .thumbs .thumb.selected {
          border: solid 10px #f2d027;
          background-blend-mode: normal; }
        .media-library .media-library-thumbs .thumbs .thumb:hover {
          border: solid 5px #90f3fe;
          background-color: rgba(144, 243, 254, 0.5); }
          .media-library .media-library-thumbs .thumbs .thumb:hover.selected {
            border: solid 10px #b0fc90; }
        .media-library .media-library-thumbs .thumbs .thumb:focus, .media-library .media-library-thumbs .thumbs .thumb:active {
          border: solid 5px #b0fc90;
          background-color: rgba(75, 138, 249, 0.5); }
          .media-library .media-library-thumbs .thumbs .thumb:focus.selected, .media-library .media-library-thumbs .thumbs .thumb:active.selected {
            border: solid 10px #b0fc90; }

/*****************************************************************/
/* BUILDER */
/*****************************************************************/
main.builder {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative; }
  main.builder .map-drag {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    z-index: 1;
    background-color: rgba(20, 29, 35, 0.1); }
    main.builder .map-drag.grabbing {
      cursor: grabbing; }
  main.builder .milestones {
    z-index: 10;
    position: absolute;
    width: 0;
    height: 0; }
    main.builder .milestones .milestone {
      z-index: 20;
      position: absolute;
      width: 103px;
      height: 120px;
      cursor: move;
      transition: width 0.3s ease-out, height 0.3s ease-out; }
      main.builder .milestones .milestone:hover {
        z-index: 30; }
        main.builder .milestones .milestone:hover .connector {
          background-color: #b0fc90;
          border: solid 0.5px #42708c; }
      main.builder .milestones .milestone svg.hex {
        position: relative;
        z-index: 10;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        width: 100%;
        height: 100%; }
        main.builder .milestones .milestone svg.hex.hex-shadow {
          z-index: 1;
          position: absolute;
          top: 0;
          left: 0;
          background-image: none !important !important;
          opacity: 0;
          top: 0; }
        main.builder .milestones .milestone svg.hex polygon.milestone-placeholder {
          fill: rgba(144, 243, 254, 0);
          stroke: #42708c;
          stroke-width: 1;
          stroke-dasharray: 5px;
          position: relative;
          z-index: 10; }
        main.builder .milestones .milestone svg.hex polygon.milestone-shadow {
          fill: #141d23;
          stroke-width: 0; }
      main.builder .milestones .milestone .connector {
        position: absolute;
        z-index: 24;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: solid 1px #42708c;
        border-radius: 100em;
        background-color: rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-out, background-color 0.3s ease-out, border 0.3s ease-out;
        cursor: grab; }
        main.builder .milestones .milestone .connector._a {
          top: 0%;
          left: 50%; }
        main.builder .milestones .milestone .connector._b {
          top: 25%;
          left: 100%; }
        main.builder .milestones .milestone .connector._c {
          top: 75%;
          left: 100%; }
        main.builder .milestones .milestone .connector._d {
          top: 100%;
          left: 50%; }
        main.builder .milestones .milestone .connector._e {
          top: 75%;
          left: 0%; }
        main.builder .milestones .milestone .connector._f {
          top: 25%;
          left: 0%; }
        main.builder .milestones .milestone .connector.dragging {
          cursor: grabbing; }
        main.builder .milestones .milestone .connector.plugged {
          z-index: -1;
          visibility: hidden; }
      main.builder .milestones .milestone .outlet {
        visibility: hidden;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        background-color: #ffd67b;
        border-radius: 100em;
        transition: width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-out; }
        main.builder .milestones .milestone .outlet._a {
          top: 0%;
          left: 50%; }
        main.builder .milestones .milestone .outlet._b {
          top: 25%;
          left: 100%; }
        main.builder .milestones .milestone .outlet._c {
          top: 75%;
          left: 100%; }
        main.builder .milestones .milestone .outlet._d {
          top: 100%;
          left: 50%; }
        main.builder .milestones .milestone .outlet._e {
          top: 75%;
          left: 0%; }
        main.builder .milestones .milestone .outlet._f {
          top: 25%;
          left: 0%; }
        main.builder .milestones .milestone .outlet:hover {
          width: 20px;
          height: 20px;
          margin: -10px 0 0 -10px; }
        main.builder .milestones .milestone .outlet.plugged {
          z-index: -1;
          visibility: hidden; }
      main.builder .milestones .milestone.dragging {
        z-index: 25;
        cursor: grabbing;
        transition: all 0s linear; }
        main.builder .milestones .milestone.dragging svg.hex.hex-shadow {
          top: 10px;
          filter: blur(10px);
          transform: scale(1.1);
          opacity: 0.25; }
      main.builder .milestones .milestone.receiving .connector {
        z-index: -1;
        visibility: hidden; }
      main.builder .milestones .milestone.receiving .outlet {
        visibility: visible;
        z-index: 24; }
        main.builder .milestones .milestone.receiving .outlet.plugged {
          z-index: -1;
          visibility: hidden; }
  main.builder .connections {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    main.builder .connections svg.lines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      main.builder .connections svg.lines svg.line line {
        marker-start: url(#marker-start);
        marker-end: url(#marker-end);
        stroke: #141d23;
        stroke-dasharray: 10 5;
        animation: dash 3s linear infinite; }
  main.builder .spots {
    z-index: 5;
    position: absolute;
    width: 0;
    height: 0; }
    main.builder .spots .spot {
      position: absolute;
      width: 120px;
      height: 138px;
      transition: all 0.3s ease-out; }
      main.builder .spots .spot svg.hex {
        transform: scale(0.85);
        width: 100%;
        height: 100%;
        transition: all 0.3s ease-out; }
      main.builder .spots .spot.dragover svg.hex {
        transform: scale(1.15); }
        main.builder .spots .spot.dragover svg.hex polygon.outer {
          opacity: 0.35;
          stroke: rgba(20, 29, 35, 0.75);
          filter: blur(1.5px); }
        main.builder .spots .spot.dragover svg.hex polygon.inner {
          stroke: rgba(20, 29, 35, 0.75);
          stroke-width: 2;
          stroke-dasharray: 20 5 24 7;
          stroke-miterlimit: 10; }
      main.builder .spots .spot.dropped svg.hex {
        transform: scale(0.75); }
  main.builder .svg-markers {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: -1; }
    main.builder .svg-markers svg rect, main.builder .svg-markers svg polygon {
      fill: #141d23; }

svg.hex {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  svg.hex polygon {
    fill: rgba(40, 67, 84, 0.05);
    stroke: #141d23;
    stroke-width: 1;
    transition: all 0.3s ease-out; }
    svg.hex polygon.outer {
      opacity: 0.35;
      stroke: rgba(20, 29, 35, 0.5);
      fill: rgba(255, 255, 255, 0.35);
      stroke-dasharray: 7 2 14 2;
      stroke-miterlimit: 10; }
    svg.hex polygon.inner {
      stroke: rgba(20, 29, 35, 0.5);
      stroke-dasharray: 7 2 14 2;
      stroke-miterlimit: 10; }
  svg.hex path {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
    svg.hex path.add-sign {
      fill: #141d23; }

/* FRAMEWORK STYLES */
.loading {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("../images/hexacube.png");
  background-size: 50px;
  background-position: center center;
  background-repeat: no-repeat; }
  .loading.active {
    opacity: 1;
    visibility: visible; }
    .loading.active img {
      -webkit-animation-duration: 3s;
      -webkit-animation-direction: normal;
      -webkit-animation-fill-mode: forwards;
      -webkit-animation-timing-function: linear;
      -webkit-animation-name: loading-animation;
      -webkit-animation-iteration-count: infinite;
      -moz-animation-duration: 3s;
      -moz-animation-direction: normal;
      -moz-animation-fill-mode: forwards;
      -moz-animation-timing-function: linear;
      -moz-animation-name: loading-animation;
      -moz-animation-iteration-count: infinite;
      animation-duration: 3s;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-timing-function: linear;
      animation-name: loading-animation;
      animation-iteration-count: infinite; }
  .loading img {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80px;
    margin: -40px 0 0 -40px;
    transition: all 0.5s ease-out; }

.content-loader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  padding: 50px 0 0 0;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: rgba(20, 29, 35, 0.85);
  overflow: scroll; }
  .content-loader.active {
    visibility: visible;
    opacity: 1; }
  .content-loader .overlay-form {
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 10px; }

.tabi-upload-manager {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(20, 29, 35, 0.85); }
  .tabi-upload-manager.active {
    visibility: visible;
    opacity: 1; }

.feedback {
  position: fixed;
  z-index: 999998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out; }
  .feedback.active {
    visibility: visible;
    opacity: 1; }

.notifications {
  position: fixed;
  z-index: 999997;
  bottom: 10px;
  right: 10px;
  bottom: 20px;
  right: 10px; }
  .notifications ul {
    margin: 0;
    padding: 0;
    width: 300px; }
    .notifications ul li {
      display: flex;
      color: #FFF;
      background-color: #FFFFFF;
      margin: 20px 0 0 0;
      box-shadow: 0 0 15px -10px rgba(20, 29, 35, 0.5);
      border: solid 2px #284354;
      position: relative;
      min-height: 65px; }
      .notifications ul li .notification-image {
        order: 1;
        width: 65px;
        min-height: 65px;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat; }
      .notifications ul li .notification-message {
        order: 2;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7.5px;
        color: #FFFFFF; }
        .notifications ul li .notification-message .bar {
          width: 4px;
          background-color: #FFFFFF;
          border-radius: 100em;
          height: 50px; }
        .notifications ul li .notification-message .content {
          padding: 0 0 0 5px;
          vertical-align: middle; }
          .notifications ul li .notification-message .content h3 {
            color: #141d23;
            padding: 0 0 5px;
            font-size: 14px;
            font-weight: 500; }
          .notifications ul li .notification-message .content h4 {
            color: #284354;
            font-size: 12px;
            font-weight: 300; }
      .notifications ul li.success {
        border: solid 2px #3cd380; }
        .notifications ul li.success .notification-image {
          background-color: #3cd380; }
          .notifications ul li.success .notification-image .icon {
            color: #FFFFFF;
            font-size: 40px; }
      .notifications ul li.success-inv {
        border: solid 2px #3cd380;
        background-color: #141d23;
        color: #3cd380; }
        .notifications ul li.success-inv .notification-image {
          background-color: #141d23; }
          .notifications ul li.success-inv .notification-image .icon {
            color: #3cd380;
            font-size: 40px; }
        .notifications ul li.success-inv .notification-message .bar {
          background-color: #3cd380; }
        .notifications ul li.success-inv .notification-message .content h3 {
          color: #3cd380; }
        .notifications ul li.success-inv .notification-message .content h4 {
          color: #3cd380; }
      .notifications ul li.warning {
        border: solid 2px #f2d027;
        background-color: #f2d027;
        color: #141d23; }
        .notifications ul li.warning .notification-image {
          background-color: #f2d027; }
          .notifications ul li.warning .notification-image .icon {
            color: #141d23;
            font-size: 40px; }
        .notifications ul li.warning .notification-message .bar {
          background-color: #141d23; }
        .notifications ul li.warning .notification-message .content h3 {
          color: #141d23; }
        .notifications ul li.warning .notification-message .content h4 {
          color: #141d23; }
      .notifications ul li.error {
        border: solid 2px #d83636; }
        .notifications ul li.error .notification-image {
          background-color: #d83636; }
          .notifications ul li.error .notification-image .icon {
            color: #FFFFFF;
            font-size: 40px; }
      .notifications ul li.info {
        border: solid 2px #23518c; }
        .notifications ul li.info .notification-image {
          background-color: #23518c; }
          .notifications ul li.info .notification-image .icon {
            color: #FFFFFF;
            font-size: 40px; }
      .notifications ul li.danger {
        border: solid 2px #d83636;
        background-color: #141d23;
        color: #d83636; }
        .notifications ul li.danger .notification-image {
          background-color: #141d23; }
          .notifications ul li.danger .notification-image .icon {
            color: #d83636;
            font-size: 40px; }
        .notifications ul li.danger .notification-message .bar {
          background-color: #d83636; }
        .notifications ul li.danger .notification-message .content h3 {
          color: #141d23; }
        .notifications ul li.danger .notification-message .content h4 {
          color: #141d23; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .grid .grid-item {
    padding: 5px; }

.form label {
  padding: 5px 0;
  font: 700 14px montserrat, sans-serif;
  color: rgba(66, 112, 140, 0.6);
  cursor: pointer; }
.form input, .form textarea {
  font-size: 14px;
  padding: 10px;
  background-color: #FFF;
  border-radius: 4px;
  color: #284354;
  border: solid 1px rgba(20, 29, 35, 0.25); }
  .form input:focus, .form textarea:focus {
    border: solid 1px #141d23; }
.form button.button {
  display: inline-block;
  font: 700 14px montserrat, sans-serif; }
.form .input-group {
  padding: 10px 0; }
  .form .input-group input {
    width: 100%; }
.form .form-header {
  padding: 10px;
  background: #284354;
  color: #FFFFFF;
  position: sticky;
  top: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  .form .form-header h1 {
    font: 600 18px montserrat, sans-serif;
    color: #FFFFFF; }
.form .form-body .form-row {
  padding: 10px;
  margin: 5px 0;
  background-color: rgba(40, 67, 84, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease-out; }
  .form .form-body .form-row:nth-child(even) {
    background-color: rgba(40, 67, 84, 0.05); }
  .form .form-body .form-row:hover {
    background-color: rgba(75, 138, 249, 0.1); }
.form .form-body .input-group {
  width: 100%;
  display: block;
  margin: 5px 0; }
  .form .form-body .input-group input[type='text'], .form .form-body .input-group input[type='number'], .form .form-body .input-group input[type='password'], .form .form-body .input-group input[type='email'], .form .form-body .input-group textarea {
    width: 100%; }
.form .form-body .color-select {
  display: block;
  margin: 0;
  padding: 10px; }
  .form .form-body .color-select .color-swatch {
    display: inline-block;
    border-radius: 20px;
    border: solid 2px #141d23;
    transition: all 0.3s ease-out;
    width: 20px;
    height: 20px;
    margin: 5px; }
    .form .form-body .color-select .color-swatch.selected {
      width: 30px;
      height: 30px;
      border-radius: 0;
      margin: 0px 5px; }
    .form .form-body .color-select .color-swatch.red {
      background-color: #f97a7a; }
    .form .form-body .color-select .color-swatch.pink {
      background-color: #d952aa; }
    .form .form-body .color-select .color-swatch.violet {
      background-color: #c892f7; }
    .form .form-body .color-select .color-swatch.purple {
      background-color: #7759d8; }
    .form .form-body .color-select .color-swatch.blue {
      background-color: #4b8af9; }
    .form .form-body .color-select .color-swatch.cyan {
      background-color: #90f3fe; }
    .form .form-body .color-select .color-swatch.teal {
      background-color: #91f9b9; }
    .form .form-body .color-select .color-swatch.green {
      background-color: #b0fc90; }
    .form .form-body .color-select .color-swatch.yellow {
      background-color: #ffd67b; }
    .form .form-body .color-select .color-swatch.orange {
      background-color: #ffa780; }
.form .form-footer {
  padding: 20px;
  background: #284354;
  text-align: right;
  position: sticky;
  bottom: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

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

.svg-container {
  width: 0;
  height: 0;
  overflow: hidden; }

.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important; }

.grabbing {
  cursor: grabbing !important; }

/* Animations */
@keyframes loading-animation {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(720deg); } }
@keyframes dash {
  to {
    stroke-dashoffset: -100; } }
