*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
/* utils */
.min-height-100vh {
  min-height: 100vh;
}
.container-small {
  max-width: 54rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none !important;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-space-between {
  justify-content: space-between;
}
.justify-content-space-around {
  justify-content: space-around;
}
.align-items-center {
  align-items: center;
}
.flex-direction-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.relative {
  position: relative;
}
.pointer {
  cursor: pointer;
}
.bg-black {
  background-color: #000;
}
.bg-light-red {
  background-color: #e00c204f !important;
}
.bg-gray {
  background-color: #302f32;
}
.bg-light-gray {
  background-color: #3e3d40;
}
.bg-light-green {
  background-color: #11f56254 !important;
}
.color-white {
  color: #fff;
}
.color-gray {
  color: #707070;
}
.text-center {
  text-align: center;
}
.h-100 {
  height: 100%;
}
.w-10 {
  width: 10%;
}
.w-25 {
  width: 25%;
}
.w-33 {
  width: 33% !important;
}
.w-40 {
  width: 40%;
}
.w-47 {
  width: 47%;
}
.w-49 {
  width: 49%;
}
.w-50 {
  width: 50%;
}
.w-80 {
  width: 80%;
}
.w-100 {
  width: 100%;
}
.w-auto {
  width: auto !important;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 1rem;
}
.mr-2 {
  margin-right: 2rem;
}
.mr-auto {
  margin-right: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.ml-auto {
  margin-left: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.pt-1 {
  padding-top: 1rem;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pr-1 {
  padding-right: 1rem;
}
.pr-2 {
  padding-right: 2rem;
}
.pr-2-important {
  padding-right: 2rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pl-2 {
  padding-left: 2rem;
}
.square {
  display: inline-block;
  align-self: center;
  height: 1rem;
  width: 1rem;
  margin-left: 1rem;
  border-radius: 50%;
}
.font-size-6 {
  font-size: 60px;
}
label {
  cursor: pointer;
}
.border-bottom {
  border-bottom: 1px solid #707070;
}
.btn {
  font-size: 2rem;
  display: inline-block;
  color: #fff !important;
  height: 5rem;
  line-height: 3.5rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  max-width: 35rem;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  text-decoration: none;
  background-color: none;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.btn-primary {
  background-color: #4ca119;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#4ca119),
    to(#4ca119)
  );
}
.btn:hover {
  background-position: 0 0;
  border-color: transparent;
  color: #fff;
}
.btn-primary:hover {
  background-color: #4ca11996;
}
.btn-primary-outline {
  background-color: transparent;
  border-color: #4ca119;
}
.btn-primary-outline:hover {
  background-color: #4ca119;
}
.btn-secondary {
  background-color: #3e3d40;
}
.btn-tertiary {
  background-color: #909ab4;
}
.btn-danger {
  background-color: #a11930;
}
.btn-export,
.btn-export-all {
  line-height: 1.5;
  height: auto;
  padding: 0.3rem 2rem;
}
.white-space-no-wrap {
  white-space: nowrap;
}
.oveflow-hidden {
  overflow: hidden;
}
/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20%;
  height: 100vh;
  background-color: #000;
  z-index: 2;
  overflow-y: auto;
}
.sidebar-toggle,
.sidebar-show {
  display: none;
}
.sidebar__logo {
  display: block;
  height: 8rem;
  padding: 1rem 2rem 0;
}
.sidebar__menu {
  padding-top: 5rem;
  width: 100%;
}
.sidebar__menu-project-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  /* background-color: #; */
  padding-left: 1rem;
  padding-right: 2rem;
  border-left: 15px solid transparent;
}
.sidebar__menu-item {
  padding: 1rem 2rem;
  border-left: 10px solid transparent;
}
.sidebar__menu-item.active {
  background: #3e3d40;
  border-left: 15px solid #4ca119;
}
.sidebar__menu-link {
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
}
.active .sidebar__menu-link:hover {
  color: #fff;
}
.sidebar__menu-link:hover {
  color: #909ab4;
}
.sidebar__menu-repeat {
  padding: 1rem 0.5rem;
  background-color: #3e3d40;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
}
/* FIRST STEP */
#sidebar__coordinates,
#sidebar__coordinates-selected {
  height: 9.8rem;
  overflow: hidden;
  padding: 0.5rem 0;
}
#sidebar__coordinates li,
#sidebar__coordinates-selected > div {
  padding-left: 1rem;
  padding-right: 1rem;
  height: 4.4rem;
  color: #909ab4;
}
#sidebar__coordinates li.active {
  background-color: #302f32;
}
#sidebar__cordinates li.disabled {
  pointer-events: none !important;
}
.layers.active {
  position: relative;
}
.layers.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2.4rem;
  width: 1.3rem;
  height: 100%;
  background-color: #4ca119;
}
.fa-eye {
  display: none;
  margin-left: 0.5rem;
}
.fa-eye-slash {
  display: inline-block;
  margin-left: 0.5rem;
}
.layers.active .fa-eye-slash,
.active_layer .fa-eye-slash {
  display: none;
}
.layers.active .fa-eye,
.active_layer .fa-eye {
  display: inline-block;
}
#sequins-icons.active .fa-eye,
#sequins-icons .fa-eye-slash {
  display: inline-block;
}
#sequins-icons .fa-eye,
#sequins-icons.active .fa-eye-slash {
  display: none;
}

