/*
Theme Name: OneHost (Share On Theme123.Net)
Theme URI: http://themealien.com
Author: ThemeAlien
Author URI: http://themealien.com
Description: Description
Version: 1.0.2
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onehost
Domain Path: /lang/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready
*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-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 rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-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(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -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(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.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(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.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(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.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 slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  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);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-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);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    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);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* 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;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    -ms-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    -ms-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    -ms-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    -ms-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
  visibility: visible;
  opacity: 1;
}
.nivo-lightbox-wrap {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 10%;
  right: 10%;
}
.nivo-lightbox-content {
  width: 100%;
  height: 100%;
}
.nivo-lightbox-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  text-align: center;
}
.nivo-lightbox-nav {
  display: none;
}
.nivo-lightbox-prev {
  position: absolute;
  top: 50%;
  left: 0;
}
.nivo-lightbox-next {
  position: absolute;
  top: 50%;
  right: 0;
}
.nivo-lightbox-close {
  position: absolute;
  top: 2%;
  right: 2%;
}
.nivo-lightbox-image {
  text-align: center;
}
.nivo-lightbox-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}
.nivo-lightbox-content iframe {
  width: 100%;
  height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
  max-height: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
  display: table-cell;
  vertical-align: middle;
}
/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateZ(300px);
  -moz-transform: translateZ(300px);
  -ms-transform: translateZ(300px);
  transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* Wordpress default styles
----------------------------------------------------------*/
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.wp-caption {
  background-color: transparent;
  border: 1px solid #2b2b2b;
  padding: 5px;
  max-width: 100%;
  text-align: center;
}
.wp-caption img {
  display: block;
  margin: 0;
  max-width: 100%;
  height: auto;
}
.wp-caption-text {
  font-size: 12px;
  margin: 0;
  padding: 5px 0 0;
}
.gallery-caption {
  display: block;
}
.bypostauthor {
  display: block;
}
.sticky {
  display: block;
}
/* Body
----------------------------------------------------------*/
* {
  box-sizing: border-box;
}
body {
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #1a1a1a;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  overflow-x: hidden;
}
/* Typography
----------------------------------------------------------*/
a {
  transition: 0.5s;
  color: #47a6db;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a img {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #bbbbbb;
  font-weight: 400;
  font-style: normal;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
/* Elements
----------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
input[type=text],
textarea {
  border: 1px solid #555555;
  background: #ffffff;
}
blockquote {
  font-style: italic;
  border-left: #47a6db;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px;
}
/* Wrapper
----------------------------------------------------------*/
#wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
/* Clearfix
----------------------------------------------------------*/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Tabs
----------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs .tabs-nav {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.tabs .tabs-nav li {
  float: left;
}
.tabs .tabs-nav a {
  display: block;
}
.tabs .tabs-panel {
  clear: both;
  display: none;
}
.tabs .tabs-panel.active {
  animation: fadeIn 1 1s ease;
  display: block;
}
.social-icons a {
  display: inline-block;
  background-color: #47a6db;
  color: #cccccc;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 20px;
  text-shadow: none;
  color: #111;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.social-icons a:hover {
  background-color: #111111;
  color: #ffffff;
}
.backtotop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
  background-color: #bdbdbd;
  border-radius: 50%;
  font-size: 20px;
  text-shadow: none;
  color: #888888;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.backtotop:hover {
  background-color: #ffffff;
  color: #555555;
}
.btn-primary {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.btn-primary:hover {
  background-color: #333333;
}
.btn-secondary {
  padding: 6px 12px;
  background-color: #333333;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.btn-secondary:hover {
  background-color: #47a6db;
}
/* Preloader
----------------------------------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  z-index: 9999999999;
  opacity: 1;
}
.loader {
  position: absolute;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  top: 50%;
  left: 0px;
  margin-top: -60px;
  right: 0px;
  background: url(img/page-loader.gif) no-repeat center;
}
/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
  background: #666;
  background: rgba(0, 0, 0, 0.85);
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
  background: url(img/loading.gif) no-repeat 50% 50%;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav {
  top: 10%;
  width: 8%;
  height: 80%;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.nivo-lightbox-theme-default .nivo-lightbox-prev {
  border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next {
  border-radius: 3px 0 0 3px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:before {
  content: "\f00d";
  font-family: FontAwesome;
  line-height: 1;
  font-size: 40px;
  display: block;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
  opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
  bottom: -7%;
}
.nivo-lightbox-theme-default .nivo-lightbox-title {
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  border-radius: 30px;
}
.nivo-lightbox-theme-default .nivo-lightbox-image img {
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
@media (-webkit-min-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
    background-image: url(img/loading@2x.gif);
    background-size: 32px 32px;
  }
}
.site-header {
  transition: 0.4s top ease-in;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #2b2b2b;
  background-color: rgba(34, 34, 34, 0.9);
  z-index: 999;
}
.admin-bar .site-header {
  top: 32px;
}
.page-template-one-page-php .site-header {
  top: -100px;
  z-index: -999;
}
.page-template-one-page-php .site-header.minimized {
  top: 0;
  z-index: 999;
}
.page-template-one-page-php.admin-bar .site-header.minimized {
  top: 32px;
}
#scroll-top {
  opacity: 0;
  transition: 0.4s all ease-in;
}
#scroll-top.show-scroll {
  opacity: 1;
}
.site-branding {
  float: left;
}
.site-branding .logo {
  height: 70px;
  display: table-cell;
  vertical-align: middle;
}
.site-title,
.site-description {
  display: block;
  margin: 0;
  width: 0;
  height: 0;
  text-indent: -99999px;
}
.navbar-toggle {
  color: #ffffff;
  position: relative;
  float: right;
  font-size: 30px;
  line-height: 1;
  margin: 0;
  padding: 0;
  line-height: 70px;
}
.navbar-toggle:hover {
  color: #47a6db;
}
.title-area {
  text-align: center;
  padding: 90px 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.title-area h1 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 60px 0 0 0;
}
.nav {
  margin: 0;
  padding: 0;
}
.nav ul {
  margin: 0;
  padding: 0;
}
.nav li {
  display: inline;
  float: left;
}
.nav li ul {
  opacity: 0;
  display: block;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 150px;
}
.nav li li {
  display: block;
  width: 100%;
}
.nav li li a {
  padding: 10px;
  font-weight: 400;
}
.nav li li ul {
  top: -100%;
  left: 100%;
}
.nav li li:hover > ul {
  top: 0;
}
.nav li:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav a {
  color: #ffffff;
  display: block;
  padding: 5px 10px;
}
.dropdown-menu {
  border-radius: 0;
  padding: 0;
  border-width: 0;
  background: rgba(0, 0, 0, 0.8);
  display:none;
}
.dropdown-menu > li > a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.primary-nav {
  float: right;
  display: none;
}
.primary-nav a {
  color: #ffffff;
  display: none;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  padding: 24px 20px;
}
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background-color: #47a6db;
}
.primary-nav .nav > li > a {
  padding: 25px 20px;
}
.primary-nav .nav > li > a:hover {
  background-color: #47a6db;
}
.primary-nav .nav li.menu-item-has-children a:after {
  content: '';
  display: none;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.primary-nav .nav li.menu-item-has-children li a:after {
  display: none;
}
.primary-nav .nav li ul {
  border-bottom: 1px solid #2b2b2b;
}
.primary-nav .nav li ul li {
  border-left: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  background-color: rgba(34, 34, 34, 0.9);
}
.primary-nav .nav li ul li.menu-item-has-children li {
  border-left: none;
}
.primary-nav .nav li ul li a:hover {
  background-color: #2b2b2b;
}
.primary-nav .nav li ul .current-menu-item > a,
.primary-nav .nav li ul .current_page_item > a {
  background-color: transparent;
}
.page-template-one-page .primary-nav .current-menu-item > a,
.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.page-template-one-page .primary-nav a.current {
  background-color: #47a6db;
}
.numeric-navigation {
  text-align: center;
}
.numeric-navigation *:first-child {
  border-radius: 4px 0 0 4px;
}
.numeric-navigation *:last-child {
  border-radius: 0 4px 4px 0;
}
.numeric-navigation a,
.numeric-navigation span {
  color: #888;
  padding: 6px 12px;
  margin: 0 0 0 -4px;
  border: solid 1px #2b2b2b;
  background: #27282b;
}
.numeric-navigation span {
  color: #ffffff;
  background-color: #222222;
}
.numeric-navigation a:hover,
.numeric-navigation span:hover {
  color: #47a6db;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  display: inline-block;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  font-size: 20px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  border: 1px solid #2b2b2b;
  margin-left: 10px;
}
.site-content {
  padding: 90px 0;
}
.site-main > article {
  margin: 0 0 60px 0;
}
h2.entry-title {
  font-size: 24px;
  margin: 0 0 10px;
}
.entry-header {
  position: relative;
}
.entry-header .entry-format {
  display: block;
  margin-bottom: 20px;
}
.entry-header .entry-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  border-right: 1px solid #888;
  text-align: center;
}
.entry-header .entry-date span {
  display: block;
  font-size: 36px;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
}
.entry-header .entry-date .entry-day {
  line-height: 0.7;
  margin-bottom: 5px;
}
.entry-header .entry-date .entry-month {
  font-size: 20px;
}
.sticky .entry-header .entry-date {
  border-color: #47a6db;
}
.sticky .entry-header .entry-date span {
  color: #47a6db;
}
.entry-content {
  overflow: hidden;
}
.entry-summary,
.entry-content,
.entry-header,
.comments-area {
  padding-left: 80px;
}
.entry-footer {
  margin-left: 80px;
}
.hide-singular-title .entry-summary,
.hide-singular-title .entry-content,
.hide-singular-title .comments-area {
  padding-left: 0;
}
.hide-singular-title .entry-footer {
  margin-left: 0;
}
.page .entry-summary,
.search .entry-summary,
.portfolio_project .entry-summary,
.page .entry-content,
.search .entry-content,
.portfolio_project .entry-content,
.page .entry-header,
.search .entry-header,
.portfolio_project .entry-header,
.page .comments-area,
.search .comments-area,
.portfolio_project .comments-area {
  padding-left: 0;
}
.page .entry-footer,
.search .entry-footer,
.portfolio_project .entry-footer {
  margin-left: 0;
}
.search .entry-header .entry-date {
  display: none;
}
.entry-summary table,
.entry-content table {
  text-align: left;
  width: 100%;
}
.entry-footer {
  font-size: 11px;
  padding: 10px 0;
  margin-top: 20px;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
}
.entry-footer span {
  margin-right: 25px;
}
.entry-footer i {
  margin-right: 5px;
}
.entry-footer a {
  color: #888;
}
.entry-footer a:hover {
  text-decoration: underline;
}
.entry-format img {
  display: block;
}
.entry-format iframe {
  width: 100%;
}
.entry-format blockquote,
.entry-format .link-block {
  color: #ffffff;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  position: relative;
  display: block;
  margin: 0;
  padding: 30px 30px 30px 80px;
  background-color: #27282b;
  line-height: 1.1;
}
.entry-format blockquote:before,
.entry-format .link-block:before {
  position: absolute;
  left: 30px;
  top: 33px;
  color: #ffffff;
}
.entry-format blockquote:before {
  font-family: FontAwesome;
  content: "\f10d";
}
.entry-format blockquote cite {
  font-style: italic;
  font-size: 14px;
  display: block;
  margin-top: 10px;
}
.entry-format .link-block:before {
  font-family: FontAwesome;
  content: "\f0c1";
  transition: 0.3s;
}
.entry-format .link-block:hover {
  background-color: #47a6db;
}
.entry-format .link-block:hover:before {
  color: #ffffff;
}
.page-header {
  margin: 0;
  border: none;
}
.page-header .page-title {
  padding: 0;
  margin: 0 0 60px 0;
  font-size: 36px;
}
.content-area .post-navigation {
  float: right;
}
.content-area code,
.content-area pre {
  background-color: transparent;
}
.content-area pre {
  color: #cccccc;
  border: 1px solid #2b2b2b;
}
.comments-area {
  clear: both;
}
.comments-area .comment-form {
  margin-left: -15px;
  margin-right: -15px;
}
.comments-area .logged-in-as {
  margin-left: 15px;
  margin-right: 15px;
}
.comments-area .comment-reply-title {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.comments-area .comment-notes,
.comments-area .form-allowed-tags {
  display: none;
}
.comments-area input,
.comments-area textarea {
  border: 1px solid #555555;
  width: 100%;
  margin-bottom: 20px;
  padding: 5px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 400;
  border-radius: 4px;
  font-size: 14px;
}
.comments-area .submit {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  width: auto;
  margin-right: 15px;
  margin-left: 15px;
}
.comments-area .submit:hover {
  background-color: #333333;
}
.comments-area .submit:hover {
  background-color: #333333;
}
.comments-area .comments-title {
  padding-bottom: 25px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}
.comments-area .comment-list .comment {
  float: left;
  clear: both;
  width: 100%;
}
.comments-area .comment-list .comment article {
  padding: 15px 0;
}
.comments-area .comment-list .comment .children {
  float: left;
  margin-left: 95px;
  padding: 0;
  list-style: none;
}
.comments-area .comment-list .comment:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list .comment-author {
  padding-right: 15px;
  float: left;
}
.comments-area .comment-list .comment-author .avatar {
  width: 80px;
  height: 80px;
}
.comments-area .comment-list .comment-meta {
  padding-left: 95px;
  padding-top: 5px;
}
.comments-area .comment-list .comment-meta .author-name {
  color: #47a6db;
  padding-right: 15px;
  font-style: normal;
  display: block;
  font-size: 15px;
}
.comments-area .comment-list .comment-meta .author-name a:hover {
  color: #ffffff;
}
.comments-area .comment-list .comment-meta .comment-reply-link {
  float: right;
}
.comments-area .comment-list .comment-meta .comment-edit-link {
  float: right;
  margin-right: 20px;
}
.comments-area .comment-list .comment-meta .author-posted {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 11px;
  color: #999999;
}
.comments-area .comment-list .comment-meta .author-posted:hover {
  color: #47a6db;
}
.comments-area .numeric-navigation {
  clear: both;
  padding-top: 30px;
}
.comments-area .comment-respond {
  margin-top: 50px;
}
.comments-area .comment-content {
  word-break: break-all;
}
.comments-area .comment-awaiting-moderation {
  display: block;
}
.post-password-form input[type=password] {
  background-color: transparent;
  border: 1px solid #2b2b2b;
  padding: 4px 5px;
  color: #ffffff;
}
.post-password-form input[type=submit] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.post-password-form input[type=submit]:hover {
  background-color: #333333;
}
.sidebar-content .content-area {
  float: right;
}
.widget {
  margin-bottom: 60px;
}
.widget .widget-title {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
}
.widget table,
.widget select {
  width: 100%;
}
.widget select {
  border: 1px solid #2b2b2b;
  height: 30px;
  background-color: transparent;
}
.widget select option {
  color: #555555;
}
.widget table {
  text-align: left;
  width: 100%;
}
.widget table caption {
  border: 1px solid #2b2b2b;
  border-bottom-width: 0;
  text-align: center;
}
.widget table tr {
  border: 1px solid #2b2b2b;
  border-bottom-width: 0;
  padding: 3px 0;
}
.widget table tr td,
.widget table tr th {
  padding: 0 5px;
  border-bottom: 1px solid #2b2b2b;
  border-left: 1px solid #2b2b2b;
}
.widget_calendar {
  line-height: 26px;
}
.widget_categories li,
.widget_recent_comments li,
.widget_rss li,
.widget_pages li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_meta li {
  border-bottom: solid 1px #2b2b2b;
  padding: 8px 0;
}
.widget_categories .children,
.widget_recent_comments .children,
.widget_rss .children,
.widget_pages .children,
.widget_archive .children,
.widget_nav_menu .children,
.widget_recent_entries .children,
.widget_meta .children {
  border-top: 1px solid #2b2b2b;
  margin-top: 10px;
}
.widget_categories .children li a,
.widget_recent_comments .children li a,
.widget_rss .children li a,
.widget_pages .children li a,
.widget_archive .children li a,
.widget_nav_menu .children li a,
.widget_recent_entries .children li a,
.widget_meta .children li a {
  padding-left: 10px;
}
.widget_categories .children li .children li a,
.widget_recent_comments .children li .children li a,
.widget_rss .children li .children li a,
.widget_pages .children li .children li a,
.widget_archive .children li .children li a,
.widget_nav_menu .children li .children li a,
.widget_recent_entries .children li .children li a,
.widget_meta .children li .children li a {
  padding-left: 20px;
}
.widget_categories .children li .children li:last-child,
.widget_recent_comments .children li .children li:last-child,
.widget_rss .children li .children li:last-child,
.widget_pages .children li .children li:last-child,
.widget_archive .children li .children li:last-child,
.widget_nav_menu .children li .children li:last-child,
.widget_recent_entries .children li .children li:last-child,
.widget_meta .children li .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_categories .children li .children .children li a,
.widget_recent_comments .children li .children .children li a,
.widget_rss .children li .children .children li a,
.widget_pages .children li .children .children li a,
.widget_archive .children li .children .children li a,
.widget_nav_menu .children li .children .children li a,
.widget_recent_entries .children li .children .children li a,
.widget_meta .children li .children .children li a {
  padding-left: 30px;
}
.widget_categories .children li .children .children li:last-child,
.widget_recent_comments .children li .children .children li:last-child,
.widget_rss .children li .children .children li:last-child,
.widget_pages .children li .children .children li:last-child,
.widget_archive .children li .children .children li:last-child,
.widget_nav_menu .children li .children .children li:last-child,
.widget_recent_entries .children li .children .children li:last-child,
.widget_meta .children li .children .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_categories .children li:last-child,
.widget_recent_comments .children li:last-child,
.widget_rss .children li:last-child,
.widget_pages .children li:last-child,
.widget_archive .children li:last-child,
.widget_nav_menu .children li:last-child,
.widget_recent_entries .children li:last-child,
.widget_meta .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_tag_cloud a {
  padding: 5px 8px;
  margin: 0 3px 6px 0;
  display: inline-block;
  font-size: 11px !important;
  color: #888;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #2b2b2b;
}
.widget_tag_cloud a:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.tabs-widget .tabs-nav li {
  margin-right: 5px;
  border-bottom: none;
  padding-bottom: 0;
}
.tabs-widget .tabs-nav li:before {
  display: none;
}
.tabs-widget .tabs-nav li a {
  background: #222222;
  border: 1px solid #2b2b2b;
  color: #646464;
  padding: 8px 16px;
}
.tabs-widget .tabs-nav li a.active {
  color: #ffffff;
  background: #27282b;
}
.tabs-widget .tabs-panel {
  margin-top: -1px;
  border: 1px solid #2b2b2b;
  background: #27282b;
  padding: 15px 20px 20px 20px;
}
.tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #2b2b2b;
  padding: 10px 0;
  overflow: hidden;
}
.tabs-widget .tab-comments .comment-summary {
  font-style: italic;
  margin-bottom: 5px;
}
.recent-post,
.popular-post {
  border-bottom: solid 1px #2b2b2b;
  padding: 10px 0;
  overflow: hidden;
}
.recent-post:last-child,
.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post .widget-thumb,
.popular-post .widget-thumb {
  text-align: center;
  width: 100%;
  display: inline-block;
}
.recent-post .post-text,
.popular-post .post-text {
  margin-top: 10px;
}
.recent-post .post-text .post-title,
.popular-post .post-text .post-title {
  display: block;
}
.recent-post .post-text .post-date,
.popular-post .post-text .post-date {
  font-size: 12px;
}
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  font-size: 12px;
  padding: 0 13px;
}
.recent-post .post-text .read-more,
.popular-post .post-text .read-more {
  float: right;
  font-size: 12px;
  line-height: 2;
}
.recent-post.thumb-left .widget-thumb,
.popular-post.thumb-left .widget-thumb {
  float: left;
  width: auto;
  margin-right: 10px;
}
.recent-post.thumb-left .post-text,
.popular-post.thumb-left .post-text {
  margin-top: 0;
}
.search-form {
  position: relative;
}
.search-form:before {
  content: '\f002';
  font-family: FontAwesome;
  color: #47a6db;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
}
.search-form .screen-reader-text {
  display: none;
}
.search-form label {
  width: 100%;
}
.search-form .search-field {
  border: 1px solid #2b2b2b;
  padding: 5px;
  color: #ffffff;
  width: 100%;
  background-color: transparent;
  font-weight: 400;
}
.search-form ::-webkit-input-placeholder {
  color: #cccccc;
}
.search-form :-moz-placeholder {
  color: #cccccc;
}
.search-form ::-moz-placeholder {
  color: #cccccc;
}
.search-form :-ms-input-placeholder {
  color: #cccccc;
}
.search-form .search-submit {
  width: 40px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-indent: -9999px;
}
.site-footer {
  display: none;
  background: #222222;
  color: #cccccc;
  padding: 80px 0 80px 0;
}
.site-footer .site-info {
  text-align: center;
}
.site-footer .site-info .social-icons {
  margin-bottom: 40px;
}
/*
 * OwlCarousel
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-controls {
  text-align: center;
}
/* Styling Next and Prev buttons */
.owl-controls .owl-buttons div {
  margin-top: -35px;
  height: 50px;
  width: 50px;
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 999;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  font-size: 26px;
  background-color: #47a6db;
}
.owl-controls .owl-buttons div:hover {
  background-color: #333333;
}
.owl-controls .owl-prev {
  left: -60px;
}
.owl-controls .owl-next {
  right: -60px;
}
/* Styling Pagination*/
.owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 7px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
  background-color: #ffffff;
}
/* If PaginationNumbers is true */
.owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Ville Ristimäki (@villeristi)
 *
 */
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  position: relative;
  zoom: 1;
}
.flexslider .slides {
  zoom: 1;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a .flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging {
  bottom: -60px;
}
.flex-control-paging li a {
  border-radius: 50%;
  width: 11px;
  height: 11px;
  display: block;
  background-color: #ffffff;
  cursor: pointer;
  text-indent: -9999px;
  border: 1px solid #ccc;
}
.flex-control-paging li a.flex-active {
  background-color: #47a6db;
  border-color: #47a6db;
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
.flexslider {
  margin: 0;
  overflow: hidden;
}
.flexslider .slides > li {
  display: block;
  float: left;
}
.flexslider .slides img {
  max-width: 100%;
  height: auto;
}
.flex-viewport {
  position: relative;
  overflow: hidden;
}
.flex-direction-nav li a {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0.7;
  cursor: pointer;
  color: #ffffff;
  font-style: 300;
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 45px;
  font-size: 20px;
}
.flex-direction-nav li .flex-prev {
  text-align: center;
}
.flex-direction-nav li .flex-next {
  text-align: center;
}
.flexslider:hover .flex-direction-nav li .flex-prev {
  left: 0;
  color: #ffffff;
}
.flexslider:hover .flex-direction-nav li .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav li .flex-next {
  opacity: 0.7;
  right: 0;
  color: #ffffff;
}
.flexslider:hover .flex-direction-nav li .flex-next:hover {
  opacity: 1;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 720px) {
  .flex-direction-nav {
    display: none;
  }
  .flex-control-nav {
    bottom: 5px;
  }
}
.portfolio-filter {
  margin-top: 0;
  margin-bottom: 50px;
}
.portfolio-filter a {
  font-size: 12px;
  color: #ffffff;
  position: relative;
  margin: 0;
  padding: 7px 25px;
  transition: 0.5s;
}
.portfolio-filter a:last-child:after,
.portfolio-filter a.active:after,
.portfolio-filter a:hover:after {
  background-color: transparent;
}
.portfolio-filter a.active,
.portfolio-filter a:hover {
  background-color: #47a6db;
  color: #ffffff;
  border-color: transparent;
}
.portfolio-showcase {
  padding: 0;
}
.portfolio-showcase .portfolio_project .portfolio-detail:before {
  display: block;
  position: absolute;
  text-align: center;
  background-color: #47a6db;
  opacity: 0.9;
  overflow: hidden;
  transition: all 0.5s;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
}
.portfolio-showcase .portfolio_project .portfolio-detail h3 {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-transform: none;
}
.portfolio-showcase .portfolio_project .portfolio-detail .portfolio-cats a {
  text-transform: none;
  font-size: 13px;
}
.portfolio-showcase .portfolio_project .portfolio-detail .portfolio-cats a:hover {
  color: #ffffff;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail,
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image {
  transition: all 0.5s;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: inherit;
  width: 40px;
  height: 40px;
  opacity: 0;
  text-align: center;
  text-indent: 0;
  color: #ffffff;
  font-size: 0;
  background: rgba(0, 0, 0, 0.4);
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail:before,
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image:before {
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 40px;
  background-color: transparent;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image {
  margin-left: -40px;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image:before {
  content: "\f002";
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail {
  margin-left: 10px;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail:before {
  content: "\f0c1";
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover:before {
  height: 100%;
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover h3 {
  bottom: inherit;
  top: 35%;
  margin-top: 40px;
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover .portfolio-cats {
  bottom: inherit;
  top: 35%;
  margin-top: 65px;
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover .view-portfolio-detail,
.portfolio-showcase .portfolio_project .portfolio-detail:hover .view-portfolio-image {
  top: 30%;
  opacity: 1;
}
.portfolio-slider {
  margin-top: 50px;
}
.portfolio-slider .flex-control-paging {
  position: inherit;
  bottom: 0;
  margin-top: 40px;
}
.portfolio-slider .flex-control-paging li a {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.portfolio-slider .flex-control-paging li a.flex-active {
  background-color: #ffffff;
  border-color: #ffffff;
}
.portfolio-slider .flex-direction-nav {
  display: none;
}
.portfolio-description {
  margin-top: 50px;
}
.portfolio-description .portfolio-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.portfolio-description .portfolio-item {
  border-bottom: 1px solid #2b2b2b;
  padding: 13px 0;
}
.portfolio-description .portfolio-item:last-child {
  border: none;
}
.portfolio-description .portfolio-item span {
  text-transform: uppercase;
  font-weight: 400;
  width: 80px;
  display: inline-block;
}
.portfolio-description .portfolio-item a {
  color: #bbbbbb;
}
.portfolio-footer {
  border-bottom: none;
  overflow: hidden;
  padding: 20px 0;
}
.wpb_call_to_action {
  background-color: #27282b;
  border-color: #2b2b2b;
  padding: 25px;
}
.wpb_call_to_action .wpb_call_text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  color: #ffffff;
}
.wpb_call_to_action .wpb_button {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 18px;
  transition: 0.5s;
}
.wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #47a6db;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_section {
  margin-bottom: 5px;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
  background-color: #222222;
  border: 1px solid #2b2b2b;
  margin: 0;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header .ui-accordion-header-icon {
  display: none;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
  color: #ffffff;
  font-size: 16px;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_content {
  border-top: none;
  font-size: 13.5px;
  background-color: #27282b;
  color: #cccccc;
}
.wpb_tabs .wpb_wrapper {
  background-color: transparent !important;
}
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li {
  background-color: #222222;
  border: 1px solid #2b2b2b;
  margin-right: 5px;
}
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li a {
  padding: 8px 16px 8px 16px;
  color: #646464;
  font-weight: bold;
}
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-state-active,
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-tabs-active {
  border-bottom: 1px solid #27282b;
  background-color: #27282b;
}
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-state-active a,
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-tabs-active a {
  color: #ffffff;
}
.wpb_tabs .wpb_wrapper .wpb_tab {
  margin-top: -1px;
  border: 1px solid #2b2b2b;
  background-color: #27282b !important;
  color: #cccccc;
}
.wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element {
  font-size: 14px;
}
.wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  display: inline-block;
  font-size: 48px;
  float: left;
  margin: 10px 15px 15px 0;
  color: #ffffff;
  padding: 0 10px;
  background-color: #47a6db;
}
.testimonial-list .testi-item {
  margin-bottom: 40px;
  position: relative;
}
.testimonial-list .testi-star {
  display: none;
}
.testimonial-list.testimonial-medium {
  color: #cccccc;
  margin: 0 -15px;
}
.testimonial-list.testimonial-medium .testi-item {
  padding-left: 15px;
  padding-right: 15px;
}
.testimonial-list.testimonial-medium .testi-desc {
  padding: 20px 30px 30px 30px;
  background-color: #27282b;
  border-radius: 8px;
  line-height: 1.6em;
  font-weight: 500;
  font-style: italic;
  min-height: 160px;
}
.testimonial-list.testimonial-medium .testi-author {
  margin: -10px 0 0 20px;
}
.testimonial-list.testimonial-medium .testi-author .testi-pic {
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}
.testimonial-list.testimonial-medium .testi-author .testi-company {
  padding-top: 20px;
}
.testimonial-list.testimonial-medium .owl-controls .owl-buttons div {
  margin-top: -40px;
}
.testimonial-list.testimonial-short {
  text-align: center;
}
.testimonial-list.testimonial-short .testi-desc {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 32px;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.2em;
}
.testimonial-list.testimonial-short .testi-author .testi-pic {
  display: none;
}
.testimonial-list.testimonial-short .testi-author .testi-company {
  font-size: 14px;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 10px;
}
.testimonial-list.testimonial-short .testi-author .testi-company strong {
  font-weight: 400;
}
.testimonial-list.testimonial-short .testi-author .testi-company span {
  display: none;
}
.testimonial-list.testimonial-full .testi-item {
  margin-bottom: 60px;
  min-height: 120px;
}
.testimonial-list.testimonial-full .testi-author .testi-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.testimonial-list.testimonial-full .testi-author .testi-company {
  padding-left: 140px;
  font-size: 14px;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  color: #ffffff;
  margin-top: 10px;
}
.testimonial-list.testimonial-full .testi-author .testi-company span {
  display: none;
}
.testimonial-list.testimonial-full.row .testi-author .testi-pic {
  left: 15px;
}
.testimonial-list.testimonial-full .testi-star {
  padding-left: 140px;
  margin-bottom: 10px;
  color: #47a6db;
  display: block;
}
.testimonial-list.testimonial-full .testi-star i {
  margin-right: 10px;
}
.testimonial-list.testimonial-full .testi-desc {
  padding-left: 140px;
  font-style: italic;
}
.ta-team-shortcode .team_member {
  width: 100%;
}
.ta-team-shortcode .team_member:hover .team-member-image .team-member-socials {
  top: -100px;
}
.ta-team-shortcode .team_member .team-member-image {
  margin-bottom: 10px;
}
.ta-team-shortcode .team_member .team-member-image .team-member-socials {
  top: -100px;
}
.ta-team-shortcode .team_member .team-member-image .team-member-socials a {
  background-color: #111111;
  border-color: #111111;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  margin: 0;
}
.ta-team-shortcode .team_member .team-member-image .team-member-socials a:hover {
  border-color: transparent;
}
.ta-team-shortcode .team_member .team-member-image:hover:before {
  background-color: #47a6db;
}
.ta-team-shortcode .team_member .team-member-image:hover .team-member-socials {
  top: 35%;
}
.ta-team-shortcode .team_member .team-member-name {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
.ta-team-shortcode .team_member .team-member-job {
  font-style: italic;
  color: #bbbbbb;
}
.ta-team-shortcode .team_member .team-member-bio {
  margin-top: 10px;
}
.ta-team-shortcode .team_member .owl-controls .owl-buttons div {
  top: 35%;
}
.wpb_alert .messagebox_text {
  background: transparent;
  padding-left: 0;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.vc_btn_md {
  padding: 6px 12px;
}
.btn-primary {
  background-color: #47a6db;
  color: #ffffff !important;
  border-color: #47a6db;
}
.btn-primary:hover {
  background-color: #333333;
}
.vc_progress_bar .vc_single_bar {
  min-height: 20px;
}
.table-bordered,
.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 #2b2b2b;
}
table {
  max-width: 100%;
  background-color: transparent;
}
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  color: #ffffff;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
  margin-top: 0;
}
.section-title h2:after {
  content: "";
  display: block;
  margin: 20px auto 40px;
  width: 100px;
  height: 2px;
  background-color: #47a6db;
}
.section-title.s-border h2 {
  border: solid 2px #ffffff;
  display: inline-block;
  padding: 5px 10px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0px;
}
.section-title.s-border h2:after {
  display: none;
}
.image-box {
  margin-bottom: 15px;
}
.image-box:last-child {
  margin-bottom: 0;
}
.image-box img {
  margin-bottom: 10px;
}
.image-box .image-box-title {
  line-height: normal;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}
.image-box a.image-box-title:hover {
  color: #47a6db;
}
.image-box.image-top {
  text-align: center;
}
.image-box.image-left {
  overflow: hidden;
}
.image-box.image-left img {
  float: left;
  width: 80px;
}
.image-box.image-left .image-box-title {
  font-weight: 500;
}
.image-box.image-left .image-box-title,
.image-box.image-left .image-box-content {
  padding-left: 100px;
  display: block;
}
.image-box.image-right {
  overflow: hidden;
}
.image-box.image-right img {
  float: right;
  width: 80px;
}
.image-box.image-right .image-box-title {
  font-weight: 500;
}
.image-box.image-right .image-box-title,
.image-box.image-right .image-box-content {
  padding-right: 100px;
  display: block;
  text-align: right;
}
.icon-box {
  margin-bottom: 30px;
}
.icon-box.bg-color {
  padding: 30px;
}
.icon-box:last-child {
  margin-bottom: 0;
}
.icon-box .b-icon {
  color: #47a6db;
  font-size: 26px;
}
.icon-box .box-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 5px;
  display: block;
}
.icon-box.icon-left .b-icon {
  float: left;
  margin-top: 5px;
}
.icon-box.icon-left .box-title,
.icon-box.icon-left .box-content {
  padding-left: 48px;
}
.icon-box.icon-right .b-icon {
  float: right;
  margin-top: 5px;
}
.icon-box.icon-right .box-title,
.icon-box.icon-right .box-content {
  padding-right: 48px;
  text-align: right;
}
.icon-box.icon-top {
  text-align: center;
}
.icon-box.icon-top .b-icon {
  display: inline-block;
  margin-bottom: 20px;
}
.icon-box.border-circle .b-icon {
  border-radius: 50%;
  border: 2px solid #47a6db;
  padding: 16px;
  text-align: center;
  width: 60px;
  height: 60px;
}
.icon-box.border-circle.icon-left .box-title,
.icon-box.border-circle.icon-left .box-content {
  padding-left: 75px;
}
.icon-box.border-circle.icon-right .box-title,
.icon-box.border-circle.icon-right .box-content {
  padding-right: 75px;
}
.icon-box:hover {
  background-color: transparent !important;
}
.icon-box:hover .b-icon {
  color: #ffffff;
  border-color: #ffffff;
}
.icon-box:hover a.box-title {
  color: #47a6db;
}
.icon-box.icon-box-address {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  border: 1px solid #555555;
  padding: 10.5px;
  margin-bottom: 20px;
}
.icon-box.icon-box-address .box-title {
  font-size: 18px;
  margin-bottom: 0;
  padding-left: 40px;
  font-weight: 400;
  color: #cccccc;
}
.icon-box.icon-box-address .b-icon {
  margin-top: 0;
}
.pricing-item {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.pricing-item .pricing-title {
  background-color: #2b2b2b;
  padding: 10px 0;
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}
.pricing-item .pricing-info {
  background-color: #222222;
  list-style: none;
  padding: 10px 0;
}
.pricing-item .pricing-info .p-price {
  font-size: 48px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}
.pricing-item .pricing-info .p-duration {
  display: block;
  font-weight: 600;
  color: #47a6db;
}
.pricing-item .pricing-desc {
  background-color: #222222;
}
.pricing-item .pricing-desc ul {
  margin: 0;
  padding: 0;
}
.pricing-item .pricing-desc ul li {
  list-style: none;
  background-color: #2b2b2b;
  padding: 13px 0;
}
.pricing-item .pricing-desc ul li.deco {
  background-color: #252525;
}
.pricing-item .pricing-desc .pricing-blink {
  margin: 15px 0;
  display: inline-block;
}
.pricing-item.pricing-feature {
  margin-top: -10px;
}
.images-owl-carousel .owl-controls .owl-buttons div {
  width: 30px;
  height: 30px;
  font-size: 16px;
  border-radius: 50%;
  margin-top: -15px;
  line-height: 30px;
}
.images-owl-carousel .owl-item {
  text-align: center;
}
.images-owl-carousel .owl-controls .owl-prev {
  left: -30px;
}
.images-owl-carousel .owl-controls .owl-next {
  right: -30px;
}
.wpcf7-form .wpcf7-response-output {
  color: #398f14;
  margin: 10px 0 0;
  border: none;
  padding: 0;
}
.wpcf7-form .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-validation-errors {
  color: red;
  clear: both;
}
.wpcf7-form p {
  margin: 0;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333333;
}
.wpcf7-form .wpcf7-form-control-wrap {
  padding: 0;
  text-indent: 0;
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  border: 1px solid #555555;
  width: 100%;
  margin-bottom: 20px;
  padding: 5px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 400;
  border-radius: 4px;
  font-size: 15px;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
  height: 98px;
  line-height: 1;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border: 1px solid red;
}
.wpcf7-form .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #cccccc;
}
.wpcf7-form .wpcf7-form-control-wrap :-moz-placeholder {
  color: #cccccc;
}
.wpcf7-form .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #cccccc;
}
.wpcf7-form .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #cccccc;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 20%;
  float: left;
}
section.vc_row.vc_row-fluid {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
section.vc_row.vc_row-fluid .vc_row-fluid {
  margin-left: -15px;
  margin-right: -15px;
}
section.vc_row .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
section.vc_row .container-fluid > .vc_col-sm-12 {
  padding-left: 0;
  padding-right: 0;
}
section.vc_row.overlay-enable {
  position: relative;
}
section.vc_row.video-bg-enable {
  position: relative;
}
section.vc_row.video-bg-enable .ytvideo-bg {
  position: absolute;
  z-index: -2;
}
section.vc_row.video-bg-enable .overlay {
  position: fixed;
}
section.vc_row .toggle-sound {
  position: absolute;
  bottom: 50px;
  right: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 40px;
  z-index: 99;
  cursor: pointer;
}
section.vc_row .particles {
  width: 100%;
  height: 100%;
  background: inhert !important;
  overflow: hidden;
  position: relative;
}
section.vc_row .particles .pg-canvas {
  position: absolute;
  left: 0;
  right: 0px;
  top: 0px;
  overflow: hidden;
}
section.vc_row .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
section.vc_row .full-slider-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
section.vc_row.full-video-bg .ytvideo-bg {
  position: fixed;
  z-index: -3;
}
.parallax {
  z-index: 1;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.section-home {
  height: 100%;
  overflow: hidden;
}
.section-plans {
  background-color: #2079ab;
}
.section-testimonials-short {
  background-color: #116493;
}
[class^="widget_cc_whmcs_"].widget,
[class*=" widget_cc_whmcs_"].widget {
  list-style: none;
}
[class^="widget_cc_whmcs_"].widget:first-child,
[class*=" widget_cc_whmcs_"].widget:first-child {
  margin-top: 15px;
}
[class^="widget_cc_whmcs_"].widget .widgettitle,
[class*=" widget_cc_whmcs_"].widget .widgettitle {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 0;
}
[class^="widget_cc_whmcs_"].widget p,
[class*=" widget_cc_whmcs_"].widget p {
  margin: 20px 0 0;
}
[class^="widget_cc_whmcs_"].widget ul li,
[class*=" widget_cc_whmcs_"].widget ul li {
  border-bottom: solid 1px #2b2b2b;
  padding: 8px 0;
}
[class^="widget_cc_whmcs_"].widget ul li .absmiddle,
[class*=" widget_cc_whmcs_"].widget ul li .absmiddle {
  margin-right: 10px;
}
[class^="widget_cc_whmcs_"].widget form,
[class*=" widget_cc_whmcs_"].widget form {
  margin-top: 40px;
}
[class^="widget_cc_whmcs_"].widget input[type="text"],
[class*=" widget_cc_whmcs_"].widget input[type="text"],
[class^="widget_cc_whmcs_"].widget input[type="password"],
[class*=" widget_cc_whmcs_"].widget input[type="password"] {
  width: 100%;
  border: solid 1px #2b2b2b;
  background-color: transparent;
  padding: 5px 10px;
}
[class^="widget_cc_whmcs_"].widget input[type="submit"],
[class*=" widget_cc_whmcs_"].widget input[type="submit"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
[class^="widget_cc_whmcs_"].widget input[type="submit"]:hover,
[class*=" widget_cc_whmcs_"].widget input[type="submit"]:hover {
  background-color: #333333;
}
[class^="widget_cc_whmcs_"].widget select[name="searchin"],
[class*=" widget_cc_whmcs_"].widget select[name="searchin"] {
  margin: 20px 0;
}
#top_menu {
  background-color: #27282b;
  border: 1px solid #2b2b2b;
}
.entry-content #bridge {
  padding-right: 30px;
  color: #cccccc;
}
.entry-content #bridge p.breadcrumb {
  background-color: #27282b;
  border: 1px solid #2b2b2b;
}
.entry-content #bridge a,
.entry-content #bridge a:visited {
  color: #47a6db;
  text-decoration: none;
}
.entry-content #bridge table td {
  padding-bottom: 20px;
  background-color: transparent;
  border-color: transparent;
}
.entry-content #bridge table td a img {
  max-width: inherit;
  margin-right: 20px;
}
.entry-content #bridge table td .fieldarea {
  padding-right: 15px;
  text-align: right;
}
.entry-content #bridge table.frame {
  border-color: transparent;
}
.entry-content #bridge table.frame table td.fieldarea {
  color: #cccccc;
}
.entry-content #bridge table.frame table td,
.entry-content #bridge table.frame table td.fieldarea {
  background-color: transparent;
  border-color: transparent;
}
.entry-content #bridge #order-modern .product,
.entry-content #bridge #domainresults {
  background-color: transparent;
  border-color: transparent;
}
.entry-content #bridge #order-modern #categories {
  background-color: #27282b;
  border: 1px solid #2b2b2b;
}
.entry-content #bridge #order-modern #categories a {
  color: #47a6db;
}
.entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.entry-content #bridge table,
.entry-content #bridge table.cart,
.entry-content #bridge table.data,
.entry-content #bridge table.configtable {
  background-color: transparent !important;
}
.entry-content #bridge table caption,
.entry-content #bridge table.cart caption,
.entry-content #bridge table.data caption,
.entry-content #bridge table.configtable caption {
  border: 1px solid #2b2b2b;
  border-bottom-width: 0;
  text-align: center;
}
.entry-content #bridge table tr,
.entry-content #bridge table.cart tr,
.entry-content #bridge table.data tr,
.entry-content #bridge table.configtable tr {
  border: 1px solid #2b2b2b !important;
  padding: 3px 0;
}
.entry-content #bridge table tr td,
.entry-content #bridge table.cart tr td,
.entry-content #bridge table.data tr td,
.entry-content #bridge table.configtable tr td,
.entry-content #bridge table tr th,
.entry-content #bridge table.cart tr th,
.entry-content #bridge table.data tr th,
.entry-content #bridge table.configtable tr th {
  background-color: transparent;
  padding: 5px 5px;
  border: none !important;
  border-bottom: 1px solid #2b2b2b !important;
  border-left: 1px solid #2b2b2b !important;
  color: #cccccc;
}
.entry-content #bridge table tr.total td,
.entry-content #bridge table.cart tr.total td,
.entry-content #bridge table.data tr.total td,
.entry-content #bridge table.configtable tr.total td {
  color: #47a6db;
  background-color: transparent;
}
.entry-content #bridge table tr.total:hover td,
.entry-content #bridge table.cart tr.total:hover td,
.entry-content #bridge table.data tr.total:hover td,
.entry-content #bridge table.configtable tr.total:hover td {
  background-color: transparent;
}
.entry-content #bridge table tr.subtotal td,
.entry-content #bridge table.cart tr.subtotal td,
.entry-content #bridge table.data tr.subtotal td,
.entry-content #bridge table.configtable tr.subtotal td {
  background-color: transparent;
  border-color: #2b2b2b;
}
.entry-content #bridge table tr.subtotal:hover td,
.entry-content #bridge table.cart tr.subtotal:hover td,
.entry-content #bridge table.data tr.subtotal:hover td,
.entry-content #bridge table.configtable tr.subtotal:hover td {
  background-color: transparent;
}
.entry-content #bridge table tr:hover td,
.entry-content #bridge table.cart tr:hover td,
.entry-content #bridge table.data tr:hover td,
.entry-content #bridge table.configtable tr:hover td {
  background-color: transparent;
}
.entry-content #bridge table.frame tbody > tr {
  border: none !important;
}
.entry-content #bridge table.frame tbody > tr > td,
.entry-content #bridge table.frame tbody > tr > tr {
  border: none !important;
}
.entry-content #bridge .clientareatableactive {
  background-color: transparent;
}
.entry-content #bridge #order-modern .cartbuttons {
  margin: 0;
  padding: 10px 50px 0 0;
  text-align: right;
  width: 100%;
}
.entry-content #bridge #order-modern .cartwarningbox {
  background-color: #fcf8e3;
  border: 1px solid #faebcc;
  color: #8a6d3b;
}
.entry-content #bridge #order-modern #domainconfig {
  border: solid 1px #2b2b2b;
  margin-bottom: 15px;
}
.entry-content #bridge input[type="text"],
.entry-content #bridge input[type="password"],
.entry-content #bridge textarea {
  border: solid 1px #2b2b2b;
  background-color: transparent;
  padding: 5px 10px;
}
.entry-content #bridge input[type="submit"],
.entry-content #bridge input[type="button"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.entry-content #bridge input[type="submit"]:hover,
.entry-content #bridge input[type="button"]:hover {
  background-color: #333333;
}
.entry-content #bridge input[type="reset"] {
  padding: 6px 12px;
  background-color: #333333;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.entry-content #bridge input[type="reset"]:hover {
  background-color: #47a6db;
}
.entry-content #bridge .errorbox {
  color: #a94442;
  background-color: #f2dede;
  padding: 10px 20px;
  margin: 0 0 10px;
  text-align: left;
  border: none;
  width: 100%;
}
.entry-content #bridge select {
  background-color: transparent;
  border-color: #2b2b2b;
  height: 30px;
  line-height: 30px;
  color: #cccccc;
}
.entry-content #bridge select option {
  color: #555555;
}
.entry-content #bridge #languagefrm select {
  margin-left: 10px;
}
.entry-content #bridge #pwstrengthneg {
  background-color: transparent !important;
  border-color: #2b2b2b !important;
}
.entry-content #bridge #pwstrengthneg,
.entry-content #bridge #pwstrengthpos {
  border-color: #2b2b2b !important;
}
.entry-content #bridge #order-modern table.cart tr.recurring td {
  background-color: transparent;
  border-color: #2b2b2b;
}
.entry-content #bridge #order-modern .signuptype {
  border-color: #2b2b2b;
  color: #555555;
}
.entry-content #bridge #order-modern .signuptype.active {
  background-color: #27282b;
  color: #555555;
}
.entry-content #bridge #order-modern .signupfields {
  border-color: #2b2b2b;
}
.entry-content #bridge #order-modern #signupfrm,
.entry-content #bridge #order-modern #domaincontactfields {
  border-color: transparent;
}
.entry-content #bridge #invoicetoptables tr,
.entry-content #bridge #invoiceitemstable tr {
  background-color: transparent !important;
}
@media only screen and (max-width: 959px) {
  .widgets-area {
    clear: both;
    padding-top: 60px;
  }
  .site-header {
    padding: 10px 0 0;
    display: none;
  }
  .site-header .site-branding {
    display: none;
    float: none;
    overflow: hidden;
  }
  .site-header .site-branding .logo {
    display: none;
    float: left;
    line-height: 70px;
  }
  .site-header .nav-menu-container {
    float: none;
    padding: 0;
  }
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .social-icons {
    display: none;
  }
  .primary-nav {
    display: none;
    float: none;
    padding-top: 10px;
    margin-top: 20px;
    max-height: 340px;
    overflow-y: scroll;
  }
  .primary-nav .nav {
    float: none;
  }
  .primary-nav .nav li {
    padding: 0;
    width: 100%;
    clear: both;
    border-bottom: 1px solid #2b2b2b;
  }
  .primary-nav .nav li.menu-item-has-children {
    border: none;
  }
  .primary-nav .nav li.menu-item-has-children > a {
    border-bottom: 1px solid #2b2b2b;
  }
  .primary-nav .nav li:before {
    background: none;
  }
  .primary-nav .nav li a:hover {
    background-color: #333333;
  }
  .primary-nav .nav li > a {
    padding: 20px 10px;
  }
  .primary-nav .nav li ul {
    display: block;
    opacity: 1;
    position: relative;
    visibility: inherit;
    border: none;
  }
  .primary-nav .nav li ul li {
    float: left;
    background: none;
    padding-bottom: 0;
    padding-left: 10px;
    border-left: none;
    border-right: none;
  }
  .primary-nav .nav li ul li.menu-item-has-children > a {
    border-bottom: 1px solid #2b2b2b;
  }
  .primary-nav .nav li ul li a {
    font-weight: 400;
  }
  .primary-nav .nav li ul li ul {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
  .navbar-nav {
    float: none;
  }
  .entry-header .entry-date {
    display: none;
  }
  .entry-summary,
  .entry-content,
  .entry-header,
  .comments-area {
    padding-left: 0;
  }
  .content-area .comments-area {
    padding-top: 30px;
  }
  .content-area .comments-area .comment-list {
    float: none;
  }
  .content-area .comments-area .comment-list .children {
    margin: 0;
    padding: 20px 0 0;
  }
  .content-area .comments-area .comment-list .children .comment-body {
    padding-bottom: 20px;
  }
  .content-area .comments-area .comment-list .comment-reply-link,
  .content-area .comments-area .comment-list .comment-edit-link {
    padding-left: 0;
  }
  .entry-footer {
    margin-left: 0;
  }
  .image-box {
    margin-top: 30px;
  }
  .icon-box.bg-color {
    padding: 0;
    background-color: transparent !important;
  }
  .col-xs-5ths,
  .col-sm-5ths,
  .col-md-5ths,
  .col-lg-5ths {
    width: 100%;
  }
  .pricing-item {
    margin-top: 30px;
  }
  .pricing-item.pricing-feature {
    margin-top: 30px;
  }
  .images-owl-carousel .owl-controls .owl-prev {
    left: 0;
  }
  .images-owl-carousel .owl-controls .owl-next {
    right: 0;
  }
  .icon-box {
    margin-bottom: 30px !important;
  }
  .icon-box-address {
    margin-top: 30px;
  }
  .owl-controls .owl-buttons {
    display: none;
  }
  .portfolio-showcase .portfolio_project,
  .portfolio-showcase .portfolio-sizer {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .portfolio-showcase .portfolio_project,
  .portfolio-showcase .portfolio-sizer {
    width: 100%;
  }
  table h1 {
    font-size: 28px;
  }
  table h2 {
    font-size: 22px;
  }
  table h3 {
    font-size: 16px;
  }
  table h4 {
    font-size: 14px;
  }
  .entry-content #bridge #order-modern .cartbuttons input[type="button"] {
    margin-bottom: 10px;
  }
}
.light-version {
  background-color: #ffffff;
  color: #757575;
}
.light-version h1,
.light-version h2,
.light-version h3,
.light-version h4,
.light-version h5,
.light-version h6 {
  color: #555;
}
.light-version .title-area h1 {
  color: #ffffff;
}
.light-version .wpb_call_to_action {
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  border-color: #dddddd;
}
.light-version .wpb_call_to_action .wpb_call_text {
  color: #555555;
}
.light-version .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #47a6db;
}
.light-version .oh_separator.vc_separator .vc_sep_holder .vc_sep_line {
  border-color: #dddddd !important;
}
.light-version .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.light-version .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
  color: #555555;
}
.light-version .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_content {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-top: none;
  color: #555555;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li {
  background-color: #f5f5f5;
  border: 1px solid #dddddd;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li a {
  color: #646464;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-state-active,
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-tabs-active {
  border-bottom: 1px solid #ffffff;
  background-color: #ffffff;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-state-active a,
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-tabs-active a {
  color: #555555;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tab {
  border: 1px solid #dddddd;
  background-color: #ffffff !important;
  color: #555555;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  color: #ffffff;
  background-color: #47a6db;
}
.light-version .entry-format blockquote,
.light-version .entry-format .link-block {
  color: #888;
  background-color: #eee;
}
.light-version .entry-format blockquote:before,
.light-version .entry-format .link-block:before {
  color: #888;
}
.light-version .entry-format .link-block:hover {
  background-color: #47a6db;
  color: #ffffff;
}
.light-version .entry-format .link-block:hover:before {
  color: #ffffff;
}
.light-version .pricing-item {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}
.light-version .pricing-item .pricing-title {
  background: #eee;
  color: #888;
}
.light-version .pricing-item .pricing-info {
  background-color: #ffffff;
}
.light-version .pricing-item .pricing-info .p-price {
  color: #47a6db;
}
.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.light-version .pricing-item .pricing-desc {
  background-color: #eee;
  color: #888;
}
.light-version .pricing-item .pricing-desc ul li {
  background-color: #eee;
}
.light-version .pricing-item .pricing-desc ul li.deco {
  background-color: #f5f5f5;
}
.light-version .section-plans .section-title.s-border h2 {
  border-color: #ffffff;
  color: #ffffff;
}
.light-version .section-plans .image-box .image-box-title {
  color: #ffffff;
}
.light-version .section-plans .image-box.image-left .image-box-content {
  color: #cccccc;
}
.light-version .testimonial-list.testimonial-medium {
  color: #555555;
}
.light-version .testimonial-list.testimonial-medium .testi-desc {
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.light-version .testimonial-list.testimonial-short .testi-desc {
  color: #555555;
}
.light-version .testimonial-list.testimonial-short .testi-author .testi-company {
  color: #555555;
}
.light-version .testimonial-list.testimonial-full .testi-author .testi-company {
  color: #555555;
}
.light-version .testimonial-list.testimonial-full .testi-star {
  color: #47a6db;
}
.light-version .section-testimonials-short .testimonial-list.testimonial-short .testi-desc {
  color: #ffffff;
}
.light-version .section-testimonials-short .testimonial-list.testimonial-short .testi-author .testi-company {
  color: #ffffff;
}
.light-version .section-testimonials-short .owl-controls .owl-page.active span,
.light-version .section-testimonials-short .owl-controls.clickable .owl-page:hover span {
  background-color: #ffffff;
}
.light-version .table-bordered,
.light-version .table-bordered > thead > tr > th,
.light-version .table-bordered > tbody > tr > th,
.light-version .table-bordered > tfoot > tr > th,
.light-version .table-bordered > thead > tr > td,
.light-version .table-bordered > tbody > tr > td,
.light-version .table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.light-version .section-title.s-border h2 {
  border: 2px solid #555555;
}
.light-version .image-box .image-box-title {
  color: #555555;
}
.light-version .icon-box .box-title {
  color: #555555;
}
.light-version .icon-box:hover .b-icon {
  color: #555555;
  border-color: #555555;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  border: 1px solid #2b2b2b;
  color: #555555;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
  height: 98px;
  line-height: 1;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border: 1px solid red;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #cccccc;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap :-moz-placeholder {
  color: #cccccc;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #cccccc;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #cccccc;
}
.light-version .icon-box-address {
  border: 1px solid #2b2b2b;
}
.light-version .owl-controls .owl-page span {
  border: 1px solid #dddddd;
}
.light-version .owl-controls .owl-page.active span,
.light-version .owl-controls.clickable .owl-page:hover span {
  background-color: #555555;
}
.light-version .numeric-navigation a,
.light-version .numeric-navigation span {
  border: solid 1px #dddddd;
  background: #ffffff;
  margin: 0 0 0 -5px;
}
.light-version .numeric-navigation span {
  color: #555555;
  background-color: #ffffff;
}
.light-version .numeric-navigation span:hover {
  border-color: #dddddd;
}
.light-version .numeric-navigation a:hover,
.light-version .numeric-navigation span.current {
  background-color: #47a6db;
  color: #ffffff;
}
.light-version .post-navigation .nav-previous a,
.light-version .post-navigation .nav-next a {
  border: 1px solid #dddddd;
}
.light-version .widget .widget-title {
  color: #555555;
}
.light-version .widget select {
  border: 1px solid #dddddd;
  background-color: transparent;
}
.light-version .widget select option {
  color: #555555;
}
.light-version .widget_categories li,
.light-version .widget_recent_comments li,
.light-version .widget_rss li,
.light-version .widget_pages li,
.light-version .widget_archive li,
.light-version .widget_nav_menu li,
.light-version .widget_recent_entries li,
.light-version .widget_meta li {
  border-bottom: solid 1px #dddddd;
}
.light-version .widget_categories .children,
.light-version .widget_recent_comments .children,
.light-version .widget_rss .children,
.light-version .widget_pages .children,
.light-version .widget_archive .children,
.light-version .widget_nav_menu .children,
.light-version .widget_recent_entries .children,
.light-version .widget_meta .children {
  border-top: 1px solid #dddddd;
}
.light-version .widget_tag_cloud a {
  color: #888;
  border: 1px solid #dddddd;
}
.light-version .widget_tag_cloud a:hover {
  color: #555555;
  border: 1px solid #555555;
}
.light-version .tabs-widget .tabs-nav li a {
  background: #eee;
  border: 1px solid #dddddd;
  color: #646464;
}
.light-version .tabs-widget .tabs-nav li a.active {
  color: #555555;
  background: #ffffff;
}
.light-version .tabs-widget .tabs-panel {
  border: 1px solid #dddddd;
  background: #ffffff;
}
.light-version .tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #dddddd;
}
.light-version .recent-post,
.light-version .popular-post {
  border-bottom: solid 1px #dddddd;
}
.light-version .recent-post:last-child,
.light-version .popular-post:last-child {
  border-bottom: none;
}
.light-version .recent-post .post-text .post-title:hover,
.light-version .popular-post .post-text .post-title:hover {
  color: #555555;
}
.light-version .search-form .search-field {
  border: 1px solid #dddddd;
  color: #555555;
}
.light-version .footer-sidebars .widget .widget-title {
  color: #ffffff;
}
.light-version .footer-sidebars .widget select {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget select option {
  color: #555555;
}
.light-version .footer-sidebars table caption {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars table tr {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars table tr td,
.light-version .footer-sidebars table tr th {
  border-bottom: 1px solid #2b2b2b;
  border-left: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget_categories li,
.light-version .footer-sidebars .widget_recent_comments li,
.light-version .footer-sidebars .widget_rss li,
.light-version .footer-sidebars .widget_pages li,
.light-version .footer-sidebars .widget_archive li,
.light-version .footer-sidebars .widget_nav_menu li,
.light-version .footer-sidebars .widget_recent_entries li,
.light-version .footer-sidebars .widget_meta li {
  border-bottom: solid 1px #2b2b2b;
}
.light-version .footer-sidebars .widget_categories .children,
.light-version .footer-sidebars .widget_recent_comments .children,
.light-version .footer-sidebars .widget_rss .children,
.light-version .footer-sidebars .widget_pages .children,
.light-version .footer-sidebars .widget_archive .children,
.light-version .footer-sidebars .widget_nav_menu .children,
.light-version .footer-sidebars .widget_recent_entries .children,
.light-version .footer-sidebars .widget_meta .children {
  border-top: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget_tag_cloud a {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget_tag_cloud a:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.light-version .footer-sidebars .tabs-widget .tabs-nav li a {
  background: #222222;
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .tabs-widget .tabs-nav li a.active {
  color: #ffffff;
  background: #27282b;
}
.light-version .footer-sidebars .tabs-widget .tabs-panel {
  border: 1px solid #2b2b2b;
  background: #27282b;
}
.light-version .footer-sidebars .tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #2b2b2b;
}
.light-version .footer-sidebars .recent-post,
.light-version .footer-sidebars .popular-post {
  border-bottom: solid 1px #2b2b2b;
}
.light-version .footer-sidebars .recent-post .post-text .post-title:hover,
.light-version .footer-sidebars .popular-post .post-text .post-title:hover {
  color: #ffffff;
}
.light-version .footer-sidebars .search-form .search-field {
  border: 1px solid #2b2b2b;
  color: #ffffff;
}
.light-version .entry-header .entry-date span {
  color: #555555;
}
.light-version .sticky .entry-header .entry-date {
  border-color: #47a6db;
}
.light-version .sticky .entry-header .entry-date span {
  color: #47a6db;
}
.light-version .entry-footer {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.light-version .content-area pre {
  color: #555555;
  border: 1px solid #dddddd;
}
.light-version .comments-area .comment-reply-title {
  color: #555555;
}
.light-version .comments-area input,
.light-version .comments-area textarea {
  border: 1px solid #dddddd;
  color: #555555;
}
.light-version .comments-area .submit {
  color: #ffffff;
}
.light-version .comments-area .comments-title {
  color: #555555;
}
.light-version .comments-area .comment-list .comment-meta .author-name a:hover {
  color: #555555;
}
.light-version .post-password-form input[type=password] {
  color: #555555;
  border: 1px solid #dddddd;
}
.light-version .wp-caption {
  border: 1px solid #dddddd;
}
.light-version .portfolio-filter a {
  color: #555555;
}
.light-version .portfolio-filter a.active,
.light-version .portfolio-filter a:hover {
  color: #ffffff;
}
.light-version .portfolio-slider .flex-control-paging li a {
  border: 1px solid #555555;
}
.light-version .portfolio-slider .flex-control-paging li a.flex-active {
  background-color: #555555;
  border-color: #555555;
}
.light-version .portfolio-description .portfolio-item {
  border-bottom: 1px solid #dddddd;
}
.light-version .portfolio-description .portfolio-item a {
  color: #555555;
}
.light-version .portfolio-footer {
  border-bottom: none;
}
.light-version [class*="widget_cc_whmcs_"].widget .widgettitle,
.light-version [class^=widget_cc_whmcs_].widget .widgettitle {
  color: #555555;
}
.light-version [class*="widget_cc_whmcs_"].widget ul li,
.light-version [class^=widget_cc_whmcs_].widget ul li {
  border-bottom: solid 1px #dddddd;
}
.light-version [class*="widget_cc_whmcs_"].widget input[type="text"],
.light-version [class^=widget_cc_whmcs_].widget input[type="text"],
.light-version [class*="widget_cc_whmcs_"].widget input[type="password"],
.light-version [class^=widget_cc_whmcs_].widget input[type="password"] {
  border: solid 1px #dddddd;
}
.light-version [class*="widget_cc_whmcs_"].widget input[type="submit"],
.light-version [class^=widget_cc_whmcs_].widget input[type="submit"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.light-version [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.light-version [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333333;
}
.light-version #top_menu {
  background-color: #555555;
  border: 1px solid #dddddd;
}
.light-version .entry-content #bridge {
  color: #555555;
}
.light-version .entry-content #bridge .breadcrumb {
  background-color: #eee;
  border: 1px solid #dddddd;
}
.light-version .entry-content #bridge #order-modern #categories {
  background-color: #eee;
  border: 1px solid #dddddd;
}
.light-version .entry-content #bridge #order-modern #categories a {
  color: #47a6db;
}
.light-version .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.light-version .entry-content #bridge table caption,
.light-version .entry-content #bridge table.cart caption,
.light-version .entry-content #bridge table.data caption {
  border: 1px solid #dddddd !important;
}
.light-version .entry-content #bridge table tr,
.light-version .entry-content #bridge table.cart tr,
.light-version .entry-content #bridge table.data tr {
  border: 1px solid #dddddd !important;
}
.light-version .entry-content #bridge table tr td,
.light-version .entry-content #bridge table.cart tr td,
.light-version .entry-content #bridge table.data tr td,
.light-version .entry-content #bridge table tr th,
.light-version .entry-content #bridge table.cart tr th,
.light-version .entry-content #bridge table.data tr th {
  border-bottom: 1px solid #dddddd !important;
  border-left: 1px solid #dddddd !important;
  color: #757575;
}
.light-version .entry-content #bridge table tr.total td,
.light-version .entry-content #bridge table.cart tr.total td,
.light-version .entry-content #bridge table.data tr.total td {
  color: #47a6db;
  background-color: transparent;
}
.light-version .entry-content #bridge table tr.subtotal td,
.light-version .entry-content #bridge table.cart tr.subtotal td,
.light-version .entry-content #bridge table.data tr.subtotal td {
  background-color: transparent;
}
.light-version .entry-content #bridge table.frame table td.fieldarea {
  color: #757575;
}
.light-version .entry-content #bridge #order-modern #domainconfig {
  border: solid 1px #dddddd;
}
.light-version .entry-content #bridge input[type="text"],
.light-version .entry-content #bridge input[type="password"],
.light-version .entry-content #bridge textarea {
  border: solid 1px #dddddd;
}
.light-version .entry-content #bridge input[type="submit"],
.light-version .entry-content #bridge input[type="button"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.light-version .entry-content #bridge input[type="submit"]:hover,
.light-version .entry-content #bridge input[type="button"]:hover {
  background-color: #333333;
}
.light-version .entry-content #bridge .errorbox {
  color: #b94a48;
}
.light-version .entry-content #bridge select {
  border-color: #dddddd;
  color: #555555;
}
.light-version .entry-content #bridge #pwstrengthneg {
  border-color: #dddddd !important;
}
.light-version .entry-content #bridge #pwstrengthpos {
  border-color: #dddddd !important;
}
.light-version .entry-content #bridge #order-modern .signuptype {
  border-color: #dddddd;
}
.light-version .entry-content #bridge #order-modern .signuptype.active {
  background-color: #eee;
}
.light-version .entry-content #bridge #order-modern .signupfields {
  border-color: #dddddd;
}
/**
 * Color Scheme mixin
 */
