/*------------------------------------------------------------------
[Master Stylesheet]

Project:    Sarah Admin - Bootstrap Admin Template .
Version:    1.0
Last change:    03/10/17
Autor:          Ravi Jaiswal
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
01. Navigation
02. Aside
03. Body
04. Navbar
05. Theme-setting
06. Header
07. Container
09. Social
10. Components
11. Panel
12. Tab
13. Table
14. Form
15. Blog
16. Timeline
17. Inbox
18. Gallery
19. Pricing
20. Wrapper
21. Movie Slider
22. Lockscreen
23. Events
-------------------------------------------------------------------*/

/*Countdown*/
.countdown-container {
    background-color: #f3f3f2;
    display: flex;
    border: 1px solid #ccc;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.countdown-title {
    font-weight: bold;
    text-align: center;
    font-size: 25px;
    padding: 15px;
    color: black;
    line-height: 1.5;
    font-family: system-ui;
}
.countdown-subtitle{
    color:#d12020;
    font-size: 20px;
}
#countdown {
    display: flex;
    flex-direction: row;
}
.timepart {
    width: 125px;
    height: 120px;
    background-color: #d12020;
    color: white;
    border-radius: 5px;
    box-shadow: 3px 8px 15px rgb(118 118 118 / 44%);
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Cambia esto a flex-end si quieres que el contenido se alinee al final del espacio */
    align-items: center;
    text-align: center;
}
#days, #hours, #minutes {
    font-size: 60px;
    font-weight: bold;
}
.countdown-day-label{
    font-weight: bold;
    font-size: 22px;
}

/*SCREEN COUNTDOWN*/

.screen-countdown-container {
    background-color: #f3f3f2;
    display: flex;
    border: 1px solid #ccc;
    align-items: center;
    justify-content: center;
}

#sc-days,
#sc-hours,
#sc-minutes {
  font-size: 140px;
  font-weight: bold;
}

.gradient-background {
  border-radius: 6px;
  background: linear-gradient(to right, #f29e28, #ed8d2e, #127935, #18599c);
  opacity: 1;
  margin-bottom: 5px;
  font-size: 55px;
  padding: 0px 10px;
}

.screen-countdown-message {
  font-weight: bold;
  font-size: 3.5em;
  color: rgb(198, 31, 49);
  text-align: center;
  font-family: system-ui;
}

.logo-top-right {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
}

.logo-top-right img {
  width: 300px;
  height: auto;
}

.screen-countdown-container {
  background-image: url("https://rowevirtual.com/img/rowe-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content-wrapper-countdown {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  text-align: center;
}

.content-wrapper-countdown > *:not(:last-child) {
  margin-bottom: 30px;
}

.image-container img {
  width: 500px;
  margin-bottom: 30px;
  max-width: 100%;
  height: auto;
}

.screen-countdown-title .gradient-background {
  background: linear-gradient(90deg, #f56e4b, #f5be5a);
  padding: 15px 30px;
  font-size: 65px;
  font-weight: bold;
  color: #1d1d1d;
  border-radius: 12px;
  display: inline-block;
}

.screen-countdown-title {
  font-weight: bold;
  text-align: center;
  font-size: 43px;
  padding: 15px;
  color: black;
  line-height: 1.5;
  font-family: system-ui;
  margin-top: 125px;
}

.screen-countdown-subtitle {
  background-color: rgba(29, 29, 29, 0.79); 
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 44px;
  font-weight: 500;
  display: inline-block;
}

#screen-countdown {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.screen-timepart {
  background-color: rgba(29, 29, 29, 0.79); 
  padding: 0px 44px !important;
  border-radius: 12px !important;
  color: white !important;
  min-width: 120px !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3) !important;
  text-align: center !important;
  width: 210px;
  height: 210px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.screen-timepart span {
  font-size: 48px;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

.screen-countdown-day-label {
  margin-top: 0px;
  font-size: 28px;
  color: #ddd;
}

.countdown-pulse {
  animation: pulse 1.2s infinite;
}

/* Media Query for mobile devices */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .title {
        font-size: 0.6em;
    }
    .timepart {
        width: 80px;
        height: 80px;
    }
    #days, #hours, #minutes {
        font-size: 30px;
    }
    .countdown-day-label{
        font-weight: bold;
        font-size: 18px;
    }
}

/* Media Query for 1366x768 devices */
@media (max-width: 1366px) {
    .countdown-container {
        display: block;
    }
    .countdown-title {
        font-size: 20px;
        padding: 10px;
    }
    .timepart {
        width: 100px;
        height: 100px;
    }
    #days, #hours, #minutes {
        font-size: 50px;
    }
    .countdown-subtitle{
        color:#d12020;
        font-size: 18px;
    }
    .countdown-day-label{
        font-weight: bold;
        font-size: 20px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .countdown-pulse {
    animation: pulse 1s linear infinite;
  }  


/*Gritter*/
.gritter-info .gritter-title {
    color: #6bafbd
}

.gritter-success .gritter-title {
    color: #65cea7
}

.gritter-warning .gritter-title {
    color: #f3ce85
}

.gritter-danger .gritter-title {
    color: #fc8675
}

.gritter-center{
    position:fixed;
	top: 22% !important;
	right:20px;
	width:301px;
	z-index:9999;
}

/*Menu Radio*/
  .btn-radio {
    cursor: pointer;
    display: inline-block;
    -webkit-user-select: none;
    user-select: none;
  }
  .btn-radio:not(:first-child) {
    margin-left: 20px;
  }
  .btn-radio svg {
    fill: none;
    vertical-align: middle;
  }
  .btn-radio svg circle {
    stroke-width: 2;
    stroke: #C8CCD4;
  }
  .btn-radio svg path {
    stroke: #37749c;
  }
  .btn-radio svg path.inner {
    stroke-width: 6;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
  }
  .btn-radio svg path.outer {
    stroke-width: 2;
    stroke-dasharray: 57;
    stroke-dashoffset: 57;
  }
  .btn-radio input {
    display: none;
  }
  .btn-radio input:checked + svg path {
    transition: all 0.4s ease;
  }
  .btn-radio input:checked + svg path.inner {
    stroke-dashoffset: 38;
    transition-delay: 0.3s;
  }
  .btn-radio input:checked + svg path.outer {
    stroke-dashoffset: 0;
  }
  .btn-radio span {
    display: inline-block;
    vertical-align: middle;
  }
  .btn-radio input:disabled {
    cursor: not-allowed;
  }
  svg:disabled {
    cursor: not-allowed;
  }
  .loading-user {    
    background-image: url("../img/loading-little.gif");
    background-position:left center;
    background-repeat: no-repeat;
  }
  .sima-header{
    font-weight: bold;
    color: black;
    font-size: 23px;
  }
  .sima-body{
    font-weight: bold;
    color: black;
    font-size: 20px;
  }
  .sima-footer span{
    font-size: 14px;
    color:black;
    font-weight: bold;  
  }
  .sima-footer strong{
    font-size: 24px;
    color:black;
  }  
  
/*
  START: Raffle
*/
.gradient-border {
  --borderWidth: 5px;
  background: #fff;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border::before {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-2 * var(--borderWidth));
  height: calc(0% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: 1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

.gradient-border::after {
  content: '';
  position: absolute;
  /*top: calc(-1 * var(--borderWidth));*/
  left: calc(-2 * var(--borderWidth));
  height: calc(0% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: 1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.blinking{
  animation:blinkingText 1.8s ease alternate infinite;
}

@keyframes blinkingText{
  0%{   color: #000;    }
  49%{  color: #CC3333; }
  50%{  color: transparent; }
  99%{  color: #34a279; }
  100%{ color: #5B4BDB; }
}

.winner-box{
  text-align: center; 
  min-height: 255px; 
  padding: 25px 0px 25px 0px; 
  margin-top: 20px;
}

.winner-box > h1
{
  font-weight: bold; 
  font-family: Georgia, serif; 
  color:black; 
  font-size: 68px;
}

.raffle-btn {
  background-color: #F27935;
}
.raffle-btn .round {
  background-color: #f59965;
}

 a.raffle-btn {
  text-decoration: none;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  padding: 12px 76px 12px 23px;
  color: #fff;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: bold;
  position: relative;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
a.raffle-btn span {
  position: relative;
  z-index: 3;
}
a.raffle-btn .round {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 9px;
  top: 9px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 2;
}
a.raffle-btn .round i {
  position: absolute;
  top: 25%;
  margin-top: -6px;
  left: 25%;
  margin-left: -2px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.txt {
  font-size: 36px;
  line-height: 1.45;
  padding-left: 10px;
}

.type-1 a:hover {
  padding-left: 48px;
  padding-right: 28px;
  color:white;
}
.type-1 a:hover .round {
  width: calc(100% - 18px);
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.type-1 a:hover .round i {
  left: 3%;
}

/*
  END: Raffle
*/

aside .main-menu>ul>li.active .menu-hover,aside .main-menu>ul>li.display .menu-hover {
    opacity: 1
}

.panel-overview:after,.panel-tab:after,.tab-bar:after,.tab-left:after,.tab-right:after,.wizard-steps:after {
    clear: both
}

/*----------------------
  00. Food menu Css here
----------------------*/
.foode-item-box ul li {
    display: inline-block;
}
.foode-item-box ul li a:hover {
  background: inherit;
}
.foode-item-box {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  height: 140px;
  position: relative;
  text-align: center;
}
.foode-item-box:before {
  background: url(images/food/bg-1.png)no-repeat scroll left center;
  left: 0;
}
.foode-item-box:before,.foode-item-box:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  pointer-events: none;
}
.foode-item-box:after {
  background: url(images/food/bg-2.png)no-repeat scroll right center;
  right: 0;
}
.foode-item-box ul li {
  display: inline-block;
}
.foode-item-box ul li a {
  color: #535353;
  display: block;
  font-weight: 600;
  padding: 59px 15px;
  text-transform: uppercase;
}
.foode-item-box ul li.active a {
  color: #e54c2a;
}
.foode-item-box ul li.active a:focus{background: none}
.food-img {
  float: left;
  margin: 12px 0;
  text-align: center;
  width: 20%;
}
.single-food-item-desc {
  border-left: 1px solid #acb9c5;
  float: left;
  padding: 23px 50px 23px 20px;
  position: relative;
  width: 80%;
}
.single-food-button {
  position: absolute;
  right: 50px;
  top: 40%;
}
.fooder-menu-description.float_left .single-food-item {
  padding-right: 70px;
  padding-bottom: 5px;
}
.single-food-inner {
  background-color: #e2e2e285;
  border-radius: 5px;
  border: 1px solid #f1f1f1;
  overflow: hidden;
}
.fooder-menu-description.float_right .single-food-item {
  padding-left: 70px;
  padding-bottom: 5px;
}
.single-food-item-title h2 {
  color: #535353;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2px;
  text-transform: capitalize;
}
.single-food-item-title p {
  color: #535353;
  margin: 0;
}
.single-food-button > p {
  color: #e54c2a;
  font-size: 24px;
  font-weight: 600;
}
.option-components{
  font-size: 12px !important;
  margin-left: 23px;
  color: #cc3333;
  font-weight: 100;
}

/*--00. Fixes--*/

.olympics span {
    font-weight: bold;
    font-size: 32px;
}

.fix-small
{
  font-size: 88% !important;
}

.division
{
  display: block;
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: auto;
  -webkit-margin-end: auto;
  border-style: inset;
  border-width: 1px;
  width:100%;
}

.hide_row
{
 display:none !important;
}

.show_row
{
display:table-row;
}

.modal-body {
    position: relative;
    padding: 15px;
    overflow: auto;
}

.current-vac-category{
    background-color: #f5f055c7 !important;
    font-weight: bold;
}

.table-rank>tbody>tr{
  background-color: #f9f9f9;
}

.background-rowe{
  background-color: #CC3333 !important;
  color: #fff
}

.background-perlav{
    background-color: #65CEA7 !important;
    color: #fff
}

.background-garbis{
   background-color: #5B4BDB !important;
   color: #fff
}

.parsley-required,.parsley-type,.parsley-min,.parsley-range, .parsley-custom-error-message, .parsley-maxcheck
{
  color: #CC3333;
  list-style:none;
}

#unlock-message-container *
{
  margin-top:3px;
  color: #ECECEC; 
  list-style:none;
}

@media screen and (max-width: 767px) {
    .btn-fix {
         margin-top:3px;
 }
}

 .order-selection-panel
 {
   background-color: #adb6b952;
   border-radius: 5px;
   border: 1px dashed #a77f7f;
 }
 
 .order-selection-icon
 {
    line-height: 86px;
    font-size: 64px;
    color: #347c25c9;
 }

 .order-selection-description
 {
   color: #1f587b;
   font-size: 14px;
   font-weight: bold;  
 }

/*--00. Animated--*/
.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0.75;}
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
.pulse {
  animation-name: pulse;
  animation-duration: 2s;
}

@keyframes rubberBand {
  0% {transform: scale(1);}
  30% {transform: scaleX(1.25) scaleY(0.75);}
  40% {transform: scaleX(0.75) scaleY(1.25);}
  60% {transform: scaleX(1.15) scaleY(0.85);}
  100% {transform: scale(1);}
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}
.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {transform: rotate(15deg);}
  40% {transform: rotate(-10deg);}
  60% {transform: rotate(5deg);}
  80% {transform: rotate(-5deg);}
  100% {transform: rotate(0deg);}
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes wobble {
  0% {transform: translateX(0%);}
  15% {transform: translateX(-25%) rotate(-5deg);}
  30% {transform: translateX(20%) rotate(3deg);}
  45% {transform: translateX(-15%) rotate(-3deg);}
  60% {transform: translateX(10%) rotate(2deg);}
  75% {transform: translateX(-5%) rotate(-1deg);}
  100% {transform: translateX(0%);}
}
.wobble {
  animation-name: wobble;
}

@keyframes flip {
  0% {transform: perspective(400px) translateZ(0) rotateY(0) scale(1);animation-timing-function: ease-out;}
  40% {transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);animation-timing-function: ease-out;}
  50% {transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);animation-timing-function: ease-in;}
  80% {transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);animation-timing-function: ease-in;}
  100% {transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);animation-timing-function: ease-in;}
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes lightSpeedIn {
  0% {transform: translateX(100%) skewX(-30deg);opacity: 0;}
  60% {transform: translateX(-20%) skewX(30deg);opacity: 1;}
  80% {transform: translateX(0%) skewX(-15deg);opacity: 1;}
  100% {transform: translateX(0%) skewX(0deg);opacity: 1;}
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes rollIn {
  0% {opacity: 0;transform: translateX(-100%) rotate(-120deg);}
  100% {opacity: 1;transform: translateX(0px) rotate(0deg);}
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rotateIn {
  0% {transform-origin: center center;transform: rotate(-200deg);opacity: 0;}
  100% {transform-origin: center center;transform: rotate(0);opacity: 1;}
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes hinge {
  0% {transform: rotate(0);transform-origin: top left;animation-timing-function: ease-in-out;}
  20%, 60% {transform: rotate(80deg);transform-origin: top left;animation-timing-function: ease-in-out;}
  40% {transform: rotate(60deg);transform-origin: top left;animation-timing-function: ease-in-out;}
  80% {transform: rotate(60deg) translateY(0);transform-origin: top left;animation-timing-function: ease-in-out;}
  100% {transform: translateY(700px);}
}
.hinge {
  margin: 20px;
  animation-name: hinge;
}

@media all and (max-width: 680px) {
  .wrap {
   width: 100%;
  }
  .box {
    width: 100%;
  height: 55px;
    clear: both;
    margin: 0px auto;
  }
  .text {
   margin-top: 20px; 
  }
  .hingebox, .flipbox {
     display: none; 
  }
}

/*--01. Navigation--*/
#top-nav {
    height: 45px;
    padding-right: 10px;
    background-color: #fff;
    white-space: nowrap;
    min-width: 310px;
    border-bottom: 1px solid #f2f2f2
}

#top-nav.fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000
}

#top-nav .brand {
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 45px;
    width: 194px;
    color: #999;
    background: #323447;
    float: left;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
    border-bottom: 1px solid #6f6f6f;
}

#top-nav .brand:focus,#top-nav .brand:hover {
    color: #fff;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

#top-nav .page-title {
    float: left;
    line-height: 45px;
    font-weight: 500;
    color: #999
}

@media (max-width: 767px) {

    .sima-header{
        font-weight: bold;
        color: black;
        font-size: 18px;
      }
      .sima-body{
        font-weight: bold;
        color: black;
        font-size: 16px !important;
      }
      .sima-footer span{
        font-size: 14px;
        color:black;
        font-weight: bold;  
      }
      .sima-footer strong{
        font-size: 14px;
        color:black;
      }  

    #top-nav.fixed {
        left:-194px
    }

    #top-nav .page-title {
        display: none
    }

    .single-disesh {
      margin-bottom: 35px;
      padding: 20px;
    }    
    .foode-item-box::before, .foode-item-box::after {
      display: none;
    }    
    .foode-item-box {
      height: 100px;
      margin-bottom: 40px;
    }    
    .foode-item-box ul li a {
      font-size: 13px;
      padding: 15px 8px;
    }    
    .food-img {
      float: none;
      margin: 12px 0;
      width: 100%;
    }
    .food-img {
      float: none;
      width: 100%;
    }    
    .single-food-item-desc {
      border-left: medium none;
      border-top: 1px solid #ddd;
      float: none;
      padding: 3px 0 0 10px;
      text-align: center;
      width: 100%;
    }    
    .fooder-menu-description.float_left .single-food-item {
      padding-right: 0;
      margin-top: 15px;
    }    
    .single-food-item-title h2 {
      font-size: 14px;
       margin-bottom: 0;
    }    
    .single-food-button {
      margin-top: 5px;
      position: inherit;
      right: auto;
      top: 0;
    }    
    .single-food-button > p {
      font-size: 20px;
    } 
    .fooder-menu-description.float_right .single-food-item {
      padding-left: 0;
      margin-top: 20px;
    }
}

#top-nav .navbar-toggle {
    margin: 3px 0 0
}

#top-nav .navbar-toggle.hide-menu {
    display: block;
    margin-top: 5px
}

@media (max-width: 767px) {
    #top-nav .navbar-toggle.hide-menu {
        display:none
    }
}

#top-nav .navbar-toggle .icon-bar {
    display: block;
    width: 18px;
    height: 2px;
    margin-bottom: 3px;
    background-color: #999;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px
}

#top-nav .navbar-toggle .icon-bar:last-child {
    margin-bottom: 0
}

