/*
   float

  */
.left {
  float: left; }

.right {
  float: right; }

@media (max-width: 768px) {
  .float-none {
    float: none; } }

.clearfix:after {
  content: '';
  display: block;
  clear: both; }

.clearfix:before {
  content: '';
  display: block;
  clear: both; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

@-webkit-keyframes opac {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes opac {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fades {
  -webkit-animation-name: opac;
  animation-name: opac;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.clearfix:after {
  content: "";
  display: block;
  clear: both; }

.clearfix:before {
  content: "";
  display: block;
  clear: both; }

.container {
  min-height: 400px;
  margin-top: 50px;
  margin-bottom: 50px; }

.title {
  color: #387B98;
  font-size: 1.8em; }
  .title:after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c30b0b;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 60px; }

.notification-box {
  margin-bottom: 40px; }
  .notification-box .end-cross {
    display: none; }
  .notification-box .notify-wrapper {
    padding: 20px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    border: 1px solid #e0e0e0;
    min-height: 210px;
    /*	&:hover {

			   transform: translateY(-2px);
			   cursor: pointer;
			    box-shadow: 0 10px 18px rgba(0,0,0,.04);

		}*/ }
  .notification-box .heading {
    color: #387B98;
    font-size: 1.15em;
    font-family: "Lato", sans-serif; }
    .notification-box .heading .fa {
      margin-right: 4px; }
  .notification-box .notification-date {
    font-size: 0.95em;
    color: #454545;
    text-align: right;
    margin-top: -32px; }
    .notification-box .notification-date .fa {
      margin-right: 4px; }
    @media (max-width: 600px) {
      .notification-box .notification-date {
        text-align: left;
        margin: 0; }
        .notification-box .notification-date p {
          line-height: 2em; } }
  .notification-box .notification-body {
    line-height: 1.8em;
    font-size: 0.95em;
    color: #454545; }
    .notification-box .notification-body p {
      margin-top: 20px;
      color: #454545; }
  .notification-box .notification-parents {
    font-size: 0.9em; }
    .notification-box .notification-parents p {
      margin: 0px;
      color: #666; }
    .notification-box .notification-parents span {
      color: #387B98; }
  .notification-box .notification-more-detail {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 0.95em; }
    .notification-box .notification-more-detail .fa {
      margin-left: 5px; }
    .notification-box .notification-more-detail:hover .fa {
      margin-left: 8px;
      color: #387B98; }

.active-notification {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 17, 0.64);
  top: 0;
  left: 0; }
  .active-notification > div {
    width: 600px;
    max-width: 98%;
    border: 2px solid #1f5daa;
    background: #fff;
    margin: 0px;
    position: relative; }
  .active-notification .end-cross {
    display: block;
    position: absolute;
    top: -40px;
    right: 0px;
    color: #fff;
    cursor: pointer; }
    .active-notification .end-cross .fa {
      font-size: 2em; }
