:root {
  --primary: #353530;
  /* --dark-primary: #1c1b19; */
  --dark-primary: #000000;
  --gray: #8e8f9b;
  --light-gray: #f5f5f5c2;
  --lighter-gray: #f7f7f7;
  --accent: #f3791b;
  --secondary: #ffd042;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}
body {
  background-color: #e2c975de;
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--dark-primary);
  font-family: iranSans;
}
body::-webkit-scrollbar {
  background: linear-gradient(var(--secondary), var(--primary));
  width: 3px;
}
body::-webkit-scrollbar-thumb {
  background: black;
  width: 3px;
  height: 2px;
}
.main {
  align-self: center;
  width: 90vw;
  /* height: 90%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  /* padding: 100px 0px; */
  margin: auto;
  border-radius: 10px;
  padding: 30px 0;
  padding-top: 130px;
}
.background {
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url(/img/16.jpg);
  background-repeat: no-repeat no-repeat;
  background-size: cover;
  background-position: top;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.account__background {
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url(/img/back2.webp);
  background-repeat: no-repeat no-repeat;
  background-size: cover;
  background-position: top;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
}

/* --------------------------------------------------------------------- */
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.input {
  background-color: transparent;
  color: var(--dark-primary);
  width: 100%;
  margin: 8px 0px;
  border: none;
  border-bottom: gray solid 1px;
  border-radius: 1.5px;
  padding: 8px;
  text-align: right;
  font-size: 18px;
  font-family: iranSans;
  direction: rtl;
}
.input:focus {
  outline: none;
}
.link {
  font-size: 20px;
  text-decoration: none;
  color: var(--dark-primary);
  margin: 10px;
}

.linkLight {
  font-size: 14px;
  text-decoration: none;
  color: var(--secondary);
  margin: 10px;
}
.btn {
  background-color: var(--primary);
  color: var(--lighter-gray);
  width: 50%;
  margin: 8px;
  border-radius: 5px;
  padding: 8px;
  font-size: 18px;
  align-self: center;
  font-family: iranSans;
  transition: 0.3s;
}
.btn:hover {
  color: var(--dark-primary);
  background-color: var(--secondary);
  transition: 0.3s;
}
.form > div {
  width: 99.9%;
  align-self: center;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.label {
  font-size: 20px;
  text-align: right;
  border: none;
}
.panel {
  background-color: #ffffffb3;
  backdrop-filter: blur(2px);
  /* border: var(--accent) solid 1px; */
  border-radius: 5px;
  padding: 10px 20px;
  margin: 8px 0px;
  /* width: 100%; */
}
.title {
  font-size: 22px;
  margin-bottom: 30px;
  margin-top: 10px;
  position: relative;
  align-self: center;
  text-align: center;
  text-shadow: 0 1px #ffd04263;
  font-weight: 600;
}

label.title:before {
  content: '';
  position: absolute;
  height: 3px;
  width: 15vw;
  background-image: linear-gradient(to right, var(--primary), transparent);
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  border-radius: 3px;
}

label.title:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 15vw;
  background-image: linear-gradient(to left, var(--primary), transparent);
  top: 50%;
  right: 110%;
  transform: translateY(-50%);
  border-radius: 3px;
}
.avatar {
  width: 37px;
  height: 37px;
  margin-top: 7px;
}
.eye {
  width: 15px;
  height: 15px;
  margin: 0 5px;
}
.linkToMore {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.message {
  position: fixed;
  top: 150px;
  z-index: 10;
}
/* --------------------------------------------------------------------- */
.header {
  background-color: var(--secondary);
  width: 100vw;
  color: var(--dark-primary);
  padding: 15px;
  margin-bottom: 10px;
  position: fixed;
  box-shadow: 0 0 20px #494949;
  top: 0;
  left: 0;
  z-index: 1;
}
.header__container {
  width: 90%;
  max-width: 1600px;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.header__armin {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 14px;
}
.header__logo {
  width: 80px;
  margin: 5px;
}
.header__title {
  margin: 5px;
  font-size: 20px;
}
.header__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
/* --------------------------------------------------------------------- */
.alert {
  border-color: var(--dark-primary);
  border-radius: 10px;
  margin: 10px 0px;
  padding: 10px;
  width: 100%;
  font-size: 20px;
  height: 50px;
}
.alert-warning {
  background-color: var(--accent);
  color: var(--primary);
}
.error {
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  padding: 100px 0px;
  margin: auto;
  border-radius: 10px;
  color: var(--primary);
}
.error > a {
  color: var(--lighter-gray);
}
/* --------------------------------------------------------------------- */
.account {
  width: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  padding: 50px 0px;
  margin: auto;
  border-radius: 10px;
}
.account__form {
  width: 60%;
  align-self: flex-end;
}
.account__btn {
  width: 80%;
  align-self: center;
}
.account__btn--div {
  margin-top: 20px;
  width: 70%;
  align-self: center;
}
.account__input {
  background-color: var(--light-gray);
  box-shadow: 0 0 3px var(--dark-primary);
  border-radius: 5px;
  height: 50px;
  padding: 10px;
  margin: 10px;
  width: 80%;
  align-self: center;
  display: flex;
  justify-content: stretch;
  flex-direction: row-reverse;
  align-items: center;
}
.account__input > label {
  text-align: right;
  padding: 5px;
  /* width: 60%; */
  white-space: nowrap;
}
.disNone {
  display: none;
}
.none {
  background-color: transparent;
  /* width: auto; */
  border: none;
  font-size: 18px;
  flex: auto;
}
.none:focus {
  outline: none;
  /* border: 1px solid rgba(0, 0, 0, 0.22);
  border-color: transparent;
  background-color: transparent; */
}
.loading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading__img {
  width: 80px;
  margin-bottom: 10px;
  display: none;
}
/* --------------------------------------------------------------------- */
.showDesc {
  width: 100vw;
  height: 100vh;
  background-color: #333333b3;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
}
.showDescription {
  z-index: 1;
}
.showReport {
  z-index: 1;
}
.showBox {
  width: 60%;
  /* min-height: 40vh; */
  height: auto;
  max-height: 90vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: center;
  z-index: 100;
  /* padding-bottom: 0; */
}
.showBox--widther {
  width: 80% !important;
}
.closeBox {
  width: 100%;
  height: 30px;
  text-align: right;
}
.closeBox > a {
  text-decoration: none;
}
.descriptionRate {
  width: 90%;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
}
.descriptionRate div {
  width: 30%;
  height: 70px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 15px;
  border: 2px solid #ccc;
  background-color: #fafafa;
}
.descriptionBox {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  text-align: right;
  direction: rtl;
  max-height: 30vh;
  margin-bottom: 8px;
  background-color: #ddd;
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 10px;
}
.descriptionBoxSelf {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: right;
  direction: rtl;
  max-height: 30vh;
  margin-bottom: 20px;
  background-color: #ddd;
  padding: 10px;
  border-radius: 10px;
}
/* .descriptionBox div {
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 10px;
} */
.descriptionBox--manager div {
  padding-bottom: 10px;
}
.descriptionBox--manager {
  width: 100%;
}
.descriptionBox strong {
  font-weight: 700;
  width: max-content;
  margin-bottom: 0px !important;
}
.descriptionBox--manager strong {
  font-weight: 700;
  width: max-content;
  margin-bottom: 0px !important;
}
/* .descriptionBox--manager strong {
  padding-right: 10px;
  font-weight: 700;
  width: 100%;
} */
.descriptionBox--manager div {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  text-align: right;
  direction: rtl;
  max-height: 30vh;
  background-color: #ddd;
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 10px;
}
.descriptionBox--manager div div,
.descriptionBox div {
  width: 100%;
  /* padding-bottom: 10px; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  margin: 0 0 8px 0;
  border: none;
}
.descriptionBox--manager button {
  width: 50%;
}
.descriptionBox pre {
  width: 100%;
  overflow-y: scroll;
  padding-top: 10px;
  background-color: #fff;
  padding: 15px;
  border-radius: 7px;
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  line-break: normal;
}
.descriptionBoxSelf pre {
  width: 100%;
  overflow-y: scroll;
  padding-top: 10px;
  background-color: #fff;
  padding: 15px;
  border-radius: 7px;
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  line-break: normal;
}
.descriptionBox--manager pre {
  width: 100%;
  max-height: 30vh;
  overflow-y: scroll;
  padding-top: 10px;
  background-color: #fff;
  padding: 15px;
  border-radius: 7px;
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  line-break: normal;
}
.fullNames {
  width: 100% !important;
  display: flex;
  flex-direction: row !important;
  justify-content: space-between !important;
}
.descriptionBox--manager pre::-webkit-scrollbar,
.descriptionBox--manager--two pre::-webkit-scrollbar {
  background: none;
  width: 3px;
}
.descriptionBox--manager pre::-webkit-scrollbar-thumb,
.descriptionBox--manager--two pre::-webkit-scrollbar-thumb {
  background: #aaa;
}
.descriptionBox--manager--two .descriptionBox--manager--supervisor {
  /* padding-bottom: 10px; */
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.descriptionBox--manager--two {
  width: 90%;
  display: flex;
}
.descriptionBox strong {
  font-weight: 700;
  width: max-content;
  margin-bottom: 0px !important;
}
.descriptionBox--manager--two strong {
  font-weight: 700;
  width: max-content;
  margin-bottom: 0px !important;
}
/* .descriptionBox--manager--two strong {
  padding-right: 10px;
  font-weight: 700;
  width: 100%;
} */
.descriptionBox--manager--supervisor div {
  /* margin: auto; */
  /* margin-top: 10px; */
  display: flex;
  flex-direction: column;
  width: 49.5%;
  height: 100%;
  text-align: right;
  direction: rtl;
  max-height: 30vh;
  background-color: #ddd;
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 10px;
}
.descriptionBox--manager--supervisor div div,
.descriptionBox--manager--two > div > div,
.descriptionBox div {
  /* width: 100%; */
  /* padding-bottom: 10px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  /* padding: 10px; */
  /* margin: 0 0 10px 0; */
  border: none;
}
.descriptionBox--manager--two button {
  width: 50%;
}
.descriptionBox--manager--supervisor {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row !important;
  align-items: center;
}
.descriptionBox pre {
  width: 100%;
  overflow-y: scroll;
  padding-top: 10px;
  background-color: #fff;
  padding: 15px;
  border-radius: 7px;
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  line-break: normal;
}
.descriptionBoxSelf pre {
  width: 100%;
  overflow-y: scroll;
  padding-top: 10px;
  background-color: #fff;
  padding: 15px;
  border-radius: 7px;
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  line-break: normal;
}
.descriptionBox--manager--two pre {
  width: 100%;
  margin-top: 0;
  height: 220px;
  max-height: 30vh;
  overflow-y: scroll;
  padding-top: 10px;
  background-color: #fff;
  padding: 15px;
  border-radius: 7px;
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  line-break: normal;
}

.descriptionBox pre::-webkit-scrollbar {
  background: none;
  width: 3px;
}
.descriptionBox pre::-webkit-scrollbar-thumb {
  background: #aaa;
}
.reportDescription {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 5px;
  text-align: right;
  height: 20%;
  overflow-y: scroll;
}
.reportDescription::-webkit-scrollbar {
  background: none;
  width: 3px;
}
.reportDescription pre {
  font-family: iranSans;
  font-size: 16px;
  white-space: pre-wrap;
  max-height: 120px;
  direction: rtl;
}
.reportBox {
  margin: auto;
  width: 90%;
  text-align: center;
  height: 90%;
  overflow-y: scroll;
}
.reportBox::-webkit-scrollbar {
  background: none;
  width: 3px;
}
/* --------------------------------------------------------------------- */
.profile,
.profile .pro {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.pro {
  flex-direction: row-reverse !important;
}
.profileInformation,
.profileLike {
  /* margin: auto; */
  margin-bottom: 10px;
  height: 100%;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* .profileLike {
  margin-right: 10px;
} */
.imgLike {
  width: 100%;
  height: 100%;
}
.profileLike__profile {
  width: 80%;
}
.shortToTall {
  height: 90%;
  width: 17%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.profileLike__title {
  width: 100%;
  margin-bottom: 20px;
}
.noneTitle::after,
.noneTitle::before {
  display: none;
}
.profileLike {
  width: 24%;
  /* height: 90%; */
  align-items: center;
}
.profileLikeView,
.profileLiker {
  width: 100px;
  height: 100px;
  border: 1px solid black;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.heart,
.heartNum {
  width: 100%;
  /* height: 50%; */
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnLike {
  width: 100%;
  margin-top: 15px;
}
.heartNum {
  position: absolute;
  background-color: transparent;
  height: 100%;
  top: 0;
  left: 0;
}
.profile__form {
  width: 80%;
  align-self: center;
}
.pic {
  width: 16%;
  /* height: 16%; */
  align-self: center;
}
.profileData {
  width: 100%;
  align-self: flex-end;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.hbd {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  background: url('/img/hbd.gif');
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
}
.hbd img {
  width: 50%;
  height: 50%;
} /* --------------------------------------------------------------------- */
.emojiLevel {
  margin: 15px 0;
  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.level {
  height: 80%;
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.level label {
  font-size: 14px;
}
.emojiLevel .imgLike,
.otherLike .imgLike,
.partnerLike .imgLike {
  width: 60px;
  height: 60px;
}
.partnerLike {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.partner {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid darkgray;
  padding: 5px;
}
.partnerInfo {
  width: 20%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.partnerInfo label {
  margin-right: 10px;
  width: 100%;
  text-align: right;
}
.formPartner {
  margin: 5px;
}
.likeRate {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.emojiBtn {
  background-color: transparent;
  border: none;
}
/* --------------------------------------------------------------------- */
.resultLike {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.g1st {
  width: 100%;
}
.taj {
  width: 50px;
  height: 30px;
}
.popularity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
.otherLike {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.otherLike.popularity {
  width: 45%;
}
/* --------------------------------------------------------------------- */
.leave {
  width: 100%;
  height: 50vh;
}
.leave > div {
  height: 90%;
  overflow-y: scroll;
}
.leave > div::-webkit-scrollbar {
  background: none;
  width: 3px;
}
.leave > div::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.leave__table {
  width: 90%;
  margin-top: 30px;
}
.leave__data--fullName {
  width: 200px;
  text-align: right;
  padding-right: 10px;
}
.leave__data:first-child {
  width: 40%;
}
.leave__input {
  background-color: var(--light-gray);
  box-shadow: 0 0 3px var(--dark-primary);
  border-radius: 5px;
}
.leave__form {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
}
.leaveType {
  width: 15%;
  padding: 10px;
  direction: rtl;
  text-align: right;
}
.leave__input--report {
  left: 0px;
  width: 80%;
  margin: 5px;
  resize: none;
  height: 65px;
}
.leave__btn {
  width: 20%;
  left: 0px;
  /* margin: 10px auto 10px 30px; */
}
/* --------------------------------------------------------------------- */
.rateSelf {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: right;
}
.rateSelf div label {
  width: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.rateSelf__form {
  display: flex;
  flex-direction: column;
}
.rateSelf__form > div {
  width: 95%;
  margin: auto;
  justify-content: space-between;
}
.rateSelf__input {
  background-color: var(--light-gray);
  box-shadow: 0 0 3px var(--dark-primary);
  border-radius: 5px;
}
.rateSelf__input--report {
  left: 0px;
  width: 85%;
  margin: 10px;
  resize: none;
  height: 200px;
}
.rateSelf__input--report::-webkit-scrollbar {
  width: 3px;
}
.rateSelf__input--report::-webkit-scrollbar-thumb {
  background: black;
}
.rateSelf__input--rate {
  width: 35%;
  margin: 10px;
  text-align: center;
}
.rateSelf__btn {
  width: 15%;
  left: 0px;
  /* margin: 10px auto 10px 30px; */
}
/* --------------------------------------------------------------------- */
.addRate {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.addRate__label {
  margin-bottom: 20px;
}
.addRate__table {
  margin-top: 10px;
}
.addRateHis__label {
  border-bottom: 2px solid var(--primary);
}
.addRate__label--fullName {
  color: #666;
}
.addRate__form {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.addRate__data {
  padding: 5px;
}
.addRate__rate {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: space-between !important;
  align-items: center !important;
  background-color: transparent !important;
  width: 93%;
  padding-top: 0;
  border: none !important;
}
.addRate__description {
  display: flex !important;
  flex-direction: column !important;
  justify-content: right !important;
  align-items: flex-start !important;
  width: 100% !important;
}
.rateManager__input--report {
  left: 0px;
  width: 100%;
  margin: 0;
  box-shadow: none;
  resize: none;
  max-height: 30vh;
  height: 220px;
  background-color: #fff;
}
.addRate__data:last-child {
  width: 2%;
}
.addRate__data a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.addRate__data:first-child {
  width: 24%;
}
.addRate__input {
  width: 100%;
  margin-right: 5px;
  background-color: var(--light-gray);
  box-shadow: 0 0 3px var(--dark-primary);
  border-radius: 5px;
}
.addRate__btn {
  width: 100%;
  padding: auto;
}
.addRate__btn--warnning {
  background-color: red;
  color: var(--lighter-gray);
}
.wanning__label {
  width: 100%;
}
/* --------------------------------------------------------------------- */
.history {
  border-radius: 5px;
  width: 100%;
}
.rateGroup {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin: 10px 0px;
}
.rateGroup__rateSelf {
  width: 100%;
  margin: 10px;
  display: flex;
  flex-direction: row-reverse;
  align-self: center;
  justify-content: space-around;
}
.rateGroup__rateSelf > div {
  border: var(--dark-primary) solid 1px;
  background-color: var(--primary);
  padding: 15px;
  border-radius: 10px;
  width: 20%;
  color: var(--secondary);
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.rateGroup__rateSelf div div {
  font-size: 30px;
}
.table {
  width: 100%;
}
.history__table {
  border: var(--dark-primary) solid 1px;
  border-radius: 5px;
}
.history__table--body td {
  border-top: solid gray 0.5px;
  padding: 5px;
}
.history__data--report {
  display: flex;
  align-items: center;
  justify-content: center;
}
.history__label--report {
  width: 30%;
}
.history__label--rate {
  border-left: solid gray 0.5px;
  border-right: solid gray 0.5px;
}
/* --------------------------------------------------------------------- */
.report {
  border-radius: 5px;
  width: 100%;
}
.report__select {
  margin: 10px;
  padding: 5px;
  width: auto;
  background-color: var(--light-gray);
  box-shadow: 0 0 3px var(--dark-primary);
  border-radius: 5px;
}
.report__form {
  width: 100%;
  padding: 0px 20%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.report__btn {
  width: 20%;
}
.reportGroup {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin: 10px 0px;
}
.reportGroup__rateSelf {
  width: 100%;
  margin: 10px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}
.reportGroup__rateSelf > div {
  border: var(--dark-primary) solid 1px;
  background-color: var(--primary);
  padding: 15px;
  border-radius: 10px;
  width: 25%;
  color: var(--secondary);
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.reportGroup__rateSelf div div {
  font-size: 30px;
}
.table {
  width: 100%;
}
.report__table {
  border: var(--dark-primary) solid 1px;
  border-radius: 5px;
}
.report__data {
  border: solid gray 0.5px;
}
.report__data a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.report__data--description {
  display: flex;
  justify-content: center;
  align-items: center;
}

.report__label {
  border-left: solid gray 0.5px;
  border-right: solid gray 0.5px;
}
/* --------------------------------------------------------------------- */
.search {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.table {
  width: 100%;
}
.search__table {
  border: var(--dark-primary) solid 1px;
  border-radius: 5px;
  margin-top: 10px;
}
.search__data {
  border-top: solid gray 0.5px;
}
.search__data a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.serach__select {
  margin: 10px;
  padding: 5px;
  width: auto;
  background-color: var(--light-gray);
  box-shadow: 0 0 3px var(--dark-primary);
  border-radius: 5px;
}
.search__form {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.search__btn {
  width: 20%;
}

/* --------------------------------------------------------------------- */
.footerArmin {
  color: var(--secondary);
  width: 100%;
  padding: 15px;
  box-shadow: 0 0 10px #333;
  background-color: var(--dark-primary);
  margin-top: 10px;
  bottom: 0px;
  font-size: 13px;
}
.enDiv {
  direction: rtl !important;
  text-align: left !important;
}
.enEle {
  text-align: center !important;
  /* margin: 5px 0; */
}
.panelHelp {
  margin: auto;
  width: 100%;
  text-align: center;
  font-family: iranSans;
}

/* ************************************** MEDIA ************************** */
@media (max-width: 1600px) {
  .main {
    width: 80vw;
    max-width: 1200px;
    padding-top: 100px;
  }
  .input {
    font-size: 14px;
  }
  .link {
    font-size: 16px;
    text-decoration: none;
    color: var(--dark-primary);
    margin: 10px;
  }
  .btn {
    font-size: 14px;
  }
  .label {
    font-size: 16px;
    text-align: right;
    border: none;
  }
  .title {
    font-size: 16px;
    text-align: right;
  }
  .header__armin {
    font-size: 16px;
  }
  .header__logo {
    width: 50px;
  }
  .header__title {
    font-size: 16px;
  }
  .alert {
    font-size: 18px;
  }
  .none {
    font-size: 14px;
  }
  .rateGroup__rateSelf div div {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .account {
    width: 80vw;
  }
  .pro {
    flex-direction: column !important;
  }
  .profileInformation,
  .profileLike,
  .shortToTall,
  .profileLike__profile {
    width: 100%;
  }
  .imgLike {
    width: 30px !important;
    height: 30px !important;
  }
  .emojiLevel .imgLike {
    width: 45px !important;
    height: 45px !important;
  }
  .profileLikeView .imgLike {
    width: 100px !important;
    height: 100px !important;
  }
  .partnerInfo {
    width: 45%;
  }
  .partnerInfo label {
    font-size: 13px;
  }
  .formPartner {
    margin: 2px;
  }
  .partnerLike {
    padding: 0px;
  }
  .panelHelp {
    font-size: 12px;
  }
  .grecaptcha-badge {
    visibility: hidden;
  }
  .main {
    width: 90vw;
  }
  .title {
    margin-bottom: 10px;
  }
  .panel {
    padding: 10px;
  }
  .rateSelf__form div {
    flex-direction: column !important;
    width: 95%;
  }
  .rateSelf__input--report {
    width: 100%;
  }
  .rateSelf__input--rate {
    width: 40% !important;
  }
  .rateGroup__rateSelf {
    margin: 0;
  }
  .rateGroup__rateSelf > div {
    width: 20%;
  }
  .history__label--report {
    width: 28%;
  }
  .profileData {
    flex-direction: column-reverse;
  }
  .profile__form {
    width: 90%;
  }
  .pic {
    width: 50%;
    height: 50%;
  }
  .showBox {
    width: 90%;
  }
  .error {
    width: 90vw;
  }
}

.profileLiker h1 {
  font-family: 'Fjalla One', sans-serif;
  margin-bottom: 0.15rem;
}

.profileLiker h2 {
  font-family: 'Cutive Mono', 'Courier New';
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 4rem;
}

.profileLiker label {
  cursor: pointer;
}

.profileLiker svg {
  width: 3rem;
  height: 3rem;
  padding: 0.15rem;
}

/* hide radio buttons */

.profileLiker input[name='star'] {
  display: inline-block;
  width: 0;
  opacity: 0;
  margin-left: -2px;
}

/* hide source svg */

.profileLiker .star-source {
  width: 0;
  height: 0;
  visibility: hidden;
}

/* set initial color to transparent so fill is empty*/

.profileLiker .star {
  color: transparent;
  transition: color 0.2s ease-in-out;
}

/* set direction to row-reverse so 5th star is at the end and ~ can be used to fill all sibling stars that precede last starred element*/

.profileLiker .star-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

label:hover ~ label .star,
svg.star:hover,
input[name='star']:focus ~ label .star,
.profileLiker input[name='star']:checked ~ label .star {
  color: #d62a9d;
}

.profileLiker input[name='star']:checked + label .star {
  animation: starred 0.5s;
}

.profileLiker input[name='star']:checked + label {
  animation: scaleup 1s;
}

@keyframes scaleup {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes starred {
  from {
    color: #600040;
  }
  to {
    color: #d62a9d;
  }
}
