/* [project]/app/css/themes.css [app-client] (css) */
.textInput {
  flex-direction: column;
  align-items: start;
  font-family: modam;
  display: flex;
}

.textInput label {
  width: 100%;
  padding: 7px;
  font-size: 15px;
  font-weight: 100;
}

.textInput input {
  background-color: var(--inputlightback);
  width: 100%;
  height: 50px;
  box-shadow: var(--headershadow);
  border-radius: 10px;
  outline: none;
  padding: 0 15px;
  font-size: 13px;
  transition: all .3s;
}

.textInput input::placeholder {
  text-align: right;
}

.textInput input:hover {
  box-shadow: 0px 0px 20px 5px var(--inputshadow);
}

.textInput input:focus {
  box-shadow: var(--blackshadow);
  border-radius: 10px;
}

.numberInput {
  flex-direction: column;
  align-items: start;
  margin: 20px;
  font-family: modam;
  display: flex;
}

.numberInput label {
  width: 100%;
  padding: 7px;
  font-size: 15px;
  font-weight: 100;
}

.numberInput input {
  width: 100%;
  height: 45px;
  color: var(--colorinput);
  background-color: var(--inputback);
  box-shadow: 0px 0px 15px 6px var(--inputshadow);
  border: .5px solid #ffffff10;
  border-radius: 3px;
  outline: none;
  padding: 0 15px;
  font-size: 13px;
  transition: all .3s;
}

.numberInput input::placeholder {
  color: var(--placeholder);
}

.numberInput input:hover {
  box-shadow: 0px 0px 20px 5px var(--inputshadow);
}

.numberInput input:focus {
  box-shadow: 0px 0px 20px 5px var(--inputshadow);
  border: .5px solid #ffffff30;
  border-radius: 5px;
  font-size: 15px;
}

.selectInput {
  flex-direction: column;
  align-items: start;
  font-family: modam;
  transition: all .5s;
  display: flex;
  position: relative;
}

.selectInput label {
  width: 100%;
  padding: 7px;
  font-size: 15px;
  font-weight: 100;
}

.selectInput input {
  cursor: pointer;
  background-color: var(--inputlightback);
  width: 100%;
  height: 50px;
  box-shadow: var(--headershadow);
  border-radius: 10px;
  outline: none;
  margin-top: 5px;
  padding: 0 15px;
  font-size: 13px;
  transition: all .3s;
}

.selectInput i {
  color: var(--title);
  font-weight: 900;
  position: absolute;
  left: 15px;
}

.selectInput .dropdown {
  border: 1px solid var(--foreground);
  background-color: var(--background);
  width: 100%;
  height: auto;
  max-height: 300px;
  box-shadow: var(--blackshadow);
  border-top: none;
  border-radius: 0 0 10px 10px;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 20px;
  transition: opacity .3s, top .3s, bottom .3s;
  display: flex;
  position: absolute;
  top: 66px;
  overflow-y: scroll;
}

.selectInput .dropdown.deactive {
  opacity: 0;
  pointer-events: none;
  z-index: -100;
  top: 67px;
}

.selectInput .dropdown.active {
  opacity: 1;
  z-index: 100;
  pointer-events: all;
  border-top: 1px solid #ffffff10;
  top: 91px;
}

.selectInput .dropdown.active.drop-up {
  box-shadow: none;
  border: 1px solid;
  border-bottom-color: #ffffff10;
  border-radius: 15px 15px 0 0;
  top: auto;
  bottom: calc(100% - 40px);
}

.selectInput.has-active-dropdown.drop-up-mode .items-center input {
  border: 1px solid var(--foreground) !important;
  border-radius: 0 0 10px 10px !important;
}

.selectInput.has-active-dropdown .items-center input {
  border: 1px solid var(--foreground) !important;
  border-radius: 10px 10px 0 0 !important;
}

.selectInput .dropdown.active ~ input {
  border-radius: 5px 5px 0 0;
}

.selectInput .dropdown div {
  border-bottom: .5px solid var(--title);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  font-weight: 100;
  transition: all .3s;
  display: flex;
}

.selectInput .dropdown div:last-child {
  border: none;
}

