@charset "UTF-8";

/*!
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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -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;
}

@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@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;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@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(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.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;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -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);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@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% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@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;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@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;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@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;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@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;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@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;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@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;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@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;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@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;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@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;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@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;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@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;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@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;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@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;
}

@-webkit-keyframes flip {
  0% {
    -webkit-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);
    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);
    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);
    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);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@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;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@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(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@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(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    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;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    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;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@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(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    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;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@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;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@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;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@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;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@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;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@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;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@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;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@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;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@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;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@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;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@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;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@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;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@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;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@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;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@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;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@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;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-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);
    transform: rotate(80deg);
    -webkit-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);
    transform: rotate(60deg);
    -webkit-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);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@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);
    opacity: 1;
    -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;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@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(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*
 * Swiper 2.7.6
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: February 11, 2015
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	direction:ltr;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
	height: auto!important;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

	cursor:url(../img/drag.png) 16 9, ew-resize!important;
	margin: 0 auto;
	height: inherit!important;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

	height: inherit!important;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
	/* Specify Swiper's Size: */

	/*width:200px;
	height: 100px;*/
}
.swiper-slide {
	/* Specify Slides's Size: */
	
	/*width: 100%;
	height: 100%;*/
}
.swiper-slide-active {
	/* Specific active slide styling: */
	
}
.swiper-slide-visible {
	/* Specific visible slide styling: */	

}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-container .pagination{
	text-align: center;
	width: 100%;
	margin: 35px 0 0 0;
}
.swiper-pagination-switch {
	/* Stylize pagination button: */	
	width: 10px;
	height: 10px;
	background: #c2c6cf;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	display: inline-block;
	position: relative;
	margin: 0 10px;
	cursor: pointer;
}
.swiper-pagination-switch:before{
	content: ""; 
	position: absolute;
	width: 0px;
	height: 0px;
	border: 4px #c2c6cf solid;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
}
.swiper-active-switch {
	/* Specific active button style: */	
	background: transparent;
}
.swiper-visible-switch:before{
	width: 10px;
	height: 10px;
	border: 2px #c2c6cf solid;
}
.swiper-active-switch:before{
	width: 16px;
	height: 16px;
	border: 4px #c2c6cf solid;
}
.swiper-visible-switch {
	/* Specific visible button style: */	
	background: transparent;
}

.swiper-pagination-switch, .swiper-pagination-switch:before{
	-moz-transition:all 300ms ease-out;
	-o-transition:all 300ms ease-out;
	-webkit-transition:all 300ms ease-out;
	transition:all 300ms ease-out;
	-ms-transition:all 300ms ease-out;
}

.pagination.style-1 .swiper-pagination-switch{
	width: 8px;
	height: 8px;
	background: #fff;
}
.pagination.style-1 .swiper-pagination-switch:before{
	display: none;
}
.pagination.style-1 .swiper-active-switch{
	background: #ab2328;
	width: 70px;
}

.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-bold .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{-webkit-transform-origin:right top;-moz-transform-origin:right top;-ms-transform-origin:right top;-o-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}

/* NUGET: BEGIN LICENSE TEXT
 *
 * Microsoft grants you the right to use these script files for the sole
 * purpose of either: (i) interacting through your browser with the Microsoft
 * website or online service, subject to the applicable licensing or use
 * terms; or (ii) using the files as included with a Microsoft product subject
 * to that product's license terms. Microsoft reserves all other rights to the
 * files not expressly granted by Microsoft, whether by implication, estoppel
 * or otherwise. The notices and licenses below are for informational purposes only.
 *
 * NUGET: END LICENSE TEXT */
/*!
 * Bootstrap v3.0.0
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */

/*! normalize.css v2.1.0 | MIT License | git.io/normalize */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  height: 0;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

mark {
  color: #000;
  background: #ff0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media print {
  * {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 2cm .5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input,
select[multiple],
textarea {
  background-image: none;
}

a {
  color: #428bca;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16.099999999999998px;
  font-weight: 200;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

.text-muted {
  color: #999999;
}

.text-primary {
  color: #428bca;
}

.text-warning {
  color: #c09853;
}

.text-danger {
  color: #b94a48;
}

.text-success {
  color: #468847;
}

.text-info {
  color: #3a87ad;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 12px;
}

h1 small,
.h1 small {
  font-size: 24px;
}

h2 small,
.h2 small {
  font-size: 18px;
}

h3 small,
.h3 small,
h4 small,
.h4 small {
  font-size: 14px;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.428571429;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    display: table;
    content: " ";
  }
  .dl-horizontal dd:after {
    clear: both;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    display: table;
    content: " ";
  }
  .dl-horizontal dd:after {
    clear: both;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}

blockquote p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.25;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote small {
  display: block;
  line-height: 1.428571429;
  color: #999999;
}

blockquote small:before {
  content: '\2014 \00A0';
}

blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}

blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}

blockquote.pull-right small:before {
  content: '';
}

blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}

address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

code,
pre {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  white-space: nowrap;
  background-color: #f9f2f4;
  border-radius: 4px;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

pre.prettyprint {
  margin-bottom: 20px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.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: 15px;
  padding-left: 15px;
}

.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 {
  float: left;
}

.col-xs-1 {
  width: 8.333333333333332%;
}

.col-xs-2 {
  width: 16.666666666666664%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333333333333%;
}

.col-xs-5 {
  width: 41.66666666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.333333333333336%;
}

.col-xs-8 {
  width: 66.66666666666666%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333333333334%;
}

.col-xs-11 {
  width: 91.66666666666666%;
}

.col-xs-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
  .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 {
    float: left;
  }
  .col-sm-1 {
    width: 8.333333333333332%;
  }
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  .col-sm-11 {
    width: 91.66666666666666%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-push-1 {
    left: 8.333333333333332%;
  }
  .col-sm-push-2 {
    left: 16.666666666666664%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333333333333%;
  }
  .col-sm-push-5 {
    left: 41.66666666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.333333333333336%;
  }
  .col-sm-push-8 {
    left: 66.66666666666666%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333333333334%;
  }
  .col-sm-push-11 {
    left: 91.66666666666666%;
  }
  .col-sm-pull-1 {
    right: 8.333333333333332%;
  }
  .col-sm-pull-2 {
    right: 16.666666666666664%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333333333333%;
  }
  .col-sm-pull-5 {
    right: 41.66666666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.333333333333336%;
  }
  .col-sm-pull-8 {
    right: 66.66666666666666%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333333333334%;
  }
  .col-sm-pull-11 {
    right: 91.66666666666666%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666666666666%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
  .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 {
    float: left;
  }
  .col-md-1 {
    width: 8.333333333333332%;
  }
  .col-md-2 {
    width: 16.666666666666664%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333333333333%;
  }
  .col-md-5 {
    width: 41.66666666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333333333333336%;
  }
  .col-md-8 {
    width: 66.66666666666666%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333333333334%;
  }
  .col-md-11 {
    width: 91.66666666666666%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.333333333333332%;
  }
  .col-md-push-2 {
    left: 16.666666666666664%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333333333333%;
  }
  .col-md-push-5 {
    left: 41.66666666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.333333333333336%;
  }
  .col-md-push-8 {
    left: 66.66666666666666%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333333333334%;
  }
  .col-md-push-11 {
    left: 91.66666666666666%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
  .col-md-pull-2 {
    right: 16.666666666666664%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333333333333%;
  }
  .col-md-pull-5 {
    right: 41.66666666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.333333333333336%;
  }
  .col-md-pull-8 {
    right: 66.66666666666666%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333333333334%;
  }
  .col-md-pull-11 {
    right: 91.66666666666666%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-md-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666666666666%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
  .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 {
    float: left;
  }
  .col-lg-1 {
    width: 8.333333333333332%;
  }
  .col-lg-2 {
    width: 16.666666666666664%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333333333333%;
  }
  .col-lg-5 {
    width: 41.66666666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333333333333336%;
  }
  .col-lg-8 {
    width: 66.66666666666666%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333333333334%;
  }
  .col-lg-11 {
    width: 91.66666666666666%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.333333333333332%;
  }
  .col-lg-push-2 {
    left: 16.666666666666664%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333333333333%;
  }
  .col-lg-push-5 {
    left: 41.66666666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.333333333333336%;
  }
  .col-lg-push-8 {
    left: 66.66666666666666%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333333333334%;
  }
  .col-lg-push-11 {
    left: 91.66666666666666%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.333333333333332%;
  }
  .col-lg-pull-2 {
    right: 16.666666666666664%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333333333333%;
  }
  .col-lg-pull-5 {
    right: 41.66666666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.333333333333336%;
  }
  .col-lg-pull-8 {
    right: 66.66666666666666%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333333333334%;
  }
  .col-lg-pull-11 {
    right: 91.66666666666666%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666666666666%;
  }
}

table {
  max-width: 100%;
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  margin-bottom: 20px;
}

.table thead > tr > th,
.table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td,
.table tbody > tr > td,
.table tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}

.table thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}

.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-top: 0;
}

.table tbody + tbody {
  border-top: 2px solid #dddddd;
}

.table .table {
  background-color: #ffffff;
}

.table-condensed thead > tr > th,
.table-condensed tbody > tr > th,
.table-condensed tfoot > tr > th,
.table-condensed thead > tr > td,
.table-condensed tbody > tr > td,
.table-condensed tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  display: table-column;
  float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
  display: table-cell;
  float: none;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td {
  background-color: #d0e9c6;
  border-color: #c9e2b3;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
  border-color: #eed3d7;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td {
  background-color: #ebcccc;
  border-color: #e6c1c7;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
  border-color: #fbeed5;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td {
  background-color: #faf2cc;
  border-color: #f8e5be;
}

@media (max-width: 768px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
    background-color: #fff;
  }
  .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;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > thead > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > thead > tr:last-child > td,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */

  line-height: normal;
}

input[type="file"] {
  display: block;
}

select[multiple],
select[size] {
  height: auto;
}

select optgroup {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

.form-control:-moz-placeholder {
  color: #999999;
}

.form-control::-moz-placeholder {
  color: #999999;
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  display: block;
  min-height: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
}

.radio label,
.checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm {
  height: auto;
}

.input-lg {
  height: 45px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-lg {
  height: 45px;
  line-height: 45px;
}

textarea.input-lg {
  height: auto;
}

.has-warning .help-block,
.has-warning .control-label {
  color: #c09853;
}

.has-warning .form-control {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}

.has-warning .input-group-addon {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}

.has-error .help-block,
.has-error .control-label {
  color: #b94a48;
}

.has-error .form-control {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}

.has-error .input-group-addon {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}

.has-success .help-block,
.has-success .control-label {
  color: #468847;
}

.has-success .form-control {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}

.has-success .input-group-addon {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}

.form-control-static {
  padding-top: 7px;
  margin-bottom: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}

.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  display: table;
  content: " ";
}

.form-horizontal .form-group:after {
  clear: both;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  display: table;
  content: " ";
}

.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}

.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: #ffffff;
  border-color: #cccccc;
}

.btn-primary {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.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: #428bca;
  border-color: #357ebd;
}

.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ed9c28;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #47a447;
  border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #39b3d7;
  border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-sm,
.btn-xs {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
}

.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
          transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
          transition: height 0.35s ease;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../../fonts/glyphicons-halflings-regular.eot');
  src: url('../../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.glyphicon-asterisk:before {
  content: "\2a";
}

.glyphicon-plus:before {
  content: "\2b";
}

.glyphicon-euro:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-briefcase:before {
  content: "\1f4bc";
}

.glyphicon-calendar:before {
  content: "\1f4c5";
}

.glyphicon-pushpin:before {
  content: "\1f4cc";
}

.glyphicon-paperclip:before {
  content: "\1f4ce";
}

.glyphicon-camera:before {
  content: "\1f4f7";
}

.glyphicon-lock:before {
  content: "\1f512";
}

.glyphicon-bell:before {
  content: "\1f514";
}

.glyphicon-bookmark:before {
  content: "\1f516";
}

.glyphicon-fire:before {
  content: "\1f525";
}

.glyphicon-wrench:before {
  content: "\1f527";
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: 0 dotted;
  border-left: 4px solid transparent;
  content: "";
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #428bca;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #428bca;
  outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999999;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0 dotted;
  border-bottom: 4px solid #000000;
  content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}

.btn-default .caret {
  border-top-color: #333333;
}

.btn-primary .caret,
.btn-success .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret {
  border-top-color: #fff;
}

.dropup .btn-default .caret {
  border-bottom-color: #333333;
}

.dropup .btn-primary .caret,
.dropup .btn-success .caret,
.dropup .btn-warning .caret,
.dropup .btn-danger .caret,
.dropup .btn-info .caret {
  border-bottom-color: #fff;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar:before,
.btn-toolbar:after {
  display: table;
  content: " ";
}

.btn-toolbar:after {
  clear: both;
}

.btn-toolbar:before,
.btn-toolbar:after {
  display: table;
  content: " ";
}

.btn-toolbar:after {
  clear: both;
}

.btn-toolbar .btn-group {
  float: left;
}

.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group-xs > .btn {
  padding: 5px 10px;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}

.btn-group-vertical > .btn-group:after {
  clear: both;
}

.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}

.btn-group-vertical > .btn-group:after {
  clear: both;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  border-collapse: separate;
  table-layout: fixed;
}

.btn-group-justified .btn {
  display: table-cell;
  float: none;
  width: 1%;
}

[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group.col {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  line-height: 45px;
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -4px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
  z-index: 2;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav:before,
.nav:after {
  display: table;
  content: " ";
}

.nav:after {
  clear: both;
}

.nav:before,
.nav:after {
  display: table;
  content: " ";
}

.nav:after {
  clear: both;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.nav > li.disabled > a {
  color: #999999;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #dddddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  text-align: center;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
}

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-bottom: 1px solid #dddddd;
}

.nav-tabs.nav-justified > .active > a {
  border-bottom-color: #ffffff;
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 5px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #428bca;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
  text-align: center;
}

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
}

.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-bottom: 1px solid #dddddd;
}

.nav-tabs-justified > .active > a {
  border-bottom-color: #ffffff;
}

.tabbable:before,
.tabbable:after {
  display: table;
  content: " ";
}

.tabbable:after {
  clear: both;
}

.tabbable:before,
.tabbable:after {
  display: table;
  content: " ";
}

.tabbable:after {
  clear: both;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.nav .caret {
  border-top-color: #428bca;
  border-bottom-color: #428bca;
}

.nav a:hover .caret {
  border-top-color: #2a6496;
  border-bottom-color: #2a6496;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  z-index: 1000;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.navbar:before,
.navbar:after {
  display: table;
  content: " ";
}

.navbar:after {
  clear: both;
}

.navbar:before,
.navbar:after {
  display: table;
  content: " ";
}

.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}

.navbar-header:before,
.navbar-header:after {
  display: table;
  content: " ";
}

.navbar-header:after {
  clear: both;
}

.navbar-header:before,
.navbar-header:after {
  display: table;
  content: " ";
}

.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  max-height: 340px;
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse:before,
.navbar-collapse:after {
  display: table;
  content: " ";
}

.navbar-collapse:after {
  clear: both;
}

.navbar-collapse:before,
.navbar-collapse:after {
  display: table;
  content: " ";
}

.navbar-collapse:after {
  clear: both;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-collapse .navbar-nav.navbar-left:first-child {
    margin-left: -15px;
  }
  .navbar-collapse .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
  .navbar-collapse .navbar-text:last-child {
    margin-right: 0;
  }
}

.container > .navbar-header,
.container > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  z-index: 1030;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
}

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
  }
}

.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-text {
  float: left;
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .navbar-text {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777777;
}

.navbar-default .navbar-nav > li > a {
  color: #777777;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #dddddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #cccccc;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e6e6e6;
}

.navbar-default .navbar-nav > .dropdown > a:hover .caret,
.navbar-default .navbar-nav > .dropdown > a:focus .caret {
  border-top-color: #333333;
  border-bottom-color: #333333;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a .caret,
.navbar-default .navbar-nav > .open > a:hover .caret,
.navbar-default .navbar-nav > .open > a:focus .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}

.navbar-default .navbar-nav > .dropdown > a .caret {
  border-top-color: #777777;
  border-bottom-color: #777777;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-link {
  color: #777777;
}

.navbar-default .navbar-link:hover {
  color: #333333;
}

.navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}

.navbar-inverse .navbar-brand {
  color: #999999;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #999999;
}

.navbar-inverse .navbar-nav > li > a {
  color: #999999;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #ffffff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-inverse .navbar-nav > .dropdown > a .caret {
  border-top-color: #999999;
  border-bottom-color: #999999;
}

.navbar-inverse .navbar-nav > .open > a .caret,
.navbar-inverse .navbar-nav > .open > a:hover .caret,
.navbar-inverse .navbar-nav > .open > a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999999;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}

.navbar-inverse .navbar-link {
  color: #999999;
}

.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #cccccc;
  content: "/\00a0";
}

.breadcrumb > .active {
  color: #999999;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #eeeeee;
}

.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: #ffffff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
}

.pagination > .disabled > span,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #dddddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager:before,
.pager:after {
  display: table;
  content: " ";
}

.pager:after {
  clear: both;
}

.pager:before,
.pager:after {
  display: table;
  content: " ";
}

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
}

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

.label[href]:hover,
.label[href]:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.label:empty {
  display: none;
}

.label-default {
  background-color: #999999;
}

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}

.label-primary {
  background-color: #428bca;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999999;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.btn .badge {
  position: relative;
  top: -1px;
}

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #ffffff;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.1428571435;
  color: inherit;
  background-color: #eeeeee;
}

.jumbotron h1 {
  line-height: 1;
  color: inherit;
}

.jumbotron p {
  line-height: 1.4;
}

.container .jumbotron {
  border-radius: 6px;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1 {
    font-size: 63px;
  }
}

.thumbnail {
  display: inline-block;
  display: block;
  height: auto;
  max-width: 100%;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

.thumbnail > img {
  display: block;
  height: auto;
  max-width: 100%;
}

a.thumbnail:hover,
a.thumbnail:focus {
  border-color: #428bca;
}

.thumbnail > img {
  margin-right: auto;
  margin-left: auto;
}

.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable {
  padding-right: 35px;
}

.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #356635;
}

.alert-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #2d6987;
}

.alert-warning {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
}

.alert-warning hr {
  border-top-color: #f8e5be;
}

.alert-warning .alert-link {
  color: #a47e3c;
}

.alert-danger {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.alert-danger hr {
  border-top-color: #e6c1c7;
}

.alert-danger .alert-link {
  color: #953b39;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
          transition: width 0.6s ease;
}

.progress-striped .progress-bar {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
     -moz-animation: progress-bar-stripes 2s linear infinite;
      -ms-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media,
.media .media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media-object {
  display: block;
}

.media-heading {
  margin: 0 0 5px;
}

.media > .pull-left {
  margin-right: 10px;
}

.media > .pull-right {
  margin-left: 10px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

a.list-group-item {
  color: #555555;
}

a.list-group-item .list-group-item-heading {
  color: #333333;
}

a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item {
  border-width: 1px 0;
}

.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.panel > .table {
  margin-bottom: 0;
}

.panel > .panel-body + .table {
  border-top: 1px solid #dddddd;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.panel-title > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel-group .panel {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}

.panel-default {
  border-color: #dddddd;
}

.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}

.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
}

.panel-primary {
  border-color: #428bca;
}

.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
}

.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}

.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-warning {
  border-color: #fbeed5;
}

.panel-warning > .panel-heading {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
}

.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #fbeed5;
}

.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #fbeed5;
}

.panel-danger {
  border-color: #eed3d7;
}

.panel-danger > .panel-heading {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #eed3d7;
}

.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #eed3d7;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 15px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: auto;
  overflow-y: scroll;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
       -o-transition: -o-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog {
  z-index: 1050;
  width: auto;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    right: auto;
    left: 50%;
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}

.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: visible;
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-color: #000000;
  border-width: 5px 5px 0;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-top-color: #000000;
  border-width: 5px 5px 0;
}

.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-top-color: #000000;
  border-width: 5px 5px 0;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-right-color: #000000;
  border-width: 5px 5px 5px 0;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-left-color: #000000;
  border-width: 5px 0 5px 5px;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover .arrow {
  border-width: 11px;
}

.popover .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
  content: " ";
}

.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right .arrow:after {
  bottom: -10px;
  left: 1px;
  border-right-color: #ffffff;
  border-left-width: 0;
  content: " ";
}

.popover.bottom .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
}

.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
  content: " ";
}

.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
  border-right-width: 0;
}

.popover.left .arrow:after {
  right: 1px;
  bottom: -10px;
  border-left-color: #ffffff;
  border-right-width: 0;
  content: " ";
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
          transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  height: auto;
  max-width: 100%;
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.carousel-control.left {
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #ffffff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: 320px;
  }
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.visible-xs {
  display: none !important;
}

tr.visible-xs {
  display: none !important;
}

th.visible-xs,
td.visible-xs {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xs.visible-md {
    display: block !important;
  }
  tr.visible-xs.visible-md {
    display: table-row !important;
  }
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}

.visible-sm {
  display: none !important;
}

tr.visible-sm {
  display: none !important;
}

th.visible-sm,
td.visible-sm {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-sm.visible-md {
    display: block !important;
  }
  tr.visible-sm.visible-md {
    display: table-row !important;
  }
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}

.visible-md {
  display: none !important;
}

tr.visible-md {
  display: none !important;
}

th.visible-md,
td.visible-md {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-md.visible-sm {
    display: block !important;
  }
  tr.visible-md.visible-sm {
    display: table-row !important;
  }
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-md.visible-lg {
    display: block !important;
  }
  tr.visible-md.visible-lg {
    display: table-row !important;
  }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}

.visible-lg {
  display: none !important;
}

tr.visible-lg {
  display: none !important;
}

th.visible-lg,
td.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg.visible-md {
    display: block !important;
  }
  tr.visible-lg.visible-md {
    display: table-row !important;
  }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

.hidden-xs {
  display: block !important;
}

tr.hidden-xs {
  display: table-row !important;
}

th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  tr.hidden-xs {
    display: none !important;
  }
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm {
    display: none !important;
  }
  tr.hidden-xs.hidden-sm {
    display: none !important;
  }
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md {
    display: none !important;
  }
  tr.hidden-xs.hidden-md {
    display: none !important;
  }
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-xs.hidden-lg {
    display: none !important;
  }
  tr.hidden-xs.hidden-lg {
    display: none !important;
  }
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}

.hidden-sm {
  display: block !important;
}

tr.hidden-sm {
  display: table-row !important;
}

th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}

@media (max-width: 767px) {
  .hidden-sm.hidden-xs {
    display: none !important;
  }
  tr.hidden-sm.hidden-xs {
    display: none !important;
  }
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
  tr.hidden-sm {
    display: none !important;
  }
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md {
    display: none !important;
  }
  tr.hidden-sm.hidden-md {
    display: none !important;
  }
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-sm.hidden-lg {
    display: none !important;
  }
  tr.hidden-sm.hidden-lg {
    display: none !important;
  }
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}

.hidden-md {
  display: block !important;
}

tr.hidden-md {
  display: table-row !important;
}

th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}

@media (max-width: 767px) {
  .hidden-md.hidden-xs {
    display: none !important;
  }
  tr.hidden-md.hidden-xs {
    display: none !important;
  }
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm {
    display: none !important;
  }
  tr.hidden-md.hidden-sm {
    display: none !important;
  }
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  tr.hidden-md {
    display: none !important;
  }
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-md.hidden-lg {
    display: none !important;
  }
  tr.hidden-md.hidden-lg {
    display: none !important;
  }
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}

.hidden-lg {
  display: block !important;
}

tr.hidden-lg {
  display: table-row !important;
}

th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}

