.c-portlet {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .c-portlet {
    margin-bottom: 15px;
  }
}
.c-portlet .nav-link {
  font-weight: 600;
  font-size: 16px;
}
.c-portlet:last-child {
  margin-bottom: 0;
}
.c-portlet__hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #EBEDF3;
  margin: 5px 0;
}
.c-portlet__head {
  padding: 15px 20px;
  border-bottom: 1px solid #EBEDF3;
}
.c-portlet__head__label h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.3rem;
}
.c-portlet__filter {
  padding: 10px 20px;
}
.c-portlet__body {
  padding: 20px;
}
.c-portlet__body .table:last-of-type {
  margin-bottom: 0;
}
.c-portlet__body .form-group:last-child {
  margin-bottom: 0;
}
.c-portlet__body--table {
  padding: 10px 20px 15px 20px;
}
.c-portlet__body--scroll-horizontal {
  overflow-x: auto;
}
.c-portlet__pagination {
  border-top: 1px solid #EBEDF3;
  padding-top: 10px;
}
.c-portlet__pagination--table {
  padding: 10px 20px;
}
.c-portlet__information {
  display: flex;
  flex-wrap: wrap;
}
.c-portlet__information__single {
  margin: 5px 0;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 450px) {
  .c-portlet__information__single {
    flex-direction: column;
  }
}
.c-portlet__information__single span {
  width: 50%;
  padding-right: 15px;
}
@media screen and (max-width: 450px) {
  .c-portlet__information__single span {
    width: 100%;
    padding-right: 0;
  }
}
.c-portlet__information__single span a {
  text-decoration: underline;
}
@media screen and (max-width: 650px) {
  .c-portlet__information__single--long {
    flex-direction: column;
  }
}
.c-portlet__information__single--long span:first-of-type {
  width: 25%;
}
@media screen and (max-width: 650px) {
  .c-portlet__information__single--long span:first-of-type {
    width: 100%;
  }
}
.c-portlet__information--half .c-portlet__information__single {
  width: 50%;
}
@media screen and (max-width: 650px) {
  .c-portlet__information--half .c-portlet__information__single {
    width: 100%;
  }
}
.c-portlet__events {
  max-height: 35rem;
  overflow-x: auto;
}
.c-portlet__events--noscroll {
  max-height: inherit;
  overflow-x: inherit;
}
.c-portlet__events__wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-portlet__events__wrap:before {
  content: "";
  position: absolute;
  width: 4px;
  height: calc(100% + 50px);
  background: #f2f3f8;
  top: -25px;
  left: 5px;
}
.c-portlet__events__single {
  display: flex;
  padding-left: 25px;
  margin-bottom: 25px;
  position: relative;
}
.c-portlet__events__single:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #646c9a;
  top: 2px;
  left: 0;
}
.c-portlet__events__single__stamp {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  display: flex;
  flex-direction: column;
}
.c-portlet__events__single__stamp h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.c-portlet__events__single__stamp span {
  font-size: 14px;
}
.c-portlet__events__single__stamp small {
  font-size: 14px;
}
.c-portlet__events__single__action {
  width: 100%;
  padding: 15px;
  background: #f2f3f8;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-portlet__events__single__action__button {
  margin-bottom: 10px;
}
.c-portlet__events__single__action__button:last-child {
  margin: 0;
}
.c-portlet__events__single__action:before {
  position: absolute;
  content: "";
  top: 15px;
  left: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent #f2f3f8 transparent transparent;
}
.c-portlet__events__single__action h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.c-portlet__events__single__action div {
  display: flex;
  flex-direction: column;
}
.c-portlet__events__single__action div p {
  margin: 0 5px 0 0;
}
.c-portlet__events__single__action div a {
  text-decoration: underline;
}
.c-portlet__events__single__action ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dfe2e7;
  padding-bottom: 10px;
}
.c-portlet__events__single__action ul li {
  width: 25%;
  padding-right: 15px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  word-break: break-word;
}
@media screen and (max-width: 750px) {
  .c-portlet__events__single__action ul li {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .c-portlet__events__single__action ul li {
    width: 100%;
    padding-right: 0;
  }
}
.c-portlet__events__single__action ul li span {
  font-weight: 300 !important;
}
.c-portlet__form .c-form__row {
  margin-bottom: 15px;
}
@media screen and (max-width: 1050px) {
  .c-portlet__form .c-form__row {
    margin-bottom: 0;
  }
}
.c-portlet__form .c-form__row:last-of-type {
  margin-bottom: 0;
}
.c-portlet__form .c-form__row--4 .c-form__group {
  max-width: calc(25% - 10px);
}

/*# sourceMappingURL=portlet.css.map */