#top-nav .nav-notification {
    list-style: none;
    margin: 0;
    float: right;
    white-space: nowrap;
    font-size: 12px
}

#top-nav .nav-notification>li {
    display: block;
    position: relative;
    float: left;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

#top-nav .nav-notification>li.open {
    background: #fcfcfc
}

#top-nav .nav-notification>li:last-child {
    border-right: none
}

#top-nav .nav-notification>li:hover {
    background: #fcfcfc;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

#top-nav .nav-notification>li.profile .dropdown-menu {
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    /*min-width: 220px*/
    min-width: 270px;
}

#top-nav .nav-notification>li.profile .dropdown-menu li:first-child {
    margin-bottom: 10px
}

#top-nav .nav-notification>li.profile .dropdown-menu li:first-child a:hover {
    background: #fff;
    color: #000
}

#top-nav .nav-notification>li.profile .dropdown-menu li:not(:first-child) a {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}

#top-nav .nav-notification>li.profile .dropdown-menu li:not(:first-child) a:focus,#top-nav .nav-notification>li.profile .dropdown-menu li:not(:first-child) a:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    background: 0 0;
    color: #000;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}

#top-nav .nav-notification>li>a {
    display: block;
    position: relative;
    padding: 13px 15px;
    color: #999;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

#top-nav .nav-notification>li>a:focus,#top-nav .nav-notification>li>a:hover {
    color: #777;
    text-decoration: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

#top-nav .nav-notification .dropdown-menu {
    right: 0;
    left: auto;
    top: 95%;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-color: #f1f5fc
}

#top-nav .nav-notification .dropdown-menu li {
    border-bottom-color: #f1f5fc
}

@media (max-width: 480px) {
    .sima-header{
        font-weight: bold;
        color: black;
        font-size: 20px;
      }
      .sima-body{
        font-weight: bold;
        color: black;
        font-size: 16px !important;
      }
      .sima-footer span{
        font-size: 14px;
        color:black;
        font-weight: bold;  
      }
      .sima-footer strong{
        font-size: 14px;
        color:black;
      }  

    #top-nav .nav-notification {
        font-size:11px
    }

    .limit-text-area {
       width: 210px; 
    }

    #top-nav .nav-notification>li>a {
        padding: 14px 15px
    }

    #top-nav .nav-notification .dropdown-menu.dropdown-1 {
        left: -50px!important;
        right: auto!important
    }

    #top-nav .nav-notification .dropdown-menu.dropdown-2 {
        left: -80px!important;
        right: auto!important
    }

    #top-nav .nav-notification .dropdown-menu.dropdown-3 {
        left: -120px!important;
        right: auto!important
    }

    #top-nav {
        min-width: 310px
    }
}

@media (min-width: 481px) and (max-width:550px) {
    #top-nav {
        min-width:471px
    }
}

@media (min-width: 551px) and (max-width:600px) {
    #top-nav {
        min-width:541px
    }
}

@media (min-width: 601px) and (max-width:670px) {
    #top-nav {
        min-width:591px
    }
}

@media (max-width: 767px) {
    #top-nav {
        left:-194px
    }
}

@media (min-width: 768px) and (max-width:868px) {
    #top-nav {
        transition:all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }

    #top-nav .brand {
        width: 90px
    }

    #top-nav .brand .text-toggle {
        display: none
    }
}

.breadcrumb {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    background: 0 0;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 1px 0 #fff;
    -moz-box-shadow: 0 1px 0 #fff;
    -webkit-box-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px #fff
}

.breadcrumb li {
    line-height: 27px;
    color: #777
}

.breadcrumb a {
    text-decoration: none;
    color: #777
}

/*--02. Aside--*/
aside {
    position: absolute;
    display: block;
    float: left;
    width: 194px;
    z-index: 100;
    padding-top: 45px;
    bottom: 0;
    left: 0;
    background-color: #323447;
    height: 100%
}

aside .sidebar-inner .user-block,aside .size-toggle {
    padding: 10px;
    box-shadow: 0 1px 0 #34364a;
    border-bottom: 1px solid #2c2d3e
}

aside::-webkit-scrollbar {
    width: 3px;
    height: 3px
}

aside::-webkit-scrollbar-thumb {
    background-color: rgba(50,50,50,.4)
}

aside.fixed {
    position: fixed
}

aside .size-toggle {
    -moz-box-shadow: 0 1px 0 #34364a;
    -webkit-box-shadow: 0 1px 0 #34364a
}

@media (max-width: 868px) {
    aside .size-toggle {
        display:none
    }
}

aside .size-toggle .btn {
    background-color: transparent;
    color: #e6f1f7;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .size-toggle .btn.pull-right {
    margin-top: -3px
}

aside .size-toggle .btn .icon-bar {
    background-color: #e6f1f7;
    display: block;
    width: 13px;
    height: 2px;
    margin-bottom: 2px;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .size-toggle .btn:focus,aside .size-toggle .btn:hover {
    color: #fff;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .size-toggle .btn:focus .icon-bar,aside .size-toggle .btn:hover .icon-bar {
    background-color: #fff;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .sidebar-inner {
    border-right: 1px solid #272938
}

aside .sidebar-inner .user-block {
    -moz-box-shadow: 0 1px 0 #34364a;
    -webkit-box-shadow: 0 1px 0 #34364a
}

aside .sidebar-inner .user-block img {
    float: left;
    width: 45px;
    height: 45px;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

.user-block-bday{
    width:16px !important; 
    height: 16px !important;
    margin-bottom: 5px !important;
    float: none !important; 
    border-radius:0px !important;     
    -moz-border-radius:0px !important; 
    -webkit-border-radius:0px !important;
}

aside .sidebar-inner .user-block .detail {
    float: left;
    color: #e6f1f7;
    margin-left: 10px
}

aside .sidebar-inner .user-block ul {
    margin-top: 5px
}

aside .sidebar-inner .user-block ul li {
    padding: 0
}

aside .sidebar-inner .user-block ul li a {
    font-size: 11px;
    color: #e6f1f7;
    margin-right: 10px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .sidebar-inner .user-block ul li a:focus,aside .sidebar-inner .user-block ul li a:hover {
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .sidebar-inner .search-block {
    padding: 10px;
    border-bottom: 1px solid #2c2d3e;
    box-shadow: 0 1px 0 #34364a;
    -moz-box-shadow: 0 1px 0 #34364a;
    -webkit-box-shadow: 0 1px 0 #34364a
}

aside .sidebar-inner .search-block input[type=text] {
    background: #272938;
    border: 1px solid #272938;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

aside .sidebar-inner .search-block input[type=text]:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

aside .sidebar-inner .search-block input[type=text]:-moz-placeholder,aside .sidebar-inner .search-block input[type=text]:-ms-input-placeholder,aside .sidebar-inner .search-block input[type=text]::-webkit-input-placeholder {
    color: #fff
}

aside .sidebar-inner .search-block .btn {
    color: #ccc;
    background: #272938;
    border: 1px solid #272938
}

aside .main-menu {
    height: 100%
}

aside .main-menu>ul {
    margin: 0;
    list-style: none
}

aside .main-menu>ul>li {
    position: relative;
    border-top: 1px solid #34364a;
    border-bottom: 1px solid #2c2d3e;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

aside .main-menu>ul>li.active {
    border-top: 1px solid #323447;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

aside .main-menu>ul>li.active>a {
    color: #fff;
    background: #2c2d3e;
    box-shadow: 0 0 3px rgba(0,0,0,.15) inset;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.15) inset;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.15) inset
}

aside .main-menu>ul>li.display {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

aside .main-menu>ul>li.display>a {
    color: #fff;
    background: #2c2d3e
}

aside .main-menu>ul>li>a {
    position: relative;
    display: block;
    color: #e6f1f7;
    font-size: 13px;
    padding: 13px 10px 13px 13px;
    text-shadow: 0 1px 1px rgba(0,0,0,.05);
    transition: color .5s ease,background .5s ease;
    -webkit-transition: color .5s ease,background .5s ease;
    -moz-transition: color .5s ease,background .5s ease;
    -ms-transition: color .5s ease,background .5s ease;
    -o-transition: color .5s ease,background .5s ease
}

aside .main-menu>ul>li>a:focus,aside .main-menu>ul>li>a:hover {
    text-decoration: none;
    color: #fff;
    transition: color .5s ease,background .5s ease;
    -webkit-transition: color .5s ease,background .5s ease;
    -moz-transition: color .5s ease,background .5s ease;
    -ms-transition: color .5s ease,background .5s ease;
    -o-transition: color .5s ease,background .5s ease;
    background: #272938
}

aside .main-menu>ul>li>a:focus .menu-hover,aside .main-menu>ul>li>a:hover .menu-hover {
    opacity: 1;
    transition: opacity .5s ease;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -ms-transition: opacity .5s ease;
    -o-transition: opacity .5s ease
}

aside .main-menu>ul>li>a .text {
    margin-left: 10px
}

aside .main-menu>ul>li>a .badge {
    position: absolute;
    top: 12px;
    right: 7px
}

aside .main-menu>ul>li>a .menu-hover {
    position: absolute;
    background: #feffd8;
    box-shadow: 0 0 20px 0 #fff;
    -moz-box-shadow: 0 0 20px 0 #fff;
    -webkit-box-shadow: 0 0 20px 0 #fff;
    opacity: 0;
    top: -2px;
    bottom: -2px;
    left: 0;
    width: 3px;
    transition: opacity .5s ease;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -ms-transition: opacity .5s ease;
    -o-transition: opacity .5s ease
}

@media (min-width: 768px) {
    aside .main-menu>ul>li .dropdown-menu {
        right:-160px;
        left: auto;
        top: -5px
    }

    .limit-text-area {
       width: 280px; 
    }
}

@media (max-width: 767px) {
    aside .main-menu>ul>li .dropdown-menu {
        position:static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }

    aside .main-menu>ul>li .dropdown-menu li a {
        color: #e6f1f7
    }

    aside .main-menu>ul>li .dropdown-menu li a:hover {
        color: #fff;
        background: #1d1e29
    }

    aside {
        left: -194px
    }
}

#wrapper,aside .main-menu>ul>li .submenu li {
    position: relative
}

aside .main-menu>ul>li .submenu {
    display: none
}

aside .main-menu>ul>li .submenu.third-level li a {
    padding-left: 40px
}

aside .main-menu>ul>li .submenu.fourth-level li a {
    padding-left: 60px
}

aside .main-menu>ul>li .submenu li a {
    display: block;
    background-color: #383b50;
    color: #fafcfd;
    font-weight: 400;
    padding: 9px 20px;
    font-size: 13px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

aside .main-menu>ul>li .submenu li a .submenu-label {
    display: inline-block;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .main-menu>ul>li .submenu li a:hover .submenu-label {
    color: #fff;
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

aside .main-menu .alert {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    text-align: center
}

@media (min-width: 768px) and (max-width:868px) {
    aside .sidebar-inner,aside .slimScrollDiv {
        overflow:visible!important
    }

    aside .brand .text-toggle,aside .sidebar-inner .search-block,aside .sidebar-inner .size-toggle .pull-right,aside .sidebar-inner .user-block .detail {
        display: none
    }

    aside .sidebar-inner .size-toggle,aside .sidebar-inner .user-block {
        text-align: center
    }

    aside {
        width: 90px
    }

    aside .slimScrollDiv .slimScrollBar,aside .slimScrollDiv .slimScrollRail {
        opacity: 0!important
    }

    aside .sidebar-inner .user-block img {
        float: none
    }

    aside .sidebar-inner .main-menu>ul>li>a {
        text-align: center;
        font-size: 11px
    }

    aside .sidebar-inner .main-menu>ul>li>a .menu-icon {
        display: block
    }

    aside .sidebar-inner .main-menu>ul>li>a .text {
        display: block;
        margin-top: 5px;
        margin-left: 0
    }

    aside .sidebar-inner .alert,aside .sidebar-inner .main-menu>ul>li>a .badge {
        display: none
    }
}

#wrapper {
    overflow: hidden;
    min-height: 800px;
    background-color: #f9f9f9
}

@media (min-width: 768px) {
    #wrapper.sidebar-mini #top-nav .brand,#wrapper.sidebar-mini aside {
        width:90px
    }

    #wrapper.sidebar-mini #top-nav .brand-icon aside {
        width:70px
    }

    #wrapper.sidebar-mini aside .sidebar-inner,#wrapper.sidebar-mini aside .slimScrollDiv {
        overflow: visible!important
    }

    #wrapper.sidebar-mini #top-nav .brand .text-toggle,#wrapper.sidebar-mini aside .sidebar-inner .search-block,#wrapper.sidebar-mini aside .sidebar-inner .size-toggle .pull-right,#wrapper.sidebar-mini aside .sidebar-inner .user-block .detail {
        display: none
    }

    #wrapper.sidebar-mini aside .sidebar-inner .size-toggle,#wrapper.sidebar-mini aside .sidebar-inner .user-block {
        text-align: center
    }

    #wrapper.sidebar-mini aside .slimScrollDiv .slimScrollBar,#wrapper.sidebar-mini aside .slimScrollDiv .slimScrollRail {
        opacity: 0!important
    }

    #wrapper.sidebar-mini aside .sidebar-inner .user-block img {
        float: none
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li:hover .submenu {
        display: block
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li:hover .submenu.fourth-level,#wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li:hover .submenu.third-level {
        display: none
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li>a {
        text-align: center;
        font-size: 11px;
        padding: 13px 10px
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li>a .menu-icon {
        display: block
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li>a .text {
        display: block;
        margin-top: 5px;
        margin-left: 0
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li>a .badge {
        display: none
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu {
        position: absolute;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        font-size: 14px;
        list-style: none;
        background-color: #fff;
        border: 1px solid #ccc;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        right: -160px;
        left: auto;
        top: -5px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
        background-clip: padding-box
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu li:hover .submenu.third-level,#wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu.third-level li:hover .submenu.fourth-level {
        display: block
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu li {
        position: relative
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu li a {
        background: #fff;
        text-align: left;
        padding: 4px 20px;
        color: #333
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu li a .submenu-label {
        color: #333!important
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu li a:hover {
        background-color: #f2f2f2
    }

    #wrapper.sidebar-mini aside .sidebar-inner .main-menu>ul>li .submenu li a:hover .submenu-label {
        color: #222!important
    }

    #wrapper.sidebar-mini aside .sidebar-inner .alert {
        display: none
    }

    #wrapper.sidebar-mini #main-container,#wrapper.sidebar-mini footer {
        margin-left: 90px
    }
}

.alert-inner,.image-wrapper,.open>.dropdown-menu.slidedown,.panel-stat1,.panel-stat2,.panel-stat3,.ribbon-wrapper,.task-list li.removed {
    overflow: hidden
}

#theme-setting,#theme-setting-icon {
    z-index: 40;
    position: fixed;
    background: #fff
}

@media (max-width: 767px) {
    #wrapper.sidebar-display aside {
        left:0
    }

    #wrapper.sidebar-display #top-nav {
        left: 0;
        right: -194px
    }

    #wrapper.sidebar-display #main-container,#wrapper.sidebar-display footer {
        left: 194px;
        right: -194px
    }
}

@media (min-width: 768px) {
    #wrapper.sidebar-hide aside {
        left:-194px
    }

    #wrapper.sidebar-hide #main-container,#wrapper.sidebar-hide footer {
        margin-left: 0
    }
}

/*--03. body --*/
body {
    padding-top: 0;
    font-size: 14px;
    color: #777;
    background: #f9f9f9;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif
}

body.dark {
    background: #3a3a3a
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px
}

::-webkit-scrollbar-thumb {
    background-color: rgba(50,50,50,.3)
}

::-webkit-scrollbar-track {
    background-color: rgba(50,50,50,.2)
}

img {
    max-width: 100%
}

ul {
    padding: 0
}

.well {
    background-color: #e8e8e8;
    background-image: -moz-linear-gradient(top,#f5f5f5,#e8e8e8);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#e8e8e8));
    background-image: -webkit-linear-gradient(top,#f5f5f5,#e8e8e8);
    background-image: -o-linear-gradient(top,#f5f5f5,#e8e8e8);
    background-image: linear-gradient(to bottom,#f5f5f5,#e8e8e8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5, endColorstr=#e8e8e8, GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

hr {
    border-top-color: #eee;
    border-bottom-color: #fff
}

a {
    color: #555;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

a:focus,a:hover {
    color: #6b6868;
    text-decoration: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

/*--04. Navbar--*/

.navbar.navbar-fixed-top {
    box-shadow: 0 1px 3px rgba(0,0,0,.15)
}

.navbar.navbar-inverse {
    background-color: #111
}

.list-group-item,a.list-group-item {
    border-color: #f1f5fc;
    color: #777
}

.pagination {
    margin-bottom: 0
}

.pagination.pagination-xs>li>a,.pagination.pagination-xs>li>span {
    padding: 2px 7px
}

.pagination.pagination-split li {
    display: inline-block;
    margin-right: 3px
}

.pagination.pagination-split li a {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px
}

.pagination li.active a,.pagination li.active a:focus,.pagination li.active a:hover {
    background: #5a5a5a;
    border-color: rgba(0,0,0,.2);
    box-shadow: 0 0 3px rgba(0,0,0,.7) inset;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.7) inset;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.7) inset
}

.pagination li a {
    color: #777
}

.pagination li a:focus,.pagination li a:hover {
    background: #f2f2f2
}

.progress {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    height: 12px
}

.progress .progress-bar {
    background-color: #6bafbd
}

.progress .progress-bar.progress-bar-success {
    background-color: #65cea7
}

.progress .progress-bar.progress-bar-warning {
    background-color: #f3ce85
}

.progress .progress-bar.progress-bar-danger {
    background-color: #fc8675
}

.badge,.label {
    background-color: #F1F5FC;
    color: #777
}

.badge-success,.label-success {
    background-color: #65cea7;
    color: #fff
}

.badge-danger,.label-danger {
    background-color: #fc8675;
    color: #fff
}

.badge-warning,.label-warning {
    background-color: #daae58;
    color: #fff
}

.badge-dark,.label-dark {
    background-color: #1a3c3f;
    color: #fff
}

.badge-info,.label-info {
    background-color: #6bafbd;
    color: #fff
}

.badge-primary,.label-primary {
    background-color: #424f63;
    color: #fff
}

.badge-coop,.label-coop {
    background-color: #4c9c65;
    color: #fff
}

.alert {
    color: #8B6420;
    background: #fcf3e2;
    border: 1px solid #f3ce85;
    padding: 10px
}

.alert.alert-info {
    color: #0f5d84;
    background: #b2d5dc;
    border: 1px solid #6bafbd
}

.alert.alert-success {
    color: #1b601c;
    background: #b2e7d3;
    border: 1px solid #65cea7
}

.alert.alert-danger {
    color: #691715;
    background: #feded9;
    border: 1px solid #fc8675
}

/*-- 05. Theme-setting --*/
#theme-setting {
    top: 120px;
    right: -212px;
    color: #777;
    display: inline-block;
    width: 210px;
    padding-bottom: 10px;
    box-shadow: 0 0 3px 0 rgba(0,0,0,.05);
    -moz-box-shadow: 0 0 3px 0 rgba(0,0,0,.05);
    -webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,.05);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.chat li .chat-body,.inbox-action {
    box-shadow: 0 1px 1px rgba(0,0,0,.05)
}

#theme-setting.open {
    right: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

#theme-setting .title {
    padding: 5px;
    color: #555;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #f1f5fc
}

#theme-setting strong {
    display: block;
    margin-bottom: 15px
}

#theme-setting hr {
    margin: 0;
    border-top-color: #f1f5fc;
    border-bottom: 1px solid #fff
}

#theme-setting .theme-box {
    padding: 10px 20px
}

#theme-setting a {
    cursor: pointer
}

