/* !
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@keyframes rubberBand {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(.75);
    -ms-transform: scaleX(1.25) scaleY(.75);
    transform: scaleX(1.25) scaleY(.75);
  }
  40% {
    -webkit-transform: scaleX(.75) scaleY(1.25);
    -ms-transform: scaleX(.75) scaleY(1.25);
    transform: scaleX(.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(.85);
    -ms-transform: scaleX(1.15) scaleY(.85);
    transform: scaleX(1.15) scaleY(.85);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(.9) rotate(-3deg);
    -ms-transform: scale(.9) rotate(-3deg);
    transform: scale(.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@keyframes wobble {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0);
    -ms-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

.flipInY, .flipOutX {
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0);
    -ms-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

.flipInY {
  backface-visibility: visible!important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
    -ms-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  backface-visibility: visible!important;
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -ms-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0) skewX(-15deg);
    -ms-transform: translateX(0) skewX(-15deg);
    transform: translateX(0) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) skewX(0);
    -ms-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
    -ms-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    -ms-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    -ms-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

\ {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row:before, .row:after {
}

.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width:991px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
}

@media (min-width:991px) {
  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width:991px) {
  .col-sm-6 {
    width: 50%;
  }
}

@media (min-width:991px) {
  .col-sm-4 {
    width: 33.33333333%;
  }
}

@media (min-width:992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
}

@media (min-width:992px) {
  .col-md-12 {
    width: 100%;
  }
}

@media (min-width:992px) {
  .col-md-8 {
    width: 66.66666667%;
  }
}

@media (min-width:992px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width:992px) {
  .col-md-4 {
    width: 33.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
}

@media (min-width:1200px) {
  .col-lg-8 {
    width: 66.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-4 {
    width: 33.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-6 {
    right: 50%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-3 {
    right: 25%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-pull-0 {
    right: auto;
  }
}

@media (min-width:1200px) {
  .col-lg-push-12 {
    left: 100%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-11 {
    left: 91.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-10 {
    left: 83.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-9 {
    left: 75%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-8 {
    left: 66.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-7 {
    left: 58.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-6 {
    left: 50%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-5 {
    left: 41.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-4 {
    left: 33.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-3 {
    left: 25%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-2 {
    left: 16.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-1 {
    left: 8.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-push-0 {
    left: auto;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-9 {
    margin-left: 75%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-6 {
    margin-left: 50%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-3 {
    margin-left: 25%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
}

@media (min-width:1200px) {
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none!important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none!important;
}

@media (max-width:991px) {
  .visible-xs {
    display: block!important;
  }
}

@media (max-width:991px) {
  table.visible-xs {
    display: table;
  }
}

@media (max-width:991px) {
  tr.visible-xs {
    display: table-row!important;
  }
}

@media (max-width:991px) {
  th.visible-xs, td.visible-xs {
    display: table-cell!important;
  }
}

@media (max-width:991px) {
  .visible-xs-block {
    display: block!important;
  }
}

@media (max-width:991px) {
  .visible-xs-inline {
    display: inline!important;
  }
}

@media (max-width:991px) {
  .visible-xs-inline-block {
    display: inline-block!important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  tr.visible-md {
    display: table-row!important;
  }
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td, th {
  padding: 0;
}

table {
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width:991px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
}

@media screen and (max-width:991px) {
  .table-responsive > .table {
    margin-bottom: 0;
  }
}

@media screen and (max-width:991px) {
  .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width:991px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width:991px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
  }
}

@media (min-width:991px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.row-5 {
  margin-right: -5px;
  margin-left: -5px;
}

.row-15 {
  margin-right: -15px;
  margin-left: -15px;
}

.row-15 > .col-xs-1, .row-15 > .col-xs-2, .row-15 > .col-xs-3, .row-15 > .col-xs-4, .row-15 > .col-xs-5, .row-15 > .col-xs-6, .row-15 > .col-xs-7, .row-15 > .col-xs-8, .row-15 > .col-xs-9, .row-15 > .col-xs-10, .row-15 > .col-xs-11, .row-15 > .col-xs-12, .row-15 > .col-sm-1, .row-15 > .col-sm-2, .row-15 > .col-sm-3, .row-15 > .col-sm-4, .row-15 > .col-sm-5, .row-15 > .col-sm-6, .row-15 > .col-sm-7, .row-15 > .col-sm-8, .row-15 > .col-sm-9, .row-15 > .col-sm-10, .row-15 > .col-sm-11, .row-15 > .col-sm-12, .row-15 > .col-md-1, .row-15 > .col-md-2, .row-15 > .col-md-3, .row-15 > .col-md-4, .row-15 > .col-md-5, .row-15 > .col-md-6, .row-15 > .col-md-7, .row-15 > .col-md-8, .row-15 > .col-md-9, .row-15 > .col-md-10, .row-15 > .col-md-11, .row-15 > .col-md-12, .row-15 > .col-lg-1, .row-15 > .col-lg-2, .row-15 > .col-lg-3, .row-15 > .col-lg-4, .row-15 > .col-lg-5, .row-15 > .col-lg-6, .row-15 > .col-lg-7, .row-15 > .col-lg-8, .row-15 > .col-lg-9, .row-15 > .col-lg-10, .row-15 > .col-lg-11, .row-15 > .col-lg-12 {
  padding-right: 15px;
  padding-left: 15px;
}

.row-20 {
  margin-right: -20px;
  margin-left: -20px;
}

.row-25 {
  margin-right: -25px;
  margin-left: -25px;
}

.row-25 > .col-xs-1, .row-25 > .col-xs-2, .row-25 > .col-xs-3, .row-25 > .col-xs-4, .row-25 > .col-xs-5, .row-25 > .col-xs-6, .row-25 > .col-xs-7, .row-25 > .col-xs-8, .row-25 > .col-xs-9, .row-25 > .col-xs-10, .row-25 > .col-xs-11, .row-25 > .col-xs-12, .row-25 > .col-sm-1, .row-25 > .col-sm-2, .row-25 > .col-sm-3, .row-25 > .col-sm-4, .row-25 > .col-sm-5, .row-25 > .col-sm-6, .row-25 > .col-sm-7, .row-25 > .col-sm-8, .row-25 > .col-sm-9, .row-25 > .col-sm-10, .row-25 > .col-sm-11, .row-25 > .col-sm-12, .row-25 > .col-md-1, .row-25 > .col-md-2, .row-25 > .col-md-3, .row-25 > .col-md-4, .row-25 > .col-md-5, .row-25 > .col-md-6, .row-25 > .col-md-7, .row-25 > .col-md-8, .row-25 > .col-md-9, .row-25 > .col-md-10, .row-25 > .col-md-11, .row-25 > .col-md-12, .row-25 > .col-lg-1, .row-25 > .col-lg-2, .row-25 > .col-lg-3, .row-25 > .col-lg-4, .row-25 > .col-lg-5, .row-25 > .col-lg-6, .row-25 > .col-lg-7, .row-25 > .col-lg-8, .row-25 > .col-lg-9, .row-25 > .col-lg-10, .row-25 > .col-lg-11, .row-25 > .col-lg-12 {
  padding-right: 25px;
  padding-left: 25px;
}

.row-30 {
  margin-right: -30px;
  margin-left: -30px;
}

.row-30 > .col-xs-1, .row-30 > .col-xs-2, .row-30 > .col-xs-3, .row-30 > .col-xs-4, .row-30 > .col-xs-5, .row-30 > .col-xs-6, .row-30 > .col-xs-7, .row-30 > .col-xs-8, .row-30 > .col-xs-9, .row-30 > .col-xs-10, .row-30 > .col-xs-11, .row-30 > .col-xs-12, .row-30 > .col-sm-1, .row-30 > .col-sm-2, .row-30 > .col-sm-3, .row-30 > .col-sm-4, .row-30 > .col-sm-5, .row-30 > .col-sm-6, .row-30 > .col-sm-7, .row-30 > .col-sm-8, .row-30 > .col-sm-9, .row-30 > .col-sm-10, .row-30 > .col-sm-11, .row-30 > .col-sm-12, .row-30 > .col-md-1, .row-30 > .col-md-2, .row-30 > .col-md-3, .row-30 > .col-md-4, .row-30 > .col-md-5, .row-30 > .col-md-6, .row-30 > .col-md-7, .row-30 > .col-md-8, .row-30 > .col-md-9, .row-30 > .col-md-10, .row-30 > .col-md-11, .row-30 > .col-md-12, .row-30 > .col-lg-1, .row-30 > .col-lg-2, .row-30 > .col-lg-3, .row-30 > .col-lg-4, .row-30 > .col-lg-5, .row-30 > .col-lg-6, .row-30 > .col-lg-7, .row-30 > .col-lg-8, .row-30 > .col-lg-9, .row-30 > .col-lg-10, .row-30 > .col-lg-11, .row-30 > .col-lg-12 {
  padding-right: 30px;
  padding-left: 30px;
}

a {
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
  -o-transition: color .25s ease-in-out;
}

a:hover, a:focus {
  color: #3b8811;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

textarea {
  resize: none;
}

label {
  font-weight: 400;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* li {
  list-style-type: none;
} */

