#main-header {
  font-size: 1%;
  position: absolute;
  top: 67px;
  color: white;
  z-index: -2;
}

#header-buttom-bar {
  width: 100%;
}
#header-buttom-bar a {
  background: #3a6ea5;
  font-weight: bold;
  color: #f3f3f3;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
#header-buttom-bar img {
  width: 24px;
  vertical-align: text-top;
}

body {
  margin: 0;
  direction: rtl;
}

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

a {
  text-decoration: none;
}

h2 {
  color: #333333;
  font-size: 120%;
}

p {
  color: #333333;
}

.hr {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #f3f3f3, #4f7fbf, #f3f3f3);
}

.section-title {
  margin: 0;
  padding-top: 16px;
}

.section-sub-title {
  margin-top: 4px;
  color: #555555;
}

#what-heared-pages {
  margin: 8px 0;
  border-radius: 8px;
  display: grid;
}
#what-heared-pages .what-heared-page {
  grid-area: 1/1;
}
#what-heared-pages header {
  display: flex;
  justify-content: space-between;
}
#what-heared-pages header div {
  display: flex;
}
#what-heared-pages img {
  border-radius: 64px;
}
#what-heared-pages article {
  padding: 6px;
  margin: 4px 0;
  background: #e2e2f2;
}
#what-heared-pages h4 {
  color: #333333;
  font-size: 80%;
}
#what-heared-pages .button {
  height: 32px;
  padding: 0 4px 2px 4px;
  font-size: 75%;
  font-weight: bold;
  color: #e2e2f2;
  background-color: #3a6ea5;
  border-radius: 6px;
  border: solid 1px #555555;
  cursor: pointer;
}
#what-heared-pages .button:active {
  background-color: #4f7fbf;
}
#what-heared-pages p {
  padding: 0 8px;
}
#what-heared-pages footer {
  display: flex;
}
#what-heared-pages footer .button {
  padding: 0 4px 2px 4px;
  font-weight: bold;
  color: #f3f3f3;
  background-color: #3a6ea5;
  border-radius: 6px;
  border: solid 1px #555555;
  cursor: pointer;
}
#what-heared-pages .button.disabled {
  background-color: #e2e2f2;
  color: grey;
  cursor: default;
}

.like-box {
  display: flex;
  align-items: center;
  margin: auto 8px auto auto;
}

.like-number {
  margin: 0 4px 0 16px;
  padding: 1px 4px;
  border: solid 1px #4f7fbf;
  border-radius: 4px;
}

.like-button {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url(/static/images/heartn.png);
  background-size: contain;
  border: none;
}

.like-button:active {
  background: url(/static/images/heartm.png);
  background-size: contain;
}

.like-button.liked {
  background: url(/static/images/heart.png);
  background-size: contain;
}

.paging {
  display: flex;
}
.paging ul {
  display: flex;
}
.paging li {
  margin: auto 8px;
  padding: 2px;
  border-radius: 4px;
}
.paging li.selected {
  border: solid 1px #4f7fbf;
}
.paging button {
  height: 32px;
  margin: 8px 0;
  padding: 0 4px 2px 4px;
  font-size: 75%;
  font-weight: bold;
  color: #e2e2f2;
  background-color: #3a6ea5;
  border-radius: 6px;
  border: solid 1px #555555;
  cursor: pointer;
}
.paging button:active {
  background-color: #4f7fbf;
}
.paging button.disabled {
  background-color: #e2e2f2;
  color: grey;
  cursor: default;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #f3f3f3;
}
.modal header {
  padding: 32px 16px 8px 16px;
  flex-direction: column;
}
.modal .hr {
  margin: 24px 0 0 0;
}
.modal .logo {
  width: 128px;
  height: 48px;
}
.modal button {
  line-height: 24px;
  font-weight: bold;
  color: #f3f3f3;
  border: solid 1px #555555;
  border-radius: 6px;
  padding: 0 8px 2px 8px;
}
.modal .approve-button {
  background-color: #3a6ea5;
}
.modal .approve-button:active {
  background: #4f7fbf;
}
.modal .cancel-button {
  background: #9e2121;
}
.modal .cancel-button:active {
  background: #ce2a2a;
}
.modal .button-holder {
  display: flex;
  gap: 16px;
}

.comments-modal {
  z-index: 3;
}
.comments-modal li div {
  padding: 2px;
}
.comments-modal .edit-button {
  width: 24px;
  height: 24px;
  margin: 4px;
}
.comments-modal .delete-button {
  width: 24px;
  height: 24px;
  margin: 4px;
}
.comments-modal .comment-contents {
  overflow-y: auto;
}
.comments-modal .comment-contents li {
  background: #e2e2f2;
  margin: 0 16px;
  border-radius: 8px;
}
.comments-modal p {
  padding: 16px;
}
.comments-modal footer {
  position: fixed;
  left: 16px;
  bottom: 16px;
}