#theme-setting input {
    height: auto;
    width: 180px;
    background: #fff;
    color: #626262
}

#theme-setting-icon {
    display: inline-block;
    top: 159px;
    right: 0;
    font-size: 18px;
    color: #777;
    cursor: pointer;
    padding: 11px;
    border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border: 1px solid #f1f5fc;
    border-width: 1px 0 1px 1px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

#theme-setting-icon:focus,#theme-setting-icon:hover {
    text-decoration: none;
    color: #555;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

#theme-setting-icon.open {
    right: 210px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.brand-name {
    font-size: 16px;
    line-height: 40px;
    font-weight: 600
}

.gmnoprint img {
    max-width: none
}

.avatar {
    width: 60px
}

.grey-container {
    background: #eee;
    padding: 15px;
    border: 1px solid #dfdfdf;
    border-width: 1px 0;
    text-align: center;
}

.shortcut-wrapper {
    text-align: center
}

@media only screen and (min-width: 768px) {
    .grey-container {
       padding: 2px !important;
    }
    .external-links {
        display: none;
    }
  }  

/*
@media (max-width: 767px) {
    .shortcut-wrapper {
        text-align:left
    }
}*/

.shortcut-link {
    display: inline-block;
    color: #ccc;
    margin-right: 20px;
    text-shadow: 0 1px 0 #fff;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease
}

.shortcut-link .shortcut-icon {
    position: relative;
    font-size: 30px
}

.shortcut-link .shortcut-icon .shortcut-alert {
    position: absolute;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    font-size: 11px;
    color: #fff;
    top: 0;
    right: 0;
    background: #fc8675;
    border: 1px solid #fc8675;
    text-shadow: none;
    font-weight: 700;
    line-height: 16px;
    width: 18px;
    height: 18px;
    text-align: center
}

.shortcut-link .text {
    display: inline-block;
    margin-left: 10px;
    margin-top: -5px;
    color: #626262;
    font-weight: 600
}

.shortcut-link:hover {
    text-decoration: none;
    color: #626262;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease
}

.headline {
    margin: 20px 0;
    padding: 5px 0 10px;
    border-bottom: 1px solid #eee;
    font-weight: 500
}

.headline.dark {
    border-bottom: 1px solid #1a1a1a
}

.headline .line {
    display: block;
    height: 3px;
    background: #3c8dbc;
    margin-top: 7px;
    margin-bottom: -10px;
    width: 50px
}

.section-header {
    position: relative;
    text-align: center;
    font-weight: 700;
    margin: 30px 0
}

.section-header span {
    width: 30%;
    display: block;
    margin: 0 auto;
    font-size: 22px;
    line-height: 40px;
    font-weight: 700
}

/*KANBAN*/
.kanban-screen-countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kanban-screen-countdown-container #kb-days, #kb-hours, #kb-minutes {
    font-size: 82px;
    font-weight: bold;
}

.queue-order-span {
    display: block; /* Esto asegura que el span se comporta como un bloque */
    min-height: 65px; /* Ajusta esto según tus necesidades */
    overflow: hidden; /* Esto evitará que el contenido se desborde si es más grande que la altura mínima */
}

.kanban-queue-widget-size
{
  min-height: 392.25px; 
  background: #fff;
}

.kanban-screen-timepart {
    min-width: 130px;
    padding:0px 10px 0px 10px;
    height: 110px;
    color: white;
    border-radius: 5px;
    box-shadow: 3px 8px 15px rgb(118 118 118 / 44%);
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Cambia esto a flex-end si quieres que el contenido se alinee al final del espacio */
    align-items: center;
    text-align: center;
}

.kanban-section-header {
    position: relative;
    text-align: center;
    font-weight: 700;
    margin: 30px 0
}

.kanban-section-header span {
    width: 50%;
    display: block;
    margin: 0 auto;
    font-size: 22px;
    line-height: 40px;
    font-weight: 700
}

.kanban-section-header hr {
    position: absolute;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
    width: 25%
}

.kanban-section-header hr.right {
    right: 0;
    top: 0
}

@media (max-width: 767px) {
    .section-header span {
        width:100%;
        text-align: left;
        padding-left: 20px
    }
}

.section-header hr {
    position: absolute;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
    width: 35%
}

.section-header hr.right {
    right: 0;
    top: 0
}

.chart-container {
    margin-bottom: 20px;
    width: 100%;
    height: 250px
}

.notification-label {
    position: absolute;
    display: inline-block;
    background: #fc8675;
    width: 15px;
    height: 15px;
    padding: 2px;
    color: #fff;
    font-size: 9px;
    text-align: center;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    top: 7px;
    right: 5px;
    line-height: 12px;
    text-shadow: none
}

#main-container {
    position: relative;
    min-height: 1180px;
    padding-top: 45px;
    margin-left: 194px;
    margin-bottom: 15px;
    overflow-y: hidden;
}

@media (max-width: 480px) {
    #main-container {
        min-width:310px
    }
}

@media (min-width: 481px) and (max-width:550px) {
    #main-container {
        min-width:471px
    }
}

@media (min-width: 551px) and (max-width:600px) {
    #main-container {
        min-width:541px
    }
}

@media (min-width: 601px) and (max-width:670px) {
    #main-container {
        min-width:591px
    }
}

@media (max-width: 767px) {
    #main-container {
        left:0;
        margin-left: 0;
        min-height: 767px;
        overflow: auto;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width:868px) {
    #main-container {
        margin-left:90px;
        transition: margin-left .5s ease;
        -webkit-transition: margin-left .5s ease;
        -moz-transition: margin-left .5s ease;
        -ms-transition: margin-left .5s ease;
        -o-transition: margin-left .5s ease
    }
}

#main-container.fade-out {
    opacity: 0;
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease
}

.container-left {
    position: absolute;
    left: 0;
    background: #000;
    height: 100%;
    width: 100px
}

.theme-color,.theme-pattern {
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,.2);
    margin: 5px 0 -5px 5px;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px
}

.theme-layout {
    cursor: pointer;
    color: #626262
}

.theme-layout:focus,.theme-layout:hover {
    text-decoration: none;
    color: #3c8dbc!important
}

#scroll-to-top {
    position: fixed;
    cursor: pointer;
    bottom: -1000px;
    right: 3px;
    color: #fff;
    z-index: 1049;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    padding: 10px 14px;
    background: rgba(60,141,188,.5);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

#scroll-to-top:focus,#scroll-to-top:hover {
    text-decoration: none;
    background: #3c8dbc;
    color: #fff;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear
}
/*-- 06. Header --*/
.main-header {
    padding: 20px
}

.main-header .page-title {
    float: left
}

.main-header .page-title span {
    display: block;
    color: #535353;
    text-shadow: 0 1px 0 #fff;
    font-size: 14px;
    margin-top: 5px
}

.chat,.main-header .page-stats {
    margin: 0;
    list-style: none
}

.main-header .page-stats {
    float: right;
    padding: 0
}

@media (max-width: 480px) {
    .main-header .page-stats {
        display:none
    }
}

.main-header .page-stats li {
    float: left;
    display: block;
    padding: 0 20px;
    border-right: 1px solid #ccc
}

.main-header .page-stats li:last-child {
    border-right: none
}

.main-header .page-stats li .sparkline {
    float: right;
    margin-top: 5px
}

@media (max-width: 979px) {
    .main-header .page-stats li .sparkline {
        display:none
    }
}

.main-header .page-stats li .value {
    float: left;
    margin-right: 20px
}

.main-header .page-stats li .value span {
    font-size: 11px;
    font-weight: 600;
    color: #bbb;
    text-shadow: 0 1px 0 #fff;
    text-transform: uppercase
}

.main-header .page-stats li .value h4 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #777;
    margin: 5px 0
}

.chart {
    display: inline-block
}

svg {
    width: 100%!important
}

.toolbar {
    float: right
}

.toolbar>ul {
    list-style: none;
    display: block;
    margin: 0 -15px 0 0
}

.toolbar>ul>li {
    display: inline-block;
    float: right
}

.toolbar>ul>li .btn {
    color: #626262;
    background: 0 0;
    margin-top: -10px;
    padding: 10px 12px;
    margin-left: -4px;
    border-color: rgba(0,0,0,.2);
    border-width: 0 0 0 1px;
    text-shadow: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0
}

.toolbar>ul>li .btn-group>.btn:first-child {
    border-radius: 0 4px 0 0;
    -moz-border-radius: 0 4px 0 0;
    -webkit-border-radius: 0 4px 0 0
}

.toolbar>ul>li .dropdown-menu {
    right: 0;
    left: auto
}

.toolbar .label {
    font-size: 11px
}

.toolbar .progress {
    width: 120px;
    height: 10px;
    margin-top: 5px;
    margin-bottom: 0
}

.toolbar .progress .progress-bar {
    line-height: 10px;
    font-size: 11px;
    font-weight: 400
}

.toolbar .accordion-toggle.collapsed i:before {
    content: '\f078'
}

.toolbar .accordion-toggle i:before {
    content: '\f077'
}

.task-list li.removed {
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 0;
    border-top: 0;
    -moz-transition: opacity .25s linear,padding-top .1s linear .25s,padding-bottom .1s linear .25s,border-top .1s linear .25s,height .1s linear .25s;
    -webkit-transition: opacity .25s linear,padding-top .1s linear .25s,padding-bottom .1s linear .25s,border-top .1s linear .25s,height .1s linear .25s;
    -o-transition: opacity .25s linear,padding-top .1s linear .25s,padding-bottom .1s linear .25s,border-top .1s linear .25s,height .1s linear .25s;
    transition: opacity .25s linear,padding-top .1s linear .25s,padding-bottom .1s linear .25s,border-top .1s linear .25s,height .1s linear .25s
}

.task-list li.selected {
    text-decoration: line-through;
    color: #ccc;
    background: #f1f5fc
}

.activity-icon,.img-demo {
    float: left;
    color: #fff;
    text-align: center
}

.task-list li .task-del:focus,.task-list li .task-del:hover {
    text-decoration: none
}

/*--07. Container--*/

.alert-animated {
    padding: 5px;
    border: 1px solid #f1f5fc;
    font-size: 12px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    background-color: #f9f9f9
}

