@font-face {
  font-family: IRANSans;
  src: url("../assets/fonts/IRANSans.ttf");
}

:root {
  --primary-color: #3d76c2;
  --secondry-color: #5989ca;
}

body {
  background: #f2f2f2;
  margin: 0;
  font-family: "IRANSans";
  text-align: right;
  direction: rtl;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  color: #444444;
}

section {
  padding: 2em 2em;
}

.navbar {
  background: var(--primary-color);
  padding: 1em;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .container .title {
  text-decoration: none;
  font-weight: 400;
  color: white;
  font-size: 1.2em;
}

.navbar .container .dashboard {
  text-decoration: none;
  font-weight: normal;
  color: white;
  font-size: 1em;
  cursor: pointer;
  background: var(--secondry-color);
  padding: 0.6em 1.3em;
  border-radius: 0.5em;
}

.hero .container {
  text-align: center;
}

.hero .container .maintenance h1 {
  color: var(--primary-color);
  font-size: 1.75em;
  font-weight: lighter;
  margin-top: 0.1em;
}

.hero .container .maintenance img {
  -webkit-filter: invert(51%) sepia(52%) saturate(4230%) hue-rotate(201deg) brightness(89%) contrast(89%);
          filter: invert(51%) sepia(52%) saturate(4230%) hue-rotate(201deg) brightness(89%) contrast(89%);
  width: 60%;
}

.hero .container hr {
  color: var(--secondry-color);
}

.hero .container .actions {
  padding-right: 1.5em;
}

.hero .container .actions .radio {
  display: block;
  position: relative;
  margin: 0.5em 0;
  color: #6b6b6b;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: right;
  margin: 1.2em 0em;
}

.hero .container .actions .radio label {
  padding-right: 2em;
  cursor: pointer;
}

.hero .container .actions .radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.hero .container .actions .radio .checkmark {
  right: 0%;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #cfcfcf;
  border-radius: 50%;
}

.hero .container .actions .radio:hover input ~ .checkmark {
  background-color: #bcbcbc;
}

.hero .container .actions .radio input:checked ~ .checkmark {
  background-color: #1176d7;
}

.hero .container .actions .radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.hero .container .actions .radio input:checked ~ .checkmark:after {
  display: block;
}

.hero .container .actions .radio .checkmark:after {
  top: 8.75px;
  left: 8.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.hero .container .submit {
  width: 100%;
  height: 2.25em;
  background: var(--primary-color);
  color: #f2f2f2;
  border-radius: 0.5em;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
}

.hero .container .signin {
  color: #6b6b6b;
}

.hero .container .signin a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 0.5em;
}

@media only screen and (min-width: 300px) {
  .hero .maintenance h1 {
    font-size: 2em;
  }
  .hero .actions .radio {
    font-size: 1.4em;
  }
}

@media only screen and (min-width: 400px) {
  .hero .container {
    width: 400px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=service.css.map */