.send-comment-modal {
  z-index: 4;
}
.send-comment-modal label {
  color: #333333;
}
.send-comment-modal form {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  gap: 16px;
}
.send-comment-modal form div {
  display: flex;
  margin-bottom: 32px;
}
.send-comment-modal form div label {
  align-content: center;
  margin: 0 0 0 16px;
}
.send-comment-modal input, .send-comment-modal textarea {
  background: #e2e2f2;
  border: solid 1px #4f7fbf;
  border-radius: 6px;
  padding: 2px 8px;
}
.send-comment-modal input {
  height: 24px;
}
.send-comment-modal textarea {
  resize: none;
  height: 128px;
}
.send-comment-modal #what-heared-comment-dont-publish {
  width: 24px;
  height: 24px;
}

.article-pages {
  display: grid;
}
.article-pages div {
  grid-area: 1/1;
}

.article-holder {
  max-height: 0;
  overflow: hidden;
  background: #e2e2f2;
  transition: max-height 0.5s ease-in-out;
}

.article-holder.close {
  padding-bottom: 0;
}

.article-top-bar {
  background-color: #4f7fbf;
  height: 16px;
  margin: 0 25%;
  border-radius: 8px 8px 0 0;
}

.article-bottom-bar {
  height: 24px;
  background-color: #4f7fbf;
  text-align: center;
  margin: 0 25%;
  border-radius: 0 0 8px 8px;
}
.article-bottom-bar button {
  background: none;
  border: none;
  position: relative;
  left: 0;
  right: 0;
  top: -8px;
  padding: 4px 16px;
}

.article {
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
  border: solid 1px #e2e2f2;
  background: #f3f3f3;
}
.article img {
  width: 100%;
}
.article h4 {
  color: #333333;
}
.article h5 {
  color: #333333;
}
.article header {
  margin-bottom: 16px;
}
.article header img {
  border: solid 1px #4f7fbf;
  box-shadow: 0px 0px 3px #3a6ea5;
}
.article .article-body {
  padding: 16px;
}
.article .article-body img {
  border-radius: 8px;
  box-shadow: 0px 0px 3px #3a6ea5;
}
.article .article-body p {
  margin: 8px auto;
}
.article footer {
  gap: 24px;
  display: flex;
  padding: 0 8px;
}
.article .button {
  padding: 0 4px 2px 4px;
  font-size: 75%;
  font-weight: bold;
  color: #eaeaf2;
  background-color: #3a6ea5;
  border-radius: 6px;
  border: solid 1px #555555;
  cursor: pointer;
  height: 32px;
  margin: 8px 0;
}
.article .button.disabled {
  background-color: #e2e2f2;
  color: grey;
  cursor: default;
}

video {
  border-radius: 6px;
  border: solid 1px #4f7fbf;
  box-shadow: 0px 0px 3px #3a6ea5;
}

#why-me {
  text-align: right;
  display: flex;
  flex-direction: column;
}
#why-me ul {
  padding: 8px 16px;
}
#why-me li {
  background: #e2e2f2;
  margin: 0 16px 16px 16px;
  border-radius: 8px;
}
#why-me header {
  display: flex;
}
#why-me h2 {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
#why-me h4 {
  margin: 0 auto;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  margin: auto 8px;
}
#why-me p {
  margin: 0 8px 4px 8px;
}

