*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  --error-color: #db382e;
}
/* 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;
}
.self-flex-start {
  align-self: flex-start;
}
.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: #222222;
}
.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;
}
.color-green {
  color: #44a10b;
}
.text-center {
  text-align: center;
}
.h-1 {
  height: 1.5rem;
}
.h-100 {
  height: 100%;
}

.w-8 {
  width: 8%;
}

.w-10 {
  width: 10%;
}
.w-15 {
  width: 15%;
}
.w-16-66 {
  width: 16.66%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33% !important;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-47 {
  width: 47%;
}
.w-49 {
  width: 49%;
}
.w-50 {
  width: 50%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-100 {
  width: 100%;
}
.w-auto {
  width: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.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;
}
.hidden {
  visibility: hidden;
}
.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;
  max-width: 54rem;
  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: #44a10b;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#44a10b),
    to(#44a10b)
  );
}
.btn:hover {
  background-position: 0 0;
  border-color: transparent;
  color: #fff;
}
.btn-primary:hover {
  background-color: #44a10b96;
}
.btn-primary-outline {
  background-color: transparent;
  border-color: #44a10b;
}
.btn-primary-outline:hover {
  background-color: #44a10b;
}
.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;
}
.back-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  text-decoration: none;
  color: #44a10b;
}
/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20rem;
  height: 100vh;
  background-color: #333333;
  z-index: 2;
  overflow-y: auto;
}
.sidebar-toggle,
.sidebar-show {
  display: none;
}
.sidebar__logo {
  display: block;
  width: 90%;
  max-width: 13rem;
  margin: 4rem auto;
  padding: 1rem 2rem 0;
}
.sidebar__menu {
  padding-top: 5rem;
  width: 100%;
}
.sidebar__menu-item {
  padding: 1rem 2rem;
  border-left: 10px solid transparent;
}
.sidebar__menu-item.active {
  background: #222222;
  border-left: 1rem solid #44a10b;
}
.sidebar__menu-link {
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
}
.sidebar__menu-item:hover {
  background: #222222;
  border-left: 1rem solid #44a10b;
}
.sidebar__menu-item:hover .sidebar__menu-link {
  font-size: 1.6rem;
}

/* TOP NAVIGATION */
.navigation {
  width: 100%;
  background-color: #333333;
  display: flex;
  justify-content: center;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); */
}
.navigation--editor {
  position: fixed;
  top: 0;
  z-index: 100;
}
.navigation__main {
  width: 100%;
  padding: 0.5rem 1rem;
}
.navigation-logo {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 3rem;
}
.navigation-notification {
  width: 20%;
  align-items: center;
  text-align: center;
  color: #fff;
}
.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-search__input {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  padding: 0.75rem 0 0.75rem 0;
  height: 5rem;
  line-height: 3.5rem;
  max-width: 90%;
  background-color: #00000033;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  outline: none;
  text-indent: 5rem;
  width: 0;
  visibility: hidden;
  transition: width 0.3s ease;
}
.navigation-search.active .navigation-search__input {
  width: 30rem;
  visibility: visible;
}
.editor-heading__input {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  padding: 0.5rem 0 0.5rem 0;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
  text-indent: 1rem;
}
.navigation-button-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.navigation-button-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  padding-right: 2rem;
}
.navigation-button-list__tooltip {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  font-size: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
}
.navigation-button-list--projects {
  padding-right: 3rem;
  margin-bottom: 1rem;
  position: static;
}
.navigation-button-list--projects .navigation-button-list__item {
  font-size: 3rem;
  padding: 1rem;
}
.navigation-button-list__item {
  font-size: 2.5rem;
  color: #dddddd;
  cursor: pointer;
  position: relative;
}
.navigation-button-list__item:hover .navigation-button-list__tooltip {
  display: block;
}
.navigation-button-list--projects .navigation-button-list__item {
  position: static;
}
.navigation-button-list__image {
  color: #dddddd;
  padding: 1.5rem 1rem;
}
.navigation-button-list__item--editor:hover .navigation-button-list__image {
  background-color: #222222b2;
}
.navigation-button-list--projects .navigation-button-list__image {
  padding: 0;
}
.navigation-button-list__image:hover {
  color: #44a10b;
}
.navigation-search {
  position: relative;
}
.navigation-search .fa-search {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.navigation-search.active .fa-search {
  left: 1rem;
  width: 1rem;
}
.navigation-select-list__item {
  display: flex;
}
/* INNER PAGE */
.inner-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #222222;
  padding: 2rem 10rem 2rem 30rem;
}
.inner-page--editor {
  padding: 7.5rem 0 0 0;
  min-height: calc(100vh - 7.5rem);
}
.inner-page__projects-container {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  margin-bottom: 5rem;
}
.inner-page__subheading {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  padding: 0 1rem;
  border-bottom: 1px solid #44a10b;
  margin: 0 0 3rem;
}
.inner-page__layout-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  min-height: 20rem;
}
.layout-item__content {
  background-color: #000;
  color: #fff;
  width: 100%;
  /* box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23); */
  position: relative;
  border-radius: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 1rem 4rem;
}
.layout-item__image {
  width: 100%;
}
.layout-item__content--image {
  width: 80%;
  max-width: 50rem;
  max-height: 90%;
  overflow: hidden;
}
.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;
}
.layout-item__top-name {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ddd;
  text-align: center;
  margin-top: 1rem;
  text-decoration: none;
}

