/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

@font-face {
font-family: 'sukhumvit';
src: url('/assets/fonts/sukhumvitset/sukhumvitset-medium-webfont.woff2') format('woff2'),
     url('/assets/fonts/sukhumvitset/sukhumvitset-medium-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

* {
 font-family: 'sukhumvit'; 
/*  font-size: 1rem; */
}

.brand-goowork {
font-family: 'sukhumvit'; 
font-size: 25px;
line-height: 40px;   
}

.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 20px;
  height: 12px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -5px; }
  .hamburger-inner::after {
    bottom: -5px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 40px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 40px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 40px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 40px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -10px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -10px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 5px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 5px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 5px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -40px;
      top: -40px;
      transform: translate3d(40px, 40px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -40px;
      top: -40px;
      transform: translate3d(-40px, 40px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 5px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -40px;
      top: 40px;
      transform: translate3d(40px, -40px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -40px;
      top: 40px;
      transform: translate3d(-40px, -40px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 10px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.8571428571px, -3px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 10px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.8571428571px, -3px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 5px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 10px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -10px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.bootstrap-timepicker {
  position: relative; }

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0; }

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px; }

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px; }

.bootstrap-timepicker .input-group-addon {
  cursor: pointer;
  min-width: 20px; }

.bootstrap-timepicker .input-group-addon i {
  display: inline-block;
  width: 16px;
  height: 16px; }

.bootstrap-timepicker-widget.dropdown-menu {
  padding: 4px; }

.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block; }

.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  position: absolute; }

.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  position: absolute; }

.bootstrap-timepicker-widget.timepicker-orient-left:before {
  left: 6px; }

.bootstrap-timepicker-widget.timepicker-orient-left:after {
  left: 7px; }

.bootstrap-timepicker-widget.timepicker-orient-right:before {
  right: 6px; }

.bootstrap-timepicker-widget.timepicker-orient-right:after {
  right: 7px; }

.bootstrap-timepicker-widget.timepicker-orient-top:before {
  top: -7px; }

.bootstrap-timepicker-widget.timepicker-orient-top:after {
  top: -6px; }

.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999; }

.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff; }

.bootstrap-timepicker-widget a.btn, .bootstrap-timepicker-widget input {
  border-radius: 4px; }

.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0; }

.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px; }

.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px; }

.bootstrap-timepicker-widget table td span {
  width: 100%; }

.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333; }

.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #ddd; }

.bootstrap-timepicker-widget table td a i {
  margin-top: 2px;
  font-size: 18px; }

.bootstrap-timepicker-widget table td input {
  width: 25px;
  margin: 0;
  text-align: center; }

.bootstrap-timepicker-widget .modal-content {
  padding: 4px; }

@media (min-width: 767px) {
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px; } }

@media (max-width: 767px) {
  .bootstrap-timepicker {
    width: 100%; }
  .bootstrap-timepicker .dropdown-menu {
    width: 100%; } }

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }

.dropzone.dz-clickable {
  cursor: pointer; }

.dropzone.dz-clickable * {
  cursor: default; }

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer; }

.dropzone.dz-started .dz-message {
  display: none; }

.dropzone.dz-drag-hover {
  border-style: solid; }

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5; }

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0; }

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px; }

.dropzone .dz-preview:hover {
  z-index: 1000; }

.dropzone .dz-preview:hover .dz-details {
  opacity: 1; }

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd); }

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1; }

.dropzone .dz-preview.dz-image-preview {
  background: white; }

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none; }

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline; }

.dropzone .dz-preview:hover .dz-details {
  opacity: 1; }

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%; }

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px; }

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap; }

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8); }

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis; }

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent; }

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px; }

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px); }

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10; }

.dropzone .dz-preview .dz-image img {
  display: block; }

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px; }

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px; }

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in; }

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite; }

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden; }

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out; }

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block; }

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto; }

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white; }

.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626; }

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.pace-inactive {
  display: none; }

.pace .pace-progress {
  background: #f9c851;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 4px; }

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #f9c851, 0 0 5px #f9c851;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px); }

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite; }

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

@-moz-keyframes pace-spinner {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-o-keyframes pace-spinner {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes pace-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg); } }

.hamburger {
  outline: none;
  border: none; }

.dropzone {
  border: 2px dashed #188ae2; }

body.mce-fullscreen #dash-navbar {
  z-index: 999; }

.mce-fullscreen {
  z-index: 1100 !important; }

.mce-panel {
  border-color: #EDF0F5 !important; }

.ps-scrollbar-y-rail {
  width: 4px !important;
  background: rgba(0, 0, 0, 0.2); }

.ps-scrollbar-y {
  background: #777 !important;
  width: 4px !important; } 

html {
  height: 100%; }

body {
  position: relative;
  min-height: 100%;
  padding-top: 60px;
  transition: padding-top .5s; }
  
  @media (min-width: 768px) {
    body.menubar-fold .foldable {
      visibility: hidden;
      display: none; }
    body.menubar-top {
      padding-top: 140px; } }
  @media (max-width: 767px) {
    body.menubar-in {
      height: 100%;
      overflow: hidden; }
    body.navbar-collapse-in {
      padding-top: 120px; } }

@media (min-width: 1200px) {
  
    .CloseProfilePopup{
      display: none;
    }
  body.menubar-top .menubar, body.menubar-top
  .app-main {
    padding-right: calc((100% - 1200px) / 2 + 30px);
    padding-left: calc((100% - 1200px) / 2 + 30px); } }

@media (max-width: 1199px) and (min-width: 992px) {
  body.menubar-top .menubar, body.menubar-top
  .app-main {
    padding-right: calc((100% - 992px) / 2 + 30px);
    padding-left: calc((100% - 992px) / 2 + 30px); } }

@media (max-width: 991px) and (min-width: 768px) {
  body.menubar-top .menubar, body.menubar-top
  .app-main {
    padding-right: 30px;
    padding-left: 30px; } }

@media (min-width: 1200px) {
  body.menubar-top .navbar {
    padding-right: calc((100% - 1200px) / 2 + 15px);
    padding-left: calc((100% - 1200px) / 2 + 15px); } }

@media (max-width: 1199px) and (min-width: 992px) {
  body.menubar-top .navbar {
    padding-right: calc((100% - 992px) / 2 + 15px);
    padding-left: calc((100% - 992px) / 2 + 15px); } }

@media (max-width: 991px) and (min-width: 768px) {
  body.menubar-top .navbar {
    padding-right: 15px;
    padding-left: 15px; } }

.menubar {
  position: fixed;
  left: 0;
  top: 60px;
  opacity: 0;
  z-index: 999;
  transition: opacity 0.5s, left 0.2s ease-in-out, top 0.5s; }
  .menubar.in {
    opacity: 1; }
  body.menubar-unfold .menubar {
    width: 220px; }
  body.menubar-left .menubar {
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 10px;
    height: 100%;
    /*Default menu
    padding-bottom: 20px;
    height: calc(100% - 60px);*/ }   
   body.menubar-left .menubar.menubar-crop{
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    height: calc(100% - 60px); }
  @media (max-width: 767px) {
    .menubar {
      left: -222px; }
      body.menubar-in .menubar {
        left: 0; }
      body.navbar-collapse-in .menubar {
        top: 120px;
        height: calc(100% - 120px); } }
  @media (min-width: 768px) {
    body.menubar-fold .menubar {
      position: absolute;
      width: 5rem; }
    body.menubar-top .menubar {
      right: 0;
      width: 100%;
      height: 80px; }
      body.menubar-top .menubar .menubar-scroll {
        display: inline-block; } }

.menubar.light {
  background: #fff; }
  body.menubar-left .menubar.light {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.08);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.08); }
  body.menubar-top .menubar.light {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); }