@media (max-width: 767px) {
  .hidden-lg.hidden-xs {
    display: none !important;
  }
  tr.hidden-lg.hidden-xs {
    display: none !important;
  }
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm {
    display: none !important;
  }
  tr.hidden-lg.hidden-sm {
    display: none !important;
  }
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md {
    display: none !important;
  }
  tr.hidden-lg.hidden-md {
    display: none !important;
  }
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
  tr.hidden-lg {
    display: none !important;
  }
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

tr.visible-print {
  display: none !important;
}

th.visible-print,
td.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .hidden-print {
    display: none !important;
  }
  tr.hidden-print {
    display: none !important;
  }
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
@font-face {
  font-family: 'gotham-black-webfont';
  src: url('../fonts/gotham-black-webfont.eot') format('embedded-opentype'), url('../fonts/gotham-black-webfont.ttf') format('truetype'), url('../fonts/gotham-black-webfont.woff') format('woff');
}
@font-face {
  font-family: 'gotham-bold-webfont';
  src: url('../fonts/gotham-bold-webfont.eot') format('embedded-opentype'), url('../fonts/gotham-bold-webfont.ttf') format('truetype'), url('../fonts/gotham-bold-webfont.woff') format('woff');
}
@font-face {
  font-family: 'gotham-book-webfont';
  src: url('../fonts/gotham-book-webfont.eot') format('embedded-opentype'), url('../fonts/gotham-book-webfont.ttf') format('truetype'), url('../fonts/gotham-book-webfont.woff') format('woff');
}
@font-face {
  font-family: 'gotham-light-webfont';
  src: url('../fonts/gotham-light-webfont.eot') format('embedded-opentype'), url('../fonts/gotham-light-webfont.ttf') format('truetype'), url('../fonts/gotham-light-webfont.woff') format('woff');
}
@font-face {
  font-family: 'gotham-medium-webfont';
  src: url('../fonts/gotham-medium-webfont.eot') format('embedded-opentype'), url('../fonts/gotham-medium-webfont.ttf') format('truetype'), url('../fonts/gotham-medium-webfont.woff') format('woff');
}
@font-face {
  font-family: 'KP-font-1';
  src: url('../fonts/KP-font-1.eot') format('embedded-opentype'), url('../fonts/KP-font-1.svg') format('svg'), url('../fonts/KP-font-1.ttf') format('truetype'), url('../fonts/KP-font-1.woff') format('woff');
}
@font-face {
  font-family: 'bold';
  src: url('../fonts/gotham-bold-webfont.eot');
  src: url('../fonts/gotham-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham-bold-webfont.woff') format('woff'), url('../fonts/gotham-bold-webfont.ttf') format('truetype'), url('../fonts/gotham-bold-webfont.svg#GothamBoldRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'regular';
  src: url('../fonts/gotham-book-webfont.eot');
  src: url('../fonts/gotham-book-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham-book-webfont.woff') format('woff'), url('../fonts/gotham-book-webfont.ttf') format('truetype'), url('../fonts/gotham-book-webfont.svg#GothamBookRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Desyrel';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/desyrel.woff') format('woff');
}
b,
a {
  color: #ab2328;
}
a:hover,
a:focus {
  color: #ab2429;
  text-decoration: underline;
}
a.button:hover {
  color: white !important;
  text-decoration: none !important;
}
.b {
  font-family: 'bold';
}
.label-danger {
  background-color: #ab2328 !important;
}
#L4 {
  height: 50px;
  fill: #ab2328;
}
.arrow-down {
  margin-left: auto;
  margin-right: auto;
  display: table !important;
  table-layout: auto;
  opacity: .2;
  transition: .2s;
  height: 45px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.arrow-down:hover {
  transition: 0.2s;
  opacity: 0.8;
}
a.no-animate:hover {
  transition: 0.4s;
}
.loader-content {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -50px;
}
.loader-content .circle1 {
  position: relative;
  display: inline-block;
  background: #ab2328;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  -webkit-animation: move1 1.5s ease-in-out infinite;
  -moz-animation: move1 1.5s ease-in-out infinite;
  -o-animation: move1 1.5s ease-in-out infinite;
  animation: move1 1.5s ease-in-out infinite;
}
.loader-content .circle2 {
  position: relative;
  display: inline-block;
  background: #5a5a5a;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  -webkit-animation: move2 1.5s ease-in-out infinite;
  -moz-animation: move2 1.5s ease-in-out infinite;
  -o-animation: move2 1.5s ease-in-out infinite;
  animation: move2 1.5s ease-in-out infinite;
}
.loader-content .title {
  font-family: 'bold', sans-serif, Arial;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 120%;
  font-size: 30px;
  line-height: 30px;
  color: #ab2328;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - RESET STYLES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
body * {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
.clear {
  clear: both;
  overflow: hidden;
  height: 0px;
  font-size: 0px;
  display: block;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: #ccc;
}
input,
textarea,
select {
  font-family: 'regular', Arial;
  font-weight: 400;
  border-radius: 0;
  border-color: #ccc;
}
p {
  margin-bottom: 18px;
}
a,
a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
body {
  font-family: 'regular', sans-serif, Arial;
  font-weight: normal;
  line-height: 1;
  overflow-x: hidden;
  overflow-y: scroll;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*table*/
.table-view {
  height: 100%;
  width: 100%;
  display: table;
}
.row-view {
  display: table-row;
}
.cell-view {
  display: table-cell;
  vertical-align: middle;
  height: inherit;
}
/*buttons*/
.button {
  line-height: 15px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #ab2328;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0), inset 0 -2px #d6001c;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0), inset 0 -2px #d6001c;
  border: solid 1px #ab2328;
  display: inline-block;
  padding: 16px 20px;
  font-size: 14px;
  color: #fff;
  font-family: 'bold', sans-serif, Arial;
  /* text-transform: uppercase; */
  text-align: center;
  position: relative;
}
#quoteSubmit {
  min-width: 200px !important;
}
.button:hover {
  line-height: 15px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #d6001c;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0), inset 0 -2px #ab2328;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0), inset 0 -2px #d6001c;
  border: solid 1px #d6001c;
  display: inline-block;
  padding: 16px 20px;
  font-size: 14px;
  color: #fff;
  font-family: 'bold', sans-serif, Arial;
  text-align: center;
  position: relative;
}
.button .icon {
  width: 25px;
  display: inline-block;
  height: 8px;
  position: relative;
}
.button .glyphicon {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#content-wrapper .button.type-1 {
  background-color: #5a5a5a;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #3d485a;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #3d485a;
  border: solid 1px #5a5a5a;
  color: #fff;
}
#content-wrapper .button.type-1:hover {
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -40px #3d485a;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -40px #3d485a;
}
#content-wrapper .button.type-2 {
  background-color: #f5f5f5;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #fff;
  border: solid 1px #f5f5f5;
  color: #5a5a5a;
}
#content-wrapper .button.type-2:hover {
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -40px #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -40px #fff;
}
.button.type-2 .glyphicon {
  color: #ab2328;
}
/*nopadding class*/
.nopadding {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
/*body class with moved header*/
body.header-moved #content-wrapper {
  padding-top: 244px;
}
/*container to display above header*/
.container-above-header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
/*text styles*/
b {
  font-family: 'bold', sans-serif, Arial;
}
/*map*/
#map-canvas {
  height: 660px;
  background: #485b77;
}
.block #map-canvas {
  margin-bottom: 60px;
}
/*video player*/
.video-player {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 29, 40, 0.8);
  z-index: 10;
  -o-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.video-player.active {
  -o-transform: translateX(0%);
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
}
.video-iframe {
  position: absolute;
  left: 50px;
  top: 50px;
  right: 50px;
  bottom: 50px;
}
.video-iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video-player .close-iframe {
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  font-size: 27px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  text-align: center;
}
.video-player .close-iframe:hover {
  color: #fff;
}
@media (max-width: 991px) {
  #content-wrapper,
  body.header-moved #content-wrapper {
    padding-top: 60px;
  }
  #content-wrapper > div > div:nth-child(2) > div > div:nth-child(5) > div.col-sm-6.wow.fadeInRight.animated > div > a .container-above-header {
    position: relative;
  }
  #map-canvas {
    height: 300px;
  }
  .block #map-canvas {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .kppad {
    padding-bottom: 0px;
  }
}
#callbackarea {
  color: #fff;
  padding: 20px 0 0 0;
  font-size: 14px;
  position: relative;
  left: 40px;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.kppad {
  padding-bottom: 25px;
  width: 1200px;
  margin: auto;
}
#logoarea {
  max-height: 2500px;
  background: #d6001d;
}
.logocontainer {
  color: #fff !important;
}
#callbackblock {
  float: left;
  width: 47%;
  margin-top: 10px;
}
#logo {
  float: left;
  width: 47%;
  padding: 20px 0 0 0;
}
#callBackName {
  float: left;
  margin: 0px 5px 21px 0;
  display: inline-block;
}
#callBackPhone {
  float: left;
  display: inline-block;
}
#CallBackButton {
  float: left;
}
#toppart {
  margin-top: 20px;
}
#logoland {
  padding: 20px 0 0 0;
  width: 480px;
}
#callbackarea {
  color: #fff;
  padding: 20px 0 0 0;
  font-size: 14px;
}
#mobilequotebutton {
  display: none;
}
#phone {
  font-family: 'bold';
}
#phone h2,
#phone h3 {
  color: #fff;
  text-indent: 2px;
  font-size: 36px;
  font-weight: bold;
  display: inline;
  margin: 0 10px;
  padding: 0;
}
#phone a,
#phone a:visited,
.white,
#header_uc_BigHeader_PhoneNumber {
  color: #fff !important;
}
.whiteBg {
  color: black !important;
  background: #fff !important;
  height: 225px !important;
  border-radius: 10px;
  margin-top: 10px;
}
#phone h3 {
  font-size: 16px !important;
}
.toptextbox {
  color: #5a5a5a;
  background: #fff;
  border-radius: 5px;
  width: 163px !important;
  height: 40px !important;
  line-height: 34px;
  text-align: center;
  border: 0;
  float: left;
  margin-right: 5px;
}
input#CallBackButton {
  background: url(../img/callme.png);
  border: none;
  width: 130px;
  background-repeat: no-repeat;
  height: 40px;
}
/*media (min-width: 990px)*/
#header_SmallHeader_CallBackButton,
#header_uc_BigHeader_CallBackButton,
#header_CompHeader_CallBackButton {
  float: left;
  height: 35px;
}
header {
  width: 100%;
}
#logo-wrapper {
  width: 100px;
  height: 122px;
  float: left;
}
.header-container {
  margin-left: 110px;
}
.header-left {
  float: left;
  width: 50%;
}
.header-right {
  float: right;
  width: 50%;
}
nav {
  margin: 53px 0 0 0;
}
.menu-entry {
  float: left;
  position: relative;
  margin-right: 30px;
}
.menu-entry:last-child {
  margin-right: 0;
}
.menu-entry a {
  font-size: 14px;
  line-height: 20px;
  color: #232c3b;
  font-family: 'regular', sans-serif, Arial;
  float: left;
  padding-bottom: 12px;
}
.menu-entry .submenu {
  position: absolute;
  left: -20px;
  top: 30px;
  background: #232c3b;
  min-width: 160px;
  overflow: hidden;
  max-height: 0;
}
.menu-entry .submenu div {
  padding: 7px 20px;
}
.menu-entry .submenu a {
  color: #e6e6e6;
  line-height: 15px;
  padding: 7px 0;
  float: none;
  display: block;
}
.menu-entry .submenu a:hover,
.menu-entry .submenu a.active,
.menu-entry:hover > a,
.menu-entry.active > a,
.menu-entry:hover .submenu-icon span,
.menu-entry.active .submenu-icon span {
  color: #ab2328;
}
.menu-entry .submenu-icon {
  width: 14px;
  height: 20px;
  display: inline-block;
  position: relative;
  font-size: 9px;
  line-height: 9px;
  color: #232c3b;
}
.menu-entry .submenu-icon span {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}
.menu-entry:hover .submenu-icon span {
  -o-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu-entry:hover {
  z-index: 1;
}
.menu-entry:hover .submenu {
  max-height: 300px;
}
.header-right {
  text-align: right;
  font-size: 14px;
  line-height: 18px;
  color: #232c3b;
  padding-top: 37px;
}
.header-right a.telephone-link {
  color: #232c3b;
}
.header-right a.telephone-link:hover {
  color: #ab2328;
}
.header-right a.link {
  color: #232c3b;
}
.header-right a.link:hover {
  color: #ab2328;
}
.header-inline-entry {
  display: inline-block;
  padding-left: 10px;
  vertical-align: middle;
}
.header-inline-entry div {
  display: inline-block;
  line-height: 18px;
}
.header-inline-entry .glyphicon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 5px;
  margin-left: 10px;
  top: -1px;
}
.open-icon,
.close-icon-wrapper {
  display: none;
}
.menu-entry:hover .submenu-icon:before,
.menu-entry.active .submenu-icon:before {
  background-color: #ab2328;
}
/*body class with moved header*/
body.header-moved header {
  position: absolute;
  top: 122px;
}
body.header-moved header.fixed-top {
  position: fixed;
  top: 0;
}
/*reduced header*/
@media (min-width: 992px) {
  header.reduced,
  header.reduced #logo-wrapper {
    height: 90px;
  }
  header.reduced nav {
    margin-top: 37px;
  }
  header.reduced .header-right {
    padding-top: 22px;
  }
  header.reduced .menu-entry a {
    padding-bottom: 5px;
  }
  header.reduced .menu-entry .submenu {
    top: 25px;
  }
  header,
  #logo-wrapper,
  nav,
  .header-right {
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
  }
  header {
    -webkit-transition-property: height;
    -moz-transition-property: height;
    -o-transition-property: height;
    transition-property: height;
  }
}
@media (max-width: 1199px) {
  .header-inline-entry div {
    display: block;
  }
  .header-left {
    width: 55%;
  }
  .header-right {
    width: 45%;
  }
  .kppad {
    padding-bottom: 25px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 990px) {
  header {
    height: 60px;
    text-align: center;
  }
  .subheader {
    display: none;
  }
  body.header-moved header,
  body.header-floated header {
    position: fixed;
    top: 0;
    z-index: 10;
  }
  nav {
    margin-top: 0;
  }
  #logo-wrapper {
    height: 50px;
    position: relative;
    z-index: 1;
  }
  header.active .header-container {
    -o-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .header-left,
  .header-right {
    float: none;
    width: auto;
  }
  .header-right {
    text-align: center;
    padding-top: 10px;
    font-size: 16px;
  }
  .header-inline-entry {
    display: block;
    padding-left: 0;
    padding-bottom: 10px;
  }
  .header-inline-entry .glyphicon {
    margin-left: 0;
  }
  .header-inline-entry div {
    padding-top: 10px;
  }
  .open-icon {
    display: block;
    float: right;
    width: 35px;
    height: 25px;
    margin: 12px 0 0 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .open-icon span {
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #232c3b;
  }
  .open-icon span:nth-child(2) {
    top: 10px;
  }
  .open-icon span:nth-child(3) {
    top: 20px;
  }
  header.active .open-icon span:nth-child(1) {
    top: 10px;
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  header.active .open-icon span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header.active .open-icon span:nth-child(3) {
    top: 10px;
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }
}
#side-nav-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: white;
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -moz-transition: -moz-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  z-index: 1000;
}
#side-nav-mobile.scroll {
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
@media (max-width: 640px) {
  #side-nav-mobile {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
#side-nav-mobile a {
  display: block;
  font-family: 'bold';
  float: left;
  width: 50%;
  height: inherit;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  line-height: 50px;
  color: #ab2328;
  background-color: #d1ad53;
  text-align: center;
}
#side-nav-mobile a.social {
  width: 10%;
  background-color: #fff;
  margin: 7px 0 0 0;
}
footer {
  background: #d6001c;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-family: 'regular', sans-serif, Arial;
  padding-top: 40px;
}
.footer-link {
  color: #fff !important;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
footer ul li {
  padding-bottom: 3px;
}
footer ul li a {
  color: #fff;
  text-decoration: underline;
}
footer ul li a:hover,
footer ul li a.active {
  color: #fff;
  text-decoration: underline;
}
.footer-entry {
  margin-bottom: 40px;
  float: left !important;
}
.footer-entry .title {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 16px;
  color: #fff;
  font-family: 'bold', sans-serif, Arial;
}
.footer-entry li {
  padding: 0;
}
footer .social-icons-wrapper {
  margin-bottom: 40px;
}
footer .social-icon {
  text-align: center;
  position: relative;
  padding: 28px 0;
  overflow: hidden;
  display: block;
}
footer .social-icon img {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
  position: relative;
}
footer .social-icon:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ab2328;
}
footer .social-icon:hover:before {
  left: 0;
}
.subscription-form {
  height: 40px;
  background: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  margin-top: 20px;
}
.subscription-form input {
  background: none;
  border: none;
  height: 40px;
  line-height: 40px;
  padding: 0 70px 0 20px;
  font-size: 14px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial;
  width: 100%;
}
.subscription-form input[type="submit"] {
  border: none;
  background: url(../../img/icon-21.png) center center no-repeat #ab2328;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  height: 40px;
  width: 50px;
  cursor: pointer;
  padding: 0;
}
.subscription-form input[type="submit"]:hover {
  opacity: 0.8;
}
.footer-menu {
  margin-bottom: 30px;
}
.footer-menu li {
  margin-right: 25px;
  display: inline-block;
}
.footer-menu li a {
  color: #fff;
}
.copyright {
  text-align: right;
  color: #fff;
  margin-bottom: 30px;
}
.footer-line {
  background: #ab2328;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-line-entry img {
  width: 45px;
  height: 45px;
  vertical-align: middle;
}
.footer-line-entry .content {
  margin-left: 70px;
  height: 45px;
}
.footer-line-entry .content,
.footer-line-entry .content a {
  color: #fff;
  font-family: 'bold', sans-serif, Arial;
  letter-spacing: 0.5px;
}
.footer-line-entry .content a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .copyright {
    text-align: left;
  }
}
@media (max-width: 767px) {
  footer .social-icon {
    padding: 20px 0;
  }
  S.footer-entry {
    margin-bottom: 30px;
  }
  footer .social-icons-wrapper {
    margin-bottom: 30px;
  }
  .footer-menu {
    margin-bottom: 20px;
  }
  .copyright {
    margin-bottom: 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 07 - SIMPLE BLOCK STRUCTURE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block-header {
  text-align: center;
  margin-bottom: 5px;
}
.block-header .title {
  font-size: 40px;
  line-height: 40px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 15px;
}
.block-header .title span {
  color: #5a5a5a;
}
.block-header .text {
  line-height: 22px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial;
}
.block,
.block.type-8.style-1 {
  padding: 30px 0;
  background-color: #e6e7e8;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.block-button-container {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.block-button-container .button-description {
  font-size: 24px;
  color: #e6e6e6;
  line-height: 30px;
  margin-bottom: 15px;
}
.block-button-container .button-description span,
.block-button-container .button-description a {
  color: #fff;
}
.block-button-container .button-description a {
  white-space: nowrap;
}
.block-button-container .button-description a:hover {
  color: #ab2328;
}
.block-table-container {
  padding-bottom: 60px;
}
.block.background-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.block.background-block .block-header .title {
  color: #fff;
}
.block.background-block .block-header .text {
  color: #e6e6e6;
}
.block.typography-example {
  padding: 80px 0 0 0;
}
@media (max-width: 991px) {
  .block,
  .block.type-8.style-1 {
    padding: 40px 0 20px 0;
  }
  .block.typography-example {
    padding: 80px 0 0 0;
  }
  .block-button-container {
    padding-bottom: 30px;
  }
  .block-table-container {
    padding-bottom: 30px;
  }
  .block-header {
    margin-bottom: 30px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 08 - BLOCK "TYPE 1" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-1 .icon-entry {
  padding-bottom: 60px;
}
.block.type-1 .icon-entry:nth-child(3n+1) {
  clear: both;
}
.block.type-1 .icon-entry img {
  width: 70px;
  height: 70px;
  float: left;
}
.block.type-1 .icon-entry .content {
  margin: 0 25px 0 85px;
}
.block.type-1 .icon-entry .title,
.block.type-3 .icon-entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  padding: 25px 0 15px 0;
}
.block.type-1 .icon-entry .text,
.block.type-3 .icon-entry .text {
  font-size: 16px;
  line-height: 18px;
  color: #5a5a5a;
}
@media (max-width: 991px) {
  .block.type-1 .icon-entry:nth-child(3n+1) {
    clear: none;
  }
  .block.type-1 .icon-entry:nth-child(2n+1) {
    clear: both;
  }
  .block.type-1 .icon-entry {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .block.type-1 .icon-entry .content {
    margin-right: 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 09 - BLOCK "TYPE 2" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block:nth-child(2n).type-2 .price-entry .middle div {
  background: #faf9f9;
}
.block:nth-child(2n).type-2 .price-entry .middle div:nth-child(2n) {
  background: #f0f0f0;
}
.line-through {
  color: #e6e6e6;
  position: relative;
}
.line-through:after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  background: #ab2328;
  left: 0;
  top: 50%;
}
@media (max-width: 991px) {
  .price-entry {
    padding-bottom: 30px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 10 - BLOCK "TYPE 3" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-3 .icon-entry {
  padding-bottom: 60px;
}
.block.type-3 .icon-entry img {
  margin-bottom: 25px;
}
.block.type-3 .icon-entry .content {
  margin: 0 20px;
}
.block.type-3 .icon-entry .title {
  padding-top: 0;
}
.block.type-3 .icon-entry .title span {
  color: #ab2328;
}
.block.type-3 .row {
  position: relative;
}
.icons-connection {
  width: 100%;
  height: 5px;
  background: url(../../img/icon-66.png);
  position: absolute;
  left: 0;
  top: 62px;
}
.block.type-3 .icon-entry .button {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .block.type-3 .icon-entry {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .icons-connection {
    display: none;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 11 - BLOCK "TYPE 4" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-4 .table-responsive {
  margin-bottom: 0;
  border: none;
}
.block.type-4 .table {
  font-size: 14px;
  line-height: 14px;
  color: #e6e6e6;
  font-family: 'regular', sans-serif, Arial;
  text-align: center;
  margin-bottom: 0;
}
.block.type-4 .table > tbody > tr > td,
.block.type-4 .table > tbody > tr > th,
.block.type-4 .table > tfoot > tr > td,
.block.type-4 .table > tfoot > tr > th,
.block.type-4 .table > thead > tr > td,
.block.type-4 .table > thead > tr > th {
  border: none;
  width: 1px;
  text-align: center;
  padding: 10px 5px;
  vertical-align: middle;
}
.block.type-4 .table tr th img {
  margin-bottom: 15px;
}
.block.type-4 .table tr th div {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: 'bold', sans-serif, Arial;
  padding: 0 0 25px 0;
}
.block.type-4 .table tr {
  background: #3a4456;
}
.block.type-4 .table tr:nth-child(2n) {
  background: #5a5a5a;
}
.block.type-4 .table tr:first-child,
.block.type-4 .table tr:last-child {
  background: none;
}
.block.type-4 .table tr:last-child td {
  padding-top: 0;
  padding-bottom: 0;
}
.block.type-4 .table tr:last-child td .button {
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.block.type-4 .table.style-1 tr th {
  font-size: 14px;
  font-family: 'bold', sans-serif, Arial;
  color: #fff;
  background: #202836;
}
.block.type-4 .table.style-1 .button {
  line-height: 27px;
  font-size: 9px;
  line-height: 9px;
  padding: 9px 14px;
  margin: -3px 0;
}
.block.type-4 .table.style-1 tr:last-child td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.block.type-4 .table.style-1 tr:last-child td .button {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.block.type-4 .table.style-1 tr {
  background: #3a4456;
}
.block.type-4 .table.style-1 tr:nth-child(2n) {
  background: #5a5a5a;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 12 - BLOCK "TYPE 5" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-5 {
  background: #5a5a5a;
}
.block.type-5 .block-header .title {
  color: #fff;
}
.block.type-5 .block-header .text {
  color: #e6e6e6;
}
.hide-pagination .pagination {
  display: none;
}
.block.type-5 .swiper-slide {
  text-align: center;
  position: relative;
}
.block.type-5 .swiper-slide:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #2e3849;
}
.block.type-5 .swiper-slide:first-child:after {
  display: none;
}
.block.type-5 .swiper-slide img {
  display: inline-block;
  position: relative;
  max-width: 100%;
  height: auto;
}
.block.type-5 .swiper-container {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .block.type-5 .swiper-container {
    padding-bottom: 30px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 13 - BLOCK "TYPE 6" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*accordeon*/
.accordeon-wrapper {
  padding-bottom: 60px;
}
.accordeon-entry {
  margin-bottom: 15px;
}
.accordeon-entry .title {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #bebebe;
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  line-height: 15px;
  padding: 20px 55px 20px 20px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.block:nth-child(2n) .accordeon-entry .title {
  background-color: #fff;
}
.accordeon-entry .title:after {
  width: 23px;
  height: 23px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  background-color: #ab2328;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #d6001c;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #d6001c;
  border: solid 1px #ab2328;
  content: "+";
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-align: center;
}
#content-wrapper .accordeon-entry.active .title,
#content-wrapper .accordeon-entry .title:hover {
  background: #ab2328;
  color: #fff;
}
.accordeon-entry.active .title:after {
  width: 23px;
  height: 23px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  background-color: #fff !important;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
  content: "-";
  color: #ab2328;
  border-color: rgba(0, 0, 0, 0);
  line-height: 20px;
}
.accordeon-entry .title:active:after {
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
}
.accordeon-entry .text,
.side-menu {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #bebebe;
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  padding: 30px 30px 20px 30px;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 18px;
  margin-top: -10px;
  position: relative;
  display: none;
}
.block:nth-child(2n) .accordeon-entry .text,
.block:nth-child(2n) .side-menu {
  background-color: #fff;
}
/*testimomials*/
.testimonials-wrapper {
  padding-bottom: 60px;
}
.testimonials-container {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: url(../../img/icon-30.png) 30px 27px no-repeat #e6e6e6;
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  padding: 65px 30px 25px 30px;
  position: relative;
  margin-bottom: 20px;
}
.block:nth-child(2n) .testimonials-container {
  background-color: #fff;
}
.testimonials-container:after {
  background: url(../../img/icon-31.png);
  width: 32px;
  height: 17px;
  position: absolute;
  top: 100%;
  left: 75px;
  content: "";
}
.block:nth-child(2n) .testimonials-container:after {
  background: url(../../img/icon-68.png);
}
blockquote {
  font-size: 14px !important;
  color: #5a5a5a;
  line-height: 18px;
}
blockquote p {
  font-size: 14px !important;
  font-weight: 300;
  line-height: 1.25;
}
blockquote footer {
  background: none;
  padding-top: 0px;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 18px;
  text-transform: uppercase;
}
blockquote footer cite {
  font-family: 'bold', sans-serif, Arial;
  color: #737374;
}
blockquote footer:before {
  display: none;
}
.testimonials-container .pagination {
  display: none;
}
.testimonials-icons {
  text-align: center;
}
.testimonials-icons .entry {
  padding-top: 25px;
  overflow: hidden;
}
.testimonials-icons .entry div {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.testimonials-icons .entry div:before {
  width: 0%;
  height: 0%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ab2328;
  content: "";
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.testimonials-icons .entry div:hover:before {
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
}
.testimonials-icons .entry div.active:before,
.testimonials-icons .entry div.active:hover:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.testimonials-icons .entry img {
  width: 100%;
  max-width: 110px;
  height: auto;
  display: inline-block;
  position: relative;
}
.side-menu {
  display: block;
  padding: 20px 0 10px 0;
  margin-bottom: 30px;
}
.side-menu .title {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 18px;
  font-family: 'bold', sans-serif, Arial;
  padding: 0px 30px;
  margin-bottom: 15px;
}
.side-menu-item {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 18px;
  padding: 9px 10px 9px 30px;
  cursor: pointer;
  display: block;
}
.side-menu-item:hover,
.side-menu-item.active {
  background: #5a5a5a;
  color: #fff;
}
.side-menu-item span {
  margin-right: 10px;
  font-size: 10px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  color: #ab2328;
}
.switch-container {
  display: none;
}
.testimonials-icons.style-1 {
  height: 130px;
  position: relative;
  margin-top: 30px;
}
.testimonials-icons.style-1 .entry {
  position: absolute;
  height: inherit;
  left: 15px;
  right: 15px;
  padding-top: 0;
}
.testimonials-icons.style-1 .entry img {
  max-width: 130px;
  float: left;
  margin-right: 25px;
}
.testimonials-icons.style-1 .entry div {
  opacity: 0;
  width: 100%;
  height: 130px;
  float: left;
}
.testimonials-icons.style-1 .entry div.active {
  z-index: 1;
  opacity: 1;
}
.testimonials-icons.style-1 .entry div:before {
  display: none;
}
.testimonials-icons.style-1 .entry div .title {
  font-size: 14px;
  line-height: 18px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  padding-top: 40px;
  display: block;
  text-transform: uppercase;
  text-align: left;
}
.testimonials-icons.style-1 .entry div .text {
  font-size: 14px;
  line-height: 18px;
  color: #5a5a5a;
  display: block;
  text-transform: uppercase;
  text-align: left;
}
.testimonials-arrow {
  width: 43px;
  height: 43px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #e6e6e6;
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  float: left;
  text-align: center;
  line-height: 43px;
  font-size: 14px;
  color: #ab2328;
  margin-left: 15px;
  margin-top: 70px;
}
.testimonials-arrow:first-child {
  margin-left: 0;
}
.testimonials-arrow:active,
.block:nth-child(2n) .testimonials-arrow:active {
  color: #fff !important;
  background: #ab2328;
}
.block:nth-child(2n) .testimonials-arrow {
  background-color: #fff;
}
@media (max-width: 991px) {
  .accordeon-wrapper {
    padding-bottom: 30px;
  }
  .testimonials-wrapper {
    padding-bottom: 30px;
  }
  .accordeon-entry .text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .testimonials-arrows {
    display: none;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 14 - BLOCK "TYPE 7" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 991px) {
  .circle-wrapper {
    margin-bottom: 60px;
    min-height: 575px;
    position: relative;
  }
  .quoteintrobig {
    display: none;
  }
  .big-circle-container,
  .big-circle-entry,
  .big-circle-entry img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 575px;
    border-radius: 300px;
    -webkit-border-radius: 300px;
    overflow: hidden;
  }
  .big-circle-container {
    left: 50%;
    margin-left: -287px;
    width: 575px;
  }
  .big-circle-entry {
    opacity: 0;
    background: #5a5a5a;
    z-index: 1;
  }
  .big-circle-entry:first-child {
    opacity: 1;
  }
  .big-circle-entry.visible {
    opacity: 1;
  }
  .big-circle-entry img {
    opacity: 0.15;
  }
  .big-circle-entry .cell-view {
    height: inherit;
    width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .big-circle-entry .title {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-family: 'bold', sans-serif, Arial;
    margin: 0 100px 20px 100px;
  }
  .big-circle-entry .text {
    font-size: 16px;
    line-height: 27px;
    color: #e6e6e6;
    margin: 0 100px;
    width: 72% !important;
  }
  .circle-entry {
    cursor: pointer;
    z-index: 1;
  }
  .circle-entry:nth-child(2n+1) {
    clear: both;
  }
  .circle-entry:nth-child(1),
  .circle-entry:nth-child(2) {
    min-height: 400px;
  }
  .circle-entry .image-wrapper {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 150px;
    border-radius: 150px;
    overflow: hidden;
    position: relative;
    margin: 0 25px;
  }
  .circle-entry .image-wrapper:after {
    border: 11px #fff solid;
    border-radius: 150px;
    -webkit-border-radius: 150px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
  }
  .circle-entry img {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 10px;
    top: 10px;
    border-radius: 150px;
    -webkit-border-radius: 150px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  .circle-entry:nth-child(1) .image-wrapper,
  .circle-entry:nth-child(3) .image-wrapper {
    float: right;
  }
  .circle-entry:nth-child(2) .image-wrapper,
  .circle-entry:nth-child(4) .image-wrapper {
    float: left;
  }
  .circle-entry:nth-child(1) .content,
  .circle-entry:nth-child(3) .content {
    margin: 0 170px 0 45px;
    text-align: right;
  }
  .circle-entry:nth-child(2) .content,
  .circle-entry:nth-child(4) .content {
    margin: 0 45px 0 170px;
  }
  .circle-entry .text {
    line-height: 18px;
    color: #5a5a5a;
  }
}
.circle-entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  padding: 10px 0 15px 0;
}
.circle-entry:hover .title {
  color: #ab2328;
}
@media (max-width: 991px) {
  .big-circle-container {
    position: relative;
  }
  .circle-entry {
    margin-top: 25px;
    margin-bottom: 0;
    clear: both;
    background-color: #fff;
    min-height: 100px;
  }
  .circle-entry .content {
    text-align: left;
    padding-top: 15px;
  }
  .circle-entry .content h3,
  .circle-entry .text {
    text-align: left !important;
  }
  .circle-entry .image-wrapper {
    margin: 0 50px 0 0 !important;
    float: left !important;
  }
  .circle-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .big-circle-container {
    display: none;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 15 - BLOCK "TYPE 8" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-8 {
  background: #5a5a5a;
  z-index: 1;
}
.block.type-8 .block-header .title {
  color: #fff;
}
.block.type-8 .block-header .text {
  color: #e6e6e6;
}
.form-description {
  padding-bottom: 40px;
}
.form-description .title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 3px;
  font-family: 'bold', sans-serif, Arial;
  color: #fff;
}
.form-description .text {
  font-size: 16px;
  line-height: 18px;
  color: #e6e6e6;
}
.form-description .text span {
  color: #ab2328;
  font-size: 18px;
}
.form-description .text small {
  font-size: 13px;
}
.block-form-wrapper {
  padding-bottom: 40px;
}
.block-form {
  height: 50px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fff;
  margin-bottom: 10px;
  position: relative;
}
.block-form input {
  background: none;
  border: none;
  height: 50px;
  line-height: 50px;
  padding: 0 170px 0 20px;
  font-size: 14px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial;
  width: 100%;
  border-color: #ccc;
}
.block-form input[type="submit"] {
  border: none;
  background: url(../../img/icon-40.png) center center no-repeat #ab2328;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  height: 50px;
  width: 55px;
  cursor: pointer;
  padding: 0;
}
.block-form input[type="submit"]:hover {
  opacity: 0.8;
}
.block-form .prefix {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 50px;
  height: 50px;
  width: 95px;
  position: absolute;
  top: 0;
  right: 55px;
  text-align: center;
  border-left: 1px #f2f2f2 solid;
  cursor: pointer;
}
/*.block-form .prefix select{position: absolute; width: 100%; height: 100%; left: 0; top: 0; opacity: 0; border: none; cursor: pointer; background: #ab2328; color: #fff; font-size: 14px; line-height: 18px; font-family: 'regular', sans-serif, Arial;}*/
.prefix-drop-down {
  background: #fff;
  display: none;
}
.prefix-drop-down div {
  color: #ab2328;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.prefix-drop-down div:hover,
.prefix-drop-down div.active {
  background: #ab2328;
  color: #fff !important;
}
.links-examples {
  font-size: 0;
}
.links-examples li {
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  color: #e6e6e6;
  border-left: 1px #ab2328 solid;
}
.links-examples li:first-child {
  border: none;
}
.links-examples li a {
  color: #e6e6e6;
  padding: 0 5px;
  display: block;
}
.links-examples li:first-child a {
  padding-left: 0;
}
.links-examples li a:hover {
  color: #ab2328;
}
@media (max-width: 991px) {
  .form-description {
    padding-bottom: 20px;
  }
  .block-form-wrapper {
    padding-bottom: 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 16 - BLOCK "TYPE 9" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-9 {
  background: #5a5a5a;
  padding: 0;
  height: 122px;
}
.block.type-9 .entry {
  padding-top: 45px;
}
.block.type-9 .title {
  display: inline-block;
  font-size: 28px;
  line-height: 32px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  margin-right: 15px;
}
.block.type-9 .text {
  font-size: 20px;
  line-height: 18px;
  color: #fff;
  display: inline-block;
}
.block.type-9 .text span {
  color: #ab2328;
}
.block.type-9 .text b {
  font-size: 24px;
}
.block.type-9 .text small {
  font-size: 14px;
}
.block.type-9 .text .button {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .block.type-9 {
    height: auto;
    padding: 40px 0;
  }
  .block.type-9 .entry {
    padding: 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 17 - BLOCK "TYPE 10" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-10 {
  padding: 0;
  position: relative;
  background-color: #A21C21;
}
.main-banner-height {
  min-height: 500px !important;
}
.block.type-10 .swiper-slide {
  background-size: cover;
  background-position: center center;
}
.block.type-10 .swiper-container,
.block.type-10 .swiper-wrapper,
.block.type-10 .swiper-slide,
.block.type-10 .container,
.block.type-10 .slide-container,
.block.type-10 .slide-block {
  height: inherit !important;
  min-height: 500px !important;
}
.block.type-10 .pagination {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: none;
}
.block.type-10 .slide-container {
  position: relative;
}
.block.type-10 .image-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  -o-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
}
.block.type-10 .swiper-slide-active .image-overlay {
  -o-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
}
.block.type-10 .vertical-align {
  position: absolute;
  top: 50%;
  left: 0;
  -o-transform: translateY(-52%);
  transform: translateY(-52%);
  -moz-transform: translateY(-52%);
  -webkit-transform: translateY(-52%);
  -ms-transform: translateY(-52%);
  width: 100%;
  height: auto;
}
.block.type-10 .content {
  padding: 0 15px;
  text-align: center;
}
.block.type-10 .content img {
  max-width: 95%;
  height: auto;
  -o-transform: scale(0);
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  display: inline-block;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.block.type-10 .swiper-slide-active .content img {
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
.block.type-10 .content .button {
  margin: 0 15px 15px 0;
}
.block.type-10 .content .price {
  font-size: 20px;
  line-height: 30px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 10px;
}
.block.type-10 .content .price b {
  font-size: 30px;
  font-family: 'bold', sans-serif, Arial;
}
.block.type-10 .content .price small {
  font-size: 14px;
  font-family: 'regular', sans-serif, Arial;
}
.block.type-10 .content .title {
  font-size: 54px;
  line-height: 54px;
  color: #ffffff;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 17px;
  text-align: center;
}
.block.type-10 .content .subtitle {
  font-size: 24px;
  line-height: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'bold', sans-serif, Arial;
  margin-top: -15px;
}
.block.type-10 .content .text {
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 22px;
}
.block.type-10 .content.text-entry {
  position: relative;
  left: 500px;
  opacity: 0;
  text-align: left;
}
.block.type-10 .swiper-slide-active .content.text-entry {
  left: 0;
  opacity: 1;
}
.banner-tabs {
  height: 106px;
  padding-top: 1px;
  overflow: hidden;
}
.banner-tabs:first-child {
  padding-top: 0;
  padding-bottom: 1px;
}
.banner-tabs .tab-entry {
  cursor: pointer;
  text-align: center;
  padding-top: 27px;
  height: 105px;
  background: #e6e6e6;
  border-left: 1px #f2f2f2 solid;
  position: relative;
  border-top: 1px #f2f2f2 solid;
}
.banner-tabs:first-child .tab-entry {
  border-top: none;
  border-bottom: 1px #f2f2f2 solid;
}
.banner-tabs .tab-entry:before {
  position: absolute;
  width: 100%;
  height: 120%;
  left: 0;
  top: 100%;
  margin-top: -1px;
  content: "";
  background: #fff;
}
.banner-tabs:first-child .tab-entry:before {
  top: auto;
  bottom: 100%;
}
.banner-tabs .tab-entry.active:before,
.banner-tabs .tab-entry:hover:before {
  top: 0;
}
.banner-tabs:first-child .tab-entry.active:before,
.banner-tabs:first-child .tab-entry:hover:before {
  top: auto;
  bottom: -1px;
}
.banner-tabs .title {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 10px;
  position: relative;
}
.banner-tabs .text {
  font-size: 13px;
  line-height: 18px;
  color: #5a5a5a;
  position: relative;
}
.swiper-arrow {
  position: absolute;
  top: 50%;
  left: 3%;
  font-size: 35px;
  line-height: 35px;
  margin-top: -17px;
  color: #5a5a5a;
  cursor: pointer;
}
.swiper-arrow:hover {
  color: #ab2328;
}
.swiper-arrow:active {
  -o-transform: scale(0.7);
  transform: scale(0.7);
  -moz-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
}
.swiper-arrow.right {
  left: auto;
  right: 3%;
}
@media (max-width: 991px) {
  .block.type-10 .content img {
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
  }
  .block.type-10 .content.text-entry {
    left: 0;
    opacity: 1;
  }
  .block.type-10,
  .block.type-10 .swiper-container,
  .block.type-10 .swiper-wrapper,
  .block.type-10 .swiper-slide,
  .block.type-10 .container,
  .block.type-10 .slide-container,
  .block.type-10 .slide-block {
    height: 500px !important;
    min-height: 0px !important;
  }
  .block.type-10 .pagination {
    display: block;
  }
  .banner-tabs {
    display: none;
  }
  .swiper-arrow {
    display: none;
  }
}
@media (max-width: 767px) {
  .block.type-10 .swiper-slide {
    padding-bottom: 55px;
    padding-top: 25px;
  }
  .block.type-10,
  .block.type-10 .swiper-container,
  .block.type-10 .swiper-wrapper,
  .block.type-10 .swiper-slide,
  .block.type-10 .container,
  .block.type-10 .slide-container,
  .block.type-10 .slide-block {
    height: auto !important;
  }
  .block.type-10 .vertical-align {
    position: relative;
    top: auto;
    -o-transform: translateY(0%);
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
  .block.type-10 .content {
    padding: 0;
  }
  .block.type-10 .content .title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 5px;
  }
  .block.type-10 .content .subtitle {
    margin-top: 5px;
  }
  .block.type-10 .content .text {
    margin-bottom: 15px;
  }
  .main-banner-height {
    height: auto !important;
    min-height: 200px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 18 - BLOCK "TYPE 6" - MODIFICATION WITH FULL-WIDTH TESTIMONIALS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.style-1 .testimonials-icons .entry {
  padding-top: 0;
}
.block.style-1 .testimonials-icons .entry img {
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.block.style-1 .testimonials-icons .entry div.active img {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.block.style-1 .testimonials-container {
  margin-bottom: 45px;
  background-image: none;
}
.block.style-1 .testimonials-container:after {
  background: url(../../img/icon-45.png);
  width: 25px;
  height: 16px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  content: "";
}
.block:nth-child(2n).style-1 .testimonials-container:after {
  background-image: url(../../img/icon-67.png);
}
.block.style-1 .testimonials-container:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  left: 50%;
  margin-left: -30px;
  top: -30px;
  background: url(../../img/icon-46.png);
}
@media (max-width: 991px) {
  .block.style-1 .testimonials-container {
    margin-top: 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 19 - BLOCK "TYPE 11" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*.text-image-box {
    padding: 30px 0;
}*/
.text-image-box .title {
  font-size: 24px;
  line-height: 18px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 20px;
}
.text-image-box .text {
  font-size: 16px;
  line-height: 22px;
  color: #5a5a5a;
  text-align: left;
}
.text-image-box p,
.text-image-box,
.text-image-box ol {
  margin-bottom: 20px;
  line-height: 22px;
}
.text-image-box .subtitle {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 20px;
}
.text-image-box .subtitle img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 10px;
  margin-bottom: 0;
}
.text-image-box .subtext {
  font-size: 14px;
  line-height: 18px;
  color: #5a5a5a;
}
.text-image-box ul li {
  line-height: 18px;
  padding: 5px 0 5px 40px;
  position: relative;
}
.text-image-box ul li:before {
  width: 24px;
  height: 24px;
  background: url(../../img/icon-50.png);
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
}
.text-image-box .image-wrapper {
  text-align: center;
}
.text-image-box .image-wrapper img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}
.text-image-box .cell-view {
  width: 1000px;
  height: 315px;
}
.row.text-image-box h4 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 18px;
  line-height: 28px;
  color: #5a5a5a;
  margin-bottom: 15px;
  text-align: left;
}
.type-11-separator {
  width: 50%;
  position: relative;
  left: 25%;
  height: auto;
}
.vice-versa {
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
}
.vice-versa-vertical {
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
}
@media (max-width: 991px) {
  .text-image-box {
    padding: 0 0 30px 0;
  }
  .text-image-box:last-child {
    padding-bottom: 0;
  }
  .text-image-box .cell-view {
    width: auto;
    height: auto;
  }
  .text-image-box .image-wrapper {
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .type-11-separator {
    display: none;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 20 - BLOCK "TYPE 12" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tabs-wrapper {
  padding-bottom: 30px;
}
.kptabsleft {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.kptabsright {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.tabs-container {
  display: none;
}
.tabs-switch-box {
  text-align: center;
  font-size: 0;
  margin-bottom: 70px;
  position: relative;
}
.tabs-switch-box .tabs-desktop div,
.tabs-select-text {
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: #e6e6e6;
  font-family: 'bold', sans-serif, Arial;
  padding: 14px 25px;
  background: #5a5a5a;
  cursor: pointer;
  border-left: 1px #fff solid;
}
.tabs-switch-box .tabs-desktop div:first-child {
  border: none;
}
.tabs-switch-box .tabs-desktop div:hover,
.tabs-switch-box .tabs-desktop div.active {
  background: #ab2328;
  color: #fff;
}
.tabs-switch-box select,
.tabs-select-text {
  display: none;
}
.block.type-12 .icon-entry {
  padding-bottom: 30px;
}
.block.type-12 .icon-entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 15px;
}
.block.type-12 .icon-entry .text {
  font-size: 16px;
  line-height: 22px;
  color: #5a5a5a;
}
.block.type-12 .big-image-entry {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 30px;
}
.custom-overflow-wrapper {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  overflow-scrolling: touch;
  padding: 0px 10px 10px 0px;
}
.custom-overflow-container {
  min-width: 900px;
}
.custom-overflow-container .price-entry {
  padding-bottom: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.price-entry.title-column {
  padding-top: 210px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.price-entry.title-column .middle div {
  background: #5a5a5a !important;
  color: #fff;
}
.price-entry.title-column .middle div:nth-child(2n) {
  background: #3a4456 !important;
}
.custom-overflow-container .price-entry .bottom .price b {
  font-size: 30px;
}
.tabs-wrapper.style-1 .text-image-box {
  padding: 0;
}
.tabs-wrapper.style-1 .tabs-container {
  border: 1px #f2f2f2 solid;
  padding: 20px 35px;
}
.tabs-wrapper.style-1 .tabs-switch-box {
  margin-bottom: 0;
}
.tabs-wrapper.style-1 .tabs-switch-box .tabs-desktop div {
  background: #e6e6e6;
  color: #5a5a5a;
  border-right: 1px #f2f2f2 solid;
  border-top: 1px #f2f2f2 solid;
}
.tabs-wrapper.style-1 .tabs-switch-box .tabs-desktop div:last-child {
  border-right: 1px #f2f2f2 solid;
}
.tabs-wrapper.style-1 .tabs-switch-box .tabs-desktop div:hover,
.tabs-wrapper.style-1 .tabs-switch-box .tabs-desktop div.active {
  background: #5a5a5a;
  color: #fff;
}
.kp-pad20 {
  padding-top: 10px;
}
.kp-margin20 {
  margin-top: 90px;
}
@media (max-width: 991px) {
  .tabs-wrapper {
    padding-bottom: 0;
  }
  .tabs-switch-box {
    margin-bottom: 40px;
  }
  /*.tabs-switch-box .tabs-desktop {
        display: none;
    }*/
  .tabs-switch-box select,
  .tabs-select-text,
  .tabs-select-text {
    display: block;
  }
  .tabs-select-text {
    padding: 14px 50px 14px 20px;
    text-align: left;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
  }
  .tabs-select-text .glyphicon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ab2328;
    font-size: 18px;
  }
  .tabs-switch-box select {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    border: none;
    font-family: 'regular', sans-serif, Arial;
    font-size: 18px;
    background: #ab2328;
    color: #fff;
    cursor: pointer;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 21 - BLOCK "TYPE 3" - MODIFICATION WITH SLIDER ENABLED */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-3.style-1 {
  background: #5a5a5a;
  padding-bottom: 100px;
}
.block.type-3.style-1 .block-header .title,
.block.type-3.style-1 .icon-entry .title {
  color: #fff;
}
.block.type-3.style-1 .block-header .text,
.block.type-3.style-1 .icon-entry .text {
  color: #e6e6e6;
}
.block.type-3.style-1 .icon-entry {
  padding-bottom: 0;
}
.block.type-3.style-1 .icon-entry img {
  width: 130px;
  height: 130px;
}
@media (max-width: 991px) {
  .block.type-3.style-1 {
    padding-bottom: 70px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 22 - BLOCK "TYPE 13" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-13 {
  background: #5a5a5a;
}
.block.type-13 .block-header .title {
  color: #fff;
}
.block.type-13 .block-header .text {
  color: #e6e6e6;
}
.circle-slide-box {
  margin-bottom: 25px;
}
.circle-slide-box .pagination {
  display: none;
}
.circle-slide-box .swiper-container {
  height: inherit !important;
  text-align: center;
}
.circle-slide-box .swiper-wrapper {
  background: url(../../img/icon-66.png) left center repeat-x;
  float: left;
}
.circle-slide-box .swiper-slide {
  cursor: pointer;
}
.circle-slide-box img {
  -o-transform: scale(0.4);
  transform: scale(0.4);
  -moz-transform: scale(0.4);
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  max-width: 100%;
  height: auto;
}
.circle-slide-box .swiper-slide-active img {
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  display: inline-block;
}
.circle-description-slide-box {
  text-align: center;
  padding-bottom: 60px;
}
.circle-description-slide-box .pagination {
  display: none;
}
.circle-description-slide-box .title {
  font-size: 18px;
  color: #fff;
  line-height: 18px;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 25px;
}
.circle-description-slide-box .text {
  font-size: 14px;
  color: #e6e6e6;
  line-height: 18px;
}
@media (max-width: 991px) {
  .circle-description-slide-box {
    padding-bottom: 30px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 23 - BLOCK "TYPE 10" - MODIFICATION WITH BACKGROUND IMAGES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-10.style-1:before {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.block.type-10.style-1 .vertical-align {
  margin-top: 0;
}
.block.type-10.style-1 .pagination {
  display: block;
}
.block.type-10.style-1 .swiper-slide {
  position: relative;
}
.block.type-10.style-1 .swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.block.type-10.style-1 .content.text-entry {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: rgba(35, 44, 59, 0.95);
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.4);
  padding: 25px 35px;
}
.block.type-10.style-1.video-slider .content.text-entry {
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  padding: 20px 0;
}
.block.type-10.style-1.video-slider .swiper-slide:before,
.block.type-10.style-1.video-slider:before {
  background: rgba(0, 0, 0, 0.5);
}
.block.type-10.style-1 .content .title {
  color: #fff;
}
.block.type-10.style-1 .content .subtitle {
  color: #e6e6e6;
}
.block.type-10.style-1 .content .text {
  color: #e6e6e6;
}
.style-1 .swiper-arrow {
  color: #ab2328;
}
.style-1 .swiper-arrow:hover {
  color: #fff;
}
.block.type-10.style-1 .block-header {
  margin-bottom: 0;
}
.block.type-10.style-1 .block-header .title {
  color: #fff;
}
.block.type-10.style-1 .block-header .text {
  color: #e6e6e6;
}
.block.type-10.style-1 .container.min-height-0 {
  min-height: 0 !important;
  height: auto !important;
  padding: 35px 0;
}
.video-open {
  cursor: pointer;
  border-radius: 5px;
}
#content-wrapper .video-open:hover {
  background: rgba(22, 29, 40, 0.7);
}
@media (max-width: 767px) {
  .block.type-10.style-1 .swiper-slide {
    background: none !important;
  }
  .block.type-10.style-1 .swiper-slide:before {
    display: none;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 24 - BLOCK "TYPE 8" - MODIFICATION WITH LIGHT TEXT STYLES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.style-1 .form-description .title {
  color: #ab2328;
}
.style-1 .form-description .text {
  color: #838b97;
}
.style-1 .block-form {
  background: #5a5a5a;
}
.style-1 .block-form input,
.style-1 .block-form .prefix {
  color: #e6e6e6;
  border-color: #313b4c;
}
.style-1 .links-examples li a {
  color: #838b97;
}
.style-1 .links-examples li a:hover {
  color: #ab2328;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 25 - BLOCK "TYPE 14" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-14:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}
.block.type-14 .block-header .title {
  color: #fff;
}
.block.type-14 .block-header .text {
  color: #e6e6e6;
}
.block.type-14 .entry {
  position: relative;
  margin-bottom: 40px;
}
.block.type-14 .entry:nth-child(2n+1) {
  clear: both;
}
.block.type-14 .entry .image-wrapper {
  width: 155px;
  text-align: center;
  float: right;
}
.block.type-14 .entry:nth-child(2n) .image-wrapper {
  float: left;
}
.block.type-14 .entry .image-wrapper img {
  width: 130px;
  height: 130px;
  display: inline-block;
}
.block.type-14 .entry .content {
  margin-right: 170px;
  text-align: right;
}
.block.type-14 .entry:nth-child(2n) .content {
  margin-right: 0;
  margin-left: 170px;
  text-align: left;
}
.block.type-14 .entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 15px;
}
.block.type-14 .entry .text {
  font-size: 14px;
  line-height: 18px;
  color: #e6e6e6;
}
.block.type-14 .entry .cell-view {
  height: 130px;
  width: 1000px;
}
@media (max-width: 767px) {
  .block.type-14 .entry {
    margin-bottom: 20px;
  }
  #content-wrapper .block.type-14 .entry .image-wrapper {
    float: none;
    width: auto;
    text-align: center;
    margin-bottom: 10px;
  }
  .block.type-14 .entry .content,
  .block.type-14 .entry:nth-child(2n) .content {
    text-align: left;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }
  .block.type-14 .entry .cell-view {
    height: auto;
  }
  .block.type-14 .entry .title {
    margin-bottom: 10px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 26 - BLOCK "TYPE 15" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-15 .news-entry,
.block.type-15 .blockquote-entry {
  background: #fff;
  margin: 0 10px;
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  position: relative;
}
.block:nth-child(2n).type-15 .news-entry,
.block:nth-child(2n).type-15 .blockquote-entry {
  background: #fff;
}
.block.type-15 .blockquote-entry {
  margin-left: 50px;
}
.block.type-15 .news-wrapper {
  padding-bottom: 60px;
}
.block.type-15 .news-entry .image-wrapper {
  max-width: 40%;
  float: left;
  margin-right: 20px;
}
.block.type-15 .news-entry .image-wrapper:hover img {
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -moz-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
}
.block.type-15 .news-entry img {
  max-width: 100%;
  height: auto;
  display: block;
}
.block.type-15 .news-entry .content {
  margin-right: 10px;
  padding: 20px 0;
}
.block.type-15 .news-entry .data-line {
  font-size: 11px;
  line-height: 14px;
  color: #5a5a5a;
  margin-bottom: 15px;
}
.block.type-15 .news-entry .data-line span {
  color: #ab2328;
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.block.type-15 .news-entry .data-line div {
  display: inline-block;
  margin-right: 5px;
}
.block.type-15 .news-entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 15px;
  display: block;
}
.block.type-15 .news-entry .title:hover {
  color: #ab2328;
}
.block.type-15 .news-entry .text {
  font-size: 14px;
  line-height: 18px;
  color: #5a5a5a;
}
.block.type-15 .blockquote-entry blockquote {
  padding: 25px 20px 25px 50px;
}
.block.type-15 .blockquote-entry .blockquote-icon {
  width: 70px;
  height: 70px;
  position: absolute;
  left: -35px;
  top: 50%;
  margin-top: -35px;
}
@media (max-width: 991px) {
  .block.type-15 .news-wrapper {
    padding-bottom: 30px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 27 - BLOCK "TYPE 6" - MODIFICATION WITH FULL-WIDTH TESTIMONIALS AND SQUARE SLIDES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-6.style-1.square-slider .testimonials-icons .entry img {
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  width: 100%;
  height: auto;
  max-width: 130px;
  display: block;
}
.block.type-6.style-1.square-slider .testimonials-icons .entry div:before {
  z-index: 1;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: rgba(35, 44, 59, 0.7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
}
.block.type-6.style-1.square-slider .testimonials-icons .entry div:hover:before {
  opacity: 0.7;
}
.block.type-6.style-1.square-slider .testimonials-icons .entry div.active:before,
.block.type-6.style-1.square-slider .testimonials-icons .entry div.active:hover:before {
  opacity: 0;
}
@media (max-width: 420px) {
  .block.type-6.style-1.square-slider .testimonials-wrapper .connected-to-top-swiper {
    width: 290px;
  }
}
@media (min-width: 421px) and (max-width: 767px) {
  .block.type-6.style-1.square-slider .testimonials-wrapper .connected-to-top-swiper {
    width: 390px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block.type-6.style-1.square-slider .testimonials-wrapper .connected-to-top-swiper {
    width: 650px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block.type-6.style-1.square-slider .testimonials-wrapper .connected-to-top-swiper {
    width: 910px;
  }
}
@media (min-width: 1200px) {
  .block.type-6.style-1.square-slider .testimonials-wrapper .connected-to-top-swiper {
    width: 1170px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 28 - BLOCK "TYPE 16" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.timeline {
  margin-bottom: 30px;
  padding-bottom: 30px;
  padding-top: 36px;
  margin-top: 0px;
  position: relative;
}
.timeline:before {
  width: 6px;
  height: 100%;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 0;
  background: #ccced2;
  content: "";
}
.timeline-entry {
  padding-top: 35px;
  padding-bottom: 35px;
}
.timeline-entry .timeline-entry-container {
  min-height: 130px;
  background: #ffffff;
  border-radius: 0 65px 65px 0;
  -webkit-border-radius: 0 65px 65px 0;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  margin-right: 20px;
  position: relative;
}
.timeline-entry:nth-child(2n) .timeline-entry-container {
  border-radius: 65px 0 0 65px;
  margin-right: 0;
  margin-left: 20px;
}
.block:nth-child(2n) .timeline-entry .timeline-entry-container {
  background: #fff;
}
.timeline-entry .timeline-entry-container:before {
  width: 22px;
  height: 22px;
  background: #ccced2;
  border-radius: 50%;
  position: absolute;
  right: -46px;
  top: 50%;
  margin-top: -11px;
  content: "";
  border: 4px #fff solid;
}
.block:nth-child(2n) .timeline-entry .timeline-entry-container:before {
  border-color: #e6e6e6;
}
.timeline-entry:nth-child(2n) .timeline-entry-container:before {
  display: none;
}
.timeline-entry .image-wrapper {
  width: 130px;
  height: 130px;
  float: right;
}
.timeline-entry .content {
  margin-right: 150px;
  margin-left: 20px;
  text-align: right;
}
.timeline-entry .content .cell-view {
  height: 130px;
  width: 1000px;
  padding: 10px 0;
}
.timeline-entry:nth-child(2n) .image-wrapper {
  float: left;
}
.timeline-entry:nth-child(2n) .content {
  margin-right: 20px;
  margin-left: 150px;
  text-align: left;
}
.timeline-entry .content .title {
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
  font-size: 18px;
  line-height: 18px;
  padding: 10px 0 15px;
}
.timeline-entry .content .text {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 991px) {
  .timeline-entry .timeline-entry-container:before {
    right: 50%;
    margin-right: -11px;
    top: -43px;
    margin-top: 0;
  }
  .timeline-entry:nth-child(2n) .timeline-entry-container:before {
    display: block;
  }
  .timeline-entry:first-child .timeline-entry-container:before {
    display: none;
  }
  .timeline-entry .timeline-entry-container,
  .timeline-entry:nth-child(2n) .timeline-entry-container {
    margin: 0;
  }
  .timeline-entry .image-wrapper,
  .timeline-entry:nth-child(2n) .image-wrapper {
    float: none;
    width: auto;
    text-align: center;
  }
  .timeline-entry .content,
  .timeline-entry:nth-child(2n) .content {
    margin: 0 20px;
    text-align: center;
  }
  .timeline-entry .content .cell-view {
    height: auto;
    padding: 0;
  }
  .timeline-entry .timeline-entry-container,
  .timeline-entry:nth-child(2n) .timeline-entry-container {
    border-radius: 0;
    -webkit-border-radius: 0;
    padding: 20px 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 29 - TYPOGRAPHY STYLES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.typography-block {
  font-size: 16px;
  line-height: 22px;
  color: #5a5a5a;
}
.typography-block .large-font {
  font-size: 18px;
  line-height: 28px;
}
.typography-block .medium-font {
  font-size: 16px;
  line-height: 26px;
}
.block.type-5 .typography-block {
  color: #e6e6e6;
}
.typography-block ul {
  list-style: disc!important;
  margin-bottom: 18px!important;
  margin-left: 24px!important;
  position: relative!important;
  left: 20px!important;
}
.typography-block li {
  padding: 3px 0 3px 35px;
  position: relative;
}
.typography-block ul li:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #656565;
}
.typography-block .large-font ul li:before {
  top: 16px;
}
.typography-block .medium-font ul li:before {
  top: 15px;
}
.typography-block ul.list-type-1 li {
  padding-left: 40px;
}
.typography-block ul.list-type-1 li:before {
  background: url(../../img/icon-50.png);
  width: 24px;
  height: 24px;
  left: 0;
  top: 3px;
}
.typography-block .large-font ul.list-type-1 li:before {
  top: 7px;
}
.typography-block .medium-font ul.list-type-1 li:before {
  top: 6px;
}
.typography-block ul.list-type-2 img {
  width: 24px;
  height: auto;
  position: absolute;
  left: 0px;
  top: 4px;
}
.typography-block .large-font ul.list-type-2 img {
  top: 8px;
}
.typography-block .medium-font ul.list-type-2 img {
  top: 6px;
}
.typography-block ul.list-type-2 li:before {
  display: none;
}
.typography-block ol {
  list-style: none;
  counter-reset: number;
}
.typography-block ol li {
  padding-left: 0;
}
.typography-block ol li:before {
  counter-increment: number;
  content: "#" counter(number);
  color: #ab2328;
  font-family: "bold", sans-serif, Arial;
  margin-right: 5px;
}
.typography-block h1 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 54px;
  line-height: 54px;
  color: #5a5a5a;
  margin-bottom: 5px;
}
.typography-block h2 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 40px;
  line-height: 40px;
  color: #ab2328;
  margin-bottom: 10px;
}
.typography-block h3 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 20px;
  line-height: 20px;
  color: #5a5a5a;
  margin-bottom: 15px;
  text-align: left;
}
.typography-block h4 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 18px;
  line-height: 28px;
  color: #5a5a5a;
  margin-bottom: 15px;
}
.typography-block h5 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 24px;
  line-height: 18px;
  color: #5a5a5a;
  margin-bottom: 20px;
}
.typography-block h6 {
  font-family: 'bold', sans-serif, Arial;
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  margin-bottom: 20px;
}
.block.type-5 .typography-block h1,
.block.type-5 .typography-block h2,
.block.type-5 .typography-block h3,
.block.type-5 .typography-block h4,
.block.type-5 .typography-block h5,
.block.type-5 .typography-block h6 {
  color: #fff;
}
.alert {
  color: #fff;
  font-size: 11px;
  line-height: 17px;
  text-transform: uppercase;
  font-family: "bold", sans-serif, Arial;
}
.alert-success {
  background-color: #7db42e;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #9bd24d;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #9bd24d;
  border: solid 1px #7db42e;
}
.alert-info {
  background-color: #f5f5f5;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #fff;
  border: solid 1px #f5f5f5;
  color: #5a5a5a;
}
.alert-warning {
  background-color: #ab2328;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #d6001c;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #d6001c;
  border: solid 1px #ab2328;
}
.alert-danger {
  background-color: #fc2222;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #ff6262;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 -2px #ff6262;
  border: solid 1px #fc2222;
}
button.close {
  opacity: 1 !important;
  color: #fff !important;
  text-shadow: none;
}
.alert-info button.close {
  color: #5a5a5a !important;
}
.highlight {
  color: #fff;
  display: inline;
  padding: 0 5px;
}
.highlight.style-1 {
  background: #5a5a5a;
}
.highlight.style-2 {
  background: #ab2328;
}
span[data-toggle="popover"] {
  color: #ab2328;
  cursor: pointer;
}
span[data-toggle="popover"] .glyphicon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 3px;
}
.popover {
  background: #5a5a5a;
  color: #fff;
  border: none;
}
.popover.top > .arrow::after {
  border-top-color: #5a5a5a;
}
.popover.left > .arrow::after {
  border-left-color: #5a5a5a;
}
.popover.right > .arrow::after {
  border-right-color: #5a5a5a;
}
.popover.bottom > .arrow::after {
  border-bottom-color: #5a5a5a;
}
.typography-block a {
  color: #ab2328;
  text-decoration: underline;
  height: 0px;
  position: relative;
}
.typography-block a:hover {
  text-decoration: none;
}
.six-clear {
  padding: 0 0 0 0;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 30 - BLOCK "TYPE 1" - MODIFICATION WITH TWO COLUMNS INSTEAD THREE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-1.style-1 .icon-entry img {
  width: 120px;
  height: 120px;
}
.block.type-1.style-1 .icon-entry .title {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .block.type-1 .icon-entry {
    padding-bottom: 30px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 30 - INSPECTION */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.gm-style a,
.gm-style div,
.gm-style label,
.gm-style span {
  font-family: Arial, Helvetica, sans-serif;
}
.bh-sl-error {
  clear: both;
  float: left;
  width: 100%;
  padding: 10px 0;
  color: #ae2118;
  font-weight: 700;
}
.bh-sl-container {
  color: #333;
}
.bh-sl-container img {
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  top: 15px;
  left: 10px;
}
.bh-sl-container > * {
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
.bh-sl-container .jumbotron {
  padding-top: 30px;
}
.bh-sl-container .form-input input,
.bh-sl-container .form-input label,
.bh-sl-container .form-input select {
  margin-right: 10px;
}
.bh-sl-container .bh-sl-loading {
  float: left;
  margin: 4px 0 0 10px;
  width: 16px;
  height: 16px;
  background: url(../../img/ajax-loader.gif) no-repeat;
}
.bh-sl-container .bh-sl-filters-container {
  clear: both;
  width: 100%;
  margin: 15px 0;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters {
  list-style: none;
  float: left;
  padding: 0;
  margin: 0 100px 0 0;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li {
  display: block;
  clear: left;
  float: left;
  width: 100%;
  margin: 5px 0;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li label {
  display: inline;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li input {
  display: block;
  float: left;
  margin: 2px 8px 2px 0;
}
.bh-sl-container .bh-sl-map-container {
  margin-top: 27px;
}
.bh-sl-container .bh-sl-map-container a {
  color: #005293;
  text-decoration: none;
}
.bh-sl-container .bh-sl-map-container a:active,
.bh-sl-container .bh-sl-map-container a:hover {
  text-decoration: underline;
}
.bh-sl-container .bh-sl-loc-list {
  height: 530px;
  overflow-x: auto;
  font-size: 13px;
}
.bh-sl-container .bh-sl-loc-list ul {
  display: block;
  clear: left;
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-sl-container .bh-sl-loc-list ul li {
  display: block;
  clear: left;
  float: left;
  margin: 3% 4%;
  cursor: pointer;
  width: 92%;
  border: 1px solid #fff;
}
.bh-sl-container .bh-sl-loc-list .list-label {
  float: left;
  margin: 10px 0 0 6px;
  padding: 4px;
  width: 27px;
  text-align: center;
  background: #00192d;
  color: #fff;
  font-weight: 700;
  border-radius: 15px;
}
.bh-sl-container .bh-sl-loc-list .list-details {
  float: left;
  margin-left: 6px;
  width: 80%;
}
.bh-sl-container .bh-sl-loc-list .list-details .list-content {
  padding: 10px;
}
.bh-sl-container .bh-sl-loc-list .list-details .loc-dist {
  font-weight: 700;
  font-style: italic;
  color: #8e8e8e;
}
.bh-sl-container .bh-sl-loc-list .list-focus {
  border: 1px solid rgba(0, 82, 147, 0.4);
  -moz-box-shadow: 0 0 8px rgba(0, 82, 147, 0.4);
  -webkit-box-shadow: 0 0 8px rgba(0, 82, 147, 0.4);
  box-shadow: 0 0 8px rgba(0, 100, 180, 0.4);
  -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  -o-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  -webkit-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-close-directions-container {
  width: 100%;
  height: 20px;
  position: relative;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-close-directions-container .bh-sl-close-icon {
  top: 0;
  right: 6px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-noresults-title {
  font-weight: 700;
}
.bh-sl-container .loc-name {
  font-size: 15px;
  font-weight: 700;
}
.bh-sl-container .bh-sl-map {
  height: 530px;
}
.bh-sl-container .bh-sl-pagination-container {
  clear: both;
}
.bh-sl-container .bh-sl-pagination-container ol {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 10px 0;
}
.bh-sl-container .bh-sl-pagination-container ol li {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font: 700 14px Arial, Helvetica, sans-serif;
  color: #005293;
}
.bh-sl-container .bh-sl-pagination-container ol .bh-sl-current {
  color: #333;
  cursor: auto;
  text-decoration: none;
}
.bh-sl-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: url(../../img/overlay-bg.png) repeat;
}
.bh-sl-overlay .bh-sl-modal-window {
  position: absolute;
  left: 50%;
  margin-left: -460px;
  margin-top: 60px;
  width: 920px;
  height: 620px;
  z-index: 10010;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #656565;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-map-container {
  margin-top: 50px;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-modal-content {
  float: left;
  padding: 0 22px;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-close-icon {
  top: 13px;
  right: 22px;
}
.bh-sl-close-icon {
  position: absolute;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
.bh-sl-close-icon:after,
.bh-sl-close-icon:before {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 0;
  left: 50%;
  background: #ccc;
  content: '';
  display: block;
  height: 24px;
  margin: -3px 0 0 -1px;
  width: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bh-sl-close-icon:hover:after,
.bh-sl-close-icon:hover:before {
  background: #b3b3b3;
}
.bh-sl-close-icon:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 31 - BLOCK "TYPE 16" - MODIFICATION WITH ANOTHER TIMELINE LOOK */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-16.style-1 .timeline-entry {
  clear: both;
  padding-top: 5px;
  padding-bottom: 5px;
}
.block.type-16.style-1 .timeline-entry:nth-child(2n) {
  float: right;
}
.block.type-16.style-1 .timeline-entry .timeline-entry-container:before {
  background: #ab2328;
  right: -56px;
}
.block.type-16.style-1 .timeline-entry:nth-child(2n) .timeline-entry-container:before {
  display: block;
  right: auto;
  left: -56px;
}
.block.type-16.style-1 .timeline-entry .timeline-entry-container:after {
  width: 12px;
  height: 22px;
  background: url(../../img/icon-106.png);
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -11px;
}
.block:nth-child(2n).type-16.style-1 .timeline-entry .timeline-entry-container:after {
  background: url(../../img/icon-107.png);
}
.block.type-16.style-1 .timeline-entry:nth-child(2n) .timeline-entry-container:after {
  left: auto;
  right: 100%;
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
}
.block.type-16.style-1 .timeline-entry .timeline-entry-container,
.block.type-16.style-1 .timeline-entry:nth-child(2n) .timeline-entry-container {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.timeline-entry .content .date {
  font-size: 12px;
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
}
.block.type-16.style-1 .timeline-entry .timeline-entry-container {
  min-height: 155px;
  margin-right: 30px;
}
.block.type-16.style-1 .timeline-entry:nth-child(2n) .timeline-entry-container {
  margin-right: 0;
  margin-left: 30px;
}
.block.type-16.style-1 .timeline-entry .content .cell-view {
  height: 155px;
}
.block.type-16.style-1 .timeline-entry .image-wrapper {
  position: absolute;
  width: 130px;
  height: 100%;
  overflow: hidden;
  top: 0;
  right: 0;
}
.block.type-16.style-1 .timeline-entry:nth-child(2n) .image-wrapper {
  right: auto;
  left: 0;
}
.block.type-16.style-1 .timeline-entry .image-wrapper img {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -35px 0 0 -35px;
}
.block.type-16.style-1 .timeline-entry .content {
  margin-right: 130px;
}
.block.type-16.style-1 .timeline-entry:nth-child(2n) .content {
  margin-left: 130px;
  margin-right: 0;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .block.type-16.style-1 .timeline-entry .image-wrapper,
  .block.type-16.style-1 .timeline-entry:nth-child(2n) .image-wrapper {
    position: relative;
    left: auto;
    right: auto;
    text-align: center;
    height: auto;
    width: auto;
  }
  .block.type-16.style-1 .timeline-entry .image-wrapper img {
    position: relative;
    display: inline-block;
    margin: 0;
    top: auto;
    left: auto;
  }
  .block.type-16.style-1 .timeline-entry .timeline-entry-container:after {
    display: none;
  }
  .block.type-16.style-1 .timeline-entry .timeline-entry-container,
  .block.type-16.style-1 .timeline-entry:nth-child(2n) .timeline-entry-container {
    margin: 0;
  }
  .block.type-16.style-1 .timeline-entry .content,
  .block.type-16.style-1 .timeline-entry:nth-child(2n) .content {
    margin: 0;
  }
  .block.type-16.style-1 .timeline-entry .content .cell-view {
    height: auto;
    padding-bottom: 0;
  }
  .block.type-16.style-1 .timeline-entry {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .block.type-16.style-1 .timeline-entry .timeline-entry-container:before,
  .block.type-16.style-1 .timeline-entry:nth-child(2n) .timeline-entry-container:before {
    right: 50%;
    left: auto;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 32 - BLOCK "TYPE 17" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.popular-faq-entry {
  position: relative;
  margin-bottom: 60px;
}
.popular-faq-entry .image-wrapper {
  float: left;
  width: 130px;
}
.popular-faq-entry .image-wrapper img {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -50px;
}
.popular-faq-entry .content {
  margin-left: 130px;
  padding-left: 35px;
  border-left: 5px #ab2328 solid;
  min-height: 90px;
}
.popular-faq-entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
  margin-bottom: 25px;
}
.popular-faq-entry .text {
  font-size: 16px;
  line-height: 18px;
  color: #5a5a5a;
}
@media (max-width: 991px) {
  .popular-faq-entry {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .popular-faq-entry .image-wrapper img {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    display: inline-block;
  }
  .popular-faq-entry .image-wrapper {
    float: none;
    text-align: center;
    width: auto;
    margin-bottom: 15px;
  }
  .popular-faq-entry .content {
    margin: 0;
    border: none;
    padding: 0;
    text-align: center;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 33 - BLOCK "TYPE 6" - MODIFICATION WITH FULL-WIDTH TESTIMONIALS AND BACKGROUND */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.block.type-6.style-2 .background-slider .testimonials-container .pagination {
  display: block;
}
.block.type-6.style-2 .testimonials-wrapper {
  padding-bottom: 0;
}
.block.type-6.style-2 .testimonials-container {
  margin-bottom: 0;
  text-align: center;
  background: #fff;
  padding: 50px 30px 90px 30px;
  margin-top: 30px;
}
.block.type-6.style-2 .testimonials-container:before {
  width: 60px;
  height: 60px;
  background: url(../../img/icon-112.png);
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -30px;
}
.block.type-6.style-2 .testimonials-container:after {
  display: none;
}
.block.type-6.style-2 .testimonial-image {
  text-align: center;
  margin-top: -80px;
  position: relative;
}
.block.type-6.style-2 .testimonial-image img {
  display: inline-block;
  border: 15px #fff solid;
}
.block.type-6.style-2 blockquote footer {
  padding-top: 15px;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 35 - BLOG */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.blog-wrapper {
  padding-top: 60px;
}
/*side menu - blog entries*/
.side-menu-image-item {
  margin-bottom: 25px;
}
.side-menu-image-item:last-child {
  margin-bottom: 15px;
}
.side-menu-image-item .image {
  margin: 0 30px 10px 30px;
  display: block;
  position: relative;
}
.side-menu-image-item .image:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(35, 44, 59, 0.8);
  z-index: 1;
  opacity: 0;
}
.side-menu-image-item .image:hover:before {
  opacity: 1;
}
.side-menu-image-item .image:after {
  content: "Read More...";
  font-family: "bold", sans-serif, Arial;
  font-size: 14px;
  line-height: 14px;
  color: #ab2328;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  top: 50%;
  margin-top: -7px;
  z-index: 1;
  -o-transform: scale(0);
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
}
.side-menu-image-item .image:hover:after {
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
.side-menu-image-item .image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.side-menu-image-item .title {
  font-size: 14px;
  line-height: 18px;
  display: block;
  margin-bottom: 7px;
}
.side-menu-image-item .title:hover {
  color: #ab2328;
}
.author {
  margin: 0 30px 0 30px;
  font-size: 12px;
  color: #5a5a5a;
  line-height: 14px;
}
.author a {
  font-family: "bold", sans-serif, Arial;
  color: #ab2328;
}
.author a:hover {
  color: #5a5a5a;
}
/*tags*/
.tag {
  font-size: 11px;
  line-height: 14px;
  color: #5a5a5a;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 10px 6px 10px;
  background: #fff;
  margin: 2px 4px 2px 0;
}
.tag:hover,
.tag.active {
  color: #fff;
  background: #ab2328;
}
.tags-wrapper {
  margin: 0 30px;
  font-size: 0;
}
/*simple search form*/
.search-form {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #5a5a5a;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  height: 50px;
  margin-bottom: 30px;
  position: relative;
}
.search-form input[type="text"] {
  border: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  color: #e6e6e6;
  background: none;
  padding: 0 70px 0 20px;
}
.search-form input[type="submit"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  background: url(../../img/KP-websafe-icons-11.png) center center no-repeat;
  border: none;
}
/*main blog entry*/
.blog-entry {
  margin-bottom: 100px;
}
.blog-entry .data-column {
  float: left;
  width: 70px;
  text-align: center;
}
.blog-entry .data-column .date {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #5a5a5a;
  height: 70px;
  font-size: 12px;
  color: #e6e6e6;
  line-height: 14px;
  margin-bottom: 35px;
}
.blog-entry .data-column .date span {
  display: block;
  font-family: "bold", sans-serif, Arial;
  font-size: 28px;
  line-height: 30px;
  padding-top: 10px;
  color: #fff;
  margin-bottom: 3px;
}
.blog-entry .data-column .data-entry {
  margin-bottom: 35px;
  font-size: 14px;
  line-height: 14px;
  color: #5a5a5a;
}
.blog-entry .data-column .data-entry .icon-entry {
  margin-bottom: 5px;
  display: inline-block;
  height: 28px;
  width: 28px;
  background-position: center center;
  background-repeat: no-repeat;
}
.blog-entry .data-column .data-entry .icon-entry.like {
  background-image: url(../../img/KP-websafe-icons-02.png);
}
.blog-entry .data-column .data-entry .icon-entry.views {
  background-image: url(../../img/KP-websafe-icons-06.png);
}
.blog-entry .data-column .data-entry .icon-entry.comments {
  background-image: url(../../img/KP-websafe-icons-09.png);
}
.blog-entry .content {
  margin-left: 100px;
}
.thumbnail-entry {
  margin-bottom: 25px;
  display: block;
}
.thumbnail-entry .thumbnail-img {
  display: block;
  max-width: 100%;
  height: auto;
}
.blog-entry .content .title {
  font-size: 24px;
  line-height: 30px;
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
  margin-bottom: 15px;
  display: inline-block;
}
.blog-entry .content a.title:hover {
  color: #ab2328;
}
.blog-entry .content .author {
  font-size: 14px;
  margin: 0 0 15px 0;
}
.blog-entry .content .description {
  font-size: 14px;
  line-height: 20px;
  color: #5a5a5a;
  margin-bottom: 25px;
}
/*blockquote*/
.blog-entry .content .thumbnail-entry blockquote {
  background: url(../../img/KP-websafe-icons-12.png) 55px 40px no-repeat #5a5a5a;
  padding: 100px 70px 60px 70px;
}
.blog-entry .content .thumbnail-entry blockquote p {
  font-size: 30px;
  line-height: 37px;
  color: #fff;
  font-style: italic;
}
.blog-entry .content .thumbnail-entry blockquote footer {
  color: #e6e6e6;
}
.blog-entry .content .thumbnail-entry blockquote.light {
  background-color: #e6e6e6;
}
.blog-entry .content .thumbnail-entry blockquote.light p {
  color: #5a5a5a;
}
.blog-entry .content .thumbnail-entry blockquote.light footer {
  color: #5a5a5a;
}
/*blog swiper*/
.blog-swiper {
  height: 400px;
}
.blog-swiper .swiper-container {
  height: inherit !important;
}
.blog-swiper .pagination {
  position: absolute;
  margin: 0;
  left: 0;
  bottom: 35px;
}
.blog-swiper .swiper-slide {
  background-size: cover;
  background-position: center center;
}
/*paginator*/
.paginator {
  padding: 30px 0;
  border-top: 1px #f2f2f2 solid;
  border-bottom: 1px #f2f2f2 solid;
  margin-bottom: 100px;
}
.paginator .button {
  font-size: 9px;
  line-height: 9px;
  padding: 9px 14px;
  float: right;
}
.paginator .button:first-child {
  float: left;
}
.paginator ul {
  list-style: none;
  margin: 0 100px -27px 100px;
  font-size: 0;
  text-align: center;
}
.paginator ul li {
  display: inline-block;
  font-size: 13px;
  line-height: 27px;
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
  padding: 0 10px;
}
.paginator ul li a {
  color: #5a5a5a;
}
.paginator ul li a:hover,
.paginator ul li a.active {
  color: #ab2328;
}
/*sound iframe*/
.soundcloud-wrapper {
  padding: 70px;
  background: #e6e6e6;
}
/*related posts*/
.blog-detail-content {
  margin-left: 100px;
  margin-top: -20px;
}
.related-posts {
  margin-bottom: 70px;
}
.related-posts .swiper-container {
  margin: 0 -15px 0 -15px;
}
.blog-subtitle {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 70px;
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
  text-align: center;
}
.related-post-entry {
  padding: 0 15px;
}
.related-post-entry .image {
  display: block;
  margin-bottom: 20px;
}
.related-post-entry .image img {
  max-width: 100%;
  height: auto;
}
.related-post-entry .title {
  font-size: 18px;
  line-height: 18px;
  color: #5a5a5a;
  font-family: "bold", sans-serif, Arial;
  margin-bottom: 12px;
  display: inline-block;
}
.related-post-entry .title:hover {
  color: #ab2328;
}
.related-post-entry .author {
  font-size: 14px;
  margin: 0 0 12px 0;
}
.related-post-entry .description {
  font-size: 14px;
  line-height: 18px;
  color: #5a5a5a;
}
/*comments*/
.comment-wrapper {
  margin-left: 70px;
}
.comment-entry {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #e6e6e6;
  -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  min-height: 70px;
  position: relative;
  margin-left: -35px;
  padding: 27px 20px 27px 65px;
}
.comment-entry .comment-icon {
  width: 70px;
  height: 70px;
  position: absolute;
  left: -35px;
  top: 50%;
  margin-top: -35px;
}
.comment-entry .title {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
  color: #5a5a5a;
  text-transform: uppercase;
}
.comment-entry .title .name {
  font-family: "bold", sans-serif, Arial;
  color: #5a5a5a;
}
.comment-entry .description {
  font-size: 16px;
  line-height: 25px;
  color: #5a5a5a;
  margin-bottom: 20px;
}
.comment-entry .comment-link {
  font-size: 11px;
  line-height: 16px;
  color: #ab2328;
  font-family: "bold", sans-serif, Arial;
  display: inline-block;
  text-transform: uppercase;
}
.comment-entry .comment-link span {
  display: inline-block;
  margin-right: 5px;
}
.comment-entry .comment-link:hover {
  color: #5a5a5a;
}
.blog-detail-content .form-block {
  margin-top: 0;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .blog-wrapper {
    padding-top: 50px;
  }
  .blog-entry {
    margin-bottom: 50px;
  }
  .paginator {
    margin-bottom: 50px;
  }
  .related-posts {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .blog-entry .data-column {
    float: none;
    width: auto;
    text-align: left;
  }
  .blog-entry .data-column .date {
    display: inline-block;
    width: 70px;
    margin: 0 10px 15px 0;
    text-align: center;
  }
  .blog-entry .data-column .data-entry {
    display: inline-block;
    margin: 0 10px 15px 10px;
    text-align: center;
  }
  .blog-entry .content {
    margin-left: 0;
  }
  .blog-detail-content {
    margin-left: 0;
  }
  .blog-entry .content .thumbnail-entry blockquote {
    padding: 50px 20px 20px 20px;
    background-position: 7px 0;
  }
  .blog-entry .content .thumbnail-entry blockquote p {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-swiper {
    height: 200px;
  }
  .blog-swiper .pagination {
    bottom: 15px;
  }
  .paginator ul {
    margin: 0 0 5px 0;
  }
  .soundcloud-wrapper {
    padding: 15px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 38 - CSS ANIMATIONS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.class {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -ms-transition: none;
}
.button,
footer a,
.subscription-form input[type="submit"],
.menu-entry a,
.header-right a.link,
.accordeon-entry .title:after,
.accordeon-entry .title,
.testimonials-icons .entry div:before,
.block-form input[type="submit"],
.links-examples li a,
.banner-tabs .tab-entry:before,
.circle-entry .title,
.telephone-link,
.block.style-1 .testimonials-icons .entry img,
.tabs-switch-box .tabs-desktop div,
.block.type-15 .news-entry .title,
.block-button-container .button-description a,
.swiper-arrow,
.side-menu-item,
.testimonial-arrow,
.simple-link,
.simple-link span,
.author a,
.side-menu-image-item .title,
.side-menu-image-item .image:before,
.side-menu-image-item .image:after,
.paginator ul li a,
.related-post-entry .title,
.comment-entry .comment-link,
.subheader-link,
.subheader,
.prefix-drop-down div,
.blog-entry .content a.title,
.theme-config .colours-wrapper .entry:after,
.block.type-15 .news-entry .image-wrapper img {
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
}
footer .social-icon:before,
.menu-entry div,
.menu-entry .submenu-icon span,
.submenu-icon:before,
.open-icon span,
.big-circle-entry,
.loaded .block.type-10 .content img,
.loaded .block.type-10 .image-overlay,
.loaded .block.type-10 .text-entry,
.circle-slide-box img,
.testimonials-icons .entry div,
.theme-config,
.theme-config .open img {
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
}
.class {
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
}
.class {
  -moz-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -ms-transition: all 700ms ease-out;
}
.video-player {
  -moz-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -ms-transition: all 1000ms ease-out;
}
/*transition delay*/
.block.type-10 .swiper-slide-active .content img,
.block.type-10 .swiper-slide-active .text-entry,
.block.type-10 .swiper-slide-active .image-overlay {
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
/*  =====================
	VERTICAL ALIGN STYLES
	=====================  */
.class {
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  top: 50%;
  position: absolute;
}
/*  =================
	BORDER BOX STYLES
	=================  */
.subscription-form input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*  ===============
	BOX SIZE STYLES
	===============  */
.box-size {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 39 - LANDING PAGE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.bg {
  position: absolute;
  left: -149px;
  top: -160px;
  width: 126%;
  height: 687px;
  overflow: hidden;
  z-index: -1;
}
.bg img {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
}
.bg-bg {
  background-position: 50% 0px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.demo-baner {
  position: relative;
  width: 100%;
  height: 600px;
}
.demo-block {
  text-align: center;
  position: relative;
  width: 100%;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.demo-block .image {
  margin-bottom: 30px;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.demo-block .image img {
  width: 100%;
  height: auto;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
}
.demo-block:hover {
  z-index: 5;
}
.demo-block .image:hover img {
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  margin-top: 250px;
  -o-transition: all 5s ease-out;
  transition: all 5s ease-out;
  -webkit-transition: all 5s ease-out;
  -moz-transition: all 5s ease-out;
  -ms-transition: all 5s ease-out;
}
.demo-block .vertical-align {
  position: absolute;
  width: 100%;
  top: 50%;
  -o-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  text-align: center;
}
.demo-title {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  margin: 20px 0px;
  color: #fff;
}
.demo-title h6 {
  font-size: 14px;
  padding-top: 10px;
}
.demo-title img {
  min-width: 100px;
  height: auto;
}
.support-demo {
  position: relative;
  width: 100%;
  background: #5a5a5a;
}
.list-demo {
  position: relative;
  float: left;
  width: 85%;
  list-style: none;
}
.list-demo li {
  text-align: center;
  padding: 15px 0px 10px 0px;
  float: left;
  color: #fff;
  width: 12.5%;
  position: relative;
}
.list-demo li:after {
  content: "";
  width: 1px;
  height: 150%;
  position: absolute;
  top: 0;
  left: 0;
  background: #2e3849;
}
.list-demo li img {
  height: 35px;
  width: auto;
}
.list-demo li span {
  color: #e6e6e6;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0 auto;
  display: block;
  clear: both;
  text-align: center;
  max-width: 90px;
  padding: 8px 0px;
}
.list-demo-title {
  position: relative;
  float: left;
  width: 15%;
}
.list-demo-title h5 {
  text-align: right;
  color: #e6e6e6;
  padding: 35px 15px;
  font-size: 16px;
  font-weight: 700;
}
.button-demo {
  text-align: center;
  padding-top: 60px;
}
.button-demo b {
  display: block;
  font-size: 20px;
  padding-bottom: 20px;
}
.button-demo .button {
  text-transform: capitalize;
  font-size: 13px;
}
.button-demo .button span {
  font-size: 40px;
  display: inline-block;
}
.dark-block {
  background: #5a5a5a !important;
}
.dark-block .block-header .title {
  color: #fff;
}
.dark-block.block.type-1 .icon-entry .title {
  color: #fff;
}
.dark-block.block.type-1 .icon-entry {
  min-height: 220px;
  padding-bottom: 30px;
}
.dark-block .icon-entry:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #2e3849;
}
.dark-block .icon-entry:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #2e3849;
}
.dark-block > .container > .row > .icon-entry:first-child:before {
  display: none;
  content: '';
}
.dark-block > .container > .row:last-child > .icon-entry:after {
  display: none;
  content: '';
}
.dark-block.block.type-1 .icon-entry:nth-child(3n+1) {
  clear: none;
}
.dark-block .icon-entry i {
  color: #fff;
  font-size: 30px;
  position: absolute;
  left: 15px;
  top: 20px;
}
.dark-block.block.type-1 .icon-entry .content {
  margin: 0 15px 0 50px;
}
@media (max-width: 1200px) {
  .list-demo li {
    width: 25%;
  }
  .list-demo li:after {
    display: none;
  }
  .list-demo-title {
    width: 100%;
  }
  .list-demo-title h5 {
    text-align: center;
  }
  .list-demo {
    width: 100%;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .demo-block .vertical-align {
    position: relative;
    top: auto;
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .demo-block {
    margin-bottom: 30px;
  }
  .demo-baner {
    height: auto;
    padding: 120px 0px 0px;
  }
  .demo-block:hover .image img {
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    margin-bottom: 0px;
  }
  .dark-block > .container > .row > .icon-entry:nth-child(3):before {
    display: none;
    content: '';
  }
  .dark-block > .container > .row:last-child > .icon-entry:after {
    display: block;
  }
  .dark-block > .container > .row:last-child > .icon-entry:nth-child(3):after {
    display: none;
  }
  .dark-block > .container > .row:last-child > .icon-entry:nth-child(4):after {
    display: none;
  }
}
@media (max-width: 768px) {
  .dark-block.block.type-1 .icon-entry {
    min-height: 100%;
  }
  .list-demo li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .list-demo li {
    width: 100%;
  }
}
/*----------------------------------------------------------------------------------*/
/* Forms*/
/*----------------------------------------------------------------------------------*/
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=checkbox],
input[type=radio] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type=file] {
  display: block;
}
select[multiple],
select[size] {
  height: auto;
}
input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-image: none;
  border-radius: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
input[type=search] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date],
  input[type=time],
  input[type=datetime-local],
  input[type=month] {
    line-height: 34px;
  }
  .input-group-sm input[type=date],
  .input-group-sm input[type=time],
  .input-group-sm input[type=datetime-local],
  .input-group-sm input[type=month],
  input[type=date].input-sm,
  input[type=time].input-sm,
  input[type=datetime-local].input-sm,
  input[type=month].input-sm {
    line-height: 30px;
  }
  .input-group-lg input[type=date],
  .input-group-lg input[type=time],
  .input-group-lg input[type=datetime-local],
  .input-group-lg input[type=month],
  input[type=date].input-lg,
  input[type=time].input-lg,
  input[type=datetime-local].input-lg,
  input[type=month].input-lg {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.checkbox label,
.radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
  position: absolute;
  margin-top: 4px;
  margin-left: -20px;
  background-color: #E31F22;
}
.checkbox + .checkbox,
.radio + .radio {
  margin-top: -5px;
}
.checkbox-inline,
.radio-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 10px;
}
fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
  cursor: not-allowed;
}
.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
  cursor: not-allowed;
}
.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
select[multiple].input-sm,
textarea.input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}
select[multiple].form-group-sm .form-control,
textarea.form-group-sm .form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
select[multiple].input-lg,
textarea.input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}
select[multiple].form-group-lg .form-control,
textarea.form-group-lg .form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 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 .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 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 .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 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;
}
@media (min-width: 768px) {
  label.col-md-6.control-label.set {
    margin-left: 15px;
  }
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .form-control,
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox,
  .form-inline .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox label,
  .form-inline .radio label {
    padding-left: 0;
  }
  .form-inline .checkbox input[type=checkbox],
  .form-inline .radio input[type=radio] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .checkbox,
.form-horizontal .radio {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.33px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn,
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn,
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}
.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: none;
  border-radius: 6px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio] {
  margin-top: 0;
}
.form-header .title {
  font-size: 40px;
  line-height: 45px;
  color: #ab2328;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 0.4em;
  margin-top: 1em;
  text-align: center;
}
.form-header-quoteblock {
  font-size: 40px;
  line-height: 40px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.form-header .text {
  font-size: 16px;
  line-height: 16px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial;
  display: inline;
  vertical-align: middle;
  text-align: right;
}
.kp-radio label.btn span {
  margin: auto;
}
.kp-radio label input[type="radio"] ~ i.fa.fa-circle-o {
  color: #5a5a5a;
  display: inline;
}
.kp-radio label input[type="radio"] ~ i.fa.fa-check-circle-o {
  display: none;
}
.kp-radio label input[type="radio"]:checked ~ i.fa.fa-circle-o {
  display: none;
}
.kp-radio label input[type="radio"]:checked ~ i.fa.fa-check-circle-o {
  color: #ab2328;
  display: inline-table;
}
.kp-radio label:hover input[type="radio"] ~ i.fa {
  color: #ab2328;
}
.kp-radio label input[type="checkbox"] ~ i.fa.fa-square-o {
  color: #5a5a5a;
  display: inline;
}
.kp-radio label input[type="checkbox"] ~ i.fa.fa-check-square-o {
  display: none;
}
.kp-radio label input[type="checkbox"]:checked ~ i.fa.fa-square-o {
  display: none;
}
.kp-radio label input[type="checkbox"]:checked ~ i.fa.fa-check-square-o {
  color: #ab2328;
  display: inline;
}
.kp-radio label:hover input[type="checkbox"] ~ i.fa {
  color: #ab2328;
}
.kp-radio div[data-toggle="buttons"] label.active {
  color: #ab2328;
}
.kp-radio div[data-toggle="buttons"] label {
  display: inline-block;
  padding-bottom: 0px;
  line-height: 2em;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-color: none;
  color: #5a5a5a;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.kp-radio div[data-toggle="buttons"] label:hover {
  color: #ab2328;
}
.kp-radio div[data-toggle="buttons"] label:active,
div[data-toggle="buttons"] label.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.kp-radio .btn {
  padding: 0px 20px 0px 30px;
}
.range-bg {
  background-image: linear-gradient(319deg, black 16px, transparent 17px), linear-gradient(39deg, black 16px, transparent 17px);
  background-size: 10px 10px;
  background-repeat: repeat-x;
  height: 10px;
}
.range input[type="range"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  -o-appearance: none !important;
  appearance: none !important;
  display: table-cell;
  width: 100%;
  background-color: transparent;
  height: 40px;
  cursor: pointer;
}
.range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  -o-appearance: none !important;
  appearance: none !important;
  width: 30px;
  height: 30px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 100px 100px 100px 100px;
  background-color: #ab2328;
}
.range input[type="range"]::-moz-slider-thumb {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  -o-appearance: none !important;
  appearance: none !important;
  width: 20px;
  height: 40px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0px;
  background-color: #ab2328;
}
.range output:before {
  font-weight: bold;
}
.range output {
  display: table-cell;
  padding: 3px 5px 2px;
  min-width: 150px;
  color: #ffffff;
  background-color: #d6001c;
  text-align: center;
  text-decoration: none;
  border-radius: 100px 100px 100px 100px;
  border: 3px solid #ab2328;
  -webkit-border-radius: 75px;
  -moz-border-radius: 75px;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.range input[type="range"] {
  outline: none;
}
.kp-excess {
  padding-bottom: 20px;
}
.kp-header {
  margin-bottom: 5px;
  padding-top: 5px;
}
#customerForm h2 {
  color: #ab2328;
  padding: 20px 0 !important;
}
.kp-form-text {
  line-height: 30px;
}
.kp-form-text-bold {
  line-height: 30px;
  font-family: 'bold';
}
.testbg {
  background: #fff;
  z-index: 99999999999;
  height: auto;
  margin-top: 40px;
  border-radius: 6px;
}
.form-divider {
  height: 1px;
  width: 70%;
  display: block;
  overflow: hidden;
  background-color: #cbcbcb;
  margin-left: auto;
  margin-right: auto;
}
.start-divider {
  margin-top: 30px;
}
.end-divider {
  margin-top: 110px;
}
/* --------------------------------
Breadcrumbs
-------------------------------- */
.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -moz-animation: dash 10s linear;
  -o-animation: dash 10s linear;
  -webkit-animation: dash 10s linear;
  animation: dash 10s linear;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.arrow {
  -webkit-animation: arrow-appear 14s;
  -moz-animation: arrow-appear 14s;
  -o-animation: arrow-appear 14s;
  animation: arrow-appear 14s;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
.sirkel {
  -webkit-animation: arrow-appear 11s;
  -moz-animation: arrow-appear 11s;
  -o-animation: arrow-appear 11s;
  animation: arrow-appear 11s;
  -moz-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.increase {
  -webkit-animation: arrow-appear 3s;
  -moz-animation: arrow-appear 3s;
  -o-animation: arrow-appear 3s;
  animation: arrow-appear 3s;
  -moz-animation-fill-mode: backwards;
  -o-animation-fill-mode: backwards;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@keyframes arrow-appear {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes arrow-appear {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes arrow-appear {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes arrow-appear {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrow-appear {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.animateFlicker {
  -webkit-animation: flicker 17s;
  -moz-animation: flicker 17s;
  -o-animation: flicker 17s;
  animation: flicker 17s;
}
@-webkit-keyframes flicker {
  0% {
    opacity: 1;
  }
  3% {
    opacity: 0;
  }
  6% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.managepolicy {
  width: 230px;
  height: 40px;
  float: right;
  top: -2px;
}
/*------------------------------------ Desktop CSS ---------------------------------------------*/
.wsmobileheader {
  display: none;
}
.overlapboldbg {
  display: none;
}
.wsmenu {
  font-family: 'regular';
  color: #fff;
  position: relative;
  font-size: 15px;
  padding: 0px;
  margin: 0px auto;
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  -webkit-border-radius: 4px 4px 0px 0px;
  -moz-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}
.wsmenu-list {
  text-align: left;
  margin: 0 auto 0 auto;
  width: 100%;
  display: table;
  padding: 0px;
}
.wsmenu-list > li {
  text-align: center;
  display: table-cell;
}
.wsmenu-list li:first-child a {
  -webkit-border-radius: 4px 0px 0px 0px;
  -moz-border-radius: 4px 0px 0px 0px;
  border-radius: 4px 0px 0px 0px;
}
.wsmenu-list li:last-child a {
  -webkit-border-radius: 0px 4px 0px 0px;
  -moz-border-radius: 0px 4px 0px 0px;
  border-radius: 0px 4px 0px 0px;
  border-right: 0px solid;
}
.wsmenu-list > li > a .fa {
  display: inline-block;
  font-size: 14px;
  line-height: inherit;
  margin-right: 0px;
}
.wsmenu-list li ul li a .fa.fa-angle-double-right {
  font-size: 12px;
  margin: 0 3px 0 -4px;
}
.wsmenu-list li a .arrow:after {
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-top: 4px solid #b3b3b3;
  content: "";
  float: right;
  height: 0;
  margin: 0 0 0 9px;
  position: absolute;
  text-align: right;
  top: 22px;
  width: 0;
}
.wsmenu-list > li > a {
  font-family: 'regular';
  display: block;
  background-color: #fff;
  color: #ab2328;
  padding: 0px 14px;
  line-height: 48px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  position: relative;
}
.wsmenu-list li a:hover .arrow:after {
  border-top-color: #b3b3b3;
}
.wsmenu-list li a.active .arrow:after {
  border-top-color: #b3b3b3;
}
.wsmenu-list li:hover > a .arrow:after {
  border-top-color: #b3b3b3;
}
.megamenu iframe {
  width: 100%;
  margin-top: 10px;
  min-height: 200px;
}
.megamenu video {
  width: 100%;
  margin-top: 10px;
  min-height: 200px;
}
/*For megamenu desktop */
.wsmenu-list li:hover .megamenu {
  opacity: 1;
}
.megamenu {
  width: 100%;
  left: 0px;
  position: absolute;
  top: 48px;
  color: #5a5a5a;
  z-index: 999;
  margin: 0px;
  text-align: left;
  padding: 14px;
  font-size: 15px;
  border: solid 1px #eeeeee;
  background-color: #fff;
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  -ms-transition: -ms-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: -webkit-transform 0.3s, opacity 0.3s;
}
.megamenu .title {
  border-bottom: 1px solid #CCC;
  font-size: 14px;
  padding: 9px 5px 9px 5px;
  font-size: 17px;
  color: #ab2328;
  margin: 0px 0px 7px 0px;
  text-align: left;
  height: 39px;
}
.link-list li {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-align: left;
}
.link-list li a {
  line-height: 18px;
  border-right: none;
  text-align: left;
  padding: 6px 0px;
  background: #fff !important;
  background-image: none !important;
  color: #5a5a5a !important;
  border-right: 0 none !important;
  display: block;
  border-right: 1px solid #e7e7e7;
  background-color: #fff;
}
.link-list li a:hover {
  color: #ab2328 !important;
}
.link-list li .active {
  color: #ab2328 !important;
}
.link-list .fa {
  font-size: 14px;
  color: #ab2328;
  padding-right: 6px;
}
.megacollink {
  width: 23%;
  float: left;
  margin: 0% 1%;
}
.megacollink li {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-align: left;
}
.megacollink li a {
  line-height: 18px;
  border-right: none;
  text-align: left;
  padding: 8px 0px;
  background: #fff !important;
  background-image: none !important;
  color: #5a5a5a !important;
  border-right: 0 none !important;
  display: block;
  border-right: 1px solid #e7e7e7;
  background-color: #fff;
  color: #424242;
}
.megacollink .fa {
  font-size: 11px;
}
.megacolimage {
  width: 31.33%;
  float: left;
  margin: 0% 1%;
}
.typographydiv {
  width: 100%;
  margin: 0% 0%;
}
.typographylinks {
  width: 25%;
  float: left;
  margin: 0% 0%;
}
.mainmapdiv {
  width: 100%;
  display: block;
  margin: 0% 0%;
}
.wsmenu-list .ad-style {
  width: 28%;
  float: right;
}
.wsmenu-list .ad-style a {
  border: none !important;
  padding: 0px !important;
  margin: 0px !important;
  line-height: normal !important;
  background-image: none !important;
}
.mobile-sub .megamenu .ad-style a:hover {
  background-color: transparent !important;
}
.wsmenu-list .megamenu li:hover > a {
  background: transparent !important;
}
.wsmenu-list .megamenu li a:hover {
  background: transparent !important;
  text-decoration: underline;
  color: #ab2328;
}
.wsmenu-list .megamenu li .fa {
  margin-right: 5px;
  text-align: center;
  width: 18px;
}
.mrgtop {
  margin-top: 15px;
}
.show-grid div {
  padding-bottom: 10px;
  padding-top: 10px;
  background-color: #dbdbdb;
  border: 1px solid #e7e7e7;
  color: #6a6a6a;
  margin: 2px 0px;
}
/*For halfmenu */
.halfmenu {
  width: 40%;
  right: auto !important;
  left: auto !important;
}
.halfmenu .megacollink {
  width: 48%;
  float: left;
  margin: 0% 1%;
}
/*For halfmenu */
/*Form for desktop */
.halfdiv {
  width: 35%;
  right: 0px !important;
  left: auto;
}
.menu_form {
  width: 100%;
  display: block;
}
.menu_form input[type="text"] {
  width: 100%;
  border: 1px solid #e2e2e2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #5a5a5a;
  font-size: 13px;
  padding: 8px 5px;
  margin-bottom: 8px;
}
.menu_form textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  color: #5a5a5a;
  font-size: 13px;
  padding: 8px 5px;
  margin-bottom: 8px;
  min-height: 122px;
}
.menu_form input[type="submit"] {
  width: 25%;
  display: block;
  height: 28px;
  float: right;
  border: solid 1px #ccc;
  margin-right: 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.menu_form input[type="button"] {
  width: 25%;
  display: block;
  height: 28px;
  float: right;
  border: solid 1px #ccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.megamenu .left.carousel-control {
  padding-top: 20%;
}
.megamenu .right.carousel-control {
  padding-top: 20%;
}
.carousel-inner .item img {
  width: 100%;
}
.megamenu .carousel-caption {
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  height: 31px;
  left: 0;
  padding: 7px 0;
  right: 0;
  width: 100%;
}
/*Animation*/
.wsmenu-list li > .wsmenu-submenu {
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform: rotateX(-75deg);
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
  visibility: hidden;
}
.wsmenu-list li:hover > .wsmenu-submenu {
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.wsmenu-submenu li > .wsmenu-submenu-sub {
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform: rotateX(-75deg);
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
  visibility: hidden;
}
.wsmenu-submenu li:hover > .wsmenu-submenu-sub {
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.wsmenu-submenu-sub li > .wsmenu-submenu-sub-sub {
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform: rotateX(-75deg);
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
  visibility: hidden;
}
.wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub {
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.wsmenu-list li > .megamenu {
  transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform: rotateX(-75deg);
  transform: rotateX(-75deg);
  -o-transform: rotateX(-75deg);
  -moz-transform: rotateX(-75deg);
  -webkit-transform: rotateX(-75deg);
  visibility: hidden;
}
.wsmenu-list li:hover > .megamenu {
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
/* Submenu CSS */
.wsmenu-submenu {
  position: absolute;
  top: 48px;
  z-index: 999;
  margin: 0px;
  padding: 2px;
  border: solid 1px #eeeeee;
  background-color: #fff;
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  -ms-transition: -ms-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: -webkit-transform 0.3s, opacity 0.3s;
}
.wsmenu-submenu li a {
  background: #fff !important;
  background-image: none !important;
  color: #5a5a5a !important;
  border-right: 0 none !important;
  text-align: left;
  display: block;
  line-height: 18px;
  padding: 6px 12px;
  text-transform: none;
  font-size: 13px;
  letter-spacing: normal;
  border-right: 0px solid;
}
.wsmenu-submenu li {
  position: relative;
  margin: 0px;
  padding: 0px;
}
.wsmenuexpandermain {
  display: none;
}
.wsmenu-list li:hover .wsmenu-submenu {
  display: block;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub {
  min-width: 220px;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0px;
  padding: 0px;
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -o-transition: -o-transform 0.4s, opacity 0.4s;
  -ms-transition: -ms-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: -webkit-transform 0.4s, opacity 0.4s;
}
.wsmenu-list .wsmenu-submenu li:hover .wsmenu-submenu-sub {
  opacity: 1;
  list-style: none;
  padding: 2px;
  border: solid 1px #eeeeee;
  background-color: #fff;
}
.wsmenu-list .wsmenu-submenu li:hover .wsmenu-submenu-sub {
  display: block;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub .wsmenu-submenu-sub-sub {
  min-width: 220px;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0px;
  padding: 0px;
  opacity: 0;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -o-transition: -o-transform 0.4s, opacity 0.4s;
  -ms-transition: -ms-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: -webkit-transform 0.4s, opacity 0.4s;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub li:hover .wsmenu-submenu-sub-sub {
  opacity: 1;
  list-style: none;
  padding: 2px;
  border: solid 1px #eeeeee;
  background-color: #fff;
}
.wsmenu-submenu li {
  position: relative;
  padding: 0px;
  margin: 0px;
  display: block;
}
.wsmenu-click {
  display: none;
}
.wsmenu-click02 {
  display: none;
}
/* Default Theme */
.wsmenu-list li:hover > a {
  background-color: rgba(0, 0, 0, 0.08) !important;
  text-decoration: none;
}
.wsmenu-list > li > a:hover {
  background-color: rgba(0, 0, 0, 0.08) !important;
  text-decoration: none;
}
.wsmenu-list > li > a.active {
  background-color: rgba(0, 0, 0, 0.08) !important;
  text-decoration: none;
}
.wsmenu-submenu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.08) !important;
  border-radius: 0px !important;
  text-decoration: none;
}
.typography-text {
  padding: 0px 0px;
  font-size: 14px;
}
.typography-text p {
  text-align: justify;
  line-height: 18px;
  color: #656565;
}
.typography-text ul li {
  display: block;
  padding: 2px 0px;
  line-height: 18px;
}
.typography-text ul li a {
  color: #656565;
}
.hometext {
  display: none;
}
.wsmenu-submenu .fa {
  margin-right: 7px;
}
@media only screen and (min-width: 990px) and (max-width: 1023px) {
  .wsmenu-list > li > a > .fa {
    display: none !important;
  }
  .hometext {
    display: block !important;
  }
  .wsmenu {
    font-size: 13px !important;
  }
  .wsmenu-list li a {
    white-space: nowrap !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .megacollink {
    width: 48%;
    margin: 1% 1%;
  }
  .typographylinks {
    width: 48%;
    margin: 1% 1%;
  }
}
@media only screen and (min-width: 781px) and (max-width: 1200px) {
  .wsmenu-list li a .arrow:after {
    display: none !important;
  }
}
@media only screen and (min-width: 781px) {
  .wsmenu-list li:hover > .wsmenu-submenu {
    display: block !important;
  }
  .wsmenu-submenu li:hover > .wsmenu-submenu-sub {
    display: block !important;
  }
  .wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub {
    display: block !important;
  }
  .wsmenu-list li:hover > .megamenu {
    display: block !important;
  }
}
@media only screen and (max-width: 990px) {
  .wsoffcanvasopener .wsmenu {
    left: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .quoteintro {
    display: none;
  }
  .wsmenucontainer.wsoffcanvasopener {
    display: block;
    margin-left: 240px;
  }
  .wsmobileheader {
    display: block !important;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .wsmenu-list > li:hover > a {
    background-color: rgba(0, 0, 0, 0.08) !important;
    text-decoration: none;
  }
  .hometext {
    display: inline-block !important;
  }
  .megacollink {
    width: 96% !important;
    margin: 0% 2% !important;
  }
  .megacolimage {
    width: 90% !important;
    margin: 0% 5% !important;
  }
  .typographylinks {
    width: 98% !important;
    margin: 0% 1% !important;
  }
  .typographydiv {
    width: 86% !important;
    margin: 0% 7% !important;
  }
  .mainmapdiv {
    width: 90% !important;
    margin: 0% 5% !important;
  }
  .overlapboldbg {
    left: 0;
    z-index: 102;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
  }
  .wsoffcanvasopener .overlapboldbg {
    display: block !important;
  }
  /* Default Theme */
  .wsmenu-submenu > li:hover > a {
    background-color: #7b7b7b;
    color: #5a5a5a;
  }
  .wsmenu > .wsmenu-list > li > a.active {
    color: #5a5a5a;
    background-color: rgba(0, 0, 0, 0.08);
  }
  .wsmenu > .wsmenu-list > li > a:hover {
    color: #5a5a5a;
    background-color: rgba(0, 0, 0, 0.08);
  }
  .wsmenu-list li:hover .wsmenu-submenu {
    display: none;
  }
  .wsmenu-list li:hover .wsmenu-submenu .wsmenu-submenu-sub {
    display: none;
  }
  .wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub li:hover .wsmenu-submenu-sub-sub {
    display: none;
    list-style: none;
    padding: 2px;
    border: solid 1px #eeeeee;
    background-color: #fff;
  }
  .wsmenu-list li:first-child a {
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
  }
  .wsmenu-list li:last-child a {
    -webkit-border-radius: 0px 4px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    border-right: 0px solid;
  }
  .innerpnd {
    padding: 0px !important;
  }
  .typography-text {
    padding: 10px 0px;
  }
  .wsmenucontainer {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    max-height: 590px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .wsmenu-click {
    height: 43px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }
  .wsmenu-click i {
    display: block;
    height: 23px;
    width: 25px;
    margin-top: 11px;
    margin-right: 8px;
    background-size: 25px;
    font-size: 21px;
    color: rgba(0, 0, 0, 0.25);
    float: right;
  }
  .wsmenu-click02 {
    height: 43px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }
  .wsmenu-click02 i {
    display: block;
    height: 23px;
    width: 25px;
    margin-top: 11px;
    margin-right: 8px;
    background-size: 25px;
    font-size: 21px;
    color: rgba(0, 0, 0, 0.25);
    float: right;
  }
  .ws-activearrow > i {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .wsmenu-rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  /*2nd UL Style*/
  .wsmenu-submenu-sub {
    width: 100% !important;
    position: static !important;
    left: 100% !important;
    top: 0 !important;
    display: none;
    margin: 0px !important;
    padding: 0px !important;
    border: solid 0px !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .wsmenu-submenu-sub li {
    margin: 0px 0px 0px 0px !important;
    padding: 0px;
    position: relative;
  }
  .wsmenu-submenu-sub a {
    display: block;
    padding: 10px 25px 10px 25px;
    border-bottom: solid 1px #ccc;
    font-weight: normal;
  }
  .wsmenu-submenu-sub li a.active {
    color: #000 !important;
  }
  .wsmenu-submenu-sub li:hover > a {
    background-color: #333333 !important;
    color: #fff;
  }
  .wsmenu-list > li > a .fa {
    margin-right: 6px;
  }
  .wsmenu-submenu-sub-sub {
    width: 100% !important;
    position: static !important;
    left: 100% !important;
    top: 0 !important;
    display: none;
    margin: 0px !important;
    padding: 0px !important;
    border: solid 0px !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .wsmenu-submenu-sub-sub li {
    margin: 0px 0px 0px 0px !important;
  }
  .wsmenu-submenu-sub-sub a {
    display: block;
    color: #5a5a5a;
    padding: 10px 25px;
    background: #000 !important;
    border-bottom: solid 1px #ccc;
    font-weight: normal;
  }
  .wsmenu-submenu-sub-sub li a.active {
    color: #000 !important;
  }
  .wsmenu-submenu-sub-sub li:hover > a {
    background-color: #606060 !important;
    color: #fff;
  }
  .wsmenu {
    position: relative;
  }
  .wsmenu .wsmenu-list {
    height: 100%;
    overflow-y: auto;
    display: block !important;
  }
  .wsmenu .wsmenu-list > li {
    width: 100%;
    display: block;
    float: none;
    border-right: none;
    background-color: transparent;
    position: relative;
    white-space: inherit;
  }
  .wsmenu > .wsmenu-list > li > a {
    padding: 9px 32px 9px 17px;
    font-size: 14px;
    text-align: left;
    border-right: solid 0px;
    background-color: transparent;
    color: #5a5a5a;
    line-height: 25px;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.13);
    position: static;
  }
  .wsmenu > .wsmenu-list > li > a > .fa {
    font-size: 16px;
    color: #ab2328;
  }
  .wsmenu .wsmenu-list li a .arrow:after {
    display: none !important;
  }
  .wsmenu .wsmenu-list li ul li a .fa.fa-caret-right {
    font-size: 12px !important;
    color: #8E8E8E;
  }
  .mobile-sub .wsmenu-submenu {
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    display: none;
    position: relative !important;
    top: 0px;
    background-color: #fff;
    border: solid 1px #ccc;
    padding: 0px;
    visibility: visible !important;
  }
  .mobile-sub .wsmenu-submenu li a {
    line-height: 20px;
    height: 36px;
    background-color: #e7e7e7 !important;
    font-size: 13px !important;
    padding: 8px 0px 8px 18px;
    color: #8E8E8E;
  }
  .mobile-sub .wsmenu-submenu li a:hover {
    background-color: #e7e7e7 !important;
    color: #ab2328;
    text-decoration: underline;
  }
  .mobile-sub .wsmenu-submenu li:hover > a {
    background-color: #e7e7e7 !important;
    color: #ab2328;
  }
  .mobile-sub .wsmenu-submenu li .wsmenu-submenu-sub li a {
    line-height: 20px;
    height: 36px;
    background-color: #e7e7e7 !important;
    border-bottom: none;
    padding-left: 28px;
  }
  .mobile-sub .wsmenu-submenu li .wsmenu-submenu-sub li .wsmenu-submenu-sub-sub li a {
    line-height: 20px;
    height: 36px;
    background-color: #e7e7e7 !important;
    border-bottom: none !important;
    padding-left: 38px;
    color: #ab2328;
  }
  .wsmenu-list .megamenu {
    background-color: #e7e7e7;
    color: #5a5a5a;
    display: none;
    position: relative !important;
    top: 0px;
    padding: 0px;
    border: solid 0px;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .wsmenu-list li:hover .megamenu {
    display: none;
    position: relative !important;
    top: 0px;
  }
  .megamenu .title {
    color: #ab2328;
    font-size: 15px !important;
    padding: 10px 8px 10px 0px;
  }
  .halfdiv .title {
    padding-left: 15px;
  }
  .megamenu > ul {
    width: 100% !important;
    margin: 0px;
    padding: 0px;
    font-size: 13px !important;
  }
  .megamenu > ul > li > a {
    padding: 9px 14px !important;
    line-height: normal !important;
    font-size: 13px !important;
    background-color: #e7e7e7 !important;
    color: #ab2328;
  }
  .megamenu > ul > li > a:hover {
    background-color: #ab2328 !important;
  }
  .ad-style {
    width: 100% !important;
  }
  .megamenu ul li.title {
    line-height: 26px;
    color: #ab2328;
    margin: 0px;
    font-size: 15px;
    padding: 7px 13px !important;
    border-bottom: 2px solid #ccc;
    background-color: transparent !important;
  }
  .halfdiv {
    width: 100%;
    display: block;
  }
  .halfmenu {
    width: 100%;
    display: block;
  }
  .menu_form {
    padding: 10px 10px 63px 10px;
    background-color: #e7e7e7;
  }
  .menu_form input[type="button"] {
    width: 46%;
  }
  .menu_form input[type="submit"] {
    width: 46%;
  }
  .menu_form textarea {
    min-height: 100px;
  }
  .wsmenu {
    width: 240px;
    left: -240px;
    height: 100%;
    position: fixed;
    top: 0;
    margin: 0;
    background-color: #fff;
    border-radius: 0px;
    z-index: 103;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border: none !important;
    background-color: #fff !important;
  }
  /*.wsoffcanvasopener .wsmenu {
	width:240px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}

.wsmenu.menuclose{
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}*/
  /* Navigation arrow Animation */
  .animated-arrow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 102;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .callusicon {
    color: #c9c9c9;
    font-size: 25px;
    height: 25px;
    position: fixed;
    right: 15px;
    top: 13px;
    transition: all 0.4s ease-in-out 0s;
    width: 25px;
    z-index: 102;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .callusicon:focus,
  callusicon:hover {
    color: #fff !important;
  }
  .wsoffcanvasopener .callusicon {
    display: none !important;
  }
  .smallogo {
    display: block;
    text-align: center;
    padding-top: 9px;
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 52px;
    background: #262626;
    background: -moz-linear-gradient(top, #262626 0, #1c1c1c 50%, #262626 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #262626), color-stop(50%, #1c1c1c), color-stop(100%, #262626));
    background: -webkit-linear-gradient(top, #262626 0, #1c1c1c 50%, #262626 100%);
    background: -o-linear-gradient(top, #262626 0, #1c1c1c 50%, #262626 100%);
    background: -ms-linear-gradient(top, #262626 0, #1c1c1c 50%, #262626 100%);
    background: linear-gradient(to bottom, #262626 0, #1c1c1c 50%, #262626 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#262626', endColorstr='#262626', GradientType=0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }
  .wsoffcanvasopener .animated-arrow {
    left: 240px;
  }
  .animated-arrow {
    cursor: pointer;
    padding: 17px 34px 18px 2px;
    margin: 10px 0 0 15px;
  }
  .animated-arrow span,
  .animated-arrow span:before,
  .animated-arrow span:after {
    cursor: pointer;
    height: 3px;
    width: 23px;
    background: #ffffff;
    position: absolute;
    display: block;
    content: '';
  }
  .animated-arrow span:before {
    top: -7px;
  }
  .animated-arrow span:after {
    bottom: -7px;
  }
  .animated-arrow span,
  .animated-arrow span:before,
  .animated-arrow span:after {
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }
  .wsoffcanvasopener .animated-arrow span {
    background-color: transparent;
  }
  .wsoffcanvasopener .animated-arrow span:before,
  .animated-arrow.active span:after {
    top: 7px;
  }
  .wsoffcanvasopener .animated-arrow span:before {
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    bottom: 0px;
  }
  .wsoffcanvasopener .animated-arrow span:after {
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /*Animation None */
  .wsmenu-list li > .wsmenu-submenu {
    -ms-transform: none !important;
    transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    visibility: visible !important;
  }
  .wsmenu-list li:hover > .wsmenu-submenu {
    -ms-transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    visibility: visible !important;
  }
  .wsmenu-submenu li > .wsmenu-submenu-sub {
    -ms-transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    visibility: visible !important;
  }
  .wsmenu-submenu li:hover > .wsmenu-submenu-sub {
    -ms-transform: none !important;
    transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .wsmenu-submenu-sub li > .wsmenu-submenu-sub-sub {
    -ms-transform: none !important;
    transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub {
    -ms-transform: none !important;
    transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .wsmenu-list li > .megamenu {
    -ms-transform: none !important;
    transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .wsmenu-list li:hover > .megamenu {
    -ms-transform: none !important;
    transform: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 989px) {
  .wsmenucontainer {
    margin-top: -20px;
  }
  #logo {
    margin: auto;
    width: 60%;
    height: 50px;
  }
  #logo a img {
    text-align: center;
    width: 120px !important;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    bottom: 8px;
  }
  span.title.text-right {
    display: none;
  }
  #callbackarea {
    display: none;
  }
  #phone h2,
  #phone h3 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    display: inline;
    margin: 0 10px;
    padding: 0;
  }
  #phone a,
  #phone a:visited,
  .white,
  #header_uc_BigHeader_PhoneNumber {
    color: #fff !important;
    font-weight: bolder;
  }
  #phone h3 {
    font-size: 16px !important;
  }
  .toptextbox {
    background: #fff;
    border-radius: 5px;
    width: 163px;
    height: 34px;
    line-height: 30px;
    text-align: center;
    border: 0;
    margin-bottom: 10px;
  }
  #callback {
    vertical-align: baseline;
    padding-bottom: 20px;
    margin-top: 10px;
  }
  #header_SmallHeader_CallBackButton,
  #header_uc_BigHeader_CallBackButton,
  #header_CompHeader_CallBackButton {
    vertical-align: middle;
    margin: auto;
    display: block;
  }
  .kp-radio.btn-group {
    margin-left: 0!important;
  }
}
#utility-nav {
  position: relative;
  float: right;
}
ul.megamenu {
  float: right;
  width: auto;
  padding-left: 0px;
  clear: both;
  position: inherit;
}
.megamenu > li > .megapanel {
  left: 0px;
  top: 120px;
  right: 0px;
  width: auto;
}
.megamenu .megapanel .fitcontent {
  margin: 0px auto;
  position: relative;
}
#homepage #key-sale-points-wrap {
  background: #FFF;
}
.megamenu {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.megamenu > li:hover > .megapanel,
.megamenu > li.active > .megapanel {
  display: block;
}
@media (max-width: 520px) {
  .megamenu > li:hover:not(.active) > .megapanel {
    display: none;
  }
  .megamenu > li:hover:not(.active) > a {
    background-color: #CC2020;
    border-bottom: 1px solid #A31A1A;
  }
  .megamenu > li.active > .megapanel {
    display: block;
  }
}
@media (max-width: 520px) {
  .megamenu {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .megamenu > li > .megapanel {
    min-height: 50px;
    left: -1px;
    width: 100.2%;
  }
  .megamenu .megapanel .fitcontent {
    width: auto;
    margin: 0;
    margin-left: 0;
    top: 0;
    position: relative;
    display: block;
  }
  .megamenu > li {
    display: block;
    width: 100%;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .showhide {
    padding: 20px 0;
  }
  .hideAll {
    display: none;
  }
  .megamenu > li:hover,
  .megamenu > li.active {
    border-top: 0;
  }
  .megamenu > li > a {
    padding: 15px 25px;
  }
  .megamenu > li:hover > a,
  .megamenu > li.active > a {
    padding: 15px 25px;
  }
  .megamenu a {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .megamenu > li > .megapanel {
    position: static;
    margin-top: 50px;
  }
  .extra-nav-content,
  .promotional-colum,
  .nav-subheading,
  .itemgroup-heading,
  .megamenu .itemgroup li a .nav-iconset,
  .megamenu .itemgroup li a .desc,
  .related-content-colum,
  .extra-nav-content-paragraph-under-heading {
    display: none !important;
  }
  .megamenu > li {
    border: none;
  }
  .megamenu > li > .megapanel {
    margin-top: 40px;
  }
  .megamenu > li > a {
    background: none;
    background-color: #cc2020;
    color: #FFF;
    text-shadow: none;
    border-bottom: 1px solid #a31a1a;
    padding: 12px 15px 12px 15px;
    padding: 17px 15px 17px 15px;
  }
  .megamenu > li:hover > a,
  .megamenu > li.active > a {
    background: none;
    background-color: #1a67b1;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
    border-bottom: 1px solid #1a67b1;
    padding: 12px 15px 12px 15px;
    padding: 17px 15px 17px 15px;
  }
  .megamenu > li > a,
  .megamenu > li:hover > a,
  .megamenu > li.active > a {
    background-repeat: no-repeat;
    background-position: 97% center;
  }
  .megamenu .itemgroup li {
    margin-bottom: 0;
  }
  .megamenu .itemgroup li:last-child {
    border-bottom: 0;
  }
  .megamenu .itemgroup li a {
    border-bottom: 1px solid #2d7cc9;
    background: none;
    background-color: #328ae0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 17px 15px 17px 15px;
  }
  .megamenu .itemgroup li:hover > a {
    background: #1a67b1;
    color: #FFF;
  }
  .nav-megapanel-colum {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #header .megamenu .showhide {
    display: block !important;
  }
  .header-inner {
    width: auto;
    min-width: 520px;
    padding: 95px 0 0 0;
  }
  .megamenu .showhide {
    padding: 0 0 0 15px;
    color: #FFF;
    cursor: pointer;
    font-size: 20px;
    font-family: 'regular', Arial;
    line-height: 39px;
    height: 39px;
    width: 200px;
    overflow: hidden;
    background: #e70e0e;
    background: linear-gradient(to bottom, #e70e0e 10%, #aa0c0c 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e70e0e', endColorstr='#aa0c0c', GradientType=0);
  }
  .menu-title {
    float: left;
  }
  .megamenu:hover .showhide {
    background: #aa0c0c;
    background: linear-gradient(to bottom, #aa0c0c 10%, #e70e0e 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa0c0c', endColorstr='#e70e0e', GradientType=0);
  }
}
@media only screen and (min-width: 521px) and (max-width: 1151px) {
  .megamenu > li > .megapanel {
    width: 1152px !important;
    left: 0 !important;
  }
  .megamenu .fitcontent {
    margin: 0 !important;
  }
}
.hide {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
#tabs-wrap {
  background: #FFF;
}
#tabs-wrap .tabs-nav-center {
  width: 1150px;
  margin: 0 auto;
  display: block;
}
#tabs-wrap .tabs {
  min-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 60px;
  background: #cdcdcd;
  background: -ms-linear-gradient(top, #fff 30%, #cdcdcd 100%);
  background: linear-gradient(to bottom, #fff 30%, #cdcdcd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cdcdcd', GradientType=0);
}
#tabs-wrap .tabs li,
#tabs-wrap .tabs a {
  float: left;
  position: relative;
  display: block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-family: 'Sterling';
  font-size: 20px;
  color: #797979;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  border-left: 1px solid #c3c3c3;
  border-right: 1px solid #f4f4f4;
  background: #e0e0e0;
  background: -ms-linear-gradient(top, #fff 30%, #cdcdcd 100%);
  background: linear-gradient(to bottom, #fff 30%, #cdcdcd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cdcdcd', GradientType=0);
}
label.btn.btn-default.active {
  background: #ab2429 !important;
  color: #fff;
  transtion: 0.5s;
}
#tabs-wrap .tabs.left li,
#tabs-wrap .tabs.left a {
  padding: 0 25px;
  padding: 0 20px;
}
#tabs-wrap .tabs.left li:last-child,
#tabs-wrap .tabs.left a:last-child {
  margin-right: 0;
  border-right: 0;
}
#tabs-wrap .tabs.center.col2 {
  width: 174px;
}
#tabs-wrap .tabs.center.col3 {
  width: 260px;
}
#tabs-wrap .tabs.center.col4 {
  width: 346px;
}
#tabs-wrap .tabs.center.col5 {
  width: 432px;
}
#tabs-wrap .tabs.center.col6 {
  width: 516px;
}
#tabs-wrap .tabs.center.col7 {
  width: 602px;
}
#tabs-wrap .tabs.center.col8 {
  width: 688px;
}
#tabs-wrap .tabs.center.col2 li,
#tabs-wrap .tabs.center.col3 li,
#tabs-wrap .tabs.center.col4 li,
#tabs-wrap .tabs.center.col5 li,
#tabs-wrap .tabs.center.col6 li,
#tabs-wrap .tabs.center.col7 li,
#tabs-wrap .tabs.center.col8 li {
  width: 86px;
}
#tabs-wrap .tabs.right li {
  float: right;
  width: 86px;
}
#tabs-wrap .tabs.col2 li {
  width: 49.9%;
}
#tabs-wrap .tabs.col3 li {
  width: 33.2222%;
}
#tabs-wrap .tabs.col4 li {
  width: 24.9%;
}
#tabs-wrap .tabs.col5 li {
  width: 19.9%;
}
#tabs-wrap .tabs.col6 li {
  width: 16.5555%;
}
#tabs-wrap .tabs.col7 li {
  width: 14.1857%;
}
#tabs-wrap .tabs.col8 li {
  width: 12.44%;
}
#tabs-wrap .tabs li:hover {
  text-decoration: none;
  color: #149cdc;
  cursor: pointer;
  background: #FFF;
}
#tabs-wrap .tabs a:hover {
  text-decoration: none;
  color: #149cdc;
  cursor: pointer;
}
#tabs-wrap .tabs li.active {
  background: #FFF !important;
  background-color: #FFF !important;
  color: #149cdc;
  border-bottom: none;
  z-index: 50;
  text-shadow: none;
}
#tabs-wrap .tabs a:active {
  background: #bfbfbf;
  background: -ms-linear-gradient(top, #bfbfbf 0%, #fff 80%);
  background: linear-gradient(to bottom, #bfbfbf 0%, #fff 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bfbfbf', endColorstr='#ffffff', GradientType=0);
  color: #149cdc;
  border-bottom: none;
  z-index: 50;
  text-shadow: none;
}
#tabs-wrap .content {
  clear: both;
  position: relative;
  width: 96%;
  width: auto;
  padding: 0 2%;
  padding: 0;
  margin: 0 auto;
}
.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 55px;
  right: 20px;
  display: none;
  z-index: 999;
  color: #fff;
  background-color: #522b39;
  border: none;
}
.back-to-top:hover {
  background-color: #3a1826;
  border: none;
}
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-15 {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}
input#header_uc_BigHeader_CallBackButton {
  background: url(../img/callme.png);
  border: 0;
  background-size: contain;
  width: 113px;
  height: 35px;
}
.form-section {
  padding-left: 15px;
  border-left: 2px solid #FF851B;
  display: none;
}
.form-section.current {
  display: inherit;
}
.btn-info,
.btn-default {
  margin-top: 10px;
}
.img-responsive {
  display: block !important;
  height: auto;
  max-width: 100%;
}
.ui-menu .ui-menu-item a,
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
  text-align: left;
  font-size: 14px;
}
.ui-autocomplete-loading {
  background: white url("../img/ui-anim_basic_16x16.gif") right center no-repeat;
}
.img-responsive {
  display: initial !important;
  height: auto;
  max-width: 100%;
}
.col-xs-2.text-center {
  margin-bottom: 15px;
  padding: 5px;
}
@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading-spinner {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate-forever;
  -moz-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  height: 30px;
  width: 30px;
  border: 8px solid #ab2328;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
}
.loading-spinner {
  position: absolute;
  top: 137.6vh;
  bottom: 0;
  left: 60%;
  margin: -16px 0 -15px;
  display: none;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
  color: #fff;
  background: #ab2328 !important;
}
.gap {
  margin-top: 15px;
  margin-bottom: 10px;
  height: 25px;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  float: left !important;
}
div#CallBackLoader {
  position: relative;
  box-shadow: 0 1px 0 0 #e8c082;
  float: right;
  bottom: -0.3em;
  right: 4em;
}
.loading-spinner-top {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate-forever;
  -moz-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  height: 30px;
  width: 30px;
  border: 8px solid #d1aa5a;
  border-right-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  display: inline-block;
}
label.kp-radio.btn {
  padding: 5px;
  margin-right: 0.1em;
  display: block;
  width: 100%;
  margin-left: 1em;
  width: 5em;
  border-top-left-radius: 4px;
  text-align: center;
  transition: 0.2s;
  height: 30px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #5b5b5b;
}
label.kp-radio.btn.active {
  background: #ab2429;
  color: #fff;
  transition: .2s;
  border: #ab2429;
}
em {
  font-style: oblique;
  font-size: smaller;
  margin-top: 0px;
  position: relative;
  top: -10px;
  color: #ab2429;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #fff !important;
  text-decoration: none;
  background-color: #ab2429 !important;
}
btn-info,
.btn-default {
  margin-top: 0px !important;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
  color: inherit !important;
}
.dropdown-menu.open {
  text-align: left !important;
  max-height: 628px;
  overflow: hidden;
  min-height: 92px;
  z-index: 9999999 !important;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #ab2429 !important;
  outline: 0;
}
strong {
  font-family: bold !important;
}
.callout-light {
  padding: 30px;
  color: #58595b;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 0.3em;
  border: 1px rgba(172, 172, 172, 0.58) solid;
  box-shadow: 2px 1px 1px 0px #d8d8d8;
}
.remove-button,
.home-remove-button,
.bulding-remove-button,
.portable-remove-button {
  line-height: 15px !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important;
  background-color: #ab2328 !important;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0), inset 0 -2px #d6001c !important;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0), inset 0 -2px #d6001c !important;
  border: solid 1px #ab2328 !important;
  font-size: 11px !important;
  color: #fff !important;
  font-family: 'bold', sans-serif, Arial !important;
  padding: 14px !important;
  text-align: center !important;
  margin-right: 20px;
}
.input-group.date {
  width: 75%;
}
.btn-group.bootstrap-select.form-control {
  width: 75%;
}
.bs-searchbox {
  padding: 4px 8px;
  width: 100% !important;
}
button#subSearch {
  position: relative;
  left: -86px;
  width: 76px;
  z-index: 9999;
}
kp-form-bg {
  background-color: #fff !important;
  border-radius: 6px;
  padding-bottom: 85px;
  height: 225px;
}
block-header .text {
  font-size: inherit !important;
  line-height: 11px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial;
  z-index: 955 !important;
}
.submit-button-details {
  background: url(../img/calculate-quote-06.png);
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  width: 350px;
  height: 90px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  inset: 0 0 1px 1px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  inset: 0 0 1px 1px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0);
}
.dropdown-menu.open > ul > li > a > span {
  font-size: small !important;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100% !important;
  float: none;
  border: 1px solid rgba(173, 173, 173, 0.42);
}
span.text.portable-remove-button {
  position: relative;
  top: -2px;
  margin-bottom: 5px;
}
span.text.home-remove-button {
  position: relative;
  top: -2px;
  margin-bottom: 5px;
}
#car-two {
  display: none;
}
#car-three {
  display: none;
}
#car-four {
  display: none;
}
#car-five {
  display: none;
}
#home-one {
  display: none;
}
#home-two {
  display: none;
}
#home-three {
  display: none;
}
#home-four {
  display: none;
}
#home-five {
  display: none;
}
#building-one {
  display: none;
}
#building-two {
  display: none;
}
#building-three {
  display: none;
}
#building-four {
  display: none;
}
#building-five {
  display: none;
}
#portable-one {
  display: none;
}
#portable-two {
  display: none;
}
#portable-three {
  display: none;
}
#portable-four {
  display: none;
}
#portable-five {
  display: none;
}
.breadcrumb {
  padding: 8px 15px !important;
  margin-bottom: 20px !important;
  list-style: none !important;
  background-color: rgba(230, 231, 232, 0) !important;
  border-radius: 4px !important;
  top: 6em !important;
  position: relative !important;
  z-index: 8 !important;
  margin-left: 18% !important;
  cursor: pointer;
  cursor: hand;
}
.flags {
  float: right;
  border: 1px solid #d6001d;
  margin: 0;
  padding: 0;
  margin-top: 1em;
}
img#ZAR {
  border-radius: 3px;
  border: 0.5px solid rgba(255, 255, 255, 0.45);
}
img#NAM {
  border-radius: 3px;
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  transition: 0.4s;
}
img.img-responsive.center-block.pos-center {
  margin-left: auto;
  margin-right: auto;
  display: block !important;
}
.dropdown-menu.open {
  max-height: 420px !important;
}
.range {
  display: inherit !important;
  position: relative !important;
  height: 70px !important;
  margin-top: 20px !important;
  background-color: #fff;
  border-radius: 100px 100px 100px 100px;
  margin-bottom: 0 !important;
  padding: 20px !important;
  -webkit-box-shadow: inset 0 1px 2px #000;
  box-shadow: inset 0px 1px 1px 1px #b1b1b1;
}
.tooltip.tooltip-main.top {
  display: none !important;
}
div#values {
  padding: 30px;
  color: #58595b;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 0.3em;
  border: 1px rgba(172, 172, 172, 0.58) solid;
  box-shadow: 2px 1px 1px 0px #d8d8d8;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
  float: left;
  font-style: italic;
  margin-top: 5px;
}
#YesButton {
  margin: 1em;
}
#YesButtonText {
  margin-right: 400px;
}
.main {
  width: 210px;
  height: 150px;
  margin-left: 1em;
  margin-right: 1em;
  background: #b11e26;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 4px 1px #fff, 0 3px 2px rgba(0, 0, 0, 0.2);
  line-height: 130px;
  font-weight: bold;
  color: #fff;
  border: 10px solid white;
  text-align: center;
  font-size: 29px;
  font-family: inherit;
}
.main span {
  color: #f15755;
}
.role {
  font-weight: bolder;
  height: 150px;
  line-height: 150px;
  font-size: xx-large;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.main .role {
  text-transform: uppercase;
  position: absolute;
  font-family: 'Advent Pro', sans-serif;
  font-size: 12px;
  color: #a2a7ac;
  left: 29px;
  bottom: 39px;
  line-height: 1;
  text-align: right;
}
.main:after {
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  background: #c8c8c8;
  background: linear-gradient(#c8c8c8, #dcdcdc);
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.9);
}
.main:before {
  position: absolute;
  height: 3px;
  width: 30px;
  background: #c8c8c8;
  border-radius: 40px;
  left: 47%;
  bottom: 40px;
}
.range {
  /* display: table; */
  position: relative !important;
  height: 70px !important;
  margin-top: 20px !important;
  background-color: #fff;
  border-radius: 100px 100px 100px 100px;
  margin-bottom: 10px !important;
  padding: 20px !important;
  -webkit-box-shadow: inset 0 1px 2px #000000;
  box-shadow: inset 0 1px 2px #000000;
}
.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #b11e26 !important;
  background-image: -webkit-linear-gradient(top, #b11e26 0%, #b11e26 100%) !important;
  background-image: -o-linear-gradient(to, #b11e26 0%, #b11e26 100%) !important;
  background-image: linear-gradient(top, #b11e26 0%, #b11e26 100%) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 0px solid transparent;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #e4e4e4 100%) !important;
  background-image: -o-linear-gradient(top, #ffffff 0%, #e4e4e4 100%) !important;
  background-image: linear-gradient(to bottom, #ffffff 0%, #e4e4e4 100%) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
  opacity: 1;
}
.callout-light {
  padding: 30px;
  color: #58595b;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 0.3em;
}
.callout-light h1 {
  font-weight: 300;
  line-height: 1.4;
  font-size: x-large !important;
}
.callout-block {
  background-color: #F5F3F4;
  border-left: 5px solid #a94545;
  border-right: 5px solid #a94545;
  padding: 15px;
}
.callout-light ul {
  list-style: none !important;
}
.callout-block h1,
.callout-block h2,
.callout-block h3,
.callout-block h4 {
  font-weight: 300;
  line-height: 1.4;
}
.activePremium {
  font-weight: bold;
  color: #f00;
  font-size: 14px;
  position: relative;
  top: -5px;
  background: #f2f2f2;
  border-radius: 18px;
  width: 14%;
  transition: 0.4s;
}
#personalDetails,
#motors,
#home,
#building,
#portable {
  text-align: left;
}
#personalDetails h1,
#motors h1,
#home h1,
#building h1,
#portable h1 {
  text-align: center !important;
  margin-bottom: 15px;
}
#personalDetails .row,
#motors .row,
#home .row,
#building .row,
#portable .row {
  line-height: 24px !important;
}
#values {
  margin: 20px 0;
}
.slider.slider-horizontal {
  width: 80% !important;
  height: 20px;
}
.slider-selection.tick-slider-selection {
  background-image: linear-gradient(to bottom, #AAA 0%, #CCC 100%) !important;
}
div#ui-datepicker-div {
  display: none !important;
}
.black {
  color: #5a5a5a;
}
.red {
  color: #ab2328;
}
.lhead {
  font-weight: 600;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: x-large;
}
ul.A-team {
  list-style: upper-alpha !important;
  color: #ab2328;
  font-size: 18px;
  line-height: 18px;
}
ul.A-team span {
  color: #5a5a5a;
  font-size: 18px;
  line-height: 18px;
}
.subsub {
  font-size: 18px;
  line-height: 40px;
  color: #5e5e5e;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 15px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 0px !important;
}
.col-centered {
  float: none;
  margin: 0 auto;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  font-size: xx-small;
  text-align: center;
}
.set {
  text-align: left !important;
}
#buildingValue,
#homeContentValue {
  width: 75% !important;
}
#portableValue {
  width: 75% !important;
}
h1 {
  font-size: xx-large;
}
ul.dobdropdowns li {
  width: 100%;
}
.month {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-appearance: menulist;
}
.day {
  display: block;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-appearance: menulist;
}
#year {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-appearance: menulist;
}
.dobdropdowns {
  display: inline-flex;
  list-style: none;
  float: left;
  width: 100%;
}
#disclaimer {
  margin-top: 30px;
}
.marker {
  width: 18px;
}
.white {
  color: #555 !important;
}
#header_uc_BigHeader_PhoneNumber {
  background: #d6001d !important;
}
.footer-text {
  position: relative !important;
  top: 0.8em !important;
}
.tooltip {
  position: absolute;
  background: #e6e7e8;
  border-radius: 4px;
  padding: 6px 12px;
  font-family: arial;
  font-size: 12px;
  border: 1px solid #e6e7e8;
  color: black;
}
.tooltip:before {
  content: " ";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e6e7e8;
  position: absolute;
  bottom: -12px;
  left: 5px;
}
.block.type-11.scroll-to-block {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.grid-container {
  padding: 2% 2% 0;
  text-align: justify;
  font-size: 0;
  background: white;
}
.grid-container:after {
  content: '';
  display: inline-block;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  width: 100%;
}
.grid-container .item,
.grid-container .gap {
  display: inline-block;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  width: 49%;
}
.grid-container .item {
  text-align: left;
  background: #e6e7e8;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  margin-bottom: 2%;
  /*display: none; <-- uncomment this rule for use with MixItUp */
}
.grid-container .item:before {
  content: '';
  display: inline-block;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  padding-top: 60%;
}
.item {
  transition: 0.4s;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}
.item:hover {
  background: #d6001d;
  transition: 0.6s;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}
@media all and (min-width: 420px) {
  .grid-container .item,
  .grid-container .gap {
    width: 32%;
  }
}
@media all and (min-width: 640px) {
  .grid-container .item,
  .grid-container .gap {
    width: 47%;
  }
}
@media all and (min-width: 425px) {
  .grid-container .item,
  .grid-container .gap {
    width: 100%;
  }
}
@media all and (min-width: 320px) {
  .grid-container .item,
  .grid-container .gap {
    width: 100%;
  }
}
@media all and (min-width: 375px) {
  .grid-container .item,
  .grid-container .gap {
    width: 100%;
  }
}
@media all and (min-width: 2560px) {
  .grid-container .item,
  .grid-container .gap {
    width: 25%;
  }
}
@media all and (min-width: 1440px) {
  .grid-container .item,
  .grid-container .gap {
    width: 15%;
  }
}
@media (max-width: 1024) {
  #logo {
    float: left;
    width: 50%;
    padding: 20px 0 0 0;
  }
}
#logo > a > img {
  margin-left: 110px;
}
.sticky-container {
  z-index: 1000;
  padding: 0;
  margin: 0;
  position: fixed;
  right: -166px;
  top: 205px;
  width: 200px;
}
.sticky li {
  list-style-type: none;
  background-color: #f5f5f5;
  color: #d5d5d5;
  height: 40px;
  padding: 0;
  margin: 0 0 1px 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.sticky li:hover {
  margin-left: -115px;
}
.sticky li img {
  float: left;
  margin: 5px 5px;
  margin-right: 10px;
}
.sticky li p {
  padding: 0;
  margin: 0;
  line-height: 43px;
}
.sticky li a {
  color: #ab2429;
  text-decoration: none;
}
.margin-left {
  margin-left: 15px;
}
#logo > a > img {
  margin-left: 100px !important;
}
.bold-heading {
  font-family: bold;
  margin-bottom: 10px;
}
.add-margin-top {
  margin-top: 10px !important;
}
.img-center {
  float: none;
  display: table;
  table-layout: auto;
  margin-left: auto;
  margin-right: auto;
}
.result {
  float: right;
  position: relative;
  bottom: 38px;
  right: 45px;
  font-size: 20px;
  background: white;
  padding: 10px;
}
.selected {
  background: white;
  transition: 0.6s;
}
.sessionOne {
  padding: 13px;
  list-style: none;
  border: 1px solid #cccccc;
  width: 100%;
  float: left;
  border-radius: 5px;
}
.sessionTwo {
  padding: 13px;
  list-style: none;
  border: 1px solid #cccccc;
  width: 100%;
  float: left;
  border-radius: 5px;
}
ul {
  list-style: inherit;
  text-align: left;
}
.marginTopBottom p {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bolder;
}
option:disabled {
  background: #7e7e7e;
  background-size: 100%;
}
footer ul li a:hover,
footer ul li a.active {
  color: #fff !important;
  text-decoration: none !important;
}
a[href=''] {
  display: none;
}
#main {
  width: 600px;
  margin: 0 auto;
}
.slider.clearfix {
  margin-left: auto;
  margin-right: auto;
}
#caricon > div > div:nth-child(1) > div > div:nth-child(2) {
  display: none;
}
#main {
  width: 600px;
  margin: 0 auto;
}
/* clearfix for floated labels */
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}
.clearfix:after {
  clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}
/* status */
.status label {
  color: #fff;
  text-transform: lowercase;
  display: block;
  font-size: inherit;
  background: #ca2630;
  padding: 10px 5px 0;
  border: 2px solid #fff;
  border-radius: 5px;
  height: 66px;
}
#customerForm > fieldset > div:nth-child(17) > div > input {
  border: none;
  background: transparent;
  float: right;
}
.status label span {
  color: #fff;
  font-weight: bold;
  font-size: x-large;
  text-transform: initial;
}
#result > tr > td {
  text-transform: uppercase;
}
#customerForm > fieldset > div:nth-child(15) > div > input {
  background: transparent !important;
  border: none !important;
  float: right !important;
}
img.logo-left {
  float: left;
  margin-bottom: 20px;
}
.text-image-box .text p {
  text-align: left;
  line-height: 22px;
}
.margin-top {
  position: relative;
  top: 9px !important;
  font-size: xx-large;
}
a.slider-handle.ui-draggable.ui-draggable-handle.no-animate {
  left: 444px;
  width: 24px;
  right: auto;
  top: -10px;
}
#customerForm > fieldset > div:nth-child(6) {
  margin-top: 20px;
  margin-bottom: 20px;
}
#customerForm > fieldset > div.hiddensuburb.form-group {
  margin-top: 20px;
}
label.active {
  position: relative;
  left: 8px;
}
a.animsition-link:focus {
  color: white !important;
}
.lightbox-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 23px;
}
.lightbox-gallery div > img {
  max-width: 100%;
  display: block;
}
.lightbox-gallery div {
  margin: 3px;
  flex-basis: 231px;
}
@media only screen and (max-width: 480px) {
  .lightbox-gallery {
    flex-direction: column;
    align-items: center;
  }
  .lightbox > div {
    margin-bottom: 10px;
  }
}
/*Lighbox CSS*/
.lightbox {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 30px;
  box-sizing: border-box;
}
.lightbox img {
  display: block;
  margin: auto;
  width: 80vw;
  top: 10px;
}
.lightbox .caption {
  margin: 15px auto;
  width: 50%;
  text-align: center;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 700;
  color: #eee;
}
a,
a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none !important;
  outline: none;
}
.img-class {
  max-width: 100%;
  height: auto !important;
  display: inline !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: table !important;
}
.center-text {
  text-align: center;
}
@media only screen and (max-width: 989px) {
  #content-wrapper > div > div > div > div.tabs-wrapper.wow.fadeInUp > div > div.circle-wrapper.wow.fadeInUp > div.row > div > div > img {
    display: table;
    table-layout: auto;
    margin-left: auto;
    margin-right: auto;
  }
  #content-wrapper > div > div.block.type-12.scroll-to-block > div > div.tabs-wrapper.wow.fadeInUp > div.tabs-switch-box > div.tabs-select-text {
    display: none !important;
  }
}
@media (max-width: 991px) {
  #content-wrapper > div > div.block.type-12.scroll-to-block > div > div.tabs-wrapper.wow.fadeInUp > div.tabs-switch-box > div.tabs-select-text {
    display: none !important;
  }
  .circle-entry .image-wrapper img {
    display: table !important;
    table-layout: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #content-wrapper > div > div > div > div > div > div > div > div.circle-wrapper.wow.fadeInUp > div.row > div > div > img {
    display: table !important;
    table-layout: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .text {
    width: 100% !important;
    line-height: 22px !important;
    text-align: left;
    margin-right: auto;
    margin-left: auto;
  }
  .big-circle-container {
    position: relative;
    display: none;
  }
  .circle-entry .image-wrapper {
    float: none !important;
    display: table !important;
    table-layout: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
  .circle-entry .content h3,
  .circle-entry .text {
    text-align: left !important;
    color: #5a5a5a !important;
  }
  .block.type-12 .icon-entry .title {
    font-size: 18px;
    line-height: 18px;
    color: #5a5a5a;
    font-family: 'bold', sans-serif, Arial;
    margin-bottom: 15px;
    text-align: center;
  }
  .block.type-12 .icon-entry {
    padding-bottom: 30px;
    text-align: center;
  }
  .block.type-12 .icon-entry .text {
    font-size: 16px;
    line-height: 22px;
    color: #5a5a5a;
    text-align: left;
  }
  .circle-entry .text {
    text-align: left !important;
  }
  .circle-entry .content h3 {
    text-align: center !important;
  }
}
.text.marginTopBottom {
  margin-top: 10px;
  margin-bottom: 20px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 0 !important;
  text-align: left !important;
}
@media (max-width: 320px) {
  .kptabsleft.active {
    border-radius: 5px;
  }
  .kptabsleft {
    border-radius: 5px;
  }
  .kptabsright {
    border-radius: 5px;
  }
  .kptabsright.active {
    border-radius: 5px;
  }
  .block.type-12 .icon-entry .title {
    font-size: 18px;
    line-height: 18px;
    color: #5a5a5a;
    font-family: 'bold', sans-serif, Arial;
    margin-bottom: 15px;
    text-align: center;
  }
  .block.type-12 .icon-entry {
    padding-bottom: 30px;
    text-align: center;
  }
  #caricon > div > div.col-md-4 > span > div > img {
    position: relative;
    left: 0%;
    top: 0px;
    height: 66px !important;
  }
  .block.type-12 .text {
    font-size: 16px;
    line-height: 22px;
    color: #5a5a5a;
    text-align: left;
  }
}
@media (max-width: 400px) {
  .kptabsleft.active {
    border-radius: 5px;
  }
  .kptabsleft {
    border-radius: 5px;
  }
  .kptabsright {
    border-radius: 5px;
  }
  .kptabsright.active {
    border-radius: 5px;
  }
  .block.type-12 .icon-entry .title {
    font-size: 18px;
    line-height: 18px;
    color: #5a5a5a;
    font-family: 'bold', sans-serif, Arial;
    margin-bottom: 15px;
    text-align: center;
  }
  .block.type-12 .icon-entry {
    padding-bottom: 30px;
    text-align: center;
  }
  .circle-entry .image-wrapper {
    float: none !important;
    display: table !important;
    table-layout: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
  #caricon > div > div.col-md-4 > span > div > img {
    position: relative;
    left: 0%;
    top: 0px;
    height: 66px;
    width: 100% !important;
  }
  .block.type-12 .icon-entry .text {
    font-size: 16px;
    line-height: 22px;
    color: #5a5a5a;
    text-align: left !important;
  }
  .circle-entry .content h3 {
    text-align: center !important;
  }
  .circle-entry .text {
    text-align: left !important;
  }
}
@media (max-width: 375px) {
  #caricon > div > div.col-md-4 > span > div > img {
    width: 100%;
    height: 50px;
  }
}
@media (max-width: 425px) {
  .responsive-padding {
    margin-top: 15px;
    margin-bottom: 65px;
  }
  .kptabsleft.active {
    border-radius: 5px;
  }
  .kptabsleft {
    border-radius: 5px;
  }
  .kptabsright {
    border-radius: 5px;
  }
  .kptabsright.active {
    border-radius: 5px;
  }
  .block.type-12 .icon-entry .title {
    font-size: 18px;
    line-height: 18px;
    color: #5a5a5a;
    font-family: 'bold', sans-serif, Arial;
    margin-bottom: 15px;
    text-align: center;
  }
  .block.type-12 .icon-entry {
    padding-bottom: 30px;
    text-align: center;
  }
  .circle-entry .image-wrapper {
    float: none !important;
    display: table !important;
    table-layout: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
  #caricon > div > div.col-md-4 > span > div > img {
    position: relative;
    left: 0%;
    top: 0px;
    height: 66px;
    width: 100% !important;
  }
  .block.type-12 .icon-entry .text {
    font-size: 16px;
    line-height: 22px;
    color: #5a5a5a;
    text-align: left !important;
  }
  .circle-entry .content h3 {
    text-align: center !important;
  }
  .circle-entry .text {
    text-align: left !important;
  }
}
@media (max-width: 480px) {
  .responsive-padding {
    margin-top: 15px;
    margin-bottom: 65px;
  }
}
a.button:visited,
a.button:active,
a.button:focus,
a.button:checked {
  color: white !important;
}
.quoteform {
  margin: 20px 0;
}
.contacticon {
  width: 100% !important;
  text-align: center !important;
}
.contacticon img {
  float: none !important;
  margin: auto !important;
}
input#fader {
  width: 100%;
}
.fstChoiceItem {
  display: inline-block;
  font-size: .8em !important;
  position: relative;
  margin: 0 .41667em .41667em 0;
  padding: .33333em .33333em .33333em 1.5em;
  float: left;
  border-radius: .25em;
  border: 1px solid#d6001d !important;
  cursor: auto;
  color: #fff;
  background-color: #d6001d !important;
  -webkit-animation: fstAnimationEnter 0.2s;
  -moz-animation: fstAnimationEnter 0.2s;
  animation: fstAnimationEnter 0.2s;
}
.fstResultItem.fstSelected {
  color: #fff;
  background-color: #d6001d !important;
  border-color: #ffffff;
}
.fstResultItem {
  font-size: 0.8em !important;
  display: block;
  padding: .5em .71429em;
  margin: 0;
  cursor: pointer;
  border-top: 1px solid #fff !important;
}
.fstResultItem.fstFocused {
  background-color: #d6001d !important;
  border-color: #ffffff;
}
.fstElement {
  display: inline-block;
  position: relative;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  color: #232323;
  font-size: 1em;
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  padding: 0px 8px;
}
button.swal2-confirm.button.no-animate {
  display: none !important;
}
#modalContentId > form > label .fstMultipleMode.fstActive .fstResults {
  display: block;
  z-index: 10;
  border-top: 1px solid #D7D7D7;
  text-align: left !important;
}
.fstMultipleMode .fstQueryInput {
  font-size: 0.8em !important;
  float: left;
  padding: .28571em 0;
  margin: 0 0 .35714em 0;
  width: 2em;
  color: #999;
}
label.active {
  position: relative;
  left: 0 !important;
}
.button-popup {
  width: 150px;
  background: #85a646;
  padding: 10px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-family: 'bold', sans-serif, Arial;
  text-decoration: none;
}
.swal2-modal.swal2-show {
  width: 610px !important;
  padding: 20px !important;
  background: url(../Content/img/king-price-insurance-popup-bg-01.png) #b10f1f;
  display: block !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
#modalContentId > form {
  position: relative !important;
  top: 10em !important;
  padding: 10px !important;
  text-align: left !important;
}
.swal2-modal .swal2-title {
  color: #ffffff !important;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 0 0 .4em;
  padding: 0;
  display: block;
}
.swal2-modal .swal2-input {
  height: 43px;
  width: 63% !important;
  padding: 0 12px;
}
.swal2-modal .swal2-content {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  position: relative;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  color: #ffffff !important;
  word-wrap: break-word;
}
div#CareerLoader {
  margin-top: 10px;
  position: relative;
  top: 10px;
}
a.button.no-animate {
  /*padding-bottom: 30px;*/
  color: white !important;
}
.overlay {
  background-color: #EFEFEF;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0px;
  left: 0px;
  opacity: .9;
  /* in FireFox */
  filter: alpha(opacity=90);
  /* in IE */
}
.da-thumbs {
  list-style: none;
  height: 600px;
  position: relative;
  margin: auto;
  padding: 0;
  margin-left: auto !important;
  margin-right: auto;
  display: table;
  table-layout: auto;
  float: none;
  left: 5em;
}
.da-thumbs li {
  float: left;
  margin: 5px;
  background: #fff;
  padding: 8px;
  position: relative;
  box-shadow: inset 0px -1px 20px 20px rgba(0, 0, 0, 0.1);
}
.da-thumbs li a,
.da-thumbs li a img {
  display: block;
  position: relative;
}
.da-thumbs li a {
  overflow: hidden;
}
.da-thumbs li a div {
  position: absolute;
  background: #333;
  background: rgba(75, 75, 75, 0.7);
  width: 100%;
  height: 100%;
}
.da-thumbs li a div span {
  display: block;
  padding: 10px 0;
  margin: 40px 20px 20px 20px;
  text-transform: uppercase;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), 0 -10px 0 rgba(255, 255, 255, 0.3);
}
.custom-img-center {
  width: 80% !important;
  margin-left: auto;
  margin-right: auto;
  display: table;
  table-layout: auto;
  float: none;
}
.overlay-message {
  margin-left: auto;
  margin-right: auto;
  display: table;
  table-layout: auto;
  margin-top: 22%;
  opacity: 1;
  font-size: x-large;
}
@media (max-width: 375px) {
  .block,
  .block.type-8.style-1 {
    padding: 5px 0 20px 0;
  }
}
.slider-background {
  height: 66px;
  background: #fff;
  padding: 1em 3em 2em 3em;
  border-radius: 5px;
  box-shadow: 1px 1px 3px 1px #ddd;
}
span.ui-slider-label {
  color: #d6001d;
}
span.ui-slider-handle.ui-state-default.ui-corner-all {
  width: 12px;
  height: 12px;
  position: absolute;
  /* top: -14px; */
  box-shadow: 0 1px 1px -0.5px #ccc;
  content: '';
  display: block;
  background-color: #fff;
  border: 12px solid #c5c4c4;
  border-radius: 44px;
}
.ui-slider-pips .ui-slider-pip-label .ui-slider-label {
  display: block;
  text-shadow: 0.5px 0.5px #fff;
  color: #444;
}
button:focus {
  outline: 0;
}
span.ui-slider-handle:focus {
  outline: 0;
}
.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ca2630 !important;
  color: #222222;
}
.ui-slider-pips .ui-slider-label {
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -3em !important;
  width: 5em !important;
}
@media (min-width: 992px) {
  col-md-offset-3 {
    margin-left: 22%;
  }
}
@media (min-width: 1200px) {
  col-md-offset-14 {
    margin-left: 21% !important;
  }
}
@media (min-width: 1200px) {
  col-md-offset-3 {
    margin-left: 23% !important;
  }
}
@media (min-width: 1200px) {
  col-md-1 {
    width: 11.333333% !important;
  }
}
@media (min-width: 768px) {
  label.col-md-6.control-label.set {
    margin-left: 35px;
  }
}
div#mobile-call-form {
  width: 100%;
  height: 100%;
  background: #d6001d;
  color: #fff;
  border-top: 1px solid white;
  padding-top: 20px;
}
#mobile-call-form h2 {
  font-size: 40px;
  line-height: 40px;
  font-family: 'bold', sans-serif, Arial;
  margin-bottom: 15px;
  text-align: center;
  margin-left: 0.6em;
  margin-right: 0.6em;
}
#mobile-CallBack {
  margin-left: auto;
  margin-right: auto;
  display: table;
  table-layout: auto;
  float: none;
  width: 88%;
  margin-bottom: 2em;
}
input#Mobile-CallBackButton {
  background: url(../img/callme.png);
  border: none;
  width: 130px;
  background-repeat: no-repeat;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  table-layout: auto;
  padding-top: 1em;
  float: none;
  position: relative;
  top: 15px;
}
#mobile-call-form h2 a {
  color: white !important;
}
#mobile-call-form p {
  text-align: center;
}
.title h2 {
  line-height: 1em !important;
}
.submit-btn {
  background: #7fb344 !important;
  color: white !important;
  border: none !important;
  height: 55px !important;
  width: 178px !important;
  font-size: larger !important;
  font-weight: bolder !important;
  text-shadow: 0px -1px 0px white !important;
  box-shadow: 0px 4px 0px 0px #6f9c3f !important;
  display: table;
  table-layout: auto;
  margin-left: auto;
  margin-right: auto;
  float: none;
}
#result {
  margin-bottom: 15px;
  margin-top: 15px;
}
.label-left {
  float: left;
  position: relative;
  top: 25px;
  margin-right: 40px;
  font-size: 18px;
}
* {
  box-sizing: border-box;
}
.main-wrapper {
  position: relative;
  margin: 30px auto;
  width: 100%;
  padding: 50px;
  overflow: hidden;
  text-align: center;
}
.card-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 250px;
  height: 300px;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.card-wrapper:after {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: -30px;
  width: 100%;
  height: 30px;
  left: 0;
  background: -webkit-radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3), rgba(97, 97, 97, 0) 0%);
  background: -webkit-radial-gradient(50% 50%, ellipse, rgba(0, 0, 0, 0.3), rgba(97, 97, 97, 0) 70%);
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3), rgba(97, 97, 97, 0) 70%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
.card-wrapper .card-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-repeat: no-repeat;
  background-image: url("https://www.kingprice.co.za/content/img/amp_img/Car-01.svg");
  background-size: cover;
  box-shadow: 0px 8px 8px -3px transparent;
  opacity: 0.2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.card-wrapper .card-holder {
  position: absolute;
  width: 100%;
  height: 160px;
  top: 100px;
  padding: 20px;
  left: 0px;
  z-index: 1;
}
.card-wrapper .card-holder .card-holder_ovh {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  float: left;
  width: 100%;
  text-align: left;
}
.card-wrapper .card-holder .card-holder_info {
  color: white;
  float: left;
  font-size: 14px;
  font-family: 'Verdana', sans-serif;
  line-height: 1.2em;
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 1ms ease;
  transition: all 1ms ease;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.card-wrapper .card-header {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 10px;
  z-index: 3;
  background-color: #B10F1F;
  text-align: left;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.card-wrapper .card-header:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  height: 0;
  width: 0;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.card-wrapper .card-header .card-info {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  color: white;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.card-wrapper .card-header .card-header_valign {
  float: left;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
}
.card-wrapper .card-header .card-header_valign h1,
.card-wrapper .card-header .card-header_valign h2 {
  color: white;
  font-family: "Arial", sans-serif;
  float: left;
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
  opacity: 0;
}
.card-wrapper .card-header .card-header_valign h1 {
  font-size: 18px;
}
.card-wrapper .card-header .card-header_valign h2 {
  font-size: 16px;
  margin-top: 5px;
}
.card-wrapper .card-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: table;
  table-layout: fixed;
  width: 0;
  height: 40px;
  padding: 8px;
  background-color: #B10F1F;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.card-wrapper .card-footer:before,
.card-wrapper .card-footer:after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}
.card-wrapper .card-footer ul {
  width: 100%;
  display: table-row;
}
.card-wrapper .card-footer li {
  display: table-cell;
  padding: 2px 0px;
  text-align: center;
  overflow: hidden;
}
.card-wrapper .card-footer .card-footer_link {
  width: 30px;
  height: 30px;
  line-height: 34px;
  border-radius: 3px;
  color: white;
  margin: 0 auto;
  display: block;
  background-color: #fefefe;
  font-size: 12px;
  font-family: 'Arial', sans-serif;
  text-decoration: none;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.card-wrapper:hover:after {
  bottom: -45px;
  opacity: 1;
}
.card-wrapper:hover .card-photo {
  width: 70px;
  height: 70px;
  right: 10px;
  top: 15px;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.6);
}
.card-wrapper:hover .card-header {
  top: 0;
  height: 100px;
  opacity: 1;
  box-shadow: 0px 8px 14px -6px rgba(0, 0, 0, 0.6);
}
.card-wrapper:hover .card-header:before {
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.card-wrapper:hover .card-header .card-header_valign h1 {
  -webkit-transition-delay: 350ms;
  transition-delay: 350ms;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.card-wrapper:hover .card-header .card-header_valign h2 {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.card-wrapper:hover .card-header .card-header_valign h1,
.card-wrapper:hover .card-header .card-header_valign h2 {
  opacity: 1;
}
.card-wrapper:hover .card-holder_info {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition: all 800ms ease-In-Out;
  transition: all 800ms ease-In-Out;
}
.card-wrapper:hover .card-info {
  opacity: 0;
  -webkit-transition: transformY(-10px);
  transition: transformY(-10px);
}
.card-wrapper:hover .card-footer {
  width: 100%;
  left: 0;
  opacity: 1;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  box-shadow: 0px -8px 14px -6px rgba(0, 0, 0, 0.6);
}
.card-wrapper:hover .card-footer .card-footer_link {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  box-shadow: 0px 24px 0px 0px rgba(94, 175, 174, 0);
}
.card-wrapper:hover .card-footer .card-footer_link:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  box-shadow: 0px 24px 0px 3px rgba(94, 175, 174, 0.9);
}
.card-wrapper:hover li:nth-of-type(1) .card-footer_link {
  -webkit-transition-delay: 310ms;
  transition-delay: 310ms;
}
.card-wrapper:hover li:nth-of-type(1) .card-footer_link:hover {
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.card-wrapper:hover li:nth-of-type(2) .card-footer_link {
  -webkit-transition-delay: 340ms;
  transition-delay: 340ms;
}
.card-wrapper:hover li:nth-of-type(2) .card-footer_link:hover {
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.card-wrapper:hover li:nth-of-type(3) .card-footer_link {
  -webkit-transition-delay: 390ms;
  transition-delay: 390ms;
}
.card-wrapper:hover li:nth-of-type(3) .card-footer_link:hover {
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.card-wrapper:hover li:nth-of-type(4) .card-footer_link {
  -webkit-transition-delay: 430ms;
  transition-delay: 430ms;
}
.card-wrapper:hover li:nth-of-type(4) .card-footer_link:hover {
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}
.mdl-textfield {
  position: relative;
  font-size: 16px;
  display: inline-block;
  box-sizing: border-box;
  width: 300px;
  max-width: 100%;
  margin: 0;
  padding: 20px 0;
  float: right;
}
select {
  width: 100%;
  height: 35px;
  border-color: rgba(204, 204, 204, 0.47) !important;
}
.mdl-textfield__label:after {
  background-color: #d6001d !important;
  bottom: 20px;
  content: '';
  height: 2px;
  left: 45%;
  position: absolute;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: 10px;
}
.mdl-textfield--floating-label.is-focused .mdl-textfield__label {
  color: #d6001d !important;
}
ul.faq {
  list-style: none;
}
ul.faq li {
  padding: 20px;
}
#content-wrapper > div > div > div.type-11.scroll-to-block > div > div > div > div > div > div > div > ul:nth-child(2) {
  list-style: none;
}
ul.faq li.q {
  background: #ffffff;
  font-weight: 100;
  border-bottom: 1px #ddd solid;
  cursor: pointer;
  line-height: inherit;
}
.typography-block ul li:before {
  display: none;
}
#content-wrapper > div > div > div.type-11.scroll-to-block > div > div > div > div > div > div > div > ul:nth-child(2):before {
  display: none;
}
ul.faq li.a {
  background: #e6e7e8;
  display: none;
  color: #5a5a5a;
  line-height: inherit;
}
ul.faq li.q img {
  width: 8px;
  /* clear: both; */
  position: absolute;
  left: 0;
  top: 27px;
}
.rotate {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.text-image-box ul li {
  line-height: 18px;
  position: relative;
  right: 35px !important;
  padding: 5px 0 5px 35px !important;
}
.subtwo {
  font-size: 18px;
  line-height: 40px;
  color: #5a5a5a;
  font-family: 'regular', sans-serif, Arial !important;
}
.btn-group.bootstrap-select.form-control.show-tick {
  background: #e6e7e8 !important;
}
.img-two {
  position: absolute;
  top: -255px;
  left: 5px;
}
.fluid-first {
    position: relative;
    bottom: 23%;
    background: #940513;
    padding: 40px;
    z-index: 6;
}
.title-first {
  z-index: 9999999 !important;
  position: relative;
  top: -65px;
  font-size: 4em;
  line-height: 1.2;
}
.text-first {
  text-align: center;
  position: relative;
  top: -35px;
  font-size: 1.65em;
}
.img-three {
  position: absolute;
  height: 400px;
  top: -251px;
  z-index: -1;
  left: 400px;
}
.img-first {
  position: absolute;
  height: 244px;
  top: 224px;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: table;
  table-layout: auto;
  float: none;
  left: 18%;
  /* width: 1808px; */
  z-index: 9999999999 !important;
}
.fluid-second {
  position: relative;
  bottom: 25%;
  background: #ab2328;
  padding: 40px;
  z-index: -1;
}
.anchor-one {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
@media (max-width: 1473px) {
  .img-three {
    position: absolute;
    height: 400px;
    top: -251px;
    z-index: -1;
    left: 200px;
  }
}
@media (max-width: 1440px) {
  .img-two {
    position: absolute;
    /* height: 244px; */
    top: -195px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    float: none;
    left: 0;
    /* width: 1808px; */
    z-index: 9999999999 !important;
  }
}
@media (max-width: 1025px) {
  .img-two {
    position: absolute;
    /* height: 244px; */
    top: -137px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    float: none;
    left: 0;
    /* width: 1808px; */
    z-index: 9999999999 !important;
  }
}
@media (max-width: 1759px) {
  .img-three {
    position: absolute;
    height: 400px;
    top: -300px;
    z-index: -1;
    left: 135px;
  }
}
@media (min-width: 1335px) and (max-width: 1490px) {
  .img-three {
    position: absolute;
    height: 400px;
    top: -341px;
    z-index: -1;
    left: 182px;
  }
}
@media (max-width: 1324px) {
  .img-three {
    position: absolute;
    height: 400px;
    top: -300px;
    z-index: -1;
    left: 135px;
  }
}
@media (max-width: 1240px) {
  .img-three {
    position: absolute;
    height: 400px;
    top: -300px;
    z-index: -1;
    left: 75px;
  }
}
@media (max-width: 1200px) {
  .img-three {
    position: absolute;
    height: 282px;
    top: -251px;
    z-index: -1;
    left: 77px;
  }
}
@media (max-width: 1024px) {
  .img-three {
    position: absolute;
    height: 282px;
    top: -251px;
    z-index: -1;
    left: 44px;
  }
}
@media (max-width: 781px) {
  .img-three {
    position: absolute;
    height: 400px;
    top: -300px;
    z-index: -1;
    left: 90px;
  }
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../../fonts/fontawesome-webfont.eot');
  src: url('../../fonts/fontawesome-webfont.eot') format('embedded-opentype'), url('../../fonts/fontawesome-webfont.woff') format('woff'), url('../../fonts/fontawesome-webfont.ttf') format('truetype'), url('../../fonts/fontawesome-webfont.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*!
 * Bootstrap-select v1.10.0 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2016 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}

/*!
 * bootstrap-select v1.5.4
 * http://silviomoreto.github.io/bootstrap-select/
 *
 * Copyright 2013 bootstrap-select
 * Licensed under the MIT license
 */ .bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*="span"] {
    float: none;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 0
}

.form-search .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group {
    margin-bottom: 0
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: 0
}

.bootstrap-select.btn-group.pull-right, .bootstrap-select.btn-group[class*="span"].pull-right, .row-fluid .bootstrap-select.btn-group[class*="span"].pull-right {
    float: right
}

.input-append .bootstrap-select.btn-group {
    margin-left: -1px
}

.input-prepend .bootstrap-select.btn-group {
    margin-right: -1px
}

.bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 220px
}

.bootstrap-select {
    width: 220px\0
}

    .bootstrap-select.form-control:not([class*="span"]) {
        width: 100%
    }

    .bootstrap-select > .btn {
        width: 100%;
        padding-right: 25px
    }

.error .bootstrap-select .btn {
    border: 1px solid #b94a48
}

.bootstrap-select.show-menu-arrow.open > .btn {
    z-index: 2051
}

.bootstrap-select .btn:focus {
    outline: thin dotted #333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px
}

.bootstrap-select.btn-group .btn .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    float: left;
    text-align: left
}

.bootstrap-select.btn-group .btn .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.bootstrap-select.btn-group > .disabled, .bootstrap-select.btn-group .dropdown-menu li.disabled > a {
    cursor: not-allowed
}

    .bootstrap-select.btn-group > .disabled:focus {
        outline: none !important
    }

.bootstrap-select.btn-group[class*="span"] .btn {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    z-index: 2000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

    .bootstrap-select.btn-group .dropdown-menu.inner {
        position: static;
        border: 0;
        padding: 0;
        margin: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none
    }

    .bootstrap-select.btn-group .dropdown-menu dt {
        display: block;
        padding: 3px 20px;
        cursor: default
    }

.bootstrap-select.btn-group .div-contain {
    overflow: hidden
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative
}

    .bootstrap-select.btn-group .dropdown-menu li > a.opt {
        position: relative;
        padding-left: 35px
    }

    .bootstrap-select.btn-group .dropdown-menu li > a {
        cursor: pointer
    }

    .bootstrap-select.btn-group .dropdown-menu li > dt small {
        font-weight: normal
    }

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a i.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 2.5px
}

.bootstrap-select.btn-group .dropdown-menu li a i.check-mark {
    display: none
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: .5em
}

.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:hover small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:focus small, .bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) > a small {
    color: #64b1d8;
    color: rgba(255,255,255,0.4)
}

.bootstrap-select.btn-group .dropdown-menu li > dt small {
    font-weight: normal
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #CCC;
    border-bottom-color: rgba(0,0,0,0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid #ccc;
    border-bottom: 0;
    border-top-color: rgba(0,0,0,0.2)
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block
}

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
    pointer-events: none;
    opacity: .9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mobile-device {
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 100%;
    height: 100% !important;
    opacity: 0
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select.btn-group.fit-width .btn .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .btn .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.control-group.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select-searchbox, .bootstrap-select .bs-actionsbox {
    padding: 4px 8px
}

.bootstrap-select .bs-actionsbox {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select-searchbox + .bs-actionsbox {
    padding: 0 8px 4px
}

.bootstrap-select-searchbox input {
    margin-bottom: 0
}

.bootstrap-select .bs-actionsbox .btn-group button {
    width: 50%
}
/* ========================================================================
 * bootstrap-switch - v3.3.2
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */

.bootstrap-switch{display:inline-block;direction:ltr;cursor:pointer;border-radius:4px;border:1px solid #ccc;position:relative;text-align:left;overflow:hidden;line-height:8px;z-index:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch .bootstrap-switch-container{display:inline-block;top:0;border-radius:4px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block!important;height:100%;padding:6px 12px;font-size:14px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on{text-align:center;z-index:1}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary{color:#fff;background:#337ab7}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info{color:#fff;background:#5bc0de}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success{color:#fff;background:#5cb85c}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning{background:#f0ad4e;color:#fff}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger{color:#fff;background:#d9534f}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{color:#000;background:#eee}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;color:#333;background:#fff}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch input[type=radio],.bootstrap-switch input[type=checkbox]{position:absolute!important;top:0;left:0;margin:0;z-index:-1;opacity:0;filter:alpha(opacity=0)}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding:1px 5px;font-size:12px;line-height:1.5}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding:5px 10px;font-size:12px;line-height:1.5}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding:6px 16px;font-size:18px;line-height:1.3333333}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-indeterminate,.bootstrap-switch.bootstrap-switch-readonly{cursor:default!important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label{opacity:.5;filter:alpha(opacity=50);cursor:default!important}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;-o-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on{border-radius:0 3px 3px 0}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off{border-radius:3px 0 0 3px}.bootstrap-switch.bootstrap-switch-focused{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-bottom-left-radius:3px;border-top-left-radius:3px}
@media (min-width: 992px) {
  .hiddenOnDesktop {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hiddenOnDesktop {
    display: none;
  }
}
@media (max-width: 520px) {
  body {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
  }
  .flags {
    display: none;
  }
  .form-horizontal .control-label,
  .form-horizontal .radio,
  .form-horizontal .checkbox,
  .form-horizontal .radio-inline,
  .form-horizontal .checkbox-inline {
    margin-bottom: 15px;
  }
  .form-control {
    width: 100%;
  }
  .mobile-form {
    width: 100%;
  }
  .input-group.date {
    width: 100% !important;
  }
  .form-header .title {
    margin: 20px!important;
    font-size: 28px !important;
  }
  .text {
    width: 80%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  a.button.animsition-link {
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
  #content-wrapper > div > div > div > div > div > div:nth-child(2) {
    display: block!important;
  }
  .input-group {
    width: 100% !important;
  }
  .bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block;
    text-align: left;
  }
  .btn-group.bootstrap-select.form-control {
    width: 100% !important;
  }
  label.col-md-5.control-label {
    margin-bottom: 1em !important;
  }
  .kp-radio.btn-group {
    float: left;
  }
  span.text.remove-button {
    float: none !important;
  }
  .remove-button {
    height: 50px !important;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #ab2328;
    display: block !important;
    font-size: 14px !important;
    padding: 1px;
    width: 150px !important;
  }
  .btn-group,
  .btn-group-vertical {
    float: none !important;
  }
  .terms {
    margin-top: 50px;
  }
  .form-horizontal .form-group {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  div#genders {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: inherit;
  }
  .mobile-steps-one {
    background-image: url('../img/quote-progress-mobile-10.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
  }
  .mobile-steps-two {
    background-image: url('../img/quote-progress-mobile-11.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .mobile-steps-three {
    background-image: url('../img/quote-progress-mobile-12.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .mobile-responsive {
    height: 50% !important;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: table !important;
    table-layout: auto;
  }
  .hiddenOnMobile {
    display: none;
  }
  .main {
    width: 205px;
    height: 150px;
    margin-left: 0em;
    margin-right: 0em;
    background: #b11e26;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 4px 1px #fff, 0 3px 2px rgba(0, 0, 0, 0.2);
    line-height: 130px;
    font-weight: bold;
    color: #fff;
    border: 10px solid #fff;
    text-align: center;
    font-size: 29px;
    font-family: inherit;
  }
  div#values {
    padding: 0 0 0 5px;
    color: #58595b;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: .3em;
    border: 1px rgba(172, 172, 172, 0.58) solid;
    box-shadow: 2px 1px 1px 0 #d8d8d8;
  }
}
@media (max-width: 991px) {
  #content-wrapper > div > div > div > div > div > div:nth-child(2) {
    display: block!important;
  }
  .hiddenOnMobile {
    display: none;
  }
  #one {
    display: none;
  }
  .homequotebutton {
    text-align: center;
    display: block;
  }
  .kppad {
    padding-bottom: 25px;
    width: 100%;
    margin: auto;
  }
  a.button.animsition-link {
    margin-left: auto;
    margin-right: auto;
  }
  .input-group.date {
    width: 100% !important;
  }
  .btn-group.bootstrap-select.form-control.dropup {
    width: 100%;
  }
  .btn-group.bootstrap-select.form-control.open {
    width: 100%;
  }
  .btn-group.bootstrap-select.form-control {
    width: 100%;
  }
  .text {
    width: 80%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  .text-image-box .title {
    text-align: center;
  }
  label.col-md-4.control-label {
    margin-bottom: 1em;
  }
  .input-group {
    width: 100% !important;
  }
  .bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block;
    text-align: left;
  }
  label.col-md-5.control-label {
    margin-bottom: 1.5em;
  }
  .kp-radio.btn-group {
    text-align: center;
  }
  span.text.remove-button {
    float: none !important;
  }
  .remove-button {
    height: 50px !important;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #ab2328;
    display: block !important;
    font-size: 14px !important;
    padding: 1px;
    width: 150px !important;
  }
  .btn-group,
  .btn-group-vertical {
    float: none !important;
  }
  .terms {
    margin-top: 50px;
  }
  .form-horizontal .form-group {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  div#genders {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: inherit;
  }
  .namib {
    position: absolute;
    top: 2.8em;
  }
  .mobile-steps-one {
    background-image: url('../img/quote-progress-mobile-10.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
  }
  .mobile-steps-two {
    background-image: url('../img/quote-progress-mobile-11.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .mobile-steps-three {
    background-image: url('../img/quote-progress-mobile-12.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .mobile-responsive {
    height: 50% !important;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: table !important;
    table-layout: auto;
  }
  .main {
    width: 205px;
    height: 150px;
    margin-left: 0em;
    margin-right: 0em;
    background: #b11e26;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 4px 1px #fff, 0 3px 2px rgba(0, 0, 0, 0.2);
    line-height: 130px;
    font-weight: bold;
    color: #fff;
    border: 10px solid #fff;
    text-align: center;
    font-size: 29px;
    font-family: inherit;
  }
  div#values {
    padding: 0 0 0 5px;
    color: #58595b;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: .3em;
    border: 1px rgba(172, 172, 172, 0.58) solid;
    box-shadow: 2px 1px 1px 0 #d8d8d8;
  }
}
@media only screen and (max-width: 989px) {
  #content-wrapper > div > div > div > div > div > div:nth-child(2) {
    display: none;
  }
  .hiddenOnMobile {
    display: none;
  }
  #logo img {
    text-align: center;
    width: 150px;
  }
  #logo {
    width: 80%;
  }
  a.button.animsition-link {
    margin-left: auto;
    margin-right: auto;
  }
  label.col-md-4.control-label {
    margin-bottom: 1em;
  }
  .input-group {
    width: 100% !important;
  }
  .bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block;
    text-align: left;
  }
  .btn-group.bootstrap-select.form-control {
    width: 100% !important;
    background-color: #e6e7e8;
  }
  label.col-md-5.control-label {
    margin-bottom: 1.5em;
  }
  div#genders {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: inherit;
  }
  #genderButtons {
    width: 300px;
    margin: auto;
  }
  .kp-radio.btn-group {
    float: left;
  }
  span.text.remove-button {
    float: none !important;
  }
  .remove-button {
    height: 50px !important;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #ab2328;
    display: block !important;
    font-size: 14px !important;
    padding: 1px;
    width: 150px !important;
  }
  span.text.home-remove-button,
  span.bulding-remove-button,
  span.portable-remove-button {
    float: none !important;
  }
  .form-header .text {
    line-height: 22px !important;
    text-align: center !important;
  }
  .home-remove-button {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #ab2328;
    display: block !important;
    font-size: 14px !important;
    padding: 1px;
    right: auto !important;
    width: 150px!important;
  }
  .bulding-remove-button {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #ab2328;
    display: block !important;
    font-size: 14px !important;
    padding: 1px;
    width: 150px!important;
    position: relative !important;
    right: auto !important;
  }
  .portable-remove-button {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #ab2328;
    display: block !important;
    font-size: 14px !important;
    padding: 1px;
    width: 150px!important;
    right: auto !important;
    position: relative !important;
  }
  .btn-group,
  .btn-group-vertical {
    float: none !important;
  }
  .terms {
    margin-top: 50px;
  }
  .form-horizontal .form-group {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mobile-steps-one {
    background-image: url('../img/quote-progress-mobile-10.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
  }
  .mobile-steps-two {
    background-image: url('../img/quote-progress-mobile-11.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .mobile-steps-three {
    background-image: url('../img/quote-progress-mobile-12.svg');
    height: 90px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    display: table;
    table-layout: auto;
    width: 100%;
    background-position: center;
    margin-top: 1em;
    margin-bottom: 2em;
  }
  .mobile-responsive {
    height: 50% !important;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: table !important;
    table-layout: auto;
  }
  .main {
    width: 205px;
    height: 150px;
    margin-left: 0;
    margin-right: 0;
    background: #b11e26;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 4px 1px #fff, 0 3px 2px rgba(0, 0, 0, 0.2);
    line-height: 130px;
    font-weight: bold;
    color: #fff;
    border: 10px solid #fff;
    text-align: center;
    font-size: 29px;
    font-family: inherit;
  }
  div#values {
    padding: 0 0 0 5px;
    color: #58595b;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: .3em;
    border: 1px rgba(172, 172, 172, 0.58) solid;
    box-shadow: 2px 1px 1px 0 #d8d8d8;
  }
}
.margin-none {
  margin-top: 0.3em !important;
}
span.text.remove-button {
  position: relative;
  top: -2px;
  margin-bottom: 5px;
}
span.text.bulding-remove-button {
  position: relative;
  top: 12px;
  margin-bottom: 5px;
}
.anti-role {
  font-weight: bolder;
  height: auto !important;
  text-align: center;
  line-height: 2 !important;
  font-size: inherit !important;
  position: relative !important;
  display: inline-block !important;
  vertical-align: top !important;
  margin-left: 1em!important;
}
body.swal2-shown{overflow-y:hidden}body.swal2-iosfix{position:fixed;left:0;right:0}.swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:fixed;top:0;left:0;bottom:0;right:0;padding:10px;background-color:transparent;z-index:1060}.swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.swal2-modal{background-color:#fff;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;border-radius:5px;box-sizing:border-box;text-align:center;margin:auto;overflow-x:hidden;overflow-y:auto;display:none;position:relative}.swal2-modal:focus{outline:0}.swal2-modal.swal2-loading{overflow-y:hidden}.swal2-modal .swal2-title{color:#595959;font-size:30px;text-align:center;font-weight:600;text-transform:none;position:relative;margin:0 0 .4em;padding:0;display:block}.swal2-modal .swal2-spacer{height:10px;color:transparent;border:0}.swal2-modal .swal2-styled{border:0;border-radius:3px;box-shadow:none;color:#fff;cursor:pointer;font-size:17px;font-weight:500;margin:0 5px;padding:10px 32px}.swal2-modal .swal2-styled:not(.swal2-loading)[disabled]{opacity:.4;cursor:no-drop}.swal2-modal .swal2-styled.swal2-loading{box-sizing:border-box;border:4px solid transparent;border-color:transparent;width:40px;height:40px;padding:0;margin:-2px 30px;vertical-align:top;background-color:transparent!important;color:transparent;cursor:default;border-radius:100%;-webkit-animation:rotate-loading 1.5s linear 0s infinite normal;animation:rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-modal .swal2-styled+.swal2-styled{margin-top:15px}.swal2-modal :not(.swal2-styled).swal2-loading::after{display:inline-block;content:'';margin-left:5px;vertical-align:-1px;height:6px;width:6px;border:3px solid #999;border-right-color:transparent;border-radius:50%;-webkit-animation:rotate-loading 1.5s linear 0s infinite normal;animation:rotate-loading 1.5s linear 0s infinite normal}.swal2-modal .swal2-image{margin:20px auto;max-width:100%}.swal2-modal .swal2-close{font-size:36px;line-height:36px;font-family:serif;position:absolute;top:5px;right:13px;cursor:pointer;color:#ccc;-webkit-transition:color .1s ease;transition:color .1s ease}.swal2-modal .swal2-close:hover{color:#d55}.swal2-modal>.swal2-checkbox,.swal2-modal>.swal2-file,.swal2-modal>.swal2-input,.swal2-modal>.swal2-radio,.swal2-modal>.swal2-select,.swal2-modal>.swal2-textarea{display:none}.swal2-modal .swal2-content{font-size:18px;text-align:center;font-weight:300;position:relative;float:none;margin:0;padding:0;line-height:normal;color:#545454;word-wrap:break-word}.swal2-modal .swal2-checkbox,.swal2-modal .swal2-file,.swal2-modal .swal2-input,.swal2-modal .swal2-radio,.swal2-modal .swal2-select,.swal2-modal .swal2-textarea{margin:20px auto}.swal2-modal .swal2-file,.swal2-modal .swal2-input,.swal2-modal .swal2-textarea{width:100%;box-sizing:border-box;border-radius:3px;border:1px solid #d9d9d9;font-size:18px;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-transition:border-color box-shadow .3s;transition:border-color box-shadow .3s}.swal2-modal .swal2-file.swal2-inputerror,.swal2-modal .swal2-input.swal2-inputerror,.swal2-modal .swal2-textarea.swal2-inputerror{border-color:#f06e57!important}.swal2-modal .swal2-file:focus,.swal2-modal .swal2-input:focus,.swal2-modal .swal2-textarea:focus{outline:0;box-shadow:0 0 3px #c4e6f5;border:1px solid #b4dbed}.swal2-modal .swal2-file:focus::-webkit-input-placeholder,.swal2-modal .swal2-input:focus::-webkit-input-placeholder,.swal2-modal .swal2-textarea:focus::-webkit-input-placeholder{-webkit-transition:opacity .3s .03s ease;transition:opacity .3s .03s ease;opacity:.8}.swal2-modal .swal2-file:focus::-moz-placeholder,.swal2-modal .swal2-input:focus::-moz-placeholder,.swal2-modal .swal2-textarea:focus::-moz-placeholder{-webkit-transition:opacity .3s .03s ease;transition:opacity .3s .03s ease;opacity:.8}.swal2-modal .swal2-file:focus:-ms-input-placeholder,.swal2-modal .swal2-input:focus:-ms-input-placeholder,.swal2-modal .swal2-textarea:focus:-ms-input-placeholder{-webkit-transition:opacity .3s .03s ease;transition:opacity .3s .03s ease;opacity:.8}.swal2-modal .swal2-file:focus::placeholder,.swal2-modal .swal2-input:focus::placeholder,.swal2-modal .swal2-textarea:focus::placeholder{-webkit-transition:opacity .3s .03s ease;transition:opacity .3s .03s ease;opacity:.8}.swal2-modal .swal2-file::-webkit-input-placeholder,.swal2-modal .swal2-input::-webkit-input-placeholder,.swal2-modal .swal2-textarea::-webkit-input-placeholder{color:#e6e6e6}.swal2-modal .swal2-file::-moz-placeholder,.swal2-modal .swal2-input::-moz-placeholder,.swal2-modal .swal2-textarea::-moz-placeholder{color:#e6e6e6}.swal2-modal .swal2-file:-ms-input-placeholder,.swal2-modal .swal2-input:-ms-input-placeholder,.swal2-modal .swal2-textarea:-ms-input-placeholder{color:#e6e6e6}.swal2-modal .swal2-file::placeholder,.swal2-modal .swal2-input::placeholder,.swal2-modal .swal2-textarea::placeholder{color:#e6e6e6}.swal2-modal .swal2-range input{float:left;width:80%}.swal2-modal .swal2-range output{float:right;width:20%;font-size:20px;font-weight:600;text-align:center}.swal2-modal .swal2-range input,.swal2-modal .swal2-range output{height:43px;line-height:43px;vertical-align:middle;margin:20px auto;padding:0}.swal2-modal .swal2-input{height:43px;padding:0 12px}.swal2-modal .swal2-input[type=number]{max-width:150px}.swal2-modal .swal2-file{font-size:20px}.swal2-modal .swal2-textarea{height:108px;padding:12px}.swal2-modal .swal2-select{color:#545454;font-size:inherit;padding:5px 10px;min-width:40%;max-width:100%}.swal2-modal .swal2-radio{border:0}.swal2-modal .swal2-radio label:not(:first-child){margin-left:20px}.swal2-modal .swal2-radio input,.swal2-modal .swal2-radio span{vertical-align:middle}.swal2-modal .swal2-radio input{margin:0 3px 0 0}.swal2-modal .swal2-checkbox{color:#545454}.swal2-modal .swal2-checkbox input,.swal2-modal .swal2-checkbox span{vertical-align:middle}.swal2-modal .swal2-validationerror{background-color:#f0f0f0;margin:0 -20px;overflow:hidden;padding:10px;color:gray;font-size:16px;font-weight:300;display:none}.swal2-modal .swal2-validationerror::before{content:'!';display:inline-block;width:24px;height:24px;border-radius:50%;background-color:#ea7d7d;color:#fff;line-height:24px;text-align:center;margin-right:10px}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-range input{width:100%!important}.swal2-range output{display:none}}.swal2-icon{width:80px;height:80px;border:4px solid transparent;border-radius:50%;margin:20px auto 30px;padding:0;position:relative;box-sizing:content-box;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon.swal2-error{border-color:#f27474}.swal2-icon.swal2-error .x-mark{position:relative;display:block}.swal2-icon.swal2-error .line{position:absolute;height:5px;width:47px;background-color:#f27474;display:block;top:37px;border-radius:2px}.swal2-icon.swal2-error .line.left{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:17px}.swal2-icon.swal2-error .line.right{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:16px}.swal2-icon.swal2-warning{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;color:#f8bb86;border-color:#facea8;font-size:60px;line-height:80px;text-align:center}.swal2-icon.swal2-info{font-family:'Open Sans',sans-serif;color:#3fc3ee;border-color:#9de0f6;font-size:60px;line-height:80px;text-align:center}.swal2-icon.swal2-question{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;color:#87adbd;border-color:#c9dae1;font-size:60px;line-height:80px;text-align:center}.swal2-icon.swal2-success{border-color:#a5dc86}.swal2-icon.swal2-success::after,.swal2-icon.swal2-success::before{content:'';border-radius:50%;position:absolute;width:60px;height:120px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.swal2-icon.swal2-success::before{border-radius:120px 0 0 120px;top:-7px;left:-33px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:60px 60px;transform-origin:60px 60px}.swal2-icon.swal2-success::after{border-radius:0 120px 120px 0;top:-11px;left:30px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 60px;transform-origin:0 60px}.swal2-icon.swal2-success .placeholder{width:80px;height:80px;border:4px solid rgba(165,220,134,.2);border-radius:50%;box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2}.swal2-icon.swal2-success .fix{width:7px;height:90px;background-color:#fff;position:absolute;left:28px;top:8px;z-index:1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.swal2-icon.swal2-success .line{height:5px;background-color:#a5dc86;display:block;border-radius:2px;position:absolute;z-index:2}.swal2-icon.swal2-success .line.tip{width:25px;left:14px;top:46px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.swal2-icon.swal2-success .line.long{width:47px;right:8px;top:38px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.swal2-progresssteps{font-weight:600;margin:0 0 20px;padding:0}.swal2-progresssteps li{display:inline-block;position:relative}.swal2-progresssteps .swal2-progresscircle{background:#3085d6;border-radius:2em;color:#fff;height:2em;line-height:2em;text-align:center;width:2em;z-index:20}.swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle{background:#add8e6}.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.swal2-progresssteps .swal2-progressline{background:#3085d6;height:.4em;margin:0 -1px;z-index:10}[class^=swal2]{-webkit-tap-highlight-color:transparent}@-webkit-keyframes showSweetAlert{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes showSweetAlert{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes hideSweetAlert{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}100%{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes hideSweetAlert{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}100%{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}.swal2-show{-webkit-animation:showSweetAlert .3s;animation:showSweetAlert .3s}.swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.swal2-hide{-webkit-animation:hideSweetAlert .15s forwards;animation:hideSweetAlert .15s forwards}.swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}@-webkit-keyframes animate-success-tip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@keyframes animate-success-tip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@-webkit-keyframes animate-success-long{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}100%{width:47px;right:8px;top:38px}}@keyframes animate-success-long{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}100%{width:47px;right:8px;top:38px}}@-webkit-keyframes rotatePlaceholder{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}100%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}100%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}.animate-success-tip{-webkit-animation:animate-success-tip .75s;animation:animate-success-tip .75s}.animate-success-long{-webkit-animation:animate-success-long .75s;animation:animate-success-long .75s}.swal2-success.animate::after{-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}@-webkit-keyframes animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}100%{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}100%{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.animate-error-icon{-webkit-animation:animate-error-icon .5s;animation:animate-error-icon .5s}@-webkit-keyframes animate-x-mark{0%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}50%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}80%{-webkit-transform:scale(1.15);transform:scale(1.15);margin-top:-6px}100%{-webkit-transform:scale(1);transform:scale(1);margin-top:0;opacity:1}}@keyframes animate-x-mark{0%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}50%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}80%{-webkit-transform:scale(1.15);transform:scale(1.15);margin-top:-6px}100%{-webkit-transform:scale(1);transform:scale(1);margin-top:0;opacity:1}}.animate-x-mark{-webkit-animation:animate-x-mark .5s;animation:animate-x-mark .5s}@-webkit-keyframes pulse-warning{0%{border-color:#f8d486}100%{border-color:#f8bb86}}@keyframes pulse-warning{0%{border-color:#f8d486}100%{border-color:#f8bb86}}.pulse-warning{-webkit-animation:pulse-warning .75s infinite alternate;animation:pulse-warning .75s infinite alternate}@-webkit-keyframes rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}