/* LOADING */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.69);
  z-index: 995;
}
.spinner {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.spinner .path {
  stroke: #2075cb;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.loader-out{
  opacity: 0;
  transition: opacity 0.4s ease-out;
  display: none;
}
/* END LOADING */

/* ALERT ALERT */
.msg-flash{
  top: -5em;
  z-index: 2000;
  opacity: 0;
  transition: all 2s;
}
.bg-gradient-success{
  border-color: #cde9ce;
  box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(76, 175, 80, 0.4);
}
.bg-gradient-danger{
  border-color: #fccac7;
  box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(244, 67, 54, 0.4);
}
.msg-flash.flash{
  top: 2em;
  opacity: 1;
  animation: move 2s;
  z-index: 20000;
}
@keyframes move {
  from {
    top: -5em;
    opacity: 0;
  }
  to {
    top: 2em;
    opacity: 1;
  }
}
/* ALERT ALERT */

.line{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box!important;
  -webkit-box-orient: vertical;
}
.line-1{
  -webkit-line-clamp: 1;
}
.line-2{
  -webkit-line-clamp: 2;
}
.line-3{
  -webkit-line-clamp: 3;
}
.line-4{
  -webkit-line-clamp: 4;
}
.line-5{
  -webkit-line-clamp: 5;
}
.line-6{
  -webkit-line-clamp: 6;
}
.line-7{
  -webkit-line-clamp: 7;
}
.line-8{
  -webkit-line-clamp: 8;
}
.line-9{
  -webkit-line-clamp: 9;
}

.nav-item .nav-link.active {
  color: #de1f66;
}

img.mockup-img{
  height: 300px;
}

@media (max-width: 991px) {
  img.mockup-img{
    height: 200px;
  }
}