.menubar.dark {
  background: #3b3e47; }

.app-user {
  padding-right: 16px;
  padding-left: 16px;
  /*display: inline-block;*/ }
  .app-user .media,
  .app-user .media-body {
    overflow: visible; }
  .app-user .media-left {
    position: relative;
    vertical-align: middle;
    padding-top: 4px; }
  .app-user .media-body {
    display: none; }
  .app-user .dropdown-menu {
    left: 0;
    right: auto; }
  .app-user .avatar {
    position: static;
    margin: 0; }
  @media (min-width: 768px) {
    body.menubar-left .menubar .app-user {
      margin-bottom: 20px; }
    body.menubar-unfold .app-user .media-body {
      display: table-cell; }
    body.menubar-unfold .app-user .media-left {
      padding-top: 0; }
    body.menubar-unfold .app-user .avatar {
      margin-right: 16px; }
    body.menubar-unfold .app-user .avatar.open .dropdown-menu {
      display: none; }
    .navbar-collapse .app-user {
      display: none !important; }
    body.menubar-top .app-user {
      height: 80px;
      float: right;
      width: 82px; }
      body.menubar-top .app-user .media-left {
        height: 80px; }
      body.menubar-top .app-user .dropdown-menu {
        left: auto;
        right: 0; } }
  @media (max-width: 767px) {
    .menubar .app-user {
      display: none; }
    .navbar-collapse .app-user {
      height: 60px;
      width: 74px;
      float: left; }
      .navbar-collapse .app-user .media-left {
        height: 60px; }
      .navbar-collapse .app-user .avatar {
        width: 42px;
        height: 42px; } }

.menubar.light .app-user .username {
  color: #333333; }

.menubar.light .app-user .usertitle {
  color: #6a6c6f; }

.menubar.dark .app-user .username {
  color: #fff; }

.menubar.dark .app-user .usertitle {
  color: #eee; }

body.menubar-unfold .menubar-scroll {
  position: relative; }
  body.menubar-unfold .menubar-scroll .menubar-scroll-inner {
    position: relative;
    height: 100%; }

@media (min-width: 768px) {
  body.menubar-unfold .menubar-scroll {
    height: calc(100% - 75px); }
  body.menubar-fold .menubar-scroll .menubar-scroll-inner {
    height: auto !important; } }

@media (max-width: 767px) {
  body.menubar-unfold .menubar-scroll {
    height: 100%; } }

.app-menu a {
  display: block;
  padding: 10px 16px;
  font-size: .875rem; }

.app-menu .menu-icon {
  display: inline-block;
  width: 1rem;
  margin-right: 8px;
  transition: margin-right .5s ease; }

.app-menu .menu-text {
  display: inline-block; }

.app-menu .menu-caret {
  float: right;
  font-size: 1rem;
  backface-visibility: hidden;
  transition: transform .3s ease-in-out; }

.app-menu .menu-label {
  float: right;
  padding: .2em .8em .4em; }

.app-menu .menu-label ~ .menu-caret {
  display: none; }

.app-menu .has-submenu {
  position: relative; }

.app-menu .submenu {
  width: 220px;
  display: none; }

body.menubar-left .app-menu .open > a > .menu-caret {
  transform: rotate(90deg); }

body.menubar-left .app-menu > li {
  border-left: 3px solid transparent; }

body.menubar-left .app-menu > li > a {
  /*padding-top: 13px;
  padding-bottom: 13px;*/ 
  padding-top: 8px;
  padding-bottom: 8px;}

body.menubar-left .app-menu .more-items-li {
  display: none; }

body.menubar-unfold .app-menu li.menu-heading {
  display: none; }

body.menubar-unfold .app-menu .submenu {
  box-shadow: none;
  width: 100%; }

body.menubar-unfold .app-menu .submenu .menu-text {
  margin-left: 30px; }

body.menubar-unfold .app-menu .submenu .menu-icon + .menu-text {
  margin-left: 0; }

@media (min-width: 768px) {
  body.menubar-fold .app-menu > li > a > .menu-text {
    display: none; }
  body.menubar-fold .app-menu > li > a > .menu-caret {
    display: none; }
  body.menubar-fold .app-menu > li > a > .menu-label {
    display: none; }
  body.menubar-fold .app-menu > li > a > .menu-icon {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 25px;
    transition: font-size .2s ease-in-out; }
  body.menubar-fold .app-menu > li {
    border-bottom: 1px solid transparent; }
  body.menubar-fold .app-menu > li > .submenu {
    display: none !important; }
  body.menubar-fold .app-menu > li.open > .submenu {
    display: block !important; }
  body.menubar-fold .app-menu > li > .submenu {
    position: absolute;
    left: 100%;
    top: 0; }
  body.menubar-fold .app-menu > li > .submenu a {
    padding-left: 24px;
    padding-right: 24px; }
  body.menubar-fold .app-menu .submenu > li.menu-heading {
    border-bottom: 1px solid transparent; }
  body.menubar-fold .app-menu li.menu-heading > a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px; }
  body.menubar-top .app-menu {
    display: inline-block;
    float: left; }
    body.menubar-top .app-menu > li:nth-child(n+7) {
      display: none; }
    body.menubar-top .app-menu > li {
      display: inline-block;
      float: left; }
    body.menubar-top .app-menu > li > a {
      height: 80px;
      padding: 20px 16px;
      text-align: center; }
    body.menubar-top .app-menu > li > a > .menu-icon {
      display: block;
      width: 100%;
      font-size: 20px;
      margin-bottom: 8px; }
    body.menubar-top .app-menu > li > a > .menu-text {
      display: block; }
    body.menubar-top .app-menu > li > a > .menu-label,
    body.menubar-top .app-menu > li > a > .menu-caret {
      display: none; }
    body.menubar-top .app-menu .has-submenu {
      position: relative; }
    body.menubar-top .app-menu .submenu {
      position: absolute;
      left: 100%;
      top: 0;
      padding-top: 5px;
      padding-bottom: 5px; }
    body.menubar-top .app-menu .open > .submenu {
      display: block; }
    body.menubar-top .app-menu > li > .submenu {
      top: 100%;
      left: 0; }
    body.menubar-top .app-menu > .menu-separator {
      display: none; } }

.app-menu a {
  color: #6a6c6f; }

.app-menu li.open > a,
.app-menu li.active > a,
.app-menu li:hover > a,
.app-menu li.menu-heading > a {
  color: #188ae2; }

body.menubar-left .app-menu li.open,
body.menubar-left .app-menu li.active {
  border-left-color: #188ae2; }

.menubar.light .app-menu li.open,
.menubar.light .app-menu li.active,
.menubar.light .app-menu li:hover,
.menubar.light .app-menu li.menu-heading {
  background-color: rgba(237, 240, 245, 0.5); }

.menubar.dark .app-menu a {
  color: #ffffff; }

.menubar.dark .app-menu li.open,
.menubar.dark .app-menu li.active,
.menubar.dark .app-menu li:hover,
.menubar.dark .app-menu li.menu-heading {
  background-color: rgba(43, 45, 52, 0.5); }

body.menubar-fold .menubar.light .app-menu > li.open {
  border-bottom-color: #edf0f5; }

body.menubar-fold .menubar.light .app-menu > li > .submenu {
  background-color: #fff;
  -webkit-box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.08);
  box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.08); }

body.menubar-fold .menubar.light .app-menu .submenu > li.menu-heading {
  border-bottom-color: #edf0f5; }

body.menubar-top .menubar.light .app-menu .submenu {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.08); }

body.menubar-fold .menubar.dark .app-menu > li.open {
  border-bottom-color: #2b2d34; }

body.menubar-fold .menubar.dark .app-menu > li > .submenu {
  background-color: #3b3e47; }

body.menubar-fold .menubar.dark .app-menu .submenu > li.menu-heading {
  border-bottom-color: #2b2d34; }

body.menubar-fold .menubar.dark .app-menu hr {
  border-color: #777; }

body.menubar-top .menubar.dark .app-menu .submenu {
  background-color: #3b3e47; }

.navbar {
  border: none;
  opacity: 0;
  transition: opacity 0.5s; }
  .navbar.in {
    opacity: 1; }

.navbar-inverse .page-title {
  color: #fff; }

.navbar-inverse .navbar-toggle {
  border: none;
  color: #fff; }
  .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: transparent; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-collapse {
    background: #fff;
    border-top: none; } }

@media (min-width: 768px) {
  body.menubar-left .navbar-header {
    width: 220px; }
  body.menubar-fold .navbar-header {
    width: 5rem; }
  body.menubar-left.menubar-light .navbar-header {
    background: #fff; }
  body.menubar-left.menubar-dark .navbar-header {
    background: #3b3e47; } }

 
.navbar-brand {
  height: 60px;
  line-height: 28px;
  padding: 16px 20px; }
  .navbar-brand .brand-icon {
    width:40px;
    /*width: 100%;*/
    display: inline-block;
    /*display: block;*/
    text-align: center;
    transition: margin-right .5s ease;
    font-size: 1.5rem; }
  .navbar-brand .brand-name {
    font-size: 1.25rem;
    font-weight: 500; }
  @media (min-width: 768px) {
    .navbar-brand {
      display: block;
      width: 100%; }
      .navbar-brand .brand-icon {
        width: 100%;
        float: left;
        margin-right: .5rem; }
      body.menubar-fold .navbar-brand .brand-icon {
        display: block;
        float: none;
        margin-right: 0; }
      body.menubar-fold .navbar-brand .brand-name {
        display: none; } }
  @media (max-width: 767px) {
    .navbar-brand {
      position: absolute;
      left: 50%;
      margin-left: -36px; }
      .navbar-brand .brand-icon .fa {
        font-size: 30px; }
      .navbar-brand .brand-name {
        display: none; } }

.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #188ae2; }

@media (max-width: 767px) {
  body > .navbar .navbar-brand,
  body > .navbar .navbar-brand:hover,
  body > .navbar .navbar-brand:focus {
    color: #fff; } }

@media (min-width: 768px) {
  body.menubar-dark > .navbar .navbar-brand,
  body.menubar-top > .navbar .navbar-brand {
    color: #fff; } }

.navbar-toggle {
  height: 60px;
  padding: 20px 15px;
  line-height: 20px;
  border-radius: 0;
  margin: 0; }
  .navbar-toggle.navbar-toggle-left {
    float: left; }
  .navbar-toggle.navbar-toggle-right {
    float: right; }

body.menubar-left .navbar-container {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); }

@media (min-width: 768px) {
  .menubar-unfold .navbar-container {
    margin-left: 220px; }
  .menubar-fold .navbar-container {
    margin-left: 5rem; } }

@media (max-width: 767px) {
  .navbar-container {
    padding-right: 0;
    padding-left: 0; } }

@media (max-width: 767px) {
  .navbar-collapse.in {
    overflow-y: visible; } }

.page-title {
  font-size: 16px;
  font-weight: 500;
  height: 60px;
  padding: 20px 15px;
  line-height: 20px;
  margin: 0; }

.navbar-toolbar {
  margin: 0; }
  .navbar-toolbar.navbar-toolbar-right {
    float: right; }
  .navbar-toolbar > li {
    float: left; }
  .navbar-toolbar > li > a {
    display: block;
    height: 60px;
    padding: 20px 15px;
    line-height: 20px; }
  .navbar-toolbar > li > .dropdown-menu {
    width: 240px;
    padding: 0;
    border-color: #ddd;
    z-index: 777; }
    .navbar-toolbar > li > .dropdown-menu > li > a {
      padding: 19px 16px;
      line-height: 20px;
      border-bottom: 1px solid #f5f7f9; }
  @media (max-width: 767px) {
    .navbar-toolbar > li {
      position: static; }
    .navbar-toolbar .open > .dropdown-menu {
      right: 0;
      left: 0;
      width: auto; } }

.navbar-toolbar > li > a {
  color: #fff; }
  .navbar-toolbar > li > a:hover, .navbar-toolbar > li > a:focus, .navbar-toolbar > li > a[data-active="true"] {
    background-color: rgba(255, 255, 255, 0.07); }

.navbar-toolbar > .open > a,
.navbar-toolbar > .open > a:hover,
.navbar-toolbar > .open > a:focus {
  background-color: rgba(255, 255, 255, 0.07); }

@media (max-width: 767px) {
  .navbar-toolbar > li > a {
    color: #76797c; }
    .navbar-toolbar > li > a:hover, .navbar-toolbar > li > a:focus, .navbar-toolbar > li > a[data-active="true"] {
      background-color: #f8fafb; }
  .navbar-toolbar > .open > a,
  .navbar-toolbar > .open > a:hover,
  .navbar-toolbar > .open > a:focus {
    background-color: #f8fafb; } }

.navbar-toolbar.navbar-toolbar-left > li > a:hover, .navbar-toolbar.navbar-toolbar-left > li > a:focus {
  background-color: transparent; }

.navbar-search {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  height: 60px;
  top: -62px;
  background: #fff;
  transition: all .2s ease-in-out;
  z-index: 9999; }
  .navbar-search.collapse {
    display: block; }
  .navbar-search .navbar-search-inner {
    z-index: 1; }
  .navbar-search .search-field {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    padding-left: 45px;
    outline: none;
    border: none;
    color: #777; }
  .navbar-search .search-icon {
    position: absolute;
    top: 30%;
    left: 20px;
    z-index: 1;
    color: #ccc;
    font-size: 1rem; }
  .navbar-search .search-close {
    position: absolute;
    top: 30%;
    right: 30px;
    font-weight: 100;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
    color: #ccc;
    border: none;
    outline: none;
    background: transparent; }
  .navbar-search .navbar-search-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: none;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.9); }
  .navbar-search.in {
    top: 0; }
    .navbar-search.in .navbar-search-backdrop {
      display: block; }

/**========= DASHBOARD MAIN ===========**/
.app-main {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.5s, transform 0.2s ease-in-out;
  min-height: calc(100% - 60px); }
  .app-main.in {
    opacity: 1; }
  @media (min-width: 768px) {
    body.menubar-unfold .app-main {
      margin-left: 220px; }
    body.menubar-fold .app-main {
      margin-left: 5rem; } }
  @media (max-width: 767px) {
    body.menubar-in .app-main {
      transform: translate3d(220px, 0, 0);
      overflow: hidden; } }

.wrap {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }
  @media (max-width: 767px) {
    .wrap {
      padding-left: .75rem;
      padding-right: .75rem; } }
  @media (min-width: 768px) {
    body.menubar-top .wrap {
      padding-right: 0;
      padding-left: 0; } }

/** footer section **/
.app-footer {
  padding: 24px 0;
  border-top: 1px solid #cccccc; }
  .app-footer .copyright {
    float: left;
    font-weight: 400;
    color: #aaacae;
    letter-spacing: 1.5px; }
  .app-footer .footer-menu {
    float: left; }
    .app-footer .footer-menu li {
      display: inline-block; }
  .app-footer ul > li > a {
    display: block;
    padding: 0 .75rem;
    font-weight: 400;
    color: #aaacae; }

@media (max-width: 767px) {
  .app-footer .footer-menu {
    display: block;
    width: 100%;
    float: none; }
    .app-footer .footer-menu li:first-child > a {
      padding-left: 0 !important; }
    .app-footer .footer-menu li:last-child {
      float: right; }
  .app-footer .copyright {
    float: none;
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center; } }

.side-panel {
  position: fixed;
  right: -100%;
  top: 60px;
  width: 240px;
  z-index: 2;
  height: calc(100% - 60px);
  transition: all .5s ease; }
  .side-panel.open {
    right: 0; }
  .side-panel .panel-header {
    padding: 16px;
    border-bottom: 1px solid #eee; }
  .side-panel .panel-title {
    margin: 0;
    color: #333; }
  .side-panel .scrollable-container {
    position: relative;
    height: calc(100% - 57px) !important; }
  @media (max-width: 767px) {
    .side-panel.open {
      width: 100%; }
    body.navbar-collapse-in .side-panel {
      top: 120px;
      height: calc(100% - 120px); } }
  @media (min-width: 768px) {
    body.menubar-top .side-panel {
      top: 140px;
      height: calc(100% - 140px); } }

.side-panel {
  background-color: #fff;
  -webkit-box-shadow: -2px 0 4px rgba(0, 0, 0, 0.08);
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.08); }

.action-panel-btn {
  -webkit-box-shadow: 1px 1px 3px #aaa;
  box-shadow: 1px 1px 3px #aaa;
  border: none;
  color: #6a6c6f; }

.app-actions-list {
  position: relative;
  height: 100%;
  overflow: hidden; }
  .app-actions-list .list-group-item {
    background: transparent;
    border: none;
    padding-top: 12px;
    padding-bottom: 12px; }

.action-panel-toggle {
  display: none;
  position: absolute;
  top: calc(50% - 25px);
  right: -25px;
  height: 50px;
  width: 25px;
  cursor: pointer;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  background: #fff;
  -webkit-box-shadow: 2px 0 3px rgba(0, 0, 0, 0.175);
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.175); }
  .action-panel-toggle .fa {
    display: none;
    line-height: 50px;
    text-align: center;
    font-size: 18px; }
    .action-panel-toggle .fa:hover {
      color: #188ae2; }
    .action-panel-toggle .fa.fa-chevron-right {
      display: block; }

.app-action-panel .item-actions {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 12px;
  padding-right: 16px;
  display: none; }
  .app-action-panel .item-actions .item-action {
    font-size: 16px;
    color: #6a6c6f;
    margin-left: 8px; }
    .app-action-panel .item-actions .item-action:hover {
      color: #35b8e0; }

.app-action-panel .list-group-item:hover .hide-on-hover {
  display: none; }

.app-action-panel .list-group-item:hover .item-actions {
  display: block; }

@media (max-width: 992px) {
  .app-action-panel {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: -262px;
    width: 260px;
    height: calc(100% - 60px);
    padding: 16px;
    background: #fff;
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.08);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.08);
    z-index: 999;
    transition: left .5s ease, top .5s; }
    .app-action-panel.open {
      left: 0; }
      .app-action-panel.open .fa-chevron-right {
        display: none; }
      .app-action-panel.open .fa-chevron-left {
        display: block; }
    .app-action-panel .action-panel-toggle {
      display: block; }
    body.navbar-collapse-in .app-action-panel {
      top: 120px;
      height: calc(100% - 120px); }
    body.menubar-in .app-action-panel {
      left: -262px; } }

.app-customizer {
  position: fixed;
  right: -202px;
  width: 200px;
  height: auto;
  z-index: 888;
  background: #fff;
  transition: right .5s ease 0s;
  -webkit-box-shadow: 0 0 2px #aaa;
  box-shadow: 0 0 2px #aaa; }
  .app-customizer .nav-tabs > li > a {
    padding: 10px 15px;
    border-bottom-width: 1px; }
  .app-customizer .nav-tabs > li > a:hover,
  .app-customizer .nav-tabs > li > a:focus,
  .app-customizer .nav-tabs > li.active > a,
  .app-customizer .nav-tabs > li.active > a:hover,
  .app-customizer .nav-tabs > li.active > a:focus {
    border-bottom: 1px solid #188ae2; }
  .app-customizer .tab-pane {
    padding: 16px 16px 0; }
  .app-customizer .radio label {
    font-weight: 600;
    font-size: 14px; }
  .app-customizer label {
    cursor: pointer; }
  .app-customizer.open {
    right: 0; }
  .app-customizer .customizer-reset {
    padding: 16px; }
  @media (min-width: 768px) {
    .u-statistics-job, 
    .o-statistics-job {
       top: 85px; 
    }
      .app-customizer {
      top: 130px; }
      body.menubar-top .app-customizer {
        top: 170px; } }
  @media (max-width: 767px) {
    .u-statistics-job, 
    .o-statistics-job {
       top: 85px; 
    }
    .app-customizer {
      top: 120px; }
      body.navbar-collapse-in .app-customizer {
        top: 140px; }
      .app-customizer .tab-pane {
        padding: 12px 12px 0;
        max-height: 160px;
        overflow-y: auto; }
      .app-customizer .customizer-reset {
        padding: 12px; } }

.app-customizer-toggle {
  position: absolute;
  background: #fff;
  right: 100%;
  top: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #6a6c6f;
  text-decoration: none;
  font-size: 16px;
  -webkit-box-shadow: 0 0 2px #aaa;
  box-shadow: 0 0 2px #aaa; }
  .app-customizer-toggle .fa {
    animation: rotate-me 2s infinite linear; }

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

#jqstooltip {
  display: block;
  background: #36404a;
  color: #fff;
  border-radius: 3px;
  padding: 8px 16px !important;
  width: auto !important;
  height: auto !important;
  border: none;
  white-space: nowrap; }

#pieLegend .legendColorBox > div {
  border: none !important; }
  #pieLegend .legendColorBox > div > div {
    border-width: 7px !important; }

#pieLegend .legendLabel, #pieLegend .legendColorBox {
  padding: .2rem 0 .4rem 0; }

#pieLegend .legend-label {
  font-weight: 500;
  margin-top: .5em;
  margin-left: .5em; }

.flotTip {
  background: #36404a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 3px;
  font-family: lato, Helvetica, serif; }

.small-chart {
  margin-top: 4px; }

.chart {
  height: 300px;
  width: 100%; }

.morris-hover.morris-default-style {
  border-radius: 5px;
  padding: 10px 12px;
  color: #666;
  background: #36404a;
  border: none;
  color: #ffffff !important; }
  .morris-hover.morris-default-style .morris-hover-point {
    color: #fff !important; }

.chart-legend {
  margin-bottom: 16px;
  text-align: center; }
  .chart-legend .chart-legend-label .fa {
    display: inline-block;
    margin-right: 6px; }

.sparkline-chart canvas {
  display: block !important;
  margin: 0 auto; }

.pieprogress {
  position: relative; }
  .pieprogress strong {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 20px; }

.user-card {
  padding: 24px;
  background: #f5f7f9;
  border: 1px solid #ccc;
  border-radius: 4px; }

.user-card {
  margin-bottom: 24px; }
  .user-card h5 {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 6px; }
  .user-card h5 a {
    color: #555; }
  .user-card small {
    color: #777;
    font-size: 12px; }

.box,
.widget {
  background-color: #fff;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 1px 2px #ccc;
  box-shadow: 0 1px 2px #ccc; }
  .box small,
  .widget small {
    font-size: 95%;
    font-weight: 500; }

.widget-header,
.widget-body,
.widget-footer {
  padding: 1rem; }

.widget-header:before, .widget-header:after,
.widget-footer:before,
.widget-footer:after,
.widget-header:before,
.widget-header:after,
.widget-footer:before,
.widget-footer:after {
  content: " ";
  display: table; }

.widget-header:after,
.widget-footer:after,
.widget-header:after,
.widget-footer:after {
  clear: both; }

.widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #333333; }

h3.widget-title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500; }
  
.widget-title .btn {
  vertical-align: top; }

.widget-separator {
  margin: 0 16px; }

.widget p {
  line-height: 1.8; }

/* statistics widgets */
.stats-widget .big-icon {
  color: #ccc;
  font-size: 32px; }

.stats-widget .widget-footer {
  padding: 8px 16px; }
  .stats-widget .widget-footer small {
    color: #ffffff; }

.box-header {
  padding: 24px 16px;
  border-bottom: 1px solid #eee; }

/* todo-widget */
.todo-widget .widget-footer {
  background-color: #f0f4fb; }

.todo-item .checkbox input[type="checkbox"]:checked + label {
  font-style: italic;
  color: #ddd;
  text-decoration: line-through; }

.new-todo {
  padding: 24px 16px;
  background-color: #fdfeff;
  border-top: 1px solid #eff3fa; }
  .new-todo input {
    border: none;
    outline: none;
    width: 100%;
    background-color: transparent; }

.sl-item {
  position: relative;
  padding-bottom: 12px;
  border-left: 1px solid #ccc; }
  .sl-item:before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    background-color: #ccc;
    width: 12px;
    height: 12px;
    border-radius: 100%; }
  .sl-item:last-child:after {
    content: '';
    position: absolute;
    left: -3px;
    bottom: 0;
    background-color: #ccc;
    width: 6px;
    height: 6px;
    border-radius: 100%; }
  .sl-item .sl-content {
    margin-left: 24px; }
    .sl-item .sl-content p {
      margin: 0; }

.sl-primary {
  border-left-color: #188ae2; }
  .sl-primary:before, .sl-primary:last-child:after {
    background-color: #188ae2; }

.sl-success {
  border-left-color: #10c469; }
  .sl-success:before, .sl-success:last-child:after {
    background-color: #10c469; }

.sl-warning {
  border-left-color: #f9c851; }
  .sl-warning:before, .sl-warning:last-child:after {
    background-color: #f9c851; }

.sl-danger {
  border-left-color: #ff5b5b; }
  .sl-danger:before, .sl-danger:last-child:after {
    background-color: #ff5b5b; }

.sl-avatar {
  position: absolute;
  left: -22px; }

.feeds-group .media-group-item {
  padding: 0;
  border-bottom: none;
  margin-bottom: 16px; }
  .feeds-group .media-group-item:last-child {
    margin-bottom: 0; }
  .feeds-group .media-group-item p {
    line-height: 1.3;
    margin-bottom: 6px; }

.navigation-widget .list-group-item {
  padding: 16px;
  border: none; }

.countries-widget .list-group-item {
  margin-bottom: 6px;
  padding: 16px;
  background: #edf0f5;
  color: #6a6c6f;
  border: none; }
  .countries-widget .list-group-item.active, .countries-widget .list-group-item:hover, .countries-widget .list-group-item:focus {
    background: #188ae2;
    color: #fff; }
  .countries-widget .list-group-item:last-child {
    margin-bottom: 0; }

.countries-widget .avatar {
  width: 20px;
  height: 20px;
  margin-right: 12px; }

.products-widget .product {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  border: 1px solid transparent; }
  .products-widget .product:hover, .products-widget .product:focus, .products-widget .product.active {
    border-color: #188ae2; }
    .products-widget .product:hover .product-caption, .products-widget .product:focus .product-caption, .products-widget .product.active .product-caption {
      display: block; }

.products-widget .product-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #188ae2;
  padding: 16px 24px;
  font-weight: 600;
  color: #fff;
  display: none; }

.divid {
  width: 100%;
  height: 1px;
  margin: 16px auto;
  background: #e0e0e0; }

.mail-list > tbody > tr > td {
  padding: 0;
  border-top: none; }

.mail-list .table > tbody > tr > td {
  padding: 0; }

.mail-item {
  background: #fff;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15); }
  .mail-item .mail-container {
    width: 100%;
    min-width: 100%; }

.mail-item tr > td {
  vertical-align: top; }

td.mail-left {
  width: 64px;
  padding-right: 16px; }

td.mail-right {
  width: 124px;
  padding-left: 24px; }

.table > thead > tr > .no-line {
    border-bottom: none;
}

.mail-item .avatar {
  margin-right: 0;
  display: block; }

.mail-item-header {
  margin-top: 8px;
  margin-bottom: 12px; }

.mail-item-title {
  font-size: 16px;
  display: inline-block;
  margin: 0;
  margin-right: 16px; }

.mail-item-excerpt {
  margin-bottom: 0; }

.mail-item-date {
  text-align: center;
  color: #6a6c6f; }

.mail-item-star {
  text-align: center; }
  .mail-item-star a {
    color: #6a6c6f; }
  .mail-item-star.starred a {
    color: #f9c851; }

/* Email app side panel */
.mail-cats > a,
.mail-labels > a {
  border: none;
  color: #6a6c6f;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent; }

.mail-cats > a > .fa,
.mail-labels > a > .fa,
.mail-actions > a > .fa {
  display: inline-block;
  margin-right: 12px; }

.mail-cats > a > .fa {
  color: #aaa;
  font-size: 12px; }

.mail-cats > a:hover {
  background-color: #d8dfea; }

.mail-actions > a {
  border: none;
  font-size: 14px;
  color: #333333;
  background-color: transparent; }

.mail-actions > a:hover {
  background-color: transparent; }

.mail-toolbar .btn-group {
  margin-right: 16px; }

.mail-toolbar .btn-group.pull-right {
  margin-right: 0; }

.compose-btn,
.mail-toolbar .btn {
  border: none;
  box-shadow: 0 1px 3px #ccc;
  color: #6a6c6f; }

.compose-btn {
  width: 120px; }

.new-message .panel-heading {
  background: #fff; }
  .new-message .panel-heading input {
    border: none;
    box-shadow: none;
    outline: none;
    width: 100%; }

.new-message .panel-body {
  line-height: 2; }

.new-message #new-message-body {
  display: block;
  width: 100%;
  min-height: 200px;
  padding: 16px;
  border: none;
  resize: none;
  box-shadow: none;
  outline: none; }

.fullcalendar,
#fullcalendar {
  margin-bottom: 24px;
  background: #fff;
  padding: 24px 16px; }

.fc th.fc-day-header {
  color: #333;
  background-color: #edf0f5;
  padding: 12px 0;
  border: 1px solid #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500; }

.fc .fc-row.ui-widget-header,
.fc .fc-row.fc-week.ui-widget-content {
  margin-right: 0 !important;
  border-width: 0 !important; }

.fc-day {
  background-color: #fff; }

.fc-today {
  /*	background-color: #edf0f5;
	color: #fff;*/ }

.fc-basic-view .fc-day-number {
  font-size: 16px;
  color: gray;
  padding-top: 8px !important;
  padding-right: 16px !important; }

.fc th, .fc td {
  border-color: #edf0f5; }

/* fullCalendar toolbar */
.fc-toolbar {
  margin-bottom: 24px; }

.fc-toolbar .fc-center h2 {
  font-size: 16px; }

.fc-toolbar .ui-button {
  border: none;
  box-shadow: 0 0 2px #ccc;
  background: #fff;
  color: #6a6c6f;
  height: 35px;
  border-radius: 2px; }

.fc-toolbar .ui-button:hover {
  background: #edf0f5; }

.fc-toolbar .ui-state-disabled {
  color: #ccc;
  box-shadow: none;
  border: 1px solid #eee; }

.fc-toolbar .ui-state-disabled:hover {
  background: #fff; }

.fc-today-button {
  width: 70px; }

/* Event Styling*/
.fc-content-skeleton .fc-event-container {
  padding: 0 12px; }

.fc-event-container .fc-event {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  border-radius: 2px;
  border: none; }

#external-events .external-event {
  color: #fff;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  border-radius: 2px;
  cursor: move; }
  #external-events .external-event.ui-draggable-dragging {
    z-index: 999; }

.contact-item {
  position: relative; }
  .contact-item:hover .contact-item-actions {
    display: block;
    opacity: 1; }
  .contact-item .contact-links a {
    color: #6a6c6f; }
    .contact-item .contact-links a:hover {
      color: #35b8e0; }

.contact-item-actions {
  position: absolute;
  display: none;
  opacity: 0;
  transition: opacity .5s ease;
  top: 20px;
  right: 20px; }
  .contact-item-actions .btn {
    padding: 4px 8px; }

.promo {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15); }

.promo-body {
  background: #fff;
  padding: 64px 24px 49px; }

.promo .promo-search-field,
.promo .promo-search-submit {
  height: 54px; }

.promo-search-submit {
  font-size: 18px;
  font-weight: 500; }

.promo-footer {
  border-top: 1px solid #eee;
  background: #f5f7f9; }

.promo-tab {
  padding: 24px;
  border-right: 1px solid #eee; }
  .promo-tab:last-child {
    border-right: none; }
  .promo-tab a {
    display: block;
    text-align: center;
    color: #6a6c6f; }
    .promo-tab a:hover, .promo-tab a:focus, .promo-tab a:active {
      color: #188ae2; }

.search-result {
  margin-bottom: 24px; }
  .search-result h5 {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 6px; }
  .search-result h5 a {
    color: #555; }
  .search-result small {
    color: #777;
    font-size: 12px; }

.table-responsive {
  border-top: none !important; }

.search-results .gallery-item {
  padding: 0; }

.profile-cover {
  background: #fff;
  padding: 64px 16px; }

.cover-user {
  display: block;
  width: 218px;
  margin: 0 auto; }
  .cover-user > div {
    display: table-cell;
    vertical-align: middle; }
  .cover-user .avatar {
    width: 90px;
    height: 90px;
    margin-right: 24px;
    margin-left: 24px; }
  .cover-user .cover-icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #ccc;
    display: block;
    text-align: center;
    line-height: 40px; }

#status-update-panel .panel-body {
  padding: 0; }

#status-update-panel #status-update-content {
  display: block;
  width: 100%;
  height: 120px;
  padding: 16px;
  border: none;
  resize: none;
  box-shadow: none;
  outline: none; }

.stream-post {
  position: relative;
  padding: 24px 16px;
  border-bottom: 1px solid #eee; }

.stream-body p {
  font-size: 16px;
  line-height: 1.8; }

.stream-img {
  max-width: 250px;
  height: auto;
  margin-right: 24px;
  border-radius: 6px;
  display: inline-block;
  float: left; }


.stream-content p{
line-height: 1.6rem;  
}
.stream-img.img-reply {
   max-width: 100px;
}

#profile-photos .gallery-item {
  padding: 0;
  border-radius: 0; }

#profile-photos .gallery-item-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  height: 40px;
  padding: 0 16px;
  width: 100%;
  color: #fff;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
  transition: bottom .5s ease 0s;
  line-height: 40px; }
  #profile-photos .gallery-item-overlay a {
    color: #fff;
    text-decoration: none; }
  #profile-photos .gallery-item-overlay .fa {
    display: inline-block;
    margin-right: 6px; }

#profile-photos .gallery-item:hover .gallery-item-overlay {
  bottom: 0; }

@media (max-width: 768px) {

.post-group-main .dropdown-media {
    left: 4rem !important;
}

#profile-photos .gallery-item-overlay {
    bottom: 0; } }

#likesModal .list-group-item {
  margin: 0;
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid #eee; }
  #likesModal .list-group-item:first-child {
    padding-top: 0; }
  #likesModal .list-group-item:last-child {
    padding-bottom: 0;
    border-bottom: none; }
  #likesModal .list-group-item .btn {
    min-width: 80px;
    padding: 4px 16px; }

#likesModal .media-left,
#likesModal .media-body,
#likesModal .media-right {
  vertical-align: middle; }

#profile-friends .user {
  padding: 16px; }

.gallery .row {
  margin-left: -6px;
  margin-right: -6px; }

.gallery [class*='col-'] {
  padding-left: 6px;
  padding-right: 6px; }

.gallery-item {
  position: relative;
  margin-bottom: 12px;
  padding: 4px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #fff; }
  .gallery-item .thumb {
    height: 100%; }
    .gallery-item .thumb a {
      display: block;
      overflow: hidden; }
    .gallery-item .thumb img {
      transition: transform .5s ease; }
    .gallery-item .thumb:hover img {
      transform: scale(1.2); }
  .gallery-item img {
    width: 100%;
    height: 100%; }
  .gallery-item .caption {
    padding: 8px 12px; }

.panel .table td,
.panel .table th {
  border-bottom: 1px solid #ccc;
  padding: 12px; }

.price-box {
  border-top: 3px solid #000;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 24px; }
  .price-box .box-head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
  .price-box .box-body li {
    color: #777;
    padding: 12px 0; }
  .price-box .box-body strong {
    margin-right: 5px;
    font-weight: 600; }
  .price-box .box-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center; }
    .price-box .box-footer .btn {
      min-width: 60%; }

.price-box-best {
  border-top-color: #188ae2; }

.price-box-best li,
.price-box-best .box-title,
.price-box-best .box-title small {
  color: #188ae2 !important; }

#buttons-demo-page .btn {
  margin-bottom: 24px; }

.docs {
  line-height: 2 !important; }

.theme-primary .navbar-brand,
.theme-primary .navbar-brand:hover,
.theme-primary .navbar-brand:focus {
  color: #188ae2; }

.theme-primary .theme-color {
  color: #188ae2; }

.theme-primary .menubar .app-menu li.open,
.theme-primary .menubar .app-menu li.active {
  border-left-color: #188ae2; }

.theme-primary .menubar .app-menu li.open > a,
.theme-primary .menubar .app-menu li.active > a,
.theme-primary .menubar .app-menu li:hover > a,
.theme-primary .menubar .app-menu li.menu-heading > a {
  color: #188ae2; }

.theme-success .navbar-brand,
.theme-success .navbar-brand:hover,
.theme-success .navbar-brand:focus {
  color: #10c469; }

.theme-success .theme-color {
  color: #10c469; }

.theme-success .menubar .app-menu li.open,
.theme-success .menubar .app-menu li.active {
  border-left-color: #10c469; }

.theme-success .menubar .app-menu li.open > a,
.theme-success .menubar .app-menu li.active > a,
.theme-success .menubar .app-menu li:hover > a,
.theme-success .menubar .app-menu li.menu-heading > a {
  color: #10c469; }

.theme-warning .navbar-brand,
.theme-warning .navbar-brand:hover,
.theme-warning .navbar-brand:focus {
  color: #f9c851; }

.theme-warning .theme-color {
  color: #f9c851; }

.theme-warning .menubar .app-menu li.open,
.theme-warning .menubar .app-menu li.active {
  border-left-color: #f9c851; }

.theme-warning .menubar .app-menu li.open > a,
.theme-warning .menubar .app-menu li.active > a,
.theme-warning .menubar .app-menu li:hover > a,
.theme-warning .menubar .app-menu li.menu-heading > a {
  color: #f9c851; }

.theme-danger .navbar-brand,
.theme-danger .navbar-brand:hover,
.theme-danger .navbar-brand:focus {
  color: #ff5b5b; }

.theme-danger .theme-color {
  color: #ff5b5b; }

.theme-danger .menubar .app-menu li.open,
.theme-danger .menubar .app-menu li.active {
  border-left-color: #ff5b5b; }

.theme-danger .menubar .app-menu li.open > a,
.theme-danger .menubar .app-menu li.active > a,
.theme-danger .menubar .app-menu li:hover > a,
.theme-danger .menubar .app-menu li.menu-heading > a {
  color: #ff5b5b; }

.theme-info .navbar-brand,
.theme-info .navbar-brand:hover,
.theme-info .navbar-brand:focus {
  color: #35b8e0; }

.theme-info .theme-color {
  color: #35b8e0; }

.theme-info .menubar .app-menu li.open,
.theme-info .menubar .app-menu li.active {
  border-left-color: #35b8e0; }

.theme-info .menubar .app-menu li.open > a,
.theme-info .menubar .app-menu li.active > a,
.theme-info .menubar .app-menu li:hover > a,
.theme-info .menubar .app-menu li.menu-heading > a {
  color: #35b8e0; }

.theme-pink .navbar-brand,
.theme-pink .navbar-brand:hover,
.theme-pink .navbar-brand:focus {
  color: #ff8acc; }

.theme-pink .theme-color {
  color: #ff8acc; }

.theme-pink .menubar .app-menu li.open,
.theme-pink .menubar .app-menu li.active {
  border-left-color: #ff8acc; }

.theme-pink .menubar .app-menu li.open > a,
.theme-pink .menubar .app-menu li.active > a,
.theme-pink .menubar .app-menu li:hover > a,
.theme-pink .menubar .app-menu li.menu-heading > a {
  color: #ff8acc; }

.theme-purple .navbar-brand,
.theme-purple .navbar-brand:hover,
.theme-purple .navbar-brand:focus {
  color: #5b69bc; }

.theme-purple .theme-color {
  color: #5b69bc; }

.theme-purple .menubar .app-menu li.open,
.theme-purple .menubar .app-menu li.active {
  border-left-color: #5b69bc; }

.theme-purple .menubar .app-menu li.open > a,
.theme-purple .menubar .app-menu li.active > a,
.theme-purple .menubar .app-menu li:hover > a,
.theme-purple .menubar .app-menu li.menu-heading > a {
  color: #5b69bc; }

.theme-inverse .navbar-brand,
.theme-inverse .navbar-brand:hover,
.theme-inverse .navbar-brand:focus {
  color: #3b3e47; }

.theme-inverse .theme-color {
  color: #3b3e47; }

.theme-inverse .menubar .app-menu li.open,
.theme-inverse .menubar .app-menu li.active {
  border-left-color: #188ae2; }

.theme-inverse .menubar .app-menu li.open > a,
.theme-inverse .menubar .app-menu li.active > a,
.theme-inverse .menubar .app-menu li:hover > a,
.theme-inverse .menubar .app-menu li.menu-heading > a {
  color: #188ae2; }

.theme-dark .navbar-brand,
.theme-dark .navbar-brand:hover,
.theme-dark .navbar-brand:focus {
  color: #282828; }

.theme-dark .theme-color {
  color: #282828; }

.theme-dark .menubar .app-menu li.open,
.theme-dark .menubar .app-menu li.active {
  border-left-color: #188ae2; }

.theme-dark .menubar .app-menu li.open > a,
.theme-dark .menubar .app-menu li.active > a,
.theme-dark .menubar .app-menu li:hover > a,
.theme-dark .menubar .app-menu li.menu-heading > a {
  color: #188ae2; }

.theme-deepOrange .navbar-brand,
.theme-deepOrange .navbar-brand:hover,
.theme-deepOrange .navbar-brand:focus {
  color: #FF5722; }

.theme-deepOrange .theme-color {
  color: #FF5722; }

.theme-deepOrange .menubar .app-menu li.open,
.theme-deepOrange .menubar .app-menu li.active {
  border-left-color: #FF5722; }

.theme-deepOrange .menubar .app-menu li.open > a,
.theme-deepOrange .menubar .app-menu li.active > a,
.theme-deepOrange .menubar .app-menu li:hover > a,
.theme-deepOrange .menubar .app-menu li.menu-heading > a {
  color: #FF5722; }

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

/* Custome */
.meta-post p{
margin-bottom: 5px;
line-height: 0.5;        
}
.post-heading {
position: relative;
margin-bottom: 8px;    
}

.post-meta-sub,
.post-list-meta-sub   {
font-size: 13px;
}

.post-group-main .post-meta-sub {
font-size: 12px;
}
.post-group-main .post-meta p {
font-size: 12px;  
}

.post-group-main .post-body  p {
font-size: 13px;
}

.post-group-main .post-img {
max-width: 100px;
    margin-right: 10px;
}

.post-bg {
background-color: #fff;
border-bottom: 1px solid #eeeeee;
}

.post-img {
padding-top: 5px;
padding-left: 10px;
max-width: 182px;
height: auto;
margin-right: 24px;
border-radius: 6px;
display: inline-block;
float: left;
background-size: cover;
}

.post-footer {
text-align: right;
margin-top: 5px;    
margin-bottom: 10px; 
}

.post-list {
position:relative;
}

.post-heading:after,
.post-list:after,
.post-box:after,
.post-content:after{
content: "."; 
visibility: hidden; 
display: block; 
height: 0; 
clear: both;
}

.panel-title:after,
.comment-form:after{
content: "."; 
visibility: hidden; 
display: block; 
height: 0; 
clear: both;
}
.comments-section{
    padding: 10px 38px 10px 75px;
}
.comments-section .comment-form{
    padding: 0px;
}
.comments-section .comment-form .form-control{
    margin-bottom: 1px;
}
.comments-section .post__author {
    float: left;
}
.comments-section .post__author img{
    width: 28px;
    height: 28px;
}
.comment-form .preview-files .w-file-list li{
 margin: 5px 0px;
 width: 100%;
}
.comment-form .preview-files .w-file-list li .post-file,
.post-reply .post-file{
 margin: 0px!important;
}
.close-panel {
margin: -2px -2px 0 0;
}
                
.group-btn-left:after,
.group-btn-right:after{
content: "."; 
visibility: hidden; 
display: block; 
height: 0; 
clear: both;
}

.post-content {
margin-bottom: 3px;   
-ms-word-break: break-all;
    word-break: break-all; 
background-color: #f9f9f9;
padding: 10px;
}

.post-assigned {
  width: 50%;
  padding-left: 10px;
}
.post-assigned .post-list{
padding-left: 28px;
}
.post-assigned .more-btn{
margin-left: 40px;
width: 243px;
}
.post-assigned p{
margin-left: 40px;
}
.icon-assigned {
position: absolute;
font-size: 24px;
line-height: 2.1; 
}                                           
.post-box {
margin-bottom: 3px;
}

.post-body {
margin-left: 64px;    
}

.post-body  p{
font-size: 16px;
font-weight: normal;
line-height: 1.50;
margin-bottom: 0;
}

.post-list-dropdown a {
display: block;    
}

.post-meta p,
.post-meta p span{
margin-bottom: 9px;
line-height: 0.5; 
font-size: 14px;   
}

.post-meta .label {
padding: .3em .6em 0em; 
}

.post-meta .label>i{
font-size: 11px;
}

.job-plus-btn {
font-size: 40px;
margin-right: 5px;
line-height: 1;
}

.job-plus-btn.job-getjob-btn {
   color: #fdb205; 
}

.job-plus-btn.job-success-btn {
   color: #10c469; 
}

.job-plus-btn.job-setting-getjob-btn {
   color: #465363; 
}

.logo-po {
    width: 140px;
}
.more-btn {
margin-bottom: 3px;
width: 22%;
line-height: 0.5; 
}
/* delete class */
.post-list-meta p,
.post-list-meta p span,
.post-list-meta p strong {
margin-bottom: 2px;
font-size: 15px;   
}

.post-meta .label,
.post-list-meta .label {
font-size: 10px;    
}

.post-title {
font-size: 20px;  
font-weight: bold;  
}

.post-meta,
.post-img-profile,
.post-body-list-img {
float: left;
}

.post-body-list-img.avatar {
   margin-right: 8px; 
}



.post-main {
position: relative;
padding: 5px 16px;
overflow: hidden;
margin-bottom: 10px;
}

.post-group-main {
position: relative;
padding: 10px 16px;
overflow: hidden;
background-color: #f9f9f9;
margin: 5px 0px 0px 62px; 
}

.header-post{
    text-align: left;
    width: 100%;
}
.post-body:after,
.header-post:after {
content: "."; 
visibility: hidden; 
display: block; 
height: 0; 
clear: both;     
}
.post-left {
float: left;
}
.post-right {
float: right;
}
/* .delete class */

.post-fix-right {
position:absolute;
top:0;
right:0;
}
.post-fix-right .dropdown-menu{
position: absolute;
left: -138px;
top: 34px; 
}
.post-group-main .dropdown-toggle {
    font-size: 1.6rem;
} 

.post-group-main .dropdown-media {
    top: 1rem;
    width: 60%;
    left: 11rem;
}

.post-group-main  h4.meta-post-head {
    margin-bottom: 0px;
}

.post-group-main  h4.meta-post-head a{
  font-size: 14px;  
}

.meta-post-head {
font-weight: bold;
margin-top: 0px;
margin-bottom: 6px;
font-size: 16px;
}
.form-inline .btn-block {
height: initial;
}
.text-pending {
color: #999999 !important;
}
.new-comment {
margin-top: 5px;
}
.label-block {
 display:block !important;
}
.label-padding {
 background-color: #999999;   
}
.label-getjob {
background-color: #fdb205;   
}
.label-working {
background-color: #3da0db;   
}
.label-success {
background-color: #61bb7e;
}
.label-order {
background-color: #465363;   
}
.label-job {
background-color: #9d0000;
}
.label-heightp {
background-color: #d52020;
}
.label-mediump {
background-color: #ff7805;
}
.label-lowp {
background-color: #ab6d3c;
}
.label-in-tab {
padding: 2px 5px;
margin: 0 2px;    
}
.label-tags {
    background-color: #ffffff;
    color: #6a6c6f;
    border: 1px solid #cecece;
}
.label-tags:hover {
    background-color: #fafbfd;
}
.label-tags .close-tag {
    margin-left: 5px;
    cursor:pointer;
}
#filter_tag_jobp span,
#filter_tag_jobm span,
#filter_tag_jobp_np span {
 margin-right: 5px; 
 margin-bottom: 5px; 
 display: inline-block; 
}
#uncheck_f_jobp,
#uncheck_f_notep,
#uncheck_f_jobm,
#uncheck_f_notenp,
#uncheck_f_jobnp {
display:none;
}
.text-getjob {
color: #fdb205;
}

.media-bg-round{
border-radius: 4px;
background-color: #f7f7f7;
}
.form-comment textarea{
max-width: 100%;  
}
.form-intab .form-group {
    margin-bottom: 10px;
}
#filters_jobp .checkbox,
#filters_jobm .checkbox{
    margin-bottom: 0px; 
}
.dropdown-menu li .checkbox,
.dropdown-menu #uncheck_f_jobp,
.dropdown-menu #uncheck_f_jobm {
  margin: 6px 16px;  
}
.dropdown-menu #uncheck_f_jobp, 
.dropdown-menu #uncheck_f_jobm {
  text-align:center;  
}
.dropdown-menu.dp-on-popup {
    z-index: 1029;
} 
.form-group {
position: relative;
}
.form-group textarea {
resize: none;
}

.img-avatar {
border-radius: 100%;
width: 90px;
margin: auto;
}
.navbar-form-m {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-form-m > .navbar-form-btn {
  position: absolute;
  display:inline-block;
  top: 19px;
  right: 22px;
  margin-left:-20px;
  cursor:pointer;
  z-index: 1;
  color: #ccc;
  border: none;
  outline: none;
  background: transparent;
}
textarea {
max-width: 100%;     
}

textarea.new-post-input {
height: 50px;
width: 100%;
max-width: 100%;
resize: none;
border-width: 0px;
border-bottom: 2px solid #eeeeee;
padding: 1px;
outline: none;
}

textarea:focus.new-post-input {
outline: none;
}
textarea.textarea-resize {
resize: none;  
}
textarea.textarea-style {
min-height: 90px;
height: 90px;
}

pl-md::-webkit-input-placeholder , 
pl-md::-moz-placeholder, /* firefox 19+ */
pl-md:-ms-input-placeholder,  /* ie */
pl-md:-moz-placeholder { 
font-size: 16px;
}
pl-lg::-webkit-input-placeholder , 
pl-lg::-moz-placeholder, /* firefox 19+ */
pl-lg:-ms-input-placeholder,  /* ie */
pl-lg:-moz-placeholder { 
font-size: 24px;
}
.news-meta {
font-size: 14px; }
.post-on {
margin-right: 5px;
}
.news-title,
.news-title a{
font-size: 24px;
color: #3f3f3f;    
}
.featured-thumb {
margin-top: 23px;
max-width: 100%;
text-align: center;
}
.rp-thumb {
float: left;
width: 50px;
margin-top: 3px;
}
.rp-item {
display: block;
clear: both;
overflow: auto;
margin-bottom: 5px;
border-bottom: solid 1px #f7f7f7;
padding-bottom: 5px;
}
.rp-title {
margin-left: 60px;   
}
.rp-title a {
color: #3f3f3f;
}
.rp {
margin: 0 12px;
}
.cover-news {
object-fit: cover;
max-width: 100%;
height: 160px;  
}

.cover-news-sm{
object-fit: cover;
max-width: 50px;
height: 50px;   
}

/* Employee List */
.select-this.media-group-item{
 border-left: 4px solid #188ae2;  
 padding-left: 12px; 
}

img.img-flag-option {
width: 20px;
}

.btn-totop {
font-size: 2rem;
background-color: #37b0d4; 
display: inline-block;
height: 35px;
padding: 0px 5px;
line-height: 35px;
border-radius: 5px 0 0 0;
position: fixed;
bottom: 0;
right: 0;
z-index: 9999;
color: #ffffff;
cursor: pointer;
}

.btn-totop:hover {
background-color: #059bcd;
-webkit-transition: all .3s ease-in-out; 
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}

.form-control.CheckPasswd{
border-bottom-color: red;
}

.CheckBox1{
box-shadow: rgb(24, 138, 226) 0px 0px 0px 11px inset; 
border-color: rgb(24, 138, 226); 
background-color: rgb(24, 138, 226); 
transition: border 0.4s, box-shadow 0.4s, background-color 1.2000000000000002s; 
-webkit-transition: border 0.4s, box-shadow 0.4s, background-color 1.2000000000000002s;
}
.CheckBox0{
box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset; 
border-color: rgb(223, 223, 223); 
background-color: rgb(255, 255, 255); 
transition: border 0.4s, box-shadow 0.4s; 
-webkit-transition: border 0.4s, box-shadow 0.4s;
}
.has-valid {
  background-color: #dbffef;
  border-color: #42be64;
}
.has-invalid{
  background-color: #ffdbdb; 
  border-color: #ff5959;  
}

.simple-page-form input {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.simple-page-form input.has-valid {
  background-color: transparent;
  border-color: #42be64; 
}

.simple-page-form input.has-invalid {
  background-color: transparent;
  border-color: #ff5959; 
}

/*-- preview form --*/
.preview{
    border: 1px solid #ccc;
    width: 120px;
    height: 120px;
    padding: 5px;
    margin:auto;
}

.preview>img{
    width: 120px;
}

/*-- SEARCH INPUT  --*/
#navbar-search {
    padding-right: 44px;
}

.result-list {
  background: #fff;
  top: 0;
  box-shadow: none;
  width: 200%;
  border: 0;
  border-top: 1px dotted #dedfe0;
  border-radius: 0 0 2px 2px;
  margin: 0;
  padding: 5px 0;
  font-size: 14px;
  color: #67696c;
}

.result-list li.deactive-row a{
  background-color: #ffc1c1;
}

.result-list li.deactive-row a:hover{
  background-color: #ffc1c1;
  color: #67696c;
}

.result-list .result-list-status {
  font-size: 13px;
  margin-right: 5px;
}
.result-list .result-list-icon {
  font-size: 16px;
  margin-right: 5px;
}

.result-list-row span{
  display: inline-block;
}

.result-list-row span:not(:first-child){
  text-align: left;
}

.result-list-row.has-col-3 span {
  width: 33.33%;
  max-width: 33.33%;
  min-width: 33.33%;
}
.result-list-row.has-col-4 span {
  width: 25%;
  max-width: 25%;
  min-width: 25%;
}
.result-list-row.has-col-1 span {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.dropdown.open .result-list {
  box-shadow: 0 1px 15px rgba(20,23,28,.25);
}

.dropdown-menu.result-list a,
.dropdown-menu.result-list a:active, 
.dropdown-menu.result-list a:visited {
  color:#6a6c6f;
}

.dropdown-menu.result-list > li {
  padding: 0;
}

.dropdown-menu.result-list > li > a {
  padding: 4px 13px;
}

.dropdown-menu.result-list a:hover {
  color:#059bcd;
}

.result-list .header-result-list-color {
  background-color: #ff7805;
  color: #ffffff;
}

.header-result-list-color .header-result-list::before,  
.header-result-list-color .header-result-list::after { 
  background-color: #ffffff;
}

.result-list-row span.header-result-list {
  padding: 5px 13px;  
  font-weight: 700;
}

.header-result-list::before {
  display: inline-block;
  content: '';
  height: 1.5px;
  width: calc(40%);
  background-color: #adadad;
  margin: 4px 5px;
  border-radius: 50% 0 0 50%;
}

.header-result-list::after {
  display: inline-block;
  content: '';
  height: 1.5px;
  width: calc(50%);
  background-color: #adadad;
  margin: 4px 5px;
  border-radius: 0 50% 50% 0;
}
/*-- end SEARCH INPUT --*/

table.result-search {
  width: 100%;
}

table.result-search td {
  padding: 5px 5px;
  vertical-align: baseline;
}

#info_tab  {
    float: right;
}

#info_tab>span{
    line-height: 52px;
    margin-right: 10px;
}

.select2-selection--multiple{
      overflow: hidden !important;
      height: auto !important;
}

/*-- menuoption --*/
.menu-option {
    display:none;
    position: absolute;
    right: 23px;
    margin-top: -47px;
    background-color: #ffffff;
    box-shadow: 0 1px 7px #ccc;
    padding-left: 20px;
    border-radius: 30px;
    right: calc(10% - 50px);
    z-index: 1;
}

.menu-option.open {
  display: block;
}

.menu-option>li{
    display:inline-block; 
    position: relative;     
}

.menu-option>li:last-child {
  border-radius: 100%;
}

.menu-option>li>a {
   display:block;
   color: #000000;
   padding: 14px 10px;  
}

.menu-option>li>a.disabled-opt {
  background-color: #f4f4f4;
  color: #8d8d8d;
  cursor: not-allowed;
}

.menu-option>li:hover {
    background-color: #f5f5f5;  
}

.menu-option .sub-menu-option {
  display: none;
  position: absolute;
  top: 38px;
  left: 20%;
}

.menu-option .sub-menu-option>li:first-child {
  margin-left: 0px;
}

.menu-option .sub-menu-option>li {
  display: inline-block;
  margin-left: 8px;
}
.menu-option .sub-menu-option>li>a{
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #ffffff;
  border-radius: 100%;
  color: #6a6c6f;
  box-shadow: 2px 0px 15px rgba(20,23,28,.25);
}

.sub-menu-option>li>a:hover {
  background-color: #f7f7f7;
}

.menu-option>li:hover .sub-menu-option {
  display: block;
}

.menu-more-vertical>li {
  display: block;
  margin-bottom: 5px;
} 

.menu-more-vertical>li a {
  margin-right: 10px;
}

.menu-more-vertical>li a:last-child {
  margin-right: 0;
}

.btn.btn-small {
  height: 25px;
  padding: 3px 5px;
}

.menu-more-btn-small>li>.btn-menu-more,
.menu-more-btn-small>li>.btn {
  height:  25px;
  padding: 3px 5px;
}
/*-- end menuoption --*/

.header-stream-post .media-left {
    text-align: left;
    width:100%;
}

.checkbox-filters {
display: none;  
}

.checkbox-filters .checkbox {
display:inline-block;
margin-right: 4px;    
}

.m-t-2 {
    margin-top: 2px;
}

.select2-search__field {
width: auto !important;
font-size: 15px !important;
}

.navbar-brand-unfold {
    padding: 0px; 
}

#success_alert,
#danger_alert {
    display: none;
}

.alert-active {
    display: block !important;
}

.loading_section {
    text-align: center;
    margin-bottom: 25%;
    margin-top: 25%;
}

.simple-page-profile-img {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: #ffffff;
}

.avatar-simple {
    display: inline-block;
    position: relative;
    transition: all .5s ease;
}

.avatar-xxl {
   width: 122px;
   height: 122px; 
}

.avatar-simple-img {
   width: 100px; 
   height: 100px; 
}

.avatar-simple-img img {
    height: 100%;
    width: 100%;
}
.avatar-company {
   width: 120px; 
   height: 120px;  
}

#lang-select li{
    list-style-type:none;
}
#lang-select a i {
    font-size: 24px;
}

.media-disable {
    background-color:#ededed !important;
}

.popup-show.in {
  display: block; 
}

.popup-in {
  overflow: hidden;
}

.popup-show {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1030;
  display: none;
  background-color: rgba(0,0,0,0.9);    
}

.popup-head {
  margin-top: 0px;
}
.nav-tabs.nav-full-tabs> li {
    width: 12.5%;
    text-align: center;
}

.nav-tabs-fixed {
    position: absolute;
    background-color:#ffffff;
    top: 0px;
    width: 100%;
    z-index: 1040;
}

.nav-tabs-fliped {
    top: -55px;
    transition: all 0.5s ease;
    -webkit-transition: top 0.5s ease;
       -moz-transition: top 0.5s ease;
         -o-transition: top 0.5s ease;
}

.tab-content {
    padding: 16px;
    overflow-x: auto;
    margin-top: 51px;
    -webkit-transition: margin-top 0.5s ease;
    -moz-transition: margin-top 0.5s ease;
      -o-transition: margin-top 0.5s ease; 
}  
.no-sc {
    overflow-x: inherit; 
}
.tab-content-expand {
   margin-top: 0px;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;   
}
.popup-head {
    margin-bottom: 5px;
}
.popup-head:after,
.nav-tabs-fixed:after {
content: "."; 
visibility: hidden; 
display: block; 
height: 0; 
clear: both;     
}

.data-table {
width:100% !important;    
}

.backdrop-white .backdrop-loading{
position: absolute;
z-index: 1;
left: 30%;
right: 30%;
font-size: 1rem;
text-align: center;
}
.backdrop-white.backdrop-on-block .backdrop-loading {
 position: static;
}
.ui-block .backdrop-loading {
 top: 50%;   
}
.ui-block .post-reply .backdrop-white {
 top: 0;   
}
.backdrop-white {
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    z-index: 1040;
    width: 100%;
    height: 100%;
    left: 0;   
}

.backdrop-white.backdrop-on-block {
    background-color: transparent;
    position: relative;
    z-index: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.group-btn-right {
    text-align: right;
    float: right;
}

.group-btn-left {
    text-align: left;
    float: left;
}

.group-btn-popup {
   text-align: center;
}

.form-intab .form-style {
    height: 28px;
}

.form-style.textarea-post, 
.form-style.form-control  {
    height: 48px;
}

.form-style {
    height: 50px;
    width: 100%;
    max-width: 100%;
    resize: none;
    border-width: 0px;
    border-bottom: 2px solid #eeeeee;
    padding: 1px;
    outline: none;
}

.profile-cover-popup{
    background: #fff;
    padding: 10px 16px;
}

.profile-title-color,
a.profile-title-color:hover {
  color: #6a6c6f;
}

.cover-user-popup{
    display: block;
    width: 218px;
    margin: 0 auto;
    text-align: center;
}

.nav-tabs-horizontal .nav-tabs.nav-tabs-p-md > li > a  {
    padding: 14px 10px;
}

.nav-tabs.nav-tabs-p-md > li > a.nav-tabs-topic-only, 
.nav-tabs.nav-tabs-p-md > li > a.nav-tabs-topic-only:hover {
  border-width: 0;
  font-size: 15px;
}

.bg-white {
    background-color: #ffffff;
}

.more-body {
    display: none;
}

.close-popup {
margin-right: 6px;
margin-top: 6px;
}

.count-comments {
    font-size: inherit;
}

/*Loading process*/
.loading{
	position:relative;
	width:78px;
	height:9px;
  margin: 10px auto;
}

.fountainG{
	position:absolute;
	top:0;
	background-color:rgb(0,0,0);
	width:9px;
	height:9px;
	animation-name:bounce_fountainG;
		-o-animation-name:bounce_fountainG;
		-ms-animation-name:bounce_fountainG;
		-webkit-animation-name:bounce_fountainG;
		-moz-animation-name:bounce_fountainG;
	animation-duration:0.905s;
		-o-animation-duration:0.905s;
		-ms-animation-duration:0.905s;
		-webkit-animation-duration:0.905s;
		-moz-animation-duration:0.905s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
	transform:scale(.3);
		-o-transform:scale(.3);
		-ms-transform:scale(.3);
		-webkit-transform:scale(.3);
		-moz-transform:scale(.3);
	border-radius:6px;
		-o-border-radius:6px;
		-ms-border-radius:6px;
		-webkit-border-radius:6px;
		-moz-border-radius:6px;
}

#fountainG_1{
	left:0;
	animation-delay:0.366s;
		-o-animation-delay:0.366s;
		-ms-animation-delay:0.366s;
		-webkit-animation-delay:0.366s;
		-moz-animation-delay:0.366s;
}

#fountainG_2{
	left:10px;
	animation-delay:0.4525s;
		-o-animation-delay:0.4525s;
		-ms-animation-delay:0.4525s;
		-webkit-animation-delay:0.4525s;
		-moz-animation-delay:0.4525s;
}

#fountainG_3{
	left:19px;
	animation-delay:0.549s;
		-o-animation-delay:0.549s;
		-ms-animation-delay:0.549s;
		-webkit-animation-delay:0.549s;
		-moz-animation-delay:0.549s;
}

#fountainG_4{
	left:29px;
	animation-delay:0.6355s;
		-o-animation-delay:0.6355s;
		-ms-animation-delay:0.6355s;
		-webkit-animation-delay:0.6355s;
		-moz-animation-delay:0.6355s;
}

@keyframes bounce_fountainG{
	0%{
	transform:scale(1);
		background-color:rgb(66,66,66);
	}

	100%{
	transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-o-keyframes bounce_fountainG{
	0%{
	-o-transform:scale(1);
		background-color:rgb(66,66,66);
	}

	100%{
	-o-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-ms-keyframes bounce_fountainG{
	0%{
	-ms-transform:scale(1);
		background-color:rgb(66,66,66);
	}

	100%{
	-ms-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-webkit-keyframes bounce_fountainG{
	0%{
	-webkit-transform:scale(1);
		background-color:rgb(66,66,66);
	}

	100%{
	-webkit-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-moz-keyframes bounce_fountainG{
	0%{
	-moz-transform:scale(1);
		background-color:rgb(66,66,66);
	}

	100%{
	-moz-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@media print {
    .no-print {
       display:none; 
    }
    .print-me {
        display:block;
    }
    
    @page {                
     size: A4;
     margin: 0mm;
    }

    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
      float: left;
    }
    .col-sm-12 {
      width: 100%;
    }
    .col-sm-11 {
      width: 91.66666666666666%;
    }
    .col-sm-10 {
      width: 83.33333333333334%;
    }
    .col-sm-9 {
      width: 75%;
    }
    .col-sm-8 {
      width: 66.66666666666666%;
    }
    .col-sm-7 {
      width: 58.333333333333336%;
    }
    .col-sm-6 {
      width: 50%;
    }
    .col-sm-5 {
      width: 41.66666666666667%;
    }
    .col-sm-4 {
      width: 33.33333333333333%;
    }
     .col-sm-3 {
       width: 25%;
    }
     .col-sm-2 {
       width: 16.666666666666664%;
    }
    .col-sm-1 {
      width: 8.333333333333332%;
    }

    .order-invoice-table thead th,
    .order-invoice-table thead th:last-child  {
      border-right: 1px solid #d6d6d6 !important; 
      border-top: 1px solid #d6d6d6 !important; 
      border-bottom: 1px solid #d6d6d6 !important; 
    }

    .order-invoice-table thead th:first-child {
      border-left: 1px solid #d6d6d6 !important;
    }

    .doc-type {
      border: 1px solid #000000;
      border-radius: 5px;
    }
    .doc-num-page {
      right: 0px !important;
      top: 0px !important;
    }
    .doc-intro-verti .doc-logo img {
      width: 100% !important;
      max-width: 98px !important;
    }
}

.content-popup{
    border-left: 1px solid #C7C7C8;
}
#filters_jobp label,
#filters_jobm label {
    font-size: 12px;
}
.valign-top {
    vertical-align:top;
}
.valign-bottom {
    vertical-align:bottom;
}
.na-span-addon {
    position: absolute;
    top: 44px;
    left: 59px;
}
.input-group-addon {
   min-width: 150px;
   text-align: right;
}
/*===== STA LIST =====*/
.sta-list li.sta-item span.round-tab{
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #e0e0e0;
    z-index: 2;
    position: relative;
    left: 0;
    text-align: center;
    font-size: 20px;
}
.sta-list li.sta-item {
    padding: 0px 0px 5px 0px;
}

.sta-list li.sta-item:last-child {
    padding-bottom: 0px;
}
.sta-list li.sta-item {
    padding: 5px 0px;
}
.u-statistics-job,
.o-statistics-job {
    position: fixed;
    right: -202px;
    width: 200px;
    height: auto;
    z-index: 1055;
    background: #fff;
    transition: right .5s ease 0s;
    -webkit-box-shadow: 0 0 2px #aaa;
    box-shadow: 0 0 2px #aaa;
}
.u-statistics-job.open,
.o-statistics-job.open{
    right: 0px;
}
.u-statistics-job .post__author img 
.o-statistics-job .post__author img {
    margin-right: 5px;
}
#profile_detail_popup tr>td:first-child {
    text-align: right;
    padding-right: 5px;
}
/*===== UI BLOCK =====*/
.ui-block {
background-color: #fff;
border: 1px solid;
border-color: #e5e6e9 #e9ebee #e9ebee;
border-radius: 5px;
position:relative;
}
.ui-block .post{
    border-bottom-width: 0px;
}
@media (max-width: 860px) {
  .ui-block.responsive-flex .w-search {
    width: auto; } }
    .ui-block {
      margin-bottom: 18px;  
    }
@media (max-width: 640px) {
  .ui-block.responsive-flex .ui-block-title {
    display: flex;
    flex-direction: column; } }

@media (max-width: 480px) {
  .ui-block-content.display-flex.content-around {
    flex-direction: column; } }

@media (max-width: 320px) {
  .ui-block-title .btn + .btn {
    margin-left: 0;
    margin-top: 15px; } }


.ui-block .btn {
  color: #fff;
  margin-bottom: 15px;
  position: relative; }
.tag-ui-post {
    font-size: 14px;
    color: #ffffff !important;
    display: inline-block;
    background-color: #29671d;
    border-radius: 5px;
    padding: 4px 5px 2px 5px;
    margin-bottom: 10px;
    position:absolute;
    z-index:3;
    top: -15px;
    left: 4px;
}    
.tag-ui-post:hover {
   color: #ffffff;
   background-color: #23511a;
}
.tag-ui-post.tag-ui-post-dark {
   background-color: #1576c2;
}  
 
.tag-ui-post.tag-ui-post-dark:hover {
   background-color: #436282;
}  

.tag-ui-post.tag-ui-post-serv {
  background-color: #ee5a04;
}  
.tag-ui-post.tag-ui-post-serv:hover {
  background-color: #c14700;
} 

.tag-ui-post.tag-ui-post-serv-note {
  background-color: #0e699e;
}  
.tag-ui-post.tag-ui-post-serv-note:hover {
  background-color: #08466a;
} 

button:hover {
  cursor: pointer; }

.btn-control {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 54px;
  padding: 0;
  font-size: 20px;
  fill: #fff; }
  .btn-control:hover {
    opacity: 1; }
  .btn-control > i {
    font-size: 20px; }
    .with-icon-bottom .btn-control {
    width: 30px;
    height: 30px;
    line-height: 39px;
    font-size: 10px;
    margin-right: 10px;
    }
    .with-icon-bottom .btn-control:last-child {
    margin-right: 5px;
    }  
    .with-icon-bottom .btn-control i {
    font-size: 18px;
    }
.control-block-button {
  position: absolute; }
  .control-block-button .btn-control {
    margin-right: 20px;
    margin-bottom: 0;
    fill: #fff; }
    .control-block-button .btn-control:last-child {
      margin-right: 6px; }

.btn-secondary:hover {
  background-color: #ff5e3a;
  opacity: 1; }
  .btn-light-bg:hover {
    color: #515365; }
  .btn-light-bg:focus {
    color: #515365; }
  .icon-add:after {
    content: '\f067';
    display: block;
    position: absolute;
    right: -4px;
    top: -4px;
    color: inherit;
    font-size: 7px;
    font-family: 'FontAwesome'; }
  .icon-minus:after {
    content: '\f068';
    display: block;
    position: absolute;
    right: -4px;
    top: -4px;
    color: inherit;
    font-size: 7px;
    font-family: 'FontAwesome'; }
  .accept-request:hover, .accept-request:focus {
    color: #fff;
    fill: #fff;
    opacity: .9; }

textarea {
  min-height: 132px; }

input, .form-control {
  color: #515365;
  line-height: inherit;
  font-size: .875rem; }

.label-floating.has-success:after {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  font-size: 9px;
  background-color: #08ddc1;
  color: #fff;
  text-align: center;
  right: 20px;
  top: 50%;
  margin-top: -10px; }

.has-success .form-control-success,
.has-danger .form-control-danger {
  background-image: none; }

.form-group.with-icon-right .form-control, .form-group.with-icon-right input, .form-group.with-icon-right textarea {
  padding-right: 60px; }
.form-group.with-icon-bottom .form-control, .form-group.with-icon-bottom input, .form-group.with-icon-bottom textarea {
  padding-bottom: 30px; }

.label-floating .form-control, .label-floating input, .label-floating select {
  padding: 1.3rem 1.1rem .4rem;
  line-height: 1.8; }

.label-floating.with-icon .form-control, .label-floating.with-icon input, .label-floating.with-icon textarea {
  padding-left: 70px; }

.label-floating.has-danger:after {
  content: '\f00d';
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 100%;
  background-color: #f92552;
  color: #fff;
  font-size: 9px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  font-family: FontAwesome; }

.label-floating.with-icon label.control-label,
.label-placeholder.with-icon label.control-label {
  left: 70px; }

.togglebutton, .togglebutton label, .togglebutton input, .togglebutton .toggle {
  user-select: none; }

.togglebutton label {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.26); }

.form-group.is-focused .togglebutton label:hover, .form-group.is-focused .togglebutton label:focus {
  color: rgba(0, 0, 0, 0.54); }

fieldset[disabled] .form-group.is-focused .togglebutton label {
  color: rgba(0, 0, 0, 0.26); }

.togglebutton label .toggle:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 26px;
  background-color: #FFFFFF;
  border-radius: 20px;
  position: relative;
  left: 3px;
  top: 3px;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease;
  text-align: center; }

@keyframes rippleOn {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

@keyframes rippleOff {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

@keyframes rippleOn {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

@keyframes rippleOff {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }
    .fixed-sidebar .search-friend svg:hover {
      fill: #ff5e3a; }
  .fixed-sidebar .ps > .ps__scrollbar-y-rail, .fixed-sidebar .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0;
    z-index: -1;
    visibility: hidden; }
  .sidebar--large .olympus-chat svg, .sidebar--large .olympus-chat i {
    float: right; }
  .logo:hover {
    color: #fff; }
    .left-menu a:hover {
      color: #515365; }
      .left-menu a:hover svg {
        fill: #ff5e3a; }
    .chat-users .more:hover .more-icons {
      visibility: visible;
      opacity: 1;
      right: 100%; }
    .more-icons li:hover {
      fill: #9a9fbf; }


@media (max-width: 768px) {
  .fixed-sidebar.right {
    display: none; }
  .fixed-sidebar.right.fixed-sidebar-responsive {
    top: 0;
    z-index: 30;
    min-height: 70px;
    height: 70px; }
  .fixed-sidebar-right {
    position: relative;
    bottom: auto;
    box-shadow: none;
    padding-bottom: 70px;
    border-left: none; }
  .fixed-sidebar .mCustomScrollbar {
    max-height: calc(100vh - 70px); } }

@keyframes skills-animated {
  0% {
    width: 0; } }

@keyframes skills-animated-opacity {
  100% {
    opacity: 1; } }

.friend-since > *:first-child {
  font-size: 11px; }

.more-dropdown {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  width: 180px;
  
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1);
  background-color: #fff;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  text-align: left;
  padding: 15px 20px;
  z-index: 5; }
  .more-dropdown a {
    padding: 7px 0;
    font-size: 12px;
    color: #515365;
    display: block;
    font-weight: 700; }
    .more-dropdown a:hover {
      color: #ff5e3a; }

.more:hover .more-dropdown,
.wizard-more:hover .more-dropdown {
  visibility: visible;
  opacity: 1; }
.wizard-more .more-dropdown  {
    padding: 10px 15px;
}
.wizard  .nav-tabs .wizard-more li a {
    display: inline;
    height:auto;
    padding: 7px 0;
    margin: 0px;
}
.more {
  cursor: pointer;
  position: relative;
  transition: all .3s ease;
  color: #888da8;
  fill: #c0c4d8; }

.more-with-triangle:before {
  position: absolute;
  display: inline-block;
  content: '';
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #fff;
  right: 25px; }

.more-with-triangle.triangle-bottom-right:before {
  top: auto;
  bottom: -7px;
  right: 15px;
  border-bottom: none;
  border-top: 7px solid #fff; }

.more-with-triangle.triangle-top-center:before {
  margin-right: -3px;
  right: 50%; }

.more-with-triangle.triangle-top-left:before {
  right: auto;
  left: 15px; }

@media (max-width: 640px) {
  .create-group .content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin: 30px auto; } }

.btn-next, .btn-prev, .btn-next-without, .btn-prev-without {
  position: absolute;
  cursor: pointer;
  width: 10px;
  height: 18px;
  display: block;
  z-index: 10;
  transition: all .2s ease-in;
  fill: #fff;
  stroke: inherit;
  top: 50%;
  transform: translate(0, -50%); }

.btn-next, .btn-next-without {
  right: 40px; }

.btn-prev, .btn-prev-without {
  left: 40px; }

@media (max-width: 1080px) {
  .slider-slides {
    display: none; } }
  .landing-content > *:first-child {
    font-weight: 300; }
  .landing-content > *:last-child {
    margin-bottom: 0; }
  .landing-item:hover .overlay {
    opacity: 1; }
  .landing-item:hover .btn {
    opacity: 1; }

@media (max-width: 800px) {
  .img-rocket {
    right: 5px; } }

@media (max-width: 420px) {
  .img-rocket {
    bottom: 60px; } }
  .or:after {
    content: 'OR';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 25px;
    font-size: 10px;
    z-index: 5; }

@media (max-width: 1023px) {
  .registration-login-form {
    padding-top: 71px;
    padding-left: 0; }
  .registration-login-form .nav-tabs {
    bottom: auto;
    height: auto;
    width: 100%; }
  .registration-login-form .nav-item {
    height: 100%;
    display: block;
    width: 50%;
    float: left;
    text-align: center; }
  .registration-login-form .nav-link {
    display: block; }
  .registration-login-form .nav-item:last-child .nav-link {
    border-bottom: 1px solid #e6ecf5; } }

@keyframes sideupscroll {
  0% {
    transform: translate3D(0%, 0%, 0); }
  50% {
    transform: translate3D(-50%, 0, 0); }
  100% {
    transform: translate3D(-100%, 0, 0); } }

.bg-account:before {
  background-image: url("../img/top-header3.png"); }

.bg-birthday:before {
  background-image: url("../img/top-header6.png"); }

.bg-badges:before {
  background-image: url("../img/top-header4.png"); }

.bg-events:before {
  background-image: url("../img/top-header5.png"); }

.bg-weather:before {
  background-image: url("../img/top-header6.png"); }

.bg-group:before {
  background-image: url("../img/bg-group.png"); }

.bg-music:before {
  background-image: url("../img/top-header7.png"); }

.bg-landing:before {
  background-image: url("../img/landing-bg.jpg"); }
  .main-header-content > *:first-child {
    font-weight: 300;
    margin-bottom: 20px; }

@media (max-width: 768px) {
  .main-header {
    max-width: 100%; } }
  .items-round-little:hover {
    color: #fff; }
    .your-profile-menu li a:hover {
      color: #515365; }

@media (max-width: 768px) {
  .profile-settings-responsive {
    visibility: visible;
    opacity: 1; } }
  .notification-list .selectize-dropdown-content > *, .notification-list li {
    padding: 25px;
    border-bottom: 1px solid #e6ecf5;
    display: block;
    position: relative;
    transition: all .3s ease; }
    .notification-list .selectize-dropdown-content > * > *, .notification-list li > * {
      margin-bottom: 0;
      display: inline-block;
      vertical-align: middle; }
    .notification-list .selectize-dropdown-content > *:hover, .notification-list li:hover {
      background-color: #fafbfd; }
      .notification-list .selectize-dropdown-content > *:hover .more, .notification-list li:hover .more {
        opacity: 1; }
    .notification-list .selectize-dropdown-content > *.un-read, .notification-list li.un-read {
      background-color: #f7f9fc; }
      .notification-list .selectize-dropdown-content > *.un-read .notification-icon, .notification-list li.un-read .notification-icon {
        color: #9da2c1;
        fill: #9da2c1; }
  .notification-list .selectize-dropdown-content > * {
    cursor: pointer; }
    .notification-list .selectize-dropdown-content > *:last-child {
      border-bottom: none; }
  .chat-field .ps > .ps__scrollbar-y-rail, .chat-field .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0;
    z-index: -1;
    visibility: hidden; }
  .chat-message-field li:hover {
    background-color: transparent; }
.add-options-message {
  padding: 20px 25px;
  float: left;
  width: 100%; }
  .add-options-message .options-message {
    color: #c2c5d9;
    fill: #c2c5d9;
    position: relative;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle; }

.smile-block:hover .more-dropdown {
  opacity: 1;
  visibility: visible; }

.smile-block li:hover a {
  opacity: 1; }
    @media (max-width: 999px) {
      .birthday-item.badges .skills-item {
        float: none; } }

@media (max-width: 480px) {
  .add-options-message .options-message + .options-message {
    margin-left: 15px; }
  .add-options-message button {
    float: none;
    margin-left: 0;
    display: block;
    margin-top: 10px; }
  .add-options-message button + button {
    margin-right: 0; }
  .notification-list .notification-event {
    max-width: 75%; } }

@media (max-width: 420px) {
  .birthday-item.badges .author-thumb {
    margin-right: 0;
    margin-bottom: 15px;
    display: block; }
  .birthday-item .btn {
    float: none;
    margin-top: 15px;
    display: block; } }

@media (max-width: 360px) {
  .notification-list .notification-event {
    max-width: 60%; }
  .chat-message-field .notification-date {
    float: none;
    margin-top: 5px; }
  .chat-message-field .notification-friend {
    float: none; } }
  .popup-chat .ps > .ps__scrollbar-y-rail, .popup-chat .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0;
    z-index: -1;
    visibility: hidden; }
    .popup-chat .chat-message-field li:nth-child(2n) .chat-message-item {
      background-color: #7c5ac2;
      color: #fff; }
    .popup-chat .chat-message-field li:nth-child(2n) .author-thumb {
      float: right; }
    .popup-chat .chat-message-field li:nth-child(2n) .chat-message-item {
      float: right; }
    .popup-chat .chat-message-field li:nth-child(2n) .notification-event {
      float: right;
      padding-left: 0;
      padding-right: 10px; }
    .popup-chat textarea:focus {
      min-height: 100px; }

@media (max-width: 768px) {
  .popup-chat-responsive {
    opacity: 1;
    visibility: visible;
    display: block; } }


body {
  overflow-x: hidden; }
  body:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(43, 45, 59, 0.9);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -999; }
  body.overlay-enable:before {
    opacity: .8;
    z-index: 500; }
  .icon-close:hover {
    color: #ff5e3a;
    fill: #ff5e3a; }
  .upload-photo-item h6, .upload-photo-item .h6 {
    margin-bottom: 0; }
  .upload-photo-item:hover {
    fill: #ff5e3a;
    background-color: #fafbfd; }
    figcaption a:hover {
      color: #ff5e3a; }
  .blog-post-popup .ps > .ps__scrollbar-y-rail, .blog-post-popup .ps:hover > .ps__scrollbar-y-rail {
    display: none; }
  .open-photo-popup .ps > .ps__scrollbar-y-rail, .open-photo-popup .ps:hover > .ps__scrollbar-y-rail {
    display: none; }
    .open-photo-thumb .photo-item:hover .tag-friends {
      opacity: 1; }
  .create-friend-group .icon:hover {
    fill: #ff5e3a; }
  .create-event .icon:hover {
    fill: #ff5e3a; }
    .create-event .bootstrap-select.style-2 > .dropdown-toggle:after {
      display: none; }
  .event-private-public .ps > .ps__scrollbar-y-rail, .event-private-public .ps:hover > .ps__scrollbar-y-rail {
    display: none; }
  .private-event-head .more-dropdown a:hover {
    color: #08ddc1; }

@media (max-width: 1080px) {
  .icon-close {
    right: 50%;
    margin-right: -9px; }
  .open-photo-popup-v2 {
    display: block; }
  .open-photo-popup-v2 .open-photo-thumb {
    width: 100%;
    float: none; }
  .open-photo-popup-v2 .open-photo-content {
    width: 100%;
    float: none; }
  .create-friend-group .dropdown-menu {
    bottom: auto;
    left: 0;
    top: 100%; }
  .create-friend-group .bootstrap-select.style-2 > .dropdown-toggle {
    padding-right: 2.5rem; }
  .create-event .bootstrap-select.style-2 .dropdown-menu {
    top: 100%;
    bottom: auto;
    left: 0; } }

@media (max-width: 1024px) {
  .playlist-popup {
    display: none; } }

@media (max-width: 768px) {
  .icon-close {
    right: 50%;
    margin-right: -9px; }
  .choose-from-my-photo .nav-tabs .nav-link {
    height: 100%;
    display: flex; }
  .choose-from-my-photo .nav-tabs .nav-link svg {
    margin: auto; }
  .create-photo-album .btn + .btn {
    margin-left: 0;
    float: none; }
  .create-photo-album .btn {
    width: 100%;
    margin: 10px 0; }
  .choose-from-my-photo .btn {
    width: 45%; }
  .blog-post-popup .post p {
    padding: 0; } }

@media (max-width: 480px) {
  .choose-photo-item {
    width: 50%; }
  .private-event-head .more {
    float: none; }
  .upload-photo-item {
    padding: 10px; }
  .choose-from-my-photo .btn {
    width: 100%; }
  .upload-photo-item svg {
    margin-bottom: 10px; }
  .remember a {
    float: none;
    display: block; }
  .choose-from-my-photo .btn {
    margin-bottom: 10px; }
  .choose-from-my-photo .btn + .btn {
    margin-left: 0; }
  .choose-photo-item {
    padding: 0 5px 5px 0; } }

@media (max-width: 360px) {
  .choose-photo-item {
    width: 100%; }
  .private-event-head .more {
    float: none;
    display: block; }
  .private-event-head img {
    display: block;
    margin-right: 0;
    margin-bottom: 15px; } }
  .w-personal-info a:hover {
    color: #ff5e3a; }
  .social-item:hover {
    color: #fff;
    opacity: .9; }
    .socials li a:hover {
      color: #ff5e3a; }
  
.post__date span{
  font-size: 13px;
}
.post__img {
width: 40px;
height: 40px;
}
  .w-playlist li:hover {
    background-color: #fafbfd; }
    .w-playlist li:hover .overlay {
      opacity: 1; }
    .w-playlist li:hover .play-icon {
      opacity: 1; }
    .w-playlist li:hover time {
      opacity: 0; }
    .w-playlist li:hover .more {
      opacity: 1; }
.w-playlist .more-dropdown li:hover {
background-color: #ffffff;
}
  .w-playlist .more-dropdown li:hover a {
    color: #1ed760; }

.w-playlist.without-cover li:hover .play-icon {
  fill: #1ed760; }
  .playlist-popup-table tbody tr:nth-child(odd) {
    background-color: rgba(43, 45, 59, 0.8); }
  .playlist-popup-table tbody tr:nth-child(even) {
    background-color: rgba(43, 45, 59, 0.6); }
  .playlist-popup-table tbody tr:hover .play-icon {
    fill: #fff; }
  .playlist-popup-table .album-composition, .playlist-popup-table .release-year, .playlist-popup-table .composition-time {
    font-weight: 500;
    font-size: 12px;
    color: #fff; }
  .playlist-popup-table .release-year, .playlist-popup-table .composition-time, .playlist-popup-table .released, .playlist-popup-table .duration, .playlist-popup-table .spotify, .playlist-popup-table .remove {
    text-align: center; }
    .playlist-popup-table .remove-icon:hover {
      fill: #ff5e3a; }

.w-friend-pages-added li:hover {
  background-color: transparent; }

@media (max-width: 768px) {
  .w-friend-pages-added.notification-list.friend-requests .notification-icon {
    float: right; } }

@media (max-width: 480px) {
  .page-description {
    display: flex;
    align-items: center; } }
  .w-action img, .w-action i {
    margin-bottom: 15px;
    font-size: 35px; }

.w-activity-feed .notification-event,
.w-activity-feed .notification-friend {
  font-size: 12px; }

.w-activity-feed .notification-event {
  max-width: 85%; }
        .w-wethear .weekly-forecast li > *:last-child {
          margin-bottom: 0; }
    .w-wethear .weekly-forecast:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #fff;
      opacity: .1; }
    .w-wethear > *:last-child {
      margin-bottom: 0; }

@media (max-width: 540px) {
  .day-wethear-item {
    width: 33%; } }

@media (max-width: 480px) {
  .wethear-content {
    margin-top: 100px; } }

@media (max-width: 360px) {
  .day-wethear-item {
    width: 49%; }
  .wethear-content .wethear-now-description > * {
    padding: 0 5px; }
  .main-header-wethear .date-and-place {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin-bottom: 20px; }
  .main-header-wethear .wethear-update {
    position: relative;
    top: auto;
    right: auto;
    text-align: center; }
  .wethear-content {
    margin-top: 20px; } }

@media (max-width: 1400px) {
  .w-wethear .weekly-forecast li {
    padding: 15px 1px; } }
    .w-last-video li:hover .overlay {
      opacity: 1; }
    .w-last-video li:hover .video-content {
      opacity: 1;
      bottom: 12px; }
    .w-last-video li:hover .play-video {
      margin-top: -20px; }
    .w-last-video li:hover:after {
      opacity: 1; }
    .w-last-video li:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: inset 0px -120px 55px -30px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: all .3s ease; }
  .w-list a:hover {
    color: #ff5e3a; }
  .w-featured-topics .title:hover {
    color: #ff5e3a; }


ol li:before {
  position: relative;
  counter-increment: list1;
  
  content: counter(list1) " ";
  
  color: #888da8;
  display: inline-block;
  margin-right: 10px;
  font-size: 10px; }

ol li ul li:before {
  display: none; }

ol ol li:before {
  counter-increment: list2;
  content: counter(list1) "." counter(list2) ". "; }


.post {
  position: relative;
  padding: 10px 25px;
  border-bottom: 1px solid #e6ecf5;
  }
  .post .post__content {
      margin-bottom:0px;
      word-wrap: break-word;
  } 
  .post .post_schedule_job {
      margin-top:0px;
      margin-bottom:5px;
  }
  .post .post_schedule_job span{
    font-size: 15px;
  }
  .post p {
    margin: 15px 0; }
  .post .control-block-button {
    top: 20px;
    right: -17px; }
  .post .btn {
    margin-bottom: 25px; }
  .post h1, .post h2, .post h3, .post h4, .post h5, .post h6, .post .h1, .post .h2, .post .h3, .post .h4, .post .h5, .post .h6 {
    font-weight: 300;
    display: inline-block; }
    .post h1 + p, .post h2 + p, .post h3 + p, .post h4 + p, .post h5 + p, .post h6 + p, .post .h1 + p, .post .h2 + p, .post .h3 + p, .post .h4 + p, .post .h5 + p, .post .h6 + p {
      margin-top: 10px; }
  .post .post__author-name {
    font-weight: 700;
    margin-bottom: 0; } 
  p.post__author-meta{
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 0;
    font-size: 13px;}
  .post .author-date a {
    font-weight: 700; }
  .post-block-photo a, .post-block-photo span {
    float: left;
    overflow: hidden;
    padding: 0 8px 8px 0; }
    .post-block-photo a img, .post-block-photo span img {
      border-radius: 3px;
      width: 100%; }
  .more-photos:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 8px;
    bottom: 8px;
    background-color: #ff5e3a;
    opacity: .8;
    border-radius: 3px; }

.post-thumb {
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  text-align:center;  }
  .post-thumb img {
    /*width: 100%;*/
     width: 150px;
    }

.post__author {
  margin-bottom: 10px;
  }
  .post__author img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 12px; }
  .post__author .more {
    float: right;
    font-size: 16px;
    margin-right: 20px; }
  .post__author .more .more-icon{
    font-size: 24px; }
    
.post-additional-info {
  padding: 10px 0 0;
  border-top: 1px solid #e6ecf5; }
  .post-additional-info > * {
    margin-right: 15px; }
    .post-additional-info > *:last-child {
      margin-right: 0; }
  .post-additional-info .comments-shared {
    float: right;
    margin-top: 0px; }
.post-additional-info:after {
    content: "."; 
    visibility: hidden; 
    display: block; 
    height: 0; 
    clear: both;  
}
.comments-shared > * {
  margin-right: 15px; }
  .comments-shared > *:last-child {
    margin-right: 0; }

.post-add-icon {
  fill: #c2c5d9;
  color: #c2c5d9; }
  .post-add-icon > * {
    vertical-align: middle; }
  .post-add-icon:hover {
    fill: #ff5e3a;
    color: #ff5e3a; }
  .post-add-icon:active, .post-add-icon:focus {
    fill: #c2c5d9;
    color: #c2c5d9; }
.post-control-button .btn-control {
  display: block;
  margin-bottom: 6px;
  margin-right: 5px;
  background-color: #188ae2;
  width: 34px;
  height: 34px;
  line-height: 36px;
  color: #ffffff;  }
  .post-control-button .btn-control svg {
    width: 18px;
    height: 18px; }
  .post-control-button .btn-control .olymp-share-icon {
    width: 24px; }
  .post-control-button .btn-control:hover {
    background-color: #185c90; }
  .post-control-button .btn-control.featured-job-status{
    display: none; }  
    .post-control-button .btn-control.featured-post:hover {
    background-color: #ffc923; } 
    .post-control-button .btn-control.featured-post-success {
    background-color: #72bf8b; }  
    .post-control-button .btn-control.featured-post-success:hover {
    background-color: #5ca373; } 
    .post-control-button .btn-control.featured-post-working {
    background-color: #59ade0; }    
    .post-control-button .btn-control.featured-post-working:hover {
    background-color: #3a789f; }  
    .post-control-button .btn-control.featured-post-waitgetjob {
    background-color: #ffc02d; }   
    .post-control-button .btn-control.featured-post-waitgetjob:hover {
    background-color: #edad17; }    
    .post-control-button .btn-control.featured-post-notassigned {
    background-color: #7c7461; }   
    .post-control-button .btn-control.featured-post-notassigned:hover {
    background-color: #5b5649; }   
    .post-control-button .btn-control.featured-post-priority-low {
    background-color: #ad642b;}   
    .post-control-button .btn-control.featured-post-priority-low:hover {
    background-color: #ab6d3c;}   
    .post-control-button .btn-control.featured-post-priority-meduim {
    background-color: #ff9235; }   
    .post-control-button .btn-control.featured-post-priority-meduim:hover {
    background-color: #ff7805; }  
    .post-control-button .btn-control.featured-post-priority-height {
    background-color: #ce3b3b; }   
    .post-control-button .btn-control.featured-post-priority-height:hover {
    background-color: #d52020; }      
    .btn-control.featured-post-outline {
    background-color: transparent;
    border: 1px solid #ccc;    }   
    .btn-control.featured-post-outline:hover {
    background-color: #fafbfd; }
@media (max-width: 768px) {
  .tag-ui-post {
     width: 100%;
     left: 0;   
     z-index: 0;     
  }
  .post-control-button .btn-control {
    display: inline-block; }
  .post .control-block-button {
    right: 20px;
    top: -13px; }
  .post__author .more {
    margin-right: -16px; } }

@media (max-width: 560px) {
  .post-additional-info .comments-shared {
    float: none; }
  .post-additional-info > * {
    margin-right: 0;
    display: block !important; }
    .post-additional-info > * + * {
      margin-top: 10px; } }


.comments-list {
  margin-bottom: 0;
  position:relative;  }
  .comments-list li { 
    padding: 25px 25px 25px 75px;
    border-bottom: 1px solid #e6ecf5;
    background-color: #fafbfd;
    position: relative; }
  .comments-list li:last-child{
    border-bottom-width: 0px;  
  }
    .comments-list li.has-children {
      padding-bottom: 0; }
  .comments-list .post-add-icon {
    margin-right: 20px; }
  .comments-list .post__author img {
    width: 26px;
    height: 26px; }
  .comments-list .more-dropdown li {
      padding: 0px;
      border-bottom-width: 0px;
      background-color: #ffffff;
  } 
  .comments-list .more-dropdown {
      padding: 10px 15px;
  }

.children {
  border-top: 1px solid #e6ecf5;
  margin: 25px -25px 0;
  padding-left: 35px; }
  .children>li {
    border-left: 1px solid #e6ecf5; }
    .children li:last-child {
      border-bottom: none; }
    .children>li:before {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      top: 40px;
      left: -5px;
      background-color: #fafbfd;
      border-radius: 100%;
      border: 2px solid #c2c5d9;
      z-index: 13; }

.reply {
  font-size: 12px;
  color: #888da8; }

.more-comments {
  cursor:pointer;
  text-align: center;
  padding: 15px 0;
  font-size: 12px;
  color: #515365;
  display: block;
  font-weight: 700;
  margin: 0 auto; }
  .more-comments span {
    transition: all .3s ease; }
  .more-comments:hover {
    color: #515365; }
    .more-comments:hover span {
      color: #ff5e3a; }
.comment-form {
  padding: 10px 25px 10px 38px;
  overflow: hidden;}
  .comment-form .add-options-message {
    position: absolute;
    right: 20px;
    bottom: 5px;
    width: auto;
    padding: 0; } 
   .with-icon-bottom .add-options-message {
    position: absolute;
    right: 5px;
    bottom: 10px;
    width: auto;
    padding: 0; }
  .with-icon-bottom .add-options-message .options-message:hover {
      color: #7e7c7d;
  }
  .comment-form .post__author {
    margin-bottom: 0; }
    .comment-form .post__author img {
      margin-right: 8px;
      width: 28px;
      height: 28px; }
  .comment-form .form-group {
    margin-bottom: 0;
    width: 100%; }
  .comment-form textarea {
    min-height: 45px;
    height: 45px;
    transition: all .3s ease; }
    .comment-form textarea:focus {
      min-height: 100px; }
    
@media (max-width: 480px) {
  .comment-form .form-group {
    width: 80%; } }
      .post-video .video-content .link-site:hover {
        color: #ff5e3a; }

@media (max-width: 480px) {
  .video-thumb {
    float: none; } }
  .video-player:hover .video-content {
    opacity: 1; }
  .video-player:hover .play-video {
    opacity: 1; }
  .video-player:hover .overlay {
    opacity: 1; }
  .video-player:hover:after {
    opacity: 1; }
  .video-player:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px -120px 55px -30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all .3s ease; }

@media (max-width: 480px) {
  .video-player .video-content .title {
    display: none; } }
    .news-feed-form .options-message:hover {
      fill: #9a9fbf; }
    .cat-list__item a:hover {
      color: #fff;
      background-color: #ff5e3a; }
    .photo-gallery .nav-link:hover {
      border-right-color: #e6ecf5;
      border-left-color: #e6ecf5;
      border-top-color: transparent;
      border-bottom-color: transparent; }
  .photo-item:hover .more, .photo-item:hover .content, .photo-item:hover .post-add-icon, .photo-item:hover .overlay {
    opacity: 1; }
    .photo-album-item.create-album .btn-control {
      margin-bottom: 20px;
      float: none; }

@media (max-width: 480px) {
  .photo-item .post-add-icon {
    right: auto;
    bottom: auto;
    left: 25px;
    top: 25px; }
  .photo-album-item.create-album .content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    width: 100%; } }
  .features-video .ps > .ps__scrollbar-y-rail, .features-video .ps:hover > .ps__scrollbar-y-rail {
    display: none; }

.video-item:hover .more, .video-item:hover .play-video, .video-item:hover .overlay {
  opacity: 1; }

@media (max-width: 999px) {
  .features-video {
    display: block; }
    .features-video .video-player {
      width: 100%; }
    .features-video .video-content {
      bottom: 20px;
      transform: translate(-50%, 0); }
  .features-video-content {
    width: 100%; } }

@media (max-width: 480px) {
  .features-video .video-content .title {
    display: block; } }

@media (max-width: 380px) {
  .features-video .video-content .title {
    display: none; } }
  .no-past-events a:hover {
    color: #08ddc1;
    font-weight: 500; }

@media (max-width: 640px) {
  .event-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: calc(100vw - 30px); }
    .event-item .description {
      max-width: 100%; }
  .event-item-table td:last-child {
    padding-right: 12px; }
  .event-item-table td:first-child {
    padding-left: 12px; }
  .event-item-table thead {
    display: none; } }

.today-events .card.checked .event-time:before {
  border-color: #38a9ff; }
  .today-events .event-time:before {
    content: '';
    width: 9px;
    height: 9px;
    border: 2px solid #08ddc1;
    border-radius: 100%;
    display: block;
    position: absolute;
    left: -31px;
    top: 5px;
    background-color: #fff; }

.today-events .event-time {
  margin-bottom: 10px; }
  .today-events.calendar .card:before {
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #e6ecf5;
    position: absolute;
    left: 25px;
    top: 0; }
  .today-events.calendar .card:last-child:before {
    height: 25px; }
      .today-events.calendar .card-header .more-dropdown a:hover {
        color: #08ddc1; }

@media (max-width: 420px) {
  .calendar-events-tabs .nav-item + .nav-item {
    margin-left: 10px; } }

@media (max-width: 320px) {
  .calendar-events-tabs .nav-item {
    display: block; }
  .calendar-events-tabs .nav-item + .nav-item {
    margin-left: 0;
    margin-top: 10px; } }

@media (max-width: 1200px) {

  .world-statistics-img {
    max-width: 50%;
    display: inline-block;
    vertical-align: middle; }
  .country-statistics {
    vertical-align: middle;
    display: inline-block;
    float: none; } }

@media (max-width: 1080px) {
  .text-stat .count-stat {
    font-size: 16px; }
  .statistics-list-count.style-2 li:first-child {
    margin-left: 20px; }
  .statistics-list-count.style-2 li:last-child {
    margin-right: 20px; } }

@media (max-width: 380px) {
  .world-statistics-img {
    max-width: 100%;
    margin-bottom: 20px; }
  .country-statistics {
    text-align: left; } }
    .forums-table .count:hover {
      color: #ff5e3a; }

.forum-item .title:hover {
  color: #ff5e3a; }
  .author-freshness .title:hover {
    color: #ff5e3a; }
    .sub-forums a:hover {
      color: #ff5e3a; }


@media (max-width: 560px) {
  .forum-item {
    text-align: center; }
    .forum-item img {
      float: none;
      margin-right: 0;
      margin-bottom: 15px; }
  .forums-table thead th,
  .forums-table td {
    padding: 5px; } }
    .open-topic-table .author-name:hover {
      color: #ff5e3a; }

  

@media (max-width: 640px) {
  .open-topic-table thead th,
  .open-topic-table td {
    padding: 5px; }
  .open-topic-table .author-thumb img {
    width: 40px;
    height: 40px; } }

.inline-items > * {
  display: inline-block;
  vertical-align: middle; }
  @media (max-width: 640px) {
    .table-cell {
      display: block;
      float: left; } }

@media (max-width: 480px) {
  .centered-on-mobile {
    text-align: center; } }

.flip-icon svg:last-of-type, .flip-button.active .flip-icon svg:first-of-type {
  opacity: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg); }

.users-harmonic {
  margin-bottom: 0;
  overflow: hidden; }
  .users-harmonic a {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #fff;
    display: block;
    margin-left: -12px; }
 .users-harmonic a.harmonic-success {
    border-color: red; 
 }
 .users-harmonic a.harmonic-getjob {
    border-color: red;  
 }
  .users-harmonic li {
    float: left; } 
  .users-harmonic li img{
    vertical-align: baseline; }
    .users-harmonic li:first-child a {
      margin-left: 0; }
 .read-more {
    cursor: pointer; 
    font-size: 12px;
    text-decoration: underline;
 }  

.names-user-more{
  font-size: 12px;}
  .names-user-more a {
    font-size: 12px;
    color: #515365;
    font-weight: 700; }  
 .names-user-more p {
    font-size: 12px;
    margin-top:5px;
    margin-bottom:0px;} 
  .names-user-more span {
    font-size: 12px;} 
  .names-user-more  {
    font-size: 12px;
    margin-top:0px;
    margin-bottom:0px;}
 .names-user-more span:first-child {
    font-size: 12px;
    font-weight: 700;
 }

.btn-circle {
    border-radius: 100%;
    font-size: 15px;
    background-color: #ffffff;
    line-height: 28px;
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
}
.btn-circle.btn-circle-default {
   color: #c2c5d9;
   border: 1px solid #ccc;
   background-color: #ffffff;
}
.btn-circle.btn-circle-default:hover {
   background-color: #fafbfd;
   color: #858688;
}
.btn-circle.btn-circle-primary {
    color: #ffffff;
    border-width: 0px;
    background-color: #188ae2;
}
.btn-circle.btn-circle-primary:hover{
    background-color: #185c90;
}

.count-all-remain {
    font-size: 12px;
}
.more-c-btn:after {
    font-family: FontAwesome;
    content: "\f054";
    padding: 8px;
}
.less-c-btn:after  {
    font-family: FontAwesome;
    content: "\f053";
    padding-right: 3px;
}
.post-file {
  position:relative;
  border: 1px solid #e6ecf5;
  border-radius: 3px;
  overflow: hidden;
  margin: 20px 0; }
  .post-file .file-content {
    display: inline-block;
    padding: 5px 10px;
    overflow: hidden; 
    line-height: 1;
    }
   .post-file:hover {
       background-color: #fafbfd;
   }
     .post-file .file-content .title {
      display: block; 
      color: #515365;
      }
    .post-file .file-content .file-size {
      font-size: 10px;
      color: #9a9fbf; }
    .file-thumb {
      position: relative;
      float: left; 
      color: #515365; 
      font-size: 23px;
      padding: 5px 0px 5px 5px;}
   .file-option-right {
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 27px;
   }

.w-file-list li .post-file{
    margin: 5px 0px;
}
.w-file-list li:first-child .post-file{
    margin-top: 20px;
}
.w-file-list li:last-child .post-file{
    margin-bottom: 20px;
}
.w-file-list.w-list-m-0 li:first-child  .post-file{
     margin-top: 0px;
} 
.w-file-list.w-list-m-0 li:last-child  .post-file{
     margin-bottom: 0px;
} 
#jobp-img-list.w-file-list .post-file,
#jobp-doc-list.w-file-list .post-file,
#jobm-img-list.w-file-list .post-file,
#jobm-doc-list.w-file-list .post-file,
#notep-img-list.w-file-list .post-file,
#notep-doc-list.w-file-list .post-file,
#notem-img-list.w-file-list .post-file,
#notem-doc-list.w-file-list .post-file {
   margin: 0px; 
   margin-bottom: 3px;
}

#jobp-img-list.w-file-list li:last-child,
#jobp-doc-list.w-file-list li:last-child,
#jobm-img-list.w-file-list li:last-child,
#jobm-doc-list.w-file-list li:last-child,
#notep-img-list.w-file-list li:last-child,
#notep-doc-list.w-file-list li:last-child,
#notem-img-list.w-file-list .post-file,
#notem-doc-list.w-file-list .post-file {
    margin-top: 0px;
    margin-bottom: 6px;
}

.ui-block .w-file-list li  {
   display: inline-block;
   margin-right: 5px;
}
.ui-block  .w-file-list li .post-file {
   margin: 0px 0px 5px 0px;
}
.ui-block .w-file-list li:last-child .post-file{
   margin-right:20px;
   margin-bottom:5px;
}  
.ui-block .w-file-list li{
   vertical-align: middle;
}
.ui-block .author-date {
    min-width:215px;
    max-width:215px;
}
.ui-block .list-docs,
.ui-block .list-imgs,
.ui-block .list-files{
    margin-bottom: 10px;
}
.w-sublist li:hover {
    background-color: #fafbfd;
}
.w-sublist li:last-child {
    padding-bottom: 15px;
}
.w-sublist li:first-child {
    padding-top: 15px;
}
.w-sublist li {
    padding: 13px 10px;
    transition: all .3s ease;
    cursor: pointer;
}
.w-sublist li > * {
    display: inline-block;
    vertical-align: middle;
}
.w-sublist .more-dropdown li {
    padding: 0;
}
.w-sublist .more-dropdown li:hover {
    background-color: #ffffff;
}
.w-sublist .more-dropdown li:hover a {
color: #ff5e3a; 
}
.w-sublist .more-dropdown {
    padding: 5px 10px;
    
}
.sublist-box {
    position: relative;
}
.sublist-thumb {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 12px;
}
.sublist-more {
cursor: pointer;
position: relative;
transition: all .3s ease;
color: #888da8;
fill: #c0c4d8;
}
.w-sublist .sublist-box .sublist-more {
    float:right;
} 
.sublist-more:hover .more-dropdown {
  visibility: visible;
  opacity: 1; 
}
.composition .sublist-composition-name {
display: block;
font-size: 12px;
font-weight: 500;
color: #515365;    
}
.composition .sublist-composition-meta {
display: block;
font-size: 11px;
color: #888da8; 
margin: 0px;  
}
.composition .sublist-composition-meta span {
font-weight: bold;
font-size: 11px;
}  


.post-thumb  .post-thumb-more {
    position: absolute;
    bottom: 10px;
    right:10px;
    margin: 0px;
    min-width: 130px;
}
.post-thumb  .block-post {
    margin-bottom: 0px;
}
.post-thumb  .block-post .post-thumb-more {
    position:static;
    margin-top: 15px;
}
.post-thumb  .post-thumb-more span{
   font-size: 14px;
} 
.comments-list .post-thumb{
    text-align: center;
    margin-bottom: 10px;
}
.comments-list .post-thumb img{
    width: 25%;
}
.more-dp-box  {
display: inline-block;
margin-bottom: 10px;
}
.more-dp-box p{
    margin: 0px;
}
p.more-meta-comp {
    font-size: 12px;
    line-height: 0.6;
}
.more-meta-comp  span {
    font-size: 12px;
    margin: 0px;
}
.more-dp-box:last-child {
margin-bottom: 0px;
}
.more-dp-box .more-thumb img{
    width: 25px; 
    height: 25px; 
}
.wizard  .nav-tabs .wizard-more .more-dp-box .more-comp a {
    display: inline-block;
    max-width: 70px;
    width: 70px;
}
.wizard-more .more-dropdown {
    width: 330px;
    line-height: 0;
}
.more-dp-box .more-thumb,
.more-dp-box .more-comp{
    float:left; 
}

a.get-jobp,
a.success-jobp,
a.cancel-jobp{
    text-decoration: underline;
    font-size: 11px;
    line-height: 24px;  
}
a.sc-cancel-jobp {
    text-decoration: underline;
    font-size: 11px;
    line-height: 24px; 
    padding-left: 40px !important;    
}
.wizard  .nav-tabs .wizard-more li .more-right>a {
  margin-right: 5px;  
}
.wizard  .nav-tabs .wizard-more li .more-right>a:last-child {
  margin-right: 0px;    
}
.more-dp-box .more-comp  {
    word-break: break-all;
    max-width: 185px;
    width: 185px;
    line-height: 25px;
    font-size: 14px;
}
.more-dp-box .more-right {
    float:right;
}
.wizard  .nav-tabs .wizard-more li.more-dp-box .more-right a {
    padding: 0px;
}
.more-thumb {
    position: relative;
    width: 25px;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 12px;
}
.post-reply li {
    padding: 0px;
    border-bottom-width: 0px;
    background-color:#ffffff;
}
.post-reply li .post-file:first-child{
    margin: 0px;
}
.post-reply li .post-file:last-child{
    margin: 0px;
}
/*------ UPLOAD FILE INPUT --------*/
.input-file {
cursor: pointer;
width: 100%;
padding: 5px 10px;
text-align:center;
font-size: 18px;
}
.input-file i {
 padding-right: 5px;
}
.input-file:hover {
background-color: #fafbfd;
}
.preview-files {
display: block;
}

.btn.comment-btn{
margin-top: 5px;
margin-bottom: 0px;
min-width: 70px;
}
.preview-files ul>li{
margin: 5px 0px 5px 35px;
}
/*------- Progress Bar ---------*/

.wizard {
/*margin: 20px auto;*/
margin: 0px;
background: #fff;
}
.wizard .nav-tabs {
    position: relative;
    /*margin: 40px auto;*/
    margin: 0px;
    border-bottom-color: #e0e0e0;
    border-bottom-width: 0px;
}
.wizard-badge {
    display: inline-block;
    position: absolute;
    right:0;
    bottom:0; 
    min-width: 20px;
    padding: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #fb4227;
    border-radius: 100%;
}
span.round-tab .wizard-badge {
    right: -7px;
    bottom: -5px; 
}
.wizard > div.wizard-inner {
    position: relative;
}
.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 30%;
    z-index: 1;
}
.connecting-line-process {
    height: 2px;
    background: #188ae2;
    position: absolute;
    width: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 30%;
    z-index: 2;
}
.connecting-line-process.clp_1 {
    width: 25%;
    right: 50%;
}
.connecting-line-process.clp_2 {
    width: 50%;
    right: 30%;
}
.connecting-line-process.clp_3 {
    width: 75%;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 40px;
    height: 40px;
    line-height: 42px;
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: relative;
    left: 0;
    text-align: center;
    font-size: 25px;
}

span.round-tab i{
  color:#555555;
}

.wizard-inner .nav-tabs{
  text-align: center;
}
.wizard-label {
  font-size:12px;
}

/* Sub round */
.sub-round-tab {
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 25px;
}

.sub-round-tab li {
    width: 40px;
    height: 40px;
    line-height: 32px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    background: #fff;
    color: #ffffff;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: relative;
    left: 0;
    text-align: center;
    float: left;
    margin-right: -10px;
}

.wizard li ul.sub-round-tab li.sub-round-badge {
  padding: 4px;
  background-color: #fb4227;
  border-width: 0;
  margin-left: -4px;
  color: #ffffff;
  border-width: 0;
  font-size: 11px;
  top: 15px;
  width: 25px;
  height: 25px;
  line-height: 18px;
}

/* active process */
.wizard li.w-active span.round-tab,
.wizard li.w-active .sub-round-tab li {
    background: #fff;
    border-color: #188ae2;  
}
.wizard li.w-active span.round-tab i,
.wizard li.w-active .wizard-label{
    color: #188ae2;
}
/* done process */
.wizard li.w-done span.round-tab i,
.wizard li.w-done .wizard-label {
    color: #188ae2;
}
.wizard li.w-done span.round-tab,
.wizard li.w-done .sub-round-tab li {
    background: #fff;
    border-color: #188ae2;  
}
/* success process */
.wizard li.w-success span.round-tab i,
.wizard li.w-success .wizard-label  {
    color: #72bf8b;
}
.wizard li.w-success span.round-tab,
.wizard li.w-success .sub-round-tab li {
    background: #fff;
    border-color: #72bf8b;  
}
.wizard li.w-active .wizard-label,
.wizard li.w-success .wizard-label {
    font-weight: 700;
}
span.round-tab:hover {
    color: #cec7c7;
    border-color: #cec7c7;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard .nav-tabs > li a {
    width: 40px;
    height: 40px;
    margin: 0px auto 2px auto;
    border-radius: 100%;
    padding: 0;
}

.wizard .nav-tabs > li a:hover {
    background: transparent;
}

.wizard .tab-pane {
    position: relative;
    padding-top: 50px;
}

.wizard h3 {
    margin-top: 0;
}

/*== PROGRESS BAR TIME JOB ==*/
.progress-time {
    position: relative;
    margin: 0px 0px 10px 0px;
    height: 60px;
}

.progress-bar-thick {
    height: 20px;
    background: #aec0ce;
    position: absolute;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    margin-top: -20px;
    border-radius: 5px;
}

.progress-bar-thick-in-active{
    height: 20px;
    background: #188ae2;
    position: absolute;
    width: 0;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 2;
    margin-top: -10px;
    border-radius: 5px;
}
.progress-bar-label {
    z-index: 3;
    position: absolute;
    color: #ffffff;
    text-align: center;
    max-width: 100%;
    width: 100%;
}
.progress-bar-label span {
    font-size: 14px;
}
.line-vertical {
    height: 20px;
    border-left: 3px solid #fb4227;
}
.line-vertical-success{
    border-color: #00783b;
}
.progress-bar-thick .line-vertical {
    z-index: 2;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}
.progress-bar-half {
   background-color: #fb4227;
}    
.progress-bar-to-end {
   background-color: #e71d00;
}
.progress-bar-success {
   background-color: #10c469;
}
.detail-date {
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: 16px;
}
.detail-date:before,
.detail-date:after {
    content: "."; 
    visibility: hidden; 
    display: block; 
    height: 0; 
    clear: both;  
}
.detail-date .start-date ,
.detail-date .end-date,
.detail-date .start-date span,
.detail-date .end-date span{
    font-size: 14px; 
}
.detail-date .start-date ,
.detail-date .end-date {
    font-weight: 700;
}
.detail-date .start-date .sdp,
.detail-date .end-date .edp{
    font-weight: 400;
}
.detail-date .start-date {
    float: left;
    padding-right:5px;
} 
.detail-date .end-date {
    float: right;
}

/*=== ANIMATE ===*/
@-webkit-keyframes bounceInC {
  0%, 100% { -webkit-transform: scale(1, 1); }
  50% { -webkit-transform: scale(0.9,0.9); }
}
@-moz-keyframes bounceInC {
  0%, 100% { -moz-transform: scale(1, 1); }
  50% { -moz-transform: scale(0.9,0.9); }
}
@-o-keyframes bounceInC {
  0%, 100% { -o-transform: scale(1, 1); }
  50% { -o-transform: scale(0.9,0.9); }
}
@keyframes bounceInC {
  0%, 100% { transform: scale(1, 1); }
  50% { transform: scale(0.9,0.9); }
}
.ani {
   z-index: 2;
   animation-duration: 0.5s; 
   animation-timing-function: ease-in-out; 
   animation-delay: 0.8s;   
   animation-iteration-count: 1; 
   -webkit-animation-duration: 1s; 
   -webkit-animation-timing-function: ease-in-out; 
   -webkit-animation-delay: 0.8s;   
   -webkit-animation-iteration-count: 1; 
   -moz-animation-duration: 1s; 
   -moz-animation-timing-function: ease-in-out; 
   -moz-animation-delay: 0.8s;   
   -moz-animation-iteration-count: 1; 
   -o-animation-duration: 1s;
   -o-animation-timing-function: ease-in-out; 
   -o-animation-delay: 0.8s;
   -o-animation-iteration-count: 1; 
}
.ani.infinite {
   animation-iteration-count: infinite; 
   -webkit-animation-iteration-count: infinite; 
   -moz-animation-iteration-count: infinite; 
   -o-animation-iteration-count: infinite; 
}
.ani.bounceInC {
     animation-name: bounceInC;
     animation-timing-function: ease-out;   
     -webkit-animation-name: bounceInC;
     -webkit-animation-timing-function: ease-out;    
     -moz-animation-name: bounceInC;
     -moz-animation-timing-function: ease-out;     
     -o-animation-name: bounceInC;
     -o-animation-timing-function: ease-out;
}  

/*== SELECT2 CUSTOM ==*/
.select2-container--default .select2-selection--multiple {
    border: solid #dddddd 1px !important;  
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #cccccc 1px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fafafa !important; 
    border: 1px solid #a0a0a0 !important;   
}
/*== POPUP ==*/
.profile-popup {
    position: relative;
    left:0;
    overflow-y: auto;
    transition: left 0.4s ease;
}
.popup-fold {
    left: -103%;
    transition: left 0.5s ease;
    -webkit-transition: left 0.5s ease;
       -moz-transition: left 0.5s ease;
         -o-transition: left 0.5s ease;
}
.profile-popup-over {
    position: absolute;
    z-index: 10000;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
}
.nav-tabs-horizontal .nav-tabs.nav-tabs-p-md > li.mp_tab > a {
    padding: 10px 20px 0px 20px;  
}

.mp_tab .avatar,
.mp_tab .avatar {
   margin-right: 0px;
} 
.nav-tabs > li.mp_tab > a:hover,
.nav-tabs > li.mp_tab > a:focus {
border-bottom: 1px solid transparent; }

.group-btn-mprofile {
    text-align: right;
    margin-top: 24px;
    margin-right: 16px;
}

.submit-bottom-popup {
   width: 100%;
}

#addNotePopupForm .submit-bottom-popup ,
#addNoteMenuForm .submit-bottom-popup, 
#addNoteNPopupForm .submit-bottom-popup {
   width: 100%;
}

.nav-tabs-wrap {
    position:relative;
}
li.mp_tab .member_name {
    position: relative;
    top: -11px;
    margin-left: 6px;
}

/*== MEDIA ==*/
@media (min-width: 1200px) { 
    .process-status {
     max-width: 65%;
     width: 65%;
    }
    .submit-bottom-popup {
      width: 66%;
    }
}
@media (max-width: 1200px) { 

    #group_btn_mprofile {
      text-align: left;
      margin-left: 16px;
      margin-right: 0px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) { 
     .process-status { 
         max-width: 60%;
         width: 60%;
         transition: 0.1s ease-in-out;
     }
    .submit-bottom-popup {
      width: 66%;
    }
}
@media (max-width: 992px) { 
    .nav-tabs-fixed {
        top: -51px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
 .process-status { 
     max-width: 55%;
     width: 55%;
     transition: 0.1s ease-in-out;
 }
 .wizard-inner  .nav > li {
    position: static;
}
}
@media( max-width : 767px ) { 
    .control-block-button .btn-control:last-child {
      margin-right: 0px; }
    .connecting-line,
    .connecting-line-process {
        top: 48%;
    }
    .wizard-label {
        display:none;
    }
    .wizard li span.round-tab {
        border-width: 1.5px;
        transition: 0.1s ease-in-out;
    }
    .process-status { 
         /*width: 50%;*/
         display: block;
         transition: 0.1s ease-in-out;
    }
    .wizard-more .more-dropdown {
        right: 0;
        width: 305px;
    }
    .more-dp-box .more-comp {
        max-width: 160px;
        width: 160px;
    }
    .wizard-inner  .nav > li {
        position: static;
    }
    .comments-section {
        padding: 10px 25px;
    }
    .comments-list li {
        padding: 25px; 
    }
    .progress-bar-thick {
        width: 100%;
        margin: 0;
        top:0;
    }
    .progress-time {
        height: 44px;
    }
}

@media( max-width : 585px ) {
    span.round-tab {
        font-size: 16px;
        width: 28px;
        height: 28px;
        line-height: 28px;
        transition: 0.1s ease-in-out;
    }
   
    .wizard .nav-tabs > li a {
        width: 28px;
        height: 28px;
        line-height: 28px;
        transition: 0.1s ease-in-out;
    }
    .more-dp-box .more-comp {
        max-width: 120px;
        width: 120px;
    }
    .wizard-more .more-dropdown {
        right: 0;
        width: 260px;
    }

}

@media (max-width: 500px) {
  .post-control-button .btn-control.featured-job-status{
     display: inline-block;
  }
  .detail-date .end-date {
        float: left;
        display:block;
  }
  .progress-time {
       height: 60px;
  }
}

/*=== PREVIEW SYMBOL ===*/
.preview-symbol .preview-symbol-box .post-control-button{
   display: inline-block;
}
.preview-symbol-box .btn-control > i {
   font-size: 30px; 
}
.preview-symbol-box .post-control-button .btn-control {
    width: 50px;
    height: 50px;
    line-height: 55px;
    margin: 10px;
}
.preview-symbol .preview-symbol-box {
   text-align: center;
}
/*=== DEATAIL CLASS ON MODAL ===*/
.dt-control {
  display: block;
  margin: 0 0 5px; }

.dt-group.dt-inline > .dt-control > * {
  display: inline-block; }

.dt-group.dt-inline .dt-label {
  margin-right: 5px;
  vertical-align: top; }

.dt-label {
  font-weight: 700;
  display: block; }

.dt-meta {
  font-size: 14px; }

.dt-content {
  display: block; }
  
/*=== CALENDAR EVENTS ===*/

.fc-body.fc-pointer-body {
  cursor: pointer;
}

/*=== Scrollable ===*/

.table.scrollable-container {
  position: relative;
  max-height: calc(100% - 57px) !important; }

.pr-list .scrollable-container,
.more-list-user.scrollable-container,
.list-file-popup-wrapper .scrollable-container {
  position: relative;
  max-height: 120px;
}

.result-list.scrollable-container {
  max-height: 210px;
}

.table-scroll-popup.scrollable-container  {
  position: relative;
  max-height: 150px;
}

.u-statistics-job .scrollable-container ,
.o-statistics-job .scrollable-container {
  position: relative;
  max-height: 190px;
}

.scrollable-210.scrollable-container {
  position: relative;
  max-height: 210px;
}

.scrollable-240.scrollable-container {
  position: relative;
  max-height: 240px;
}

.profile-popup .scrollable-container{
  position: relative;
  max-height: calc(100vh - 20px); 
}
/*=== Tags INput ===*/

.bootstrap-tagsinput .tag {
  font-size: 12px;
  vertical-align: inherit;
}

.bootstrap-tagsinput.has-valid {
  background-color: #dbffef;
  border-color: #42be64;
}

.bootstrap-tagsinput.has-invalid {
  background-color: #ffdbdb;
  border-color: #ff5959;
}
/*=== THEME ===*/

.btn-primary {
  color: #fff;
  background-color: #059bcd;
  border-color: #059bcd; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #068ab6;
    border-color: #068ab6; }
  .btn-primary:hover {
    color: #fff;
    background-color: #0794bb;
    border-color: #0794bb; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0581aa;
    border-color: #0581aa; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #0581aa;
      border-color: #0581aa; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #0581aa;
    border-color: #0581aa; }

.bg-primary, .primary {
  background-color: #059bcd;
  color: #fff; }

body.simple-page {
  background-color: #059bcd; }


.navbar-toolbar .media-wrapper .avatar {
  width: 40px;
  height: 40px;
  margin-right: 6px;
}

  .navbar-toolbar .media-wrapper .media {
    padding-top: 10px;
  }

  .navbar-toolbar .media-wrapper .media-body {
    width: 150px;
  }

  .navbar-toolbar .media-wrapper a {
    padding: 0;
  } 

  .navbar-toolbar .media-wrapper .media-body a,
  .navbar-toolbar .media-wrapper .media-body small {
    color: #ffffff;
  }

  .navbar-toolbar > .media-wrapper.open > a ,
  .nav .media-wrapper .media-body .open a{
    background-color: transparent;
    border-width: 0;
  }

  .navbar-toolbar .media-wrapper .media-body h5 {
    margin-top: 5px;
    margin-bottom: 2px;
  }

  .navbar-toolbar > li.media-wrapper >  a:hover {
    background-color: transparent;
  }

  .navbar-toolbar > li.media-wrapper > .dropdown-menu > li > a {
    padding: 15px 16px;
  }

  .navbar-brand.navbar-brand-style {
    padding: 6px;
  }
  @media (min-width: 768px) {
    body.menubar-fold .media-wrapper .foldable {
      visibility: visible;
      display: block;
    }
  }

  @media (max-width: 767px) {
    .navbar-brand.navbar-brand-style {
      left: 60%;
      transform: translateX(-60%);
    }
  }

.navbar-brand.navbar-brand-style,
.navbar-brand.navbar-brand-style:hover {
  background-color: #059bcd;
}

  .navbar-brand-style .brand-logo {
    width: 150px;
    margin: auto;
  }

  .menubar-fold .navbar-brand-style .brand-logo {
    width: 28px;
  }

.media-comp .media-comp-title{
  color: #6a6c6f;
  font-weight: 700;
  margin-bottom: 2px;
}
  .media-comp .media-comp-meta {
    color: #6a6c6f;
    font-weight: 500;
    font-size: 12px;
  }

  
/*==== Edit (Can remove it when fix menu news later) ====*/ 

.simple-page-wrap .widget {
  border-radius: 5px;
}

.comments .post-group-main .dropdown-media{
  top: 0;
  width: 100%;
  left: 0;
}

.comments .post-group-main .dropdown-media .media-group-item {
  padding: 4px 13px;
}

.cover-user {
  width: 140px;
}

/*==== PAGE A4 ====*/

.page-a4 {
  position: relative;
  font-family: sans-serif, 'Helvetica Neue', Arial, 'Liberation Sans';
  /*height: 1012px;*/
  width: 725px;
  margin:10px auto;
  background-color: #ffffff;
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.3);
  page-break-after: always; }

.doc-container {
  position: relative;
  padding: 30px 25px;
  color: #000000;
  height: 100%;
  max-height: 100%;
  font-size: 12px; }
  .doc-container table {
    width: 100%; }
  .doc-container  table td {
    max-width: 100%;
    word-wrap: break-word;
  }
  .doc-container hr {
    margin: 0; }

.doc-intro-verti {
  margin-bottom: 2px; }
.doc-intro-verti .doc-logo ,
.doc-intro-verti .doc-title {
  display: inline-block; }
  .doc-intro-verti .doc-logo img {
    width: 100%;
    max-width: 98px; }
  .doc-intro-verti .doc-title {
    vertical-align: middle;
    font-size: 18px;
    font-weight: 500;
  }
   .doc-type-title {
     text-align: center;
     color: #ffffff; }
   .doc-type {
     border-radius: 5px;
     background-color: #24aa6d;
     padding: 15px; 
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 10px; }
.doc-num-page {
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 12px;
}
.doc-text {
  padding: 10px 10px 10px 0; }
  .doc-text.doc-bar-code {
    padding-top: 37px; }
.doc-v-top {
vertical-align: top; }

.doc-label {
  font-weight: 700; }
.doc-label span {
  font-weight: normal; }
.doc-label-sm {
  font-size: 11px;
  font-weight: 700; }
.doc-dot-sig {
  margin-top: 30px; }
.doc-sig-meta {
  margin-top: 9px;
  font-size: 10px;
}

.order-invoice-table p {
  margin-bottom: 0;
}

.order-invoice-table thead{
  background-color: #d6d6d6;
  color: #000000; }

.order-invoice-table thead th ,
.order-invoice-table tbody td {
  padding: 5px;
  vertical-align: top; }

.order-invoice-table thead th {
  border-right: 1px solid #ffffff;
  font-size: 13px; }

.order-invoice-table thead th:last-child {
  border-width: 0; }

.order-invoice-table tbody td {
  border-right: 1px solid #d6d6d6;
  font-size: 11.5px; }

.order-invoice-table tbody td:first-child {
  border-left: 1px solid #d6d6d6; }

.order-invoice-total {
  vertical-align: top;
}

.order-invoice-total td {
  border-top: 2px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.order-invoice-grand-total td {
  border-bottom: 2px solid #d6d6d6;
}

.page-a4 .js-print {
  position: absolute;
  right: 25px;
  bottom: 10px;
  margin: 0; }
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  .print-me {
    display: block;
  }

  .js-print {
    display: none;
  }
  @page {                
    size: A4;
    margin: 0mm;
   }
}

/*=== A4 SLIP ===*/

img.doc-slip-logo {
  width: 100px;
}

.doc-slip-header {
  text-align: center;
}

hr.doc-slip-devider {
  width: 170px;
  height: 2px;
  margin: 8px auto;
  background-color: #919191;
  border-radius: 50%;
}

.doc-slip-header .doc-slip-compname{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.doc-slip-header,
.doc-slip-content {
  margin-bottom: 10px;
}

.doc-slip-detail p
.doc-slip-header-detail > p {
  margin-bottom: 0;
}

table.doc-slip-table thead th{
  border-radius: 8px 8px 0 0;
}

table.doc-slip-table tbody tr:last-child td {
  border-radius: 0 0 8px 8px;
}

table.doc-slip-table tbody tr:nth-child(1) td:first-child {
  border-radius: 8px 0 0 0;
}

table.doc-slip-table tbody tr:nth-child(6) td:first-child {
  border-radius: 0 0 0 8px;
}

table.doc-slip-table td, 
table.doc-slip-table th {
  background-color: #fafafa;
  border-bottom: 1px solid #dbdbdb;
}

table.doc-slip-table thead tr th,
table.doc-slip-table tbody tr td {
  border-right: 2px solid #ffffff;
}

table.doc-slip-table thead tr th:last-child,
table.doc-slip-table tbody tr td:last-child {
  border-right-width: 0;
}

table.doc-slip-table tbody tr td:nth-child(2),
table.doc-slip-table thead tr th:nth-child(2) {
  background-color: #e1f8ff;
}
table.doc-slip-table tbody tr td:nth-child(3),
table.doc-slip-table thead tr th:nth-child(3) {
  background-color: #caeeff;
}
table.doc-slip-table tbody tr td:nth-child(4),
table.doc-slip-table thead tr th:nth-child(4) {
  background-color: #c3eafc;
}

table.doc-slip-table thead th:first-child ,
table.doc-slip-table tbody tr:last-child td ,
table.doc-slip-table tbody tr:nth-child(6) td {
  border-bottom-width: 0;
}


table.doc-slip-table thead tr > th,
table.doc-slip-table tbody tr > td:not(:first-child) {
  text-align: center;
}
table.doc-slip-table th {
  padding: 8px 20px;
  height: 70px;
  font-size: 20px;
}
table.doc-slip-table td {
  padding: 8px 20px;
  height: 60px;
}

tr.doc-slip-table-footer td{
  padding: 8px 20px;
  height: 55px;
  font-size: 15px;
  font-weight: 700;
}

table.doc-slip-footer-table {
  width: 100%;
  text-align: center;
}

table.doc-slip-footer-table tr td {
  padding-top: 70px;
  width: 50%;
  vertical-align: top;
}

table.doc-slip-footer-table tr td > p{
  margin-bottom: 5px;
}

.doc-slip-ps {
  font-size: 12px;
  color: #f00;
  margin-top: 10px;
}

.doc-slip-ps .btn {
  bottom: 40px;
}


/*== PRELOADER ==*/

.loading-body {
  overflow: hidden;
}
.preloader-fs {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.preloader-fs .lds-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.preloader-fs .lds-loader .lds-hero{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 65px;
  color: #e8e8e8;
}

.lds-loader .lds-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  min-width: 200px;
}

.preloader-fs .lds-loader .lds-ripple {
  width: 150px !important;
  height: 150px !important;
  -webkit-transform: translate(-75px, -75px) scale(0.75) translate(75px, 75px);
  transform: translate(-75px, -75px) scale(0.75) translate(75px, 75px);
}

/* riple style preloader */

@keyframes lds-ripple {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 18px;
    width: 156px;
    height: 156px;
    opacity: 0;
  }
}
@-webkit-keyframes lds-ripple {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 18px;
    width: 156px;
    height: 156px;
    opacity: 0;
  }
}
.lds-loader,
.lds-ripple {
  position: relative;
}
.lds-ripple div {
  box-sizing: content-box;
  position: absolute;
  border-width: 10px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(1) {
  border-color: #93dbe9;
}
.lds-ripple div:nth-child(2) {
  border-color: #689cc5;
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
.lds-ripple {
  width: 100px !important;
  height: 100px !important;
  -webkit-transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
  transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
}


