body {
  direction: rtl;
  background-image: linear-gradient(45deg, #111, #FFF);
  font-family: irs;
  position: fixed;
  height: 100%;
  width: 100%;
  right: 0px;
  top: 0px;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
}
body .pager {
  display: flex;
  justify-self: flex-end;
  justify-content: center;
  align-items: center;
}
body .pager label {
  padding: 25px 10px;
  display: flex;
  font-size: large;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
body .pager label > span {
  position: relative;
  padding-top: 5px;
}
body .pager label > span[data-number]:before {
  content: attr(data-number);
  position: absolute;
  left: 50%;
  bottom: 100%;
  background-color: #333;
  color: #FFF;
  width: 64px;
  height: 32px;
  margin-left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size: small;
  border-radius: 10px;
}
body .pager label > span[data-number]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #333;
}
body .pager label.pg:not(.act) {
  display: none;
}
body .pager label.act {
  color: red;
  font-weight: bold;
}
body .pager label.arw i {
  vertical-align: middle;
  padding: 0px 10px;
}
body .pages {
  position: relative;
  flex: 1;
  overflow: hidden;
}
body .pages .main-page {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
}
body .pages .main-page .page {
  display: flex;
  flex: none;
  width: 100vw;
  flex-direction: column;
  position: relative;
  padding: 0px 0px 25px 25px;
}
body .pages .main-page .page > .start {
  justify-self: flex-start;
}
body .pages .main-page .page > .center {
  flex: 1;
}
body .pages .main-page .page > .end {
  justify-self: flex-end;
}
body .pages .main-page .page > * {
  margin: 25px 25px 0px 0px;
}
body .pages .main-page .page .header {
  font-size: xx-large;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .pages .main-page .page .footer {
  text-align: justify;
  padding-top: 25px;
  border-top: 1px dashed maroon;
  display: flex;
  align-items: center;
  font-size: medium;
  overflow: auto;
  color: maroon;
}
body .pages .main-page .page .footer ul {
  margin: 0px;
  padding: 0px;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  display: inline-block;
}
body .pages .main-page .page .footer ul li {
  text-align: justify;
  list-style-type: circle;
}
body .pages .main-page .page .preimg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .pages .main-page .page .preimg i {
  font-size: 32px;
}
body .pages .main-page .page .desc {
  font-size: x-large;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .pages .main-page .page .content {
  font-size: medium;
  overflow: auto;
  text-align: justify;
}
body .pages .main-page .page .content video {
  border-radius: 10px;
  margin: 10px 0px;
}
body .pages .main-page .page .content a {
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: red;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
}

* {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  transition: all ease 0.3s;
}/*# sourceMappingURL=content.css.map */