img {
  width: 100%;
}

tbody tr td.no-record {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #999;
  font-style: italic;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width:991px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width:991px) {
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media (min-width:992px) {
  ul.nav li.nav-dropdown:hover > ul.dropdown-menu {
    margin-top: -1px;
    border-top: 1px solid #eee;
  }
}

.animated {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.caption {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  letter-spacing: 1px;
}

.angle-next {
  color: #459dda;
  margin-left: 2.5px;
  transition: margin .25s ease-in-out;
  -moz-transition: margin .25s ease-in-out;
  -webkit-transition: margin .25s ease-in-out;
  -o-transition: margin .25s ease-in-out;
}

.fa-map-marker {
  margin-right: 5px;
  font-size: 1.2em;
  margin-top: 10px;
}

a:hover .angle-next {
  margin-right: -5px;
  margin-left: 7.5px;
}

.arrow-back {
  margin-right: 7.5px;
  transition: margin .25s ease-in-out;
  -moz-transition: margin .25s ease-in-out;
  -webkit-transition: margin .25s ease-in-out;
  -o-transition: margin .25s ease-in-out;
}

a:hover .arrow-back {
  margin-left: -5px;
  margin-right: 12.5px;
}

@media (min-width:991px) {
  .date-filter {
    margin: 0 -20px;
  }
}

@media (min-width:991px) {
  .date-filter ul {
    padding: 0;
  }
}

.mdr-article .mdr-content .date-filter {
  margin-left: -40px;
}

.bg-grey {
  background: #f9f9f9;
}

.bg-blue {
  background: #1a5289;
}

.hero-unit {
  border-radius: 0;
  padding: 0;
  color: #fff;
  margin-bottom: 0;
  font-size: .86em;
  font-weight: 200;
  line-height: 30px;
}

.hero-unit .container {
  position: relative;
}

.hero-unit h1, .hero-unit .h1 {
  font-size: 1.86em;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: capitalize;
}

.hero-unit p {
  font-size: 1.2em;
  font-weight: 200;
  line-height: 1.8;
}

.hero-unit.hero-unit-sm {
  height: 50px;
  background: #fcfcfc;
}

.hero-unit.hero-unit-sm .breadcrumb > li > a {
  color: #459dda;
}

.hero-unit.hero-unit-md .mdr-content {
  padding: 60px 0;
}

.hero-unit.hero-unit-md h1, .hero-unit.hero-unit-md .h1 {
  text-align: center;
}

.hero-unit.hero-unit-md p {
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  margin-top: 5px;
}

@media (min-width:991px) {
  .hero-unit.hero-unit-md .mdr-content {
    padding: 75px 0;
  }
}

.hero-unit.hero-unit-lg .container {
  height: 450px;
}

.hero-unit.hero-unit-lg .mdr-content {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: inline-block;
  width: auto;
  padding: 0 20px;
}

.hero-unit.hero-unit-lg h1, .hero-unit.hero-unit-lg .h1 {
  text-align: left;
  margin-bottom: 20px;
}

.hero-unit.hero-unit-lg p {
  text-align: left;
}

@media (min-width:991px) {
  .hero-unit.hero-unit-lg .container {
    height: 500px;
  }
}

@media (min-width:991px) {
  .hero-unit.hero-unit-lg .mdr-content {
    width: 400px;
    padding: 0 10px;
  }
}

.hero-unit.hero-unit-label h1, .hero-unit.hero-unit-label .h1 {
  text-align: left;
  margin-bottom: 1rem;
}

.hero-unit.hero-unit-label p {
  text-align: left;
}

@media (max-width:991px) {
  .hero-unit.hero-unit-label .container {
    padding: 0;
  }
}

@media (max-width:991px) {
  .hero-unit.hero-unit-label h1, .hero-unit.hero-unit-label .h1 {
    color: #1a5289;
  }
}

@media (max-width:991px) {
  .hero-unit.hero-unit-label p {
    color: #333;
    font-weight: 400;
  }
}

@media (max-width:991px) {
  .hero-unit.hero-unit-label .mdr-content {
    position: relative;
    top: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 1rem 20px 2rem;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width:991px) {
  .hero-unit.hero-unit-label a, .hero-unit.hero-unit-label i {
    color: #459dda!important;
  }
}

@media (min-width:991px) {
  .hero-unit.hero-unit-label.hero-unit-label-sm .container {
    height: 350px;
  }
}

@media (min-width:991px) {
  .hero-unit.hero-unit-label .container {
    height: 500px;
  }
}

@media (min-width:991px) {
  .hero-unit.hero-unit-label .mdr-content {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: inline-block;
    width: auto;
    width: 400px;
    padding: 0 10px;
  }
}

@media (min-width:991px) {
  .hero-unit.hero-unit-label a {
    color: #fff!important;
  }
}

.cover-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.cover-overlay.cover-overlay-20 {
  background: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2));
  background-size: cover;
}

.cover-overlay.cover-overlay-30 {
  background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3));
  background-size: cover;
}

.prod-box {
  padding: 80px 0;
}

.product-box {
  padding-top: 0;
  margin-top: -40px;
  overflow: hidden;
}

.product-box .box {
  margin-bottom: 20px;
}

@media (min-width:991px) {
  .product-box .box {
    min-height: 271px;
  }
}

.product-box .box > p {
  font-size: .9rem;
  line-height: 1.8;
}

.prod-box-item {
  position: relative;
  margin-bottom: 20px;
  padding: 0;
}

