/*public code*/
@font-face {
  font-family: "siteSanse";
  src: url("../fonts/IRANSansWeb(FaNum).ttf"); /* IE9 Compat Modes */
  font-weight: normal;
  font-style: normal;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  box-sizing: border-box;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

textarea:focus {
  outline: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input:focus, button:focus, select:focus {
  outline: none;
}

a:hover, a {
  text-decoration: none;
}

/*padding & margin*/
.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-padding-right {
  padding-right: 0;
}

.no-padding-left {
  padding-left: 0;
}

/*heading tags*/
h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.67em;
}

/*btn--ripple*/
.btn--ripple {
  border-radius: 10rem;
  margin: auto;
  display: block;
  width: max-content;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
  z-index: 0;
  padding: 0.7rem 1rem;
}

.btn--ripple-ink {
  display: block;
  position: absolute;
  background: rgb(178, 178, 178);
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.btn--ripple-animate {
  -webkit-animation: ripple 0.65s linear;
  animation: ripple 0.65s linear;
}

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(2.5);
  }
}
@keyframes ripple {
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}
/*swiper*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/*menu button*/
.menu-button {
  position: relative;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 49;
  border-radius: 0.5rem;
  margin: 0;
  padding: 1rem;
  display: none;
}

.menu-button .bar:nth-of-type(1) {
  margin-top: 0;
}

.menu-button .bar:nth-of-type(3) {
  margin-bottom: 0;
}

.bar {
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  margin: 4px 0;
  background-color: #3b3b3b;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cross .bar:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  -ms-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.cross .bar:nth-of-type(2) {
  opacity: 0;
}

.cross .bar:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  -ms-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.custom-select {
  margin-left: auto;
  position: relative;
  width: 17rem;
}
.custom-select select {
  display: none;
}

.select-selected {
  background-color: DodgerBlue;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 2rem;
  right: 1.5rem;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #878986 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #878986 transparent;
  top: 1.5rem;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: #878986;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent #f5f0e9 #f5f0e9 #f5f0e9;
  cursor: pointer;
  user-select: none;
}

.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

body {
  direction: rtl;
  text-align: right;
  line-height: 2;
  font-family: "siteSanse", serif;
}

.Login-Main {
  width: max-content;
  box-shadow: 0 0 1rem rgba(97, 97, 97, 0.15);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 2rem 4rem;
  text-align: center;
  border-radius: 10px;
}
.Login-Main .head-box {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.Login-Main a {
  font-size: 1.1rem;
}
.Login-Main h4 {
  font-size: 1.1rem;
}
.Login-Main h4:nth-child(2) {
  color: #6d6d6d;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.Login-Main .input-place {
  position: relative;
}
.Login-Main .input-place input[type=text] {
  margin: 1rem 0;
  width: 100%;
  direction: ltr;
  padding: 0.5rem 1rem 0.5rem 3.5rem;
  border: 1px solid #D9D9D7 !important;
  border-radius: 5px;
}
.Login-Main .input-place input[type=text] + label {
  position: absolute;
  left: 0.2rem;
  padding: 0.5rem;
  border-radius: 10px 0 0 10px;
  background-color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid #000000;
}
.Login-Main .input-place input[type=text]#code {
  padding: 0.5rem 0;
  width: 15rem;
  letter-spacing: 1.5rem;
  text-indent: 1.5rem;
  text-align: center;
}
.Login-Main button[type=submit] {
  margin: 0.5rem 0;
  font-size: 1rem;
  width: 100%;
  border-radius: 5px;
  border: none;
  background: linear-gradient(to right, #1C4901, #26C314);
  color: #ffffff;
}
.Login-Main button[type=submit]:hover .btn--ripple-ink {
  background-color: #1C4901;
}
.Login-Main .btn-place {
  display: flex;
}
.Login-Main button[type=reset] {
  margin-right: 1rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  background-color: #ffffff;
  white-space: nowrap;
}

.timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.return_home {
  color: #000000;
  position: fixed;
  top: 1rem;
  right: 3rem;
}

.head-box {
  color: #000;
}

.alertify-notifier .ajs-message {
  text-align: center;
  color: #ffffff;
}

.base-timer {
  position: relative;
  width: 100px;
  height: 100px;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/*responsive*/
@media screen and (max-width: 575.98px) {
  .Login-Main {
    width: 85%;
  }
  .Login-Main .btn-place {
    flex-wrap: wrap;
  }
  .Login-Main button[type=reset] {
    margin-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .Login-Main {
    padding: 2rem 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