.selectInput .dropdown div:hover {
  color: #000;
  background-color: var(--title);
  border-radius: 5px;
  font-weight: 400;
}

.selectInput .dropdown .search-input-container {
  width: 100%;
  margin-bottom: 20px;
  cursor: auto !important;
}

.selectInput .dropdown .search-input-container input {
  width: 100%;
  box-shadow: none;
  cursor: text;
  border-color: #f1d4194b;
  height: 40px;
}

.selectInput .dropdown .search-input-container input:focus {
  border-color: #f1d419cb;
}

.selectInput .dropdown .search-input-container:hover {
  color: #f0f8ff;
}

.CheckboxInput {
  cursor: pointer;
  background-color: var(--boxback);
  height: 47px;
  box-shadow: var(--headershadow);
  border: 1px solid color-mix(in srgb, var(--foreground), transparent 70%);
  border-radius: 5px;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  font-family: modam;
  transition: all .3s;
  display: flex;
  position: relative;
}

.CheckboxInput i {
  font-weight: 100;
}

.CheckboxInput label {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
}

.CheckboxInput label.active {
  border: 1px solid var(--title);
}

.CheckboxInput label span {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 20ch;
  display: inline-block;
  overflow: hidden;
}

.CheckboxInput input {
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.CheckboxInput.active {
  border: 1px solid var(--title);
  border-radius: 5px;
}

.CheckboxInput .custom-checkbox {
  appearance: none;
  border: 1px solid var(--title);
  cursor: pointer;
  background-color: #0000;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  position: relative;
}

.CheckboxInput .custom-checkbox:checked {
  background-color: #0000;
}

.CheckboxInput .custom-checkbox:checked:after {
  content: "";
  border: solid var(--title);
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%)rotate(45deg);
}

.FileInput {
  cursor: pointer;
  border-radius: 5px;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  width: 50%;
  height: fit-content;
  font-family: modam;
  transition: all .3s;
  display: flex;
  position: relative;
}

.FileInput .upload {
  height: 150px;
  color: var(--colorinput);
  background-color: var(--boxback);
  border: 1px solid var(--titleha);
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  transition: all .5s;
  display: flex;
  position: relative;
}

.FileInput .upload:hover {
  border: 1px solid var(--title);
  box-shadow: var(--blackshadow);
}

.FileInput .upload:after {
  content: "";
  background-color: #545454;
  width: 1px;
  height: 60%;
  position: absolute;
  top: 20%;
  left: -30px;
}

.FileInput .upload #plus {
  font-size: 50px;
}

.FileInput .uploadedFiles {
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  gap: 25px;
  display: flex;
}

.FileInput .uploadedFiles .imageBox {
  border: 1px solid #fff;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 700px) {
  .FileInput {
    width: 100%;
  }

  .FileInput .upload {
    color: var(--colorinput);
    background-color: var(--inputback);
    border: 1px solid #f1d419cb;
    border-radius: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    font-size: 15px;
    display: flex;
    position: relative;
  }

  .FileInput .upload:after {
    display: none;
  }

  .FileInput .uploadedFiles {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 0;
    display: flex;
  }

  .FileInput .uploadedFiles .imageBox {
    border: 1px solid #fff;
    border-radius: 15px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
  }
}