.prod-box-img {
  margin: 1rem -20px -20px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.prod-box .box > p {
  line-height: 1.8;
}

@media (min-width:991px) and (max-width:991px) {
  .prod-box .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}

@media (min-width:991px) {
  .prod-box-img {
    margin: 2rem -30px -30px;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
  }
}

@media (min-width:992px) {
  .prod-box .col-md-4:nth-child(3n + 1) {
    clear: left;
  }
}

@media (min-width:991px) {
  .mdr-article .mdr-content {
    font-size: 1em;
    max-width: 800px;
  }
}

.mdr-article .mdr-content h4 {
  font-size: 1.06em;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.mdr-article .mdr-content .table-responsive {
  padding: 0;
}

.mdr-article .mdr-content p, .mdr-article .mdr-content table.table {
  margin-bottom: 40px;
}

.mdr-article .mdr-content p.control-p {
  margin-bottom: 0!important;
}

.mdr-article .mdr-content ul, .mdr-article .mdr-content ol {
  margin-bottom: 40px;
  margin-left: 20px;
  padding-left: 0;
}

.mdr-article .mdr-content ul ul, .mdr-article .mdr-content ol ul {
  margin-bottom: 0;
}

.mdr-article .mdr-content ul li {
  line-height: 2;
  list-style-type: disc;
}

.mdr-article .mdr-content ol > li {
  line-height: 2;
  list-style-type: decimal;
}

.mdr-article .mdr-content .general-list > ul {
  margin-top: 15px;
  margin-left: 0;
}

.mdr-article .mdr-content .general-list > ul > li {
  list-style-type: none;
  margin: 0 -20px;
  border-bottom: 1px solid #eee;
}

.mdr-article .mdr-content .date-filter + .general-list > ul > li:first-child {
  border-top: 1px solid transparent;
}

.mdr-article .mdr-content .general-list > ul > li:first-child {
  border-top: 1px solid #eee;
}

.mdr-article .mdr-content .general-list > ul > li > div {
  padding: 30px 20px;
}

.mdr-article .mdr-content .general-list h3 {
  margin-bottom: 7.5px;
}

.mdr-article .mdr-content .general-list p {
  color: #41454c;
  margin-bottom: 0;
  line-height: 1.8;
}

.mdr-article .mdr-content .general-list p.datestamp {
  color: #aeb4c3;
  font-size: 13px;
}

@media (min-width:991px) {
  .mdr-article .mdr-content .general-list > ul > li > div {
    padding: 30px 10px;
    margin: 0;
  }
}

.mdr-article .mdr-content .general-list > ul > li > a {
  padding: 30px 20px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  display: block;
}

.mdr-article .mdr-content .general-list > ul > li > a > h3 .angle-next {
  color: #459dda;
  margin-left: 2.5px;
}

.mdr-article .mdr-content .general-list > ul > li > a:hover {
  background: #f9f9f9;
}

.mdr-article .mdr-content .general-list > ul > li > a:hover > h3 .angle-next {
  margin-left: 7.5px;
}

@media (min-width:991px) {
  .mdr-article .mdr-content .general-list > ul > li > a {
    padding: 30px 20px;
    margin: 0;
  }
}

a.box:focus, a.box:hover {
  -webkit-box-shadow: 0 1px 4px 1px rgba(0,0,0,.1);
  -moz-box-shadow: 0 1px 4px 1px rgba(0,0,0,.1);
  -o-box-shadow: 0 1px 4px 1px rgba(0,0,0,.1);
  box-shadow: 0 1px 4px 1px rgba(0,0,0,.1);
}

.box h3 {
  font-size: 1.33em;
  color: #1a5289;
}

.box p {
  color: #9197a4;
}

.box .read-more {
  color: #459dda;
}

@media (min-width:991px) {
  .box {
    padding: 30px;
  }
}

.mdr-article .mdr-content .shortcut-pills p {
  color: #9197a4;
  margin-bottom: 10px;
}

.mdr-article .mdr-content .shortcut-pills .nav-pills {
  margin-left: 0;
  margin-bottom: 40px;
}

.mdr-article .mdr-content .shortcut-pills .nav-pills > li {
  list-style-type: none;
  margin-right: 6px;
  margin-bottom: 8px;
  line-height: 1;
}

.mdr-article .mdr-content .shortcut-pills .nav-pills > li > a {
  background: #edf0f2;
  color: #459dda;
  padding: 10px 20px;
}

.mdr-article .mdr-content .shortcut-pills .nav-pills > li > a:hover {
  color: #1a5289;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover, .btn:focus {
  color: #333;
  text-decoration: none;
}

.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary {
  color: #fff!important;
  background-color: #459dda!important;
  background-image: none!important;
  border-radius: 4px!important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  color: #fff!important;
  background-color: #1a5289!important;
  background-image: none!important;
}

.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
  background-color: rgba(69,257,218,.5);
}

.btn-default {
  color: #333;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  color: #333;
  background-color: #ddd;
  border-color: #ddd;
  box-shadow: none;
}

.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

.btn-transparent {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.btn-transparent:hover, .btn-transparent:focus, .btn-transparent:active, .btn-transparent.active, .open .dropdown-toggle.btn-transparent {
  color: #fff;
  background-color: rgba(255,255,255,.2);
  border-color: #fff;
  box-shadow: none;
}

.btn-transparent:active, .btn-transparent.active, .open .dropdown-toggle.btn-transparent {
  background-image: none;
}

.btn-transparent.disabled, .btn-transparent[disabled], fieldset[disabled] .btn-transparent, .btn-transparent.disabled:hover, .btn-transparent[disabled]:hover, fieldset[disabled] .btn-transparent:hover, .btn-transparent.disabled:focus, .btn-transparent[disabled]:focus, fieldset[disabled] .btn-transparent:focus, .btn-transparent.disabled:active, .btn-transparent[disabled]:active, fieldset[disabled] .btn-transparent:active, .btn-transparent.disabled.active, .btn-transparent[disabled].active, fieldset[disabled] .btn-transparent.active {
  background-color: transparent;
  border-color: rgba(255,255,255,.5);
  color: rgba(255,255,255,.5);
}

.btn-transparent-blue {
  color: #459dda!importan;
  background-color: transparent!important;
  border-color: #459dda!important;
}

.btn-transparent-blue:hover, .btn-transparent-blue:focus, .btn-transparent-blue:active, .btn-transparent-blue.active, .open .dropdown-toggle.btn-transparent-blue {
  color: #1a5289!important;
  background-color: transparent!important;
  border-color: #1a5289!important;
  box-shadow: none!important;
}

.btn-transparent-blue:active, .btn-transparent-blue.active, .open .dropdown-toggle.btn-transparent-blue {
  background-image: none;
}

.btn-transparent-blue.disabled, .btn-transparent-blue[disabled], fieldset[disabled] .btn-transparent-blue, .btn-transparent-blue.disabled:hover, .btn-transparent-blue[disabled]:hover, fieldset[disabled] .btn-transparent-blue:hover, .btn-transparent-blue.disabled:focus, .btn-transparent-blue[disabled]:focus, fieldset[disabled] .btn-transparent-blue:focus, .btn-transparent-blue.disabled:active, .btn-transparent-blue[disabled]:active, fieldset[disabled] .btn-transparent-blue:active, .btn-transparent-blue.disabled.active, .btn-transparent-blue[disabled].active, fieldset[disabled] .btn-transparent-blue.active {
  background-color: transparent;
  border-color: #1a5289;
  color: #1a5289;
}

.btn-transparent-white {
  color: #fff!important;
  background-color: transparent;
  border-color: #fff;
  white-space: normal;
}

.btn-transparent-white:hover, .btn-transparent-white:focus, .btn-transparent-white:active, .btn-transparent-white.active, .open .dropdown-toggle.btn-transparent-white {
  color: #fff!important;
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
}

.btn-transparent-white:active, .btn-transparent-white.active, .open .dropdown-toggle.btn-transparent-white {
  background-image: none;
}

.btn-transparent-white.disabled, .btn-transparent-white[disabled], fieldset[disabled] .btn-transparent-white, .btn-transparent-white.disabled:hover, .btn-transparent-white[disabled]:hover, fieldset[disabled] .btn-transparent-white:hover, .btn-transparent-white.disabled:focus, .btn-transparent-white[disabled]:focus, fieldset[disabled] .btn-transparent-white:focus, .btn-transparent-white.disabled:active, .btn-transparent-white[disabled]:active, fieldset[disabled] .btn-transparent-white:active, .btn-transparent-white.disabled.active, .btn-transparent-white[disabled].active, fieldset[disabled] .btn-transparent-white.active {
  background-color: transparent;
  border-color: #1a5289;
  color: #1a5289;
}

.btn.btn-primary.btn-full, .btn.btn-default.btn-full, .btn.btn-success.btn-full {
  width: 100%;
  text-align: center;
}

.btn.btn-primary:focus, .btn.btn-default:focus, .btn.btn-success:focus {
  outline: 0;
}

.btn:focus {
  outline: 0;
}

.btn-lg {
  padding: 15px;
}

@media (min-width:991px) {
  .btn-block-md {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 320px;
    margin: auto;
    display: block;
  }
}

@media (max-width:991px) {
  .btn-transparent-white {
    width: 100%;
  }
}

.table-responsive {
  padding: 10px;
  background: #fff;
}

.table {
  margin-bottom: 5px;
  background: #fff;
}

.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  border-top: 1px solid #eee;
}

.table > tbody > tr > th, .table > tbody > tr > td {
  border-top: 1px solid #f3f3f3;
  vertical-align: middle;
  padding: 8px 8px;
  font-size: .86em;
  text-align: center;
}

.table.table-kurs > tbody > tr > th, .table.table-kurs > tbody > tr > td {
  border-right: 3px solid #f9f9f9;
}

.table.table-kurs tr td:last-child, .table.table-kurs tr th:last-child {
  border-right: 0;
}

.table.table-kurs th {
  height: 20px;
}

.table > tfoot > tr > th, .table > tfoot > tr > td {
  border-top: 1px solid #eee;
}

input, button, select, textarea {
  font-family: 'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size: 1em;
}

label.control-label {
  cursor: auto;
  font-size: 1em!important;
  font-weight: 600;
}

@media (min-width:991px) {
  .form-horizontal .control-label {
    padding-top: 14px;
  }
}

@media (min-width:991px) {
  .form-horizontal .control-p {
    padding-top: 8px;
    color: #333;
  }
}

form {
  margin-bottom: 0;
}

.form-horizontal .controls {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 2px;
}

.pagination {
  border-radius: 0;
  margin-bottom: 10px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 15px;
  margin-right: 0;
  line-height: 1.42857143;
  color: #9197a4;
  text-decoration: none;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #1a5289;
  background-color: transparent;
  border-color: #7ebf50;
  -webkit-box-shadow: inset 0 -1px 0 0 #7ebf50;
  box-shadow: inset 0 -1px 0 0 #7ebf50;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 2;
  color: #1a5289;
  cursor: default;
  background-color: transparent;
  border-color: #7ebf50;
  -webkit-box-shadow: inset 0 -1px 0 0 #feb600;
  box-shadow: inset 0 -1px 0 0 #feb600;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #c8cbd1;
  cursor: default;
  background-color: transparent;
  border-color: #7ebf50;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal {
  z-index: 99999999;
}

.navbar-static-top {
  margin-bottom: 0;
}

@media (max-width:991px) {
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-left: 0;
    margin-right: 0;
  }
}