.layout-item__top-name .top-name-text{
  text-decoration: underline;
}

.layout-item__top-icons {
  color: #44a10b;
}

.layout-item__content-name {
  font-weight: 400;
  border-bottom: 1px solid #3e3d40;
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.layout-item__buttons {
  position: absolute;
  right: 3rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.layout-item__button,
.layout-item__button--lock {
  height: unset;
  padding: 0.25rem 0.3rem;
  font-size: 1.6rem;
  color: #ddd;
}
.layout-item__button:hover {
  color: #44a10b;
}

.layout-list-item__buttons {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  visibility: hidden;
}
.layout-list-item__buttons .layout-item__button,
.layout-list-item__buttons .layout-item__button--lock {
  font-size: 1.8rem;
  margin-right: 1rem;
}
.layout-list-item__buttons .layout-item__dropdown {
  left: 7rem;
}
.layout-list-item__data:hover .layout-list-item__buttons {
  visibility: visible;
}
.layout-list-item__data:hover {
  background-color: #00000033;
}
.layout-list-item__data-file {
  color: #fff;
  width: 100%;
}
.welcome-wrapper{
  display: flex;
  justify-content: space-between;
}
.welcome-wrapper #company_selection{

}
.welcome {
  color: #dddddd;
  font-weight: 400;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.layout-item__dropdown {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background-color: #333;
  color: #ddd;
  min-width: 180px;
}
.active + .layout-item__dropdown {
  display: flex;
}
.layout-item__dropdown-item {
  color: #ddd;
  text-decoration: none;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.layout-item__dropdown-icon {
  height: 100%;
  margin-right: 1rem;
}
.layout-item__dropdown-item:hover {
  background-color: #222;
}
/* DASHBOARD LAYOUT */
.inner-page__layout-container-list {
  display: flex;
}
.inner-page__layout-list-item--modify {
  min-height: calc(80vh - 161px);
}
.inner-page__layout-list-item {
  width: 100%;
  font-size: 1.2rem;
}
.inner-page__layout-list-headings {
  padding: 2rem 0;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); */
  border-bottom: 1px solid #d9d9d9;
}
.layout-list-item__heading {
  width: 30%;
  padding: 0 1rem;
  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 0;
}
.layout-list-item__data {
  padding: 0.5rem 0;
  border-bottom: 1px solid #d9d9d9;
}
.layout-list-item__data-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
}
.layout-list-item__data-text {
  width: 30%;
  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;
}
.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 {
  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 {
  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: #44a10b;
  border-color: #44a10b;
}
.pagination-item.disabled {
  color: #909ab4;
  cursor: default;
  pointer-events: none;
}

.pagination-item.active {
  background-color: #44a10b;
  color: #fff;
  border-color: #44a10b;
}
/* MODAL */
.modal-overlay,
.loader-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: rgba(86, 93, 99, 0.502);
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  text-align: left;
  width: 80rem;
  max-width: 90%;
  color: #fff;
  background-color: #222222;
  padding: 9rem 7rem 7rem;
}
.modal.cutcrop-modal{
  top: 0%;
  left: 0%;
  width: 95vw;
  height: 95vh;
  z-index: 100;
  max-width: 100%;
  transform: translate(2.5vw, 2.5vh);
  padding: 20px;
}
.modal--image {
  width: 80vw;
  max-width: 80vw;
  height: 80vh;
  max-height: 80vh;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.modal__image {
  max-width: 100%;
  max-height: 100%;
}
.modal__close-icon {
  position: fixed;
  top: 5%;
  right: 5%;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  z-index: 30;
}
.modal__heading {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 5rem;
}
.modal.cutcrop-modal .modal__heading{
  margin-bottom: 10px;
}
.modal__heading-center {
  text-align: center;
}
.modal__heading-large {
  font-size: 2rem;
}
.modal__heading--logout {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}
.modal__body-heading {
  font-weight: 400;
}
.modal__body-input,
.modal__body-select,
.modal__body-select option {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  padding: 2rem;
  width: 100%;
  background-color: #00000033;
  color: #ddd;
  border: none;
  outline: none;
  outline: none;
  margin-bottom: 3rem;
}
select.modal__body-select option {
  background-color: #00000033 !important;
}
.modal__buttons {
  padding-bottom: 1rem;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal__buttons--center {
  justify-content: center;
}
.modal__button {
  font-family: "Montserrat", sans-serif;
  height: unset;
  padding: 1.5rem 4rem;
  line-height: 1.5;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.modal__button:hover {
  transform: scale(1.05);
}
.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;
}
.modal__close {
  background-color: #302f30;
}
/* FORM STYLE */
.form-container {
  width: 100%;
  color: #dddddd;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 4rem 4rem;
  border: 1px solid #fff;
}
.form-container__heading {
  font-size: 2rem;
  text-align: left;
  width: 100%;
  margin-bottom: 4rem;
}
.input-container {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.input-container__field {
  display: block;
  background-color: #565d631a;
  color: #dddddd;
  font-size: 2rem;
  height: 5rem;
  padding: 0 1rem;
  line-height: 3.5rem;
  border: 1px solid transparent;
  width: 100%;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  background-color: none;
}
.input-container__label {
  display: block;
}
.input-container__icon {
  position: absolute;
  top: calc(50% + 12px);
  right: 10px;
  transform: translateY(-50%);
}
.form-error {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.form-error__icon {
  width: 10%;
  padding: 0 0.2rem;
  display: flex;
  align-items: center;
}
.form-error__message {
  width: 90%;
  color: var(--error-color);
  text-align: justify;
  font-size: 1.2rem;
}
.form-error.show {
  display: flex;
}
/* EDITOR */
.article-container {
  padding-left: 0.2rem;
}
.editor-heading {
  font-size: 2rem;
  color: #dddddd;
  margin-left: 2rem;
  font-weight: 400;
}
.editor-content {
  display: flex;
}
.editor-content__image-container {
  width: 65%;
  background-color: #555555;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 8rem);
  position: relative;
}
.editor-content__image {
  width: 65%;
  position: fixed;
  top: 7.5rem;
  left: 0;
  right: 40%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upload-container {
  margin-top: 15rem;
  padding: 4rem 7rem;
  border: 1px dashed #dddddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 54rem;
  width: 90%;
}
.upload-container-addition {
  position: absolute;
  top: 1rem;
  left: calc(35% + 0.5cm);
  transform: translateX(-50%);
  margin-top: 0;
  width: 60%;
  max-width: 70rem;
  padding: 0;
}
.upload-container--form {
  padding: 2rem;
  margin-top: 0;
}
.upload-container.active {
  background-color: #222222;
}
.upload-container--form.active {
  background-color: #555555;
}
.upload-image {
  width: 40%;
  margin: 0 auto;
}
.upload-image-addition {
  width: auto;
  max-height: 8rem;
  max-width: 40%;
  margin-bottom: 3rem;
}
.remove-additional-image {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.6rem;
  color: #fff;
  background-color: #00000033;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.upload-image--form {
  max-width: 8rem;
}
.upload-area {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  color: #fff;
}
.upload-area-addition {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 5rem;
  background-color: #000;
}
.label-button {
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  padding: 0.5rem 1rem;
  background-color: #44a10b;
  width: auto;
}
.label-button-crop {
  color: #fff;
  right: 17rem;

}

.upload-area--form {
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}
.upload-area p {
  font-size: 16px;
}
.ruler-bottom-container {
  position: absolute;
  z-index: 10;
  bottom: 1cm;
  left: 1cm;
}
.ruler-background-bottom {
  background-color: #000;
  position: absolute;
  top: calc(100% - 1cm);
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 2;
  display: none;
}
.ruler-background-bottom.show {
  display: block;
}
.ruler-top-container {
  position: absolute;
  z-index: 10;
  bottom: calc(1cm + 0.5px);
  left: calc(1cm - 15px);
}
.ruler-background-top {
  background-color: #000;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 1cm;
  bottom: 0;
  z-index: 2;
  display: none;
}
.ruler-background-top.show {
  display: block;
}
.ruler-bottom-span {
  position: absolute;
  /* bottom: 40px; */
  width: 1px;
  height: 5px;
  background-color: #fff;
}
.ruler-number-bottom {
  position: absolute;
  bottom: -20px;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #fff;
}
.ruler-bottom-span.taller {
  height: 15px;
  /* bottom: 30px; */
}
.ruler-top-span {
  position: absolute;
  left: 10px;
  height: 1px;
  width: 5px;
  background-color: #fff;
}
.ruler-number-top {
  position: absolute;
  left: -20px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #fff;
}
/* .ruler-top-span:first-child, */
.ruler-top-span.taller {
  width: 15px;
  left: 0;
  /* left: 30px; */
}
/* Preview image */
.image-preview-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  background-color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  display: none;
}
.image-preview {
  max-height: 90%;
  max-width: calc(100% - 5rem);
  margin-bottom: 5rem;
  margin-left: 5rem;
}
.upload-addition-image-preview {
  max-width: 95%;
  max-height: 40vh;
  margin: 0 auto;
}
.upload-container-addition .label-button {
  top: 2rem;
  left: 2rem;
  right: unset;
  bottom: unset;
  color: #fff;
}
/* COPY FORM */
.copy-form-container {
  position: absolute;
  top: -102rem;
  right: 1rem;
  width: 30%;
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  /* pointer-events: none; */
  transition: top 0.4s ease 0.1s;
}
.copy-form-container.visible {
  top: 1rem;
}
.copy-form-container input {
  font-size: 1rem;
}
.copy-form-container .yarn input {
  font-size: 0.9rem;
}
.copy-form-container .fabric {
  border-bottom: 1px solid #fff;
}
.copy-form-container .type {
  background-color: #000;
  padding: 0;
}
.copy-form-container .plain-fabric .copy-form__row {
  margin-top: 0;
  align-items: stretch;
}
.copy-form__row {
  display: flex;
  align-items: flex-end;
  border: 1px solid #fff;
  margin-top: -1px;
}
.copy-form__row-wrap {
  flex-wrap: wrap;
}
.copy-form__row--type {
  border-bottom: none;
  border-top: none;
  font-size: 0.7rem;
  align-items: stretch;
}
.copy-form__row .input-container__label,
.copy-form__row label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copy-form__row-stretch {
  align-items: stretch;
}
.copy-form__row-small-font {
  font-size: 0.9rem;
}
.border-left {
  border-left: 1px solid #fff;
}
.border-right {
  border-right: 1px solid #fff;
}
.border-top {
  border-top: 1px solid #fff;
}
.border-top-none {
  border-top: 0;
}
.border-bottom {
  border-bottom: 1px solid #fff;
}
.border-bottom-none {
  border-bottom: none;
}
.copy-form__column {
  background-color: #000;
  display: flex;
  color: #dddddd;
  gap: 1rem;
}
.copy-form__subrow {
  display: flex;
}
.copy-form__subrow--modify {
  align-items: flex-end;
}
.subrow-center-y {
  display: flex;
  align-items: center;
}
.copy-form__input {
  width: 100%;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
}
.input-container__input--addition {
  font-size: 1.2rem;
}

input.copy-form__input--repeat {
  font-size: 1.2rem;
  text-align: right;
  padding-right: 3px;
}
.copy-form__input-color {
  opacity: 0;
}
.input-undeline-container {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.input-undeline-container span {
  width: 100%;
}
.input-underline-container--modify span {
  width: auto;
  flex-shrink: 0;
}
.copy-form__input--underline {
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
}
.copy-form__textarea {
  width: 100%;
  height: calc(100% - 18px);
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  font-size: 1rem;
}
/* ACTUAL EDIT FORM */
.editor-content__form {
  width: 35%;
  min-height: calc(100vh - 8rem);
  padding: 5rem 3rem;
  color: #dddddd;
  font-size: 1.2rem;
}
.type {
  background-color: #444;
  padding: 1rem 0.2rem;
}
.editor-form__row {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1rem;
}
.editor-form__row--fabric {
  width: 100%;
  justify-content: space-between;
}
.editor-form__row--border {
  border-bottom: 1px solid #444;
}
.editor-form__row-wrap {
  flex-wrap: wrap;
  gap: 0;
}
.editor-form__row-stretch {
  align-items: stretch;
}
.editor-form__subrow {
  display: flex;
  gap: 2rem;
}
.editor-form__subrow--modify {
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.editor-form__form-column {
  background-color: #444;
  display: flex;
  gap: 1rem;
  color: #dddddd;
  padding: 0.5rem;
}
.plain-fabric .editor-form__row {
  align-items: stretch;
}
.editor-form__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.editor-form__column-hidden {
  display: none;
}
.editor-form__column-row {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  height: 33%;
}

.editor-form__column-row .editor-form__checkbox {
  width: 100%;
}
.editor-form__upload {
  width: 90%;
  max-width: 40rem;
  margin: 0 auto 4rem;
}
.editor-form__input {
  width: 100%;
  background-color: #444;
  color: #fff;
  padding: 0.65rem;
  border: none;
  outline: none;
  border-bottom: 1px solid transparent;
}
.color-input-container {
  background-color: #000;
  cursor: pointer;
}
.editor-form__input-color {
  opacity: 0;
}
.editor-form__input--underline,
.editor-form__input--article {
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
}
.editor-form__input--article {
  width: 90%;
}
.editor-form__textarea {
  width: 100%;
  height: calc(100% - 18px);
  background-color: #444;
  color: #fff;
  padding: 0.65rem;
  border: none;
  outline: none;
  border-bottom: 1px solid transparent;
}
.editor-form__checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.editor-form__checkbox input[type="checkbox"] {
  display: none;
}
.editor-form__checkbox span {
  width: 1rem;
  height: 1rem;
  border: 1px solid #ddd;
  position: relative;
  margin-right: 0.2rem;
  cursor: pointer;
  min-width: 10px;
  min-height: 10px;
}
.editor-form__input.required,
.editor-form__textarea.required {
  border-bottom: 1px solid red;
}
/* Display the "X" when checked */
.editor-form__checkbox input[type="checkbox"]:checked + span::before,
.editor-form__checkbox input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 90%;
  background-color: #ddd;
}

/* Adjusting to make an "X" shape */
.editor-form__checkbox input[type="checkbox"]:checked + span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.editor-form__checkbox input[type="checkbox"]:checked + span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.editor-form__button {
  margin: 2rem 0;
  color: #ddd;
  background-color: transparent;
  height: 5rem;
  line-height: 3.5rem;
  padding: 0.75rem 1.75rem;
  max-width: 54rem;
  border: none;
  cursor: pointer;
  text-align: center;
}
.editor-form__button:hover {
  background-color: #44a10b;
}
.form-editor__icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.form-editor__icon:hover {
  color: #44a10b;
}
.separator {
  width: 100%;
  height: 2px;
  background-color: #333;
  margin: 2rem 0;
}
.fabric-icon-container {
  width: 5%;
  text-align: right;
}
.editor-form__document {
  list-style-type: none;
  padding: 0.5rem 0 0.5rem 1rem;
}
.editor-form__document span {
  margin-right: 1rem;
}

.editor-form__custom-select-container {
  position: relative;
}
.custom-select-list {
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: 5rem;
  width: 100%;
  background-color: #555;
  z-index: 100;
  display: block;
}
.custom-select-list.hidden {
  display: none;
}
.custom-select-option {
  padding: 0.2rem 1rem;
}
.custom-select-option:hover {
  background-color: #707070;
  cursor: pointer;
}
.custom-select-option.selected {
  background-color: #707070;
}
.project-name {
  margin-left: 2rem;
}
.dropdown,
.dropdown-select {
  position: relative;
  display: inline-block;
  color: #ddd;
  text-align: center;
  margin-left: 5rem;
}
.dropdown-select {
  margin: 0;
  width: 100%;
  text-align: left;
}
.dropdown__selected-item,
.dropdown-select__selected-item {
  background-color: #222222b2;
  width: 20rem;
  padding: 1.5rem 0;
  cursor: pointer;
  border-left: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
}
.dropdown__selected-item:hover {
  background-color: #222;
}
.dropdown-select__selected-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  transition: transform 0.2s ease;
}
.dropdown-select__selected-item {
  width: 100%;
  padding-left: 2rem;
  background-color: #333;
}
.dropdown-content,
.dropdown-select__content {
  display: none;
  position: absolute;
  list-style: none;
  z-index: 1;
  background-color: #333;
  width: 100%;
  max-height: 50vh;
  overflow: auto;
}
.dropdown-select__content {
  background-color: #444;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: opacity 0.3s ease;
}
.dropdown-select.active .dropdown-select__content {
  opacity: 1;
  visibility: visible;
}
.dropdown-select.active .dropdown-select__selected-item::after {
  transform: translateY(-50%) rotate(45deg);
}

.dropdown__item,
.dropdown-select__item {
  width: 100%;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  padding: 1.5rem 0;
  border-left: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
}
.dropdown-select__item {
  width: 100%;
  padding-left: 2rem;
}

.dropdown-content li:hover {
  background-color: #302f30;
  border-left-color: #44a10b;
}
.show {
  display: block;
}
/* ERRORS */
.editor-form__input.error {
  border: 1px solid var(--error-color);
}

.navigation-notification p.error {
  color: var(--error-color);
}

.boring-required.error {
  border: 1px solid var(--error-color);
}

.lr-required.error {
  border: 1px solid var(--error-color);
}

.yarn-required.error,
.fabric-required.error {
  border: 1px solid var(--error-color);
}

.loader-overlay {
  display: none;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  z-index: 100;
  display: none;
}
.loader.active {
  display: block;
}
.loader.active + .loader-overlay {
  display: block;
}
.loader:before,
.loader:after {
  content: "";
  display: block;
  border: 32px solid transparent;
  border-top-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  animation: weld-rotate 2s infinite ease-in;
}
.loader:before {
  border-color: transparent transparent transparent #44a10b;
  animation-delay: 0.5s;
}
@keyframes weld-rotate {
  0%,
  25% {
    transform: rotate(0deg);
  }
  50%,
  75% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1650px) {
  .xl-w-100 {
    width: 100%;
  }
  .xl-w-33 {
    width: calc(33% - 0.66rem);
  }
  .xl-wrap {
    flex-wrap: wrap;
  }
  .xl-gap-1 {
    gap: 1rem;
  }
  .xl-gap-0 {
    gap: 0rem;
  }
  .xl-mr-1 {
    margin-right: 1rem;
  }
  .xl-h-0 {
    height: 0;
  }
  .xl-d-none {
    display: none;
  }
  .xl-d-flex {
    display: flex;
  }
  .plain-fabric .editor-form__row {
    justify-content: space-between;
  }
  .editor-form__column-row .editor-form__checkbox {
    gap: 1rem;
  }
  .boring-required {
    top: 7px;
  }
  .height-fix {
    position: relative;
    top: 7px;
  }
}

@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: #44a10b;
    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: #44a10b;
  }
  .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,
  .layout-item__button--lock {
    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__projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .inner-page__projects-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.template-label{
  color: #44a10b;
  text-decoration: none!important;
}

#design-number{
  
  width: 100%;
  background-color: #333;
  color: #fff;
  border:  none;
  padding: 10px;
  padding-left: 2rem;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
}

#design-number::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

#design-number::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}

