/**=====COLORS=====**/
/**=====Font=====**/
* {
  font-family: 'Montserrat', sans-serif;
}

/*TEXTS SIZES*/
/*COLOR THEME*/
/*Border*/
/*Box Shadow*/
/**=====LINKS & LISTS STYLES=====**/
/*List types*/
.non-text-decoration {
  text-decoration: none;
}

/*Link types*/
.non-list-style {
  list-style: none;
}

/*===BORDER TYPE & DECORATION====*/
.border-right-transparent {
  border-right: 2px solid rgba(129, 129, 129, 0.478);
}

.border-right-primary {
  border-right: 2px solid #ca59b7;
}

.border-right-secundary {
  border-right: 2px solid linear-gradient(90deg, #ad6ada 35%, #709ff7 100%);
}

.border-left-transparent {
  border-left: 2px solid rgba(129, 129, 129, 0.478);
}

.border-left-primary {
  border-left: 2px solid #ca59b7;
}

.border-left-secundary {
  border-left: 2px solid linear-gradient(90deg, #ad6ada 35%, #709ff7 100%);
}

.border-white {
  border: 2px solid white;
}

.border-black {
  border: 1px solid black;
}

.border-transparent {
  border: transparent;
}

.border-primary {
  border: 1px solid #ca59b7;
}

.border-bottom-primary {
  border-bottom: 1px solid #ca59b7;
}

.border-bottom-lightgrey {
  border-bottom: 1px solid #c5c5c5;
}

.border-focus-outline-none:focus {
  outline: none;
}

.border-radius {
  border-radius: 12px;
}

.border-dashed {
  border: dashed 1px black;
}

.resize-none {
  resize: none;
}

/**=====FONT SIZE & STYLES=====**/
.font-xs {
  font-size: 0.4rem;
}

.font-sm {
  font-size: 0.8rem;
}

.font-m {
  font-size: 1rem;
}

.font-l {
  font-size: 1.4rem;
}

.font-xl {
  font-size: 2.3rem;
}

.font-xxl {
  font-size: 2.8rem;
}

.font-grey {
  color: grey;
}

.font-transparent {
  color: transparent;
}

.font-italic {
  font-style: italic;
}

.font-border-white {
  -webkit-text-stroke: 2px white;
}

.font-border-primary {
  -webkit-text-stroke: 2px #ca59b7;
}

.font-extra-bold {
  font-weight: 900;
}

.font-bold {
  font-weight: bold;
}

.font-light {
  font-weight: 300;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.letter-spacing-3 {
  letter-spacing: 3px;
}

/*TEXT POSITIONS & COLORS*/
.text-center {
  text-align: center;
}

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

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

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

.text-light {
  color: white;
}

.text-dark {
  color: black;
}

.text-primary {
  color: #ca59b7;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-light-blue {
  color: #48b5e4;
}

/*BACKGROUND COLORS*/
.bg-gray {
  background-color: grey;
}

.bg-light {
  background-color: white;
}

.bg-dark {
  background-color: black;
}

.bg-dark-opacity {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-primary {
  background-color: #ca59b7;
}

.bg-info-gradient {
  background-color: linear-gradient(90deg, #73e1fd 0%, #48b5e4 100%);
}

.bg-transparent {
  background: transparent;
}

.bg-purple {
  background: #621f96;
}

.bg-purple-opacity {
  background-color: rgba(98, 31, 150, 0.8);
}

.bg-light-blue {
  background-color: #48b5e4;
}

.bg-very-light-blue {
  background-color: #73e1fd;
}

.bg-grey {
  background: grey;
}

.bg-light-grey {
  background-color: #c5c5c5;
}

.bg-dark-grey {
  background-color: #424242;
}

/*BACKGROUND PROPERTIES*/
.bg-repeat-no {
  background-repeat: no-repeat;
}

.bg-size-cover {
  background-size: cover;
}

.bg-position-center {
  background-position: center;
}

/**=====BUTTONS CLASSES======**/
.button {
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  /*circle*/
  /*Lines*/
}

.button-rounded {
  border-radius: 100px;
}

.button-circle {
  border-radius: 50%;
  /*size*/
  /*border*/
  /*background*/
}

.button-circle-s {
  height: 2rem;
  width: 2rem;
}

.button-circle-m {
  height: 3rem;
  width: 3rem;
}

.button-circle-l {
  height: 4rem;
  width: 4rem;
}

.button-circle-border-primary {
  border: 2px solid #ca59b7;
}

.button-circle-border-secundary {
  border: 2px solid linear-gradient(90deg, #ad6ada 35%, #709ff7 100%);
}

.button-circle-border-white {
  border: 2px solid white;
}

.button-circle-with-letter {
  color: white;
  background-color: grey;
  font-size: 1.5rem;
  font-weight: 900;
}

.button-circle-image {
  background-position: center;
  background-size: cover;
}

.button-medium {
  padding: 8px 12px 8px 12px;
}

.button-large {
  padding: 10px 35px 10px 35px;
  font-size: 18px;
}

.button-primary {
  background-color: #ca59b7;
}

.button-secundary {
  background: linear-gradient(90deg, #ad6ada 35%, #709ff7 100%);
}

.button-disabled {
  background: grey;
}

.button-image {
  background-image: url("https://images.pexels.com/photos/6480201/pexels-photo-6480201.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
  background-position: center;
  background-size: cover;
}

.button-line {
  padding: 0.1rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin: 0.5rem;
  background-color: grey;
}

.button-line.active {
  background-color: #ca59b7;
}

/*SHADOWS*/
.icon-shadow {
  box-shadow: 5px 3px 7px rgba(160, 160, 160, 0.473);
}

.shadow-dark-color {
  box-shadow: 1px 10px 21px -2px rgba(41, 41, 41, 0.722);
  -webkit-box-shadow: 1px 10px 21px -2px rgba(41, 41, 41, 0.722);
  -moz-box-shadow: 1px 10px 21px -2px rgba(41, 41, 41, 0.722);
}

/*==== TAB ITEMS======*/
/* .tab-item {
  padding: 1rem;

  border-bottom: 1px solid $light-grey;
  color: $light-grey;
  &:hover {
    cursor: pointer;
  }
  &.active {
    border-bottom: 1px solid $primary;
    color: $primary;
    font-weight: bold;
  }
} */
/*=====PADDING AND MARGIN======*/
/*====MARGIN=====*/
.m {
  /*MARGIN TOP*/
  /*MARGIN BOTTOM*/
  /*MARGIN LEFT*/
  /*MARGIN RIGHT*/
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.75rem;
}

.m-2 {
  margin: 1.5rem;
}

.m-3 {
  margin: 2.25rem;
}

.m-4 {
  margin: 3rem;
}

.m-5 {
  margin: 3.75rem;
}

.m-6 {
  margin: 4.5rem;
}

.m-7 {
  margin: 5.25rem;
}

.m-8 {
  margin: 6rem;
}

.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 2.25rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 3.75rem;
}

.mt-6 {
  margin-top: 4.5rem;
}

.mt-7 {
  margin-top: 5.25rem;
}

.mt-8 {
  margin-top: 6rem;
}

.mt-auto {
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 2.25rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 3.75rem;
}

.mb-6 {
  margin-bottom: 4.5rem;
}

.mb-7 {
  margin-bottom: 5.25rem;
}

.mb-8 {
  margin-bottom: 6rem;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 0.75rem;
}

.ml-2 {
  margin-left: 1.5rem;
}

.ml-3 {
  margin-left: 2.25rem;
}

.ml-4 {
  margin-left: 3rem;
}

.ml-5 {
  margin-left: 3.75rem;
}

.ml-6 {
  margin-left: 4.5rem;
}

.ml-7 {
  margin-left: 5.25rem;
}

.ml-8 {
  margin-left: 6rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.75rem;
}

.mr-2 {
  margin-right: 1.5rem;
}

.mr-3 {
  margin-right: 2.25rem;
}

.mr-4 {
  margin-right: 3rem;
}

.mr-5 {
  margin-right: 3.75rem;
}

.mr-6 {
  margin-right: 4.5rem;
}

.mr-7 {
  margin-right: 5.25rem;
}

.mr-8 {
  margin-right: 6rem;
}

.mr-auto {
  margin-right: auto;
}

/*====PADDING=====*/
.p {
  /*PADDING TOP*/
  /*PADDING BOTTOM*/
  /*PADDING RIGHT*/
  /*PADDING LEFT*/
}

.p-02 {
  padding: 00.2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.75rem;
}

.p-2 {
  padding: 1.5rem;
}

.p-3 {
  padding: 2.25rem;
}

.p-4 {
  padding: 3rem;
}

.p-5 {
  padding: 3.75rem;
}

.p-6 {
  padding: 4.5rem;
}

.p-7 {
  padding: 5.25rem;
}

.p-8 {
  padding: 6rem;
}

.p-auto {
  padding: auto;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.75rem;
}

.pt-2 {
  padding-top: 1.5rem;
}

.pt-3 {
  padding-top: 2.25rem;
}

.pt-4 {
  padding-top: 3rem;
}

.pt-5 {
  padding-top: 3.75rem;
}

.pt-6 {
  padding-top: 4.5rem;
}

.pt-7 {
  padding-top: 5.25rem;
}

.pt-8 {
  padding-top: 6rem;
}

.pt-auto {
  padding-top: auto;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.75rem;
}

.pb-2 {
  padding-bottom: 1.5rem;
}

.pb-3 {
  padding-bottom: 2.25rem;
}

.pb-4 {
  padding-bottom: 3rem;
}

.pb-5 {
  padding-bottom: 3.75rem;
}

.pb-6 {
  padding-bottom: 4.5rem;
}

.pb-7 {
  padding-bottom: 5.25rem;
}

.pb-8 {
  padding-bottom: 6rem;
}

.pb-auto {
  padding-bottom: auto;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.75rem;
}

.pr-2 {
  padding-right: 1.5rem;
}

.pr-3 {
  padding-right: 2.25rem;
}

.pr-4 {
  padding-right: 3rem;
}

.pr-5 {
  padding-right: 3.75rem;
}

.pr-6 {
  padding-right: 4.5rem;
}

.pr-7 {
  padding-right: 5.25rem;
}

.pr-8 {
  padding-right: 6rem;
}

.pr-auto {
  padding-right: auto;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.75rem;
}

.pl-2 {
  padding-left: 1.5rem;
}

.pl-3 {
  padding-left: 2.25rem;
}

.pl-4 {
  padding-left: 3rem;
}

.pl-5 {
  padding-left: 3.75rem;
}

.pl-6 {
  padding-left: 4.5rem;
}

.pl-7 {
  padding-left: 5.25rem;
}

.pl-8 {
  padding-left: 6rem;
}

.pl-auto {
  padding-left: auto;
}

.w-20 {
  width: 20%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.max-w-60 {
  max-width: 60%;
}

/*HEIGHTS*/
.h-10 {
  height: 10%;
}

.h-40 {
  height: 40%;
}

.h-50 {
  height: 50%;
}

.h-80 {
  height: 80%;
}

.h-90 {
  height: 90%;
}

.h-100 {
  height: 100%;
}

.max-h-50vh {
  max-height: 50vh;
}

.max-h-80 {
  max-height: 80%;
}

.max-h-90 {
  max-height: 90%;
}

.max-h-10 {
  max-height: 10%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.z-index-n1 {
  z-index: -1;
}

.z-index-10 {
  z-index: 10;
}

.placeholder-text-dark::placeholder {
  color: black;
}

.opacity-80 {
  opacity: 0.8;
}

.object-fit-cover {
  object-fit: cover;
}

.rounded-pill {
  border-radius: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.border-rounded {
  border-radius: 1rem;
}

.overflow-scroll {
  overflow: scroll;
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.overflow-auto {
  overflow: auto;
}

.right-0 {
  right: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
}

.gallery-arrow.left {
  left: 1rem;
}

.gallery-arrow.right {
  right: 1rem;
}

/***DISPLAYS***/
.display-flex {
  display: flex;
}

.display-inline {
  display: inline;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

/***JUSTIFYS***/
.justify-space {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

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

.justify-left {
  justify-content: left;
}

.justify-right {
  justify-content: right;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

/***DIRECTIONS**/
.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

/***ALIGNS***/
.align-self-end {
  align-self: flex-end;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

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

.vertical-align-bottom {
  vertical-align: bottom;
}

/***POSITIONS***/
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.left-40 {
  left: 40%;
}

.bottom-0 {
  bottom: 0;
}

.flex-1 {
  flex: 1;
}

.configurator-img-size {
  max-height: 350px;
  max-width: 350px;
}

.description-text {
  max-height: 150px;
}

.ui-main-container {
  width: 30rem;
  margin-top: 3rem;
  margin-left: 3rem;
}

/*==== TAB ITEMS======*/
.tab-item {
  padding: 1rem;
  color: #c5c5c5;
}

.tab-item:hover {
  cursor: pointer;
}

.tab-item.border-bottom {
  border-bottom: 2px solid #c5c5c5;
}

.tab-item.border-top {
  border-top: 2px solid #c5c5c5;
}

.tab-item.active {
  border-color: #ca59b7;
  color: #ca59b7;
  font-weight: bold;
}

.border-top-light-grey {
  border-top: 2px solid #c5c5c5;
}

.overflow-scroll-x {
  overflow-x: scroll;
}

.overflow-hidden-x {
  overflow-x: hidden;
}

.overflow-auto-x {
  overflow-x: auto;
}

/* .mobile-size{
    width: 100%;
    height: 100%;

}*/
.img-mobile-size {
  width: 100%;
  max-height: 100%;
}

.configurator-mobile-size {
  height: 100%;
}

.margin-n2 {
  margin-top: -2px;
}

.description-text {
  max-height: 150px;
}

#renderCanvas {
  width: 100%;
  height: 100%;
  touch-action: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #621F96 transparent;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #621F96;
  border-radius: 8px;
  border: 8px solid transparent;
}

.card {
  max-height: 134px;
  width: 100px;
  text-align: center;
}

.selected-item {
  background-color: #d979d66b !important;
}

.menu {
  width: 40vw;
  height: 90vh;
}

/*GENERAL STYLES OF THE PAGE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.commander {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  /* height: 50px; */
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: #787878a1;
  position: absolute;
  z-index: 9999;
}

.card-body{
  padding: 3px !important;
}

.card-image{
  height: 92px !important;
  width: 92px !important;
}

.card-title{
  font-size: 12px !important;
}

@media (max-width: 720px) {
  .description-text {
    max-height: 60px;
  }

  .configurator-img-size {
    max-height: 200px;
    max-width: 300px;
  }

  #menu {
    bottom: 0px;
    width: 100%;
    margin: 0px;
    flex-direction: column-reverse !important;
    padding: 0px !important;
  }

  .menu{
    height: auto;
  }

  #items{
    flex-wrap: nowrap !important;
  }

  .card{
    width: 7rem;
  }

  .card > div > i{
    font-size: 3rem;
  }

  .card > div > h5 {
    font-size: 1rem;
  }

  .card-body{
    padding: 0;
  }

  .commander {
    /* display: none; */
    top: 0;
  }

  .ui-main-container {
    width: 100%;
    margin: 0;
    align-self: flex-end;
    height: 60%;
  }
}

@media (min-width: 720px) {
  .menu-mobile {
    display: none;
  }
}

@media (max-width: 720px) {
  .commander {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: fit-content;
  }
}
/*# sourceMappingURL=style.css.map */