.navbar .nav > li > a {
  text-shadow: none;
  box-shadow: none;
}

.navbar .nav > li > a:focus, .navbar .nav > li > a:hover, .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
  box-shadow: none;
}

.navbar .brand {
  padding: 17.5px 20px;
}

.navbar .brand img {
  width: 100px;
}

.navbar-top .navbar-inner {
  background: #fff;
  border-bottom: 0;
  min-height: 36px;
  height: 36px;
}

.search_box {
  background: #f9f9f9;
  border-bottom: 1px solid #edf0f2;
  display: none;
  overflow: hidden;
}

.search-inner {
  position: relative;
  display: block;
}

.search_box .form-control {
  border: 0;
}

.form-control.form-search {
  padding-left: 48px;
  font-size: 1.4em;
}

.form-control.form-search::-moz-placeholder {
  color: #c8cbd1;
  font-weight: 200;
  opacity: 1;
}

.form-control.form-search:-ms-input-placeholder {
  color: #c8cbd1;
  font-weight: 200;
}

.form-control.form-search::-webkit-input-placeholder {
  color: #c8cbd1;
  font-weight: 200;
}

@media (max-width:991px) {
  .search_box {
    border-top: 1px solid #edf0f2;
  }
}

@media (max-width:991px) {
  .search_box .btn.btn-search {
    display: none;
  }
}

.nav-lang {
  position: relative;
  top: 10px;
}

.nav-lang > li {
  float: left;
  line-height: 34px;
}

.nav-lang > li > a {
  font-size: .83em!important;
  color: #999;
  padding: 0 10px;
  opacity: .5;
  filter: alpha(opacity=50);
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
}

.nav-lang > li > a:focus, .nav-lang > li > a:hover, .nav-lang > li.active > a, .nav-lang > li.active > a:hover, .nav-lang > li.active > a:focus {
  opacity: 1;
  filter: alpha(opacity=100);
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: #2469a5;
}

.nav-lang .divider {
  width: 1px;
  background: #999;
  height: 15px;
  margin: 10px 0;
  opacity: .25;
}

@media (max-width:991px) {
  .navbar-top .nav-lang {
    display: none;
  }
}

.nav-utilities {
  float: right;
}

.nav-utilities > li {
  display: inline-block;
}

.nav-utilities > li > a {
  padding: 0 15px;
  display: block;
  color: #fff;
  font-size: .83em;
}

.nav-utilities > li.nav-tools > a::after, .nav-utilities > li.nav-location > a::after, .nav-utilities > li.nav-contact > a::after, .nav-utilities > li.nav-signin > a::after {
  margin-left: 10px;
  display: inline-block;
}

.nav-utilities > li > a:hover {
  text-decoration: underline;
}

.nav-utilities > li.nav-tools > a {
  position: relative;
  padding-left: 35px;
  color: #fff;
  margin-right: 5px;
}

.nav-utilities > li.nav-tools.open > a {
  background: #459dda;
  text-decoration: none;
}

.nav-utilities > li.nav-tools > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-contact > a {
  position: relative;
  padding-left: 30px;
  color: #fff;
  margin-left: 5px;
}

.nav-utilities > li.nav-contact.open > a {
  background: #459dda;
  text-decoration: none;
}

.nav-utilities > li.nav-contact > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-location > a {
  position: relative;
  padding-left: 35px;
  margin-left: 0;
}

.nav-utilities > li.nav-location.open > a {
  background: #459dda;
  text-decoration: none;
}

.nav-utilities > li.nav-location > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-search > a {
  position: relative;
  padding-left: 35px;
  margin-left: 5px;
}

.nav-utilities > li.nav-search > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-signin > a {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
 /* background: #7EBF50;*/
  position: relative;
  padding: 5px;
  margin-left: 10px;
  color: #833198;
  font-weight: 600;
  font-size: 14px;
  color: #3b8811 !important;
}

.nav-utilities > li.nav-signin.open > a {
  background: #feb600;
}

.nav-utilities > li.nav-signin > a::before {
  position: absolute;
  left: 17px;
  top: 4px;
}

.nav-utilities > li.nav-signin > a::after {
  margin-left: 10px;
  display: inline-block;
}

