/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box; }
  .theme-light html {
    background-color: #fff; }

body {
  margin: 0;
  text-align: left;
  overflow: hidden; }
  .theme-light body {
    background-color: #fff; }
  @media (max-width: 767px) {
    body {
      overflow: visible; } }
/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: border-box; }

/**
 * Basic styles for links
 */
a {
  text-decoration: none; }
  .theme-light a {
    color: #141414; }
  a:hover, a:active, a:focus {
    text-decoration: none; }
    .theme-light a:hover, .theme-light a:active, .theme-light a:focus {
      color: #141414; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

.theme-light li {
  color: #141414; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

@font-face {
  font-family: 'MorningGlory';
  src: local("MorningGlory"), url("../fonts/MorningGlory.ttf") format("truetype"); }

@font-face {
  font-family: 'GreatVibes';
  src: local("GreatVibes"), url("../fonts/GreatVibes.ttf") format("truetype"); }

.descriptive {
  font-family: 'Montserrat';
  font-weight: 50; }

/**
 * Basic typography style for copy text
 */
body {
  font-family: "Montserrat", sans-serif, Arial;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  cursor: default; }

p {
  font-family: "Montserrat", sans-serif, Arial;
  font-size: 0.875rem;
  letter-spacing: 0.02rem;
  font-weight: 300; }
  .theme-light p {
    color: #141414; }

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 5em;
  letter-spacing: 0.05em;
  line-height: 0.9; }
  .theme-light h1 {
    color: #141414; }
  @media (max-width: 767px) {
    h1 {
      font-size: 3em; } }
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 3em;
  letter-spacing: .05em;
  line-height: auto; }
  .theme-light h2 {
    color: #141414; }
  @media (max-width: 767px) {
    h2 {
      font-size: 2em; } }
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 2em; }
  .theme-light h3 {
    color: #141414; }
  @media (max-width: 767px) {
    h3 {
      font-size: 1.5em; } }
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.25em; }
  .theme-light h4 {
    color: #141414; }
  @media (max-width: 767px) {
    h4 {
      font-size: 1em; } }
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: .9em;
  margin-bottom: .5rem; }
  .theme-light h5 {
    color: #141414; }
  @media (max-width: 767px) {
    h5 {
      font-size: 0.8em; } }
.link-text {
  margin-bottom: 1rem; }

.box-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: .05em;
  line-height: auto;
  text-transform: uppercase; }
  .theme-light .box-text {
    color: #141414; }

a:link {
  color: grey;
  background-color: transparent;
  text-decoration: none; }

a:visited {
  color: grey;
  background-color: transparent;
  text-decoration: none; }

a:hover {
  color: black;
  background-color: transparent;
  text-decoration: none; }

a:active {
  color: black;
  background-color: transparent;
  text-decoration: none; }

.center-text {
  display: block;
  text-align: center;
  width: 100%; }

.center-text.invalid {
  color: #b00020; }

.page-title {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 800px;
  padding-top: 32px;
  padding-bottom: 48px;
  text-align: center; }
  .page-title .page-title-heading {
    font-size: 5em;
    font-weight: 500; }
    @media (max-width: 767px) {
      .page-title .page-title-heading {
        font-size: 3em; } }
  .page-title .page-title-description {
    margin: 0 auto;
    margin-top: 16px;
    font-size: 3em;
    font-weight: 300; }
    @media (max-width: 767px) {
      .page-title .page-title-description {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px; } }
.page-title-small {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 800px;
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center; }
  .page-title-small .page-title-heading {
    font-size: 5em;
    font-weight: 500; }
    @media (max-width: 767px) {
      .page-title-small .page-title-heading {
        font-size: 3em; } }
  .page-title-small .page-title-description {
    margin: 0 auto;
    margin-top: 16px;
    font-size: 3em;
    font-weight: 300; }
    @media (max-width: 767px) {
      .page-title-small .page-title-description {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px; } }
.section-header {
  text-align: center; }
  .section-header .section-text {
    max-width: 30em;
    margin: 0 auto; }

.section-heading {
  font-size: 3em;
  font-weight: 500;
  letter-spacing: .01em; }

.section-text {
  font-size: 22px;
  font-weight: 300; }

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: '';
  display: table; }

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */ }
  @media (min-width: 1200px) {
    .container {
      max-width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .container {
      max-width: 970px; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .container {
      max-width: 750px; } }
  @media (max-width: 767px) {
    .container {
      max-width: auto; } }
/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap; }

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.menu-icon {
  list-style-type: none;
  margin-top: 11px;
  margin-left: 10px;
  padding: 0px;
  position: absolute; }

.icon-bar {
  width: 20px;
  height: 2px;
  background-color: black;
  margin: 5px 0; }
  .theme-light .icon-bar {
    background-color: #000; }

.icon {
  width: 24px;
  height: 24px;
  display: block;
  background: center;
  background-repeat: no-repeat;
  background-size: contain; }

.icon-app {
  width: 80px;
  height: 80px;
  background-size: cover;
  display: block;
  z-index: 1000; }

.icon-rotated-45 {
  transform: rotate(45deg); }

.icon-close {
  position: absolute;
  right: 0px;
  top: 12px;
  right: 10px;
  cursor: pointer; }

.icon-large {
  width: 48px;
  height: 48px;
  display: block;
  background-size: cover; }

.icon-small {
  width: 12px;
  height: 12px;
  display: block;
  background-size: cover;
  display: inline-block; }

.icon-specs {
  width: 48px;
  height: 48px;
  background: center;
  background-repeat: no-repeat;
  background-size: contain; }

.icon-text {
  margin: 0;
  margin-top: 0.3rem;
  font-size: 0.7rem; }

.icon-nozzle {
  width: 35px;
  height: 35px;
  margin: auto;
  display: block;
  background: center;
  background-repeat: no-repeat;
  background-size: contain; }

.icon-logo {
  background-repeat: no-repeat;
  background-size: contain; }
  .theme-light .icon-logo {
    background-image: url("/static/svg/icons/byFlow-logo.svg"); }

.avatar-icon {
  float: right; }
  .theme-light .avatar-icon {
    background-image: url("/static/svg/icons/account-light.svg"); }

.theme-light .draw-icon {
  background-image: url("/static/svg/icons/edit-light.svg"); }

.theme-light .erase-icon {
  background-image: url("/static/svg/icons/eraser-light.svg"); }

.theme-light .huge-icon {
  background-image: url("/static/svg/icons/circle-huge-light.svg"); }

.theme-light .big-icon {
  background-image: url("/static/svg/icons/circle-large-light.svg"); }

.theme-light .medium-icon {
  background-image: url("/static/svg/icons/circle-light.svg"); }

.theme-light .small-icon {
  background-image: url("/static/svg/icons/circle-small-light.svg"); }

.theme-light .nozzle-32-icon {
  background-image: url("/static/svg/icons/height_0.32.svg"); }

.theme-light .nozzle-40-icon {
  background-image: url("/static/svg/icons/height_0.4.svg"); }

.theme-light .nozzle-48-icon {
  background-image: url("/static/svg/icons/height_0.48.svg"); }

.theme-light .nozzle-60-icon {
  background-image: url("/static/svg/icons/height_0.6.svg"); }

.theme-light .nozzle-80-icon {
  background-image: url("/static/svg/icons/height_0.8.svg"); }

.theme-light .contour-icon {
  background-image: url("/static/svg/icons/outline-light.svg"); }

.theme-light .fill-icon {
  background-image: url("/static/svg/icons/fill-light.svg"); }

.theme-light .invert-icon {
  background-image: url("/static/svg/icons/paint-drop-half-light.svg"); }

.theme-light .undo-icon {
  background-image: url("/static/svg/icons/undo-light.svg"); }

.theme-light .repair-icon {
  background-image: url("/static/svg/icons/wrench-light.svg"); }

.theme-light .plus-icon {
  background-image: url("/static/svg/icons/plus-light.svg"); }

.theme-light .minus-icon {
  background-image: url("/static/svg/icons/minus-light.svg"); }

.theme-light .download-icon {
  background-image: url("/static/svg/icons/download-light.svg"); }

.theme-light .leftalign-icon {
  background-image: url("/static/svg/icons/paragraph-light.svg"); }

.theme-light .centeralign-icon {
  background-image: url("/static/svg/icons/paragraph-centre-light.svg"); }

.theme-light .rightalign-icon {
  background-image: url("/static/svg/icons/paragraph-right-light.svg"); }

.theme-light .image-icon {
  background-image: url("/static/svg/icons/image-light.svg"); }

.theme-light .add-icon {
  background-image: url("/static/svg/icons/add.svg"); }

.theme-light .share-icon {
  background-image: url("/static/svg/icons/share-light.svg"); }

.help-icon {
  background-size: contain;
  background-repeat: no-repeat; }
  .theme-light .help-icon {
    background-image: url("/static/svg/icons/help-icon.svg"); }

.theme-light .warn-icon {
  background-image: url("/static/svg/icons/exclamation-triangle.svg"); }

.theme-light .text-icon {
  background-image: url("/static/svg/icons/text-light.svg"); }

.theme-light .edit-icon {
  background-image: url("/static/svg/icons/pencil-light.svg"); }

.theme-light .delete-icon {
  background-image: url("/static/svg/icons/delete-light.svg"); }

.theme-light .grid-icon {
  background-image: url("/static/svg/icons/grid-light.svg"); }

.theme-light .list-icon {
  background-image: url("/static/svg/icons/list-light.svg"); }

.theme-light .duplicate-icon {
  background-image: url("/static/svg/icons/duplicate-light.svg"); }

.theme-light .line-icon {
  background-image: url("/static/svg/icons/line-light.svg"); }

.theme-light .drawing-icon {
  background-image: url("/static/svg/icons/edit-light.svg"); }

.theme-light .center-icon {
  background-image: url("/static/svg/icons/add-in-area-light.svg"); }

.theme-light .mirror-vertical-icon {
  background-image: url("/static/svg/icons/mirror-ver-light.svg"); }

.theme-light .mirror-horizontal-icon {
  background-image: url("/static/svg/icons/mirror-hor-light.svg"); }

.theme-light .rotate-left-icon {
  background-image: url("/static/svg/icons/rotate-left-light.svg"); }

.theme-light .rotate-right-icon {
  background-image: url("/static/svg/icons/rotate-right-light.svg"); }

.theme-light .folder-icon {
  background-image: url("/static/svg/icons/folder-light.svg"); }

.theme-light .add-folder-icon {
  background-image: url("/static/svg/icons/add-folder-light-new.svg"); }

.theme-light .add-design-icon {
  background-image: url("/static/svg/icons/plus-box.svg"); }

.theme-light .upload-icon {
  background-image: url("/static/svg/icons/cloud-upload.svg"); }

.theme-light .duration-icon {
  background-image: url("/static/svg/icons/duration-light.svg"); }

.theme-light .dimensions-icon {
  background-image: url("/static/svg/icons/dimensions-light.svg"); }

.theme-light .weight-icon {
  background-image: url("/static/svg/icons/weight-light.svg"); }

.theme-light .star-icon {
  background-image: url("/static/svg/icons/star-light.svg"); }

.search-icon {
  background-repeat: no-repeat;
  background-size: contain; }
  .theme-light .search-icon {
    background-image: url("/static/svg/icons/search-light.svg"); }

.theme-light .cursor-51 {
  cursor: url("/static/svg/cursors/size-51.svg") 25.5 25.5 , auto; }

.theme-light .cursor-21 {
  cursor: url("/static/svg/cursors/size-21.svg") 10.5 10.5 , auto; }

.theme-light .cursor-7 {
  cursor: url("/static/svg/cursors/size-7.svg") 3.5 3.5 , auto; }

.theme-light .cursor-fill {
  cursor: url("/static/svg/icons/CursorFill.svg") , auto; }

.header-bar {
  display: grid;
  grid-template-columns: 3.5fr minmax(300px, 1fr);
  height: 3rem; }
  .theme-light .header-bar {
    background-color: #fff;
    border-bottom: 1px solid #e5e6eb; }

.header-bar-full {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 3rem;
  text-align: center;
  vertical-align: middle; }
  .theme-light .header-bar-full {
    background-color: #fff;
    border-bottom: 1px solid #e5e6eb; }

.title-bar {
  padding-top: 10px;
  margin: auto;
  height: 3rem;
  z-index: 200; }
  .theme-light .title-bar {
    color: #141414; }

.title-bar-full {
  padding-top: 10px;
  height: 3rem;
  z-index: 200; }
  .theme-light .title-bar-full {
    color: #141414; }

.logo-container {
  display: inline-flex;
  margin: 5 auto; }
  .logo-container h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1.25em;
    cursor: pointer;
    letter-spacing: .02em;
    padding-right: 10px; }

.user-bar {
  display: block;
  position: relative;
  height: 3rem; }
  .user-bar ul {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
    float: right; }
    .user-bar ul a {
      display: block;
      text-decoration: none;
      padding: .5rem;
      line-height: 24px;
      outline-style: none; }
      .theme-light .user-bar ul a {
        color: #141414; }
      .user-bar ul a .username {
        vertical-align: middle;
        margin-right: .5rem; }
      .user-bar ul a img {
        vertical-align: middle; }

@media (max-width: 767px) {
  .username {
    display: none; } }

.user-bar-full {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px; }
  .user-bar-full ul {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
    float: right; }
    .user-bar-full ul a {
      display: block;
      text-decoration: none;
      padding: .5rem;
      line-height: 24px;
      outline-style: none; }
      .theme-light .user-bar-full ul a {
        color: #141414; }
      .user-bar-full ul a .username {
        vertical-align: middle;
        margin-right: .5rem;
        font-weight: 500; }
      .user-bar-full ul a img {
        vertical-align: middle; }

.app {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "content sidebar";
  grid-template-columns: 3.5fr minmax(300px, 1fr);
  -ms-grid-columns: 3.5fr 1fr;
  -ms-grid-rows: 1fr;
  height: 100%; }
  .app .no-nav {
    height: 100vh;
    margin-right: -1.5rem; }
  .app .no-nav-sidebar {
    height: 100vh; }

.app-content {
  grid-area: content;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  border: none;
  outline: none; }
  .theme-light .app-content {
    background-color: #f5f6fa; }

.cube-background {
  z-index: -1;
  background-color: #ccc;
  background-size: 110vw;
  background-repeat: repeat;
  background-attachment: fixed;
  position: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
  height: calc(100% - 51px);
  opacity: 0.3; }

.main-page {
  height: auto; }
  @media (max-width: 767px) {
    .main-page {
      height: auto; } }
  .main-page .main-page-wrapper {
    padding: 6% 8% 6% 8%;
    height: 100%; }
    @media (max-width: 767px) {
      .main-page .main-page-wrapper {
        height: auto; } }
  .main-page .main-page-wrapper-full {
    height: calc(100vh - 3rem); }
    @media (max-width: 767px) {
      .main-page .main-page-wrapper-full {
        height: auto; } }
  .main-page .main-title {
    font-size: 5vw;
    z-index: 1;
    padding: 7vh 5vw 7vh 5vw; }
    @media (min-width: 768px) and (max-width: 992px) {
      .main-page .main-title {
        font-size: 8vw; } }
    @media (max-width: 767px) {
      .main-page .main-title {
        font-size: 10vw; } }
  .main-page .main-title-description {
    font-size: 70px;
    z-index: 1;
    padding: 7vh 5vw 7vh 5vw; }

.glassplate {
  height: calc(100vh - 52px);
  max-width: 100vw; }

.content-scroll {
  overflow: auto;
  max-height: calc(100vh - 3rem); }

.login-page {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  min-height: 100vh;
  text-align: center; }
  .login-page:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(93, 84, 240, 0.3);
    background: -webkit-linear-gradient(left, rgba(0, 168, 255, 0.3), rgba(185, 0, 255, 0.3));
    background: -o-linear-gradient(left, rgba(0, 168, 255, 0.3), rgba(185, 0, 255, 0.3));
    background: -moz-linear-gradient(left, rgba(0, 168, 255, 0.3), rgba(185, 0, 255, 0.3));
    background: linear-gradient(left, rgba(0, 168, 255, 0.3), rgba(185, 0, 255, 0.3));
    pointer-events: none; }
  .login-page .login-page-title {
    padding-top: 50px;
    position: relative; }
    .login-page .login-page-title h1 {
      color: #fff;
      text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3); }

.login-block {
  background-color: #fff;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: unset; }

.theme-light .manual-background {
  background-color: #fff; }

.app-grid {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "designer models management upload";
  width: 100%;
  height: 100%; }
  .app-grid .app-box {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */ }
    .app-grid .app-box .app-box-grid {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      display: -ms-grid;
      display: grid;
      grid-template-areas: "image" "text";
      grid-template-rows: minmax(0, 1fr) 20%;
      grid-template-columns: 1fr;
      -ms-grid-columns: 1fr;
      -ms-grid-rows: minmax(0, 1fr) 20%;
      border-radius: 10px;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
      transition: all 0.15s ease-out; }
      .theme-light .app-grid .app-box .app-box-grid {
        background-color: #fff;
        color: #141414; }
      .app-grid .app-box .app-box-grid:hover {
        transform: translateY(-5px) scale(1.03) translateZ(0); }
        .theme-light .app-grid .app-box .app-box-grid:hover {
          box-shadow: 0 24px 36px #cecece; }
      .app-grid .app-box .app-box-grid .app-box-image {
        grid-area: image;
        border-radius: 10px 10px 0px 0px;
        width: 100%;
        height: 100%; }
        .app-grid .app-box .app-box-grid .app-box-image img {
          border-radius: 10px 10px 0px 0px;
          object-fit: cover;
          object-position: center;
          width: 100%;
          height: 100%; }
      .app-grid .app-box .app-box-grid .app-box-text {
        grid-area: text;
        border-top: 4px solid;
        padding: 10px 0.6em;
        height: 100%;
        text-align: center;
        align-self: center;
        border-radius: 0px 0px 10px 10px;
        overflow: hidden;
        min-height: 100%; }
        .theme-light .app-grid .app-box .app-box-grid .app-box-text {
          border-color: #2ba8c2; }
        .theme-light .app-grid .app-box .app-box-grid .app-box-text {
          background-color: #fff; }
        .app-grid .app-box .app-box-grid .app-box-text h3 {
          font-size: 1.6em;
          font-weight: 700; }
          .theme-light .app-grid .app-box .app-box-grid .app-box-text h3 {
            color: #141414; }
        .app-grid .app-box .app-box-grid .app-box-text p {
          font-size: 1.1em; }
          .theme-light .app-grid .app-box .app-box-grid .app-box-text p {
            color: #141414; }
  @media (max-width: 767px) {
    .app-grid {
      grid-gap: calc(100px - 10vw);
      margin: 25px 25px;
      grid-template-columns: 1fr;
      -ms-grid-columns: 1fr;
      -ms-grid-rows: 1fr 50px 1fr 50px 1fr 50px 1fr;
      grid-template-areas: "designer" "models" "management" "upload"; }
      .app-grid .designer {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: designer; }
      .app-grid .models {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        grid-area: models; }
      .app-grid .management {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
        grid-area: management; }
      .app-grid .upload {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
        grid-area: upload; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .app-grid {
      grid-gap: 5vw;
      margin: 25px 25px;
      grid-template-columns: 1fr 1fr;
      -ms-grid-columns: 1fr 50px 1fr;
      -ms-grid-rows: 1fr 50px 1fr;
      grid-template-areas: "designer models" "management upload"; }
      .app-grid .designer {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: designer; }
      .app-grid .models {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        grid-area: models; }
      .app-grid .management {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        grid-area: management; }
      .app-grid .upload {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        grid-area: upload; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .app-grid {
      grid-gap: 5vw;
      margin: 25px 25px;
      grid-template-columns: 1fr 1fr;
      -ms-grid-columns: 1fr 50px 1fr;
      -ms-grid-rows: 1fr 50px 1fr;
      grid-template-areas: "designer models" "management upload"; }
      .app-grid .designer {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: designer; }
      .app-grid .models {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        grid-area: models; }
      .app-grid .management {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        grid-area: management; }
      .app-grid .upload {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        grid-area: upload; }
      .app-grid .app-box .app-box-grid .app-box-text h3 {
        font-size: 1.6em; } }
  @media (min-width: 1200px) {
    .app-grid {
      grid-gap: 4vw;
      margin: 0 5vw;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-areas: "designer models management upload";
      -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
      -ms-grid-rows: 1fr; }
      .app-grid .app-box .app-box-grid .app-box-text h3 {
        font-size: 1.2em; }
      .app-grid .designer {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: designer; }
      .app-grid .models {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        grid-area: models; }
      .app-grid .management {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
        grid-area: management; }
      .app-grid .upload {
        -ms-grid-row: 1;
        -ms-grid-column: 7;
        grid-area: upload; } }
  @media (min-width: 1450px) {
    .app-grid .app-box .app-box-grid .app-box-text h3 {
      font-size: 1.6em; } }
  .app-grid a:hover {
    text-decoration: none; }

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  @media (max-width: 767px) {
    .two-column-grid {
      grid-template-columns: 1fr; } }
.three-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; }
  @media (max-width: 767px) {
    .three-column-grid {
      grid-template-columns: 1fr; } }
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 50px;
  margin-top: 50px; }
  @media (max-width: 767px) {
    .model-grid {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .model-grid {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .model-grid {
      grid-template-columns: 1fr 1fr 1fr; } }
  .model-grid a:hover {
    text-decoration: none; }
  .model-grid .model-image {
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    position: relative;
    opacity: 1;
    transition: 0.3s ease; }
    .model-grid .model-image img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      object-fit: contain; }
    .model-grid .model-image .model-text {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      text-align: center;
      vertical-align: middle;
      opacity: 0;
      transition: 0.3s ease;
      text-align: center;
      vertical-align: middle; }
      .model-grid .model-image .model-text h2 {
        text-transform: uppercase;
        font-size: 1.5em;
        letter-spacing: 4px;
        font-weight: 600;
        text-align: center;
        overflow-wrap: break-word; }
      .model-grid .model-image .model-text .small-divider {
        margin-top: 7px;
        margin-bottom: 0px;
        display: block;
        width: 50px;
        height: 2px;
        margin-left: auto;
        margin-right: auto; }
        .theme-light .model-grid .model-image .model-text .small-divider {
          background-color: #2ba8c2; }
    .model-grid .model-image:hover img {
      opacity: 0.3; }
    .model-grid .model-image:hover .model-text {
      opacity: 1; }

.justify-content {
  display: flex;
  justify-content: center; }

.upload-image img {
  background-color: white;
  max-height: 60vh;
  max-width: 60vw; }

.main-background {
  background-repeat: no-repeat;
  background-position: right;
  background-size: 70%; }

.binary-images {
  display: grid;
  grid-template-columns: 1fr 1fr; }

.binary-1 {
  padding-left: 1rem;
  padding-right: 1rem; }

.binary-2 {
  padding-left: 1rem;
  padding-right: 1rem; }

.theme-light .glass-plate {
  fill: #cccccc; }

.theme-light .glass-circle {
  fill: #f5f6fa; }

.theme-light .background-light {
  background-color: #fff; }

.theme-light .background-dark {
  background-color: #f5f6fa; }

.selection-box {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-out;
  margin-left: 10px;
  margin-right: 10px; }
  .theme-light .selection-box {
    background-color: #f0f0f0;
    color: #141414; }
  .selection-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.15); }
  @media (max-width: 767px) {
    .selection-box {
      margin-bottom: 30px; } }
.section-content {
  padding-top: 48px;
  padding-bottom: 48px; }
  .section-content .section-content-right {
    margin-left: 5%;
    align-self: center; }
  .section-content .section-content-left {
    margin-right: 5%;
    align-self: center; }
  .section-content .section-image-right {
    margin-left: 5%; }
    @media (max-width: 767px) {
      .section-content .section-image-right {
        margin-left: 0%;
        margin-top: 30px; } }
    .section-content .section-image-right img {
      max-width: 100%; }
  .section-content .section-image-left {
    margin-right: 5%; }
    @media (max-width: 767px) {
      .section-content .section-image-left {
        margin-right: 0%;
        margin-bottom: 30px; } }
    .section-content .section-image-left img {
      max-width: 100%; }
  .section-content .section-text-left {
    text-align: right;
    padding-right: 10px; }
  .section-content .section-text-right {
    text-align: left;
    padding-left: 10px; }

.manual-images {
  display: grid;
  grid-template-columns: 1fr 1fr; }

.app-sidebar {
  padding: 0;
  grid-area: sidebar;
  -ms-grid-column: 2;
  -ms-grid-row: 1; }
  .theme-light .app-sidebar {
    background-color: #fff;
    border-left: 1px solid #e5e6eb; }

.modal-sidebar {
  padding: 0; }
  .theme-light .modal-sidebar {
    background-color: #fff;
    border-left: 1px solid #e5e6eb; }
  @media (max-width: 767px) {
    .modal-sidebar {
      display: none; } }
.sidebar {
  position: fixed;
  bottom: 52px;
  right: 0;
  z-index: 100;
  /* Behind the navbar */
  width: 100%; }

.sidebar-steps {
  right: 0;
  z-index: 100;
  /* Behind the navbar */ }

.sidebar-sticky {
  position: relative;
  right: 0;
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  height: calc(100vh - 3rem);
  overflow-x: hidden;
  overflow-y: auto;
  /* Scrollable contents if viewport is shorter than content. */ }

.sidebar-table {
  height: 100%;
  width: 100%;
  border-collapse: collapse; }

.sidebar-sticky-login {
  position: -webkit-sticky;
  position: sticky;
  height: calc(100vh - 60px);
  overflow-x: hidden;
  overflow-y: auto;
  /* Scrollable contents if viewport is shorter than content. */ }

.sidebar .sidebar-box {
  padding: 15px 30px 15px 30px; }
  .theme-light .sidebar .sidebar-box {
    border-bottom: 1px solid #e5e6eb; }
  .sidebar .sidebar-box.no-border {
    border-bottom: none; }

.sidebar-management {
  box-shadow: 4px 0px 4px -4px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-rows: auto 2fr 100px;
  align-items: stretch; }

.image-setting {
  display: none; }

.text-setting {
  display: none; }

.sidebar .nav-link {
  font-weight: 500;
  color: #333; }

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999; }

.sidebar .nav-link.active {
  color: #007bff; }

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit; }

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase; }

.sidebar-padding-tlr {
  padding: 30px 30px; }

.sidebar-bottom {
  bottom: 30px;
  position: absolute;
  padding: 0 30px;
  width: inherit; }

.sidebar-bottom-full {
  padding: 15px 30px 15px 30px;
  width: 100%;
  border-top: 1px solid #e5e6eb;
  background-color: #fff; }

.sidebar-login {
  position: relative;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 30px;
  padding-right: 30px; }

.step {
  width: 25%;
  position: relative;
  float: left;
  text-align: center; }
  .theme-light .step {
    border-bottom: 2px solid #fff; }

.theme-light .step_active {
  border-bottom: 2px solid #141414; }

.nav-menu {
  position: relative;
  float: none;
  background-color: none;
  cursor: pointer; }

.nav-link {
  display: block;
  padding: 18px 18px 18px 18px;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none; }
  .theme-light .nav-link {
    color: #141414; }
  .theme-light .nav-link {
    border-bottom: 1px solid #e5e6eb; }
  .nav-link:hover {
    text-decoration: none; }
    .theme-light .nav-link:hover {
      background-color: #e5e6eb; }
  .nav-link:visited, .nav-link:link {
    text-decoration: none; }

.theme-light .nav-link.active {
  background-color: #e5e6eb; }

.text-button-s {
  font-size: 75% !important; }

.text-button-m {
  font-size: 100% !important; }

.text-button-l {
  font-size: 150% !important; }

.text-button-align-l {
  text-align: left !important; }

.text-button-align-c {
  text-align: center !important; }

.text-button-align-r {
  text-align: right !important; }

.btn {
  display: inline-block;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:hover, .btn.hover {
    text-decoration: none; }
  .btn:focus, .btn.focus {
    outline: 0; }
  .btn.disabled, .btn:disabled {
    cursor: not-allowed; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none; }

.btn-sidebar-full {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 5px;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-width: 2px; }
  .theme-light .btn-sidebar-full {
    background-color: #fff;
    color: #141414;
    border: 1px solid #dee0e9; }
  .theme-light .btn-sidebar-full:hover {
    background-color: #f5f6fa;
    color: #141414; }

.btn-sidebar-half {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #3f3f3f;
  color: #777777;
  border-radius: 5px;
  padding: 0.75rem 0.5rem;
  margin-bottom: 5px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-width: 2px;
  display: inline-flex;
  justify-content: center; }
  .theme-light .btn-sidebar-half {
    background-color: #fff;
    color: #141414;
    border: 1px solid #dee0e9; }
  .theme-light .btn-sidebar-half:hover {
    background-color: #f5f6fa;
    color: #141414; }

.btn-spacing {
  margin-bottom: 5px; }
  .btn-spacing :first-child {
    margin: 0 5px 0 0;
    height: 100%; }
  .btn-spacing :nth-child(n + 2) {
    margin: 0 0 0 5px;
    height: 100%; }

.btn-spacing-bottom > * {
  display: block; }

.btn-sidebar-half-left-back {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  background-color: transparent;
  border: 3px solid #3f3f3f;
  color: #3f3f3f;
  padding: 0.75rem 2.25rem;
  float: left;
  letter-spacing: 2px; }

.btn-group {
  display: grid;
  border-radius: 5px;
  margin-bottom: 10px; }
  .theme-light .btn-group {
    background-color: #f5f6fa;
    border: 1px solid #dee0e9; }

.btn-group-2 {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr; }

.btn-group-2-space {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr; }
  .btn-group-2-space:first-child {
    margin-right: 5px; }
  .btn-group-2-space:last-child {
    margin-left: 5px; }

.btn-group-3 {
  grid-template-columns: 1fr 1fr 1fr; }

.btn-group-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr; }

.btn-group-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }

.btn-sidebar-group {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1em;
  background-color: transparent;
  border: none;
  color: #888;
  text-overflow: ellipsis;
  padding: 0.5rem 2.25rem;
  width: 100%;
  height: 100%;
  letter-spacing: 0.03rem;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin: 0; }
  .btn-sidebar-group:first-child {
    border-radius: 5px 0px 0px 5px; }
  .btn-sidebar-group:last-child {
    border-radius: 0px 5px 5px 0px; }
  .theme-light .btn-sidebar-group:not(.disabled):hover {
    background-color: #e5e6eb; }
  .theme-light .btn-sidebar-group.active {
    background-color: #e5e6eb;
    color: #141414; }
  .btn-sidebar-group.active p {
    font-weight: normal; }
  .btn-sidebar-group.dark {
    color: #000; }

.btn-group-layers {
  align-items: center;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  border-radius: 5px;
  margin-bottom: 10px; }
  .theme-light .btn-group-layers {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.button:focus,
button:focus {
  box-shadow: none !important; }

.btn-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  background-color: black;
  color: white;
  padding: 0.5rem 3rem;
  letter-spacing: 2px; }

.btn-rounded {
  border-radius: 5px; }

.btn-round {
  width: 50px;
  height: 50px;
  border-radius: 50%; }

.btn-yellow-border {
  cursor: pointer;
  border: 2px solid;
  background-color: #ffffff; }
  .theme-light .btn-yellow-border {
    border-color: #2ba8c2; }
  .btn-yellow-border.disabled {
    cursor: not-allowed;
    background-color: #999; }

.btn-icon div {
  margin-left: auto;
  margin-right: auto; }

.btn-vertical-align {
  display: grid;
  grid-template-columns: 1fr 4fr;
  vertical-align: middle;
  align-content: center; }
  .btn-vertical-align > * {
    vertical-align: middle;
    text-align: center; }

.btn-back {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.25rem;
  text-transform: uppercase;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  background-color: unset;
  color: white;
  margin-top: 10px;
  margin-left: 10px;
  position: absolute;
  padding: 0.75rem 0.75rem;
  width: 100px;
  z-index: 100;
  color: white; }
  .theme-light .btn-back {
    color: #141414;
    border: 1px solid #e5e6eb; }
  .theme-light .btn-back:hover {
    background-color: #fff;
    color: #2ba8c2;
    border: 1px solid #e5e6eb; }

.translate-button {
  background-color: white;
  border-radius: 5px;
  border: 2px solid black;
  width: 100%;
  padding: 2px 2px 2px 40px;
  margin-bottom: 10px;
  opacity: 0.6; }

a.sel_color_1 {
  border-radius: 10px;
  width: 18%;
  height: 50px;
  background-color: #e98223;
  border: 3px solid black;
  margin-right: 2%;
  float: left; }

a.sel_color_1:hover {
  border: none; }

a.sel_color_2 {
  border-radius: 10px;
  width: 18%;
  height: 50px;
  background-color: #fee3ac;
  border: 3px solid black;
  margin-right: 2%;
  float: left; }

a.sel_color_2:hover {
  border: none; }

a.sel_color_3 {
  border-radius: 10px;
  width: 18%;
  height: 50px;
  background-color: #d5771f;
  border: 3px solid black;
  margin-right: 2%;
  float: left; }

a.sel_color_3:hover {
  border: none; }

a.sel_color_4 {
  border-radius: 10px;
  width: 18%;
  height: 50px;
  background-color: #3d2314;
  border: 3px solid black;
  margin-right: 2%;
  float: left; }

a.sel_color_4:hover {
  border: none; }

a.sel_color_5 {
  border-radius: 10px;
  width: 18%;
  height: 50px;
  background-color: #231f20;
  border: 3px solid black;
  margin-right: 2%;
  float: left; }

a.sel_color_5:hover {
  border: none; }

a.translate-button {
  background-color: white;
  border-radius: 5px;
  border: 2px solid black;
  width: 100%;
  height: 100px;
  padding: 17px 22px 19px 22px;
  margin-bottom: 10px;
  opacity: 0.6; }

a.translate-button:hover {
  opacity: 1; }

a.username {
  color: white; }

.border-colorpalette {
  stroke-width: 2; }
  .theme-light .border-colorpalette {
    stroke: #141414; }

.btn-group-small {
  width: 100px;
  margin: auto; }

.btn-help {
  position: absolute;
  right: 10px;
  top: 10px; }

.btn-help:hover {
  transition: 0.2s ease-in;
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2); }

.btn-expert {
  position: absolute;
  right: 0px;
  top: 50%;
  border: solid 1px;
  border-radius: 5px 5px 0px 0px;
  padding: 5px 15px;
  color: black;
  margin: 0;
  -webkit-transform: translate(50%, -100%) rotate(90deg) scale(1);
  -o-transform: translate(50%, -100%) rotate(90deg) scale(1);
  -moz-transform: translate(50%, -100%) rotate(90deg) scale(1);
  transform: translate(50%, -100%) rotate(90deg) scale(-1);
  transform-origin: center bottom;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */ }
  .theme-light .btn-expert {
    background-color: #b1e3ed; }
  .theme-light .btn-expert {
    border-color: #b1e3ed; }

.btn-save {
  height: 3.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.1em;
  border-radius: 5px;
  margin-bottom: 5px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: white; }
  .theme-light .btn-save {
    background-color: #2ba8c2;
    border: #2ba8c2;
    color: #fff; }
  .theme-light .btn-save:hover {
    background-color: #259bb3;
    color: #fff; }

#save-download-file-btn:disabled {
  border: #bb0000; }
  .theme-light #save-download-file-btn:disabled {
    background-color: #b1e3ed; }

.btn-danger {
  background-color: #bb0000 !important;
  color: white !important; }
  .btn-danger:hover {
    background-color: #dd0000 !important; }

.btn-disabled {
  background-color: #ccc !important;
  cursor: not-allowed !important; }

.btn-round-corners {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.25rem;
  text-transform: uppercase;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border: none;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none; }
  .theme-light .btn-round-corners {
    background-color: #fff;
    color: #fff; }
  .theme-light .btn-round-corners:hover {
    background-color: #f5f6fa;
    color: #141414; }

.btn-border {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.25rem;
  text-transform: uppercase;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  background-color: unset; }
  .theme-light .btn-border {
    color: #141414;
    border: 1px solid #e5e6eb; }
  .theme-light .btn-border:hover {
    background-color: #fff;
    color: #2ba8c2; }

.btn-hidden {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent; }
  .btn-hidden:hover {
    cursor: pointer; }
    .theme-light .btn-hidden:hover {
      background-color: #fff;
      color: #2ba8c2;
      border: 1px solid #e5e6eb; }
  .btn-hidden:focus .btn-hidden:after .btn-hidden:active {
    border: none;
    outline: none;
    box-shadow: none; }

.fake-btn:hover {
  cursor: pointer; }

.btn-reset:hover {
  cursor: pointer; }

.btn-highlight {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none; }
  .theme-light .btn-highlight {
    background-color: #b1e3ed; }

#site-navigation {
  display: block;
  height: auto; }

#site-navigation #main-menu,
#site-navigation > input {
  display: none; }

#site-navigation > label {
  display: block;
  font-size: 36px;
  color: #000;
  position: absolute;
  left: 10px;
  top: 5px;
  width: 25px;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

#site-navigation > input:checked + #main-menu {
  display: block;
  clear: both;
  top: 3rem;
  margin-top: 0px;
  padding: 0px;
  width: 150px;
  left: 0px;
  position: absolute;
  background: #000;
  color: #fff; }

#site-navigation ul li {
  display: block;
  padding: 12px 10px;
  cursor: pointer;
  text-align: center; }
  #site-navigation ul li:hover {
    background: #333; }

#site-navigation a {
  text-decoration: none;
  color: #fff; }

.only-mobile {
  visibility: hidden; }
  @media (min-width: 768px) and (max-width: 992px) {
    .only-mobile {
      visibility: visible; } }
  @media (max-width: 767px) {
    .only-mobile {
      visibility: visible; } }
.not-mobile {
  visibility: visible; }

.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: none; }

.dropdown-menu {
  top: 100%;
  z-index: 1000;
  position: absolute;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  text-align: left;
  list-style: none;
  background-clip: padding-box;
  border-radius: .25rem; }
  .theme-light .dropdown-menu {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.open > .dropdown-menu {
  display: block; }

.dropdown-submenu {
  position: relative; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  margin-top: 0px;
  margin-left: 0px; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1.75rem;
  clear: both;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 1em; }
  .theme-light .dropdown-item {
    color: #141414; }
  .theme-light .dropdown-item:hover {
    background-color: #e5e6eb;
    color: #141414; }

.dropdown-menu-left {
  left: auto;
  right: 100%;
  position: absolute; }
  .theme-light .dropdown-menu-left {
    background-color: #f5f6fa;
    color: #141414; }
  .dropdown-menu-left .button {
    color: white; }

.dropdown-menu-right {
  left: auto;
  right: 0;
  position: absolute; }
  .theme-light .dropdown-menu-right {
    background-color: #f5f6fa;
    color: #141414; }

.dropdown_select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%; }

.dropdown_select:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #888 transparent;
  pointer-events: none;
  border-bottom-style: solid;
  border-top: none; }

.dropdown_select:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 10px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #888 transparent;
  pointer-events: none;
  margin-top: 7px;
  border-top-style: solid;
  border-bottom: none; }

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none; }

.dropdown_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 50px;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 17px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; }
  .theme-light .dropdown_select select {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }
  .dropdown_select select:focus {
    outline: none;
    text-decoration: none; }

/*
 * accordion
 */
.accordion {
  cursor: pointer;
  padding: 18px 30px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  background-color: unset; }
  .theme-light .accordion {
    color: #141414;
    border-top: 1px solid #e5e6eb;
    border-bottom: 1px solid #e5e6eb; }
  .theme-light .accordion:hover {
    background-color: #e5e6eb; }

.theme-light .accordion.active {
  background-color: #e5e6eb; }

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }
  .theme-light .panel {
    background-color: #e5e6eb; }

.panel-offset {
  padding: 18px 30px; }

.arrow {
  display: inline-block;
  padding: 4px;
  float: right;
  position: relative;
  border-style: solid;
  border-width: 0 2px 2px 0; }
  .theme-light .arrow {
    border-color: #141414; }

.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-right: 3px;
  margin-top: 4px; }

.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-right: 3px;
  margin-top: 1px; }

.select-field-container {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 300px; }

.select-field-container.full {
  width: 100%; }

.select-field {
  border-radius: 4px 4px 0 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 56px;
  overflow: hidden; }
  .theme-light .select-field {
    background-color: #fff; }
  .theme-light .select-field:hover {
    background-color: #e5e6eb; }
  .select-field .dropdown-icon {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='5' viewBox='7 10 10 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' opacity='.54' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat 50%;
    left: auto;
    right: 8px;
    position: absolute;
    bottom: 16px;
    width: 24px;
    height: 24px;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none; }
  .select-field .select-control {
    padding: 20px 52px 4px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    width: 100%;
    height: 56px;
    border: none;
    border-bottom: 1px solid;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appaerance: none;
    appearance: none; }
    .theme-light .select-field .select-control {
      background-color: #fff;
      border-color: #141414;
      color: #141414; }
  .select-field label {
    color: #9e9e9e;
    position: absolute;
    top: 6px;
    left: 16px;
    right: auto;
    font-size: 1rem;
    font-weight: 400;
    cursor: text;
    -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
    transition: color .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, color .2s ease-out;
    transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    text-align: left;
    -webkit-transform: translateY(12px);
    transform: translateY(12px); }
  .select-field label:not(.label-icon).active {
    -webkit-transform: translateY(0px) scale(0.8);
    transform: translateY(0px) scale(0.8);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }
  .select-field select:not(.browser-default):focus:not([readonly]) {
    border-bottom: 2px solid #479da9;
    -webkit-box-shadow: 0 1px 0 0 #479da9;
    box-shadow: 0 1px 0 0 #479da9; }
  .select-field select:not(.browser-default):focus:not([readonly]) + label {
    color: #479da9; }

.select-menu {
  display: none; }

.select-menu.active {
  display: block; }

/******************************   byFlow (C)  ********************************|
* Created by            : Joris Lodewijks
* Creation date         : 08-09-2020
*
* Description           : Featured item slider.
|*****************************************************************************/
.carousel {
  position: relative;
  width: 100%;
  height: 40vh; }

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  height: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 1s ease-in-out; }
  .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%; }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%); }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  color: white;
  text-align: center;
  opacity: 0.25;
  transition: opacity 0.15s ease; }
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    color: white;
    text-decoration: none;
    outline: 0;
    opacity: 0.6; }

.carousel-control-prev {
  left: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001)); }

.carousel-control-next {
  right: 0;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001)); }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: no-repeat 50% / 100% 100%; }

.theme-light .carousel-control-prev-icon {
  background-image: url("/static/svg/icons/arrow-left-dark.svg"); }

.theme-light .carousel-control-next-icon {
  background-image: url("/static/svg/icons/arrow-right-dark.svg"); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 50px;
  margin-left: 50px;
  list-style: none; }
  .carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 5px;
    margin-right: 10px;
    margin-left: 10px;
    text-indent: -999px;
    cursor: pointer;
    background-color: white;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.3;
    transition: opacity 1s ease; }
  .carousel-indicators .active {
    opacity: 1; }

/******************************   byFlow (C)  ********************************|
* Created by            : Joris Lodewijks
* Creation date         : 18-11-2020
*
* Description           : Right mouse button context menu for file management.
|*****************************************************************************/
.custom-context-menu {
  display: none;
  z-index: 1000;
  position: absolute;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 0px;
  white-space: nowrap;
  font-family: sans-serif;
  background: #fff;
  color: #333;
  padding: 0; }
  .custom-context-menu li {
    padding: 8px 12px;
    cursor: pointer; }
  .custom-context-menu li:hover {
    background-color: #def; }
  .custom-context-menu li.disabled {
    color: #aaa;
    cursor: auto; }

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */ }

.modal-scroll {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto; }

.modal-dialog-centered {
  min-height: 100%;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/* Modal Content */
.modal-content {
  padding: 0;
  width: 60%;
  margin: 0 auto; }

/* Modal Content/Box */
.modal-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  /* Could be more or less, depending on screen size */ }

.modal-medium {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  /* Could be more or less, depending on screen size */ }

/* Modal Header */
.modal-header {
  height: 50px;
  color: white;
  align-items: center;
  position: relative; }
  .theme-light .modal-header {
    background-color: #2ba8c2; }

.modal-title-bar {
  padding-top: 10px;
  margin: auto;
  text-align: center; }

/* Modal Body */
.modal-body {
  display: grid;
  grid-template-columns: 2fr 380px;
  text-align: center; }

.modal-body-upload {
  position: relative;
  text-align: center;
  height: 80vh; }
  @media (max-width: 767px) {
    .modal-body-upload {
      grid-template-columns: 1fr; } }
.modal-body-folders {
  text-align: center;
  height: 60vh;
  overflow-y: auto; }

.mobile-newProject {
  display: none; }
  @media (max-width: 767px) {
    .mobile-newProject {
      display: block; } }
/* Modal Image */
.modal-image {
  padding: 15px; }

/* Modal Text */
.modal-text {
  padding: 30px 30px; }

.modal-text > p {
  text-align: left;
  text-transform: none; }

.modal-small-content {
  padding: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0px 1px 1px 1px;
  border-color: #fff; }
  .theme-light .modal-small-content {
    background-color: #f5f6fa;
    border-color: #fff; }
  .theme-light .modal-small-content button {
    background-color: #fff; }
  .modal-small-content input {
    padding: 5px; }

.upload-container {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start; }
  @media (max-width: 767px) {
    .upload-container {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .upload-container {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .upload-container {
      grid-template-columns: 1fr 1fr; } }
.image-block {
  position: relative;
  display: block;
  width: 95%;
  height: 0;
  padding-bottom: 100%;
  margin: 5px;
  background-color: #fff;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

.image-block .icon-close {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 100;
  padding: 12px;
  cursor: pointer;
  opacity: 0;
  background-color: #830000;
  border-radius: 50%; }

.image-block:hover {
  cursor: pointer; }
  .image-block:hover .icon-close {
    opacity: 1; }

.project-block {
  position: relative;
  display: block;
  width: 95%;
  height: auto;
  margin: 5px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer; }
  @media (max-width: 767px) {
    .project-block {
      height: 250px; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .project-block {
      height: 200px; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .project-block {
      height: 200px; } }
.project-block .icon-close {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 100;
  padding: 12px;
  cursor: pointer;
  opacity: 0;
  background-color: #830000;
  border-radius: 50%; }

.project-block:hover .icon-close {
  opacity: 1; }

.project-block .icon-close:hover {
  background-color: #ff0000; }

.folder-block {
  display: block;
  position: relative;
  width: 100%;
  height: 100px;
  padding: 10px;
  margin: 5px;
  cursor: pointer; }
  .folder-block.selected {
    background-color: #e4e4e8; }
  .folder-block .folder-img {
    width: 100%;
    height: 80%; }
  .folder-block .folder-name {
    margin-top: 5px; }

p.warning {
  color: red;
  font-weight: bold; }

.upload-container .icon-close:hover {
  background-color: #ff0000; }

#save-modal-content {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
  background-color: #f5f6fa;
  border-color: #fff; }
  #save-modal-content #save-modal-main {
    grid-row: 1;
    padding: 30px;
    overflow-y: auto; }
    #save-modal-content #save-modal-main .upload-container {
      overflow: unset; }
  #save-modal-content #save-modal-footer {
    grid-row: 2;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    column-gap: 1rem;
    padding: 20px 30px;
    background-color: white; }
    #save-modal-content #save-modal-footer .filename-input {
      grid-column: 1;
      margin: 0;
      padding: 0.75rem; }
      #save-modal-content #save-modal-footer .filename-input.error {
        border: 1px solid red; }
        #save-modal-content #save-modal-footer .filename-input.error::placeholder {
          color: red;
          opacity: 1;
          /* Firefox */ }
        #save-modal-content #save-modal-footer .filename-input.error:-ms-input-placeholder {
          /* Internet Explorer 10-11 */
          color: red; }
        #save-modal-content #save-modal-footer .filename-input.error::-ms-input-placeholder {
          /* Microsoft Edge */
          color: red; }
    #save-modal-content #save-modal-footer .save-btn {
      grid-column: 2;
      margin: 0;
      padding: 0.75rem; }
    #save-modal-content #save-modal-footer .cancel-btn {
      grid-column: 3;
      margin: 0;
      padding: 0.75rem; }

#download-modal-content {
  background-color: #f5f6fa;
  border-color: #fff;
  padding: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0px 1px 1px 1px; }

#save-folder-warning {
  color: #f00;
  background-color: #ffecec;
  text-align: center;
  border: 1px solid #f5aca6;
  font-weight: 500;
  display: none; }

.text-field-container {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 300px; }

.text-field-container.full {
  width: 100%; }

.text-field {
  border-radius: 4px 4px 0 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 56px;
  overflow: hidden;
  margin-bottom: 5px; }
  .theme-light .text-field {
    background-color: #fff; }
  .theme-light .text-field:hover {
    background-color: #e5e6eb; }
  .text-field textarea:not(.browser-default),
  .text-field input[type="text"]:not(.browser-default),
  .text-field input[type="password"]:not(.browser-default) {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    outline: none;
    height: 100%;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 20px 16px 6px 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
    transition: border 0.3s, -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s, border 0.3s;
    transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 3s; }
    .theme-light .text-field textarea:not(.browser-default), .theme-light .text-field input[type="text"]:not(.browser-default), .theme-light .text-field input[type="password"]:not(.browser-default) {
      border-color: #141414;
      color: #141414; }
  .text-field textarea:not(.browser-default):focus:not([readonly]),
  .text-field input[type="text"]:not(.browser-default):focus:not([readonly]),
  .text-field input[type="password"]:not(.browser-default):focus:not([readonly]) {
    border-bottom: 2px solid #479da9;
    -webkit-box-shadow: 0 1px 0 0 #479da9;
    box-shadow: 0 1px 0 0 #479da9; }
  .text-field textarea:not(.browser-default).validate + label,
  .text-field input[type="text"]:not(.browser-default).validate + label,
  .text-field input[type="password"]:not(.browser-default).validate + label {
    width: 100%; }
  .text-field textarea:not(.browser-default):focus:not([readonly]) + label,
  .text-field input[type="text"]:not(.browser-default):focus:not([readonly]) + label,
  .text-field input[type="password"]:not(.browser-default):focus:not([readonly]) + label {
    color: #479da9;
    -webkit-transform: translateY(0px) scale(0.8);
    transform: translateY(0px) scale(0.8);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }
  .text-field textarea:not(.browser-default) + label:after,
  .text-field input[type="text"]:not(.browser-default) + label:after,
  .text-field input[type="password"]:not(.browser-default) + label:after {
    display: block;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-out, 0.2s color ease-out;
    transition: 0.2s opacity ease-out, 0.2s color ease-out; }
  .theme-light .text-field input[type="text"]:not(.browser-default)[readonly], .theme-light .text-field input[type="password"]:not(.browser-default)[readonly] {
    background-color: #e5e6eb; }
  .text-field label {
    color: #9e9e9e;
    position: absolute;
    top: 6px;
    left: 16px;
    right: auto;
    font-size: 1rem;
    font-weight: 400;
    cursor: text;
    -webkit-transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out, color 0.2s ease-out;
    transition: transform 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    text-align: left;
    -webkit-transform: translateY(12px);
    transform: translateY(12px); }
  .text-field label:not(.label-icon).active {
    -webkit-transform: translateY(0px) scale(0.8);
    transform: translateY(0px) scale(0.8);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }

.text-field.invalid label {
  color: #b00020; }

.text-field.invalid input[type="text"]:not(.browser-default),
.text-field.invalid input[type="password"]:not(.browser-default) {
  border-bottom: 2px solid #b00020;
  -webkit-box-shadow: 0 1px 0 0 #b00020;
  box-shadow: 0 1px 0 0 #b00020; }

.text-field.invalid input[type="text"]:not(.browser-default):focus:not([readonly]),
.text-field.invalid input[type="password"]:not(.browser-default):focus:not([readonly]) {
  border-bottom: 2px solid #b00020;
  -webkit-box-shadow: 0 1px 0 0 #b00020;
  box-shadow: 0 1px 0 0 #b00020; }

.text-field.invalid input[type="text"]:not(.browser-default):focus:not([readonly]) + label,
.text-field.invalid input[type="password"]:not(.browser-default):focus:not([readonly]) + label {
  color: #b00020; }

.text-field-helper-text {
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
  display: block;
  font-size: 0.75rem; }
  .theme-light .text-field-helper-text {
    color: #141414; }

.text-field-helper-text.invalid {
  color: #b00020; }

.form-text {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 17px;
  resize: vertical; }
  .theme-light .form-text {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

div .form-text-container input[type="text"] {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 17px; }
  .theme-light div .form-text-container input[type="text"] {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.form-text-small {
  margin-bottom: 5px;
  float: right;
  padding: 7px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  text-align: right; }
  .theme-light .form-text-small {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.form-label {
  display: block;
  float: left;
  width: 200px;
  vertical-align: middle; }
  .theme-light .form-label {
    color: #141414; }

.form-standard {
  border-radius: 5px;
  margin-top: 0;
  padding: 7px;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .theme-light .form-standard {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.renew-form textarea {
  resize: none; }

.dimension-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; }
  .dimension-form :first-child {
    margin-right: 5px; }
  .dimension-form :last-child {
    margin-left: 5px; }

.dimension-label {
  display: grid;
  grid-template-columns: 20px 1fr 35px;
  margin-bottom: 10px;
  padding: 7px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  align-items: center; }
  .dimension-label :first-child {
    text-align: left;
    opacity: 0.6;
    padding-left: 5px; }
  .dimension-label :last-child {
    text-align: right;
    padding-right: 5px; }
  .theme-light .dimension-label {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.height-label {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
  padding: 7px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  align-items: center; }
  .height-label :first-child {
    text-align: left;
    opacity: 0.6;
    padding-left: 5px; }
  .height-label :last-child {
    text-align: right;
    padding-right: 5px; }
  .theme-light .height-label {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.dimension-label input[type="number"] {
  background-color: unset;
  border: unset;
  opacity: 1;
  font-size: 14px;
  font-weight: 100;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  text-align: right;
  -moz-appearance: textfield;
  box-sizing: border-box; }
  .theme-light .dimension-label input[type="number"] {
    color: #141414; }

.dimension-label-layers {
  display: grid;
  padding: 7px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  align-items: center;
  height: 100%; }
  .dimension-label-layers :first-child {
    text-align: left;
    opacity: 0.6;
    padding-left: 5px; }
  .dimension-label-layers :last-child {
    text-align: left;
    padding-right: 5px; }
  .theme-light .dimension-label-layers {
    border-right: 1px solid #e5e6eb; }

.spinbox-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  text-align: center;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0px;
  -moz-appearance: textfield;
  border: none; }
  .theme-light .spinbox-number {
    background-color: #f5f6fa;
    color: #141414;
    border-left: 1px solid #dee0e9;
    border-right: 1px solid #dee0e9; }

textarea {
  resize: none; }

.slider {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #D2D2D2;
  outline: none;
  opacity: 0.7; }

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: white;
  cursor: pointer; }

.slider-style {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  height: 50px;
  border-radius: 5px;
  padding: 7px 15px 7px 15px; }
  .theme-light .slider-style {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.slider-style .title {
  flex: 0.5; }

.slider-style .rangeslider {
  flex: auto;
  margin-top: 3px; }

.slider-style .percentage_value {
  flex: 0.3;
  text-align: right; }

div.rangeslider {
  box-sizing: content-box;
  height: 2em;
  position: relative; }

div.rangeslider * {
  box-sizing: content-box; }

div.rangeslider div {
  position: absolute; }

div.rangeslider .rangeouter, div.rangeslider .rangeinner {
  height: 0.3em;
  margin: 0.75em 0; }

div.rangeslider .rangeouter {
  width: 100%;
  opacity: 0.7; }
  .theme-light div.rangeslider .rangeouter {
    background-color: #e5e6eb; }

div.rangeslider .rangeinner {
  width: 5em; }
  .theme-light div.rangeslider .rangeinner {
    background-color: #141414; }

div.rangeslider .rangeselector {
  margin-left: -0.9em;
  border-radius: 1.5em;
  height: 1.5em;
  width: 1.5em;
  top: 1.5px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }
  .theme-light div.rangeslider .rangeselector {
    background-color: #141414; }

div.rangeslider.disabled .rangeinner, div.rangeslider.disabled .rangeselector {
  background-color: #777 !important; }

/* Colour Animations */
div.rangeslider .rangeouter, div.rangeslider .rangeinner, div.rangeslider .rangeselector {
  -webkit-transition: background-color 200ms linear;
  -moz-transition: background-color 200ms linear;
  -o-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  transition: background-color 200ms linear; }

.ui-slider-handle {
  display: none; }

.dashboard-item {
  position: relative;
  height: 100%;
  padding: 10px; }
  .dashboard-item .widget {
    height: 100%;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    border-radius: 12px; }
    .dashboard-item .widget .widget-header .widget-title {
      font-size: 21px;
      font-weight: 400;
      color: #405169;
      padding: 0 20px;
      margin: 10px 0; }
    .dashboard-item .widget .widget-body {
      position: absolute;
      top: calc(20px + 1em + 10px + 20px);
      right: 30px;
      bottom: 20px;
      left: 30px; }
    .dashboard-item .widget .widget-info {
      position: absolute;
      top: 50%;
      left: 50%;
      display: inline-block;
      padding: 0;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center; }
      .dashboard-item .widget .widget-info .widget-info-value {
        font-size: 34px;
        color: #405169;
        line-height: 1.35;
        white-space: nowrap; }
      .dashboard-item .widget .widget-info .widget-info-label {
        font-size: 14px;
        color: #a0bce4;
        margin-top: 6px; }
      .dashboard-item .widget .widget-info .widget-info-small {
        font-size: 14px; }

.dashboard-item-width-2 {
  width: 20%;
  float: left; }
  @media (min-width: 768px) and (max-width: 992px) {
    .dashboard-item-width-2 {
      width: 100%; } }
  @media (max-width: 767px) {
    .dashboard-item-width-2 {
      width: 100%; } }
.dashboard-item-width-3 {
  width: 30%;
  float: left; }
  @media (min-width: 768px) and (max-width: 992px) {
    .dashboard-item-width-3 {
      width: 100%; } }
  @media (max-width: 767px) {
    .dashboard-item-width-3 {
      width: 100%; } }
.dashboard-item-width-4 {
  width: 40%;
  float: left; }
  @media (min-width: 768px) and (max-width: 992px) {
    .dashboard-item-width-4 {
      width: 100%; } }
  @media (max-width: 767px) {
    .dashboard-item-width-4 {
      width: 100%; } }
.dashboard-item-width-5 {
  width: 50%;
  float: left; }
  @media (min-width: 768px) and (max-width: 992px) {
    .dashboard-item-width-5 {
      width: 100%; } }
  @media (max-width: 767px) {
    .dashboard-item-width-5 {
      width: 100%; } }
.dashboard-item-width-6 {
  width: 60%;
  float: left; }
  @media (min-width: 768px) and (max-width: 992px) {
    .dashboard-item-width-6 {
      width: 100%; } }
  @media (max-width: 767px) {
    .dashboard-item-width-6 {
      width: 100%; } }
.dashboard-item-height-2 {
  height: 200px; }

.dashboard-item-height-3 {
  height: 300px; }

.dashboard-item-height-4 {
  height: 400px; }

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.pace-inactive {
  display: none; }

.pace .pace-progress {
  position: fixed;
  z-index: 2000;
  top: 2.7rem;
  right: 100%;
  width: 100%;
  height: 4px; }
  .theme-light .pace .pace-progress {
    background-color: #2ba8c2; }

/******************************   byFlow (C)  ********************************|
* Created by            : Joris Lodewijks
* Creation date         : 19-11-2020
*
* Description           : Hover over items tooltip functionality.
|*****************************************************************************/
.tooltip {
  position: relative;
  display: inline-block; }
  .tooltip.dotted {
    border-bottom: 1px dotted gray; }
  .tooltip .tooltiptext {
    position: absolute;
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    top: 100%;
    left: 50%;
    margin-top: 20px;
    margin-left: -60px;
    z-index: 1; }
    .tooltip .tooltiptext.small {
      font-size: x-small; }
    .tooltip .tooltiptext::after {
      content: " ";
      position: absolute;
      bottom: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent black transparent; }
  .tooltip:hover .tooltiptext {
    visibility: visible; }

.syringe-body {
  stroke-width: 3; }
  .theme-light .syringe-body {
    fill: none; }
  .theme-light .syringe-body {
    stroke: #000; }

.sidenav {
  box-shadow: 0px 0px 1px 1px #e5e6eb inset;
  height: 80%;
  /* 100% Full-height */
  width: 0;
  /* 0 width - change this with JavaScript */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
  background-color: white;
  padding: 0px;
  position: absolute;
  right: -0px;
  top: 50%;
  border-radius: 5px 0px 0px 5px;
  -webkit-transform: translate(0, -50%) rotate(0) scale(1);
  -o-transform: translate(0, -50%) rotate(0) scale(1);
  -moz-transform: translate(0%, -50%) rotate(0) scale(1);
  transform: translate(0%, -50%) rotate(0) scale(1);
  transform-origin: center bottom;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.1em;
  overflow: auto; }

.infill-slider {
  margin: 0;
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0); }
  .infill-slider:hover {
    opacity: 1; }
  .infill-slider:disabled {
    opacity: 0.6;
    cursor: not-allowed; }

.infill-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5px;
  height: 25px;
  cursor: pointer; }
  .theme-light .infill-slider::-webkit-slider-thumb {
    background-color: #2ba8c2; }

.infill-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer; }
  .theme-light .infill-slider::-moz-range-thumb {
    background-color: #2ba8c2; }

.track {
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #DDDDDD;
  position: absolute;
  pointer-events: none; }
  .theme-light .track {
    background-color: #f5f6fa;
    color: #141414; }
  .track #track-limit-left {
    width: 0%;
    height: 100%;
    border-radius: 5px 0 0 5px;
    background: #E2564A;
    left: 0;
    position: absolute; }
  .track #track-limit-right {
    width: 40%;
    height: 100%;
    border-radius: 0 5px 5px 0;
    right: 0;
    background: #E2564A;
    position: absolute; }

.ticks {
  position: relative;
  display: flex;
  justify-content: space-between;
  top: 15px;
  font-size: 0.8rem;
  padding: 10px 0; }

.tick {
  position: relative;
  display: flex;
  justify-content: center;
  width: 0px;
  opacity: 0.6; }

.settings-dropdown {
  border-radius: 5px;
  cursor: pointer;
  display: block;
  font-weight: normal;
  height: 40px;
  transition: all 0.2s ease-in-out;
  width: 100%;
  opacity: 0.6; }
  .theme-light .settings-dropdown {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }
  .settings-dropdown select {
    display: none; }
  .settings-dropdown:disabled {
    opacity: 0.6;
    cursor: not-allowed; }

.expert-input-field {
  border-radius: 5px; }
  .theme-light .expert-input-field {
    background-color: #f5f6fa;
    color: #141414;
    border: 1px solid #e5e6eb; }

.setting-warning {
  padding: 10px;
  font-size: 0.8em;
  border-radius: 5px;
  color: #9f6000;
  background-color: #feefb3; }
  .setting-warning i {
    vertical-align: text-top;
    filter: invert(31%) sepia(98%) saturate(1007%) hue-rotate(18deg) brightness(95%) contrast(101%); }

#layer-range-amount {
  border: 0;
  font-weight: bold;
  width: 100px; }
  .theme-light #layer-range-amount {
    color: #2ba8c2; }

#dual-slider {
  height: 0.8em;
  position: relative;
  text-align: left;
  -webkit-appearance: none;
  margin: auto;
  width: calc(100% - 1.2em);
  border-radius: 5px;
  outline: none;
  background: #e5e6eb; }
  .theme-light #dual-slider {
    color: #141414;
    border: 1px solid #e5e6eb; }
  #dual-slider .ui-slider-range {
    left: 0%;
    width: 100%;
    top: 0px;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: block; }
    .theme-light #dual-slider .ui-slider-range {
      background-color: #f5f6fa;
      color: #141414; }
  #dual-slider .ui-slider-handle {
    display: inline-block;
    left: 0%;
    top: -0.3em;
    margin-left: -0.8em;
    position: relative;
    z-index: 2;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-appearance: none;
    appearance: none;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    cursor: move; }
    .theme-light #dual-slider .ui-slider-handle {
      background-color: #2ba8c2; }

#orbitcontrols-info {
  font-style: italic;
  font-weight: 300;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1; }

#expert-bar {
  width: 0%; }
  #expert-bar.expanded {
    width: 25%; }
    @media (max-width: 767px) {
      #expert-bar.expanded {
        width: 35%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      #expert-bar.expanded {
        width: 35%; } }
    @media (min-width: 992px) and (max-width: 1200px) {
      #expert-bar.expanded {
        width: 35%; } }
#expert-button {
  right: 0%; }
  #expert-button.expanded {
    right: 25%; }
    @media (max-width: 767px) {
      #expert-button.expanded {
        right: 35%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      #expert-button.expanded {
        right: 35%; } }
    @media (min-width: 992px) and (max-width: 1200px) {
      #expert-button.expanded {
        right: 35%; } }
#file-save-bar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-bottom: 1rem;
  column-gap: 1rem;
  height: 4rem; }
  #file-save-bar .form-text {
    grid-column: 1;
    height: 100%;
    padding: 0 1rem; }
  #file-save-bar .dropdown_select {
    grid-column: 2;
    height: 100%; }
    #file-save-bar .dropdown_select select {
      height: 100%; }

#show-travel-box {
  margin-top: 1.5rem; }
  #show-travel-box .checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #show-travel-box .checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    #show-travel-box .checkbox .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      color: #fff;
      font-weight: bolder;
      border-radius: 4px; }
      .theme-light #show-travel-box .checkbox .checkmark {
        border: 1px solid #e5e6eb; }
    .theme-light #show-travel-box .checkbox input:checked ~ .checkmark {
      background-color: #2ba8c2; }
    #show-travel-box .checkbox input:checked ~ .checkmark:after {
      display: block; }
    #show-travel-box .checkbox .checkmark:after {
      content: "\2713";
      position: relative;
      display: none;
      width: 20px;
      height: 20px;
      text-align: center;
      top: -1px; }

.header {
  position: fixed;
  left: 0;
  width: 100%;
  display: block; }

.affix.header {
  position: fixed;
  height: 60px;
  transition: height 0.4s ease; }

.header-wrapper {
  width: 100%;
  z-index: 20;
  position: relative; }

.affix .header-wrapper {
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.15);
  transition: height 0.3s ease 0s, background 0.3s ease 0s; }

.logo-row {
  position: relative;
  width: 150px; }

.menu-logo-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 300;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: block;
  padding: 32px 0 21px; }

.header.affix .menu-logo-title {
  padding: 16px 0 21px;
  transition: all 0.4s ease 0s; }

.main-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%; }

#main-menu .navbar {
  background: 0 0;
  border: 0;
  margin: 0; }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

#main-menu .navbar .navbar-collapse {
  padding: 0;
  position: static;
  border: none;
  box-shadow: none; }

.navbar-collapse.collapse.nav-center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.navbar-collapse.collapse {
  overflow: visible !important;
  height: auto !important; }

.navbar-collapse {
  width: auto; }

#main-menu .nav-center .nav.navbar-nav {
  margin-right: 0px !important; }

#main-menu .navbar .nav {
  margin: 0;
  position: static; }

.navbar-nav {
  float: left;
  margin: 0; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0; }

#main-menu .navbar .nav .parent {
  position: relative; }

#main-menu .navbar .nav .right {
  display: block;
  position: absolute;
  right: 40px; }

.navbar-nav > li {
  float: left; }

.nav > li {
  display: block; }

.nav > li > a {
  position: relative;
  display: block; }

#main-menu .navbar .nav > li.current > a {
  padding: 38px 3px 5px;
  margin: 0 12px 17px;
  color: #000; }

.affix #main-menu .navbar .nav > li.current > a {
  margin-bottom: 13px;
  padding: 20px 3px 5px;
  opacity: 1;
  transition: padding 0.4s ease 0s; }

#main-menu .navbar .nav > li > a {
  letter-spacing: 0.5px;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 400;
  text-shadow: none;
  transition: padding 0.4s ease 0s, border-color 0.6s ease 0;
  padding: 38px 3px 5px;
  margin: 0 12px 17px; }

.affix #main-menu .navbar .nav > li > a {
  margin-bottom: 13px;
  padding: 20px 3px 5px;
  opacity: 0.7;
  transition: padding 0.4s ease 0s; }

.theme-light .navbar .nav > li:hover > a {
  color: rgba(0, 0, 0, 0.75); }

.affix #main-menu .navbar .nav > li:hover > a {
  color: #2a2b2f; }

.main-banner {
  z-index: 1;
  width: 100%;
  padding: 2vh;
  border-top: 3px solid;
  border-bottom: 3px solid;
  margin-bottom: 5vh;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .theme-light .main-banner {
    background-color: #fff; }
  .theme-light .main-banner {
    border-color: #2ba8c2; }

.banner-title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  width: 450px;
  margin: 20px auto;
  text-align: center; }

.banner-image {
  display: block;
  margin: 0 auto;
  width: 50%;
  padding-top: 100px; }
  .banner-image img {
    display: block;
    margin: 0 auto;
    width: 100%; }

.bg-white {
  background-color: #fff; }

.main-page-section {
  padding: 100px 15px 100px 15px;
  margin: 0 auto; }
  .main-page-section h2 {
    text-align: center;
    margin-bottom: 0; }
  .main-page-section p {
    text-align: center;
    margin-bottom: 25px; }

.main-page-section.gallery {
  padding: 100px 0 100px 0;
  margin: 0 auto; }
  .main-page-section.gallery h2 {
    margin-bottom: 15px; }

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  width: 60%;
  margin: 0 auto; }
  .two-columns h3 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0; }
  .two-columns p {
    text-align: unset; }

.three-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 70%;
  margin: 0 auto; }
  .three-columns img {
    width: 100%; }

.four-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 50px;
  width: 70%;
  margin: 0 auto; }
  .four-columns h3 {
    font-size: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center; }
  .four-columns img {
    height: 200px;
    max-width: 100%;
    margin: 0 auto;
    display: block; }

@media (min-width: 768px) and (max-width: 992px) {
  .four-columns {
    grid-template-columns: 1fr 1fr; }
  .three-columns {
    grid-template-columns: 1fr;
    grid-gap: 0 0;
    width: 100%; }
  .navbar-nav .parent {
    display: none; }
  .logo-row {
    width: auto; }
    .logo-row .menu-logo-title {
      text-align: center; }
  .banner-title {
    width: auto; }
  .main-page-banner,
  .main-page-section {
    padding: 8% !important; }
  .banner-image {
    width: 100%; } }

@media (max-width: 767px) {
  .four-columns {
    grid-template-columns: 1fr;
    grid-gap: 0 0; }
  .three-columns {
    grid-template-columns: 1fr;
    grid-gap: 0 0;
    width: 100%; }
  .two-columns {
    grid-template-columns: 1fr;
    grid-gap: 0 0;
    width: 100%; }
  .navbar-nav .parent {
    display: none; }
  .logo-row {
    width: auto; }
    .logo-row .menu-logo-title {
      text-align: center; }
  .banner-title {
    width: auto; }
  .main-page-banner,
  .main-page-section {
    padding: 8% !important; }
  .banner-image {
    width: 100%; } }

.footer-wrapper {
  padding-bottom: 50px;
  padding-top: 50px;
  width: 100%;
  position: fixed;
  bottom: 50px;
  overflow: hidden;
  display: block;
  background-color: #fff;
  z-index: -1; }

.footer-container {
  margin: 0 8% 0 8%;
  padding: 0 15px 0 15px; }

.footer-copy-container {
  padding-top: 30px;
  border-top: 1px solid #eee; }

.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 12px; }
  .footer-copy strong {
    font-weight: normal;
    color: #6b6d6f; }

.footer-social {
  float: right; }
  .footer-social a {
    padding: 3px !important; }
    .footer-social a img {
      width: 24px;
      height: 24px; }

#back-top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  padding: 0;
  margin: 0;
  z-index: 20; }
  #back-top a {
    display: block;
    color: #323236;
    font-size: 26px;
    z-index: 999;
    padding: 5px;
    height: 37px;
    width: 37px;
    background: #fff;
    border-radius: 50%;
    text-decoration: none; }

.arrow-up {
  display: inline-block;
  padding: 4px;
  float: right;
  position: relative;
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 15px;
  width: 15px;
  margin-left: auto !important;
  margin-right: auto !important;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border-color: #bebebe; }

.title-block {
  padding: 8%; }

.recipe-half {
  width: 50%;
  height: 570px;
  float: left; }

.recipe-image {
  width: 50%;
  background-position: 50%, 50%;
  background-size: cover; }

.recipe-grid {
  width: 100%; }

.recipe {
  /* Setup Flexbox */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* Reverse Column Order */ }

.recipe-left {
  flex-flow: row-reverse;
  -webkit-flex-flow: row-reverse; }

@media (min-width: 768px) and (max-width: 992px) {
  .recipe-half {
    width: 100%;
    height: 300px;
    float: none; }
  .recipe {
    display: block; }
  .recipe-text {
    height: 200px; } }

@media (max-width: 767px) {
  .recipe-half {
    width: 100%;
    height: 300px;
    float: none; }
  .recipe {
    display: block; }
  .recipe-text {
    height: 200px; } }

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

.recipe-title {
  margin-top: 20%;
  text-transform: uppercase;
  letter-spacing: 7px; }

.model-specs {
  grid-template-columns: 1fr 3fr;
  margin-top: 10px;
  font-size: 1.5em; }
  .model-specs .model-specs-overlay {
    position: relative; }
    .model-specs .model-specs-overlay div {
      display: inline-block;
      vertical-align: middle; }
    .model-specs .model-specs-overlay p {
      display: inline-block;
      vertical-align: middle;
      width: 125px;
      margin: 10px 0;
      font-size: 1em;
      font-weight: 400; }
  .model-specs .model-specs-left {
    float: right;
    text-align: right;
    margin-right: 10px; }
    .model-specs .model-specs-left p {
      font-size: 1em; }
  .model-specs .model-specs-right {
    float: left;
    text-align: left;
    margin-left: 5px; }
    .model-specs .model-specs-right p {
      font-size: 1em;
      font-weight: 400; }
    .model-specs .model-specs-right .model-specs-progress {
      height: 20px;
      margin-bottom: 20px;
      overflow: hidden;
      background-color: #cccccc;
      border-radius: 4px;
      -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
      width: 50%; }
      .model-specs .model-specs-right .model-specs-progress .model-specs-progress-bar {
        float: left;
        height: 100%;
        font-size: 12px;
        line-height: 20px;
        color: #fff;
        text-align: center;
        -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        -webkit-transition: width 0.6s ease;
        transition: width 0.6s ease; }
        .theme-light .model-specs .model-specs-right .model-specs-progress .model-specs-progress-bar {
          background-color: #2ba8c2; }

.model-download {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-flow: column; }
  .theme-light .model-download a:link {
    background-color: #b1e3ed; }
  .model-download .model-download-btn {
    padding: 15px;
    display: block;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%; }
    .model-download .model-download-btn:hover {
      color: black; }
      .theme-light .model-download .model-download-btn:hover {
        background-color: #2ba8c2; }
    .model-download .model-download-btn .download-text {
      width: max-content; }
    .model-download .model-download-btn div {
      display: inline-block;
      margin: 0 10px; }
    .model-download .model-download-btn .download-icon {
      float: left; }

.model-specs-overview {
  padding: 5vh 70px 5vh 20px;
  max-height: calc(100vh - 3rem); }

.slider {
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
  display: block;
  background-color: transparent;
  opacity: 1; }

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px; }

.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #efefef; }

.slides::-webkit-scrollbar-thumb {
  background: darkgray;
  border-radius: 10px; }

.slides::-webkit-scrollbar-track {
  background: transparent; }

.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 20%;
  padding-top: 20%;
  margin-right: 40px;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .slides > div .category-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px; }
    .slides > div .category-box img {
      position: relative;
      object-fit: cover;
      height: 100%;
      width: 100%;
      border-radius: 10px; }
    .slides > div .category-box:hover {
      transition: 0.1s ease;
      opacity: 0.8; }

.split-grid-featured {
  padding: 0px 150px 30px 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 250px;
  transition: 0.1s ease; }
  @media (max-width: 767px) {
    .split-grid-featured {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .split-grid-featured {
      grid-template-columns: 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .split-grid-featured {
      grid-template-columns: 1fr; } }
  .split-grid-featured .featured-grid-wrapper {
    position: relative;
    border-radius: 10px; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  transition: 0.1s ease; }
  @media (max-width: 767px) {
    .split-grid {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .split-grid {
      grid-template-columns: 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .split-grid {
      grid-template-columns: 1fr; } }
  .split-grid .featured-grid-wrapper {
    position: relative;
    border-radius: 10px;
    padding: 0 25px 0 0; }

.featured-grid-wrapper {
  margin-top: 5vh; }

.featured-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  transition: 0.1s ease; }
  @media (max-width: 767px) {
    .featured-category-grid {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .featured-category-grid {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .featured-category-grid {
      grid-template-columns: 1fr 1fr; } }
  .featured-category-grid .featured-box {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    height: 100%; }
    .featured-category-grid .featured-box h4 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      vertical-align: middle;
      font-size: 165%;
      width: 80%; }
    .featured-category-grid .featured-box img {
      object-fit: contain;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%; }
    .featured-category-grid .featured-box:hover img {
      opacity: 0.3; }
    .featured-category-grid .featured-box:hover .model-text {
      opacity: 1; }
    .featured-category-grid .featured-box .model-text {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      text-align: center;
      vertical-align: middle;
      opacity: 0;
      transition: 0.3s ease;
      text-align: center;
      vertical-align: middle; }
      .featured-category-grid .featured-box .model-text h2 {
        text-transform: uppercase;
        font-size: 1.5em;
        letter-spacing: 4px;
        font-weight: 600;
        text-align: center;
        overflow-wrap: break-word; }
      .featured-category-grid .featured-box .model-text .small-divider {
        margin-top: 7px;
        margin-bottom: 0px;
        display: block;
        width: 50px;
        height: 2px;
        margin-left: auto;
        margin-right: auto; }
        .theme-light .featured-category-grid .featured-box .model-text .small-divider {
          background-color: #2ba8c2; }

.featured-text-box {
  position: absolute;
  top: 0px;
  margin: 20px 0 0 0;
  background-color: rgba(255, 255, 255, 0.8); }
  .featured-text-box p {
    padding: 10px;
    margin: 0;
    font-size: 200%;
    font-weight: 500; }

.carousel .featured-text-box {
  position: absolute;
  top: auto;
  bottom: 0px;
  margin: 0 0 20px 0;
  background-color: rgba(255, 255, 255, 0.8); }
  .carousel .featured-text-box p {
    padding: 10px 30px;
    margin: 0;
    font-size: 1.8em;
    font-weight: 500; }

.search-bar {
  padding: 10px;
  border: 1px solid gray;
  border-radius: 10px;
  background: white;
  position: absolute;
  top: 51px;
  right: 0;
  z-index: 1;
  float: right;
  margin-top: 10px;
  margin-right: 10px; }
  .search-bar ::-webkit-input-placeholder {
    font-style: italic; }
  @media (max-width: 767px) {
    .search-bar {
      display: none; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .search-bar {
      display: none; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .search-bar {
      display: flex; } }
  @media (min-width: 1200px) {
    .search-bar {
      display: flex; } }
  .search-bar form {
    display: flex; }
    .search-bar form input {
      border: none;
      outline: none; }

.blue-divider {
  display: block;
  width: 50px;
  height: 2px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 10px; }
  .theme-light .blue-divider {
    background-color: #2ba8c2; }

.related-title,
.printing-options-title {
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px; }

.ingredients-groups {
  display: grid;
  grid-gap: 50px; }
  @media (max-width: 767px) {
    .ingredients-groups {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .ingredients-groups {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .ingredients-groups {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }
  @media (min-width: 1200px) {
    .ingredients-groups {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }
.ingredients-group {
  text-align: center;
  border-radius: 10px;
  padding: 20px 10px 20px 10px; }
  .theme-light .ingredients-group {
    background-color: #fff; }
  .ingredients-group h3 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px; }

.ingredients-group-names {
  font-size: 10px;
  line-height: 10px;
  text-align: center; }
  .ingredients-group-names h2 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    margin-top: auto;
    margin-bottom: auto; }

.models-filter {
  margin-left: 15px;
  margin-right: 15px; }
  .models-filter:hover {
    cursor: pointer; }
  .theme-light .models-filter.selected {
    color: #2ba8c2; }

.carousel-preview {
  height: 50vh; }

.carousel-model {
  height: calc(100vh - 3rem);
  width: 50vw;
  background: white; }
  @media (max-width: 767px) {
    .carousel-model {
      width: 100vw;
      height: 100vw; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .carousel-model {
      width: 100vw;
      height: 100vw; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .carousel-model {
      width: 100vw;
      height: 50vh; } }
  @media (min-width: 1200px) {
    .carousel-model {
      width: 50vw; } }
.page-content {
  padding: 0% 8%; }
  .page-content .split-grid {
    grid-template-columns: 2.5fr 1fr;
    height: 38vh; }
    @media (max-width: 767px) {
      .page-content .split-grid {
        grid-template-columns: 1fr; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .page-content .split-grid {
        grid-template-columns: 1fr; } }
    @media (min-width: 992px) and (max-width: 1200px) {
      .page-content .split-grid {
        grid-template-columns: 2.5fr 1fr; } }
    @media (min-width: 1200px) {
      .page-content .split-grid {
        grid-template-columns: 2.5fr 1fr; } }
.star-icon:hover, .star-icon.active {
  filter: invert(48%) sepia(80%) saturate(370%) hue-rotate(143deg) brightness(101%) contrast(100%); }

.btn-download {
  background-color: white;
  display: block;
  height: 5rem;
  border-style: 10px solid; }
  .theme-light .btn-download {
    border-color: #2ba8c2; }
  .btn-download div {
    position: relative;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%); }

.model-details {
  position: relative;
  display: inline-grid;
  gap: 10px;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 50px 50px 50px;
  width: 100%;
  margin: 20px 0;
  align-items: center; }
  @media (max-width: 767px) {
    .model-details {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .model-details {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .model-details {
      grid-template-columns: 1fr 4fr; } }
  @media (min-width: 1200px) {
    .model-details {
      grid-template-columns: 1fr 4fr; } }
  .model-details div {
    margin-right: 20px;
    justify-self: right; }
  .model-details p {
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5em;
    font-weight: 400;
    margin: 0 0 0 20px;
    text-align: left; }

.related {
  top: 50vh;
  position: sticky;
  border-radius: 20px;
  padding: 10px 0px 40px 0px; }
  .related .related-models {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-top: 25px; }
    @media (max-width: 767px) {
      .related .related-models {
        grid-template-columns: 1fr; } }
    .related .related-models a {
      background-color: white;
      border-radius: 10px; }
  .related .related-overlay div {
    display: inline-block;
    vertical-align: middle; }
  .related .related-overlay p {
    display: inline-block;
    vertical-align: middle;
    margin: 8px 0;
    font-weight: 400; }
    @media (max-width: 767px) {
      .related .related-overlay p {
        display: inline-block;
        vertical-align: middle;
        width: 125px;
        margin: 8px 0;
        font-size: 1em;
        font-weight: 400; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .related .related-overlay p {
        display: inline-block;
        vertical-align: middle;
        width: 125px;
        margin: 8px 0;
        font-size: 1em;
        font-weight: 400; } }
    @media (min-width: 992px) and (max-width: 1200px) {
      .related .related-overlay p {
        display: inline-block;
        vertical-align: middle;
        width: 125px;
        margin: 8px 0;
        font-size: 1em;
        font-weight: 400; } }
    @media (min-width: 1200px) {
      .related .related-overlay p {
        display: inline-block;
        vertical-align: middle;
        margin: 8px 0;
        font-weight: 400; } }
.model-content {
  display: inline-grid;
  width: 100%;
  grid-template-columns: 1fr 1.5fr;
  align-items: center; }
  @media (max-width: 767px) {
    .model-content {
      grid-template-columns: 1fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .model-content {
      grid-template-columns: 1fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .model-content {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1200px) {
    .model-content {
      grid-template-columns: 1fr 1fr; } }
.theme-light .svg-fg {
  fill: #000; }

.theme-light .svg-bg {
  fill: #888; }

#edit-text {
  overflow: hidden; }

.upload-content {
  padding-top: 20px;
  margin-bottom: 50px; }

.steps-container {
  z-index: 1;
  width: 100%;
  padding: 2vh;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center; }

.file-management-sidebar {
  padding: 0;
  grid-area: sidebar;
  -ms-grid-column: 1;
  -ms-grid-row: 1; }

.file-management-content {
  padding: 0;
  grid-area: content;
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  max-height: calc(100vh - 3rem); }
  .theme-light .file-management-content {
    background-color: #f5f6fa; }

#file-management-preview {
  transition: ease-out 0.3s;
  z-index: 1;
  box-shadow: -4px 0px 4px -4px rgba(0, 0, 0, 0.15); }

#file-management-preview.invisible {
  transform: translateX(25vw); }

#file-management {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "sidebar content";
  grid-template-columns: 1fr 4fr;
  -ms-grid-columns: 1fr 4fr;
  -ms-grid-rows: 1fr;
  height: 100vh; }
  @media (max-width: 767px) {
    #file-management {
      grid-template-columns: 1fr 3.5fr;
      -ms-grid-columns: 1fr 4fr; } }
  @media (min-width: 768px) and (max-width: 992px) {
    #file-management {
      grid-template-columns: 1fr 2.5fr;
      -ms-grid-columns: 1fr 4fr; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    #file-management {
      grid-template-columns: 1fr 3.5fr;
      -ms-grid-columns: 1fr 4fr; } }
#file-management.preview {
  grid-template-areas: "sidebar content preview";
  grid-template-columns: 1fr 3fr 1fr;
  -ms-grid-columns: 1fr 3fr 1fr; }

.folder-box {
  padding: 30px;
  border-bottom: 3px solid; }
  .theme-light .folder-box {
    border-color: #2ba8c2; }
  .folder-box h4 {
    font-weight: 500; }
  .folder-box .folder-btn {
    position: relative;
    text-align: left;
    text-transform: none; }
    .folder-box .folder-btn div {
      margin-right: 10px;
      display: inline-block;
      vertical-align: middle; }
    .folder-box .folder-btn .folder-text {
      display: inline;
      vertical-align: middle;
      font-size: 1rem;
      overflow-wrap: normal;
      white-space: pre-wrap;
      overflow: hidden; }

.new-folder-btn {
  position: relative;
  text-align: center;
  text-transform: none; }
  .new-folder-btn div {
    margin-right: 20%;
    display: inline-block;
    vertical-align: middle; }
    @media (min-width: 992px) and (max-width: 1200px) {
      .new-folder-btn div {
        margin-right: 10%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .new-folder-btn div {
        margin-right: 10%; } }
    @media (max-width: 767px) {
      .new-folder-btn div {
        margin-right: 10%; } }
  .new-folder-btn .folder-text {
    display: inline;
    vertical-align: middle;
    font-size: 1rem;
    overflow-wrap: normal;
    white-space: pre-wrap;
    overflow: hidden; }

.favourites-folder-box {
  grid-row: 1; }

.custom-folder-box {
  grid-row: 2;
  overflow: auto; }

.bottom-box {
  padding: 15px 30px; }

.new-folder-box {
  grid-row: 3;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .new-folder-box button {
    margin: 0;
    width: 100%; }

.folder-rename-form {
  display: inline-block; }
  .folder-rename-form input {
    width: 100%; }
  .folder-rename-form p {
    display: inline;
    padding: 5px;
    border: 1px solid #222;
    border-radius: 2px; }

.scroll-area {
  max-height: calc(100vh - 50px - 3rem);
  overflow: auto; }

#file-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 40px;
  margin-right: 5px;
  margin: 1.5rem; }
  #file-grid .file-box {
    position: relative;
    width: 100%;
    padding-top: 135%;
    /* 1:1 Aspect Ratio */ }
    #file-grid .file-box .file-box-grid {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      display: -ms-grid;
      display: grid;
      grid-template-areas: "image" "text";
      grid-template-rows: minmax(0, 1fr) 30px;
      grid-template-columns: 1fr;
      -ms-grid-columns: 1fr;
      -ms-grid-rows: minmax(0, 1fr) 30px;
      border-radius: 10px; }
      .theme-light #file-grid .file-box .file-box-grid {
        color: #141414; }
      #file-grid .file-box .file-box-grid .file-img {
        grid-area: image;
        border-radius: 10px 10px 0px 0px;
        width: 100%;
        height: 100%;
        opacity: 1;
        cursor: pointer;
        display: block; }
        #file-grid .file-box .file-box-grid .file-img img {
          border-radius: 10px 10px 0px 0px;
          object-fit: cover;
          object-position: center;
          width: 100%;
          height: 100%; }
      #file-grid .file-box .file-box-grid .file-txt {
        grid-area: text;
        text-align: center;
        align-self: center;
        border-radius: 0px 0px 10px 10px;
        overflow: hidden;
        min-height: 100%; }
        .theme-light #file-grid .file-box .file-box-grid .file-txt {
          background-color: #fff; }
        #file-grid .file-box .file-box-grid .file-txt p {
          font-size: 1rem;
          margin: 0;
          text-align: center;
          vertical-align: middle; }
        #file-grid .file-box .file-box-grid .file-txt .mini-details {
          display: none; }

#file-list {
  margin: 1.5rem; }
  #file-list .file-box .file-box-grid {
    height: 10vh;
    position: relative;
    cursor: pointer;
    background: #fff;
    margin: 0 5px 10px 0;
    text-align: left;
    text-transform: none; }
    #file-list .file-box .file-box-grid .file-img {
      height: inherit; }
      #file-list .file-box .file-box-grid .file-img img {
        display: inline;
        height: 100%;
        width: 8vw;
        object-fit: contain;
        background: #fff; }
    #file-list .file-box .file-box-grid .file-txt {
      height: inherit;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%; }
      #file-list .file-box .file-box-grid .file-txt p {
        display: inline;
        font-size: 1rem;
        position: absolute;
        top: 50%;
        transform: translate(1rem, -50%);
        padding-left: 8vw; }
      #file-list .file-box .file-box-grid .file-txt .mini-details {
        position: relative;
        text-align: right;
        float: right;
        margin: 10px;
        padding-right: 25px;
        top: 50%;
        transform: translate(0, -50%); }
        #file-list .file-box .file-box-grid .file-txt .mini-details p {
          position: relative;
          display: block;
          margin: 0; }

.management-bar {
  width: 100%;
  height: 50px;
  background-color: white;
  position: relative;
  box-shadow: 0px 4px 4px -4px rgba(0, 0, 0, 0.15); }
  .management-bar #sorted-by-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em; }
  .management-bar .grid-list-view {
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    vertical-align: middle;
    position: absolute;
    height: 25px;
    width: 25px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0.35; }
    .management-bar .grid-list-view#grid-view {
      left: 3.5rem; }
    .management-bar .grid-list-view#list-view {
      left: 1.5rem; }
    .management-bar .grid-list-view.active {
      opacity: 1; }
  .management-bar .management-box {
    vertical-align: middle;
    position: absolute;
    height: 30px;
    width: 12rem;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    justify-content: center;
    align-items: center; }
    .management-bar .management-box#upload-stl-box {
      right: 13.5rem; }
    .management-bar .management-box#new-design-box {
      right: 1.5rem; }
    .management-bar .management-box button {
      position: relative;
      text-align: center;
      text-transform: none;
      padding: 0.4rem 1rem;
      width: 100%; }
      .management-bar .management-box button div {
        margin-right: 10%;
        display: inline-block;
        vertical-align: middle; }
        @media (min-width: 992px) and (max-width: 1200px) {
          .management-bar .management-box button div {
            margin-right: 10%; } }
        @media (min-width: 768px) and (max-width: 992px) {
          .management-bar .management-box button div {
            margin-right: 10%; } }
        @media (max-width: 767px) {
          .management-bar .management-box button div {
            margin-right: 10%; } }
      .management-bar .management-box button .folder-text {
        display: inline;
        vertical-align: middle;
        font-size: 1rem;
        overflow-wrap: normal;
        white-space: pre-wrap;
        overflow: hidden; }
  .management-bar #help-button {
    float: right;
    position: absolute;
    right: 1rem;
    height: 35px;
    width: 35px;
    top: 50%;
    transform: translate(0, -50%); }
    .management-bar #help-button div {
      position: relative;
      width: 100%;
      height: 100%; }

.preview-img {
  width: 85%;
  margin: auto;
  position: relative;
  display: block; }

.details-box {
  text-align: center;
  padding: 15px 30px 15px 30px;
  border-bottom: 2px solid; }
  .theme-light .details-box {
    border-color: #2ba8c2; }
  .details-box.preview {
    grid-row: 1; }
  .details-box.details {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .details-box .edit-name h3 {
    display: inline;
    vertical-align: middle;
    font-size: 1.1rem;
    overflow: hidden;
    width: 0; }
  .details-box .edit-name div {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    margin-left: 5px; }

.img-container {
  position: relative; }

.img-container:hover .bottomtext {
  opacity: 1; }

.bottomtext {
  cursor: pointer;
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  background-repeat: no-repeat;
  height: 15%; }

.action-btns {
  grid-row: 3;
  padding: 15px 30px;
  position: relative;
  justify-content: center;
  align-items: center; }
  .action-btns .group-3 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
    column-gap: 5px; }
    .action-btns .group-3 a {
      width: 100%;
      height: 50px;
      justify-self: center;
      position: relative; }
      .action-btns .group-3 a div {
        margin: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .action-btns .group-2 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    column-gap: 5px; }
    .action-btns .group-2 a {
      width: 100%;
      height: 50px;
      justify-self: center;
      position: relative; }
      .action-btns .group-2 a div {
        margin: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }

.specs {
  margin-top: 8px; }
  .specs div {
    display: inline-block;
    vertical-align: middle; }
  .specs p {
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    width: 80%;
    margin: 0 0 0 10px;
    font-weight: 500; }
  .specs.centered div {
    position: absolute;
    margin-left: 0; }
  .specs.centered p {
    text-align: center;
    width: 100%;
    margin: 0; }

.preview-bar {
  display: grid;
  grid-template-rows: 1fr 2fr 1fr;
  overflow-y: auto;
  max-height: 100%; }

.theme-light .sidebar-download a:link {
  background-color: #b1e3ed; }

.sidebar-download .model-download-btn {
  padding: 15px;
  margin: 5px 0;
  display: block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%; }
  .sidebar-download .model-download-btn:hover {
    color: black; }
    .theme-light .sidebar-download .model-download-btn:hover {
      background-color: #2ba8c2; }
  .sidebar-download .model-download-btn .download-text {
    width: max-content; }
  .sidebar-download .model-download-btn div {
    display: inline-block;
    margin: 0 10px; }
  .sidebar-download .model-download-btn .download-icon {
    float: left; }

.dashboard-graph-container {
  color: blue;
  display: grid;
  width: 70%;
  grid-template-columns: 1fr 1fr; }

@media (min-width: 992px) and (max-width: 1200px) {
  .dashboard-graph-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr; } }

@media (min-width: 768px) and (max-width: 992px) {
  .dashboard-graph-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr; } }

@media (max-width: 767px) {
  .dashboard-graph-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr; } }

/*# sourceMappingURL=main.css.map */