.layers.dragover {
  background-color: #302f32;
}
/* CANVAS */
.webgl-container {
  width: 100%;
  height: calc(100vh - 12rem);
  overflow: hidden;
}
/* TOP NAVIGATION */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 20%;
  background-color: #302f32;
  z-index: 1;
}
.navigation__main {
  padding-left: 6.25%;
  height: 8rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.navigation__heading {
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
}
.navigation__top {
  padding: 2rem 3rem 2rem 1rem;
  padding-left: 6.25%;
  background-color: #3e3d40;
}
.navigation__top-search,
.modal__top-search {
  width: 60%; 
  position: relative;
}
.navigation__top-search-input,
.modal__top-search-input {
  font-family: "Montserrat", sans-serif !important;
  font-size: 2rem !important;
  padding: 0.75rem 1.5rem 0.75rem 5.5rem !important;
  height: 5rem !important;
  line-height: 3.5rem !important;
  width: 100% !important;
  background-color: #302f32 !important;
  color: #fff !important;
  border: 1px solid transparent !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
  outline: none !important;
}
.navigation__top-search-input::placeholder,
.modal__top-search-input::placeholder {
  color: #fff;
}
.navigation__top-search-input:hover,
.modal__top-search-input:hover {
  border-color: #4ca119 !important;
}
.navigation__top-search-input:hover::placeholder,
.modal__top-search-input:hover::placeholder {
  color: #4ca119;
}
.navigation__top-search-icon,
.modal__top-search-icon {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #909ab4;
}
.navigation__top-layout i,
.modal__top-search-form i {
  color: #707070;
  cursor: pointer;
  font-size: 2.5rem;
}

/* INNER PAGE */
.inner-page {
  position: relative;
  top: 17rem;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 8rem);
  background-color: #3e3d40;
  padding: 2rem 3rem 2rem 25%;
}
.inner-page--modify {
  top: 8rem;
}
.inner-page--editor {
  padding-left: calc(20% + 3rem);
  top: 8rem;
}
.inner-page__layout-container--modify {
  min-height: calc(100vh - 18rem);
}
.inner-page__layout-item {
  background-color: #302f32;
  color: #fff;
  border-radius: 0.5rem;
  max-width: 60rem;
  width: calc(50% - 1.5rem);
  margin-right: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}
.inner-page__layout-item--form {
  width: 100%;
  max-width: 54rem;
}
.inner-page__layout-item--usf-form {
  width: 100%;
  max-width: 65rem;
}
.inner-page__layout-item:nth-child(2n) {
  margin-right: 0;
}
.layout-item__top {
  padding: 1.5rem 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}
