.Montserrat {
  font-family: "Montserrat", sans-serif;
}
html,
body {
  height: 100vh;
  box-sizing: border-box;
  background-color: #E5E5E5;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0px;
}
a:hover,
a:focus {
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  outline: 0;
}
.badge {
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 0px;
  margin-bottom: 7px;
  margin-right: 7px;
  text-transform: uppercase;
}
.badge.badge-primary {
  background-color: rgba(230, 230, 230, 0.64);
  color: #9a9a9a;
}
.badge.badge-primary:hover,
.badge.badge-primary:active,
.badge.badge-primary:focus {
  background-color: #39956e;
  color: #fff;
}
.badge.badge-lg {
  padding: 8px 16px;
  font-size: 14px;
}
.btn {
  border-radius: 50px;
  border: 0;
  padding: 7px 22px;
  text-transform: uppercase;
  font-size: 13px;
}
.btn.btn-primary {
  background: #219653;
}
img.circled {
  border-radius: 100%;
  overflow: hidden;
}
.mas-outer-content-wrapper {
  height: 100vh;
  max-width: 1920px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /*max-width: 1900px;*/
  margin: auto;
  width: 100%;
}
header {
  height: 8vh;
  background: #fff;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  header {
    padding: 0 10px;
  }
}
header .mas-header-outer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .mas-header-outer-wrapper .mas-header-menu {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .mas-header-outer-wrapper .mas-header-menu .logo {
  margin-right: 30px;
  max-height: 100%;
}
header .mas-header-outer-wrapper .mas-header-menu .logo img {
  max-height: 6.5vh;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-menu .logo img {
    max-height: 6vh;
  }
}
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav {
    display: none;
  }
}
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav li {
  display: inline-block;
  padding: 5px 10px;
  border-bottom: 2px solid #ebebeb;
  margin-right: 20px;
}
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav li a {
  color: #666;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
}
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav li:hover,
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav li:active,
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav li:focus,
header .mas-header-outer-wrapper .mas-header-menu ul.mas-header-menu-nav li.active {
  border-bottom: 2px solid #219653;
}
header .mas-header-outer-wrapper .mas-header-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-buttons {
    width: auto;
  }
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search {
  margin-right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search label {
  font-weight: 400;
  color: #666;
  font-size: 14px;
  margin-right: 10px;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search label {
    display: none;
  }
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search #mas-main-search {
  border-radius: 30px;
  border: 1px solid #c5c5c5;
  padding: 10px 20px;
  font-size: 14px;
  outline: none;
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search .search-launcher {
  display: none;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search {
    flex: 1;
  }
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search #mas-main-search {
    max-width: 170px;
  }
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search .search-launcher {
    display: inline-block;
    margin-left: 10px;
  }
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search .search-launcher i {
    font-size: 18px;
    color: #39956e;
  }
}
@media (max-width: 350px) {
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-search #mas-main-search {
    max-width: 150px;
  }
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-askexpert {
  background: #219653;
  margin-right: 20px;
  padding: 4px 20px 4px 10px;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-askexpert {
    display: none;
  }
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-askexpert:hover,
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-askexpert:active,
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-askexpert:focus {
  background: #177e43;
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-askexpert img {
  max-height: 30px;
  margin-right: 5px;
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-account {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  header .mas-header-outer-wrapper .mas-header-buttons .mas-header-account {
    flex: 1;
  }
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-account a {
  cursor: pointer;
}
header .mas-header-outer-wrapper .mas-header-buttons .mas-header-account a i {
  color: #333;
  font-size: 28px;
}
.mas-inner-content-wrapper {
  height: 92vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.mas-inner-content-wrapper .mas-main-left,
.mas-inner-content-wrapper .mas-main-right {
  width: 50%;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-left,
  .mas-inner-content-wrapper .mas-main-right {
    width: 100%;
  }
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar {
  background: #364540;
  min-height: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar,
  .mas-inner-content-wrapper .mas-main-right .mas-menu-bar {
    min-height: 8vh;
  }
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav {
  padding: 0;
  display: inline-block;
  margin-bottom: 0px;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav p,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav p {
  line-height: 30px;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li a,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li p,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li p {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li i,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li i {
  opacity: 0.5;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li:first-child,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li:first-child {
  margin-left: 0px;
}
.mas-inner-content-wrapper .mas-main-left .mas-main-inner-content,
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: auto;
  height: 100%;
}
.mas-inner-content-wrapper .mas-main-left {
  background: #fff;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar {
  background-color: #39956e;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar {
    justify-content: space-between;
    padding: 0px 10px;
  }
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li {
  margin-left: 10px;
  display: inline-block;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li p {
  padding-left: 15px;
  padding-right: 15px;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li p a i {
  margin-right: 5px;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li.active p {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li p {
    padding: 6px 10px 0;
  }
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li p a i {
    font-size: 22px;
    line-height: 22px;
    color: #fff;
    opacity: .65;
    margin-right: 0;
  }
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li a span {
    display: none;
  }
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .mas-nav li.active p a i {
  opacity: 1;
}
.mas-inner-content-wrapper .mas-main-left .mas-menu-bar .right-panel-launcher {
  display: none;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar .right-panel-launcher {
    display: block;
    background: #171717;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar .right-panel-launcher i {
    font-size: 20px;
    color: #fff;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-left .mas-menu-bar .right-panel-launcher {
    width: 6vh;
    height: 6vh;
    line-height: 6vh;
  }
}
.mas-inner-content-wrapper .mas-main-right {
  background: #364540;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-right {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar {
  background: #171717;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-right .mas-menu-bar {
    justify-content: space-between;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-menu-bar {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 10vh;
    z-index: 11;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .right-panel-close {
  display: none;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-right .mas-menu-bar .right-panel-close {
    display: inline-block;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li {
  display: inline-block;
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li p {
  border: 1px solid #e7e8e8;
  border-radius: 20px;
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li.active p {
  background-color: #e7e8e8;
  border: 1px solid transparent;
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav li.active a {
  color: #0f1412;
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-nav i {
  color: #7d807f;
  font-size: 20px;
  right: 40px;
  top: 25px;
  position: absolute;
  cursor: pointer;
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-menu-trigger {
  top: 14px;
}
@media (max-width: 1024px) {
  .mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-menu-trigger {
    position: static;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-menu-trigger.active,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-menu-trigger:hover,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-menu-trigger:active,
.mas-inner-content-wrapper .mas-main-right .mas-menu-bar .mas-menu-trigger:focus {
  background: #000;
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content {
  padding: 20px;
  height: 100%;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content {
    overflow: auto;
    height: 100vh;
    padding-top: 13vh;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-main-right-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row,
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  flex: 1;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row,
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row {
    flex-direction: column;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row > div,
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row > div {
  background: #fff;
  border-radius: 10px;
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row {
  margin-bottom: 20px;
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row > div:first-child {
  width: 60%;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row > div:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row > div:last-child {
  width: 38%;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-first-row > div:last-child {
    width: 100%;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row {
  flex: 2;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row {
    height: auto;
    overflow: visible;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row .mas-second-row-box {
  width: 49%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row .mas-second-row-box {
    width: 100%;
    margin-bottom: 20px;
    overflow: visible;
  }
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row .mas-second-row-box .card {
  overflow: auto;
  max-height: 100%;
}
.mas-inner-content-wrapper .mas-main-right .mas-main-inner-content .mas-second-row .mas-second-row-box .card .card-body {
  padding-top: 10px;
}
.mas-calendar {
  padding: 10px;
}
.mas-filters {
  background-color: #364640;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mas-filters .mas-filters-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #eaeaea;
  padding-left: 15px;
}
.mas-filters .mas-filters-form input {
  background: #2B3733;
  text-align: center;
  padding: 6px 3px;
  color: #eaeaea;
  border: 0;
  border-radius: 5px;
  margin: 0px 15px 0 5px;
  font-size: 13px;
}
.mas-menu-trigger {
  position: absolute;
  right: 10px;
  top: 7px;
  background: transparent;
  border-radius: 5px;
  padding: 7px;
  cursor: pointer;
}
.mas-menu-trigger i {
  color: #d9d9d9;
  font-size: 20px;
  cursor: pointer;
}
.mas-menu-trigger.active,
.mas-menu-trigger:hover,
.mas-menu-trigger:active,
.mas-menu-trigger:focus {
  background-color: #181d1d;
}
.mas-menu-trigger.active i,
.mas-menu-trigger:hover i,
.mas-menu-trigger:active i,
.mas-menu-trigger:focus i {
  color: #d9d9d9;
}
.mas-category-filters {
  width: 200px;
  position: absolute;
  top: 40px;
  right: 10px;
  color: #fff;
  background-image: linear-gradient(to right, #2c3a35, #151a18);
  font-size: 13px;
  border-radius: 4px;
}
.mas-category-filters .mas-category-filter {
  padding: 12px;
  border-bottom: 1px solid #3a4441;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mas-category-filters .mas-category-filter .form-check {
  outline: none !important;
}
#mas-news {
  height: 100%;
  overflow-y: scroll;
  background-color: #ffffff;
}
#mas-news .mac-item {
  padding: 10px 10px 0px;
}
#mas-news .mac-item h4 {
  margin-bottom: 0;
  padding-left: 25px;
}
#mas-news .mac-item h4:before {
  left: 0;
  top: 1px;
}
#mas-news .mac-item-tags {
  padding: 10px 0 0 0;
}
#mas-news .mac-item-tags .badge {
  margin: 3px 7px 3px 0;
}
#mas-news .summary {
  padding: 0px 20px;
}
.newsitem-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 20px 40px 20px 20px;
}
@media (max-width: 767px) {
  .newsitem-row {
    margin: 30px;
    padding: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #d7d7d7;
    flex-wrap: wrap;
  }
  .newsitem-row:last-child {
    border-bottom: 0;
  }
}
.newsitem-row .newsitem-image {
  align-self: stretch;
  text-align: center;
  min-width: 110px;
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .newsitem-row .newsitem-image {
    order: 2;
    width: 50%;
    padding: 0;
  }
}
.newsitem-row .newsitem-image img {
  display: block;
  margin: 0 auto 5px;
}
.newsitem-row .newsitem-image span {
  color: #ccc;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}
.newsitem-row .newsitem-text {
  border-left: 1px solid #d7d7d7;
  padding: 10px 30px;
  width: 80%;
}
@media (max-width: 767px) {
  .newsitem-row .newsitem-text {
    border: 0;
    order: 1;
    padding: 0;
    max-width: 100%;
    margin-bottom: 20px;
    width: auto;
  }
}
.newsitem-row .newsitem-text p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
.newsitem-row .newsitem-text .newsitem-date {
  color: #219653;
  margin-bottom: 5px;
}
.newsitem-row .newsitem-text .newsitem-link {
  margin-bottom: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
  max-width: 320px;
}
.newsitem-row .newsitem-text .newsitem-link a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #3C8BE9;
  font-weight: 500;
}
.newsitem-row .newsitem-text .newsitem-link a i {
  color: #39956C;
  font-scale: 2;
  margin-right: 10px;
}
.newsitem-row .newsitem-bookmark {
  text-align: right;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .newsitem-row .newsitem-bookmark {
    order: 3;
    width: 50%;
    padding: 0;
    text-align: center;
  }
}
.newsitem-row .newsitem-bookmark i {
  font-size: 24px;
  color: #219653;
  cursor: pointer;
}
@media (max-width: 767px) {
  .newsitem-row .newsitem-bookmark i {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.newsitem-row .newsitem-bookmark span {
  display: none;
  color: #ccc;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .newsitem-row .newsitem-bookmark span {
    display: block;
    text-align: center;
  }
}
.mas-catalyst-box {
  padding-bottom: 30px;
}
.mac-item {
  padding: 0px 10px 10px;
}
.mac-item h4,
.mac-item h5 {
  color: #219653;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  display: block;
}
.mac-item h4:before,
.mac-item h5:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 100px;
  background: #219653;
  position: absolute;
  top: 0px;
  left: -7px;
}
.mac-item h4 {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}
.mac-item .mac-item-body {
  border-left: 1px solid #219653;
  padding-left: 20px;
  min-height: 20px;
}
.read-more-link {
  color: #999;
  font-size: 12px;
  text-decoration: none;
  padding-left: 20px;
  display: inline-block;
  margin-top: 10px;
}
.tags-items {
  padding: 0px;
  margin-bottom: 20px;
}
.tags-items .tags-item {
  padding: 5px 0px 5px 10px;
}
.tags-items .tags-item h5 {
  color: #219653;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
  display: block;
}
.tags-items .read-more-link {
  padding-left: 10px;
}
.newsitem-row-text {
  padding: 20px;
  flex: 1;
}
.newsitem-askexpert {
  display: flex;
  flex-direction: column;
}
.image-col {
  align-items: center;
  padding: 0px 10px;
}
.image-col img {
  margin: auto;
}
.image-col span {
  font-size: 10px;
  background: rgba(58, 58, 58, 0.64);
  color: #ffffff;
  padding: 3px 5px;
  white-space: nowrap;
}
.mas-calendar .datepicker-inline {
  margin: auto;
  width: 100%;
}
.mas-calendar .datepicker-inline table tr td:first-child,
.mas-calendar .datepicker-inline table tr td:last-child {
  color: #d1d1d1;
}
.mas-calendar .datepicker-inline table tr td.today {
  background: #efefef;
  border: 0;
}
.mas-calendar .datepicker-inline table tr td.today:hover,
.mas-calendar .datepicker-inline table tr td.today:active,
.mas-calendar .datepicker-inline table tr td.today:focus {
  border: 0;
}
.datepicker table {
  width: 100%;
}
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active {
  background-color: #deede7;
  color: #39956e;
  border: 1px solid transparent;
  border-radius: 25px;
}
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active:active:hover {
  color: #deede7;
  background-color: #39956e;
  border: 1px solid transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background-color: #deede7;
}
.datepicker table tr td,
.datepicker table tr th {
  border: 1px solid transparent;
  border-radius: 25px;
}
.datepicker table tr td.day,
.datepicker table tr td.today.disabled:hover {
  border: 1px solid transparent;
}
#mas-filter-date-from,
#mas-filter-date-to {
  width: 100px;
}
.card .card-header {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  padding: 15px 20px 15px 35px;
}
.card .card-header:before {
  content: '';
  position: absolute;
  background-color: #38816c;
  background-image: linear-gradient(to right, #2b7163, #479474);
  width: 25px;
  height: 5px;
  top: 22px;
  left: 0px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.card .card-body {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  padding-top: 20px;
}
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #353c42;
}
.modal-dialog .modal-content {
  border-radius: 15px;
}
.modal-dialog .modal-content .close {
  float: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  font-weight: 100;
  line-height: 20px;
  height: 20px;
  color: #000;
  outline: none !important;
  opacity: ,3;
}
.modal-dialog .modal-content .modal-body {
  padding: 30px 50px;
}
.green-bar {
  width: 60px;
  height: 10px;
  background: #219653;
  margin: 20px auto;
}
.askexpert-modal h3 {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 20px;
}
.askexpert-modal h5 {
  color: #219653;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 20px;
}
.askexpert-modal p {
  font-size: 16px;
  color: #888;
}
.askexpert-modal p.small {
  font-size: 14px;
}
.askexpert-modal hr {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ddd;
  margin: 20px;
}
.askexpert-modal textarea {
  margin-bottom: 30px;
}
.askexpert-modal .askexpert-success {
  display: none;
}
.askexpert-modal .askexpert-success img {
  margin-bottom: 30px;
}
.resources-modal h3 {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 20px;
}
.resources-modal p {
  font-size: 16px;
  color: #888;
}
.resources-modal p.small {
  font-size: 14px;
}
.resources-modal .resources-icons {
  margin-bottom: 30px;
}
.resources-modal .resources-icons .resources-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}
.resources-modal .resources-icons .resources-icons-row .resources-icons-item {
  margin: 0 15px;
  border: 2px solid #efefef;
  border-radius: 100%;
  overflow: hidden;
  height: 110px;
  width: 110px;
  text-align: center;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.resources-modal .resources-icons .resources-icons-row .resources-icons-item:hover,
.resources-modal .resources-icons .resources-icons-row .resources-icons-item:active,
.resources-modal .resources-icons .resources-icons-row .resources-icons-item:focus {
  border-color: #dedede;
}
.resources-modal .resources-icons .resources-icons-row .resources-icons-item.all {
  font-size: 30px;
  font-weight: 300;
  color: #999;
  text-transform: uppercase;
  text-align: center;
  line-height: 110px;
}
.resources-modal .resources-icons .resources-icons-row .resources-icons-item.active {
  border-color: #219653;
}
.mas-right-setting-filters .badge {
  cursor: pointer;
}
.mas-right-setting-filters .card .card-body ul li.active {
  background: #39956e;
  color: #fff;
}
.mas-right-setting-filters .card .card-body ul li:hover {
  background: #9a9a9a;
}
.dropdown-menu {
  background: #27322e;
  border: 0;
}
.dropdown-menu > li > a {
  color: #fff;
  padding: 7px 20px;
  font-size: 13px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:active,
.dropdown-menu > li > a:focus {
  background: #111;
  color: #fff;
}
.dropdown-menu .divider {
  background-color: #5a5a5a;
}
#cover {
  background: #222 url('https://unsplash.it/1400/700/?random') center center no-repeat;
  background-size: cover;
  height: 100%;
  text-align: center;
  /* display: flex;*/
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}
#cover-caption {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cover-caption .form {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  min-width: 25%;
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1400px) {
  #cover-caption .form {
    min-width: 30%;
  }
}
@media (max-width: 1199px) {
  #cover-caption .form {
    min-width: 40%;
  }
}
@media (max-width: 979px) {
  #cover-caption .form {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  #cover-caption .form {
    min-width: 90%;
  }
}
.form-control {
  border-radius: 0;
  padding: 10px 14px;
  height: auto;
}
.alert {
  padding: 15px 20px;
}
.alert-danger {
  background: #dd4040;
  border-color: #dd4040;
  color: #fff;
  box-shadow: none;
  border-radius: 0;
}
button {
  outline: none;
}