.nav-utilities > li.nav-tools.open > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-contact.open > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-location.open > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a {
    padding-left: 20px;
    margin-right: 0;
    padding-right: 10px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a::before {
    left: 14px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a::after {
    content: '';
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-location > a {
    padding-left: 20px;
    margin-top: -21px;
    padding-right: 10px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-location > a::before {
    left: 13.5px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-location > a::after {
    content: '';
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-contact > a {
    padding-left: 15px;
    margin-top: -22px;
    margin-right: 0;
    margin-left: -2.5px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-contact > a::before {
    left: 10px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-contact > a::after {
    content: '';
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a > span, .nav-utilities > li.nav-contact > a > span, .nav-utilities > li.nav-location > a > span, .nav-utilities > li.nav-search {
    display: none;
  }
}

.navbar-top .dropdown-menu {
  left: auto;
  top: 36px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #459dda;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  padding: 30px 30px 30px 34px;
  -webkit-box-shadow: 0 2px 2px 2px rgba(0,0,0,.1);
  box-shadow: 0 2px 2px 2px rgba(0,0,0,.1);
}

.navbar-top .dropdown-menu ul.col-sm-6 > li > ul {
  margin-bottom: 25px;
}

.navbar-top .dropdown-menu ul.col-sm-6 > li:last-child > ul {
  margin-bottom: 0;
}

.navbar-top .dropdown-menu h4 {
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 10px;
}

.navbar-top .dropdown-menu a {
  color: #fff;
  display: inline-block;
  margin-bottom: 2.5px;
  font-size: 13px;
}

.navbar-top .dropdown-menu a:hover {
  text-decoration: underline;
}

.navbar-top .nav-tools .dropdown-menu h4 {
  color: #fff;
}

.navbar-top .nav-tools .angle-next {
  color: rgba(255,255,255,.5);
}

.navbar-top .nav-tools .dropdown-menu .angle-next {
  margin-left: 7.5px;
}

.navbar-top .nav-tools .dropdown-menu a:hover .angle-next {
  margin-right: 0;
  margin-left: 7.5px;
}

.navbar-top .nav-tools .dropdown-menu a {
  color: rgba(255,255,255,.8);
}

.navbar-top .nav-tools .dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-location .dropdown-menu h4 {
  color: #fff;
}

.navbar-top .nav-location .angle-next {
  color: rgba(255,255,255,.5);
}

.navbar-top .nav-location .dropdown-menu .angle-next {
  margin-left: 7.5px;
}

.navbar-top .nav-location .dropdown-menu a:hover .angle-next {
  margin-right: 0;
  margin-left: 7.5px;
}

.navbar-top .nav-location .dropdown-menu a {
  color: rgba(255,255,255,.8);
}

.navbar-top .nav-location .dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-contact .dropdown-menu h4 {
  color: #fff;
}

.navbar-top .nav-contact .angle-next {
  color: rgba(255,255,255,.5);
}

.navbar-top .nav-contact .dropdown-menu .angle-next {
  margin-left: 7.5px;
}

.navbar-top .nav-contact .dropdown-menu a:hover .angle-next {
  margin-right: 0;
  margin-left: 7.5px;
}

.navbar-top .nav-contact .dropdown-menu a {
  color: rgba(255,255,255,.8);
}

.navbar-top .nav-contact .dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-signin {
  position: relative;
}

@media (max-width:991px) {
  .navbar-top .dropdown-menu {
    width: 100%;
    left: 0!important;
    padding: 25px;
  }
}

@media (max-width:991px) {
  .navbar-top .nav-tools .dropdown-menu .col-sm-6:first-child {
    margin-bottom: 25px;
  }
}

@media (max-width:360px) {
  .navbar-top .nav-signin .dropdown-menu {
    z-index: 100000;
    left: -97px!important;
  }
}

@media (min-width:361px) and (max-width: 1024px) {
  .navbar-top .nav-signin .dropdown-menu {
    z-index: 100000;
    left: -95px!important;
  }
}

@media (min-width:1025px) and (max-width: 1300px) {
  .navbar-top .nav-signin .dropdown-menu {
    z-index: 100000;
    left: -97px!important;
  }
}

@media (min-width:1301px) and (max-width: 1366px) {
  .navbar-top .nav-signin .dropdown-menu {
    z-index: 100000;
    left: -115px!important;
  }
}

.navbar .btn-navbar {
  margin-right: 10px;
  margin-top: 16px;
  border: 0;
  background: transparent;
  text-shadow: none;
  display: none;
}

.navbar .btn-navbar:hover, .navbar .btn-navbar:focus, .navbar .btn-navbar:active {
  background: transparent;
  box-shadow: none;
}

.navbar .btn-navbar .icon-bar {
  box-shadow: none;
  background: #1a5289;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  display: block;
}

.btn-navbar .icon-bar + .icon-bar {
  margin-top: 6px;
}

@media (min-width:991px) {
  .navbar .btn-search-m {
    display: none;
  }
}

.navbar-bottom .navbar-inner {
  min-height: 70px;
  background-image: none;
  box-shadow: none;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
}

.navbar-bottom .nav {
  position: initial;
}

.navbar-bottom .nav > li > a {
  padding: 15px 15px;
  color: #333;
  font-size: 14px;
}

.navbar-bottom .nav > li > a:focus, .navbar-bottom .nav > li > a:hover, .navbar-bottom .nav > .active > a, .navbar-bottom .nav > .active > a:hover, .navbar-bottom .nav > .active > a:focus {
  box-shadow: none;
  color: #459dda;
}

.navbar-bottom .nav > li.nav-prioritas > a {
  color: #cab076;
}

.navbar-bottom .nav > li.nav-prioritas > a:focus, .navbar-bottom .nav > li.nav-prioritas > a:hover, .navbar-bottom .nav > .nav-prioritas.active > a, .navbar-bottom .nav > .nav-prioritas.active > a:hover, .navbar-bottom .nav > .nav-prioritas.active > a:focus {
  color: #a28951;
}

.navbar-bottom .logo {
  float: left;
  padding-left: 0;
}

.navbar-bottom .logo-img {
  max-width: 100%;
  height: auto;
  width: 100px;
}

.chrome .navbar .nav .container-dropdown li > a {
  word-break: break-word;
}

.ie .navbar .nav li > a, .edge .navbar .nav li > a, .firefox .navbar .nav li > a {
  word-break: normal;
}

@media (max-width:991px) {
  .navbar-bottom .navbar-inner {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    min-height: auto;
  }
}

@media (max-width:991px) {
  .navbar-bottom .nav-lang-xs {
    padding-bottom: 15px;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav {
    float: right;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav-lang-xs {
    display: none;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li {
    padding-top: 28px;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li > a {
    padding: 0 12.5px;
    line-height: 0;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li > a > span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
    text-align: center;
  }
}

@media (min-width:991px) {
  .navbar-bottom .navbar-inner {
    min-height: 0;
    border-bottom: 0;
  }
}

@media (min-width:991px) {
  .navbar-bottom .dropdown-menu {
    background: transparent!important;
    border-top: none!important;
    padding: 0!important;
    margin-top: -10px!important;
    overflow: hidden;
  }
}

@media (min-width:991px) {
  .has-control-menu .navbar-bottom .container-dropdown, .navbar-bottom .container-dropdown {
    background: #fcfcfc;
    margin-top: 33px;
    padding: 30px 0;
    overflow: auto;
  }
}

@media (min-width:991px) {
  .navbar-bottom .container-dropdown {
    margin-top: 25px;
  }
}

@media (min-width:991px) {
  ul.nav li.nav-dropdown:hover > ul.dropdown-menu .container-dropdown {
    border-top: 1px solid #eee;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li > a {
    padding: 0 17.5px;
  }
}

@media (min-width:1200px) {
  .navbar-bottom .nav > li > a {
    padding: 0 20px;
  }
}

@media (max-width:991px) {
  .clearfix-xs:before, .clearfix-xs:after {
    content: " ";
    display: table;
  }
}

@media (max-width:991px) {
  .clearfix-xs:after {
    clear: both;
  }
}

.nav-prioritas a, .nav-prioritas h3, .nav-prioritas h4 i {
  color: #cab076!important;
}

.nav-prioritas a:hover, .nav-prioritas a:hover > h4 {
  color: #a28951!important;
}

.nav-prioritas .ic-bullet {
  background: #cab076!important;
}

@media (max-width:991px) {
  .navbar-search {
    display: none;
  }
}

@media (min-width:991px) and (max-width:1920px) {
  .navbar-top .nav-tools .dropdown-menu {
    right: 10%;
  }
}

@media (min-width:991px) {
  .navbar-top .navbar-inner {
    box-shadow: none;
  }
}

@media (min-width:991px) {
  .navbar-search {
    position: absolute;
    width: 320px;
    margin-left: -248px;
    left: 50%;
  }
}

@media (min-width:991px) {
  .navbar-search:before {
    position: absolute;
    left: 12.5px;
    top: 12.5px;
    opacity: .5;
  }
}

@media (min-width:991px) {
  .navbar-search .icon-monospaced .lexicon-icon {
    margin-left: -400px!important;
    margin-top: 5px!important;
    color: #a5aab5;
  }
}

@media (min-width:991px) {
  .navbar-search input {
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    background: #f5f5f5;
    font-size: 13px;
    position: relative;
    width: 400px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    color: #333;
    text-align: left;
    padding-left: 13px;
    height: 40px;
    top: 9px;
    text-align: center;
  }
}

@media (min-width:991px) {
  .navbar-search input::-moz-placeholder {
    color: #b9b9b9;
    font-weight: 200;
    opacity: 1;
  }
}

@media (min-width:991px) {
  .navbar-search input:-ms-input-placeholder {
    color: #b9b9b9;
    font-weight: 200;
  }
}

@media (min-width:991px) {
  .navbar-search input::-webkit-input-placeholder {
    color: #b9b9b9;
    font-weight: 200;
  }
}

@media (min-width:991px) {
  .navbar-search .glyphicon-search {
    color: #a5aab5;
    position: absolute;
    top: 21px;
    left: 12px;
  }
}

@media (min-width:991px) {
  .navbar-search input:focus {
    background: #FFF;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    color: #333;
  }
}

@media (min-width:991px) {
  .nav-lang .divider {
    margin-top: 21px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a {
    padding-left: 20px;
    margin-right: 0;
    padding-right: 10px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a::before {
    left: 13.5px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a::after {
    content: '';
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-location > a::before {
    left: 14px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-location > a {
    padding-left: 20px;
    margin-top: -21px;
    padding-right: 10px;
    margin-left: 0;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-location > a::after {
    content: '';
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-contact > a {
    padding-left: 15px;
    margin-left: 0;
    margin-top: -32px;
    margin-right: 8px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-contact > a::after {
    content: '';
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a > span, .nav-utilities > li.nav-contact > a > span, .nav-utilities > li.nav-location > a > span, .nav-utilities > li.nav-search {
    display: none;
  }
}

@media (min-width:991px) {
  .navbar-top .dropdown-menu {
    top: 55px;
  }
}

@media (min-width:991px) and (max-width:991px) {
  .navbar-search input {
    width: 325px;
  }
}

@media (min-width:991px) and (max-width:991px) {
  .navbar-search .icon-monospaced .lexicon-icon {
    margin-left: -325px!important;
  }
}

@media (max-width:991px) {
  .search_box fieldset {
    height: 60px;
  }
}

@media (max-width:991px) {
  .search_box .form-control {
    font-size: 1.4em;
    float: right;
    width: 85%;
    margin-top: 5px;
    color: #333!important;
  }
}

@media (max-width:991px) {
  .search_box a .icon-monospaced, .search_box .icon-monospaced {
    margin-top: -110px;
    margin-left: 10px;
  }
}

@media (max-width:991px) {
  .search_box .icon-monospaced .lexicon-icon {
    color: #a5aab5;
  }
}

@media (max-width:991px) {
  .search_box .form-control:focus {
    color: #333;
  }
}

@media (max-width:991px) {
  .search_box .portlet-content-container {
    padding-bottom: 0;
  }
}

@media (min-width:992px) {
  .navbar-search {
    position: absolute;
    width: 320px;
    margin-left: -150px;
    left: 50%;
  }
}

@media (min-width:1200px) {
  .navbar-search {
    position: absolute;
    width: 400px;
    margin-left: -200px;
    left: 50%;
  }
}

@media (max-width:1195px) and (min-width:769px) {
  .navbar-search input {
    width: 100%;
  }
}

@media (max-width:1195px) and (min-width:769px) {
  .navbar-search .icon-monospaced .lexicon-icon {
    margin-left: -749%!important;
  }
}

.navbar-bottom .collapse {
  position: initial;
}

.navbar-bottom .nav > li {
  display: inline-block;
}

@media (max-width:991px) {
  .navbar-bottom .collapse {
    background: #1a5289;
  }
}

.navbar-bottom .nav > li > .dropdown-menu::before, .navbar-bottom .nav > li > .dropdown-menu::after {
  display: none;
}

.navbar-bottom .nav > li > .dropdown-menu:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0,0,0,.2);
}

.navbar-bottom .span li {
  margin-bottom: 20px;
}

.navbar-bottom .dropdown-menu h3 {
  color: #1a5289;
  font-size: 1.46em;
  margin-bottom: 20px;
  font-weight: 200;
}

.navbar-bottom .dropdown-menu a > h4 {
  font-size: .93em;
  margin-bottom: 5px;
  color: #41454c;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
}

.navbar-bottom .dropdown-menu a:hover > h4 {
  color: #459dda;
}

.navbar-bottom .dropdown-menu p {
  color: #9197a4;
  font-size: .86em;
}

.quick-actions li {
  margin-bottom: 10px;
}

.quick-actions a > .ic-bullet {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #1a5289;
  float: left;
  padding: 9px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
}

.quick-actions a:hover > .ic-bullet {
  background: #1a5289;
}

.quick-actions a > .ic-bullet img {
  height: 18px;
  width: 18px;
  margin: auto;
  display: block;
}

.quick-actions a > h4 {
  padding-left: 50px;
  line-height: 40px;
}

.quick-actions li:first-child {
  display: none;
}

.nav-dropdown .img {
  margin-bottom: 30px;
}

.nav-menu li {
  margin-bottom: 10px;
  min-height: 67px;
}

@media (max-width:991px) {
  .nav-menu li {
    font-size: 14px;
    min-height: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 0px;
    border-bottom: 1px solid #eee;
    color: #fff !important;
  }
}

@media (max-width:991px) {
  .nav-dropdown h3 {
    display: none;
  }
}

@media (max-width:991px) {
  .nav-dropdown .img {
    margin-top: 15px;
    margin-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse.collapse .nav {
    border-top: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 12.5px;
    margin-bottom: 0;
    background: #1a5289;
  }
}

@media (max-width:991px) {
  .nav-collapse .dropdown-menu {
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
  }
}

@media (max-width:991px) {
  .nav-collapse .dropdown-menu a {
    padding: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav > li > a {
    font-size: 1.33em;
    font-weight: 200;
    color: #fff;
    padding: 20px 20px 20px 0;
    margin-left: 15px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav p {
    display: none;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav > li > ul {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav ul.nav-menu {
    padding: 10px 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav ul.nav-menu li {
    padding: 0;
    margin-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav ul.nav-menu li > a {
    margin-bottom: 0;
    padding: 15px 15px 15px 0;
    margin-left: 15px;
    border-bottom: 1px solid #eee;
    display: block;
    border-radius: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav ul.nav-menu li > a > h4 {
    font-size: 1.06em;
    margin-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav ul.nav-menu li:last-child > a {
    border-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav > li:last-child > a {
    border-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav > li.open > a {
    margin-left: 30px;
  }
}

@media (max-width:991px) {
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background: transparent;
    color: #fff;
  }
}

@media (min-width:991px) {
  .nav-dropdown .col-1st {
    width: 76%;
  }
}

@media (min-width:991px) {
  .nav-dropdown .col-2nd {
    width: 24%;
  }
}

.nav-creditcards .nav-menu li {
  margin-bottom: 15px;
}

@media (min-width:991px) {
  .nav-investment-insurance .nav-menu li:nth-child(3n + 1) {
    clear: left;
  }
}

@media (min-width:991px) {
  .navbar-bottom .collapse {
    display: block;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li {
    position: static;
  }
}

.nav-about .nav-menu li {
  margin-bottom: 15px;
}

@media (min-width:991px) {
  .nav-about .nav-menu li:nth-child(2n + 1) {
    clear: left;
  }
}

.mdr-home {
  background: #FFF!important;
}

.mdr-home .control-label {
  color: #44484f!important;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
  height: 100%;
}

#loader {
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #f8ce1c;
  width: 30px;
  height: 30px;
  -webkit-animation: spin .5s linear infinite;
  animation: spin .5s linear infinite;
  margin: 30px -15px;
  position: absolute;
  top: 50%;
  left: 50%;
}

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

.loader-img {
  position: absolute;
  left: 50%;
  right: 0;
  top: 50%;
  bottom: 0;
  width: 120px;
  margin-left: -60px;
  height: 38px;
  margin-top: -19px;
}

.home-featured {
  padding-top: 0;
  margin-top: 2rem;
}

.has-control-menu .home-featured {
  margin-top: 33px;
}

.home-featured .container {
  margin-top: 0;
  background: #fff;
  border-radius: 4px;
}

.home-featured .box {
  height: calc(360px + 30px);
  border: 0;
  box-shadow: none!important;
  border-bottom: 1px solid #edf0f2;
  margin-bottom: 2rem;
  display: block;
  border-radius: 0;
  padding: 30px 0 0;
}

.home-featured h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home-featured .box h3 {
  margin-bottom: 0;
  min-height: 40px;
}

.home-featured img {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 240px;
  z-index: -1;
}

.home-featured .read-more {
  color: #459dda;
}

.container-fluid-1280 {
  max-width: 100%!important;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width:991px) {
  .home-featured .box {
    height: 400px;
    border-bottom: 0;
    margin-bottom: 0;
    padding: 30px 20px;
  }
}

@media (min-width:991px) {
  .home-featured p {
    font-size: 14px;
  }
}

@media (min-width:991px) {
  .home-featured img {
    bottom: 0;
  }
}

@media (min-width:992px) {
  .home-featured .box {
    height: 400px;
    padding: 40px 30px;
  }
}

@media (min-width:992px) {
  .home-featured img {
    bottom: 0;
  }
}

@media (min-width:1200px) {
  .home-featured {
    padding-bottom: 7rem!important;
  }
}

@media (min-width:1200px) {
  .home-featured .box {
    height: 360px;
  }
}

@media (min-width:1200px) {
  .home-featured img {
    bottom: 0;
  }
}

.home-currency {
  min-height: 500px;
  background: #f9f9f9;
  padding: 80px 0!important;
}

.home-currency.home-currency-light {
  background: #f9f9f9;
}

.home-currency .btn-placeholder {
  padding-top: 20px;
}

.box-currency {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: -1px;
}

.home-currency ul li:first-child .box-currency {
  border-radius: 4px 4px 0 0;
}

.home-currency ul li:last-child .box-currency {
  border-radius: 0 0 4px 4px;
}

.box-currency h4 {
  font-size: 1.2em;
  color: #1a5289;
}

.box-currency small {
  color: #459dda;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .76em;
  display: none;
}

.box-currency.box-currency-label {
  padding: 10px 20px;
  text-align: center;
}

.box-currency.box-currency-label small {
  display: inline-block;
}

.box-currency p {
  font-size: 1.06em;
  color: #333;
  line-height: 20px;
  text-align: center;
}

.box-currency sup {
  font-size: .5em;
  margin-left: 3px;
}

.box-currency-disclaimer {
  color: #9197a4;
  font-size: .8em;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.home-currency-dark .box-currency-disclaimer {
  color: rgba(255,255,255,.5);
}

@media (min-width:992px) {
  .box-currency {
    border-radius: 4px;
    margin-bottom: 10px;
  }
}

@media (min-width:992px) {
  .home-currency ul > li:first-child .box-currency, .home-currency ul > li:last-child .box-currency {
    border-radius: 4px;
  }
}

@media (min-width:992px) {
  .home-currency ul li:last-child .box-currency {
    display: block;
  }
}

@media (min-width:992px) {
  .box-currency h4 {
    font-size: 1.33em;
    margin-bottom: 20px;
  }
}

@media (min-width:992px) {
  .box-currency small {
    display: block;
  }
}

@media (min-width:992px) {
  .box-currency p {
    font-size: 1.33em;
    margin-top: -5px;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left;
  }
}

@media (min-width:992px) {
  .box-currency div:nth-child(3) p {
    margin-bottom: 0;
  }
}

@media (min-width:992px) {
  .box-currency-disclaimer {
    margin-bottom: 0;
  }
}

.box-converter {
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

.about-merger .row a:hover p {
  margin-bottom: 0;
  color: #459dda;
}

@media (min-width:991px) {
  .about-merger .row div[class^="col"] {
    width: 20%;
    margin-bottom: 0;
  }
}

footer ul {
  margin-bottom: 20px;
}

footer h4, footer .h4 {
  font-size: 1.2em;
  color: #1a5289;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 600;
}

footer a {
  color: #9197a4;
}

footer a:hover, footer a:focus, footer a:active {
  color: #1a5289;
}

.module-feature h3 {
  color: #000;
  margin-top: .5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.module-feature p {
  color: #9197a4;
}

.module-promo {
  padding: 80px 0;
}

.individual-slider.owl-carousel .owl-stage-outer {
  box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
  border: 1px solid #f3f3f3;
}

.individual-slider.owl-theme .owl-dots .owl-dot.active span, .individual-slider.owl-theme .owl-dots .owl-dot:hover span {
  background: #feb600;
}

.nav-utilities {
  float: right;
}

.nav-utilities > li {
  display: inline-block;
}

.nav-utilities > li > a {
  padding: 0 15px;
  display: block;
  color: #fff;
  font-size: .83em;
}

.nav-utilities > li.nav-tools > a::after, .nav-utilities > li.nav-location > a::after, .nav-utilities > li.nav-contact > a::after, .nav-utilities > li.nav-signin > a::after {
  margin-left: 10px;
  display: inline-block;
}

.nav-utilities > li > a:hover {
  text-decoration: underline;
}

.nav-utilities > li.nav-tools > a {
  position: relative;
  padding-left: 35px;
  color: #fff;
  margin-right: 5px;
}

.nav-utilities > li.nav-tools.open > a {
  background: #459dda;
  text-decoration: none;
}

.nav-utilities > li.nav-tools > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-contact > a {
  position: relative;
  padding-left: 30px;
  color: #fff;
  margin-left: 5px;
}

.nav-utilities > li.nav-contact.open > a {
  background: #459dda;
  text-decoration: none;
}

.nav-utilities > li.nav-contact > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-location > a {
  position: relative;
  padding-left: 35px;
  margin-left: 0;
}

.nav-utilities > li.nav-location.open > a {
  background: #459dda;
  text-decoration: none;
}

.nav-utilities > li.nav-location > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-search > a {
  position: relative;
  padding-left: 35px;
  margin-left: 5px;
}

.nav-utilities > li.nav-search > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-signin.open > a {
  background: #7ebf50;
}

.nav-utilities > li.nav-signin > a::before {
  position: absolute;
  left: 17px;
  top: 4px;
}

.nav-utilities > li.nav-signin > a::after {
  margin-left: 10px;
  display: inline-block;
}

.nav-utilities > li.nav-tools.open > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-contact.open > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

.nav-utilities > li.nav-location.open > a::before {
  position: absolute;
  left: 12.5px;
  top: 3px;
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a {
    padding-left: 20px;
    margin-right: 0;
    padding-right: 10px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a::before {
    left: 14px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a::after {
    content: '';
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-location > a {
    padding-left: 20px;
    margin-top: -21px;
    padding-right: 10px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-location > a::before {
    left: 13.5px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-location > a::after {
    content: '';
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-contact > a {
    padding-left: 15px;
    margin-top: -22px;
    margin-right: 0;
    margin-left: -2.5px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-contact > a::before {
    left: 10px;
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-contact > a::after {
    content: '';
  }
}

@media (max-width:991px) {
  .nav-utilities > li.nav-tools > a > span, .nav-utilities > li.nav-contact > a > span, .nav-utilities > li.nav-location > a > span, .nav-utilities > li.nav-search {
    display: none;
  }
}

.navbar-top .dropdown-menu {
  left: auto !important;
  top: 36px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #459dda;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  padding: 30px 30px 30px 34px;
  -webkit-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, .1);
}

.navbar-top .dropdown-menu ul.col-sm-6 > li > ul {
  margin-bottom: 25px;
}

.navbar-top .dropdown-menu ul.col-sm-6 > li:last-child > ul {
  margin-bottom: 0;
}

.navbar-top .dropdown-menu h4 {
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 10px;
}

.navbar-top .dropdown-menu a {
  color: #fff;
  display: inline-block;
  margin-bottom: 2.5px;
  font-size: 13px;
}

.navbar-top .dropdown-menu a:hover {
  text-decoration: underline;
}

.navbar-top .nav-tools .dropdown-menu h4 {
  color: #fff;
}

.navbar-top .nav-tools .angle-next {
  color: rgba(255, 255, 255, .5);
}

.navbar-top .nav-tools .dropdown-menu .angle-next {
  margin-left: 7.5px;
}

.navbar-top .nav-tools .dropdown-menu a:hover .angle-next {
  margin-right: 0;
  margin-left: 7.5px;
}

.navbar-top .nav-tools .dropdown-menu a {
  color: rgba(255, 255, 255, .8);
}

.navbar-top .nav-tools .dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-location .dropdown-menu h4 {
  color: #fff;
}

.navbar-top .nav-location .angle-next {
  color: rgba(255, 255, 255, .5);
}

.navbar-top .nav-location .dropdown-menu .angle-next {
  margin-left: 7.5px;
}

.navbar-top .nav-location .dropdown-menu a:hover .angle-next {
  margin-right: 0;
  margin-left: 7.5px;
}

.navbar-top .nav-location .dropdown-menu a {
  color: rgba(255, 255, 255, .8);
}

.navbar-top .nav-location .dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-contact .dropdown-menu h4 {
  color: #fff;
}

.navbar-top .nav-contact .angle-next {
  color: rgba(255, 255, 255, .5);
}

.navbar-top .nav-contact .dropdown-menu .angle-next {
  margin-left: 7.5px;
}

.navbar-top .nav-contact .dropdown-menu a:hover .angle-next {
  margin-right: 0;
  margin-left: 7.5px;
}

.navbar-top .nav-contact .dropdown-menu a {
  color: rgba(255, 255, 255, .8);
}

.navbar-top .nav-contact .dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar-top .nav-signin {
  position: relative;
}

.navbar-top .nav-signin .dropdown-menu {
  z-index: 99999999;
  right: 0;
  font-size: 14px;
  background: #fff;
  width: 275px;
  padding: 20px 30px;
  border-bottom: 3px solid #7ebf50;
}

.navbar-top .nav-signin .dropdown-menu h4 {
  color: #833198;
  margin-bottom: 0;
}

.navbar-top .nav-signin .dropdown-menu a {
  padding: 10px 0;
  display: block;
  color: #355c1e;
  font-size: 1.06em;
}

.navbar-top .nav-signin .dropdown-menu a:hover {
  text-decoration: none;
}

@media (max-width:991px) {
  .navbar-top .nav-tools .dropdown-menu .col-sm-6:first-child {
    margin-bottom: 25px;
  }
}

.navbar .btn-navbar {
  margin-right: 10px;
  margin-top: 16px;
  border: 0;
  background: transparent;
  text-shadow: none;
  display: none;
}

.navbar .btn-navbar:hover, .navbar .btn-navbar:focus, .navbar .btn-navbar:active {
  background: transparent;
  box-shadow: none;
}

.navbar .btn-navbar .icon-bar {
  box-shadow: none;
  background: #833198;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  display: block;
}

.btn-navbar .icon-bar + .icon-bar {
  margin-top: 6px;
}

.navbar .btn-search-m {
  background: transparent;
  float: right;
  padding: 0;
  height: 33px;
  margin-top: 16px;
  margin-right: 3px;
  padding: 5px;
}

@media (min-width:991px) {
  .navbar .btn-search-m {
    display: none;
  }
}

.navbar {
  background: #fff;
}

header {
  z-index: 10000;
  background: var(--hover-color);
  position: sticky;
  top: 0;
}

@media (max-width:991px) {
  .navbar {
    padding-bottom: 0px;
  }
}

.navbar-bottom .navbar-inner {
  min-height: 70px;
  background-image: none;
  box-shadow: none;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
}

.navbar-bottom .nav {
  position: initial;
}

.navbar-bottom .nav > li > a {
  padding: 15px 15px;
  color: #333;
  font-size: 14px;
}

.navbar-bottom .nav > li > a:focus, .navbar-bottom .nav > li > a:hover, .navbar-bottom .nav > .active > a, .navbar-bottom .nav > .active > a:hover, .navbar-bottom .nav > .active > a:focus {
  box-shadow: none;
  color: #459dda;
}

.navbar-bottom .nav > li.nav-prioritas > a {
  color: #cab076;
}

.navbar-bottom .nav > li.nav-prioritas > a:focus, .navbar-bottom .nav > li.nav-prioritas > a:hover, .navbar-bottom .nav > .nav-prioritas.active > a, .navbar-bottom .nav > .nav-prioritas.active > a:hover, .navbar-bottom .nav > .nav-prioritas.active > a:focus {
  color: #a28951;
}

.navbar-bottom .logo {
  float: left;
  padding-left: 0;
}

.navbar-bottom .logo-img {
  max-width: 100%;
  height: auto;
  width: 100px;
}

.chrome .navbar .nav .container-dropdown li > a {
  word-break: break-word;
}

.ie .navbar .nav li > a, .edge .navbar .nav li > a, .firefox .navbar .nav li > a {
  word-break: normal;
}

@media (max-width:991px) {
  .navbar-bottom .navbar-inner {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    min-height: auto;
  }
}

@media (max-width:991px) {
  .navbar-bottom .nav-lang-xs {
    padding-bottom: 15px;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav {
    float: right;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav-lang-xs {
    display: none;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li {
    padding-top: 28px;
  }
}

@media (max-width:991px) {
  .navbar-bottom .nav > li > a {
    padding: 20px;
    line-height: 0;
    border-bottom: 1px solid #eee;
    background: #3b8811;
    color: #fff !important;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li > a {
    padding: 0 12.5px;
    line-height: 0;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li > a > span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
    text-align: center;
  }
}

@media (min-width:991px) {
  .navbar-bottom .navbar-inner {
    min-height: 0;
    border-bottom: 0;
  }
}

@media (min-width:991px) {
  .navbar-bottom .dropdown-menu {
    background: transparent!important;
    border-top: none!important;
    padding: 0!important;
    margin-top: -10px!important;
    overflow: hidden;
  }
}

@media (min-width:991px) {
  .has-control-menu .navbar-bottom .container-dropdown, .navbar-bottom .container-dropdown {
    background: #fcfcfc;
    margin-top: 33px;
    padding: 30px 0;
    overflow: auto;
  }
}

@media (min-width:991px) {
  .navbar-bottom .container-dropdown {
    margin-top: 25px;
  }
}

@media (min-width:991px) {
  ul.nav li.nav-dropdown:hover > ul.dropdown-menu .container-dropdown {
    border-top: 1px solid #eee;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li > a {
    padding: 0 17.5px;
  }
}

@media (min-width:1200px) {
  .navbar-bottom .nav > li > a {
    padding: 0 20px;
  }
}

@media (max-width:991px) {
  .clearfix-xs: before, .clearfix-xs:after {
    content: " ";
    display: table;
  }
}

@media (max-width:991px) {
  .clearfix-xs:after {
    clear: both;
  }
}

.nav-prioritas a, .nav-prioritas h3, .nav-prioritas h4 i {
  color: #cab076!important;
}

.nav-prioritas a:hover, .nav-prioritas a:hover > h4 {
  color: #a28951!important;
}

.nav-prioritas .ic-bullet {
  background: #cab076!important;
}

@media (max-width:991px) {
  .navbar-search {
    display: none;
  }
}

@media (min-width:991px) and (max-width:1920px) {
  .navbar-top .nav-tools .dropdown-menu {
    right: 10%;
  }
}

@media (min-width:991px) {
  .navbar-top .navbar-inner {
    box-shadow: none;
  }
}

@media (min-width:991px) {
  .navbar-search {
    position: absolute;
    width: 320px;
    margin-left: -248px;
    left: 50%;
  }
}

@media (min-width:991px) {
  .navbar-search:before {
    position: absolute;
    left: 12.5px;
    top: 12.5px;
    opacity: .5;
  }
}

@media (min-width:991px) {
  .navbar-search .icon-monospaced .lexicon-icon {
    margin-left: -400px!important;
    margin-top: 5px!important;
    color: #a5aab5;
  }
}

@media (min-width:991px) {
  .navbar-search input {
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    background: #f5f5f5;
    font-size: 13px;
    position: relative;
    width: 400px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    color: #333;
    text-align: left;
    padding-left: 13px;
    height: 40px;
    top: 9px;
    text-align: center;
  }
}

@media (min-width:991px) {
  .navbar-search input::-moz-placeholder {
    color: #b9b9b9;
    font-weight: 200;
    opacity: 1;
  }
}

@media (min-width:991px) {
  .navbar-search input:-ms-input-placeholder {
    color: #b9b9b9;
    font-weight: 200;
  }
}

@media (min-width:991px) {
  .navbar-search input::-webkit-input-placeholder {
    color: #b9b9b9;
    font-weight: 200;
  }
}

@media (min-width:991px) {
  .navbar-search .glyphicon-search {
    color: #a5aab5;
    position: absolute;
    top: 21px;
    left: 12px;
  }
}

@media (min-width:991px) {
  .navbar-search input:focus {
    background: #FFF;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    -o-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    color: #333;
  }
}

@media (min-width:991px) {
  .nav-lang li {
    line-height: 54px;
  }
}

@media (min-width:991px) {
  .nav-lang .divider {
    margin-top: 21px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a {
    padding-left: 20px;
    margin-right: 0;
    padding-right: 10px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a::before {
    left: 13.5px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a::after {
    content: '';
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-location > a::before {
    left: 14px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-location > a {
    padding-left: 20px;
    margin-top: -21px;
    padding-right: 10px;
    margin-left: 0;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-location > a::after {
    content: '';
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-contact > a {
    padding-left: 15px;
    margin-left: 0;
    margin-top: -32px;
    margin-right: 8px;
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-contact > a::after {
    content: '';
  }
}

@media (min-width:991px) {
  .nav-utilities > li.nav-tools > a > span, .nav-utilities > li.nav-contact > a > span, .nav-utilities > li.nav-location > a > span, .nav-utilities > li.nav-search {
    display: none;
  }
}

@media (min-width:991px) {
  .navbar-top .dropdown-menu {
    top: 55px;
  }
}

@media (min-width:991px) and (max-width:991px) {
  .navbar-search input {
    width: 325px;
  }
}

@media (min-width:991px) and (max-width:991px) {
  .navbar-search .icon-monospaced .lexicon-icon {
    margin-left: -325px!important;
  }
}

.navbar-bottom .collapse {
  position: initial;
}

.navbar-bottom .nav > li {
  display: inline-block;
}

@media (max-width:991px) {
  .navbar-bottom .collapse {
    background: #833198;
  }
}

.navbar-bottom .nav > li > .dropdown-menu::before, .navbar-bottom .nav > li > .dropdown-menu::after {
  display: none;
}

.navbar-bottom .nav > li > .dropdown-menu:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: #7ebf50;
}

.navbar-bottom .nav > li > .dropdown-menu:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.navbar-bottom .dropdown-menu {
  width: 100%;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin-top: 0;
  animation-duration: .5s;
  background: #fcfcfc;
  padding: 30px 0;
  border-bottom: 3px solid #7ebf50;
  max-width: 100%;
  max-height: 1000px;
}

@media (max-width: 991px) {
  .navbar-bottom .dropdown-menu {
    width: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    animation-duration: .5s;
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 3px solid #7ebf50;
    max-width: 100%;
    max-height: 1000px;
  }
}

.navbar-bottom .span li {
  margin-bottom: 20px;
}

.navbar-bottom .dropdown-menu h3 {
  color: #355c1e;
  font-size: 1.46em;
  margin-bottom: 20px;
  font-weight: 200;
}

.navbar-bottom .dropdown-menu a:hover > h4 {
  color: #459dda;
}

.navbar-bottom .dropdown-menu p {
  color: #9197a4;
  font-size: .86em;
}

.quick-actions li {
  margin-bottom: 10px;
}

.quick-actions a > .ic-bullet {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #396722;
  float: left;
  padding: 9px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
}

.quick-actions a:hover > .ic-bullet {
  background: #7EBF50;
}

.quick-actions a > .ic-bullet img {
  height: 18px;
  width: 18px;
  margin: auto;
  display: block;
}

.quick-actions a > h4 {
  padding-left: 50px;
  line-height: 40px;
}

.quick-actions li:first-child {
  display: none;
}

.nav-dropdown .img {
  margin-bottom: 30px;
}

@media (max-width:991px) {
  .nav-dropdown h3 {
    display: none;
  }
}

@media (max-width:991px) {
  .nav-dropdown .img {
    margin-top: 15px;
    margin-bottom: 0;
  }
}

@media (max-width:991px) {
  .nav-collapse.collapse .nav {
    border-top: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 12.5px;
    margin-bottom: 0;
    background: #833198;
  }
}

@media (max-width:991px) {
  .quick-actions {
    padding-top: 20px;
  }
}

@media (min-width:991px) and (max-width:991px) {
  .quick-actions {
    padding-top: 30px;
  }
}

@media (min-width:991px) {
  .nav-dropdown .col-1st {
    width: 76%;
  }
}

@media (min-width:991px) {
  .nav-dropdown .col-2nd {
    width: 24%;
  }
}

@media (min-width:991px) {
  .navbar-bottom .nav > li {
    position: static;
  }
}

.senkatech-navbar-menu {
  margin-top: -5px;
  color: #333 !important;
}

@media (max-width: 991px) {
  .nav {
    display: flex;
  }
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: 0px;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