.layout-item__top-name {
  font-size: 2rem;
  font-weight: 400;
}
.layout-item__top-icons {
  color: #4ca119;
}
.layout-item__content {
  padding: 1rem 2rem;
}
.layout-item__content-name {
  font-weight: 400;
  border-bottom: 1px solid #3e3d40;
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.layout-item__buttons {
  padding: 1rem 2rem 1.5rem;
}
.layout-item__button {
  height: unset;
  line-height: 1.5;
  padding: 0.75rem 3rem;
  font-size: 1.6rem;
}

/* DASHBOARD LAYOUT */
.inner-page__layout-container-list {
  background-color: #302f32;
}
.inner-page__layout-list-item--modify {
  min-height: calc(80vh - 161px);
}
.inner-page__layout-list-headings {
  padding: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.layout-list-item__heading {
  width: 12.5%;
  padding: 0 0.5rem;
  color: #fff;
}
.layout-list-item__heading.users,
.layout-list-item__heading.yarns {
  width: 18.75%;
}
.layout-list-item__heading.templates {
  width: 15%;
}
.layout-list-item__data-container {
  padding: 1rem 2rem;
}
.layout-list-item__data {
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3e3d40;
}
.layout-list-item__data-text {
  width: 12.5%;
  padding: 0 1rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  
}
.layout-list-item__data-text.users,
.layout-list-item__data-text.yarns {
  width: 18.75%;
}
.layout-list-item__data-text.templates {
  width: 15%;
}
.layout-list-item__buttons .btn {
  width: 100%;
  height: unset;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
/* DASHBOARD EDIT LAYOUT */
.layout-item__input-container {
  margin-bottom: 1rem;
  display: flex;
  align-items: stretch;
}
.layout-item__input-container--checkbox {
  align-items: center;
}
/* checkbox style */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container__checkmark {
  position: absolute;
  top: 4.5px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-container__checkmark {
  background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-container__checkmark {
  background-color: #4ca119;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container__checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-container__checkmark::after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-container__checkmark::after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.layout-item__label {
  font-size: 1.6rem;
  white-space: nowrap;
  padding-right: 0.5rem;
  border-bottom: 1px solid #707070;
}
.layout-item__input {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #707070;
  outline: none;
}
.layout-item__input--checkbox {
  width: auto;
  margin-right: 2rem;
}
select.layout-item__input {
  background-color: #302f32;
}
.layout-item__input::placeholder {
  color: #fff;
}
.layout-item__input--file,
.layout-item__input--file-all,
.layout-item__input--lurex-file,
.layout-item__input--lurex-file-all,
.layout-item__input--sequins-file  {
  display: none;
}
.layout-item__input--file + label,
.layout-item__input--file-all + label,
.layout-item__input--lurex-file + label,
.layout-item__input--lurex-file-all + label,
.layout-item__input--sequins-file + label {
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
.layout-item__file-heading {
  font-size: 2rem;
  font-weight: 400;
}
/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 3rem;
}
.modal .pagination {
  min-height: 35px;
}
.pagination-item {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  background-color: #3e3d40;
  padding: 0.5rem 1.25rem;
  border: 1px solid #707070;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.pagination-item:hover {
  background-color: #4ca119;
  border-color: #4ca119;
}
.pagination-item.disabled {
  color: #909ab4;
  cursor: default;
  pointer-events: none;
}

.pagination-item.active {
  background-color: #4ca119;
  color: #fff;
  border-color: #4ca119;
}

/* INSTRUCTION BOX */
.instruction-box {
  position: fixed;
  z-index: 100;
  background-color: #4ca119;
  color: #fff;
  width: 90%;
  max-width: 30rem;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  transition: none;
}

.instruction-box-carrot {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: #4ca119;
  transform: rotate(45deg);
}
.instruction-box .btn {
  font-size: 1.4rem;
  line-height: 1;
  height: unset;
  padding: 0.5rem 1rem;
  border-color: #fff !important;
  background-color: transparent !important;
  margin-top: 2rem;
  margin-right: 1rem;
  cursor: pointer;
}
.instruction-box-overlay-bottom, 
.instruction-box-overlay-top {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(80% + 2rem);
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.7);
  transition: none;
}
/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -3;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
}
.modal-overlay--canvas {
  top: 8rem;
  left: 20%;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  text-align: left;
  max-width: 54rem;
  width: 95%;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #3e3d40;
}
.modal--loader {
  background-color: transparent;
}
.modal--checkpoint {
  height: 80vh;
  max-width: 100rem;
  overflow-y: scroll;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.modal--checkpoint + .modal-overlay,
.modal--checkpoint-save + .modal-overlay,
.modal--checkpoint-save {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.modal--checkpoint .inner-page__layout-list-headings {
  position: sticky;
  top: 0;
  background-color: #3e3d40;
}
.modal--checkpoint .modal__buttons {
  position: sticky;
  bottom: 0;
  background-color: #3e3d40;
  box-shadow: 0 -3px 6px rgb(0 0 0 / 16%), 0 -3px 6px rgb(0 0 0 / 23%);
  padding-top: 1rem;
}
.modal--checkpoint .layout-list-item__data.selected {
  background-color: #707070;
}
.modal--yarn {
  height: 80vh;
  width: 90%;
  max-width: 80rem;
  max-height: 80rem;
  overflow-y: scroll;
  background-color: #3e3d40;
}
.modal--canvas {
  left: 40%;
  transform: translateX(0);
}
.active.modal {
  z-index: 20;
}
.active.modal + .modal-overlay {
  display: block;
  z-index: 10;
}
.modal__heading-container {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: #3e3d40;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}
.modal__heading {
  font-size: 2.5rem;
  font-weight: 400;
}
.modal__heading--yarn {
  text-align: center;
  text-transform: capitalize;
}
.modal__body {
  padding: 2rem 2rem 1rem;
  background-color: #3e3d40;
}
.modal__body--yarns,
.modal__body--lurex {
  min-height: calc(100% - 135px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.modal__body--usf {
  min-height: calc(100% - 235px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.modal__library-item {
  text-align: center;
  padding: 0.5rem;
  width: 20rem;
  max-width: 80%;
  min-width: 25%;
}
.modal__library-item.selected {
  background-color: #707070;
}
.modal__body-heading {
  font-weight: 400;
  margin-bottom: 2rem;
}
.modal__body-heading--modify {
  margin-bottom: 0.5rem;
}
.modal__body-input {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  height: 3.5rem;
  width: 100%;
  background-color: #3e3d40;
  color: #8fbbee;
  border: none;
  border-bottom: 1px solid #707070;
  outline: none;
}
.modal__buttons {
  padding-bottom: 1rem;
}
.modal__button {
  height: unset;
  padding: 0.5rem 3rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.modal__heading-container--yarn {
  position: sticky;
  top: 0;
}
.modal__footer {
  position: sticky;
  bottom: 0;
  left: 50%;
  z-index: 3;
  background-color: #3e3d40;
  box-shadow: 0 -3px 6px rgb(0 0 0 / 16%), 0 -3px 6px rgb(0 0 0 / 23%);
  padding: 1rem 0;
}
/* PREVIEW */
.preview__needle {
  position: absolute;
  top: 0;
  left: 0;
  width: 20rem;
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background-color: #3e3d40;
  border-left: 15px solid #4ca119;
  text-decoration: none;
  z-index: 5;
  cursor: pointer;
}
.preview__needle.hide {
  border-color: transparent;
}
/* EDITOR */
.editor-sidebar::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.editor-sidebar::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.editor-sidebar::-webkit-scrollbar-thumb {
  background: rgba(112, 112, 112, 0.9);
}

/* Handle on hover */
.editor-sidebar::-webkit-scrollbar-thumb:hover {
  background: #707070;
}
.sidebar__menu-item--editor {
  color: #fff;
  margin-bottom: 0.5rem;
}
.sidebar__menu-title {
  display: block;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  background-color: #3e3d40;
  border-left: 15px solid #4ca119;
  text-decoration: none;
}
.sidebar__menu-title.no-border {
  border-left: 0;
  margin-left: 15px;
}
.sidebar__menu-title-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar__menu-title-dropdown h3 {
  font-weight: 400;
  font-size: 2rem;
}
.sidebar__menu-divider {
  margin-left: 1.5rem;
  height: 1px;
  background-color: #3e3d40;
}
.sidebar__menu-divider-line {
  margin-left: 1rem;
  margin-right: 1rem;
  height: 100%;
  background-color: #707070;
}
.sideber__menu-dropdown {
  cursor: pointer;
}
.sidebar__menu-options {
  margin-left: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #3e3d40;
}
.sidebar__menu-option {
  margin: 1rem 0;
}
.sidebar__menu-option-blatstitch {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-bottom: 1px solid #707070;
}
.sidebar__menu-options--second {
  padding-bottom: 2rem;
}
.sidebar__menu-option-button--d.active,
.sidebar__menu-option-button--s.active {
  background-color: #4ca119;
  color: #fff;
}
.sidebar__menu-subheading {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.sidebar__menu-subheading--modify {
  margin-bottom: 1.5rem;
}
.sidebar__menu-subheading span {
  font-size: 2.2rem;
  line-height: 1;
}
.undo-icon, 
.redo-icon,
.sidebar__menu-title-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: #909ab4;
}
.sideber__menu-dropdown {
  color: #909ab4;
  font-size: 2rem;
}
.undo-icon:hover, 
.redo-icon:hover {
  color: #4ca119;
}
.undo-icon:active,
.redo-icon:active {
  color: #707070;
}
.sidebar__menu-option-button {
  border: 1px solid #4ca119;
  color: #909ab4;
  border-radius: 0.5rem;
  padding: 0.2rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sidebar__menu-option-button:hover {
  background-color: #4ca119;
  color: #fff;
}
.sidebar__menu-button {
  height: 3.7rem;
  line-height: unset;
  padding: 0;
  width: 100%;
  font-size: 1.6rem;
}
.sidebar__menu-option-icons,
.sidebar__menu-option-select-icons {
  font-size: 2.5rem;
  cursor: pointer;
  padding-right: 1rem;
}
.sidebar__menu-option-button:not(:last-child) {
  margin-right: 0.4rem;
}
.fas.fa-toggle-on {
  color: #4ca119;
}
.sidebar__menu-coordinate.selected {
  background-color: #4ca119 !important;
  color: #fff !important;
}
.sidebar__menu-coordinate.selected .sidebar__menu-option-button {
  color: #fff;
  border-color: #fff;
}
.select-box {
  border: 1px solid #55aaff;
  background-color: rgba(75, 160, 255, 0.3);
  position: fixed;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.navigation__steps {
  list-style-type: none;
  width: 60%;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}
.navigation__steps-item-number {
  cursor: pointer;
}
.navigation__steps-item-number.active {
  cursor: default;
  pointer-events: none;
  color: #4ca119;
}
.navigation__steps-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}
.navigation__main-buttons {
  width: 35%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 3rem;
}
.navigation__divider {
  align-self: stretch;
  width: 2px;
  background-color: #707070;
}
.canvas {
  width: 100%;
  height: calc(100vh - 12rem);
  background-color: #000;
}
.sidebar__menu-options--slider {
  padding-top: 2rem;
  position: relative;
  line-height: 1;
}
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2.7rem;
  border-radius: 0.5rem;
  background: #707070;
  outline: none;
}
.slider::-webkit-slider-thumb {
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
  width: 1.5rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #4ca119;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  position: relative;
  z-index: 2;
  width: 1.5rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #4ca119;
  cursor: pointer;
}
.slider__value {
  position: absolute;
  right: 0rem;
  z-index: 2;
}
.slider__pointer {
  position: absolute;
  bottom: 0;
  width: 2%;
  height: 10%;
  background-color: #fff;
}
.slider__background {
  position: absolute;
  top: 2rem;
  left: 1rem;
  width: 0;
  height: 1.5rem;
  border-top-left-radius: 99rem;
  border-bottom-left-radius: 99rem;
  overflow: hidden;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.slider__background-line {
  position: absolute;
  height: 100%;
  /* width: 2.5%; */
  background-color: #fff;
  display: inline-block;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.sidebar__menu-line-width, 
.sidebar__menu-input,
.sidebar__menu-lurex--radius,
.sidebar__menu-lurex--count,
.sidebar__menu-sequins-width {
  background-color: transparent;
  color: #fff;
  text-align: center;
  border: none;
  border-bottom: 1px solid;
  width: 50%;
  outline: none;
}
.sidebar__menu-opacity-container {
  position: relative;
  width: 50%;
}
.sidebar__menu-opacity {
  -webkit-appearance: none;
  width: 100%;
  background-color: transparent;
  padding: 0.2rem 0;
  text-align: center;
  border: 1px solid #707070;
  border-radius: 0.5rem;
  height: 2.7rem;
  position: relative;
  z-index: 3;
}
.sidebar__menu-opacity::-webkit-slider-thumb {
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
  width: 0.3rem;
  height: 100%;
  background-color: #707070;
  cursor: pointer;
}
.sidebar__menu-opacity::-moz-range-thumb {
  position: relative;
  z-index: 2;
  width: 0.3rem;
  height: 100%;
  background-color: #707070;
  cursor: pointer;
}
.sidebar__menu-opacity-value {
  font-size: 1.8rem;
  color: #000;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sidebar__menu-opacity-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  opacity: 1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.sidebar__menu-color {
  background-color: #fff;
  border: none;
  border-radius: 0.5rem;
  width: 50%;
  cursor: pointer;
}
.sidebar__menu-color::-moz-color-swatch {
  border-color: transparent;
}
.sidebar__menu-color::-webkit-color-swatch {
  border-color: transparent;
}
.sidebar__menu-laser {
  width: 50%;
  text-align: center;
  height: 2.7rem;
  background-color: #707070;
  color: #fff;
}
.sidebar__menu-checkpoint {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  background-color: #3e3d40;
  color: #fff;
  border: none;
}
.sidebar__menu-opacity--50 {
  opacity: 0.5;
}
.sidebar__menu-opacity--86 {
  background-color: #565657;
}
.sidebar__menu-color--pink {
  background-color: #ff8787;
}
.sidebar__menu-color--red {
  background-color: #8f1717;
}
.radio-input-circle {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #4ca119;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label > .radio-input-circle {
  background-color: #4ca119;
}
/* LOADER */
.LoaderBalls {
  width: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.LoaderBalls__item {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4ca119;
}
.LoaderBalls__item:nth-child(1) {
  animation: bouncing 0.4s alternate infinite
    cubic-bezier(0.6, 0.05, 0.15, 0.95);
}
.LoaderBalls__item:nth-child(2) {
  animation: bouncing 0.4s 0.1s alternate infinite
    cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
}
.LoaderBalls__item:nth-child(3) {
  animation: bouncing 0.4s 0.2s alternate infinite
    cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
}

@keyframes bouncing {
  0% {
    transform: translate3d(0, 10px, 0) scale(1.2, 0.85);
  }
  100% {
    transform: translate3d(0, -20px, 0) scale(0.9, 1.1);
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 55%;
  }
  .sidebar {
    width: 0;
  }
  .sidebar.active {
    width: 25rem;
    z-index: 20;
  }
  .sidebar-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -2;
  }
  .active + .sidebar-overlay {
    z-index: 10;
  }
  .sidebar-toggle {
    display: block;
    cursor: pointer;
    position: fixed;
    top: 35vh;
    left: 0;
    font-size: 2rem;
    z-index: 24;
    padding: 0.5rem 1rem 0.5rem 2rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    background-color: #302f32;
    color: #4ca119;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
  .sidebar-show {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    z-index: 24;
    padding: 0.5rem 1rem 0.5rem 0;
    margin-right: 1.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    color: #4ca119;
  }
  .sidebar-toggle.active {
    left: 25rem;
  }
  .navigation {
    padding-left: 0;
  }
  .navigation__main {
    padding-left: 3rem;
  }
  .inner-page,
  .navigation__top {
    padding: 3rem;
  }
  .inner-page__layout-item {
    min-width: unset;
  }
  .layout-item__button {
    font-size: 1.4rem;
    padding: 0.75rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .btn,
  .navigation__top-search-input,
  .modal__top-search-input {
    font-size: 1.4rem;
  }
  .navigation__top-search,
  .modal__top-search {
    width: auto;
  }
  .navigation__top-layout i,
  .modal__top-search-form i {
    font-size: 1.8rem;
  }
  .inner-page__layout-item {
    width: 100%;
    margin: 2rem auto;
  }
  .inner-page__layout-item:nth-child(2n) {
    margin-right: auto;
  }
}
img[src=""] {
  display: none;
}
/* canvas background image */
canvas {
  background-image: url('../images/grid.jpg');
  background-position: center;
  /* background-size: 175cm 175cm; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
} */

/* Tooltip container */
.tooltip {
  position: relative;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

.tooltip .tooltiptext.tooltiptext-left {
  left: -120px;
  bottom: 100%;
}
.tooltip .tooltiptext.tooltiptext-right {
  left: 120px;
  bottom: 100%;
}

.tooltip .tooltiptext.tooltiptext-top {
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}

.tooltip .tooltiptext.tooltiptext-bottom {
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}


/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* autosave indicator */
.save-indicator {
  position: absolute;
  overflow: hidden;
  height: 0.5rem;
  width: 300px;
  z-index: 0;
  background-color: rgb(167, 202, 237);
  top: 1rem;
  left: 50%;
  display: none;
  border-radius: 0.05rem;
}
.save-indicator__fill {
  width: 100%;
  height: .5rem;
  /* position: absolute;
  left: 0px;
  bottom: 0px;
  top: 0px; */
  transition: transform 2s linear 0s;
  transform-origin: left center;
  transform: translateX(-100%);
  background-color: #4caf50;
}
.save-indicator.active {
  display: block;
}
.save-indicator.active .save-indicator__fill {
  transform: translateX(-100%);
}
