body {
  margin: 0;
  padding: 0;
  background: #ececec;
}
body .btn-primary {
  background: #009480;
  border-color: #009480;
}
body .btn-primary:hover {
  background-color: #00c7ac;
  border-color: #00c7ac;
}
body a {
  color: #222222;
  text-decoration: none;
  transition: 200ms;
}
body a:hover {
  color: #c49600;
}
body .navbar {
  position: fixed;
  z-index: 100;
  width: 100%;
  box-shadow: 0px 0px 4px -2px black;
}
body .navbar .container .navbar-brand {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #222222;
  text-align: center;
  line-height: 42px;
  color: white;
  background: #222222;
}
body .navbar .container .navbar-collapse {
  position: relative;
}
@media screen and (max-width: 992px) {
  body .navbar .container .navbar-collapse {
    top: 20px;
  }
}
body .navbar .container .navbar-collapse .nav-item .nav-link {
  position: relative;
  border-radius: 4px;
}
body .navbar .container .navbar-collapse .nav-item .nav-link:hover {
  color: #009480;
}
body .navbar .container .navbar-collapse .nav-item .nav-link.active {
  color: #009480;
}
body .navbar .container .navbar-collapse .nav-item .nav-link.active:hover {
  background: #00c7ac;
  color: black;
}
@media screen and (min-width: 992px) {
  body .navbar .container .navbar-collapse #nav-link-admin {
    position: absolute;
    right: 0;
  }
}
body .login-wrapper {
  min-width: 400px;
  font-size: 1rem;
  margin: 0 auto;
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -80%);
  padding: 2.5em;
  background: white;
  border-radius: 15px;
}
@media screen and (max-width: 480px) {
  body .login-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1em;
    transform: none;
  }
}
body .page-wrapper #cloned-filter-container {
  position: fixed;
  width: 100%;
  padding: 0 2%;
  z-index: 2;
}
body .page-wrapper #cloned-filter-container .filter {
  padding: 1.2em;
  border: 1px solid lightgray;
  position: relative;
  margin: 1em;
  margin-bottom: 2em;
  background: #f3f3f3;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter {
    margin: 0px;
    border-radius: 0px;
    border: 0;
    margin-bottom: 12px;
  }
}
body .page-wrapper #cloned-filter-container .filter .filter-group {
  position: sticky;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group .column {
    width: 100%;
    margin: 0px auto;
  }
}
body .page-wrapper #cloned-filter-container .filter .filter-group .filter-controls {
  width: 100%;
  padding-left: 1.2em;
  padding-right: 1.2em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group .filter-controls {
    flex-wrap: wrap;
    border: 0;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    padding: 1em 0em;
  }
}
body .page-wrapper #cloned-filter-container .filter .filter-group .filter-controls select {
  max-width: 30%;
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group .filter-controls select {
    max-width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group .filter-controls #filter-btn {
    width: 100%;
  }
}
body .page-wrapper #cloned-filter-container .filter .filter-group .dropdown {
  padding-left: 1.2em;
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group .dropdown {
    margin-top: 1em;
    padding: 0;
  }
}
body .page-wrapper #cloned-filter-container .filter .filter-group .dropdown .dropdown-menu {
  z-index: 100;
}
body .page-wrapper #cloned-filter-container .filter .filter-group .add-new-btn {
  cursor: pointer;
  transition: 200ms;
  margin-right: 1.2em;
}
body .page-wrapper #cloned-filter-container .filter .filter-group .add-new-btn:before {
  font-size: 1.2em;
  content: "+";
  margin-right: 6px;
}
@media screen and (max-width: 480px) {
  body .page-wrapper #cloned-filter-container .filter .filter-group .add-new-btn {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    margin: 0;
    font-size: large;
    line-height: 1.2;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.5);
    z-index: 10;
  }
}
body .page-wrapper .page-content {
  position: relative;
}
body .page-wrapper .page-content img {
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content {
    padding: 0em;
  }
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content.news-page-content {
    padding: 1em;
  }
}
body .page-wrapper .page-content .filter {
  padding: 1.2em;
  border: 1px solid lightgray;
  position: relative;
  margin: 1em;
  margin-bottom: 2em;
  background: #f3f3f3;
  border-radius: 8px;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter {
    margin: 0px;
    border-radius: 0px;
    border: 0;
    margin-bottom: 12px;
  }
}
body .page-wrapper .page-content .filter .filter-group {
  position: sticky;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group .column {
    width: 100%;
    margin: 0px auto;
  }
}
body .page-wrapper .page-content .filter .filter-group .filter-controls {
  width: 100%;
  padding-left: 1.2em;
  padding-right: 1.2em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group .filter-controls {
    flex-wrap: wrap;
    border: 0;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    padding: 1em 0em;
  }
}
body .page-wrapper .page-content .filter .filter-group .filter-controls select {
  max-width: 30%;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group .filter-controls select {
    max-width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group .filter-controls #filter-btn {
    width: 100%;
  }
}
body .page-wrapper .page-content .filter .filter-group .dropdown {
  padding-left: 1.2em;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group .dropdown {
    margin-top: 1em;
    padding: 0;
  }
}
body .page-wrapper .page-content .filter .filter-group .dropdown .dropdown-menu {
  z-index: 100;
}
body .page-wrapper .page-content .filter .filter-group .add-new-btn {
  cursor: pointer;
  transition: 200ms;
  margin-right: 1.2em;
}
body .page-wrapper .page-content .filter .filter-group .add-new-btn:before {
  font-size: 1.2em;
  content: "+";
  margin-right: 6px;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content .filter .filter-group .add-new-btn {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    margin: 0;
    font-size: large;
    line-height: 1.2;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(126, 255, 75, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(126, 255, 75, 0.5);
    z-index: 10;
  }
}
body .page-wrapper .page-content #news-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-evenly;
  width: 100%;
}
body .page-wrapper .page-content #news-wrapper img {
  max-width: 100%;
}
@media screen and (max-width: 1200px) {
  body .page-wrapper .page-content #news-wrapper {
    padding: 0px 6px;
    column-count: 2;
  }
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content #news-wrapper {
    column-count: 1;
    padding: 0px;
  }
}
body .page-wrapper .page-content #news-wrapper .news-item {
  cursor: pointer;
  background: #ccc;
  border-radius: 12px;
  display: inline-flex;
  overflow: hidden;
  margin-bottom: 1.25em;
  width: 32.5%;
  height: 450px;
  min-height: 450px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: 250ms;
}
body .page-wrapper .page-content #news-wrapper .news-item:hover {
  box-shadow: 0px 0px 4px 2px #009480;
  color: #009480;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-content #news-wrapper .news-item {
    width: 90%;
    margin-bottom: 1.5em;
  }
}
body .page-wrapper .page-content #news-wrapper .news-item:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #ccc);
}
body .page-wrapper .page-content #news-wrapper .news-item .news-image {
  width: 100%;
  min-height: 275px;
  max-height: 275px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 4px 0px black;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-image .news-image-thumb {
  overflow: hidden;
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 18px;
  position: absolute;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-info {
  background: #ccc;
  width: 100%;
  padding: 1.5em;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-info h4 {
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-info h5 {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-info p {
  text-align: center;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-tools-buttons {
  display: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.008);
  color: #00c7ac;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 8px;
  z-index: 10;
}
body .page-wrapper .page-content #news-wrapper .news-item .news-tools-buttons:hover {
  color: #009480;
}
body .page-wrapper .page-content .news-header {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  font-weight: bold;
}
body .page-wrapper .page-content .news-short-description p {
  text-indent: 0;
}
body .page-wrapper .page-content p {
  line-height: 1.5em;
  margin-bottom: 1.5em;
  text-indent: 1em;
}
body .page-wrapper .page-banner {
  margin-bottom: 16px;
  padding-top: 71px;
  position: relative;
  height: 250px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  background: #222222;
  color: white;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-banner {
    height: 350px;
  }
}
body .page-wrapper .page-banner .page-banner-heading {
  font-weight: bold;
  padding-bottom: 24px;
  border-bottom: 2px solid white;
  z-index: 10;
  text-shadow: 2px 2px black ;
  max-width: 50%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  body .page-wrapper .page-banner .page-banner-heading {
    border-bottom: 0;
    max-width: 100%;
    padding-right: 1em;
    padding-left: 1em;
  }
}
body .page-wrapper .page-banner a {
  position: fixed;
  top: 111px;
  left: 25px;
}
body .page-wrapper .page-banner img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  z-index: 0;
}
body .dm-categories-wrapper {
  display: flex;
  width: 100%;
  padding-top: 35px;
}
@media screen and (max-width: 1200px) {
  body .dm-categories-wrapper {
    flex-wrap: wrap;
  }
}
body .dm-categories-wrapper .dash-category {
  display: flex;
  padding: 1.5em;
  background: white;
  border-radius: 10px ;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin: 1%;
  box-shadow: 0px 0px 4px -1px black;
  width: 100%;
  position: relative;
  margin-bottom: 32px;
  cursor: pointer;
  transition: 200ms;
  height: 300px;
}
body .dm-categories-wrapper .dash-category h4 {
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  body .dm-categories-wrapper .dash-category h4 {
    padding-top: 16px;
    padding-bottom: 8px;
  }
}
body .dm-categories-wrapper .dash-category:hover {
  background: #222222 !important;
  color: white;
}
body .dm-categories-wrapper .dm-col-12 {
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
body .dm-categories-wrapper .dm-col-12 h4 {
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  body .dm-categories-wrapper .dm-col-12 h4 {
    padding-top: 16px;
    padding-bottom: 8px;
  }
}
body .dm-categories-wrapper .dm-col-12 .news-container {
  width: 100%;
}
body .dm-categories-wrapper .dm-col-12 .news-container .content-list-wrapper {
  display: none;
}
body .dm-categories-wrapper .dm-col-12 .news-container .content-list-wrapper .content-list {
  list-style-type: none;
  padding: 0;
  padding-left: 8px;
  padding-right: 8px;
}
body .dm-categories-wrapper .dm-col-12 .news-container .content-list-wrapper .content-list .content-list-item {
  border-radius: 10px;
  text-decoration: none;
  min-height: 36px;
  transition: 200ms;
  cursor: pointer;
  line-height: 100%;
  padding: 1em;
  border-bottom: 1px solid #222222;
  box-sizing: border-box;
}
body .dm-categories-wrapper .dm-col-12 .news-container .content-list-wrapper .content-list .content-list-item h6 {
  font-style: italic;
}
body .dm-categories-wrapper .dm-col-12 .news-container .content-list-wrapper .content-list .content-list-item:hover {
  border-width: 4px;
  border-color: #ccc;
  border-radius: 25px;
}
body .dm-categories-wrapper .dm-col-12 .news-container .content-list-wrapper .content-list .content-list-item:hover h6 {
  text-decoration: 0px 0px 5px white;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list {
  padding: 0;
  list-style-type: none;
  padding-left: 8px;
  padding-right: 8px;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item {
  text-decoration: none;
  min-height: 36px;
  transition: 200ms;
  cursor: pointer;
  line-height: 36px;
  border-radius: 8px;
  border: 1px solid #222222;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item a {
  transition: 200ms;
  padding-bottom: 4px;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item a:hover {
  border-bottom: 1px solid #222222;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item h5 {
  max-width: 90%;
  font-weight: 200;
  font-family: Helvetica;
  padding: 1em;
  border-color: #222222;
  display: inline-block;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item h5 .expanded:after {
  content: "+";
  position: absolute;
  border: 1px solid black;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  right: 32px;
  top: 30px;
  line-height: 0.9em;
  transition: 200ms;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item h5 .collapsed:after {
  content: "-" !important;
  line-height: 0.7em;
  background: #ddc700;
  color: black;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item:hover {
  background: #222222;
  color: white;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item:hover a:hover {
  border-bottom: 1px solid white ;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item:hover h5 {
  border-color: white;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item:hover h5 .expanded:after {
  border-color: white;
}
body .dm-categories-wrapper .dm-col-12 .news-container .section-list .section-list-item:hover a {
  color: white;
}
body .slide-in {
  display: none;
}
.news-modal .modal-dialog {
  max-width: 80% !important;
}
@media screen and (max-width: 480px) {
  .news-modal .modal-dialog {
    height: calc(100% - 0px) !important;
  }
}
@media screen and (max-width: 1200px) {
  .news-modal .modal-dialog {
    max-width: 90% !important;
  }
}
@media screen and (max-width: 1200px) {
  .news-modal .modal-dialog {
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }
}
.news-modal .modal-dialog .modal-content {
  height: unset;
}
.news-modal .modal-dialog .modal-body {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  .news-modal .modal-dialog .modal-body {
    overflow-y: unset;
  }
}
@media screen and (max-width: 1200px) {
  .news-modal .modal-dialog .modal-body {
    flex-direction: column;
  }
}
.news-modal .modal-dialog .modal-body .form-group {
  padding: 12px;
  border-radius: 8px;
  background: #ececec;
  position: relative;
  width: 32.5%;
}
@media screen and (max-width: 1200px) {
  .news-modal .modal-dialog .modal-body .form-group {
    width: 100%;
  }
}
.news-modal .modal-dialog .modal-body .form-group h6 {
  margin-bottom: 0 !important;
}
.news-modal .modal-dialog .modal-body .form-group hr {
  margin-top: 8px;
}
.news-modal .modal-dialog .modal-body .form-group #news-component,
.news-modal .modal-dialog .modal-body .form-group #news-section,
.news-modal .modal-dialog .modal-body .form-group #news-content {
  width: 100%;
}
.news-modal .modal-dialog .modal-body .form-group #news-content option {
  width: 100%;
  white-space: break-spaces;
  padding: 0.3em 0.2em;
}
.news-modal .modal-dialog .modal-body .news-select-group {
  width: 33%;
  padding: 12px;
  border-radius: 8px;
  background: #ececec;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .news-modal .modal-dialog .modal-body .news-select-group {
    width: 100%;
  }
}
.news-modal .modal-dialog .modal-body .news-select-groupdiv {
  max-width: 49%;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container {
  width: 100% !important;
  max-width: 100% !important;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container label {
  width: 100% !important;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .bootstrap-select {
  width: 100% !important;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .bootstrap-select .bs-ok-default:after {
  position: absolute;
  right: 0px;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .bootstrap-select .dropdown-toggle.bs-placeholder,
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .bootstrap-select .dropdown-toggle {
  border: 1px solid lightgray  !important;
  background: white !important;
  padding: 8px 12px !important;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .bootstrap-select .dropdown-menu li a {
  padding-left: 2em;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .bootstrap-select .dropdown-menu .selected span.check-mark {
  left: 20px;
  right: unset;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .dropdown-menu {
  width: 100%;
  transform: translateX(0px) !important;
  top: 41px !important;
  background: #eee;
}
.news-modal .modal-dialog .modal-body .news-select-group #news-content-container .dropdown-menu .inner {
  background: #eee;
}
.news-modal .modal-dialog .modal-body.modal-body-1-col {
  align-content: flex-start;
  align-items: stretch;
}
.news-modal .modal-dialog .modal-body.modal-body-1-col .form-group:nth-child(1) {
  width: calc(50% - 0.5em);
  order: 0;
}
.news-modal .modal-dialog .modal-body.modal-body-1-col .form-group:nth-child(2) {
  width: 100%;
  order: 2;
}
.news-modal .modal-dialog .modal-body.modal-body-1-col .form-group:nth-child(3) {
  width: calc(50% - 0.5em);
  order: 1;
}
.news-modal .modal-dialog .modal-footer {
  justify-content: space-between;
  height: unset;
}
.news-modal .modal-dialog .modal-footer .modal-user-info .modal-user-name .user-name {
  font-weight: bold;
}
@keyframes btnshadow {
  0% {
    box-shadow: 0px 0px 0px 0px #00c7ac;
    color: white;
  }
  50% {
    box-shadow: 0px 0px 8px 0px #00c7ac;
    color: #00c7ac;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #00c7ac;
    color: white;
  }
}