.alert-inner {
    border: 1px solid #f1f5fc;
    width: 100%;
    white-space: nowrap;
    background-color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.alert-message {
    position: relative;
    text-shadow: 0 1px #fff
}

.activity-icon {
    display: inline-block;
    background: #999;
    border: 1px solid rgba(114, 114, 114, 0.5);
    width: 59px;
    height: 59px;
    font-size: 30px;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}

.activity-icon img {
    -webkit-border-radius: 50em;
}

.activity-icon [class*=fa-] {
    line-height: 55px
}

.activity-icon.new-notification {
    -o-transition: all .2s ease-in-out;
    width: 12px;
    height: 12px;
    float: left; 
    margin-right:4px; 
    margin-top:3px;
    font-size: 20px
}

.new-notification.title {
    font-weight: bold;
}

.activity-icon.old-notification {
  display: none;
}

.old-notification.title {
    font-weight: normal;
}

.activity-icon.small {
    width: 42px;
    height: 42px;
    font-size: 20px
}

.activity-icon.small [class*=fa-] {
    line-height: 38px
}

.img-demo {
    position: relative;
    background: #3a3a3a;
    border: 1px solid rgba(0,0,0,.2);
    width: auto;
    min-width: 40px;
    padding: 5px 15px;
    line-height: 18px;
    font-size: 15px;
    border-radius: 4px
}

.img-demo img {
    width: 40px;
    height: 40px
}

.img-demo.product {
    float: none;
    margin-right: 0;
    width: 100%;
    max-width: 200px;
    height: 200px
}

@media (min-width: 481px) and (max-width:979px) {
    .img-demo.product {
        float:none;
        margin-right: 0;
        width: 100%;
        height: 180px
    }
}

.chat li.left .chat-body:before,.chat li.right .chat-body:before {
    position: absolute;
    top: 10px;
    width: 16px;
    height: 16px;
    border-top: 1px solid #f1f5fc;
    background: #fff;
    display: inline-block;
    content: ''
}

.img-demo.product [class*=fa-] {
    line-height: 200px;
    font-size: 40px
}

@media (min-width: 481px) and (max-width:979px) {
    .img-demo.product [class*=fa-] {
        line-height:180px;
        font-size: 40px
    }
}

.chat li {
    margin: 15px 0
}

.chat li:first-child {
    margin-top: 0
}

.chat li.left .chat-body {
    margin-left: 70px;
    background-color: #fff
}

.chat li.left .chat-body:before {
    left: -8px;
    border-left: 1px solid #f1f5fc;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg)
}

.chat li.right .chat-body {
    margin-right: 70px;
    background-color: #fff
}

.chat li.right .chat-body:before {
    right: -8px;
    border-right: 1px solid #f1f5fc;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.chat li img {
    width: 45px;
    height: 45px;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

.chat li .chat-body {
    position: relative;
    font-size: 11px;
    padding: 10px;
    border: 1px solid #f1f5fc;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05)
}

.chat li .chat-body .header {
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f5fc
}

.chat li .chat-body p {
    margin: 0
}

.chat-toolbar {
    padding: 7px 10px;
    border-bottom: 1px solid #f1f5fc;
    background: #fff
}

.chat-toolbar .btn {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #f1f5fc;
    color: #626262;
    background: 0 0;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.chat-toolbar .btn:focus,.chat-toolbar .btn:hover {
    text-decoration: none;
    color: #3c8dbc;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.image-wrapper {
    position: relative;
    display: block
}

.image-wrapper img {
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.image-wrapper.active,.image-wrapper:hover {
    -webkit-user-select: none;
    -webkit-touch-callout: none
}

.image-wrapper.active img,.image-wrapper:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.image-wrapper.active .image-overlay,.image-wrapper:hover .image-overlay {
    opacity: .9;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0)
}

.image-wrapper.active .image-overlay .image-overlay-inner a,.image-wrapper:hover .image-overlay .image-overlay-inner a {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #3c8dbc;
    background-image: -moz-linear-gradient(top,#5fa4cc,#3c8dbc);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#5fa4cc),to(#3c8dbc));
    background-image: -webkit-linear-gradient(top,#5fa4cc,#3c8dbc);
    background-image: -o-linear-gradient(top,#5fa4cc,#3c8dbc);
    background-image: linear-gradient(to bottom,#5fa4cc,#3c8dbc);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#5fa4cc, endColorstr=#3c8dbc, GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border: 6px solid #296282;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.image-overlay.left {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%)
}

.image-overlay:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.image-overlay .image-info {
    color: #fff;
    position: absolute;
    padding: 15px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

.image-overlay .image-info .image-time {
    position: absolute;
    bottom: 15px
}

.image-overlay .image-info .image-like {
    position: absolute;
    bottom: 15px;
    right: 15px
}

.ribbon-wrapper {
    position: absolute;
    width: 75px;
    height: 75px;
    top: -2px;
    right: -2px
}

.ribbon-wrapper .queue-ribbon-inner {
    display: block;
    position: relative;
    padding: 5px 0;
    color: #fff;
    font-size: 16px;
    line-height: 17px;
    font-weight: 600;
    text-align: center;
    width: auto;
    top: 18px;
    left: -10px;
    text-shadow: 0 1px rgba(0,0,0,.25);
    box-shadow: 0 0 5px rgba(0,0,0,.75);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.75);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.75);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.ribbon-wrapper .animate-ribbon {
    -webkit-animation: mover 0.5s infinite  alternate;
    animation: mover 0.5s infinite  alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.ribbon-wrapper .ribbon-inner {
    display: block;
    position: relative;
    padding: 5px 0;
    color: #fff;
    font-size: 13px;
    line-height: 17px;
    font-weight: 600;
    text-align: center;
    width: 107px;
    top: 11px;
    left: -5px;
    text-shadow: 0 1px rgba(0,0,0,.25);
    box-shadow: 0 0 5px rgba(0,0,0,.75);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.75);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.75);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.ribbon-wrapper .ribbon-inner.blue {
    background: #5276b3
}

.ribbon-wrapper .ribbon-inner .yellow {
    background: #faa732
}

.ribbon-wrapper .ribbon-inner .green {
    background: #76b752
}

.icons-list {
    list-style: none;
    margin: 0
}

.icons-list li {
    cursor: pointer;
    line-height: 32px;
    height: 32px;
    padding-left: 12px
}

.zoomOverlay {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    opacity: 0;
    background: center rgba(0,0,0,.5);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear
}

.carousel-custom .carousel-inner .item img {
    display: block;
    margin: 0 auto 20px
}

.carousel-custom .carousel-indicators {
    left: 90%
}

@media (max-width: 480px) {
    .carousel-custom .carousel-indicators {
        display:none
    }
}

.search-filter ul li,.social-connect,footer p {
    display: inline-block
}

@media (min-width: 481px) and (max-width:767px) {
    .carousel-custom .carousel-indicators {
        top:0
    }

    .dises-list.slick-slider .col-xs-12 {
      width: 50%;
    }    
    .dises-list.slick-slider .dises-show .col-xs-12:last-child {
      display: none;
    }    
    .foode-item-box {
      height: 80px;
    }    
    .foode-item-box ul li a {
      padding: 8px 10px;
    } 
    .foode-item-box ul.nav {
      margin-top: 7px;
    }   
    .single-food-item-title h2 {
      font-size: 18px;
    }    
    .food-img {
      margin: 18px 0;
    }    
}

.carousel-custom .carousel-indicators li {
    background: #eee
}

.carousel-custom .carousel-indicators li.active {
    background: #65cea7
}

.error-heading {
    font-size: 180px;
    font-weight: 400
}

@media (max-width: 480px) {
    .error-heading {
        font-size:160px
    }
}

.map {
    width: 100%;
    height: 450px;
    margin-bottom: 30px
}

/*--08. Footer --*/

footer {
    position: relative;
    padding: 10px 15px;
    background: #fefefe;
    color: #777;
    margin-left: 194px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

footer.dark {
    background: #1a1a1a
}

.slider.slider-horizontal .slider-selection,.slider.slider-vertical .slider-selection {
    background: #65cea7;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

@media (max-width: 767px) {
    footer {
        left:0;
        margin-left: 0
    }

    .search-options {
        text-align: center
    }
}

@media (min-width: 768px) and (max-width:868px) {
    footer {
        margin-left:90px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

footer h5 {
    color: #fff;
    margin-top: 20px;
    text-shadow: none
}

footer .footer-brand {
    font-size: 18px;
    margin-right: 20px
}

footer .footer-brand span {
    font-size: 16px
}

footer hr {
    border-top: 1px solid #242424;
    border-bottom: 1px solid #575757;
    margin-bottom: 0
}

@media (max-width: 480px) {
    footer hr {
        margin-bottom:10px
    }
}

/*--09. Social --*/

.row.row-merge {
    margin: 0
}

.row.row-merge [class*=col-] {
    padding: 0
}

.slider.slider-horizontal .slider-track {
    height: 5px
}

.slider.slider-horizontal .slider-handle {
    margin-top: -11px;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.slider.slider-vertical {
    margin-right: 10px
}

.slider.slider-vertical .slider-track {
    width: 5px
}

.slider-handle,.social-connect {
    background: #fff;
    width: 25px;
    height: 25px
}

.slider.slider-vertical .slider-handle {
    margin-left: -11px;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.slider-handle {
    border: 1px solid #eee;
    opacity: 1
}

.social-connect {
    border: 1px solid #f1f5fc;
    line-height: 25px;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    font-size: 16px;
    text-align: center;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -o-transition: all .4s linear
}

.social-connect:focus,.social-connect:hover {
    text-decoration: none;
    color: #fff;
    border-color: transparent;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.search-options {
    max-width: 920px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px
}

.search-options .search-pager {
    float: right
}

@media (max-width: 767px) {
    .search-options .search-pager {
        float:none;
        text-align: center;
        margin-top: 20px
    }
}

.search-filter {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 0 0 #fff;
    -moz-box-shadow: 0 1px 0 0 #fff;
    -webkit-box-shadow: 0 1px 0 0 #fff
}

.search-filter ul {
    padding: 0;
    margin: 0
}

.search-filter ul li {
    margin-right: 10px
}

.search-filter ul li.active a {
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 3px rgba(0,0,0,.25) inset;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.25) inset;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.25) inset
}

.search-filter ul li a {
    display: block;
    padding: 10px 15px;
    color: #777;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.search-filter ul li a:focus,.search-filter ul li a:hover {
    color: #3c8dbc;
    text-decoration: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.search-container .search-header {
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f5fc
}

.loading-overlay {
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    text-align: center
}

.loading-overlay.active {
    display: block
}

.loading-overlay .loading-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    color: #fff
}

.facebook-hover:hover {
    background: #3b5998!important
}

.twitter-hover:hover {
    background: #00aced!important
}

.google-plus-hover:hover {
    background: #d14836!important
}

.rss-hover:hover {
    background: #ff8300!important
}

.tumblr-hover:hover {
    background: #3b5998!important
}

.dribbble-hover:hover {
    background: #ea4c89!important
}

.linkedin-hover:hover {
    background: #007fb1!important
}

.pinterest-hover:hover {
    background: #e0242a!important
}

.custom-grid {
    padding-bottom: 999px!important;
    margin-bottom: -999px!important
}

/*--10. Components --*/

.btn {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.btn.btn-transparent {
    background: 0 0;
    border: none
}

.btn.quick-btn {
    padding: 5px 20px;
    font-size: 40px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px
}

.btn.quick-btn span {
    display: block;
    font-size: 13px;
    font-weight: 600
}

.btn.btn-primary {
    background: #424f63;
    border: 1px solid #2e3744
}

.btn.btn-primary.active,.btn.btn-primary:active,.btn.btn-primary:focus,.btn.btn-primary:hover {
    background: #343e4e;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.btn.btn-info {
    background: #669da9;
    border: 1px solid #4c99a9
}

.btn.btn-info.active,.btn.btn-info:active,.btn.btn-info:focus,.btn.btn-info:hover {
    background: #52a2b2;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.btn.btn-success {
    background: #65cea7;
    border: 1px solid #3ec291
}

.btn.btn-success.active,.btn.btn-success:active,.btn.btn-success:focus,.btn.btn-success:hover {
    background: #4ac598;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.btn.btn-success-dark{
  color: white;
  background: #48a784;
  border: 1px solid #24aa78;
}

.btn.btn-success-dark.active,.btn.btn-success-dark:active,.btn.btn-success-dark:focus,.btn.btn-success-dark:hover {
    background: #49ac87;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.btn.btn-warning {
    background: #f3ce85;
    border: 1px solid #eebb57
}

.btn.btn-warning.active,.btn.btn-warning:active,.btn.btn-warning:focus,.btn.btn-warning:hover {
    background: #f0c164;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.btn.btn-danger {
    background: #fc8675;
    border: 1px solid #fb5a43
}

.btn.btn-danger.active,.btn.btn-danger:active,.btn.btn-danger:focus,.btn.btn-danger:hover {
    background: #fb6752;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.open .dropdown-toggle.btn-primary {
    background: #384354;
    border-color: #343e4e
}

.open .dropdown-toggle.btn-info {
    background: #59a5b5;
    border-color: #52a2b2
}

.open .dropdown-toggle.btn-success {
    background: #52c89c;
    border-color: #4ac598
}

.open .dropdown-toggle.btn-warning {
    background: #f1c56e;
    border-color: #f0c164
}

.open .dropdown-toggle.btn-danger {
    background: #fb705c;
    border-color: #fb6752
}

.dropdown-menu.dark,.dropdown-menu.dark li {
    background: #1a1a1a
}

.dropdown-menu {
    font-size: 12px
}

.dropdown-menu.dark .divider {
    border-top: 1px solid #0a0c0e;
    border-bottom: 1px solid #212121
}

.dropdown-menu.dark li a {
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,.25)
}

.dropdown-menu.dark li a:focus,.dropdown-menu.dark li a:hover {
    background: #3c8dbc
}

.dropdown-menu li a {
    padding: 4px 20px
}

.dropdown-menu li a:focus,.dropdown-menu li a:hover {
    background: #3c8dbc;
    color: #fff
}

.dropdown-menu li a img {
    float: left;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 8px 0 rgb(34 41 47 / 56%), 0 2px 4px 0 rgba(34, 41, 47, 0.08);
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

.dropdown-menu li a .detail {
    float: left;
    margin-left: 10px;
    white-space: normal
}

.dropdown-menu li a .detail p {
    margin-top: 0
}

.dropdown-menu.message {
    width: 280px;
    padding: 0
}

.dropdown-menu.message li {
    border-bottom: 1px solid #ddd
}

.dropdown-menu.message li:first-child a {
    border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    background: #fff;
    color: #777
}

.dropdown-menu.message li:first-child a:focus,.dropdown-menu.message li:first-child a:hover {
    background: #fff;
    color: #777
}

.dropdown-menu.message li:last-child {
    border: none
}

.dropdown-menu.message li:last-child a {
    border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    -webkit-border-radius: 0 0 2px 2px;
    background: #fff;
    color: #777
}

.dropdown-menu.message li a {
    padding: 10px
}

.dropdown-menu.message li a p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.dropdown-menu.message li a img {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

.dropdown-menu.message li a .detail {
    float: left;
    margin-left: 10px;
    white-space: normal
}

.dropdown-menu.message li a:focus,.dropdown-menu.message li a:hover {
    background-color: #efefef;
    color: #626262;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dropdown-menu.task {
    top: 95%;
    padding: 0;
    width: 250px
}

.dropdown-menu.task li {
    border-bottom: 1px solid #ddd
}

.dropdown-menu.task li:first-child a {
    border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    background-color: #fff;
    color: #777
}

.dropdown-menu.task li:first-child a:focus,.dropdown-menu.task li:first-child a:hover {
    background: #fff;
    color: #777
}

.dropdown-menu.task li:last-child {
    border: none
}

.dropdown-menu.task li:last-child a {
    border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    -webkit-border-radius: 0 0 2px 2px;
    background-color: #fff;
    color: #777
}

.dropdown-menu.task li a {
    padding: 10px;
    cursor: pointer
}

.dropdown-menu.task li a:focus,.dropdown-menu.task li a:hover {
    background-color: #eee;
    color: #777;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dropdown-menu.task .progress {
    height: 10px;
    line-height: 10px;
    margin: 0
}

.dropdown-menu.task .progress .progress-bar {
    font-size: 11px
}

.dropdown-menu.notification {
    top: 95%;
    padding: 0;
    width: 400px;
}

.dropdown-menu.notification li {
    border-bottom: 1px solid #ddd
}

.dropdown-menu.notification li:first-child a {
    border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    background-color: #fff;
    color: #777
}

.dropdown-menu.notification li:first-child a:focus,.dropdown-menu.notification li:first-child a:hover {
    background: #fff;
    color: #777
}

.dropdown-menu.notification li:last-child {
    border: none
}

.panel-group .panel-heading+.panel-collapse .panel-body,.panel.panel-default .panel-heading+.panel-collapse .panel-body {
    border-top-color: #f1f5fc
}

/*.dropdown-menu.notification li:last-child a {
    border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    -webkit-border-radius: 0 0 2px 2px;
    background-color: #fff;
    color: #777
}*/

.dropdown-menu.notification li a {
    padding: 10px;
    cursor: pointer;
    position: relative
}

.dropdown-menu.notification li a:focus,.dropdown-menu.notification li a:hover {
    background-color: #eee;
    color: #777;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dropdown-menu.notification li a .notification-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 14px
}

.dropdown-menu.notification li a .time {
    position: absolute;
    right: 5px;
    top: 12px
}

.dropdown-demo {
    display: inline-block;
    position: relative;
    height: 180px;
    width: 200px
}

.dropdown-demo>.dropdown-menu {
    display: block;
    position: static;
    text-shadow: none
}

.tab-bar.grey-tab li a,.text-shadow-white {
    text-shadow: 0 1px 0 #fff
}

/*--11. Panel --*/

.panel {
    position: relative;
    background: #fff
}

.panel.panel-dark,.panel.panel-dark .panel-footer,.panel.panel-dark .panel-heading {
    background: #111!important;
    border-color: #060606!important
}

.panel.panel-dark .panel-heading .tool-bar li a {
    color: #fff
}

.panel.panel-default {
    border-color: #f1f5fc
}

.panel.panel-default .panel-heading {
    background: #fff;
    color: #777;
    border-color: #f1f5fc
}

.panel.panel-default .panel-title a {
    font-size: 12px
}

.panel.panel-default .panel-title a:focus,.panel.panel-default .panel-title a:hover {
    text-decoration: none;
    color: #aaa
}

.panel.panel-default .panel-footer {
    background: #fff;
    border-color: #f1f5fc;
    color: #777
}

.panel .tool-bar {
    float: right;
    list-style: none;
    margin-bottom: 0
}

.panel .tool-bar li {
    display: inline-block;
    float: left
}

.panel .tool-bar li:last-child a {
    margin-right: -15px
}

.panel .tool-bar li a {
    display: block;
    padding: 10px;
    margin: -10px 0;
    border-left: 1px solid rgba(0,0,0,.1);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.panel .tool-bar li a:hover {
    background-color: rgba(0,0,0,.02);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.panel.bg-primary .panel-footer {
    border-color: #2e3744;
    background: rgba(20,20,20,.07)
}

.panel.bg-info .panel-footer {
    border-color: #4c99a9;
    background: rgba(20,20,20,.07)
}

.panel.bg-success .panel-footer {
    border-color: #3ec291;
    background: rgba(20,20,20,.07)
}

.panel.bg-warning .panel-footer {
    border-color: #eebb57;
    background: rgba(20,20,20,.07)
}

.panel.bg-danger .panel-footer {
    border-color: #fb5a43;
    background: rgba(20,20,20,.07)
}

.panel-stat1 {
    text-align: center;
    cursor: pointer
}

.panel-stat1:hover .value {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: transform .4s ease;
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    -ms-transition: -ms-transform .4s ease;
    -o-transition: -o-transform .4s ease
}

.panel-stat1:hover .title {
    transform: scale(.85);
    -webkit-transform: scale(.85);
    -moz-transform: scale(.85);
    -ms-transform: scale(.85);
    -o-transform: scale(.85);
    transition: transform .4s ease;
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    -ms-transition: -ms-transform .4s ease;
    -o-transition: -o-transform .4s ease
}

.panel-stat1 .value {
    font-size: 60px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.panel-stat1 .title {
    font-size: 16px;
    margin-top: -15px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.panel-stat2 {
    cursor: pointer
}

.panel-stat2:hover .value {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.panel-stat2:hover .title {
    transform: scale(.85);
    -webkit-transform: scale(.85);
    -moz-transform: scale(.85);
    -ms-transform: scale(.85);
    -o-transform: scale(.85);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.panel-stat2:hover .stat-icon {
    transform: scale(1.5) rotate(60deg) translateX(30px) translateY(-15px);
    -webkit-transform: scale(1.5) rotate(60deg) translateX(30px) translateY(-15px);
    -moz-transform: scale(1.5) rotate(60deg) translateX(30px) translateY(-15px);
    -ms-transform: scale(1.5) rotate(60deg) translateX(30px) translateY(-15px);
    -o-transform: scale(1.5) rotate(60deg) translateX(30px) translateY(-15px);
    opacity: .4;
    transition: all .8s ease;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease
}

.panel-stat2 .stat-icon {
    display: inline-block;
    float: left;
    font-size: 50px;
    line-height: 83px;
    transition: all .8s ease;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease
}

.panel-stat2 .value {
    font-size: 60px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.panel-stat2 .title {
    font-size: 16px;
    margin-top: -15px;
    margin-right: 10px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}


.panel-stat3 {
    position: relative;
    padding: 25px 20px;
    margin-bottom: 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px
}

.panel-stat3-fix{
  cursor: auto !important;
  height: 160px !important;
}

.panel-stat3 .stat-icon {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 30px;
    opacity: .3
}

.panel-stat3 .refresh-button {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    color: rgba(0,0,0,.3)
}

.panel-stat3 .refresh-button:hover {
    color: #fff;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.panel-stat3 a {
  color: #000;
}

.panel-stat3 a:hover {
  color: #4b4a4a;
}


.panel-overview {
    padding: 0
}

.panel-overview:after,.panel-overview:before {
    display: table;
    line-height: 0;
    content: ""
}

.panel-overview .overview-icon {
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px;
    font-size: 70px
}

.panel-overview .overview-value {
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    padding: 15px 10px 10px
}

.panel-tab:after,.panel-tab:before,.tab-bar:after,.tab-bar:before {
    display: table;
    content: "";
    line-height: 0
}

.panel-tab {
    background: #f9f9f9
}

/*--12. Tab --*/

.tab-bar {
    list-style: none;
    margin: 0
}

.tab-bar.right>li {
    float: right
}

.tab-bar.right>li.active:first-child a {
    border-right: none
}

.tab-bar.grey-tab {
    background: #e6e6e6
}

.tab-bar.grey-tab li.active a {
    border: transparent;
    background: #f9f9f9
}

.tab-bar.grey-tab li.active a:focus,.tab-bar.grey-tab li.active a:hover {
    border: transparent
}

.tab-bar.grey-tab li a {
    color: #bbb;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border: transparent
}

.tab-bar.bg-danger li:not(.active) a,.tab-bar.bg-info li:not(.active) a,.tab-bar.bg-primary li:not(.active) a,.tab-bar.bg-success li:not(.active) a,.tab-bar.bg-warning li:not(.active) a {
    color: #fff;
    text-shadow: none;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease
}

.tab-bar.bg-danger li:not(.active) a:focus,.tab-bar.bg-danger li:not(.active) a:hover,.tab-bar.bg-info li:not(.active) a:focus,.tab-bar.bg-info li:not(.active) a:hover,.tab-bar.bg-primary li:not(.active) a:focus,.tab-bar.bg-primary li:not(.active) a:hover,.tab-bar.bg-success li:not(.active) a:focus,.tab-bar.bg-success li:not(.active) a:hover,.tab-bar.bg-warning li:not(.active) a:focus,.tab-bar.bg-warning li:not(.active) a:hover {
    color: #eee;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease
}

.tab-bar>li {
    display: inline-block;
    float: left;
    margin-bottom: -1px
}

.tab-bar>li.active:first-child a {
    border-left: none
}

.tab-bar>li.active a {
    background: #fff;
    color: #777
}

.tab-bar>li a {
    display: block;
    padding: 10px;
    color: #ccc;
    text-shadow: 0 1px #fff;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease
}

.tab-bar>li a:focus,.tab-bar>li a:hover {
    text-decoration: none;
    color: #777;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease
}

.wizard-steps {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 0
}

.wizard-steps:after,.wizard-steps:before {
    display: table;
    line-height: 0;
    content: ""
}

.wizard-steps li {
    display: inline-block;
    position: relative;
    float: left;
    padding: 0 5px 0 20px
}

.wizard-steps li.active {
    background: #65cea7
}

.wizard-steps li.active:after {
    border-left-color: #65cea7
}

.wizard-steps li.active a {
    color: #fff;
    font-weight: 700;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.wizard-steps li a {
    display: block;
    padding: 10px;
    text-align: center;
    color: #ccc;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.wizard-steps li a:focus,.wizard-steps li a:hover {
    text-decoration: none
}

.wizard-steps li:after,.wizard-steps li:before {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    top: 0;
    right: -36px;
    position: absolute;
    pointer-events: none;
    bottom: 100%
}

.wizard-steps li:after {
    border-color: transparent transparent transparent #f9f9f9;
    border-width: 18px;
    z-index: 2
}

.wizard-steps li:before {
    border-color: transparent transparent transparent #eee;
    border-width: 20px;
    right: -40px;
    top: -2px;
    z-index: 1
}

.tab-left:after,.tab-left:before {
    display: table;
    line-height: 0;
    content: ""
}

.tab-left .tab-bar {
    float: left
}

.tab-left .tab-bar>li {
    display: block;
    float: none;
    margin-right: -1px;
    border-right: 1px solid #eee
}

.tab-left .tab-bar>li.active {
    border-right: 1px solid #fff;
    z-index: 2
}

.tab-left .tab-bar>li.active:first-child a {
    border-top: none
}

.tab-left .tab-bar>li.active a {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.tab-left .tab-content {
    overflow: auto;
    padding: 15px 20px;
    border-left: 1px solid #eee
}

.tab-right:after,.tab-right:before {
    display: table;
    line-height: 0;
    content: ""
}

.dd,.upload-file {
    line-height: 20px
}

.tab-right .tab-bar {
    float: right
}

.tab-right .tab-bar>li {
    display: block;
    float: none;
    margin-left: -1px;
    border-left: 1px solid #eee
}

.tab-right .tab-bar>li.active {
    border-left: 1px solid #fff;
    z-index: 2
}

.tab-right .tab-bar>li.active:first-child a {
    border-top: none
}

.tab-right .tab-bar>li.active a {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.tab-right .tab-content {
    overflow: auto;
    padding: 15px 20px;
    border-right: 1px solid #eee
}

/*-- 13.Table --*/

.table.table-vertical-center td,.table.table-vertical-center th {
    vertical-align: middle
}

.table thead>tr {
    border: 1px solid #d8d8d8
}

.table thead>tr>th {
    border-color: #d8d8d8
}

.table tbody>tr {
    border: 1px solid #d8d8d8
}

.table tbody>tr.selected>td {
    background: #f1f5fc
}

.table tbody>tr>td {
    border-color: #d8d8d8
}

table td.text-center,table th.text-center {
    text-align: center
}

table td.text-right,table th.text-right {
    text-align: right
}

table.table-borderless td,table.table-borderless th {
    border: none!important
}

table.dataTable tr.odd td.sorting_1 {
    background-color: #f9f9f9
}

table.dataTable tr.even td.sorting_1 {
    background-color: #fff
}

table.dataTable tr.odd {
    background-color: #f9f9f9
}

.paging_full_numbers {
    margin-top: 5px
}

.paging_full_numbers .ui-button {
    border: 1px solid #eee
}

.paging_full_numbers .ui-state-disabled {
    cursor: default!important;
    opacity: .35
}

table.dataTable thead th .DataTables_sort_wrapper span {
    right: 6px!important
}

table.dataTable thead th .DataTables_sort_wrapper span:before {
    font-family: FontAwesome;
    color: #777
}

table.dataTable thead th .DataTables_sort_wrapper span.ui-icon-carat-2-n-s:before {
    content: "\f0dc"
}

table.dataTable thead th .DataTables_sort_wrapper span.ui-icon-triangle-1-n {
    top: 60%!important
}

table.dataTable thead th .DataTables_sort_wrapper span.ui-icon-triangle-1-n:before {
    content: "\f0de"
}

table.dataTable thead th .DataTables_sort_wrapper span.ui-icon-triangle-1-s {
    top: 30%!important
}

table.dataTable thead th .DataTables_sort_wrapper span.ui-icon-triangle-1-s:before {
    content: "\f0dd"
}

/*--14. Form --*/

form.form-border .form-group {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 5px; /*FIXED BY WT*/
    border-bottom: 1px solid #f1f5fc
}

form.form-border .form-group:first-child {
    padding-top: 0
}

form.form-border .form-group:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.input-icon input[type=text] {
    padding-left: 20px
}

button,input,label,select,textarea.form-control {
    font-size: 12px
}

.uneditable-input,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week] {
    font-size: 12px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin: 0
}

textarea.form-control {
    margin: 0
}

.uneditable-input:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select[multiple]:focus,textarea.form-control:focus {
    border-color: rgba(250,167,34,.8);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(250,167,34,.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(250,167,34,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(250,167,34,.6)
}

input[type=text].dial {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

.select-box {
    display: inline-block;
    list-style: none;
    margin: 0;
    background: #fff;
    padding: 5px;
    width: 40%;
    height: 200px!important;
    font-size: 12px
}

.select-box-option {
    position: absolute;
    left: 50%;
    top: 40%;
    margin-left: -50px;
    display: inline-block;
    height: 200px;
    width: 100px;
    text-align: center
}

.help-btn {
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    padding: 0 6px
}

.upload-file {
    position: relative;
    height: 20px;
    padding: 10px 6px;
}

.upload-file input[type=file] {
    position: absolute;
    opacity: 0
}

.upload-file label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    max-height: 28px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear
}

.upload-file label:before {
    display: inline-block;
    content: attr(data-title);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 8px;
    line-height: 26px;
    text-align: center;
    border-left: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    background-color: #fff
}

.upload-file label [class*=icon-] {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
    padding: 5px;
    line-height: 13px;
    color: #fff;
    width: auto
}

.upload-file label span {
    display: inline-block;
    height: 26px;
    white-space: nowrap;
    overflow: hidden;
    line-height: 26px;
    color: #777;
    padding-left: 10px
}

.upload-file label span:before {
    content: attr(data-title)
}

.form-horizontal .label-checkbox {
    padding-top: 5px
}

input[type=checkbox],input[type=radio] {
    opacity: 0;
    position: absolute;
    width: 15px;
    height: 15px;
    z-index: 2;
    cursor: pointer
}

input[type=radio] {
    margin-top: 0
}

input[type=checkbox]:checked+.custom-checkbox,input[type=radio]:checked+.custom-radio {
    background-color: #f5f8fc
}

input[type=checkbox]+.custom-checkbox,input[type=checkbox]:disabled+.custom-checkbox,input[type=radio]+.custom-radio,input[type=radio]:disabled+.custom-radio {
    display: inline-block;
    position: relative;
    line-height: 13px;
    background-color: #fafafa;
    margin-right: 3px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

input[type=checkbox]:hover+.custom-checkbox,input[type=radio]:hover+.custom-radio {
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1)
}

input[type=checkbox]+.custom-checkbox:before {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

input[type=checkbox]:disabled+.custom-checkbox,input[type=radio]:disabled+.custom-radio {
    background-color: #ccc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

input[type=checkbox]+.custom-checkbox,input[type=radio]+.custom-radio {
    display: inline-block;
    font-family: fontAwesome;
    font-size: 12px;
    content: "";
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    text-align: center;
    width: 17px;
    height: 17px;
    line-height: 15px;
    vertical-align: middle
}

input[type=checkbox]:checked+.custom-checkbox:before,input[type=radio]:checked+.custom-radio:before {
    box-shadow: 0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05),inset 15px 10px -12px rgba(255,255,255,.1);
    text-shadow: 0 1px #fff
}

input[type=checkbox]:checked+.custom-checkbox:before {
    content: '\f00c';
    border-color: rgba(0,0,0,.2);
    font-size: 12px;
    color: #7a7a7a
}

input[type=radio]+.custom-radio,input[type=radio]:disabled+.custom-radio {
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    line-height: 0
}

input[type=radio]+.custom-radio:before {
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

input[type=radio]:checked+.custom-radio:before {
    content: '';
    position: absolute;
    display: block;
    width: 11px;
    height: 11px;
    top: 2px;
    left: 2px;
    background-color: #777;
    border-color: #adb8c0
}

input[type=radio]:checked+.custom-radio.blue:before {
    color: #09C
}

input[type=checkbox]:disabled:active+.custom-checkbox,input[type=radio]:disabled:active+.custom-radio {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

input[type=checkbox]:active+.custom-checkbox,input[type=radio]:active+.custom-radio {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
    -moz-box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
    -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.1)
}

input[type=radio]:active+.custom-radio {
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

.label-checkbox,.label-radio {
    display: block;
    cursor: auto;
    margin-bottom: 0
}

.label-radio {
    padding-top: 6px
}

.label-checkbox.inline,.label-radio.inline {
    display: inline-block;
    margin-right: 5px
}

.label-radio.inline {
    padding-top: 5px
}

#overlay {
    background: #000;
    left: 0;
    right: 0;
    top: 0;
    bottom: -100px;
    position: fixed;
    z-index: 9999;
    opacity: 1
}

#overlay.transparent {
    background: rgba(0,0,0,.5)
}

.overlay-inner {
    position: absolute;
    top: 40%;
    left: 45%
}

@media (max-width: 767px) {
    .overlay-inner {
        left:35%
    }
}

@media (max-width: 600px) {
    .overlay-inner {
        left:25%
    }
}

@media (max-width: 480px) {
    .overlay-inner {
        left:17%
    }
}

@media (max-width: 400px) {
    .overlay-inner {
        left:5%
    }
}

@media (max-width: 767px) {
    .overlay-inner.style2 {
        left:45%
    }
}

@media (max-width: 480px) {
    .overlay-inner.style2 {
        left:42%
    }
}

#fountainTextG {
    width: 240px
}

.fountainTextG {
    color: #000;
    font-size: 25px;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    float: left;
    -moz-transform: scale(.5);
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5)
}

@-moz-keyframes bounce_fountainTextG {
    0% {
        -moz-transform: scale(1);
        color: #000
    }

    100% {
        -moz-transform: scale(.5);
        color: #FFF
    }
}

@-webkit-keyframes bounce_fountainTextG {
    0% {
        -webkit-transform: scale(1);
        color: #000
    }

    100% {
        -webkit-transform: scale(.5);
        color: #FFF
    }
}

@-ms-keyframes bounce_fountainTextG {
    0% {
        -ms-transform: scale(1);
        color: #000
    }

    100% {
        -ms-transform: scale(.5);
        color: #FFF
    }
}

@-o-keyframes bounce_fountainTextG {
    0% {
        -o-transform: scale(1);
        color: #000
    }

    100% {
        -o-transform: scale(.5);
        color: #FFF
    }
}

@keyframes bounce_fountainTextG {
    0% {
        transform: scale(1);
        color: #000
    }

    100% {
        transform: scale(.5);
        color: #FFF
    }
}

#followingBallsG {
    position: relative;
    width: 256px;
    height: 20px
}

.followingBallsG {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px
}

.login-wrapper {
    position: absolute;
    top: 50px;
    width: 100%;
    margin-left: 0
}

.login-wrapper.fadeOutUp {
    opacity: 0
}

.login-wrapper .login-widget {
    margin: 20px auto 0;
    width: 400px
}

@media (max-width: 480px) {
    .login-wrapper .login-widget {
        width:100%
    }
}

.login-wrapper .login-widget .widget {
    box-shadow: 0 1px 15px -4px #000;
    -moz-box-shadow: 0 1px 15px -4px #000;
    -webkit-box-shadow: 0 1px 15px -4px #000
}

/*--15. Blog --*/

.blog-container a:not(.btn) {
    color: #999;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear
}

.blog-container a:not(.btn):focus,.blog-container a:not(.btn):hover {
    color: #777;
    text-decoration: none;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear
}

.blog-container .post-like {
    float: right;
    cursor: pointer
}

.blog-container .post-like.liked {
    color: #3c8dbc
}

.blog-container .post-like.liked [class*=icon-]:before {
    content: '\f004'
}

.blog-container .post-like:hover {
    text-decoration: none;
    color: #3c8dbc
}

.popular-post img {
    padding-right: 5px;
    width: 100%;
    height: 50px;
}

.category {
    padding: 0;
    list-style: none;
    margin-bottom: 30px
}

.category li {
    border-bottom: 1px solid #ccc
}

.category li a {
    display: block;
    padding: 10px;
    color: #777;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.blog-tag,.photo-stream li,.photo-stream li a {
    display: inline-block
}

.category li a:focus,.category li a:hover {
    color: #3c8dbc;
    text-decoration: none;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.blog-tag {
    padding: 5px;
    border: 1px solid rgba(0,0,0,.2);
    background-color: #fff;
    color: #777;
    text-shadow: 0 1px 3px rgba(0,0,0,.1);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0,0,0,.25);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,.25);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.25);
    margin: 2px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.blog-tag:hover {
    text-decoration: none;
    color: #fff;
    background-color: #3c8dbc;
    text-shadow: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.photo-stream {
    list-style: none;
    padding: 0;
    margin-bottom: 20px
}

.photo-stream li a {
    border: 1px solid #3c8dbc;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.photo-stream li a:focus,.photo-stream li a:hover {
    box-shadow: 0 0 0 10px #3c8dbc inset;
    -moz-box-shadow: 0 0 0 10px #3c8dbc inset;
    -webkit-box-shadow: 0 0 0 10px #3c8dbc inset;
    opacity: .5;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.photo-stream li a img {
    width: 60px;
    height: 60px;
    float: left
}

.comment-list li {
    margin-bottom: 30px
}

.comment-list li .media-heading {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px
}

.comment-list li .media-heading a {
    color: #777;
    font-weight: 500;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

@media (max-width: 480px) {
    .share-blog {
        text-align:center
    }

    .share-blog .pull-left,.share-blog .pull-right {
        float: none!important
    }

    .comment-list li .media-heading a,.share-blog span {
        display: block
    }
}

.comment-list li .media-heading a:focus,.comment-list li .media-heading a:hover {
    text-decoration: none;
    color: #3c8dbc;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.comment-list li .media-heading small {
    float: right
}

@media (max-width: 480px) {
    .comment-list li .media-heading small {
        float:none
    }
}

/*--16. Timeline --*/

.timeline-wrapper {
    position: relative;
    padding-left: 10px;
    margin-bottom: 20px
}

.timeline-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    border: solid #e2e3e7;
    background-color: #e7eaef;
    width: 4px
}

.timeline-wrapper .timeline-date,.timeline-wrapper .timeline-start {
    display: inline-block;
    position: relative
}

.timeline-wrapper .timeline-icon {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    margin: 0 auto;
    font-size: 20px;
    line-height: 40px
}

.timeline-wrapper .timeline-info {
    position: relative;
    float: left;
    width: 65px;
    text-align: center
}

.timeline-wrapper .time {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #f1f5fc;
    padding: 5px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    color: #999;
    box-shadow: 1px 1px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.05)
}

.timeline-wrapper .timeline-panel {
    background: #fff;
    margin-left: 75px;
    border: 1px solid #f1f5fc
}

.timeline-wrapper .timeline-panel img {
    width: 200px
}

.timeline-wrapper .timeline-date {
    margin-top: 10px;
    background: #3c8dbc;
    border: 1px solid #3c8dbc;
    padding: 5px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    color: #fff;
    box-shadow: 1px 1px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.05);
    margin-bottom: 20px;
    font-weight: 700
}

.menu-grid .menu-header {
    border-bottom: 1px solid #3c485a;
    box-shadow: 0 1px 0 #48566c;
    -moz-box-shadow: 0 1px 0 #48566c;
    -webkit-box-shadow: 0 1px 0 #48566c;
    padding: 10px 20px;
    font-size: 18px
}

.menu-grid .menu-header .btn {
    color: #fff
}

.menu-grid .navbar-toggle .icon-bar {
    background: #fff
}

.menu-grid .inbox-menu {
    margin-bottom: 0;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

@media (min-width: 768px) {
    .menu-grid .inbox-menu {
        height:auto!important
    }
}

@media (max-width: 767px) {
    .menu-grid .inbox-menu {
        max-height:0
    }

    .menu-grid .inbox-menu.menu-display {
        max-height: 350px;
        height: auto;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

.menu-grid .inbox-menu>li {
    border-bottom: 1px solid #3c485a;
    box-shadow: 0 1px 0 #48566c;
    -moz-box-shadow: 0 1px 0 #48566c;
    -webkit-box-shadow: 0 1px 0 #48566c
}

.menu-grid .inbox-menu>li.active>a,.menu-grid .inbox-menu>li.active>a:focus,.menu-grid .inbox-menu>li.active>a:hover {
    background: #384354
}

.menu-grid .inbox-menu>li>a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.menu-grid .inbox-menu>li>a:focus,.menu-grid .inbox-menu>li>a:hover {
    background: #3c485a;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.menu-grid .inbox-menu>li .submenu>li {
    border-bottom: 1px solid #445166
}

.menu-grid .inbox-menu>li .submenu>li:last-child {
    border-bottom: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

.menu-grid .inbox-menu>li .submenu>li.active>a,.menu-grid .inbox-menu>li .submenu>li.active>a:focus,.menu-grid .inbox-menu>li .submenu>li.active>a:hover {
    background: #343e4e
}

.menu-grid .inbox-menu>li .submenu>li>a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    background: #3e4a5d;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

/*--17. Inbox --*/

.inbox-panel .inbox-item .detail,.inbox-panel .inbox-item .from {
    display: inline-block;
    height: 19px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle
}

.menu-grid .inbox-menu>li .submenu>li>a:focus,.menu-grid .inbox-menu>li .submenu>li>a:hover {
    background: #384354;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.inbox-panel {
    margin-bottom: 0;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0
}

.inbox-panel .inbox-item {
    cursor: pointer;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.inbox-panel .inbox-item:hover {
    background: #f7f7f7;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.inbox-panel .inbox-item.selected {
    color: #ccc;
    background: #f1f5fc;
    border: 1px solid #e4ecf9;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.inbox-panel .inbox-item.selected:hover {
    background: #f1f5fc;
    color: #ccc
}

.inbox-panel .inbox-item .not-starred:hover,.inbox-panel .inbox-item .starred {
    color: #f3ce85
}

.inbox-panel .inbox-item .from {
    width: 100px;
    font-weight: 700;
    margin-left: 10px
}

.inbox-panel .inbox-item .detail {
    width: 50%
}

@media (max-width: 480px) {
    .inbox-panel .inbox-item .detail {
        width:65%
    }
}

.inbox-panel .inbox-item .attachment {
    margin-right: 15px
}

.inbox-panel .panel-footer .pagination {
    margin: 2px 0 0
}

.inbox-panel .panel-footer .pagination li a {
    padding: 0 10px;
    background: 0 0;
    border: none
}

.inbox-panel .panel-footer .pagination li a .large {
    font-size: 140%
}

.inbox-action {
    font-weight: 700;
    background: #fff;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05)
}

.inbox-action.active {
    background: #65cea7;
    color: #fff
}

.inbox-action.active a {
    color: #fff
}

.inbox-action.active a:focus,.inbox-action.active a:hover {
    background-color: #65cea7
}

.inbox-action a {
    display: block;
    padding: 10px;
    color: #777;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.inbox-action a:focus,.inbox-action a:hover {
    text-decoration: none;
    background-color: #f2f2f2;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

/*--18. Gallery --*/

.gallery-container .gallery-item {
    display: inline-block;
    width: 33.33333%;
    float: left;
    overflow: hidden
}

@media (max-width: 1200px) {
    .gallery-container .gallery-item {
        width:50%
    }
}

@media (max-width: 600px) {
    .gallery-container .gallery-item {
        width:100%
    }
}

@media ()

.gallery-container .gallery-item .image-wrapper {
    width: 100%;
    padding-top: 60%
}

.gallery-container .gallery-item .image-wrapper img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

#wrapper .chat-wrapper,.pricing-widget {
    position: relative
}

#wrapper .chat-wrapper,.queue-widget {
    position: relative
}


/*--19. Pricing --*/

.pricing-widget {
    border: 1px solid #f1f5fc;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    cursor: pointer;
    margin: 20px 0;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.pricing-widget.active {
    z-index: 2
}

.pricing-widget:not(.pricing-title).active,.pricing-widget:not(.pricing-title):hover {
    box-shadow: 0 3px 25px -4px rgba(0,0,0,.9);
    -moz-box-shadow: 0 3px 25px -4px rgba(0,0,0,.9);
    -webkit-box-shadow: 0 3px 25px -4px rgba(0,0,0,.9);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.pricing-widget:not(.pricing-title).active .pricing-cost,.pricing-widget:not(.pricing-title):hover .pricing-cost {
    color: #999;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.pricing-widget .pricing-head {
    background: #fff;
    color: #777;
    border-bottom: 1px solid #f1f5fc;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 13px;
    min-height: 31px
}

.pricing-widget .pricing-body {
    background: #fff;
    color: #626262
}

.pricing-widget .pricing-cost {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5fc;
    color: #777;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    font-size: 18px;
    min-height: 125px
}

.pricing-widget .pricing-cost strong {
    font-size: 30px
}

.pricing-widget .pricing-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.pricing-widget .pricing-list [class*=icon-] {
    margin-right: 30px
}

.pricing-widget .pricing-list.text-center li {
    text-align: center
}

.pricing-widget .pricing-list li {
    padding: 10px;
    border-bottom: 1px solid #f1f5fc
}

.pricing-widget .pricing-list li:last-child {
    min-height: 84px;
    padding-top: 40px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-bottom: none
}

.pricing-widget .pricing-list li:last-child [class*=icon-] {
    margin-right: 5px
}

/*--20. Wrapper --*/

#wrapper .chat-wrapper .chat-sidebar {
    position: fixed;
    width: 250px;
    left: 194px;
    top: 45px;
    bottom: 0;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

@media (max-width: 767px) {
    #wrapper .chat-wrapper .chat-sidebar {
        left:-250px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

@media (max-width: 868px) and (min-width:768px) {
    #wrapper .chat-wrapper .chat-sidebar {
        left:90px!important;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

#wrapper .chat-wrapper .chat-sidebar .friend-list {
    list-style: none
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li {
    border-bottom: 1px solid #eee
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li.active a {
    background-color: #f1f5fc
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a {
    position: relative;
    display: block;
    padding: 10px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a img {
    float: left;
    width: 45px;
    height: 45px;
    margin-right: 10px
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a .friend-name,#wrapper .chat-wrapper .chat-sidebar .friend-list li a .friend-name:hover {
    color: #777
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a .last-message {
    width: 65%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a .time {
    position: absolute;
    top: 10px;
    right: 8px
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a .chat-alert {
    position: absolute;
    right: 8px;
    top: 27px;
    font-size: 10px;
    padding: 3px 5px
}

#wrapper .chat-wrapper .chat-sidebar .friend-list li a:hover {
    background-color: #eee;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

#wrapper .chat-wrapper .chat-inner {
    position: fixed;
    top: 40px;
    right: 0;
    left: 444px;
    height: 100%;
    overflow-y: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

@media (max-width: 767px) {
    #wrapper .chat-wrapper .chat-inner {
        left:0;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

@media (max-width: 868px) and (min-width:768px) {
    #wrapper .chat-wrapper .chat-inner {
        left:340px!important;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

#wrapper .chat-wrapper .chat-inner .chat-header {
    position: fixed;
    top: 45px;
    left: 444px;
    right: 0;
    padding: 0 10px;
    border-bottom: 1px solid #eee;
    z-index: 10;
    height: 40px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

@media (max-width: 767px) {
    #wrapper .chat-wrapper .chat-inner .chat-header {
        left:0;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

@media (max-width: 868px) and (min-width:768px) {
    #wrapper .chat-wrapper .chat-inner .chat-header {
        left:340px!important;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }

    .fooder-menu-description.float_left .single-food-item {
      padding-right: 0;
      margin-top: 15px;
    }
    .fooder-menu-description.float_right .single-food-item {
      padding-left: 0;
    }    
    .single-food-button {
      left: 0;
      position: inherit;
      right: auto;
      top: 3px;
    }    
    .single-food-item-desc {
      padding: 8px 25px 8px 20px;
    }    
    .single-food-item-title {
      margin-top: 11px;
    }
    .single-food-button > p {
      font-size: 20px;
    }
    .food-img {
      margin: 24px 0;
    }
    .foode-item-box::before, .foode-item-box::after {
      display: none;
    }
    .foode-item-box ul li a {
      padding: 40px 17px;
    }    
    .foode-item-box {
      height: inherit;
    }    
}

#wrapper .chat-wrapper .chat-inner .chat-header .navbar-toggle {
    float: left;
    margin-top: 0;
    color: #777
}

#wrapper .chat-wrapper .chat-inner .chat-header .navbar-toggle .notification-label {
    top: 4px;
    right: 2px
}

#wrapper .chat-wrapper .chat-inner .chat-header .btn {
    margin-top: 8px
}

#wrapper .chat-wrapper .chat-inner .chat-body {
    padding-bottom: 20px
}

#wrapper .chat-wrapper .chat-inner .chat-message {
    padding: 60px 20px 115px
}

#wrapper .chat-wrapper .chat-inner .chat-box {
    position: fixed;
    bottom: 0;
    left: 444px;
    right: 0;
    padding: 15px;
    border-top: 1px solid #eee;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

@media (max-width: 767px) {
    #wrapper .chat-wrapper .chat-inner .chat-box {
        left:0;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

@media (max-width: 868px) and (min-width:768px) {
    #wrapper .chat-wrapper .chat-inner .chat-box {
        left:340px!important;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

@media (max-width: 767px) {
    #wrapper .chat-wrapper.sidebar-display .chat-sidebar {
        left:0;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }

    #wrapper .chat-wrapper.sidebar-display .chat-inner,#wrapper .chat-wrapper.sidebar-display .chat-inner .chat-box,#wrapper .chat-wrapper.sidebar-display .chat-inner .chat-header {
        left: 250px;
        right: -250px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease
    }
}

@media (min-width: 768px) {
    #wrapper.sidebar-mini .chat-wrapper .chat-sidebar {
        left:90px!important
    }

    #wrapper.sidebar-mini .chat-wrapper .chat-inner,#wrapper.sidebar-mini .chat-wrapper .chat-inner .chat-box,#wrapper.sidebar-mini .chat-wrapper .chat-inner .chat-header {
        left: 340px!important
    }
}

.gallery-header {
    padding: 10px;
    background: #e6e6e6
}

@media (max-width: 767px) {
    #wrapper.sidebar-display .chat-wrapper.sidebar-display .chat-sidebar {
        left:194px
    }

    #wrapper.sidebar-display .chat-wrapper.sidebar-display .chat-inner,#wrapper.sidebar-display .chat-wrapper.sidebar-display .chat-inner .chat-box,#wrapper.sidebar-display .chat-wrapper.sidebar-display .chat-inner .chat-header {
        left: 444px;
        right: -444px
    }

    #wrapper.sidebar-display .chat-wrapper .chat-inner,#wrapper.sidebar-display .chat-wrapper .chat-inner .chat-box,#wrapper.sidebar-display .chat-wrapper .chat-inner .chat-header {
        left: 194px;
        right: -194px
    }

    #movieSlider {
        margin-bottom: 20px
    }
}

/*--21. Movie Slider --*/

#movieSlider .carousel-inner .item {
    overflow: hidden;
    opacity: 0;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease
}

@media (max-width: 400px) {
    #movieSlider .carousel-inner .item {
        height:200px
    }
}

@media (min-width: 401px) and (max-width:480px) {
    #movieSlider .carousel-inner .item {
        height:250px
    }

    #movieSlider .carousel-inner .item h2 {
        font-size: 17px
    }
}

@media (min-width: 481px) and (max-width:979px) {
    #movieSlider .carousel-inner .item {
        height:300px
    }
}

@media (min-width: 980px) {
    #movieSlider .carousel-inner .item {
        height:350px
    }
}

#movieSlider .carousel-inner .item.active {
    opacity: 1;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease
}

#movieSlider .carousel-inner .item.left.active {
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease
}

#movieSlider .carousel-inner .item.left.next {
    opacity: 1;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease
}

#movieSlider .carousel-inner .item.right.active {
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease
}

#movieSlider .carousel-inner .item.right.prev {
    opacity: 1;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease
}

#movieSlider .carousel-inner .item img {
    position: absolute;
    left: 0;
    width: 100%
}

@media (min-width: 1200px) {
    #movieSlider .carousel-inner .item img {
        top:-50px
    }
}

#movieSlider .carousel-control {
    background-image: none;
    z-index: 2
}

#movieSlider .carousel-control:focus,#movieSlider .carousel-control:hover {
    opacity: 1
}

#movieSlider .carousel-control span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-block
}

#featuredMovie {
    height: 350px
}

@media (max-width: 767px) {
    #featuredMovie {
        height:auto
    }
}

@media (min-width: 768px) and (max-width:979px) {
    #featuredMovie {
        height:300px
    }
}

@media (min-width: 980px) {
    #featuredMovie {
        height:350px
    }
}

.navbar-nav>li {
    border-bottom: 2px solid transparent;
    transition: border-color .4s ease;
    -webkit-transition: border-color .4s ease;
    -moz-transition: border-color .4s ease;
    -ms-transition: border-color .4s ease;
    -o-transition: border-color .4s ease
}

.navbar-nav>li.active {
    border-bottom: 2px solid #3c8dbc
}

.navbar-nav>li:focus,.navbar-nav>li:hover {
    border-bottom-color: #3c8dbc;
    transition: border-color .4s ease;
    -webkit-transition: border-color .4s ease;
    -moz-transition: border-color .4s ease;
    -ms-transition: border-color .4s ease;
    -o-transition: border-color .4s ease
}

.movie-news {
    list-style: none
}

.movie-news li {
    display: block;
    margin-bottom: 10px;
    padding: 0 15px;
    border-bottom: 1px solid #1a1a1a
}

.movie-news li img {
    float: left;
    width: 130px;
    margin-right: 15px
}

.movie-news li .news-wrapper .news-header {
    color: #3c8dbc;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px
}

.jcarousel-wrapper {
    border: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin-bottom: 0
}

.jcarousel-wrapper .jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto
}

.jcarousel-wrapper .jcarousel>ul>li {
    position: relative;
    float: left;
    border-color: transparent;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px
}

.jcarousel-wrapper .jcarousel>ul>li a {
    display: block;
    padding: 10px 15px
}

.jcarousel-wrapper .jcarousel>ul>li ul {
    width: auto
}

.jcarousel-wrapper .jcarousel>ul>li ul>li {
    float: none;
    width: auto;
    height: auto
}

.movie-jcarousel>ul>li {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.movie-jcarousel>ul>li:hover {
    background: rgba(0,0,0,.15);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.movie-list {
    list-style: none
}

.movie-list li {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #1a1a1a
}

.movie-list li:last-child {
    border-bottom: none
}

.movie-list li img {
    float: left;
    width: 70px;
    margin-right: 10px
}

.jcarousel-control-next,.jcarousel-control-prev {
    top: -40px;
    width: 25px;
    height: 25px;
    line-height: 23px;
    text-shadow: none
}

.jcarousel-control-next {
    right: 0;
    background-color: #111;
    color: #777;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.jcarousel-control-next:hover {
    background-color: #3c8dbc;
    color: #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.jcarousel-control-prev {
    right: 32px;
    left: auto;
    background-color: #111;
    color: #777;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.jcarousel-control-prev:hover {
    background-color: #3c8dbc;
    color: #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

/*--22. LockScreen --*/

#lockScreen {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center
}

#lockScreen.in .modal-dialog {
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out
}

#lockScreen .modal-dialog {
    display: table-cell;
    width: 270px!important;
    vertical-align: middle;
    transform: translate(0,-40px);
    -webkit-transform: translate(0,-40px);
    -moz-transform: translate(0,-40px);
    -ms-transform: translate(0,-40px);
    -o-transform: translate(0,-40px)
}

#lockScreen .modal-dialog .modal-content {
    background-color: transparent;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border: none
}

#lockScreen .modal-dialog .modal-content .input-group {
    width: 270px;
    margin: 0 auto
}

#lockScreen .lock-screen-img {
    text-align: center
}

#lockScreen .lock-screen-img img {
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
    width: 70px;
    height: 70px
}

/*--24. Queue --*/

.queue-widget {
    border: 1px solid #f1f5fc;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    cursor: pointer;
    margin: 10px 0;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.queue-widget-size
{
  min-height: 461px; 
  background: #fff;
}

.queue-widget.active {
    z-index: 2
}

.queue-widget:not(.queue-title).active,.queue-widget:not(.queue-title):hover {
    box-shadow: 0 3px 25px -4px rgba(0,0,0,.9);
    -moz-box-shadow: 0 3px 25px -4px rgba(0,0,0,.9);
    -webkit-box-shadow: 0 3px 25px -4px rgba(0,0,0,.9);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease
}

.queue-widget:not(.queue-title).active .queue-order,.queue-widget:not(.queue-title):hover .queue-order {
    color: #999;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.queue-widget .queue-head {
    background: #fff;
    color: #777;
    border-bottom: 1px solid #f1f5fc;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 26px;
    min-height: 31px
}

.queue-widget .queue-body {
    background: #fff;
    color: #626262
}

.queue-widget .queue-order {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5fc;
    color: #777;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    font-size: 18px;
    min-height: 100px
}

.queue-widget .queue-order strong {
    font-size: 30px;
    color:black;
}

.queue-widget .queue-order span {
    font-size: 20px;
    color:#585858;
    font-weight: bold;
}

.queue-widget .queue-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.queue-widget .queue-list [class*=icon-] {
    margin-right: 30px
}

.queue-widget .queue-list.text-center li {
    text-align: center;
    font-size: 22px;
}

.queue-widget .queue-list li {
    padding: 7px;
    border-bottom: 1px solid #f1f5fc
}

.queue-widget .queue-list li:first-child {
  font-weight: bold; 
  color:#d45454;
  background-color: #f3f3f3;
  border: 1px dashed #a7a7a8;
}

/*
.queue-widget .queue-list li:last-child {
    min-height: 84px;
    padding-top: 40px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-bottom: none
}
*/

.queue-widget .queue-list li:last-child [class*=icon-] {
    margin-right: 5px
}


@media (max-width: 480px) {
    #gritter-notice-wrapper {
        right:0
    }
}

.custom-popup {
    background-color: rgba(0,0,0,.9);
    color: #777;
    text-align: center!important;
    padding: 15px;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.dd,.dd-list {
    display: block;
    padding: 0;
    list-style: none;
    margin: 0;
    position: relative
}

.custom-popup.full-width {
    width: 100%
}

.custom-popup.light {
    background-color: #f9f9f9
}

.popup_visible .custom-popup {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.parsley-error-list {
    list-style: none
}

.parsley-error {
    border-color: #f53535;
    color: #b94a48
}

.parsley-error:focus {
    border-color: #f53535!important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 2px rgba(245,53,53,.6)!important;
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 2px rgba(245,53,53,.6)!important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 2px rgba(245,53,53,.6)!important
}

.dd-handle,.dd3-content {
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #eee
}

.dd {
    max-width: 600px;
    font-size: 13px
}

.dd-list .dd-list {
    padding-left: 30px
}

.dd-collapsed .dd-list {
    display: none
}

.dd-empty,.dd-item,.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px
}

.dd-handle {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px;
    color: #777;
    background: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dd-handle:hover,.dd3-content {
    transition: all .2s ease;
    color: #777
}

.dd-handle:hover {
    background: #f7f7f7;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dd-item>button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: 0 0;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: 700
}

.dd-item>button:before {
    content: '+';
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    text-indent: 0
}

.dd-item>button[data-action=collapse]:before {
    content: '-'
}

.dd-empty,.dd-placeholder {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff),-webkit-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff);
    background-image: -moz-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff),-moz-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff);
    background-image: linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff),linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff);
    background-size: 60px 60px;
    background-position: 0 0,30px 30px
}

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999
}

