@font-face {
  font-family: 'Maison_Mono';
  src: url(/fonts/Maison_Mono_Regular.woff) format('woff');
  src: url(/fonts/Maison_Mono_Regular.woff2) format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Mint-Grotesk';
  src: url(/fonts/Mint-Grotesk-Light-V131.woff) format('woff');
  src: url(/fonts/Mint-Grotesk-Light-V131.woff2) format('woff2');
  font-weight: 300;
}

@font-face {
  font-family: 'Mint-Grotesk';
  src: url(/fonts/Mint-Grotesk-Regular-V131.woff) format('woff');
  src: url(/fonts/Mint-Grotesk-Regular-V131.woff2) format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Mint-Grotesk';
  src: url(/fonts/Mint-Grotesk-Medium-V131.woff) format('woff');
  src: url(/fonts/Mint-Grotesk-Medium-V131.woff2) format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Mint-Grotesk';
  src: url(/fonts/Mint-Grotesk-Bold-V131.woff) format('woff');
  src: url(/fonts/Mint-Grotesk-Bold-V131.woff2) format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'SFPRODISPLAY';
  src: url(/fonts/SFPRODISPLAYMEDIUM.woff) format('woff');
  src: url(/fonts/SFPRODISPLAYMEDIUM.woff2) format('woff2');
  font-weight: 500;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* input {
  width: 200px !important;
  height: 60px !important;
  background-color: purple !important;
  position: static !important;
} */
:root {
  --font-size-body: 0.87vw;
  --white: #ffffff;
  --white2: #f8f8f8;
  --white3: #f4f4f4;
  --purple: #643be0;
  --purple2: #191526;
  --purple3: #312b44;
  --purple4: #8c66ff;
  --purple5: #221d34;
  --black: #111111;
  --black2: #0d0d0d;
  --black3: #000;
  --orange: #fd8821;
  --orange2: #fd953a;
  --yellow: #fbd001;
  --yellow2: #fed817;
  --green: #05bd9c;
  --green2: #06d6b0;
  --light: #f4f4f4;
  --gray: #5c566b;
  --gray2: #979797;
  --gray3: #b7b2c3;
  --gray4: #e8e6ee;
  --gray5: #666666;
  --project-layout-gray: #212121;
  --gray7: #ffffff99;
  --tomato: #ff5959;
  --roboto-font: 'Roboto', sans-serif;
  --maison-mono: 'Maison_Mono';
  --mint-grotesk-font: 'Mint-Grotesk';
  --sf-pro-display-font: 'SFPRODISPLAY';
}

body {
  font-family: var(--maison-mono);
  font-size: var(--font-size-body);
  color: var(--white);
  background-color: var(--black);
}

.has-footer-btns {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h2 {
  font-size: 1.7em;
  font-weight: 500;
  letter-spacing: 0.1vw;
}

h3 {
  font-family: var(--mint-grotesk-font);
  font-size: 1.25vw;
  letter-spacing: 0.5vw;
  font-weight: 400;
  line-height: 1.45;
}

h3.second-h3 {
  letter-spacing: 0.2vw;
  font-weight: 500;
}

h4 {
  font-family: var(--mint-grotesk-font);
  font-size: 1.17vw;
  font-weight: 400;
  letter-spacing: 0.15vw;
}

h5 {
  font-family: var(--mint-grotesk-font);
  font-size: 0.95vw;
  font-weight: 500;
}

h5.second-h5 {
  letter-spacing: 0.15vw;
  font-weight: 400;
}

h6 {
  font-family: var(--mint-grotesk-font);
  font-size: 0.87vw;
  font-weight: 400;
}

p {
  font-family: var(--mint-grotesk-font);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.15vw;
}

.big-p {
  font-size: 0.96vw;
  font-weight: 300;
  line-height: 1.5;
}

.btns {
  display: flex;
  align-items: flex-start;
  gap: 1.1vw;
}

button {
  border: 0;
  outline: 0;
  background-color: transparent;
}

.btn {
  font-family: var(--maison-mono);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.15vw;
  position: relative;
  cursor: pointer;
  z-index: 0;
}

a.btn {
  text-decoration: none;
}

.main-btn {
  color: var(--white);
  border: 0.1vw solid var(--purple);
  background-color: var(--purple);
  cursor: pointer;
}

.second-btn,
.third-btn {
  color: var(--white);
  border: 0.1vw solid var(--white);
  background: none;
  z-index: 0;
}

.fourth-btn {
  color: var(--gray5);
  border: 0.1vw solid var(--gray5);
  background: none;
}

.fifth-btn {
  color: var(--white);
  border: 0.1vw solid var(--gray5);
  background-color: var(--gray5);
}

.btn-xs {
  padding: 0.4vw 0.4vw;
}

.btn-s {
  padding: 0.6vw 0.625vw;
}

.btn-m {
  padding: 0.675vw 0.9vw;
}

.btn-l {
  padding: 0.675vw 1.25vw;
}

.btn-has-icon {
  display: flex;
  align-items: center;
}

.btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: -1;
  clip-path: circle(0% at 0 100%);
  transition: 0.5s;
}

.main-btn::after {
  background-color: rgba(0, 0, 0, 0.3);
}

.second-btn::after {
  background-color: #000;
}

.btn:hover:after {
  clip-path: circle(100%);
}

input {
  font-family: var(--maison-mono);
  font-size: 0.75vw;
  font-weight: 400;
  letter-spacing: 0.15vw;
  color: var(--white);
  border: 0;
  outline: 0;
  background: 0;
}

input::placeholder {
  color: var(--white);
}

select {
  font-family: var(--maison-mono);
  font-size: 0.75vw;
  font-weight: 400;
  letter-spacing: 0.15vw;
  color: var(--white);
  border: 0;
  outline: 0;
  background: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select::placeholder {
  color: var(--white);
}

option {
  font-family: var(--maison-mono);
  font-size: 0.75vw;
  font-weight: 400;
  letter-spacing: 0.15vw;
  color: var(--white);
  border: 0;
  outline: 0;
  background: var(--black);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.top-btm-bordered {
  width: 30vw;
  border-bottom: 0.1vw solid rgba(151, 151, 151, 0.2);
  padding: 1.2vw 1vw 1vw;
}

.top-btm-bordered:first-child {
  border-top: 0.1vw solid rgba(151, 151, 151, 0.2);
}

.top-btm-bordered-l {
  padding: 1.4vw 1vw 1.4vw;
}

.top-btm-bordered-xl {
  padding: 1.55vw 1vw 2vw;
}

.top-btm-bordered-btm-l {
  padding: 1.1vw 1vw 2.2vw;
}

.has-2-inputs {
  display: flex;
  gap: 2vw;
}

.has-2-inputs input {
  flex: 1;
}

.bordered-block {
  position: relative;
}

.bordered-block .icon {
  position: absolute;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bordered-block.has-s-icon .icon {
  width: 2.4vw;
}

.bordered-block.has-l-icon .icon {
  width: 3.3vw;
}

.bordered-block .right-itm {
  position: relative;
  z-index: 1;
  width: 100%;
}

.bordered-block.has-s-icon .right-itm {
  padding-left: 3.25vw;
}

.bordered-block.has-l-icon .right-itm {
  padding-left: 4vw;
}

.main-content {
  padding: 0 12vw;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}

.open-side-bar .main-content {
  padding: 0 12vw 0 23.5vw;
}

.content-has-pages-path {
  padding-top: 7.5vw;
}

.main-itm {
  display: block;
}

a.main-itm {
  text-decoration: none;
  color: var(--white);
}

.gradient {
  background: linear-gradient(135deg, #ba6675 20%, #844bb8 50%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.main-itm-ltr-space {
  letter-spacing: 0.15vw;
}

.footer-btns {
  border-top: 0.1vw solid var(--gray5);
  display: flex;
  align-items: center;
  padding: 1.4vw 10vw 1.4vw;
  margin-top: auto;
}

.footer-btns .go-end {
  margin-left: auto;
}

.footer-btns .back {
  margin-right: 1.1vw;
}

.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 17, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.exist-modal {
  display: flex;
}

.modal .modal-content {
  position: relative;
}

.modal .close {
  width: 1.25vw;
  position: absolute;
  top: 1vw;
  right: 1vw;
  cursor: pointer;
}

.exist-modal-btn {
  cursor: pointer;
}

.side-bar {
  width: 20vw;
  min-height: 100vh;
  position: fixed;
  top: 0;
  background-color: var(--purple2);
  padding-top: 7vw;
  transform: translate(-100vw);
  transition: 0.25s;
}

.open-side-bar .side-bar {
  transform: translate(0);
}

.side-bar .close {
  display: none;
}

.side-bar .side-bar-itm {
  padding-left: 2.75vw;
}

.side-bar a {
  padding-top: 1vw;
  padding-bottom: 1vw;
  transition: 0.25s;
}

.side-bar a.active {
  background-color: var(--purple3);
}

.side-bar a:hover {
  color: var(--purple);
}

.side-bar .perso {
  display: flex;
  align-items: center;
  gap: 1vw;
  border-bottom: 0.1vw solid rgba(232, 230, 238, 0.075);
  padding-bottom: 2vw;
}

.side-bar .pages-block {
  margin-top: 1vw;
}

.side-bar .configs .config {
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.side-bar .configs .config .icon {
  width: 1.1vw;
}

.side-bar .configs .config .txt {
  margin-top: 0.28vw;
}

.side-bar .other-pages {
  border-bottom: 0.1vw solid rgba(232, 230, 238, 0.075);
  padding-bottom: 1vw;
}

.pages-path {
  font-family: var(--mint-grotesk-font);
  font-size: 0.63vw;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.pages-path .right-arrow {
  width: 0.4vw;
  height: 0.4vw;
  transform: rotate(-45deg);
  border-bottom: 0.13vw solid white;
  border-right: 0.13vw solid white;
}

.chose-type {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}

.chose-type .radio-box {
  position: relative;
}

.chose-type .radio-box .input-radio {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.chose-type .radio-box .third-btn {
  border-width: 0;
}

.chose-type .radio-box .input-radio:checked + .third-btn {
  border-width: 0.1vw;
}

.main-page header,
.main-page header .btns {
  align-items: center;
}

.main-page main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12vw;
}

.main-page main h1 {
  max-width: 42vw;
  font-size: 1.84vw;
  font-weight: 400;
  letter-spacing: 0.5vw;
  text-transform: uppercase;
  line-height: 1.6;
}

.main-page main h1 .cntrst {
  color: var(--purple);
}

.main-page main p {
  max-width: 40vw;
  font-family: var(--roboto-font);
  font-size: 0.95vw;
  margin-top: 3.9vw;
  line-height: 1.6;
}

.main-page main .get-started {
  width: 16.2vw;
  height: 3.45vw;
  font-size: 1vw;
  color: var(--white);
  background: linear-gradient(
    135deg,
    rgba(253, 136, 33, 1),
    rgba(100, 59, 224, 1)
  );
  border: 0;
  outline: 0;
  display: flex;
  margin-top: 2vw;
}

.main-page main .get-started::before {
  content: '';
  width: calc(100% - 0.2vw);
  height: calc(100% - 0.2vw);
  position: absolute;
  top: 0.1vw;
  left: 0.1vw;
  background-color: var(--black);
  z-index: -2;
}

.main-page main .get-started::after {
  background: linear-gradient(
    135deg,
    rgba(253, 136, 33, 1),
    rgba(100, 59, 224, 1)
  );
}

.main-page main .get-started span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.main-page main .main-vector {
  width: 18vw;
  position: absolute;
  bottom: 8vh;
  left: 3.25vw;
}

.main-page main .recs {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  grid-template-columns: 18vw 15vw;
  align-items: flex-end;
  gap: 3.1vw;
}

.main-page main .recs .col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3.1vw;
}

.main-page main .recs .col .rec {
  border: 0.1vw solid var(--white);
}

.main-page main .recs .left .rec-left-top {
  height: 27vw;
  border: 0;
}

.main-page main .recs .left .rec-left-bottom {
  flex: 1;
  border-bottom: 0;
}

.main-page main .recs .left .rec-left {
  height: 39vh;
  border-bottom: 0;
}

.main-page main .recs .right .rec-right-top {
  height: 45vh;
  border-right: 0;
}

.main-page main .recs .right .rec-right-btm {
  height: 19vh;
  border-right: 0;
  border-bottom: 0;
}

.sign-in .content {
  height: 100vh;
  display: flex;
}

.sign-in .content .side {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sign-in .content .side.left .art {
  width: 18vw;
}

.sign-in .content .side.right {
  background-color: rgb(100, 59, 224, 0.1);
}

.sign-in .content .side.right .logo {
  width: 3.7vw;
}

.sign-in .content .side.right h4 {
  margin-top: 2vw;
}

.sign-in .content .side.right .sign-in-apple {
  font-family: var(--sf-pro-display-font);
  font-size: 0.9vw;
  color: var(--black);
  margin-top: 4vw;
  padding: 0.91vw 6.5vw;
  gap: 0.9vw;
  background-color: var(--white);
}

.sign-in .content .side.right .sign-in-apple::after {
  background-color: rgb(100, 59, 224, 0.15);
}

.sign-in .content .side.right .sign-in-apple .icon {
  width: 0.975vw;
}

/* New Adds section */
.secondary-typography {
  font-size: 0.86em;
  color: #a6a6a6;
}
.projects-users__heading {
  margin-top: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects-layout.layout-boxes {
  border: 0;
}
input[type='checkbox'] {
  width: 0;
  height: 0;
  position: absolute;
  display: none;
}
.projects-users-select__container {
  position: relative;
  border-bottom: 1px solid #3b3b3b;
  padding-bottom: 0.65em;
}
.projects-users-select {
  width: 100%;
  font-family: var(--maison-mono);
  font-size: 1em;
  line-height: 1.8;
  color: var(--white);
  appearance: none;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.projects-users-select__open-arrow {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.projects-users-select option {
  background-color: var(--black);
  cursor: pointer;
}
.projects-users__modal {
  width: 100%;
  height: 100%;
  background-color: #111111b2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
}
.projects-users__modal-side {
  justify-content: flex-end;
}
.projects-users-modal-side-content {
  width: 31em;
  height: 100%;
  background-color: var(--black);
  padding: 2.5vw 2.5vw 11em;
  border-left: 0.5px solid #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
}
.projects-users__modal-middle {
  justify-content: center;
  align-items: center;
}
.projects-users__modal-middle-content {
  background-color: var(--black);
  border: 1px solid #464646;
  position: relative;
  padding: 1.43em;
}
.projects-users__modal-input-block {
  margin-top: 1.72em;
}
.projects-users__modal-label {
  font-size: 0.86em;
  color: #ffffffb2;
}
.projects-users__modal-input {
  display: block;
  margin-top: 0.9em;
}
.projects-users__modal .choices {
  margin-top: 0.86em;
}
.modal__apliqe-btns {
  width: 31em;
  position: fixed;
  right: 0;
  bottom: 0;
  border-left: 0.5px solid #ffffff;
  background: linear-gradient(to top, #111111 80%, rgba(17, 17, 17, 0.1));
  padding: 2em 2.5vw 1.5vw;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  z-index: 2;
}
.modal__apliqe-btns .btn {
  pointer-events: all;
}
.modal__secondary-btn {
  margin-top: 1vw;
  justify-content: center;
}
.close-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.absolute-close-btn {
  position: absolute;
}
.modal-side__close-btn {
  right: 2.5vw;
}
.close-l-icon {
  width: 2.05em;
}

.project-empty .content {
  height: 100vh;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.project-empty .content h3 {
  max-width: 60vw;
  text-transform: uppercase;
}

.project-empty .content p {
  max-width: 31vw;
  color: #9d98ad;
  margin-top: 1.4vw;
}

.project-empty .content button {
  font-family: var(--mint-grotesk-font);
  padding: 1.1vw 4.1vw;
  margin-top: 4.25vw;
}

.project-list .main-content {
  padding-top: 10vw;
}

.project-list .more {
  width: 1.5vw;
  margin-left: auto;
  cursor: pointer;
}

.project-list .select-box {
  font-family: var(--mint-grotesk-font);
  font-size: 1.35vw;
  position: relative;
}

.project-list .select-box .select {
  width: 17vw;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-list .select-box .select .arrow {
  width: 0.475vw;
  height: 0.475vw;
  transform: rotate(45deg);
  border-bottom: 0.125vw solid white;
  border-right: 0.125vw solid white;
  transition: border-color 0.4s;
}

.project-list .select-box.active .arrow {
  border: none;
  border-left: 0.125vw solid white;
  border-top: 0.125vw solid white;
}

.project-list .select-box .option-container {
  width: 17.5vw;
  clip-path: polygon(0 0);
  top: 2.75vw;
  position: absolute;
  opacity: 0;
  transition: 0.2s;
  background-color: var(--black2);
}

.project-list .select-box.active .option-container {
  clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
  opacity: 1;
}

.project-list .select-box .option-container .option {
  padding-left: 1vw;
  height: 3.5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.2s;
}

.project-list .select-box .option-container .option.selected {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.project-list .select-box .option-container .option:hover {
  background: rgba(0, 0, 0, 0.2);
  padding-left: 1.25vw;
}

.project-list .select-box .option-container .option label {
  font-size: 1vw;
  color: var(--white);
  cursor: pointer;
}

.project-list .projects-options {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1.75vw;
}

.project-list .projects-options .status {
  width: 18vw;
}

.status .search-box .input-box select.form-number-input {
  width: 18vw; /* Set the width */
  font-size: 1rem; /* Initial font size */
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflowing text */
  text-overflow: ellipsis; /* Display ellipsis for overflow */
}


.status .search-box .input-box select.form-number-input option {
  font-size: 1rem; /* Set font size for options */
}

.project-list .projects-statuses {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1.75vw;
}

.project-list .projects-statuses .status {
  width: 18vw;
}

.project-list .projects-statuses .status .status-name {
  height: 2.55vw;
  font-family: var(--roboto-font);
  letter-spacing: 0.175vw;
  border: 0.1vw solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-list .projects-statuses .status.processing .status-name {
  color: var(--orange);
}

.project-list .projects-statuses .status.ready-frame .status-name {
  color: var(--yellow);
}

.project-list .projects-statuses .status.ready-purchase .status-name {
  color: var(--purple);
}

.project-list .projects-statuses .status.purchased .status-name {
  color: var(--green2);
}

.project-list .projects-statuses .status .project {
  border: 0.1vw solid var(--white);
  padding: 1.75vw 1.5vw 1.5vw;
  margin-top: 1.6vw;
  cursor: pointer;
  transition: 0.1s;
}

.project-list .projects-statuses .status .project:hover {
  background-color: var(--yellow2);
}

.project-list .projects-statuses .status .project > * {
  transition: 0.1s;
}

.project-list .projects-statuses .status .project:hover > * {
  color: var(--black);
}

.project-list .projects-statuses .status .project .project-heading {
  /* change here  */
  width: 100%;
  display: flex;
  align-items: center;
}

.project-list
  .projects-statuses
  .status
  .project
  .project-heading
  .project-thumb {
  width: 2.1vw;
  height: 2.1vw;
  border: 0.1vw solid var(--white);
  padding: 0.16vw;
}

.project-list
  .projects-statuses
  .status
  .project:hover
  .project-heading
  .project-thumb {
  border: 0.1vw solid var(--black);
}

.project-list
  .projects-statuses
  .status
  .project
  .project-heading
  .project-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 1vw;
}

.project-list
  .projects-statuses
  .status
  .project:hover
  .project-heading
  .more
  path {
  fill: var(--black);
}

/* change here  */
.project-list .projects-statuses .status .project .project-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.project-list .projects-statuses .status .project .project-body .main-itm {
  width: 100%;
  margin-top: 0.7vw;
  font-family: var(--maison-mono);
}
/* change here  */
.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.project-type,
.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.fourty-eight-mp {
  width: auto;
  margin-top: 1vw;
}

.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.fourty-eight-mp {
  margin-left: auto;
}

.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.details-itm {
  margin-right: 1vw;
}

.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.status-itm {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.details-itm {
  width: auto;
  color: var(--black3);
  background-color: var(--white);
  border-radius: 10px;
  padding: 1px 7px;
}

.project-list .projects-statuses .status .no-project-yet {
  height: 11vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  margin-top: 1.6vw;
  display: none;
}

.project-list .projects-statuses .status.not-have-projects .no-project-yet {
  display: flex;
}

.project-modal {
  --project-modal-width: min(1100px, 96vw);
  --project-modal-max-height: min(92vh, 1000px);
  --project-modal-padding: clamp(16px, 4vw, 48px);
  --project-viewer-min-height: clamp(220px, 50vh, 560px);
  --project-viewer-max-height: min(78vh, 900px);
  --project-image-min-height: clamp(200px, 48vh, 520px);
}

.project-modal .modal-content {
  padding: var(--project-modal-padding);
  background-color: var(--black);
  border: 0.1vw solid var(--white);
  display: flex;
  flex-direction: column;
  max-height: var(--project-modal-max-height);
  width: var(--project-modal-width);
  margin: auto;
  overflow-y: auto;
}

.project-modal .project-img {
  width: 100%;
  height: var(--project-image-min-height);
  max-height: var(--project-viewer-max-height);
  object-fit: contain;
  margin: 0 auto;
}

.project-modal .project-img-3d {
  width: 100%;
  min-height: var(--project-viewer-min-height);
  max-height: var(--project-viewer-max-height);
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Ensure model-viewer uses full available space */
.project-modal model-viewer.project-img-3d {
  width: 100%;
  min-height: var(--project-viewer-min-height);
  max-height: var(--project-viewer-max-height);
  height: auto;
}

/* Ensure SupersplatViewer uses full available space */
.project-modal .supersplat-viewer.project-img-3d {
  width: 100%;
  min-height: var(--project-viewer-min-height);
  max-height: var(--project-viewer-max-height);
  height: auto;
}

.project-modal .drag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  margin-top: 1.25vw;
}

.project-modal .drag .icon {
  width: 1.4vw;
}

.project-modal .drag .txt {
  font-size: 0.54vw;
  color: var(--gray2);
}

.project-modal .infos {
  display: flex;
  align-items: center;
  margin-top: 2.5vw;
}

.project-modal .infos .project-name {
  letter-spacing: 0.175vw;
}

.project-modal .btns {
  gap: 0.4vw;
  margin-top: 1.25vw;
  flex-wrap: wrap;
}

.project-modal .btns button {
  flex: 1;
  padding: 0.675vw 0;
}

.project-modal .btns > div {
  padding: 10px 0;
}

model-viewer {
  --progress-bar-color: #602fe4;
}

.create-new-project .content {
  padding-top: 7.9vw;
}

.create-new-project .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
  padding-left: 0;
  padding-right: 0;
}

.create-new-project .flex .left .chose-type .radio-box .input-radio,
.create-new-project .flex .right .upload-box .file-input {
  display: none;
}

.create-new-project .flex .left .chose-type .radio-box .input-radio,
.create-new-project .flex .right .upload-box .file-input {
  display: none;
}

.create-new-project .flex .right {
  display: flex;
  flex-direction: column;
}

.create-new-project .flex .right .upload-box {
  width: 40.5vw;
  height: 15.5vw;
  border: 0.1vw dashed var(--purple);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.create-new-project .flex .right .upload-box .main-itm {
  text-align: center;
  max-width: 18vw;
}

.create-new-project .flex .right .see-instructions {
  margin-left: auto;
  margin-top: 1vw;
  text-decoration: underline;
  transition: 0.25s;
}

.create-new-project .flex .right .see-instructions:hover {
  color: var(--purple);
}

.create-new-project .create-project-modal .modal-content {
  width: 50vw;
  background-color: var(--black2);
  box-shadow: 0px 6px 12px rgba(100, 59, 224, 0.2);
  padding: 1.5vw;
}

.create-project-modal .close {
  display: none;
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-slide
  .choces-heading {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.create-new-project .create-project-modal .swiper .swiper-slide .slide-choces {
  display: flex;
  gap: 0.2vw;
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-slide
  .slide-choces
  .slide-choce {
  flex: 1;
  height: 18vw;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  padding: 1vw;
  margin-top: 0.75vw;
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-slide.entire
  .slide-choces
  .slide-choce.box {
  background-image: url(/images/slider-entire-box.png);
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-slide.entire
  .slide-choces
  .slide-choce.plazma {
  background-image: url(/images/slider-entire-plazma.png);
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-slide.angles
  .slide-choces
  .slide-choce.box {
  background-image: url(/images/slider-angels-box.png);
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-slide.angles
  .slide-choces
  .slide-choce.plazma {
  background-image: url(/images/slider-angels-plazma.png);
}

.create-new-project .create-project-modal .swiper .swiper-control {
  display: flex;
  justify-content: space-between;
  margin-top: 1.7vw;
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-control
  .swiper-button-prev,
.create-new-project
  .create-project-modal
  .swiper
  .swiper-control
  .swiper-button-next {
  position: static;
  margin-top: 0;
}

.create-new-project
  .create-project-modal
  .swiper
  .swiper-control
  .swiper-button-prev::after,
.create-new-project
  .create-project-modal
  .swiper
  .swiper-control
  .swiper-button-next::after {
  font-size: 1.08vw;
  font-weight: 700;
  color: var(--white);
}

.create-new-project .create-project-modal .swiper .swiper-pagination {
  display: none;
}

.payment-information .main-content {
  padding-top: 15vw;
}

.credits .main-content {
  padding-top: 10vw;
}

.credits .boxes {
  margin-top: 1.7vw;
  display: flex;
  gap: 1vw;
}

.credits .boxes .box {
  max-width: 20.7vw;
  border: 0.1vw solid var(--white);
  padding: 1.5vw;
}

.credits .boxes .box p {
  font-family: var(--maison-mono);
  font-size: 0.63vw;
  letter-spacing: normal;
  color: var(--gray2);
  margin-top: 0.4vw;
}

.credits .boxes .box .buy-btn {
  width: 100%;
  padding: 0.675vw 0;
  margin-top: 0.8vw;
}

.about .main-content {
  padding-top: 8.5vw;
}

.about .main-p {
  max-width: 60vw;
}

.about .boxes {
  display: flex;
  gap: 1.2vw;
  margin-top: 2.1vw;
}

.about .boxes .box {
  width: 20vw;
  height: 27vw;
  border: 0.1vw solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .boxes .box p {
  max-width: 17vw;
  text-align: center;
}

.painting-oil .flex {
  display: flex;
  margin-top: 3.7vw;
  justify-content: space-between;
}

.painting-oil .flex .main-img {
  width: 40.5vw;
  padding: 1.4vw;
  border: 0.1vw solid var(--white);
}

.checkout h5 .num {
  font-family: var(--maison-mono);
}

.checkout .contact-details-h5 {
  margin-top: 3.5vw;
}

.checkout .address-h5 {
  margin-top: 2vw;
}

.checkout .payment-method-h5 {
  margin-top: 2.5vw;
}

.checkout .seperate-inputs {
  display: flex;
  gap: 2.5vw;
  margin-top: 1.1vw;
}

.checkout .seperate-inputs-block .seperate-inputs:last-of-type {
  margin-top: 0;
}

.checkout
  .seperate-inputs-block
  .seperate-inputs:last-of-type
  .top-btm-bordered {
  border-top: 0;
}

.checkout .top-btm-bordered:last-of-type {
  border-top: 0.1vw solid rgba(151, 151, 151, 0.2);
}

.checkout .chose-type {
  margin-top: 1vw;
}

.checkout .chose-type .visa-card {
  margin-left: 0.8vw;
}

.checkout .summary .currency {
  display: none;
}

.your-purchase .progress-bar {
  width: 48vw;
  height: 1.15vw;
  border: 0.1vw solid var(--white);
  margin: auto;
  margin-top: 13.75vw;
  background-color: var(--black3);
}

.your-purchase .progress-bar .bar {
  width: 30%;
  height: 100%;
  background-color: var(--purple);
}

.thank-you .main-content {
  align-items: center;
}

.thank-you .pages-path {
  align-self: flex-start;
}

.thank-you .main-p {
  max-width: 40vw;
  text-align: center;
  margin-top: 5vw;
}

.thank-you .infos {
  margin-top: 2.5vw;
}

/* change here */
.export-data {
  width: 125px;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  width: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--maison-mono);
  font-size: 0.75vw;
}

.dropdown-content h5 {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--maison-mono);
  font-size: 0.95vw;
  background-color: silver;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .btn {
  background-color: #3e8e41;
}

table {
  /* change here add font-family*/
  font-family: var(--maison-mono);
  width: 100%;
}

table,
th,
td {
  /*border: 0.5px solid gray;*/
  border-collapse: collapse;
}

/* change here*/
th {
  font-weight: 500;
}

table .main-btn .icon {
  display: none;
}

.runners-table {
  margin-top: 1vw;
}

.runners-table .main-btn {
  display: block;
}

.runners-table .light-indicator {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100%;
  display: none;
  text-align: center;
  margin: auto;
}

.runners-table .true {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100%;
  background-color: rgba(134, 255, 0, 1);
  box-shadow: 0 0 10px rgba(134, 255, 0, 0.1), 0 0 10px rgba(134, 255, 0, 0.1),
    0 0 10px rgba(134, 255, 0, 0.1), 0 0 10px rgba(134, 255, 0, 0.1),
    0 0 10px rgba(134, 255, 0, 0.1);
  display: none;
}

.runners-table .available-true .true {
  display: block;
  text-align: center !important;
}

.runners-table .false {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100%;
  background-color: rgba(236, 15, 15, 1);
  box-shadow: 0 0 10px rgba(236, 15, 15, 0.1), 0 0 10px rgba(236, 15, 15, 0.1),
    0 0 10px rgba(236, 15, 15, 0.1), 0 0 10px rgba(236, 15, 15, 0.1),
    0 0 10px rgba(236, 15, 15, 0.1);
}

.runners-table .available-true .false {
  display: none;
  text-align: center !important;
}

/* change here of 48 MP */

/* change here*/
th {
  font-weight: 500;
}

table .main-btn .icon {
  display: none;
}

.runners-table .main-btn {
  display: block;
}

.green-light-active {
  width: 10px;
  height: 10px;
  background-color: lightgreen;
  border-radius: 50%;
  display: inline-block;
}

.green-light-inactive {
  width: 10px;
  height: 10px;
  background-color: lightgray;
  border-radius: 50%;
  display: inline-block;
}

.users-table td:nth-of-type(3) input,
.users-table td:nth-of-type(4) input {
  max-width: 20px;
  display: block;
  margin: auto;
}

.users-table td:nth-of-type(8) .main-btn .icon {
  display: none;
}

.users-table .main-btn {
  display: block;
}

.project-list .projects-statuses .status .project .project-body .main-itm.time {
  margin-left: auto;
  margin-right: 10px;
  width: 100%;
}

.project-list
  .projects-statuses
  .status
  .project
  .project-body
  .main-itm.height {
  margin-left: auto;
  margin-right: 10px;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .main-page main {
    margin-top: 20vw;
  }

  .main-page main .recs .left .rec-left-top {
    height: 40vw;
  }

  .main-page main .recs .right .rec-right-top {
    height: 30vw;
  }
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 14px;
  }

  .has-footer-btns {
    padding-bottom: 150px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p {
    letter-spacing: 2px;
  }

  .big-p {
    font-size: 16px;
  }

  .btns {
    gap: 10px;
  }

  .btn {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .btn-s {
    padding: 7px 9px;
  }

  .btn-m {
    padding: 7px 12px;
  }

  .btn-l {
    padding: 7px 15px;
  }

  input {
    font-size: 14px;
    letter-spacing: 2px;
  }

  select {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .top-btm-bordered {
    width: 100%;
    padding: 20px 5vw;
    background-color: var(--black3);
  }

  .bordered-block.has-s-icon .icon {
    width: 30px;
    height: 30px;
  }

  .bordered-block.has-l-icon .icon {
    width: 40px;
    height: 40px;
  }

  .bordered-block.has-s-icon .right-itm {
    padding-left: 40px;
  }

  .bordered-block.has-l-icon .right-itm {
    padding-left: 50px;
  }

  .has-2-inputs {
    flex-direction: column;
    gap: 0;
    padding-left: 0;
  }

  .has-2-inputs input:first-of-type {
    padding: 0 5vw 20px 5vw;
  }

  .has-2-inputs input:last-of-type {
    border-top: 0.1vw solid rgba(151, 151, 151, 0.2);
    padding: 20px 5vw 0 5vw;
  }

  .avatar-user {
    width: 30px;
  }

  header {
    padding: 20px 5vw;
    justify-content: space-between;
  }

  header .header-container {
    width: 100%;
    margin-left: 0;
  }

  header .main-logo {
    width: 100px;
  }

  header nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--light);
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    clip-path: circle(5% at 93% 5%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
    margin-left: 0;
  }

  .hamburger-open header nav {
    clip-path: circle(100%);
    transition: clip-path 1s;
    opacity: 1;
    pointer-events: visible;
  }

  header nav a {
    font-size: 16px;
    color: var(--black2);
  }

  header .hamburger {
    display: flex;
  }

  header .theme-switches {
    gap: 3px;
  }

  header .theme-switches .switch-btn {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 0;
  }

  header .theme-switches .switch-btn .icon {
    width: 100%;
  }

  .main-content {
    padding: 0 5vw;
  }

  .main-itm {
    font-size: 13px;
  }

  .footer-btns {
    width: 100%;
    padding: 20px 5vw;
    position: fixed;
    bottom: 0;
    background-color: var(--black);
    z-index: 2;
  }

  .footer-btns .back {
    margin-right: 0;
  }

  .modal .close {
    width: 30px;
  }

  .content.main-content {
    padding-top: 120px;
  }

  .content-hasnt-pd-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .side-bar {
    width: 100%;
    z-index: 1000;
    padding-top: 30px;
  }

  .side-bar .close {
    width: 30px;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .side-bar a {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .side-bar .side-bar-itm {
    padding-left: 30px;
  }

  .side-bar .perso {
    gap: 10px;
    padding-bottom: 30px;
  }

  .side-bar .configs .config {
    gap: 5px;
  }

  .side-bar .configs .config .icon {
    width: 17px;
  }

  .side-bar .configs .config .main-itm {
    margin-top: 3px;
  }

  .side-bar .other-pages {
    padding-bottom: 15px;
  }

  .side-bar .pages-block {
    margin-top: 15px;
  }

  .pages-path {
    gap: 4px;
  }

  .content-hasnt-pd-mobile .pages-path {
    padding: 0 5vw;
  }

  .pages-path .main-itm {
    font-size: 8.5px;
  }

  .back-to-all-projects .back-to-word {
    display: none;
  }

  .pages-path .right-arrow {
    width: 5px;
    height: 5px;
    border-width: 1px;
  }

  .main-page main {
    padding: 0;
    height: 100vh;
    margin-top: 0;
    justify-content: center;
    padding: 0 5vw;
  }

  .main-page main h1 {
    max-width: 500px;
    font-size: 27px;
    font-weight: 400;
  }

  .main-page main h1 br {
    display: none;
  }

  .main-page main p {
    max-width: 400px;
    font-size: 14px;
    margin-top: 30px;
  }

  .main-page main .get-started {
    width: 200px;
    height: 55px;
    font-size: 17px;
    padding: 1px;
    margin-top: 25px;
  }

  .main-page main .get-started::before {
    content: '';
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: var(--black);
    z-index: -2;
  }

  .main-page main .main-vector {
    width: 18vw;
    position: absolute;
    bottom: 3vh;
    left: 3.25vw;
  }

  .main-page main .recs .col .rec {
    border-color: rgba(255, 255, 255, 0.075);
    z-index: -1;
  }

  .main-page main .recs .left .rec-left-top {
    height: 76vh;
  }

  .main-page main .recs .right .rec-right-btm {
    height: 12vh;
  }

  .sign-in .content .side.right .logo {
    width: 55px;
  }

  .sign-in .content .side.right h4 {
    margin-top: 20px;
  }

  .sign-in .content .side.right .sign-in-apple {
    font-size: 16px;
    margin-top: 50px;
    padding: 15px 60px;
    gap: 10px;
    background-color: var(--white);
  }

  .sign-in .content .side.right .sign-in-apple .icon {
    width: 13px;
  }

  .sign-in .content .side.left .art {
    width: 24vw;
  }

  .project-empty .content h3 {
    max-width: 500px;
  }

  .project-empty .content p {
    max-width: 450px;
    margin-top: 15px;
  }

  .project-empty .content button {
    margin-top: 30px;
  }

  .project-empty .content button {
    padding: 15px 50px;
  }

  .project-list .select-box {
    font-size: 25px;
    font-weight: 500;
    padding-left: 0;
  }

  .project-list .select-box .select {
    width: 200px;
  }

  .project-list .select-box .select .arrow {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .project-list .select-box .option-container {
    width: 200px;
    top: 35px;
  }

  .project-list .select-box .option-container .option {
    height: 50px;
    padding-left: 16px;
  }

  .project-list .select-box .option-container .option:hover {
    padding-left: 18px;
  }

  .project-list .select-box .option-container .option label {
    font-size: 15px;
  }

  .project-list .projects-options {
    gap: 20px;
    margin-top: 15px;
    width: 100%;
    display: inline-grid;
    justify-content: space-between;
  }

  .project-list .projects-options .status {
    width: 90vw;
  }

  .project-list .projects-statuses {
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
  }

  .project-list .projects-statuses .status {
    width: 100%;
  }

  .project-list .projects-statuses .status .status-name,
  .project-list .projects-statuses .status.processing .status-name,
  .project-list .projects-statuses .status.ready-frame .status-name,
  .project-list .projects-statuses .status.ready-purchase .status-name,
  .project-list .projects-statuses .status.purchased .status-name {
    width: 100%;
    height: 30px;
    color: var(--white);
    border: 0;
    justify-content: flex-start;
    padding-left: 0;
  }

  .project-list .projects-statuses .status .project {
    background-color: var(--black3);
    border: 0;
    padding: 5vw;
  }

  .project-list .projects-statuses .status.processing .project,
  .project-list .projects-statuses .status.processing .no-project-yet {
    /* change here 22/05 */
    border-left: 2vw solid var(--orange);
  }

  .project-list .projects-statuses .status.ready-frame .project,
  .project-list .projects-statuses .status.ready-frame .no-project-yet {
    /* change here 22/05 */
    border-left: 2vw solid var(--yellow2);
  }

  .project-list .projects-statuses .status.ready-purchase .project,
  .project-list .projects-statuses .status.ready-purchase .no-project-yet {
    /* change here 22/05 */
    border-left: 2vw solid var(--purple);
  }

  .project-list .projects-statuses .status.purchased .project,
  .project-list .projects-statuses .status.purchased .no-project-yet {
    /* change here 22/05 */
    border-left: 2vw solid var(--green2);
  }

  .project-list .projects-statuses .status .no-project-yet {
    background-color: var(--black3);
    justify-content: start;
    padding: 5vw;
  }

  .project-list
    .projects-statuses
    .status
    .project
    .project-heading
    .project-thumb {
    width: 30px;
    height: 30px;
    border: 0.1vw solid var(--white);
    padding: 2px;
  }

  .project-list
    .projects-statuses
    .status
    .project
    .project-heading
    .project-name {
    margin-left: 12px;
  }

  .project-list .more {
    width: 25px;
  }

  .project-list .projects-statuses .status .project .project-body {
    display: flex;
    flex-wrap: wrap;
  }

  .project-list .projects-statuses .status .project .project-body .main-itm,
  .project-list
    .projects-statuses
    .status
    .project
    .project-body
    .main-itm:first-of-type {
    margin-top: 10px;
    width: 100%;
  }

  .project-list
    .projects-statuses
    .status
    .project
    .project-body
    .main-itm.time {
    margin-left: auto;
    margin-right: 10px;
    width: 100%;
  }

  .project-list
    .projects-statuses
    .status
    .project
    .project-body
    .main-itm.height {
    margin-left: auto;
    margin-right: 10px;
    width: 100%;
  }

  .project-modal {
    --project-modal-width: min(100vw, 740px);
    --project-modal-max-height: calc(100vh - 60px);
    --project-modal-padding: clamp(20px, 6vw, 48px);
    --project-viewer-min-height: clamp(200px, 52vh, 520px);
    --project-viewer-max-height: calc(100vh - 180px);
    --project-image-min-height: clamp(200px, 52vh, 520px);
  }

  .project-modal .modal-content {
    width: var(--project-modal-width);
    max-height: var(--project-modal-max-height);
    padding: var(--project-modal-padding);
    display: flex;
    flex-direction: column;
    border: 0;
    margin: auto;
  }

  .project-modal .infos {
    order: 1;
    margin-top: 0;
  }

  .project-modal .project-img {
    order: 2;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .project-modal .project-img-3d {
    order: 2;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .project-modal .drag {
    order: 3;
  }

  .project-modal .drag .icon {
    width: 60px;
  }

  .project-modal .drag .txt {
    display: none;
  }

  .project-modal .btns {
    order: 4;
    gap: 8px;
    margin-top: auto;
  }

  .project-modal .btns .btn {
    padding: 12px 0;
  }

  .create-new-project h2 {
    padding: 0 5vw;
  }

  .create-new-project .flex {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .chose-type {
    gap: 15px;
  }

  .create-new-project .flex .right {
    padding: 0 5vw;
  }

  .create-new-project .flex .right .upload-box {
    width: 100%;
    height: 15vh;
  }

  .create-new-project .flex .right .upload-box .main-itm {
    max-width: 350px;
    width: 90%;
  }

  .create-new-project .flex .right .see-instructions {
    margin-top: 10px;
  }

  .create-project-modal .close {
    display: block;
  }

  .create-new-project .create-project-modal .modal-content {
    width: 100%;
    height: 100%;
  }

  .create-new-project .create-project-modal .swiper {
    height: 100%;
  }

  .create-new-project .create-project-modal .swiper .swiper-slide {
    background-size: cover;
    background-position: 80% 50%;
    display: flex;
    align-items: flex-end;
    padding: 15vh 5vw;
  }

  .create-new-project .create-project-modal .swiper .swiper-slide.entire {
    background-image: url(/images/slider-entire-box.png);
  }

  .create-new-project .create-project-modal .swiper .swiper-slide.angles {
    background-image: url(/images/slider-angels-box.png);
  }

  .create-new-project
    .create-project-modal
    .swiper
    .swiper-slide
    .choces-heading {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .create-new-project
    .create-project-modal
    .swiper
    .swiper-slide
    .slide-choces
    .slide-choce.plazma {
    display: none;
  }

  .create-new-project
    .create-project-modal
    .swiper
    .swiper-slide.entire
    .slide-choces
    .slide-choce.box,
  .create-new-project
    .create-project-modal
    .swiper
    .swiper-slide.angles
    .slide-choces
    .slide-choce.box {
    background-image: none;
  }

  .create-new-project
    .create-project-modal
    .swiper
    .swiper-slide
    .slide-choces {
    display: none;
  }

  .create-new-project .create-project-modal .swiper .swiper-pagination {
    display: inline-block;
    bottom: 10vh;
  }

  .create-new-project
    .create-project-modal
    .swiper
    .swiper-pagination-bullet-active {
    background-color: var(--white);
  }

  .credits h3 {
    padding: 0 5vw;
  }

  .credits .boxes,
  .about .boxes {
    flex-direction: column;
    gap: 15px;
    margin-top: 22px;
  }

  .credits .boxes .box,
  .about .boxes .box {
    max-width: none;
    padding: 20px 5vw;
    border: 0;
    background-color: var(--black3);
    flex: 1;
  }

  .credits .boxes .box p {
    font-size: 11px;
    margin-top: 4px;
  }

  .credits .boxes .box .buy-btn {
    width: auto;
    padding: 7px 35px;
    margin-top: 9px;
  }

  .about .main-p {
    max-width: none;
    padding: 0 5vw;
  }

  .about .boxes .box {
    width: 100%;
  }

  .about .boxes .box p {
    max-width: none;
    text-align: left;
  }

  .painting-oil .flex {
    flex-direction: column;
    margin-top: 30px;
  }

  .painting-oil .flex .main-img {
    width: 90vw;
    height: 25vh;
    object-fit: cover;
    margin: 0 5vw;
  }

  .painting-oil .flex .right {
    margin-top: 20px;
  }

  .checkout .contact-details-h5 {
    margin-top: 30px;
    padding: 0 5vw;
  }

  .checkout .address-h5 {
    margin-top: 20px;
    padding: 0 5vw;
  }

  .checkout .payment-method-h5 {
    margin-top: 20px;
    padding: 0 5vw;
  }

  .checkout .seperate-inputs {
    margin-top: 7px;
    flex-direction: column;
    gap: 0;
  }

  .checkout .top-btm-bordered:last-of-type {
    border-top: 0;
  }

  .checkout .chose-type {
    margin-top: 10px;
    padding: 0 5vw;
  }

  .checkout .chose-type .visa-card {
    margin-left: 0;
  }

  .checkout .summary .currency {
    display: inline;
  }

  .checkout .summary .summary-word {
    display: none;
  }

  .your-purchase .progress-bar {
    width: 100%;
    height: 22px;
    margin-top: 130px;
  }

  .thank-you .main-content {
    align-items: stretch;
  }

  .thank-you .main-p {
    max-width: none;
    text-align: left;
    padding: 0 5vw;
    margin-top: 50px;
  }

  .thank-you .infos {
    margin-top: 25px;
  }

  /* change here */
  .export-data {
    margin-left: 127px;
  }

  table {
    border-color: #000;
    background-color: #1a1a1a;
    font-size: 10px;
  }

  table th:first-of-type {
    display: none;
  }

  .users-table th {
    padding: 10px 5px;
  }

  th,
  td {
    border-color: #000;
  }

  table td {
    overflow: auto;
    white-space: nowrap;
  }

  table td:first-of-type {
    max-width: 20vw;
  }

  table td:nth-of-type(2) {
    max-width: 20vw;
  }

  .users-table td:nth-of-type(5) input {
    max-width: 35px;
  }

  .users-table td:nth-of-type(8) {
    max-width: 35px;
  }

  .users-table td:nth-of-type(8) .main-btn {
    background: 0;
    border: 0;
    padding: 0;
    display: block;
    margin: auto;
  }

  .users-table td:nth-of-type(8) .main-btn::after {
    background: 0;
  }

  .users-table td:nth-of-type(8) .main-btn .txt {
    display: none;
  }

  .users-table td:nth-of-type(8) .main-btn .icon {
    width: 20px;
    display: inline;
  }

  table .main-btn {
    background: 0;
    border: 0;
    padding: 0;
    display: block;
    margin: auto;
  }

  table .main-btn::after {
    background: 0;
  }

  table .main-btn .txt {
    display: none;
  }

  table .main-btn .icon {
    width: 100%;
    display: inline;
  }

  table .remove-btn {
    width: 20px;
  }

  table .ping-btn {
    width: 26px;
  }

  .runners-table td:nth-of-type(1) {
    max-width: 14vw;
  }

  .runners-table th:nth-of-type(4),
  .runners-table th:nth-of-type(5),
  .runners-table th:nth-of-type(6) .InQ,
  .runners-table td:nth-of-type(3),
  .runners-table td:nth-of-type(4) {
    display: none;
  }

  .dropdown-content {
    right: 0;
  }
}

@media screen and (max-width: 700px) {
  .sign-in .content {
    flex-direction: column;
  }

  .sign-in .content .side.left {
    background: linear-gradient(135deg, var(--orange), var(--purple));
  }

  .sign-in .content .side.left .art {
    width: auto;
    height: 80vh;
    transform: translateY(0.5vh);
  }

  .sign-in .content .side.right .logo,
  .sign-in .content .side.right h4 {
    display: none;
  }

  .sign-in .content .side.right {
    background-color: transparent;
  }

  .sign-in .content .side.right .sign-in-apple {
    margin-top: 0;
  }
}

@media screen and (max-width: 500px) {
  .footer-btns .copy-weblink-btn {
    display: none;
  }

  .project-modal {
    --project-modal-width: min(100vw, 640px);
    --project-modal-max-height: calc(100vh - 100px);
    --project-modal-padding: clamp(16px, 7vw, 28px);
    --project-viewer-min-height: clamp(180px, 55vh, 420px);
    --project-viewer-max-height: calc(100vh - 140px);
    --project-image-min-height: clamp(180px, 55vh, 420px);
  }

  .project-modal .project-img,
  .project-modal .project-img-3d {
    width: 100%;
  }

  .checkout .chose-type .main-itm {
    font-size: 10px;
    gap: 7px;
  }

  .checkout .chose-type .third-btn {
    font-size: 10px;
    padding: 7px;
  }
}

@media screen and (max-width: 500px) {
  .sign-in .content .side.left .art {
    width: 82%;
    object-fit: cover;
    overflow: visible;
  }

  .sign-in .content .side {
    justify-content: start !important;
  }
}

@media screen and (max-width: 350px) {
  .footer-btns .btn-l {
    padding: 7px 9px;
  }

  .users-table {
    font-size: 8px;
  }
}
