@import url("../template/css/app.css");
@import url("../template/css/fonts.css");
@import url("../template/css/colors.css");
body {
  font-family: "iranyekanBakh";
}

body .top-header {
  width: 100%;
  padding: 1rem 0 0;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray);
}

body .top-header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .top-header .right h1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .top-header .right h1 a img {
  width: 6rem;
}

body .top-header .right h2 {
  margin-right: 1rem;
  max-width: 7rem;
  font-size: 0.8rem;
  color: var(--color-dark);
}

body .top-header .left a {
  padding: 0.35rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--color-dark);
  border: 0.001rem solid;
  border-radius: 10rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body .top-header .left a svg {
  width: 1.2rem;
  margin-left: 0.5rem;
}

body .top-header .left a:hover {
  background-color: var(--color-dark) !important;
  color: var(--color-white) !important;
}

body .bottom-header {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999999999999999;
  padding: 1rem 0;
  background-color: var(--color-white);
}

body .bottom-header .temp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .bottom-header .main-menu ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .bottom-header .main-menu ul li {
  margin-left: 1.5rem;
}

body .bottom-header .main-menu ul li a {
  font-family: "iranyekanBakhMedium";
  color: var(--color-dark);
  text-decoration: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

body .bottom-header .main-menu ul li a:hover {
  color: var(--color-main);
}

body .bottom-header .main-menu ul .active a {
  color: var(--color-main);
}

body .bottom-header .TDD {
  padding: 0.35rem 1.5rem;
  border-radius: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background-color: var(--color-main);
  color: var(--color-white);
  border: 0.001rem solid var(--color-main);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body .bottom-header .TDD svg {
  width: 1.2rem;
  margin-left: 0.5rem;
}

body .bottom-header .TDD:hover {
  background-color: transparent;
  color: var(--color-main);
}

body .bottom-header .TDD-active {
  background-color: transparent;
  color: var(--color-main);
}
/*# sourceMappingURL=header.css.map */