.dd-dragel>.dd-item .dd-handle {
    margin-top: 0
}

.dd-dragel .dd-handle {
    box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1)
}

.nestable-lists {
    display: block;
    clear: both;
    padding: 30px 0;
    width: 100%;
    border: 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd
}

#nestable-menu {
    padding: 0;
    margin: 20px 0
}

.dd-hover>.dd-handle {
    background: #2ea8e5!important
}

.dd3-content {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px 5px 40px;
    background: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dd3-content:hover {
    color: #777;
    background: #f7f7f7;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.dd-dragel>.dd3-item>.dd3-content {
    margin: 0
}

.dd3-item>button {
    margin-left: 30px
}

.dd3-handle {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dd3-handle:before {
    content: 'Ã¢â€°Â¡';
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    width: 100%;
    text-align: center;
    text-indent: 0;
    color: #777;
    font-size: 20px;
    font-weight: 400
}

.chosen-container,.tagsinput {
    width: 100%!important
}

.dd3-handle:hover {
    background: #eee
}

.spinner .input-group-btn>.btn+.btn {
    margin-left: 0;
    height: 18px;
    border-radius: 0 0 2px!important;
    -moz-border-radius: 0 0 2px!important;
    -webkit-border-radius: 0 0 2px!important
}

.spinner .input-group-btn .btn {
    height: 17px;
    line-height: 1px;
    border-radius: 0 2px 0 0!important;
    -moz-border-radius: 0 2px 0 0!important;
    -webkit-border-radius: 0 2px 0 0!important
}

.chosen-container-multi .chosen-choices li.search-field input[type=text],.chosen-container-single .chosen-single {
    height: 25px
}

.dropzone .dz-default.dz-message {
    background-image: none;
    width: 100%;
    left: 0;
    margin-left: auto;
    text-align: center
}

.dropzone .dz-default.dz-message span {
    display: inline;
    font-size: 30px
}

.minicolors-theme-default .minicolors-input {
    height: auto
}

.minicolors-theme-default.minicolors-position-right .minicolors-input {
    padding-left: 12px
}

.seperator {
    padding-top: 10px
}

.block {
    display: block!important
}

.inline-block {
    display: inline-block!important
}

.inline {
    display: inline!important
}

.relative {
    position: relative
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.scrollable {
    overflow-y: auto
}

.overflow-visible {
    overflow: visible
}

.overflow-hidden {
    overflow: hidden
}

.circle {
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em
}

.no-padding {
    padding: 0!important
}

.p-top-xs {
    padding-top: 5px
}

.p-top-sm {
    padding-top: 10px
}

.p-top-md {
    padding-top: 20px
}

.padding-xs {
    padding: 5px!important
}

.padding-sm {
    padding: 10px!important
}

.padding-md {
    padding: 20px!important
}

.padding-lg {
    padding: 40px!important
}

.paddingLR-xs {
    padding: 0 5px
}

.paddingLR-sm {
    padding: 0 10px
}

.paddingLR-md {
    padding: 0 20px
}

.paddingLR-lg {
    padding: 0 40px
}

.paddingTB-xs {
    padding: 5px 0
}

.paddingTB-md {
    padding: 20px 0
}

.paddingTB-lg {
    padding: 40px 0
}

.no-margin {
    margin: 0!important
}

.margin-xs {
    margin: 5px!important
}

.margin-sm {
    margin: 10px!important
}

.margin-md {
    margin: 20px!important
}

.margin-lg {
    margin: 40px!important
}

.m-top-none {
    margin-top: 0
}

.m-top-xs {
    margin-top: 5px
}

.m-top-sm {
    margin-top: 10px
}

.m-top-md {
    margin-top: 20px
}

.m-top-lg {
    margin-top: 40px
}

.m-left-xs {
    margin-left: 5px
}

.m-left-sm {
    margin-left: 10px
}

.m-left-md {
    margin-left: 20px
}

.m-left-lg {
    margin-left: 40px
}

.m-right-xs {
    margin-right: 5px
}

.m-right-sm {
    margin-right: 10px
}

.m-right-md {
    margin-right: 20px
}

.m-right-lg {
    margin-right: 40px
}

.m-bottom-xs {
    margin-bottom: 5px
}

.m-bottom-sm {
    margin-bottom: 10px
}

.m-bottom-md {
    margin-bottom: 20px
}

.m-bottom-lg {
    margin-bottom: 40px
}

.m-bottom-none {
    margin-bottom: 0
}

.no-shadow {
    box-shadow: none!important;
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important
}

.middle {
    vertical-align: middle
}

.rounded {
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px
}

.no-rounded {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0
}

.no-border {
    border: none!important
}

.border {
    border: 1px solid #eee
}

.border-top {
    border-top: 1px solid #eee
}

.border-left {
    border-left: 1px solid #eee
}

.border-right {
    border-right: 1px solid #eee
}

.border-bottom {
    border-bottom: 1px solid #eee
}

.font-14 {
    font-size: 14px!important
}

.font-15 {
    font-size: 15px!important
}

.font-16 {
    font-size: 16px!important
}

.width-100 {
    width: 100%
}

.box-sizing {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.primary-font {
    color: #3c8dbc
}

.text-white {
    color: #fff
}

.text-primary {
    color: #424f63
}

.text-info {
    color: #6bafbd
}

.text-success {
    color: #3d7c3e
}

.text-warning {
    color: #f3ce85
}

.text-danger {
    color: #fc8675
}

.bg-primary,.bg-primary a {
    color: #BECFDF
}

.font-normal {
    font-weight: 400!important
}

.bg-white {
    background-color: #fff
}

.bg-light {
    background-color: #f1f5fc
}

.bg-dark {
    background-color: #222
}

.bg-grey {
    background-color: #eee;
    text-shadow: 0 1px #fff
}

.bg-primary {
    background-color: #424f63
}

.bg-info,.bg-primary a:focus,.bg-primary a:hover,.bg-success {
    color: #fff
}

.bg-warning {
    background-color: #f3ce85;
    color: #fff
}

.bg-info {
    background-color: #6bafbd
}

.bg-success {
    background-color: #65cea7
}

.bg-danger {
    background-color: #fc8675!important;
    color: #fff!important
}

.bg-success-dark {
    background-color: #2d936d !important;
    color: #fff!important
}

.bg-danger-dark {
    background-color: #d95643!important;
    color: #fff!important
}

.bg-warning-dark {
    background-color: #ddac4c;
    color: #fff !important;
}



.bg-coop {
    background-color: #4c9c65!important;
    color: #fff!important
}

.bg-miles {
    background-color: #405c88!important;
    color: #fff!important
}

.nautic-miles-icon
{
    margin-right: 80px;
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 20px;
    opacity: .3;
}

.no-animation * {
    transform: none!important;
    -webkit-transform: none!important;
    -moz-transform: none!important;
    -ms-transform: none!important;
    -o-transform: none!important
}

.transition-delay1 {
    transition-delay: .5s!important;
    -webkit-transition-delay: .5s!important;
    -moz-transition-delay: .5s!important;
    -ms-transition-delay: .5s!important;
    -o-transition-delay: .5s!important
}

.transition-delay2 {
    transition-delay: 1s!important;
    -webkit-transition-delay: 1s!important;
    -moz-transition-delay: 1s!important;
    -ms-transition-delay: 1s!important;
    -o-transition-delay: 1s!important
}

.transition-delay3 {
    transition-delay: 1.5s!important;
    -webkit-transition-delay: 1.5s!important;
    -moz-transition-delay: 1.5s!important;
    -ms-transition-delay: 1.5s!important;
    -o-transition-delay: 1.5s!important
}

@-moz-keyframes bounce_followingBallsG {
    0%,100% {
        left: 0;
        background-color: #000
    }

    50% {
        left: 236px;
        background-color: #fff
    }
}

@-webkit-keyframes bounce_followingBallsG {
    0%,100% {
        left: 0;
        background-color: #000
    }

    50% {
        left: 236px;
        background-color: #fff
    }
}

@-ms-keyframes bounce_followingBallsG {
    0%,100% {
        left: 0;
        background-color: #000
    }

    50% {
        left: 236px;
        background-color: #fff
    }
}

@-o-keyframes bounce_followingBallsG {
    0%,100% {
        left: 0;
        background-color: #000
    }

    50% {
        left: 236px;
        background-color: #fff
    }
}

@keyframes bounce_followingBallsG {
    0%,100% {
        left: 0;
        background-color: #000
    }

    50% {
        left: 236px;
        background-color: #fff
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0)
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -ms-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0)
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-ms-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -ms-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-ms-keyframes fadeInRight {
    0% {
        opacity: 0;
        -ms-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateX(0)
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInUpLarge {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInUpLarge {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUpLarge {
    0% {
        opacity: 0;
        -moz-transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-ms-keyframes fadeInUpLarge {
    0% {
        opacity: 0;
        -ms-transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0)
    }
}

@-o-keyframes fadeInUpLarge {
    0% {
        opacity: 0;
        -o-transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDownLarge {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDownLarge {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDownLarge {
    0% {
        opacity: 0;
        -moz-transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-ms-keyframes fadeInDownLarge {
    0% {
        opacity: 0;
        -ms-transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0)
    }
}

@-o-keyframes fadeInDownLarge {
    0% {
        opacity: 0;
        -o-transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInLeftLarge {
    0% {
        opacity: 0;
        transform: translateX(100px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInLeftLarge {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeftLarge {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-ms-keyframes fadeInLeftLarge {
    0% {
        opacity: 0;
        -ms-transform: translateX(100px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeftLarge {
    0% {
        opacity: 0;
        -o-transform: translateX(100px)
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRightLarge {
    0% {
        opacity: 0;
        transform: translateX(-100px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRightLarge {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRightLarge {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-ms-keyframes fadeInRightLarge {
    0% {
        opacity: 0;
        -ms-transform: translateX(-100px)
    }

    100% {
        opacity: 1;
        -ms-transform: translateX(0)
    }
}

@-o-keyframes fadeInRightLarge {
    0% {
        opacity: 0;
        -o-transform: translateX(-100px)
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@-webkit-keyframes slidedown {
    0% {
        max-height: 0
    }

    100% {
        max-height: 500px
    }
}

@-moz-keyframes slidedown {
    0% {
        max-height: 0
    }

    100% {
        max-height: 500px
    }
}

@-ms-keyframes slidedown {
    0% {
        max-height: 0
    }

    100% {
        max-height: 500px
    }
}

@-o-keyframes slidedown {
    0% {
        max-height: 0
    }

    100% {
        max-height: 500px
    }
}

@keyframes slidedown {
    0% {
        max-height: 0
    }

    100% {
        max-height: 500px
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInRotate {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px) rotate(-60deg)
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeInRotate {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px) rotate(-60deg)
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes fadeInRotate {
    0% {
        opacity: 0;
        -ms-transform: translateX(-20px) rotate(-60deg)
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes fadeInRotate {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px) rotate(-60deg)
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: translateX(-20px) rotate(-60deg)
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp100 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px) scale(.6)
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeInUp100 {
    0% {
        opacity: 0;
        -moz-transform: translateY(100px) scale(.6)
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes fadeInUp100 {
    0% {
        opacity: 0;
        -ms-transform: translateY(100px) scale(.6)
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes fadeInUp100 {
    0% {
        opacity: 0;
        -o-transform: translateY(100px) scale(.6)
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeInUp100 {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(.6)
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes shadow-pulse {
    0%,100% {
        box-shadow: 0 0 3px rgba(50,50,50,.5);
        -moz-box-shadow: 0 0 3px rgba(50,50,50,.5);
        -webkit-box-shadow: 0 0 3px rgba(50,50,50,.5)
    }

    50% {
        box-shadow: 0 0 6px #323232;
        -moz-box-shadow: 0 0 6px #323232;
        -webkit-box-shadow: 0 0 6px #323232
    }
}

@-moz-keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px transparent
    }

    50% {
        box-shadow: 0 0 6px #323232;
        -moz-box-shadow: 0 0 6px #323232;
        -webkit-box-shadow: 0 0 6px #323232
    }

    100% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px rgba(50,50,50,0)
    }
}

@-ms-keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px transparent
    }

    50% {
        box-shadow: 0 0 6px #323232;
        -moz-box-shadow: 0 0 6px #323232;
        -webkit-box-shadow: 0 0 6px #323232
    }

    100% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px rgba(50,50,50,0)
    }
}

@-o-keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px transparent
    }

    50% {
        box-shadow: 0 0 6px #323232;
        -moz-box-shadow: 0 0 6px #323232;
        -webkit-box-shadow: 0 0 6px #323232
    }

    100% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px rgba(50,50,50,0)
    }
}

@keyframes shadow-pulse {
    0%,100% {
        box-shadow: 0 0 3px transparent;
        -moz-box-shadow: 0 0 3px transparent;
        -webkit-box-shadow: 0 0 3px transparent
    }

    50% {
        box-shadow: 0 0 6px #323232;
        -moz-box-shadow: 0 0 6px #323232;
        -webkit-box-shadow: 0 0 6px #323232
    }
}

@keyframes text-moving {
    0% {
        left: 110%
    }

    40%,50%,60%,70% {
        left: 0
    }

    100% {
        left: -150%
    }
}

@-webkit-keyframes text-moving {
    0% {
        left: 110%
    }

    40%,50%,60%,70% {
        left: 0
    }

    100% {
        left: -150%
    }
}

@-moz-keyframes text-moving {
    0% {
        left: 110%
    }

    40%,50%,60%,70% {
        left: 0
    }

    100% {
        left: -150%
    }
}

@-ms-keyframes text-moving {
    0% {
        left: 110%
    }

    40%,50%,60%,70% {
        left: 0
    }

    100% {
        left: -150%
    }
}

@-o-keyframes text-moving {
    0% {
        left: 110%
    }

    40%,50%,60%,70% {
        left: 0
    }

    100% {
        left: -150%
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.7)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05)
    }

    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.7)
    }

    50% {
        opacity: 1;
        -moz-transform: scale(1.05)
    }

    100% {
        -moz-transform: scale(1)
    }
}

@-ms-keyframes bounceIn {
    0% {
        opacity: 0;
        -ms-transform: scale(.7)
    }

    50% {
        opacity: 1;
        -ms-transform: scale(1.1)
    }

    100% {
        -ms-transform: scale(1)
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.7)
    }

    50% {
        opacity: 1;
        -o-transform: scale(1.1)
    }

    100% {
        -o-transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.7)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-1000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-20px)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-1000px)
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(30px)
    }

    80% {
        -moz-transform: translateY(-20%)
    }

    100% {
        -moz-transform: translateY(0)
    }
}

@-ms-keyframes bounceInDown {
    0% {
        opacity: 0;
        -ms-transform: translateY(-1000px)
    }

    60% {
        opacity: 1;
        -ms-transform: translateY(30px)
    }

    80% {
        -ms-transform: translateY(-20px)
    }

    100% {
        -ms-transform: translateY(0)
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-1000px)
    }

    60% {
        opacity: 1;
        -o-transform: translateY(30px)
    }

    80% {
        -o-transform: translateY(-20%)
    }

    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-1000px)
    }

    60% {
        opacity: 1;
        transform: translateY(30px)
    }

    80% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes bounceInDownSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20px)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes bounceInDownSmall {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100px)
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(20px)
    }

    100% {
        -moz-transform: translateY(0)
    }
}

@-ms-keyframes bounceInDownSmall {
    0% {
        opacity: 0;
        -ms-transform: translateY(-100px)
    }

    60% {
        opacity: 1;
        -ms-transform: translateY(20px)
    }

    100% {
        -ms-transform: translateY(0)
    }
}

@-o-keyframes bounceInDownSmall {
    0% {
        opacity: 0;
        -o-transform: translateY(-100px)
    }

    60% {
        opacity: 1;
        -o-transform: translateY(20px)
    }

    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInDownSmall {
    0% {
        opacity: 0;
        transform: translateY(-100px)
    }

    60% {
        opacity: 1;
        transform: translateY(20px)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-40px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-50px)
    }
}

@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(-40px)
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-50px)
    }
}

@-ms-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -ms-transform: translateY(0)
    }

    50% {
        -ms-transform: translateY(-40px)
    }

    100% {
        opacity: 0;
        -ms-transform: translateY(-50px)
    }
}

@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -o-transform: translateY(0)
    }

    50% {
        -o-transform: translateY(-40px)
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-50px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    50% {
        transform: translateY(-40px)
    }

    100% {
        opacity: 0;
        transform: translateY(-50px)
    }
}

@-webkit-keyframes progress-start {
    0% {
        width: 0
    }
}

@-moz-keyframes progress-start {
    0% {
        width: 0
    }
}

@-ms-keyframes progress-start {
    0% {
        width: 0
    }
}

@-o-keyframes progress-start {
    0% {
        width: 0
    }
}

@keyframes progress-start {
    0% {
        width: 0
    }
}

@-webkit-keyframes flipInH {
    0% {
        -webkit-transform: perspective(1000px) rotateY(90deg);
        opacity: 0
    }

    33% {
        -webkit-transform: perspective(1000px) rotateY(-10deg)
    }

    66% {
        -webkit-transform: perspective(1000px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(1000px) rotateY(0);
        opacity: 1
    }
}

@-moz-keyframes flipInH {
    0% {
        -moz-transform: perspective(1000px) rotateY(90deg);
        opacity: 0
    }

    33% {
        -moz-transform: perspective(1000px) rotateY(-10deg)
    }

    66% {
        -moz-transform: perspective(1000px) rotateY(10deg)
    }

    100% {
        -moz-transform: perspective(1000px) rotateY(0);
        opacity: 1
    }
}

@-ms-keyframes flipInH {
    0% {
        -ms-transform: perspective(1000px) rotateY(90deg);
        opacity: 0
    }

    33% {
        -ms-transform: perspective(1000px) rotateY(-10deg)
    }

    66% {
        -ms-transform: perspective(1000px) rotateY(10deg)
    }

    100% {
        -ms-transform: perspective(1000px) rotateY(0);
        opacity: 1
    }
}

@-o-keyframes flipInH {
    0% {
        -o-transform: perspective(1000px) rotateY(90deg);
        opacity: 0
    }

    33% {
        -o-transform: perspective(1000px) rotateY(-10deg)
    }

    66% {
        -o-transform: perspective(1000px) rotateY(10deg)
    }

    100% {
        -o-transform: perspective(1000px) rotateY(0);
        opacity: 1
    }
}

@keyframes flipInH {
    0% {
        transform: perspective(1000px) rotateY(90deg);
        opacity: 0
    }

    33% {
        transform: perspective(1000px) rotateY(-10deg)
    }

    66% {
        transform: perspective(1000px) rotateY(10deg)
    }

    100% {
        transform: perspective(1000px) rotateY(0);
        opacity: 1
    }
}

@-webkit-keyframes flipInV {
    0% {
        -webkit-transform: perspective(1000px) rotateX(90deg);
        opacity: 0
    }

    33% {
        -webkit-transform: perspective(1000px) rotateX(-10deg)
    }

    66% {
        -webkit-transform: perspective(1000px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(1000px) rotateX(0);
        opacity: 1
    }
}

@-moz-keyframes flipInV {
    0% {
        -moz-transform: perspective(1000px) rotateX(90deg);
        opacity: 0
    }

    33% {
        -moz-transform: perspective(1000px) rotateX(-10deg)
    }

    66% {
        -moz-transform: perspective(1000px) rotateX(10deg)
    }

    100% {
        -moz-transform: perspective(1000px) rotateX(0);
        opacity: 1
    }
}

@-ms-keyframes flipInV {
    0% {
        -ms-transform: perspective(1000px) rotateX(90deg);
        opacity: 0
    }

    33% {
        -ms-transform: perspective(1000px) rotateX(-10deg)
    }

    66% {
        -ms-transform: perspective(1000px) rotateX(10deg)
    }

    100% {
        -ms-transform: perspective(1000px) rotateX(0);
        opacity: 1
    }
}

@-o-keyframes flipInV {
    0% {
        -o-transform: perspective(1000px) rotateX(90deg);
        opacity: 0
    }

    33% {
        -o-transform: perspective(1000px) rotateX(-10deg)
    }

    66% {
        -o-transform: perspective(1000px) rotateX(10deg)
    }

    100% {
        -o-transform: perspective(1000px) rotateX(0);
        opacity: 1
    }
}

@keyframes flipInV {
    0% {
        transform: perspective(1000px) rotateX(90deg);
        opacity: 0
    }

    33% {
        transform: perspective(1000px) rotateX(-10deg)
    }

    66% {
        transform: perspective(1000px) rotateX(10deg)
    }

    100% {
        transform: perspective(1000px) rotateX(0);
        opacity: 1
    }
}

@-webkit-keyframes text-color-animation {
    50% {
        color: #fff
    }
}

@-moz-keyframes text-color-animation {
    50% {
        color: #fff
    }
}

@-ms-keyframes text-color-animation {
    50% {
        color: #fff
    }
}

@-o-keyframes text-color-animation {
    50% {
        color: #fff
    }
}

@keyframes text-color-animation {
    50% {
        color: #fff
    }
}