.FileInput .uploadedFiles .imageBox .deleteButton {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: #ff0000ad;
  border: none;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 22px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.FileInput .uploadedFiles .imageBox.select {
  border: 3px solid #f1d419cb;
}

.FileInput .uploadedFiles .imageBox img {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 1px;
  transition: all 1s;
}

.FileInput .uploadedFiles .imageBox.select img {
  transform: scale(1.3);
}

.FileInput .uploadedFiles .imageBox .setMain {
  background-color: #000000a1;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 70%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
}

.FileInput .uploadedFiles .imageBox.select .setMain {
  background-color: #0000;
}

.FileInput .uploadedFiles .imageBox .setMain p {
  -webkit-user-select: none;
  user-select: none;
  color: #000;
  background-color: #fff;
  border-radius: 30px;
  width: fit-content;
  height: fit-content;
  padding: 3px 15px;
  font-size: 13px;
  transition: all .5s;
}

.FileInput .uploadedFiles .imageBox .setMain p:hover {
  color: #fff;
  background-color: #070707;
}

.FileInput .uploadedFiles .imageBox.select .setMain p {
  color: #000;
  background-color: #fff;
  border-radius: 30px;
  width: fit-content;
  height: fit-content;
  padding: 3px 15px;
  transition: all .5s;
}

.TextArey {
  width: 100%;
  transform: scale;
  flex-direction: column;
  align-items: start;
  font-family: modam;
  display: flex;
}

.TextArey label {
  margin-right: 5px;
  font-weight: 100;
}

.TextArey textarea {
  background-color: var(--headerback);
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  box-shadow: var(--headershadow);
  border: 1px solid color-mix(in srgb, var(--foreground), transparent 70%);
  border-radius: 20px;
  outline: none;
  margin-top: 10px;
  padding: 15px;
  font-size: 13px;
  transition: all .3s;
}

.TextArey textarea:focus {
  box-shadow: var(--blackshadow);
  font-size: 15px;
}

* {
  font-family: modam;
}

.header {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all .3s;
}

.header .logo img, .header .logo h2 {
  filter: drop-shadow(var(--yellowshadow));
}

.header nav ul li {
  cursor: pointer;
  position: relative;
}

.header nav ul li:after {
  content: "";
  background-color: var(--title);
  width: 0%;
  height: 2px;
  transition: all .3s;
  position: absolute;
  bottom: -6px;
  left: 45%;
}

.header nav ul li:hover:after {
  width: 120%;
  color: var(--title);
  left: -10%;
}

.header nav ul li.active:after {
  width: 120%;
  left: -10%;
}

.header.active {
  height: 98%;
}

.header .changeColorTheme {
  transition: all .5s;
}

footer {
  z-index: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.theme-light footer {
  background-color: #f2f4f5 !important;
}

.theme-light footer .blur {
  opacity: 0;
}

.theme-light footer .hale {
  opacity: 0;
  display: none;
}

footer .blur {
  -webkit-backdrop-filter: blur(180px);
  backdrop-filter: blur(180px);
  z-index: 0;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  position: absolute;
  top: -50px;
  left: -50px;
}

footer .hale {
  z-index: -1;
  background-color: var(--title);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
}

footer .hale0 {
  width: 250px;
  height: 250px;
  bottom: 0;
  left: 0;
}

footer .hale1 {
  width: 250px;
  height: 250px;
  top: 0;
  right: 0;
}

footer .hale2 {
  width: 250px;
  height: 250px;
  top: -10px;
  right: calc(50% - 50px);
}

footer section {
  z-index: 1;
}

footer .conection .biginfo, .iconbox {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: var(--lightboxback);
  background-color: var(--headerback);
  box-shadow: var(--headershadow);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

footer .conection .iconbox svg:hover {
  stroke: var(--title);
}

footer .conection .biginfo {
  font-size: 13px;
}

footer .conection .biginfo div {
  gap: 5px;
  display: flex;
}

footer .conection .biginfo i {
  color: var(--title);
}

footer .conection .iconbox i {
  color: var(--title);
  cursor: pointer;
  transition: all .5s;
}

footer .conection .iconbox i:hover {
  color: var(--foreground);
}

footer .harim {
  color: var(--colorinput);
  background-color: var(--inputback);
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
}

.lightberdcrums {
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  align-items: center;
  width: 100%;
  height: 30px;
  margin-top: 10px;
  padding: 30px;
  display: flex;
  position: relative;
}

.lightberdcrums .relative .berd {
  color: #fff;
}

.lightberdcrums p {
  color: #fff !important;
}

.lightberdcrums a {
  color: var(--foreground) !important;
  font-weight: medium !important;
}

.lightberdcrums .berd div:last-child a, .lightberdcrums a:hover {
  color: var(--title) !important;
}

.lightberdcrums:before {
  content: "";
  background-color: var(--boxback);
  border-radius: inherit;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lightberdcrums .pointer-events-none {
  display: none;
}

@media screen and (max-width: 600px) {
  .lightberdcrums .pointer-events-none {
    border-radius: 10px 0 0 10px;
    display: block;
  }
}

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