.blue a {
  color: #428bca;
}
.blue a:hover {
  color: #333;
}
.blue blockquote {
  border-left: #428bca;
}
.blue .btn-secondary {
  background-color: #333;
}
.blue .btn-secondary:hover {
  background-color: #428bca;
}
.blue .social-icons a {
  background-color: #428bca;
  color: #111;
}
.blue .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.blue .primary-nav a {
  color: #fff;
}
.blue .backtotop {
  color: #888;
}
.blue .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #428bca;
}
.blue .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.blue .testimonial-list.testimonial-full .testi-star {
  color: #428bca;
}
.blue .ta-team-shortcode .team-member-image:hover:before {
  background-color: #428bca;
}
.blue .section-title h2:after {
  background-color: #428bca;
}
.blue .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #428bca;
}
.blue .image-box a.image-box-title:hover {
  color: #428bca;
}
.blue .btn-primary {
  background-color: #428bca;
}
.blue .btn-primary:hover {
  background-color: #333;
}
.blue .comments-area .submit {
  background-color: #428bca;
}
.blue .comments-area .submit:hover {
  background-color: #333;
}
.blue .entry-footer a,
.blue .recent-post .post-text .read-more,
.blue .popular-post .post-text .read-more,
.blue .comments-area .comment-list .comment-meta .comment-reply-link,
.blue .comments-area .comment-list .comment-meta .comment-edit-link,
.blue .numeric-navigation a,
.blue .numeric-navigation span {
  color: #888;
}
.blue .entry-footer a:hover,
.blue .recent-post .post-text .read-more:hover,
.blue .popular-post .post-text .read-more:hover,
.blue .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.blue .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.blue .numeric-navigation a:hover,
.blue .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.blue.light-version .numeric-navigation a:hover,
.blue.light-version .numeric-navigation span.current {
  background-color: #428bca;
  color: #ffffff;
}
.blue .entry-format .link-block:hover,
.blue.light-version .entry-format .link-block:hover {
  background-color: #428bca;
}
.blue .widget_tag_cloud a {
  color: #888;
}
.blue .icon-box .b-icon {
  color: #428bca;
}
.blue .icon-box.border-circle .b-icon {
  border: 2px solid #428bca;
}
.blue .icon-box:hover a.box-title {
  color: #428bca;
}
.blue .icon-box:hover .b-icon {
  color: #428bca;
  border-color: #428bca;
}
.blue .pricing-item .pricing-info .p-duration {
  color: #428bca;
}
.blue.light-version .pricing-item .pricing-info .p-price {
  color: #428bca;
}
.blue.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.blue .navbar-toggle:hover {
  color: #428bca;
}
.blue .primary-nav .current-menu-item > a,
.blue .primary-nav .current_page_item > a {
  background-color: #428bca;
}
.blue .primary-nav .nav > li > a:hover,
.blue .primary-nav .nav > li > a:focus {
  background-color: #428bca;
}
.blue.page-template-one-page .primary-nav .current-menu-item > a,
.blue.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.blue.page-template-one-page .primary-nav a.current {
  background-color: #428bca;
}
.blue .numeric-navigation span:hover {
  border-color: #428bca;
}
.blue .numeric-navigation a:hover {
  color: #428bca;
}
.blue .owl-controls .owl-buttons div {
  background-color: #428bca;
}
.blue .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.blue .sticky .entry-header .entry-date {
  border-color: #428bca;
}
.blue .sticky .entry-header .entry-date span {
  color: #428bca;
}
.blue .wpcf7-form-control.wpcf7-submit {
  background-color: #428bca;
}
.blue .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.blue .post-password-form input[type=submit] {
  background-color: #428bca;
}
.blue .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.blue .comments-area .comment-list .comment-meta .author-name {
  color: #428bca;
}
.blue .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #428bca;
}
.blue .search-form:before {
  color: #428bca;
}
.blue .tp-caption .id-color {
  color: #428bca;
}
.blue .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.blue .tp-caption.onehost-button-blue a,
.blue .onehost-button-blue a:hover {
  background-color: #428bca;
}
.blue .section-plans {
  background-color: #428bca;
}
.blue .section-testimonials-short {
  background-color: #2b669a;
}
.blue .portfolio-filter a {
  color: #ffffff;
}
.blue .portfolio-filter a.active,
.blue .portfolio-filter a:hover {
  background-color: #428bca;
}
.blue .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #428bca;
}
.blue [class*="widget_cc_whmcs_"].widget input[type="submit"],
.blue [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #428bca;
}
.blue [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.blue [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.blue .entry-content #bridge #order-modern #categories a {
  color: #428bca;
}
.blue .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.blue .entry-content #bridge a {
  color: #428bca !important;
}
.blue .entry-content #bridge table.cart tr.total td,
.blue .entry-content #bridge table.data tr.total td {
  color: #428bca;
}
.blue .entry-content #bridge input[type="submit"],
.blue .entry-content #bridge input[type="button"] {
  background-color: #428bca;
}
.blue .entry-content #bridge input[type="submit"]:hover,
.blue .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.blue .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.blue .entry-content #bridge input[type="reset"]:hover {
  background-color: #428bca;
}
.green a {
  color: #88c136;
}
.green a:hover {
  color: #333;
}
.green blockquote {
  border-left: #88c136;
}
.green .btn-secondary {
  background-color: #333;
}
.green .btn-secondary:hover {
  background-color: #88c136;
}
.green .social-icons a {
  background-color: #88c136;
  color: #111;
}
.green .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.green .primary-nav a {
  color: #fff;
}
.green .backtotop {
  color: #888;
}
.green .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #88c136;
}
.green .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.green .testimonial-list.testimonial-full .testi-star {
  color: #88c136;
}
.green .ta-team-shortcode .team-member-image:hover:before {
  background-color: #88c136;
}
.green .section-title h2:after {
  background-color: #88c136;
}
.green .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #88c136;
}
.green .image-box a.image-box-title:hover {
  color: #88c136;
}
.green .btn-primary {
  background-color: #88c136;
}
.green .btn-primary:hover {
  background-color: #333;
}
.green .comments-area .submit {
  background-color: #88c136;
}
.green .comments-area .submit:hover {
  background-color: #333;
}
.green .entry-footer a,
.green .recent-post .post-text .read-more,
.green .popular-post .post-text .read-more,
.green .comments-area .comment-list .comment-meta .comment-reply-link,
.green .comments-area .comment-list .comment-meta .comment-edit-link,
.green .numeric-navigation a,
.green .numeric-navigation span {
  color: #888;
}
.green .entry-footer a:hover,
.green .recent-post .post-text .read-more:hover,
.green .popular-post .post-text .read-more:hover,
.green .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.green .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.green .numeric-navigation a:hover,
.green .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.green.light-version .numeric-navigation a:hover,
.green.light-version .numeric-navigation span.current {
  background-color: #88c136;
  color: #ffffff;
}
.green .entry-format .link-block:hover,
.green.light-version .entry-format .link-block:hover {
  background-color: #88c136;
}
.green .widget_tag_cloud a {
  color: #888;
}
.green .icon-box .b-icon {
  color: #88c136;
}
.green .icon-box.border-circle .b-icon {
  border: 2px solid #88c136;
}
.green .icon-box:hover a.box-title {
  color: #88c136;
}
.green .icon-box:hover .b-icon {
  color: #88c136;
  border-color: #88c136;
}
.green .pricing-item .pricing-info .p-duration {
  color: #88c136;
}
.green.light-version .pricing-item .pricing-info .p-price {
  color: #88c136;
}
.green.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.green .navbar-toggle:hover {
  color: #88c136;
}
.green .primary-nav .current-menu-item > a,
.green .primary-nav .current_page_item > a {
  background-color: #88c136;
}
.green .primary-nav .nav > li > a:hover,
.green .primary-nav .nav > li > a:focus {
  background-color: #88c136;
}
.green.page-template-one-page .primary-nav .current-menu-item > a,
.green.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.green.page-template-one-page .primary-nav a.current {
  background-color: #88c136;
}
.green .numeric-navigation span:hover {
  border-color: #88c136;
}
.green .numeric-navigation a:hover {
  color: #88c136;
}
.green .owl-controls .owl-buttons div {
  background-color: #88c136;
}
.green .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.green .sticky .entry-header .entry-date {
  border-color: #88c136;
}
.green .sticky .entry-header .entry-date span {
  color: #88c136;
}
.green .wpcf7-form-control.wpcf7-submit {
  background-color: #88c136;
}
.green .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.green .post-password-form input[type=submit] {
  background-color: #88c136;
}
.green .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.green .comments-area .comment-list .comment-meta .author-name {
  color: #88c136;
}
.green .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #88c136;
}
.green .search-form:before {
  color: #88c136;
}
.green .tp-caption .id-color {
  color: #88c136;
}
.green .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.green .tp-caption.onehost-button-blue a,
.green .onehost-button-blue a:hover {
  background-color: #88c136;
}
.green .section-plans {
  background-color: #88c136;
}
.green .section-testimonials-short {
  background-color: #618926;
}
.green .portfolio-filter a {
  color: #ffffff;
}
.green .portfolio-filter a.active,
.green .portfolio-filter a:hover {
  background-color: #88c136;
}
.green .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #88c136;
}
.green [class*="widget_cc_whmcs_"].widget input[type="submit"],
.green [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #88c136;
}
.green [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.green [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.green .entry-content #bridge #order-modern #categories a {
  color: #88c136;
}
.green .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.green .entry-content #bridge a {
  color: #88c136 !important;
}
.green .entry-content #bridge table.cart tr.total td,
.green .entry-content #bridge table.data tr.total td {
  color: #88c136;
}
.green .entry-content #bridge input[type="submit"],
.green .entry-content #bridge input[type="button"] {
  background-color: #88c136;
}
.green .entry-content #bridge input[type="submit"]:hover,
.green .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.green .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.green .entry-content #bridge input[type="reset"]:hover {
  background-color: #88c136;
}
.red a {
  color: #e54242;
}
.red a:hover {
  color: #333;
}
.red blockquote {
  border-left: #e54242;
}
.red .btn-secondary {
  background-color: #333;
}
.red .btn-secondary:hover {
  background-color: #e54242;
}
.red .social-icons a {
  background-color: #e54242;
  color: #111;
}
.red .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.red .primary-nav a {
  color: #fff;
}
.red .backtotop {
  color: #888;
}
.red .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #e54242;
}
.red .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.red .testimonial-list.testimonial-full .testi-star {
  color: #e54242;
}
.red .ta-team-shortcode .team-member-image:hover:before {
  background-color: #e54242;
}
.red .section-title h2:after {
  background-color: #e54242;
}
.red .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #e54242;
}
.red .image-box a.image-box-title:hover {
  color: #e54242;
}
.red .btn-primary {
  background-color: #e54242;
}
.red .btn-primary:hover {
  background-color: #333;
}
.red .comments-area .submit {
  background-color: #e54242;
}
.red .comments-area .submit:hover {
  background-color: #333;
}
.red .entry-footer a,
.red .recent-post .post-text .read-more,
.red .popular-post .post-text .read-more,
.red .comments-area .comment-list .comment-meta .comment-reply-link,
.red .comments-area .comment-list .comment-meta .comment-edit-link,
.red .numeric-navigation a,
.red .numeric-navigation span {
  color: #888;
}
.red .entry-footer a:hover,
.red .recent-post .post-text .read-more:hover,
.red .popular-post .post-text .read-more:hover,
.red .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.red .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.red .numeric-navigation a:hover,
.red .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.red.light-version .numeric-navigation a:hover,
.red.light-version .numeric-navigation span.current {
  background-color: #e54242;
  color: #ffffff;
}
.red .entry-format .link-block:hover,
.red.light-version .entry-format .link-block:hover {
  background-color: #e54242;
}
.red .widget_tag_cloud a {
  color: #888;
}
.red .icon-box .b-icon {
  color: #e54242;
}
.red .icon-box.border-circle .b-icon {
  border: 2px solid #e54242;
}
.red .icon-box:hover a.box-title {
  color: #e54242;
}
.red .icon-box:hover .b-icon {
  color: #e54242;
  border-color: #e54242;
}
.red .pricing-item .pricing-info .p-duration {
  color: #e54242;
}
.red.light-version .pricing-item .pricing-info .p-price {
  color: #e54242;
}
.red.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.red .navbar-toggle:hover {
  color: #e54242;
}
.red .primary-nav .current-menu-item > a,
.red .primary-nav .current_page_item > a {
  background-color: #e54242;
}
.red .primary-nav .nav > li > a:hover,
.red .primary-nav .nav > li > a:focus {
  background-color: #e54242;
}
.red.page-template-one-page .primary-nav .current-menu-item > a,
.red.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.red.page-template-one-page .primary-nav a.current {
  background-color: #e54242;
}
.red .numeric-navigation span:hover {
  border-color: #e54242;
}
.red .numeric-navigation a:hover {
  color: #e54242;
}
.red .owl-controls .owl-buttons div {
  background-color: #e54242;
}
.red .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.red .sticky .entry-header .entry-date {
  border-color: #e54242;
}
.red .sticky .entry-header .entry-date span {
  color: #e54242;
}
.red .wpcf7-form-control.wpcf7-submit {
  background-color: #e54242;
}
.red .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.red .post-password-form input[type=submit] {
  background-color: #e54242;
}
.red .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.red .comments-area .comment-list .comment-meta .author-name {
  color: #e54242;
}
.red .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #e54242;
}
.red .search-form:before {
  color: #e54242;
}
.red .tp-caption .id-color {
  color: #e54242;
}
.red .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.red .tp-caption.onehost-button-blue a,
.red .onehost-button-blue a:hover {
  background-color: #e54242;
}
.red .section-plans {
  background-color: #e54242;
}
.red .section-testimonials-short {
  background-color: #c51b1b;
}
.red .portfolio-filter a {
  color: #ffffff;
}
.red .portfolio-filter a.active,
.red .portfolio-filter a:hover {
  background-color: #e54242;
}
.red .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #e54242;
}
.red [class*="widget_cc_whmcs_"].widget input[type="submit"],
.red [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #e54242;
}
.red [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.red [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.red .entry-content #bridge #order-modern #categories a {
  color: #e54242;
}
.red .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.red .entry-content #bridge a {
  color: #e54242 !important;
}
.red .entry-content #bridge table.cart tr.total td,
.red .entry-content #bridge table.data tr.total td {
  color: #e54242;
}
.red .entry-content #bridge input[type="submit"],
.red .entry-content #bridge input[type="button"] {
  background-color: #e54242;
}
.red .entry-content #bridge input[type="submit"]:hover,
.red .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.red .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.red .entry-content #bridge input[type="reset"]:hover {
  background-color: #e54242;
}
.orange a {
  color: #db5e47;
}
.orange a:hover {
  color: #333;
}
.orange blockquote {
  border-left: #db5e47;
}
.orange .btn-secondary {
  background-color: #333;
}
.orange .btn-secondary:hover {
  background-color: #db5e47;
}
.orange .social-icons a {
  background-color: #db5e47;
  color: #111;
}
.orange .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.orange .primary-nav a {
  color: #fff;
}
.orange .backtotop {
  color: #888;
}
.orange .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #db5e47;
}
.orange .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.orange .testimonial-list.testimonial-full .testi-star {
  color: #db5e47;
}
.orange .ta-team-shortcode .team-member-image:hover:before {
  background-color: #db5e47;
}
.orange .section-title h2:after {
  background-color: #db5e47;
}
.orange .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #db5e47;
}
.orange .image-box a.image-box-title:hover {
  color: #db5e47;
}
.orange .btn-primary {
  background-color: #db5e47;
}
.orange .btn-primary:hover {
  background-color: #333;
}
.orange .comments-area .submit {
  background-color: #db5e47;
}
.orange .comments-area .submit:hover {
  background-color: #333;
}
.orange .entry-footer a,
.orange .recent-post .post-text .read-more,
.orange .popular-post .post-text .read-more,
.orange .comments-area .comment-list .comment-meta .comment-reply-link,
.orange .comments-area .comment-list .comment-meta .comment-edit-link,
.orange .numeric-navigation a,
.orange .numeric-navigation span {
  color: #888;
}
.orange .entry-footer a:hover,
.orange .recent-post .post-text .read-more:hover,
.orange .popular-post .post-text .read-more:hover,
.orange .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.orange .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.orange .numeric-navigation a:hover,
.orange .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.orange.light-version .numeric-navigation a:hover,
.orange.light-version .numeric-navigation span.current {
  background-color: #db5e47;
  color: #ffffff;
}
.orange .entry-format .link-block:hover,
.orange.light-version .entry-format .link-block:hover {
  background-color: #db5e47;
}
.orange .widget_tag_cloud a {
  color: #888;
}
.orange .icon-box .b-icon {
  color: #db5e47;
}
.orange .icon-box.border-circle .b-icon {
  border: 2px solid #db5e47;
}
.orange .icon-box:hover a.box-title {
  color: #db5e47;
}
.orange .icon-box:hover .b-icon {
  color: #db5e47;
  border-color: #db5e47;
}
.orange .pricing-item .pricing-info .p-duration {
  color: #db5e47;
}
.orange.light-version .pricing-item .pricing-info .p-price {
  color: #db5e47;
}
.orange.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.orange .navbar-toggle:hover {
  color: #db5e47;
}
.orange .primary-nav .current-menu-item > a,
.orange .primary-nav .current_page_item > a {
  background-color: #db5e47;
}
.orange .primary-nav .nav > li > a:hover,
.orange .primary-nav .nav > li > a:focus {
  background-color: #db5e47;
}
.orange.page-template-one-page .primary-nav .current-menu-item > a,
.orange.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.orange.page-template-one-page .primary-nav a.current {
  background-color: #db5e47;
}
.orange .numeric-navigation span:hover {
  border-color: #db5e47;
}
.orange .numeric-navigation a:hover {
  color: #db5e47;
}
.orange .owl-controls .owl-buttons div {
  background-color: #db5e47;
}
.orange .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.orange .sticky .entry-header .entry-date {
  border-color: #db5e47;
}
.orange .sticky .entry-header .entry-date span {
  color: #db5e47;
}
.orange .wpcf7-form-control.wpcf7-submit {
  background-color: #db5e47;
}
.orange .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.orange .post-password-form input[type=submit] {
  background-color: #db5e47;
}
.orange .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.orange .comments-area .comment-list .comment-meta .author-name {
  color: #db5e47;
}
.orange .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #db5e47;
}
.orange .search-form:before {
  color: #db5e47;
}
.orange .tp-caption .id-color {
  color: #db5e47;
}
.orange .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.orange .tp-caption.onehost-button-blue a,
.orange .onehost-button-blue a:hover {
  background-color: #db5e47;
}
.orange .section-plans {
  background-color: #db5e47;
}
.orange .section-testimonials-short {
  background-color: #b73b24;
}
.orange .portfolio-filter a {
  color: #ffffff;
}
.orange .portfolio-filter a.active,
.orange .portfolio-filter a:hover {
  background-color: #db5e47;
}
.orange .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #db5e47;
}
.orange [class*="widget_cc_whmcs_"].widget input[type="submit"],
.orange [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #db5e47;
}
.orange [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.orange [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.orange .entry-content #bridge #order-modern #categories a {
  color: #db5e47;
}
.orange .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.orange .entry-content #bridge a {
  color: #db5e47 !important;
}
.orange .entry-content #bridge table.cart tr.total td,
.orange .entry-content #bridge table.data tr.total td {
  color: #db5e47;
}
.orange .entry-content #bridge input[type="submit"],
.orange .entry-content #bridge input[type="button"] {
  background-color: #db5e47;
}
.orange .entry-content #bridge input[type="submit"]:hover,
.orange .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.orange .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.orange .entry-content #bridge input[type="reset"]:hover {
  background-color: #db5e47;
}
.purple a {
  color: #c74a73;
}
.purple a:hover {
  color: #333;
}
.purple blockquote {
  border-left: #c74a73;
}
.purple .btn-secondary {
  background-color: #333;
}
.purple .btn-secondary:hover {
  background-color: #c74a73;
}
.purple .social-icons a {
  background-color: #c74a73;
  color: #111;
}
.purple .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.purple .primary-nav a {
  color: #fff;
}
.purple .backtotop {
  color: #888;
}
.purple .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #c74a73;
}
.purple .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.purple .testimonial-list.testimonial-full .testi-star {
  color: #c74a73;
}
.purple .ta-team-shortcode .team-member-image:hover:before {
  background-color: #c74a73;
}
.purple .section-title h2:after {
  background-color: #c74a73;
}
.purple .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #c74a73;
}
.purple .image-box a.image-box-title:hover {
  color: #c74a73;
}
.purple .btn-primary {
  background-color: #c74a73;
}
.purple .btn-primary:hover {
  background-color: #333;
}
.purple .comments-area .submit {
  background-color: #c74a73;
}
.purple .comments-area .submit:hover {
  background-color: #333;
}
.purple .entry-footer a,
.purple .recent-post .post-text .read-more,
.purple .popular-post .post-text .read-more,
.purple .comments-area .comment-list .comment-meta .comment-reply-link,
.purple .comments-area .comment-list .comment-meta .comment-edit-link,
.purple .numeric-navigation a,
.purple .numeric-navigation span {
  color: #888;
}
.purple .entry-footer a:hover,
.purple .recent-post .post-text .read-more:hover,
.purple .popular-post .post-text .read-more:hover,
.purple .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.purple .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.purple .numeric-navigation a:hover,
.purple .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.purple.light-version .numeric-navigation a:hover,
.purple.light-version .numeric-navigation span.current {
  background-color: #c74a73;
  color: #ffffff;
}
.purple .entry-format .link-block:hover,
.purple.light-version .entry-format .link-block:hover {
  background-color: #c74a73;
}
.purple .widget_tag_cloud a {
  color: #888;
}
.purple .icon-box .b-icon {
  color: #c74a73;
}
.purple .icon-box.border-circle .b-icon {
  border: 2px solid #c74a73;
}
.purple .icon-box:hover a.box-title {
  color: #c74a73;
}
.purple .icon-box:hover .b-icon {
  color: #c74a73;
  border-color: #c74a73;
}
.purple .pricing-item .pricing-info .p-duration {
  color: #c74a73;
}
.purple.light-version .pricing-item .pricing-info .p-price {
  color: #c74a73;
}
.purple.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.purple .navbar-toggle:hover {
  color: #c74a73;
}
.purple .primary-nav .current-menu-item > a,
.purple .primary-nav .current_page_item > a {
  background-color: #c74a73;
}
.purple .primary-nav .nav > li > a:hover,
.purple .primary-nav .nav > li > a:focus {
  background-color: #c74a73;
}
.purple.page-template-one-page .primary-nav .current-menu-item > a,
.purple.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.purple.page-template-one-page .primary-nav a.current {
  background-color: #c74a73;
}
.purple .numeric-navigation span:hover {
  border-color: #c74a73;
}
.purple .numeric-navigation a:hover {
  color: #c74a73;
}
.purple .owl-controls .owl-buttons div {
  background-color: #c74a73;
}
.purple .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.purple .sticky .entry-header .entry-date {
  border-color: #c74a73;
}
.purple .sticky .entry-header .entry-date span {
  color: #c74a73;
}
.purple .wpcf7-form-control.wpcf7-submit {
  background-color: #c74a73;
}
.purple .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.purple .post-password-form input[type=submit] {
  background-color: #c74a73;
}
.purple .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.purple .comments-area .comment-list .comment-meta .author-name {
  color: #c74a73;
}
.purple .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #c74a73;
}
.purple .search-form:before {
  color: #c74a73;
}
.purple .tp-caption .id-color {
  color: #c74a73;
}
.purple .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.purple .tp-caption.onehost-button-blue a,
.purple .onehost-button-blue a:hover {
  background-color: #c74a73;
}
.purple .section-plans {
  background-color: #c74a73;
}
.purple .section-testimonials-short {
  background-color: #9a3053;
}
.purple .portfolio-filter a {
  color: #ffffff;
}
.purple .portfolio-filter a.active,
.purple .portfolio-filter a:hover {
  background-color: #c74a73;
}
.purple .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #c74a73;
}
.purple [class*="widget_cc_whmcs_"].widget input[type="submit"],
.purple [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #c74a73;
}
.purple [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.purple [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.purple .entry-content #bridge #order-modern #categories a {
  color: #c74a73;
}
.purple .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.purple .entry-content #bridge a {
  color: #c74a73 !important;
}
.purple .entry-content #bridge table.cart tr.total td,
.purple .entry-content #bridge table.data tr.total td {
  color: #c74a73;
}
.purple .entry-content #bridge input[type="submit"],
.purple .entry-content #bridge input[type="button"] {
  background-color: #c74a73;
}
.purple .entry-content #bridge input[type="submit"]:hover,
.purple .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.purple .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.purple .entry-content #bridge input[type="reset"]:hover {
  background-color: #c74a73;
}
.yellow a {
  color: #ff9c00;
}
.yellow a:hover {
  color: #333;
}
.yellow blockquote {
  border-left: #ff9c00;
}
.yellow .btn-secondary {
  background-color: #333;
}
.yellow .btn-secondary:hover {
  background-color: #ff9c00;
}
.yellow .social-icons a {
  background-color: #ff9c00;
  color: #111;
}
.yellow .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.yellow .primary-nav a {
  color: #fff;
}
.yellow .backtotop {
  color: #888;
}
.yellow .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #ff9c00;
}
.yellow .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.yellow .testimonial-list.testimonial-full .testi-star {
  color: #ff9c00;
}
.yellow .ta-team-shortcode .team-member-image:hover:before {
  background-color: #ff9c00;
}
.yellow .section-title h2:after {
  background-color: #ff9c00;
}
.yellow .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #ff9c00;
}
.yellow .image-box a.image-box-title:hover {
  color: #ff9c00;
}
.yellow .btn-primary {
  background-color: #ff9c00;
}
.yellow .btn-primary:hover {
  background-color: #333;
}
.yellow .comments-area .submit {
  background-color: #ff9c00;
}
.yellow .comments-area .submit:hover {
  background-color: #333;
}
.yellow .entry-footer a,
.yellow .recent-post .post-text .read-more,
.yellow .popular-post .post-text .read-more,
.yellow .comments-area .comment-list .comment-meta .comment-reply-link,
.yellow .comments-area .comment-list .comment-meta .comment-edit-link,
.yellow .numeric-navigation a,
.yellow .numeric-navigation span {
  color: #888;
}
.yellow .entry-footer a:hover,
.yellow .recent-post .post-text .read-more:hover,
.yellow .popular-post .post-text .read-more:hover,
.yellow .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.yellow .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.yellow .numeric-navigation a:hover,
.yellow .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.yellow.light-version .numeric-navigation a:hover,
.yellow.light-version .numeric-navigation span.current {
  background-color: #ff9c00;
  color: #ffffff;
}
.yellow .entry-format .link-block:hover,
.yellow.light-version .entry-format .link-block:hover {
  background-color: #ff9c00;
}
.yellow .widget_tag_cloud a {
  color: #888;
}
.yellow .icon-box .b-icon {
  color: #ff9c00;
}
.yellow .icon-box.border-circle .b-icon {
  border: 2px solid #ff9c00;
}
.yellow .icon-box:hover a.box-title {
  color: #ff9c00;
}
.yellow .icon-box:hover .b-icon {
  color: #ff9c00;
  border-color: #ff9c00;
}
.yellow .pricing-item .pricing-info .p-duration {
  color: #ff9c00;
}
.yellow.light-version .pricing-item .pricing-info .p-price {
  color: #ff9c00;
}
.yellow.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.yellow .navbar-toggle:hover {
  color: #ff9c00;
}
.yellow .primary-nav .current-menu-item > a,
.yellow .primary-nav .current_page_item > a {
  background-color: #ff9c00;
}
.yellow .primary-nav .nav > li > a:hover,
.yellow .primary-nav .nav > li > a:focus {
  background-color: #ff9c00;
}
.yellow.page-template-one-page .primary-nav .current-menu-item > a,
.yellow.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.yellow.page-template-one-page .primary-nav a.current {
  background-color: #ff9c00;
}
.yellow .numeric-navigation span:hover {
  border-color: #ff9c00;
}
.yellow .numeric-navigation a:hover {
  color: #ff9c00;
}
.yellow .owl-controls .owl-buttons div {
  background-color: #ff9c00;
}
.yellow .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.yellow .sticky .entry-header .entry-date {
  border-color: #ff9c00;
}
.yellow .sticky .entry-header .entry-date span {
  color: #ff9c00;
}
.yellow .wpcf7-form-control.wpcf7-submit {
  background-color: #ff9c00;
}
.yellow .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.yellow .post-password-form input[type=submit] {
  background-color: #ff9c00;
}
.yellow .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.yellow .comments-area .comment-list .comment-meta .author-name {
  color: #ff9c00;
}
.yellow .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #ff9c00;
}
.yellow .search-form:before {
  color: #ff9c00;
}
.yellow .tp-caption .id-color {
  color: #ff9c00;
}
.yellow .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.yellow .tp-caption.onehost-button-blue a,
.yellow .onehost-button-blue a:hover {
  background-color: #ff9c00;
}
.yellow .section-plans {
  background-color: #ff9c00;
}
.yellow .section-testimonials-short {
  background-color: #b87000;
}
.yellow .portfolio-filter a {
  color: #ffffff;
}
.yellow .portfolio-filter a.active,
.yellow .portfolio-filter a:hover {
  background-color: #ff9c00;
}
.yellow .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #ff9c00;
}
.yellow [class*="widget_cc_whmcs_"].widget input[type="submit"],
.yellow [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #ff9c00;
}
.yellow [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.yellow [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.yellow .entry-content #bridge #order-modern #categories a {
  color: #ff9c00;
}
.yellow .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.yellow .entry-content #bridge a {
  color: #ff9c00 !important;
}
.yellow .entry-content #bridge table.cart tr.total td,
.yellow .entry-content #bridge table.data tr.total td {
  color: #ff9c00;
}
.yellow .entry-content #bridge input[type="submit"],
.yellow .entry-content #bridge input[type="button"] {
  background-color: #ff9c00;
}
.yellow .entry-content #bridge input[type="submit"]:hover,
.yellow .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.yellow .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.yellow .entry-content #bridge input[type="reset"]:hover {
  background-color: #ff9c00;
}
.brown a {
  color: #987654;
}
.brown a:hover {
  color: #333;
}
.brown blockquote {
  border-left: #987654;
}
.brown .btn-secondary {
  background-color: #333;
}
.brown .btn-secondary:hover {
  background-color: #987654;
}
.brown .social-icons a {
  background-color: #987654;
  color: #111;
}
.brown .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.brown .primary-nav a {
  color: #fff;
}
.brown .backtotop {
  color: #888;
}
.brown .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #987654;
}
.brown .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.brown .testimonial-list.testimonial-full .testi-star {
  color: #987654;
}
.brown .ta-team-shortcode .team-member-image:hover:before {
  background-color: #987654;
}
.brown .section-title h2:after {
  background-color: #987654;
}
.brown .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #987654;
}
.brown .image-box a.image-box-title:hover {
  color: #987654;
}
.brown .btn-primary {
  background-color: #987654;
}
.brown .btn-primary:hover {
  background-color: #333;
}
.brown .comments-area .submit {
  background-color: #987654;
}
.brown .comments-area .submit:hover {
  background-color: #333;
}
.brown .entry-footer a,
.brown .recent-post .post-text .read-more,
.brown .popular-post .post-text .read-more,
.brown .comments-area .comment-list .comment-meta .comment-reply-link,
.brown .comments-area .comment-list .comment-meta .comment-edit-link,
.brown .numeric-navigation a,
.brown .numeric-navigation span {
  color: #888;
}
.brown .entry-footer a:hover,
.brown .recent-post .post-text .read-more:hover,
.brown .popular-post .post-text .read-more:hover,
.brown .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.brown .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.brown .numeric-navigation a:hover,
.brown .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.brown.light-version .numeric-navigation a:hover,
.brown.light-version .numeric-navigation span.current {
  background-color: #987654;
  color: #ffffff;
}
.brown .entry-format .link-block:hover,
.brown.light-version .entry-format .link-block:hover {
  background-color: #987654;
}
.brown .widget_tag_cloud a {
  color: #888;
}
.brown .icon-box .b-icon {
  color: #987654;
}
.brown .icon-box.border-circle .b-icon {
  border: 2px solid #987654;
}
.brown .icon-box:hover a.box-title {
  color: #987654;
}
.brown .icon-box:hover .b-icon {
  color: #987654;
  border-color: #987654;
}
.brown .pricing-item .pricing-info .p-duration {
  color: #987654;
}
.brown.light-version .pricing-item .pricing-info .p-price {
  color: #987654;
}
.brown.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.brown .navbar-toggle:hover {
  color: #987654;
}
.brown .primary-nav .current-menu-item > a,
.brown .primary-nav .current_page_item > a {
  background-color: #987654;
}
.brown .primary-nav .nav > li > a:hover,
.brown .primary-nav .nav > li > a:focus {
  background-color: #987654;
}
.brown.page-template-one-page .primary-nav .current-menu-item > a,
.brown.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.brown.page-template-one-page .primary-nav a.current {
  background-color: #987654;
}
.brown .numeric-navigation span:hover {
  border-color: #987654;
}
.brown .numeric-navigation a:hover {
  color: #987654;
}
.brown .owl-controls .owl-buttons div {
  background-color: #987654;
}
.brown .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.brown .sticky .entry-header .entry-date {
  border-color: #987654;
}
.brown .sticky .entry-header .entry-date span {
  color: #987654;
}
.brown .wpcf7-form-control.wpcf7-submit {
  background-color: #987654;
}
.brown .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.brown .post-password-form input[type=submit] {
  background-color: #987654;
}
.brown .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.brown .comments-area .comment-list .comment-meta .author-name {
  color: #987654;
}
.brown .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #987654;
}
.brown .search-form:before {
  color: #987654;
}
.brown .tp-caption .id-color {
  color: #987654;
}
.brown .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.brown .tp-caption.onehost-button-blue a,
.brown .onehost-button-blue a:hover {
  background-color: #987654;
}
.brown .section-plans {
  background-color: #987654;
}
.brown .section-testimonials-short {
  background-color: #6a523b;
}
.brown .portfolio-filter a {
  color: #ffffff;
}
.brown .portfolio-filter a.active,
.brown .portfolio-filter a:hover {
  background-color: #987654;
}
.brown .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #987654;
}
.brown [class*="widget_cc_whmcs_"].widget input[type="submit"],
.brown [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #987654;
}
.brown [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.brown [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.brown .entry-content #bridge #order-modern #categories a {
  color: #987654;
}
.brown .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.brown .entry-content #bridge a {
  color: #987654 !important;
}
.brown .entry-content #bridge table.cart tr.total td,
.brown .entry-content #bridge table.data tr.total td {
  color: #987654;
}
.brown .entry-content #bridge input[type="submit"],
.brown .entry-content #bridge input[type="button"] {
  background-color: #987654;
}
.brown .entry-content #bridge input[type="submit"]:hover,
.brown .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.brown .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.brown .entry-content #bridge input[type="reset"]:hover {
  background-color: #987654;
}
.cyan a {
  color: #1abc9c;
}
.cyan a:hover {
  color: #333;
}
.cyan blockquote {
  border-left: #1abc9c;
}
.cyan .btn-secondary {
  background-color: #333;
}
.cyan .btn-secondary:hover {
  background-color: #1abc9c;
}
.cyan .social-icons a {
  background-color: #1abc9c;
  color: #111;
}
.cyan .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.cyan .primary-nav a {
  color: #fff;
}
.cyan .backtotop {
  color: #888;
}
.cyan .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #1abc9c;
}
.cyan .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.cyan .testimonial-list.testimonial-full .testi-star {
  color: #1abc9c;
}
.cyan .ta-team-shortcode .team-member-image:hover:before {
  background-color: #1abc9c;
}
.cyan .section-title h2:after {
  background-color: #1abc9c;
}
.cyan .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #1abc9c;
}
.cyan .image-box a.image-box-title:hover {
  color: #1abc9c;
}
.cyan .btn-primary {
  background-color: #1abc9c;
}
.cyan .btn-primary:hover {
  background-color: #333;
}
.cyan .comments-area .submit {
  background-color: #1abc9c;
}
.cyan .comments-area .submit:hover {
  background-color: #333;
}
.cyan .entry-footer a,
.cyan .recent-post .post-text .read-more,
.cyan .popular-post .post-text .read-more,
.cyan .comments-area .comment-list .comment-meta .comment-reply-link,
.cyan .comments-area .comment-list .comment-meta .comment-edit-link,
.cyan .numeric-navigation a,
.cyan .numeric-navigation span {
  color: #888;
}
.cyan .entry-footer a:hover,
.cyan .recent-post .post-text .read-more:hover,
.cyan .popular-post .post-text .read-more:hover,
.cyan .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.cyan .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.cyan .numeric-navigation a:hover,
.cyan .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.cyan.light-version .numeric-navigation a:hover,
.cyan.light-version .numeric-navigation span.current {
  background-color: #1abc9c;
  color: #ffffff;
}
.cyan .entry-format .link-block:hover,
.cyan.light-version .entry-format .link-block:hover {
  background-color: #1abc9c;
}
.cyan .widget_tag_cloud a {
  color: #888;
}
.cyan .icon-box .b-icon {
  color: #1abc9c;
}
.cyan .icon-box.border-circle .b-icon {
  border: 2px solid #1abc9c;
}
.cyan .icon-box:hover a.box-title {
  color: #1abc9c;
}
.cyan .icon-box:hover .b-icon {
  color: #1abc9c;
  border-color: #1abc9c;
}
.cyan .pricing-item .pricing-info .p-duration {
  color: #1abc9c;
}
.cyan.light-version .pricing-item .pricing-info .p-price {
  color: #1abc9c;
}
.cyan.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.cyan .navbar-toggle:hover {
  color: #1abc9c;
}
.cyan .primary-nav .current-menu-item > a,
.cyan .primary-nav .current_page_item > a {
  background-color: #1abc9c;
}
.cyan .primary-nav .nav > li > a:hover,
.cyan .primary-nav .nav > li > a:focus {
  background-color: #1abc9c;
}
.cyan.page-template-one-page .primary-nav .current-menu-item > a,
.cyan.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.cyan.page-template-one-page .primary-nav a.current {
  background-color: #1abc9c;
}
.cyan .numeric-navigation span:hover {
  border-color: #1abc9c;
}
.cyan .numeric-navigation a:hover {
  color: #1abc9c;
}
.cyan .owl-controls .owl-buttons div {
  background-color: #1abc9c;
}
.cyan .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.cyan .sticky .entry-header .entry-date {
  border-color: #1abc9c;
}
.cyan .sticky .entry-header .entry-date span {
  color: #1abc9c;
}
.cyan .wpcf7-form-control.wpcf7-submit {
  background-color: #1abc9c;
}
.cyan .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.cyan .post-password-form input[type=submit] {
  background-color: #1abc9c;
}
.cyan .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.cyan .comments-area .comment-list .comment-meta .author-name {
  color: #1abc9c;
}
.cyan .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #1abc9c;
}
.cyan .search-form:before {
  color: #1abc9c;
}
.cyan .tp-caption .id-color {
  color: #1abc9c;
}
.cyan .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.cyan .tp-caption.onehost-button-blue a,
.cyan .onehost-button-blue a:hover {
  background-color: #1abc9c;
}
.cyan .section-plans {
  background-color: #1abc9c;
}
.cyan .section-testimonials-short {
  background-color: #117d68;
}
.cyan .portfolio-filter a {
  color: #ffffff;
}
.cyan .portfolio-filter a.active,
.cyan .portfolio-filter a:hover {
  background-color: #1abc9c;
}
.cyan .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #1abc9c;
}
.cyan [class*="widget_cc_whmcs_"].widget input[type="submit"],
.cyan [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #1abc9c;
}
.cyan [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.cyan [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.cyan .entry-content #bridge #order-modern #categories a {
  color: #1abc9c;
}
.cyan .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.cyan .entry-content #bridge a {
  color: #1abc9c !important;
}
.cyan .entry-content #bridge table.cart tr.total td,
.cyan .entry-content #bridge table.data tr.total td {
  color: #1abc9c;
}
.cyan .entry-content #bridge input[type="submit"],
.cyan .entry-content #bridge input[type="button"] {
  background-color: #1abc9c;
}
.cyan .entry-content #bridge input[type="submit"]:hover,
.cyan .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.cyan .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.cyan .entry-content #bridge input[type="reset"]:hover {
  background-color: #1abc9c;
}
.skyblue a {
  color: #00cdcd;
}
.skyblue a:hover {
  color: #333;
}
.skyblue blockquote {
  border-left: #00cdcd;
}
.skyblue .btn-secondary {
  background-color: #333;
}
.skyblue .btn-secondary:hover {
  background-color: #00cdcd;
}
.skyblue .social-icons a {
  background-color: #00cdcd;
  color: #111;
}
.skyblue .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.skyblue .primary-nav a {
  color: #fff;
}
.skyblue .backtotop {
  color: #888;
}
.skyblue .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #00cdcd;
}
.skyblue .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.skyblue .testimonial-list.testimonial-full .testi-star {
  color: #00cdcd;
}
.skyblue .ta-team-shortcode .team-member-image:hover:before {
  background-color: #00cdcd;
}
.skyblue .section-title h2:after {
  background-color: #00cdcd;
}
.skyblue .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #00cdcd;
}
.skyblue .image-box a.image-box-title:hover {
  color: #00cdcd;
}
.skyblue .btn-primary {
  background-color: #00cdcd;
}
.skyblue .btn-primary:hover {
  background-color: #333;
}
.skyblue .comments-area .submit {
  background-color: #00cdcd;
}
.skyblue .comments-area .submit:hover {
  background-color: #333;
}
.skyblue .entry-footer a,
.skyblue .recent-post .post-text .read-more,
.skyblue .popular-post .post-text .read-more,
.skyblue .comments-area .comment-list .comment-meta .comment-reply-link,
.skyblue .comments-area .comment-list .comment-meta .comment-edit-link,
.skyblue .numeric-navigation a,
.skyblue .numeric-navigation span {
  color: #888;
}
.skyblue .entry-footer a:hover,
.skyblue .recent-post .post-text .read-more:hover,
.skyblue .popular-post .post-text .read-more:hover,
.skyblue .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.skyblue .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.skyblue .numeric-navigation a:hover,
.skyblue .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.skyblue.light-version .numeric-navigation a:hover,
.skyblue.light-version .numeric-navigation span.current {
  background-color: #00cdcd;
  color: #ffffff;
}
.skyblue .entry-format .link-block:hover,
.skyblue.light-version .entry-format .link-block:hover {
  background-color: #00cdcd;
}
.skyblue .widget_tag_cloud a {
  color: #888;
}
.skyblue .icon-box .b-icon {
  color: #00cdcd;
}
.skyblue .icon-box.border-circle .b-icon {
  border: 2px solid #00cdcd;
}
.skyblue .icon-box:hover a.box-title {
  color: #00cdcd;
}
.skyblue .icon-box:hover .b-icon {
  color: #00cdcd;
  border-color: #00cdcd;
}
.skyblue .pricing-item .pricing-info .p-duration {
  color: #00cdcd;
}
.skyblue.light-version .pricing-item .pricing-info .p-price {
  color: #00cdcd;
}
.skyblue.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.skyblue .navbar-toggle:hover {
  color: #00cdcd;
}
.skyblue .primary-nav .current-menu-item > a,
.skyblue .primary-nav .current_page_item > a {
  background-color: #00cdcd;
}
.skyblue .primary-nav .nav > li > a:hover,
.skyblue .primary-nav .nav > li > a:focus {
  background-color: #00cdcd;
}
.skyblue.page-template-one-page .primary-nav .current-menu-item > a,
.skyblue.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.skyblue.page-template-one-page .primary-nav a.current {
  background-color: #00cdcd;
}
.skyblue .numeric-navigation span:hover {
  border-color: #00cdcd;
}
.skyblue .numeric-navigation a:hover {
  color: #00cdcd;
}
.skyblue .owl-controls .owl-buttons div {
  background-color: #00cdcd;
}
.skyblue .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.skyblue .sticky .entry-header .entry-date {
  border-color: #00cdcd;
}
.skyblue .sticky .entry-header .entry-date span {
  color: #00cdcd;
}
.skyblue .wpcf7-form-control.wpcf7-submit {
  background-color: #00cdcd;
}
.skyblue .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.skyblue .post-password-form input[type=submit] {
  background-color: #00cdcd;
}
.skyblue .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.skyblue .comments-area .comment-list .comment-meta .author-name {
  color: #00cdcd;
}
.skyblue .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #00cdcd;
}
.skyblue .search-form:before {
  color: #00cdcd;
}
.skyblue .tp-caption .id-color {
  color: #00cdcd;
}
.skyblue .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.skyblue .tp-caption.onehost-button-blue a,
.skyblue .onehost-button-blue a:hover {
  background-color: #00cdcd;
}
.skyblue .section-plans {
  background-color: #00cdcd;
}
.skyblue .section-testimonials-short {
  background-color: #008686;
}
.skyblue .portfolio-filter a {
  color: #ffffff;
}
.skyblue .portfolio-filter a.active,
.skyblue .portfolio-filter a:hover {
  background-color: #00cdcd;
}
.skyblue .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #00cdcd;
}
.skyblue [class*="widget_cc_whmcs_"].widget input[type="submit"],
.skyblue [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #00cdcd;
}
.skyblue [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.skyblue [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.skyblue .entry-content #bridge #order-modern #categories a {
  color: #00cdcd;
}
.skyblue .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.skyblue .entry-content #bridge a {
  color: #00cdcd !important;
}
.skyblue .entry-content #bridge table.cart tr.total td,
.skyblue .entry-content #bridge table.data tr.total td {
  color: #00cdcd;
}
.skyblue .entry-content #bridge input[type="submit"],
.skyblue .entry-content #bridge input[type="button"] {
  background-color: #00cdcd;
}
.skyblue .entry-content #bridge input[type="submit"]:hover,
.skyblue .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.skyblue .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.skyblue .entry-content #bridge input[type="reset"]:hover {
  background-color: #00cdcd;
}
.gray a {
  color: #656565;
}
.gray a:hover {
  color: #333;
}
.gray blockquote {
  border-left: #656565;
}
.gray .btn-secondary {
  background-color: #333;
}
.gray .btn-secondary:hover {
  background-color: #656565;
}
.gray .social-icons a {
  background-color: #656565;
  color: #111;
}
.gray .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.gray .primary-nav a {
  color: #fff;
}
.gray .backtotop {
  color: #888;
}
.gray .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #656565;
}
.gray .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.gray .testimonial-list.testimonial-full .testi-star {
  color: #656565;
}
.gray .ta-team-shortcode .team-member-image:hover:before {
  background-color: #656565;
}
.gray .section-title h2:after {
  background-color: #656565;
}
.gray .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #656565;
}
.gray .image-box a.image-box-title:hover {
  color: #656565;
}
.gray .btn-primary {
  background-color: #656565;
}
.gray .btn-primary:hover {
  background-color: #333;
}
.gray .comments-area .submit {
  background-color: #656565;
}
.gray .comments-area .submit:hover {
  background-color: #333;
}
.gray .entry-footer a,
.gray .recent-post .post-text .read-more,
.gray .popular-post .post-text .read-more,
.gray .comments-area .comment-list .comment-meta .comment-reply-link,
.gray .comments-area .comment-list .comment-meta .comment-edit-link,
.gray .numeric-navigation a,
.gray .numeric-navigation span {
  color: #888;
}
.gray .entry-footer a:hover,
.gray .recent-post .post-text .read-more:hover,
.gray .popular-post .post-text .read-more:hover,
.gray .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.gray .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.gray .numeric-navigation a:hover,
.gray .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.gray.light-version .numeric-navigation a:hover,
.gray.light-version .numeric-navigation span.current {
  background-color: #656565;
  color: #ffffff;
}
.gray .entry-format .link-block:hover,
.gray.light-version .entry-format .link-block:hover {
  background-color: #656565;
}
.gray .widget_tag_cloud a {
  color: #888;
}
.gray .icon-box .b-icon {
  color: #656565;
}
.gray .icon-box.border-circle .b-icon {
  border: 2px solid #656565;
}
.gray .icon-box:hover a.box-title {
  color: #656565;
}
.gray .icon-box:hover .b-icon {
  color: #656565;
  border-color: #656565;
}
.gray .pricing-item .pricing-info .p-duration {
  color: #656565;
}
.gray.light-version .pricing-item .pricing-info .p-price {
  color: #656565;
}
.gray.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.gray .navbar-toggle:hover {
  color: #656565;
}
.gray .primary-nav .current-menu-item > a,
.gray .primary-nav .current_page_item > a {
  background-color: #656565;
}
.gray .primary-nav .nav > li > a:hover,
.gray .primary-nav .nav > li > a:focus {
  background-color: #656565;
}
.gray.page-template-one-page .primary-nav .current-menu-item > a,
.gray.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.gray.page-template-one-page .primary-nav a.current {
  background-color: #656565;
}
.gray .numeric-navigation span:hover {
  border-color: #656565;
}
.gray .numeric-navigation a:hover {
  color: #656565;
}
.gray .owl-controls .owl-buttons div {
  background-color: #656565;
}
.gray .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.gray .sticky .entry-header .entry-date {
  border-color: #656565;
}
.gray .sticky .entry-header .entry-date span {
  color: #656565;
}
.gray .wpcf7-form-control.wpcf7-submit {
  background-color: #656565;
}
.gray .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.gray .post-password-form input[type=submit] {
  background-color: #656565;
}
.gray .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.gray .comments-area .comment-list .comment-meta .author-name {
  color: #656565;
}
.gray .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #656565;
}
.gray .search-form:before {
  color: #656565;
}
.gray .tp-caption .id-color {
  color: #656565;
}
.gray .tp-caption.onehost-button-light a {
  color: #ffffff;
}
.gray .tp-caption.onehost-button-blue a,
.gray .onehost-button-blue a:hover {
  background-color: #656565;
}
.gray .section-plans {
  background-color: #656565;
}
.gray .section-testimonials-short {
  background-color: #414141;
}
.gray .portfolio-filter a {
  color: #ffffff;
}
.gray .portfolio-filter a.active,
.gray .portfolio-filter a:hover {
  background-color: #656565;
}
.gray .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #656565;
}
.gray [class*="widget_cc_whmcs_"].widget input[type="submit"],
.gray [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #656565;
}
.gray [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.gray [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.gray .entry-content #bridge #order-modern #categories a {
  color: #656565;
}
.gray .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.gray .entry-content #bridge a {
  color: #656565 !important;
}
.gray .entry-content #bridge table.cart tr.total td,
.gray .entry-content #bridge table.data tr.total td {
  color: #656565;
}
.gray .entry-content #bridge input[type="submit"],
.gray .entry-content #bridge input[type="button"] {
  background-color: #656565;
}
.gray .entry-content #bridge input[type="submit"]:hover,
.gray .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.gray .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.gray .entry-content #bridge input[type="reset"]:hover {
  background-color: #656565;
}