.why-me-button {
  background: #3a6ea5;
  border-radius: 0 0 8px 8px;
  color: #f3f3f3;
  text-align: center;
  border-top: solid 1px #f3f3f3;
  font-weight: bold;
  padding: 2px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  #header-buttom-bar a {
    border-radius: 0 0 16px 0;
    padding: 8px 8%;
    display: block;
    margin: 0 auto 0 0;
  }
  #what-heared, #report-section, #agenda-section {
    margin: 32px 16px;
  }
  #what-heared-pages article:first-child {
    border-radius: 8px 8px 0 0;
  }
  #what-heared-pages article:last-child {
    border-radius: 0 0 8px 8px;
  }
  #what-heared-pages img {
    width: 48px;
    height: 48px;
  }
  #what-heared-pages button {
    margin: 8px 0;
  }
  #what-heared-pages footer {
    padding: 0 8px;
    gap: 24px;
  }
  #what-heared-pages footer button {
    font-size: 75%;
  }
  #what-heared-pages .what-heared-text {
    height: 0;
    overflow: hidden;
  }
  .paging {
    justify-content: space-between;
  }
  .article {
    padding: 16px;
  }
  .article header img {
    border-radius: 16px 4px 16px 16px;
  }
  .article footer {
    justify-content: space-between;
    margin-bottom: 16px;
  }
  video {
    width: 100%;
  }
  #why-me header {
    cursor: pointer;
  }
  #why-me img {
    width: 48px;
    margin: 4px;
  }
  #why-me p {
    padding: 0 8px;
    height: 0;
    overflow: hidden;
  }
}
@media only screen and (min-width: 601px) and (max-width: 800px) {
  #header-buttom-bar {
    position: absolute;
    top: 64px;
  }
  #header-buttom-bar a {
    border-radius: 0 0 0 16px;
    padding: 8px 4%;
  }
  #what-heared, #report-section, #agenda-section {
    margin: 32px 16px;
  }
  .hr {
    margin: 24px 0;
  }
  #what-heared-pages header button {
    display: none;
  }
  #what-heared-pages article:first-child {
    border-radius: 8px 8px 0 0;
  }
  #what-heared-pages article:last-child {
    border-radius: 0 0 8px 8px;
  }
  #what-heared-pages img {
    width: 48px;
    height: 48px;
  }
  #what-heared-pages button {
    margin: 8px 0;
  }
  #what-heared-pages footer {
    padding: 0 8px;
    gap: 24px;
  }
  #what-heared-pages footer button {
    font-size: 75%;
  }
  .paging {
    justify-content: right;
    gap: 24px;
  }
  .what-heared-text p {
    margin-top: 8px;
  }
  .article {
    padding: 16px 5%;
  }
  .article header img {
    border-radius: 16px 4px 16px 16px;
  }
  video {
    width: 100%;
  }
  #why-me header {
    cursor: pointer;
  }
  #why-me img {
    width: 56px;
    margin: 8px;
  }
  #why-me p {
    padding: 0 8px;
    height: 0;
    overflow: hidden;
  }
  .modal {
    width: 512px;
    margin: auto;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1024px) {
  #header-buttom-bar {
    position: relative;
    top: 8px;
    left: 3%;
    text-align: left;
  }
  #header-buttom-bar a {
    border-radius: 0 0px 16px 16px;
    padding: 8px 8%;
  }
  #what-heared, #report-section, #agenda-section {
    margin: 32px 48px;
  }
  .hr {
    margin: 24px 0;
  }
  #what-heared-pages header button {
    display: none;
  }
  #what-heared-pages article:first-child {
    border-radius: 8px 8px 0 0;
  }
  #what-heared-pages article:last-child {
    border-radius: 0 0 8px 8px;
  }
  #what-heared-pages img {
    width: 64px;
    height: 64px;
  }
  #what-heared-pages button {
    margin: 4px 0;
  }
  #what-heared-pages footer {
    padding: 0 8px;
    flex-direction: column;
    margin: -64px auto auto 8px;
  }
  #what-heared-pages footer button {
    font-size: 75%;
  }
  .paging {
    justify-content: right;
    gap: 24px;
  }
  .what-heared-text {
    display: flex;
    flex-direction: row;
  }
  .what-heared-text p {
    margin-top: 8px;
  }
  .article {
    padding: 16px 5%;
  }
  .article h4 {
    width: 100%;
    text-align: right;
  }
  .article h5 {
    width: 100%;
    text-align: right;
    margin-bottom: 32px;
  }
  .article header {
    text-align: center;
  }
  .article header img {
    border-radius: 16px;
    width: 640px;
  }
  video {
    width: 100%;
  }
  #why-me img {
    width: 56px;
    margin: 8px;
  }
  #why-me p {
    padding: 8px 16px 16px 16px;
  }
  .why-me-button {
    display: none;
  }
  .modal {
    width: 512px;
    margin: 24px auto;
    border-radius: 8px;
    border: solid 1px #4f7fbf;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1025px) {
  #header-buttom-bar {
    text-align: left;
    position: relative;
    top: 8px;
  }
  #header-buttom-bar a {
    border-radius: 0 0px 16px 0;
    padding: 8px 10%;
  }
  #what-heared, #report-section, #agenda-section {
    margin: 32px 32px;
  }
  .hr {
    margin: 24px 0;
  }
  #what-heared-pages .what-heared-page {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 3%;
    margin: 12px auto;
  }
  #what-heared-pages header div {
    gap: 8px;
  }
  #what-heared-pages .show-details-button {
    display: none;
  }
  #what-heared-pages article {
    border-radius: 8px;
  }
  #what-heared-pages img {
    width: 48px;
    height: 48px;
  }
  #what-heared-pages h4 {
    margin: 8 0 0 -96px;
  }
  #what-heared-pages button {
    margin: 8px 0;
  }
  #what-heared-pages footer {
    justify-content: space-between;
    gap: 8px;
  }
  #what-heared-pages footer .button {
    font-size: 64%;
  }
  .like-box {
    margin: auto 0 auto auto;
  }
  .like-number {
    margin: 0 4px;
  }
  .paging {
    gap: 16px;
  }
  .article-holder ul {
    display: block;
  }
  .article {
    padding: 16px 5%;
    margin: 3%;
  }
  .article h4 {
    width: 100%;
    text-align: right;
  }
  .article h5 {
    width: 100%;
    text-align: right;
    margin-bottom: 32px;
  }
  .article header {
    text-align: center;
  }
  .article header img {
    border-radius: 16px;
    width: 75%;
  }
  video {
    width: 75%;
  }
  #why-me img {
    width: 56px;
    margin: 8px;
  }
  #why-me p {
    padding: 8px 16px 16px 16px;
  }
  .why-me-button {
    display: none;
  }
  .modal {
    width: 512px;
    margin: 24px auto;
    border-radius: 8px;
    border: solid 1px #4f7fbf;
  }
}/*# sourceMappingURL=home.css.map */