/* 0 -- P I N K   R U B Y  */
/* S i r t h i n k   M i x i n */
/* M A R G I N   _   P A D D I N G */
/* T R A N S I T I O N   _   T R A N S F O R M */
/* O P A C I T Y */
/* B O R D E R   _   R A D I U S */
/* A N I M A T I O N */
/* C L E A R   _   F I X */
/* V I S U A L   H I D D E N */
/* B R E A K   _   P O I N T */
/*!
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
flash
pulse : zoom-in-out
rubberBand : short and tall
shake
swing : like wheel
tada
wobble
bounce
bounceIn-URDL
bounceOut-URDL
fadeIn-URDL-Big
fadeOut-URDL-Big
flip
flipIn-XY
flipOut-XY
lightSpeed-IO
rotateIn-UlDlUrDr
rotateOut-UlDlUrDr
slideIn-URDL
slideOut-URDL
hinge
roll-IO

*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease; }

.animated-05s {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease; }

.animated-025s {
  -webkit-animation-duration: 250ms;
  animation-duration: 250ms;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease; }

.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(-50px);
    transform: translateY(-50px); }

  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(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px); }

  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(-50px);
    transform: translateX(-50px); }

  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(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px); }

  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(50px);
    transform: translateX(50px); }

  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(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px); }

  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(50px);
    transform: translateY(50px); }

  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(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); }

  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(50px);
    transform: translateY(50px); } }
@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(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); } }
.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(-50px);
    transform: translateX(-50px); } }
@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(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px); } }
.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(50px);
    transform: translateX(50px); } }
@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(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px); } }
.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(-50px);
    transform: translateY(-50px); } }
@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(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px); } }
.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(-50px);
    transform: translateY(-50px); }

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

  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(-50px);
    transform: translateX(-50px); }

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

  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(50px);
    transform: translateX(50px); }

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

  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(50px);
    transform: translateY(50px); }

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

  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(50px);
    transform: translateY(50px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); } }
.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(-50px);
    transform: translateX(-50px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px); } }
.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(50px);
    transform: translateX(50px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px); } }
.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(-50px);
    transform: translateY(-50px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px); } }
.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(-50px);
    transform: translateY(-50px); }

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

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px); }

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

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

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

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

  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(50px);
    transform: translateX(50px); }

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

  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(-50px);
    transform: translateX(-50px); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px); } }
.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(50px);
    transform: translateX(50px); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px); } }
.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(-50px);
    transform: translateY(-50px); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

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

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7; }

  50% {
    transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(0.9);
    opacity: 0.7; } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.5; }

  50% {
    -webkit-transform: scale(1);
    opacity: 1; }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.5; } }
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg); }

  50% {
    -webkit-transform: rotate(180deg); }

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

  100% {
    transform: rotate(360deg); } }
.rotating {
  -webkit-animation: rotating 1.5s linear infinite;
  animation: rotating 1.5s linear infinite; }

@font-face {
  font-family: 'AlegreyaSans';
  src: url(../fonts/AlegreyaSans-ExtraBold.ttf); }
@font-face {
  font-family: 'OpenSans';
  src: url(../fonts/OpenSans-Regular.ttf); }
body {
  font-family: 'OpenSans', arial, sans-serif, helvetica;
  background: #ffffff; }
  @media (max-width: 767px) {
    body {
      font-size: 120%; }
.img-full {
    width: 100%; 
    height: 100%;
}

       }

h1, h2, h3, h4, h5, h6 {
  font-family: 'OpenSans', arial, sans-serif, helvetica;
  margin-top: 0;
  margin-bottom: 10px; }

a {
  text-decoration: none !important;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  -ms-transition: 300ms;
  transition: 300ms; }

h6 {
  font-size: 0.7em; }

h5 {
  font-size: 0.9em; }

h3 {
  font-size: 1.1em; }

h2 {
  font-size: 1.3em; }

h1 {
  font-size: 1.5em; }

@media (max-width: 767px) {
  header {
    text-align: center !important; } }
header .top {
  background: #44453D;
  /* Old browsers */
  background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* IE10+ */
  background: linear-gradient(to bottom, #44453D 0%, #44453D 99%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
  /* IE6-9 */
  color: #fff !important;
  padding: 0px 0; }
  header .top a {
    color: #aaa !important; }
    header .top a:hover {
      color: #c41c1c !important; }
  header .top .hotline .hotlineText {
    font-size: 1.2em;
    line-height: 34px;
    padding: 0;
    margin: 0;
    color: #eee; }
    header .top .hotline h2 span {
      color: #aaa;
      font-weight: bold; }
  @media (min-width: 768px) {
    header .top .social {
      text-align: right; } }
  header .top .social a {
    font-size: 1.2em;
    display: inline-block;
    padding: 0px 10px;
    line-height: 34px; }
    header .top .social a:first-child {
      padding-left: 0; }
    header .top .social a:last-child {
      padding-right: 0; }
header .inner {
  padding-top: 20px;
  padding-bottom: 5px; }
  header .inner h2#logo {
    margin: 0;
    padding: 0;
    text-indent: -9999%;
    font-size: 0; }
    header .inner h2#logo a {
      display: inline-block;
      display: block; }
      @media (max-width: 767px) {
        header .inner #logo a img {
          margin: 0 auto 10px; } }
  header .inner .quick-access .inner {
    background: white;
    /* Old browsers */
    background: -moz-linear-gradient(top, white 0%, #D0D1A5 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #D0D1A5));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, white 0%, #D0D1A5 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, white 0%, #D0D1A5 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, white 0%, #D0D1A5 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, white 0%, #D0D1A5 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#D0D1A5',GradientType=0 );
    /* IE6-9 */
    position: relative;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    padding: 15px 10px; }
    @media (min-width: 768px) {
      header .inner .quick-access .inner {
        margin-top: -20px; } }
    header .inner .quick-access .inner .welcome-msg a {
      color: #c41c1c;
      font-weight: bold; }
    header .inner .quick-access .inner .link-group a {
     /* color: #c41c1c;*/
    /* margin-right: 5px;*/
    font-weight: 500;
      }
      header .inner .quick-access .inner .link-group a:hover {
        color: #e63e3e; }
    header .inner .quick-access .inner .cart {
      color: #c41c1c; }
      header .inner .quick-access .inner .cart:hover {
        color: #e63e3e; }
      @media (min-width: 992px) {
        header .inner .quick-access .inner .cart {
          
          font-weight: bold;
          position: absolute;
          top: 33px;
          right: 0;
          line-height: 90px;
          text-align: right;
          height: 100%;
          width: 180px;
          padding: 0 15px;
          background: url(../images/cart-top.png) center left no-repeat; } }
  header .inner .quick-access .search {
    border: 2px solid #aaa;
    margin: 10px 0; }
    header .inner .quick-access .search select {
      width: 150px;
      float: left;
      box-shadow: none;
      border-radius: 0;
      border: none;
      border-right: 1px solid #aaa; }
      @media (max-width: 767px) {
        header .inner .quick-access .search select {
          width: 100px; } }
    header .inner .quick-access .search .form-group {
      margin-right: -5px;
      padding-right: 0px;
      margin: 0 !important; }
      header .inner .quick-access .search .form-group:after {
        content: none !important; }
      header .inner .quick-access .search .form-group input {
        background-color: #fff;
        box-shadow: none;
        border-radius: 0;
        border: none; }
      header .inner .quick-access .search .form-group .input-group-btn {
        padding: 0;
        background: #44453D;
        /* Old browsers */
        background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* IE10+ */
        background: linear-gradient(to bottom, #243a76 0%, #243a76 99%);
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
        /* IE6-9 */ }
        header .inner .quick-access .search .form-group .input-group-btn button {
          height: 100%;
          border: none;
          color: #fff;
          padding: 0 10px;
          background: transparent; }

.st-nav {
  /****************************************************
   * [Navbar control]:;
   ****************************************************/
  /*****************************************************/
  background: white;
  /* Old browsers */
  background: -moz-linear-gradient(top, white 0%, #D0D1A5 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #D0D1A5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, white 0%, #D0D1A5 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, white 0%, #D0D1A5 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, white 0%, #D0D1A5 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, white 0%, #D0D1A5 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#D0D1A5',GradientType=0 );
  /* IE6-9 */
  height: 42px;
  border-bottom: 3px solid #69aec6ed; }
  .st-nav * {
    z-index: 9999; }
  .st-nav a {
    display: block;
    color: #ffffff !important;
    line-height: 42px;
    padding: 0 10px;
    font-size: 1em;
    font-weight: 600; }
  .st-nav .st-collapse-button {
    height: 100%;
    width: 50px;
    float: right;
    padding: 4px; }
    @media (min-width: 768px) {
      .st-nav .st-collapse-button {
        display: none; } }
    .st-nav .st-collapse-button button {
      outline: none;
      box-shadow: none;
      height: 10px;
      width: 10px;
      border: 1px solid #c41c1c;
      -webkit-border-radius: 4px 4px 4px 4px;
      -moz-border-radius: 4px 4px 4px 4px;
      border-radius: 4px 4px 4px 4px;
      background: transparent;
      width: 100%;
      height: 100%; }
      .st-nav .st-collapse-button button .icon-bar {
        display: block;
        width: 100%;
        height: 2px;
        background: #c41c1c;
        margin: 5px 0; }
  .st-nav .st-nav-inner {
    position: relative;
    background-color: #243a76; }
    @media (min-width: 768px) {
      .st-nav .st-nav-inner ul {
        padding: 0;
        list-style: none; }
        .st-nav .st-nav-inner ul li {
          position: relative;
          cursor: pointer; }
          .st-nav .st-nav-inner ul li:hover a {
            color: #fff !important; }
          .st-nav .st-nav-inner ul li.st-dropdown a {
            padding-right: 30px; }
          .st-nav .st-nav-inner ul li.st-dropdown .collapse-toggle {
            display: none; }
          .st-nav .st-nav-inner ul li.st-dropdown .st-dropdown-menu {
            position: absolute;
            width: 255px;
            -webkit-animation-duration: 300ms;
            animation-duration: 300ms;
            animation-timing-function: ease;
            -webkit-animation-timing-function: ease;
            background: white;
            /* Old browsers */
            background: -moz-linear-gradient(top, white 0%, #D0D1A5 100%);
            /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #D0D1A5));
            /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top, white 0%, #D0D1A5 100%);
            /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top, white 0%, #D0D1A5 100%);
            /* Opera 11.10+ */
            background: -ms-linear-gradient(top, white 0%, #D0D1A5 100%);
            /* IE10+ */
            background: linear-gradient(to bottom, white 0%, #D0D1A5 100%);
            /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#D0D1A5',GradientType=0 );
            /* IE6-9 */ }
            .st-nav .st-nav-inner ul li.st-dropdown .st-dropdown-menu a {
              color: #ffffff !important;
              font-weight: 600;
              background-color: #69aec6ed; }
            .st-nav .st-nav-inner ul li.st-dropdown .st-dropdown-menu li:hover > a {
              background: #44453D;
              /* Old browsers */
              background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* FF3.6+ */
              background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
              /* Chrome,Safari4+ */
              background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* Chrome10+,Safari5.1+ */
              background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* Opera 11.10+ */
              background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* IE10+ */
              background: linear-gradient(to bottom, #44453D 0%, #44453D 100%);
              /* W3C */
              filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
              /* IE6-9 */
              color: white !important; }
      .st-nav .st-nav-inner > ul.st-navbar {
        display: block !important; }
        .st-nav .st-nav-inner > ul.st-navbar > li {
          display: inline-block; }
          .st-nav .st-nav-inner > ul.st-navbar > li:hover {
            background: #44453D;
            /* Old browsers */
            background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
            /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
            /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
            /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
            /* Opera 11.10+ */
            background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
            /* IE10+ */
            background: linear-gradient(to bottom, #69aec6ed 0%, #69aec6ed 100%);
            /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
            /* IE6-9 */ }
          .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > a {
            background: url(../images/collapse-sign.png) center right no-repeat; }
          .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown:hover > a {
            background: url(../images/collapse-sign-hover.png) center right no-repeat; }
          .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown:hover > .st-dropdown-menu {
            display: block;
            -webkit-animation-name: slideInLeft;
            animation-name: slideInLeft; }
          .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu {
            display: none; }
            .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu > .st-dropdown > a {
              background: url(../images/collapse-sign-portrait.png) center right no-repeat; }
            .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu > .st-dropdown:hover {
              background: #44453D;
              /* Old browsers */
              background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* FF3.6+ */
              background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
              /* Chrome,Safari4+ */
              background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* Chrome10+,Safari5.1+ */
              background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* Opera 11.10+ */
              background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
              /* IE10+ */
              background: linear-gradient(to bottom, #44453D 0%, #44453D 100%);
              /* W3C */
              filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
              /* IE6-9 */ }
              .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu > .st-dropdown:hover > a {
                background: url(../images/collapse-sign-portrait-hover.png) center right no-repeat; }
              .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu > .st-dropdown:hover > .st-dropdown-menu {
                display: block;
                -webkit-animation-name: slideInUp;
                animation-name: slideInUp; }
            .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu > .st-dropdown > .st-dropdown-menu {
              display: none;
              top: 0;
              right: -250px; } }
    @media (max-width: 767px) {
      .st-nav .st-nav-inner a {
        color: #555555 !important; }
      .st-nav .st-nav-inner ul {
        background: #aaaaaa;
        padding: 0;
        top: 42px;
        display: none; }
        .st-nav .st-nav-inner ul li {
          cursor: pointer;
          list-style: none; }
          .st-nav .st-nav-inner ul li.st-dropdown {
            position: relative; }
            .st-nav .st-nav-inner ul li.st-dropdown:hover {
              background: #e63e3e; }
            .st-nav .st-nav-inner ul li.st-dropdown .collapse-toggle {
              display: block;
              position: absolute;
              top: 0;
              right: 0;
              float: right;
              height: 42px;
              width: 100px;
              background: url(../images/collapse-sign-hover.png) center center no-repeat; }
      .st-nav .st-nav-inner > ul.st-navbar {
        left: 0;
        position: absolute;
        width: 100%; }
        .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu {
          text-indent: 20px; }
          .st-nav .st-nav-inner > ul.st-navbar > li.st-dropdown > .st-dropdown-menu .st-dropdown > .st-dropdown-menu {
            text-indent: 40px; } }
  .st-nav .active {
    background: #44453D;
    /* Old browsers */
    background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #44453D 0%, #44453D 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
    /* IE6-9 */ }
    .st-nav .active a {
      color: white !important; }

#content-wrapper {
  overflow: hidden;
  margin-bottom: 15px; }
  #content-wrapper > .container > .inner {
    background: #fff;
    overflow: hidden;
    border: 1px solid #dddddd;
    padding-bottom: 15px;
    padding-top: 15px; }
     @media (max-width: 767px) {
     	      #content-wrapper > .container > .inner {
     	      	        margin-left: -15px;
     	      	                margin-right: -15px;
     	      	                        border: none; } }
  @media (min-width: 768px) {
    #content-wrapper .body-wrapper {
      padding-left: 0; } }

#sidebar .sidebox {
  margin-bottom: 15px;
  -webkit-transform: translateZ(0) scale(1, 1); }
  @media (min-width: 768px) {
    #sidebar .sidebox {
      border: 1px solid #dddddd;
      padding: 10px; } }
  #sidebar .sidebox h3 {
    background: #44453D;
    /* Old browsers */
    background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* IE10+ */
    background: linear-gradient(to bottom, #44453D 0%, #44453D 99%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
    /* IE6-9 */
    padding: 0;
    font-size: 1.2em;
    color: #fff;
    padding: 10px 5px; }
    @media (min-width: 768px) {
      #sidebar .sidebox h3 {
        margin: -11px -11px 10px -11px; } }
  #sidebar .sidebox.categories ul {
    list-style: none; }
    #sidebar .sidebox.categories ul li {
      cursor: pointer; }
      #sidebar .sidebox.categories ul li:hover > a {
        color: #c41c1c !important; }
    #sidebar .sidebox.categories ul a {
      display: block;
      font-size: 1em;
      line-height: 2;
      color: #777 !important; }
      #sidebar .sidebox.categories ul a i {
        color: #aaa; }
  #sidebar .sidebox.categories > ul.custom-collapse-list {
    padding: 0; }
    #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1 {
      position: relative; }
            #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1 .collapse-toggle {
            	        position: absolute;
            	                top: 0;
            	                        right: 0;
            	                                width: 40px;
            	                                    height: 100%;
            	                                            background: url(../images/collapse-sign.png) top right no-repeat; }
            	                                                    @media (min-width: 768px) {
            	                                                    	          #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1 .collapse-toggle {
            	                                                    	          	            background: url(../images/collapse-sign-portrait.png) top right no-repeat; } }
      #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1 > a {
        
        -webkit-transition: 300ms;
        -moz-transition: 300ms;
        -o-transition: 300ms;
        -ms-transition: 300ms;
        transition: 300ms; }
      @media (min-width: 768px) {
        #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1 > ul.level-2 {
          border-top: 2px solid #c41c1c;
          width: 250px;
          background: #fff;
          position: absolute !important;
          top: 0;
          right: -250px;
          box-shadow: 0px 2px 5px #555;
          z-index: 99999999 !important; }
               #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1:hover > ul.level-2 {
          display: block; } }

      #sidebar .sidebox.categories > ul.custom-collapse-list > li.level-1.open > a {
        background: url(../images/collapse-sign.png) center right no-repeat; }
    #sidebar .sidebox.categories > ul.custom-collapse-list ul {
      padding-left: 15px; }
  #sidebar .sidebox.advance-filter .search .form-group {
    padding-bottom: 10px; }
  #sidebar .sidebox.advance-filter .search .input-group {
    margin: 0 !important; }
    #sidebar .sidebox.advance-filter .search .input-group input {
      background: #eee;
      box-shadow: none;
      border-radius: 0;
      border: none; }
    #sidebar .sidebox.advance-filter .search .input-group .input-group-btn {
      background: #44453D;
      /* Old browsers */
      background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* IE10+ */
      background: linear-gradient(to bottom, #243a76 0%, #243a76 99%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
      /* IE6-9 */ }
      #sidebar .sidebox.advance-filter .search .input-group .input-group-btn button {
        height: 100%;
        border: none;
        color: #fff;
        padding: 0 10px;
        background: url(../images/search-caret.png) center left no-repeat; }
  #sidebar .sidebox.advance-filter .search .classify {
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    -ms-transition: 300ms;
    transition: 300ms;
    font-size: 1em;
    font-weight: bold;
    color: #c41c1c;
    cursor: pointer;
    background: url(../images/collapse-sign-portrait.png) center right no-repeat; }
    #sidebar .sidebox.advance-filter .search .classify.open {
      background: url(../images/collapse-sign.png) center right no-repeat; }
  #sidebar .sidebox.advance-filter .search .custom-checkbox {
    padding: 0 0 3px 10px; }
    #sidebar .sidebox.advance-filter .search .custom-checkbox label {
      font-weight: normal;
      font-size: 1em; }
  #sidebar .sidebox.advance-filter .search .price-range label {
    font-size: 1em;
    color: #c41c1c; }
  #sidebar .sidebox.advance-filter .search .price-range input {
    color: #c41c1c !important;
    font-weight: normal !important; }
  #sidebar .sidebox.advance-filter .search .price-range #slider-range {
    border-radius: 0; }
    #sidebar .sidebox.advance-filter .search .price-range #slider-range > div {
      background: #c41c1c; }
    #sidebar .sidebox.advance-filter .search .price-range #slider-range > a {
      -webkit-transition: none !important;
      -moz-transition: none !important;
      -o-transition: none !important;
      -ms-transition: none !important;
      transition: none !important;
      border-radius: 50%; }
  #sidebar .sidebox.advance-filter .search .custom-collapse {
    display: none; }
  #sidebar .sidebox.online-support h4 {
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: bold; }
  #sidebar .sidebox.online-support .row {
    margin-bottom: 10px; }
  #sidebar .sidebox.statistic p {
    font-weight: bold;
    color: #777; }
    #sidebar .sidebox.statistic ul {
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
    }
    #sidebar .sidebox.statistic p .value {
      text-align: right;
      font-weight: normal;
      color: #c41c1c; }
  #sidebar .sidebox.map-wrapper #map-1 {
    height: 200px; }
  #sidebar .sidebox.links ul {
    list-style: none;
    padding-left: 0px; }
    #sidebar .sidebox.links ul li a {
      color: #555 !important; }
      #sidebar .sidebox.links ul li a:hover {
        color: #c41c1c !important;
        margin-left: 10px; }
  #sidebar .sidebox.facebook-fanpage {
    overflow: hidden; }

.brands-slider {
  margin-bottom: 15px; }
  @media (max-width: 767px) {
    .brands-slider {
      text-align: center; } }
  .brands-slider h1,.brands-slider h4 {
    background: #44453D;
    /* Old browsers */
    background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* IE10+ */
    background: linear-gradient(to bottom, #44453D 0%, #44453D 99%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
    /* IE6-9 */
    color: #fff;
    font-size: 1.2em;
    line-height: 34px;
    padding: 0 15px;
    margin-bottom: -1px; }
  @media (min-width: 768px) {
    .brands-slider .inner {
      border: 1px solid #dddddd;    
      background-color: #fff;
      padding: 10px; } }
  .brands-slider .inner a {
    font-size: 0;
    text-indent: -9999%;
    display: block;
    overflow: hidden;
        border-bottom: 2px solid transparent;}

    .brands-slider .inner a:hover {
       }

/* FOOTER */
footer {
  clear: both;
  color: #333; }
  footer .footer-header {
    background: #44453D;
    /* Old browsers */
    background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* IE10+ */
    background: linear-gradient(to bottom, #243a76 0%, #243a76 99%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
    /* IE6-9 */
    padding: 0 15px;
    color: #fff;
    position: relative; }
    @media (min-width: 768px) {
      footer .footer-header {
        /*height: 40px;*/ } }
    footer .footer-header h1,footer .footer-header h4 {
      line-height: 40px;
      font-size: 1.3em;
      display: inline-block; }
    footer .footer-header span {
      line-height: 40px; }
      @media (max-width: 767px) {
        footer .footer-header span.hotline {
          display: block;
          text-align: center; } }
      @media (min-width: 768px) {
        footer .footer-header span.hotline {
          position: absolute;
          right: 15px;
          top: 0; } }
  footer .inner {
    background: #fff;
    overflow: hidden; }
    @media (min-width: 768px) {
      footer .inner {
        border: 1px solid #dddddd;
        padding: 10px; } }
  @media (max-width: 767px) {
    footer {
      text-align: center; }
      footer .logo img {
        margin: 0 auto 15px auto; } }
  footer a {
    color: #333 !important; }
    footer a:hover {
      color: #c41c1c !important; }
  footer .pre-bottom {
    padding-top: 30px;
    padding-bottom: 10px; }
    footer .pre-bottom .head {
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 10px;
      display: block; }
    footer .pre-bottom ul {
      list-style: none;
      padding: 0; }
      @media (max-width: 767px) {
        footer .pre-bottom ul {
          padding: 15px 0 0 0; } }
      footer .pre-bottom ul li a:hover {
        margin-left: 5px; }
    footer .pre-bottom #map-footer {
      height: 200px; }
  footer .bottom {
    padding: 0 !important;
    border-top: none !important;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #44453d 0%, #44453d 99%) repeat scroll 0 0;
    color: #fff; }
    footer .bottom a{
      color: #fff;
    }
    @media (min-width: 768px) {
      footer .bottom {
        border: 1px solid #dddddd;
        padding: 10px; } }
    @media (min-width: 768px) {
       }
    @media (max-width: 767px) {
      footer .bottom {
        text-align: center; } }
    
      footer .bottom a:hover {
        color: #c41c1c !important; }
    footer .bottom .social-icons a {
      font-size: 1.2em;
      display: inline-block;
      padding: 0px 15px;
      line-height: 34px; }
      footer .bottom .social-icons a:first-child {
        padding-left: 0; }
      footer .bottom .social-icons a:last-child {
        padding-right: 0; }
    footer .bottom .copyright span {
      line-height: 34px;
      font-size: 0.9; }
    @media (min-width: 768px) {
      footer .bottom .mauris {
        text-align: right;
        padding-right: 15px; } }
    footer .bottom .mauris span {
      line-height: 34px;
      font-size: 0.9em; }

.default-popup {
  position: fixed;
  z-index: 9999999999999999;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .default-popup .inner {
    position: relative;
    width: 100%;
    height: 100%; }
    .default-popup .inner .popup-close {
      position: absolute;
      z-index: 9999999;
      top: 20px;
      right: 20px;
      font-size: 3em;
      color: red;
      cursor: pointer;
      text-indent: -9999%;
      height: 32px;
      width: 32px;
      background: url("../images/delete-icon.png"); }
    .default-popup .inner .popup-image {
      position: absolute; }

.standout {
  color: #2a6496; }

/* LABEL, BADGE */
.label-custom-1, .badge-custom-1 {
  background: #44453D;
  /* Old browsers */
  background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #69aec6ed 0%, #69aec6ed 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
  /* IE6-9 */ }

.label-custom-2, .badge-custom-2 {
  background: #44453D;
  /* Old browsers */
  background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
  /* IE10+ */
  background: linear-gradient(to bottom, #44453D 0%, #44453D 99%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
  /* IE6-9 */ }

/* ALERT */
.alert {
  border-radius: 0; }

/* COLLAPSE LIST */
ul.custom-collapse-list a {
  cursor: pointer; }
ul.custom-collapse-list ul.level-2 {
  display: none;
  padding-left: 23px; }

/* CUSTOM ul list */
ul.custom-ulist {
  list-style-image: url(../images/shirt-icon.png);
  padding-left: 30px; }
  ul.custom-ulist li {
    line-height: 30px; }
    ul.custom-ulist li a {
      color: #777;
      -webkit-transition: 200ms;
      -moz-transition: 200ms;
      -o-transition: 200ms;
      -ms-transition: 200ms;
      transition: 200ms; }
      ul.custom-ulist li a:hover {
        margin-left: 5px; }

/* Custom form */
.custom-form input, .custom-form textarea, .custom-form select {
  border-radius: 0;
  outline: none;
  box-shadow: none; }
.custom-form button {
  border: none; }
.custom-form label {
  font-weight: normal;
  color: #111; }

/* Pagination */
.custom-pagination {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
  padding-left: 0;
  list-style: none; }
  .custom-pagination li {
    display: inline-block;
    text-align: center; }
    .custom-pagination li a {
      color: #555 !important;
      display: block;
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 0.9em;
      margin: 5px auto; }
    .custom-pagination li a:hover {
      background-color: #c41c1c;
      color: white !important; }
    .custom-pagination li.active a, .custom-pagination li:active a {
      background-color: #c41c1c;
      color: #fff !important; }
    .custom-pagination li.prev a, .custom-pagination li.next a {
      font-size: 5em; }

/* FLOAT RIGHT */
@media (min-width: 768px) {
  .float-right-sm {
    float: right; } }

.custom-btn {
  background: #44453D;
  /* Old browsers */
  background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #243a76 0%, #243a76 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
  /* IE6-9 */
  display: inline-block;
  padding: 5px 8px;
  font-size: 1.1em;
  color: #fff !important;
  border-radius: 3px; }
  .custom-btn:active {
    transition: none;
    box-shadow: none;
    position: relative;
    top: 1px; }

.body-section {
  margin-bottom: 15px; }
  
  .body-section h2, {
    background: #44453D;
    /* Old browsers */
    background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
    /* IE10+ */
    background: linear-gradient(to bottom, #243a76 0%, #243a76 99%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
    /* IE6-9 */
    padding: 10px;
    color: #fff;
    font-size: 1.2em; }
    @media (min-width: 768px) {
      .body-section h2,.body-section h1 {
        margin: -11px -11px 15px -11px; } }
  .body-section h2.title
  {
	  background: none !important;
    min-height: 60px;
  }
  .body-section.slider .main-slider {
    -webkit-transform: translateZ(0) scale(1, 1);
    overflow: hidden;
    position: relative; }
    .body-section.slider .main-slider .owl-controls {
      margin: 0;
      position: absolute;
      bottom: 3px;
      width: 100%;
      bottom: 0;
      right: 0;
      width: 151px;
      height: 90px; }
      .body-section.slider .main-slider .owl-controls .owl-buttons .owl-prev, .body-section.slider .main-slider .owl-controls .owl-buttons .owl-next {
        border-radius: 4px;
        padding: 0 20px 10px 20px;
        background: #44453D;
        /* Old browsers */
        background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
        /* IE10+ */
        background: linear-gradient(to bottom, #44453D 0%, #44453D 99%);
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
        /* IE6-9 */
        font-size: 3em;
        opacity: 1; }
        .body-section.slider .main-slider .owl-controls .owl-buttons .owl-prev:hover, .body-section.slider .main-slider .owl-controls .owl-buttons .owl-next:hover {
          background: #44453D;
          /* Old browsers */
          background: -moz-linear-gradient(top, #44453D 0%, #44453D 100%);
          /* FF3.6+ */
          background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(100%, #44453D));
          /* Chrome,Safari4+ */
          background: -webkit-linear-gradient(top, #44453D 0%, #44453D 100%);
          /* Chrome10+,Safari5.1+ */
          background: -o-linear-gradient(top, #44453D 0%, #44453D 100%);
          /* Opera 11.10+ */
          background: -ms-linear-gradient(top, #44453D 0%, #44453D 100%);
          /* IE10+ */
          background: linear-gradient(to bottom, #44453D 0%, #44453D 100%);
          /* W3C */
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
          /* IE6-9 */ }
    .body-section.slider .main-slider .media-container img {
      width: 100%; }
    .body-section.slider .main-slider .caption {
      position: absolute;
      top: 0;
      left: 0; }
  .body-section.products-grid .title-wrapper, .body-section.products-list .title-wrapper {
    position: relative; }
    .body-section.products-grid .title-wrapper .view, .body-section.products-grid .title-wrapper .grid-view, .body-section.products-grid .title-wrapper .list-view, .body-section.products-list .title-wrapper .view, .body-section.products-list .title-wrapper .grid-view, .body-section.products-list .title-wrapper .list-view {
      line-height: 38px;
      position: absolute;
      top: 0px;
      color: #fff !important; }
      .body-section.products-grid .title-wrapper .view:hover, .body-section.products-grid .title-wrapper .grid-view:hover, .body-section.products-grid .title-wrapper .list-view:hover, .body-section.products-list .title-wrapper .view:hover, .body-section.products-list .title-wrapper .grid-view:hover, .body-section.products-list .title-wrapper .list-view:hover {
        color: #c41c1c !important; }
    .body-section.products-grid .title-wrapper .grid-view, .body-section.products-list .title-wrapper .grid-view {
      right: 10px; }
    .body-section.products-grid .title-wrapper .list-view, .body-section.products-list .title-wrapper .list-view {
      right: 30px; }
    .body-section.products-grid .title-wrapper .view, .body-section.products-list .title-wrapper .view {
      font-size: 0.9em;
      right: 50px; }
      .body-section.products-grid .title-wrapper .view:hover, .body-section.products-list .title-wrapper .view:hover {
        color: #fff !important; }
  @media (min-width: 768px) {
    .body-section.products-grid {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.products-grid .a-product {
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    -ms-transition: 300ms;
    transition: 300ms;
    overflow: hidden;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .body-section.products-grid .a-product {
        height: 320px; } }
    .body-section.products-grid .a-product .media-container {
      overflow: hidden; }
      @media (min-width: 1200px) {
        .body-section.products-grid .a-product .media-container {
          height: 182px;margin-bottom: 10px; } }
      @media (max-width: 1199px) and (min-width: 992px) {
        .body-section.products-grid .a-product .media-container {
          height: 202px; } }
      @media (max-width: 991px) and (min-width: 768px) {
        .body-section.products-grid .a-product .media-container {
          height: 206px; } }
      .body-section.products-grid .a-product .media-container img {
        width: 100%; }
    .body-section.products-grid .a-product .brief {
      text-align: center; }
      .body-section.products-grid .a-product .brief h3 {
        height: 36px; 
        margin-bottom: 10px;
        margin-top: 10px;
      }
        .body-section.products-grid .a-product .brief h3 a:first-child {
          color: #555;
          font-size: 1.1em;
          display: block;
          margin-top: 5px; }
      .body-section.products-grid .a-product .brief p {
        margin: 0;
        color: #c41c1c;
        font-weight: bold;
        margin-bottom: 5px; }
      .body-section.products-grid .a-product .brief .custom-btn {
        margin-bottom: 10px; }
  @media (min-width: 768px) {
    .body-section.products-list {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.products-list .a-product {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px; }
    .body-section.products-list .a-product .detail a.prd-name {
      color: #c41c1c;
      font-weight: bold;
      display: block;
      margin-bottom: 10px; }
    .body-section.products-list .a-product .detail p {
      color: #aaa; }
      .body-section.products-list .a-product .detail p .standout {
        color: #555; }
  .body-section.products-list .custom-pagination {
    border: none !important; }
  .body-section.categories-grid {
    overflow: hidden; }
    @media (min-width: 768px) {
      .body-section.categories-grid {
        border: 1px solid #dddddd;
        padding: 10px; } }
    .body-section.categories-grid .a-category {
      margin-bottom: 30px;
      overflow: hidden; }
      @media (min-width: 768px) {
        .body-section.categories-grid .a-category {
          border: 1px solid #dddddd;
          padding: 10px; } }
      .body-section.categories-grid .a-category .title-wrapper {
        position: relative; }
        .body-section.categories-grid .a-category .title-wrapper h2 {
          background: white;
          /* Old browsers */
          background: -moz-linear-gradient(top, white 0%, #D0D1A5 100%);
          /* FF3.6+ */
          background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #D0D1A5));
          /* Chrome,Safari4+ */
          background: -webkit-linear-gradient(top, white 0%, #D0D1A5 100%);
          /* Chrome10+,Safari5.1+ */
          background: -o-linear-gradient(top, white 0%, #D0D1A5 100%);
          /* Opera 11.10+ */
          background: -ms-linear-gradient(top, white 0%, #D0D1A5 100%);
          /* IE10+ */
          background: linear-gradient(to bottom, white 0%, #D0D1A5 100%);
          /* W3C */
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#D0D1A5',GradientType=0 );
          /* IE6-9 */
          padding: 5px 10px;
          font-size: 1em;
          color: #777; }
        .body-section.categories-grid .a-category .title-wrapper a {
          position: absolute;
          top: 0;
          right: 15px;
          line-height: 25px;
          font-size: 0.9em;
          color: #c41c1c !important; }
          .body-section.categories-grid .a-category .title-wrapper a:hover {
            color: #ff7171 !important; }
      .body-section.categories-grid .a-category .media-container {
        padding-bottom: 10px; }
      .body-section.categories-grid .a-category .list ul {
        padding-left: 20px;
        list-style-image: url(../images/bullet-wrench-icon.png); }
        .body-section.categories-grid .a-category .list ul li a {
          font-size: 0.9em;
          color: #666 !important; }
          .body-section.categories-grid .a-category .list ul li a:hover {
            color: #c41c1c !important;
            margin-left: 5px; }
  @media (min-width: 768px) {
    .body-section.product-detail {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.product-detail .overview {
    padding-bottom: 20px; }
    .body-section.product-detail .overview .figures .main-image-wrapper {
      border: 1px solid #ddd;
      margin-bottom: 2px;
      background: #000; }
      .body-section.product-detail .overview .figures .main-image-wrapper .main-image {
        width: 100%; }
    .body-section.product-detail .overview .figures .thumbnail-figures {
      margin-left: -2px;
      margin-right: -2px; }
      .body-section.product-detail .overview .figures .thumbnail-figures .a-thumbnail {
        padding: 2px;
        float: left;
        cursor: pointer;
        width: 25%; }
        .body-section.product-detail .overview .figures .thumbnail-figures .a-thumbnail .inner {
          overflow: hidden;
          -webkit-transition: 300ms;
          -moz-transition: 300ms;
          -o-transition: 300ms;
          -ms-transition: 300ms;
          transition: 300ms;
          border: 1px solid #ddd; }
          @media (min-width: 1200px) {
            .body-section.product-detail .overview .figures .thumbnail-figures .a-thumbnail .inner {
              height: 94px; } }
          @media (max-width: 1199px) and (min-width: 992px) {
            .body-section.product-detail .overview .figures .thumbnail-figures .a-thumbnail .inner {
              height: 47px; } }
          @media (max-width: 991px) and (min-width: 768px) {
            .body-section.product-detail .overview .figures .thumbnail-figures .a-thumbnail .inner {
              height: 111px; } }
          .body-section.product-detail .overview .figures .thumbnail-figures .a-thumbnail .inner:hover {
            border-color: #c41c1c; }
    @media (max-width: 991px) {
      .body-section.product-detail .overview .price-order {
        clear: both; }
        .body-section.product-detail .overview .price-order p:first-child {
          /*padding-top: 20px; */} }
    .body-section.product-detail .overview .price-order .price a, .body-section.product-detail .overview .price-order .media-container .inner .price-wrapper .saleoff a, .media-container .inner .price-wrapper .body-section.product-detail .overview .price-order .saleoff a {
      font-weight: bold;
      color: #c41c1c !important;
      text-decoration: underline !important; }
      .body-section.product-detail .overview .price-order .price a:hover, .body-section.product-detail .overview .price-order .media-container .inner .price-wrapper .saleoff a:hover, .media-container .inner .price-wrapper .body-section.product-detail .overview .price-order .saleoff a:hover {
        color: #a20000 !important; }
    .body-section.product-detail .overview .price-order .status span {
      color: #fff;
      padding: 2px 7px;
      border-radius: 3px; }
    .body-section.product-detail .overview .price-order .status.on span {
      background: #00C00F; }
    .body-section.product-detail .overview .price-order .status.off span {
      background: #FF3F3F; }
  .body-section.product-detail .detail .nav-tabs {
    border-color: #999; }
    .body-section.product-detail .detail .nav-tabs li a {
      border: 1px solid #999;
      border-radius: 0 10px 0 0;
      background: #44453D;
      /* Old browsers */
      background: -moz-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #44453D), color-stop(99%, #44453D));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #44453D 0%, #44453D 99%);
      /* IE10+ */
      background: linear-gradient(to bottom, #44453D 0%, #44453D 99%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44453D', endColorstr='#44453D',GradientType=0 );
      /* IE6-9 */
      color: #fff !important; }
    .body-section.product-detail .detail .nav-tabs li.active a {
      border-bottom-color: #fff;
      background: #fff;
      color: #777 !important; }
  .body-section.product-detail .detail .tab-content {
    color: #555;
    background: #fff; }
    .body-section.product-detail .detail .tab-content .tab-pane {
      padding: 20px 0;
      min-height: 300px;
      border-top: none; }
      .body-section.product-detail .detail .tab-content .tab-pane table {
        margin: 0;
        border: none; }
        .body-section.product-detail .detail .tab-content .tab-pane table tr td {
          padding: 5px 0;
          border: none; }
          .body-section.product-detail .detail .tab-content .tab-pane table tr td.field {
            max-width: 50px;
            font-weight: bold; }
  .body-section.product-detail .facebook-comment h2 {
    margin-top: 0; }
  .body-section.product-detail .facebook-comment .fb-comments span iframe {
    position: relative !important;
    height: auto !important; }
  @media (min-width: 768px) {
    .body-section.related-products {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.related-products .a-product {
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    -ms-transition: 300ms;
    transition: 300ms;
    overflow: hidden;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .body-section.related-products .a-product {
        height: 320px; } }
    .body-section.related-products .a-product .media-container {
      overflow: hidden; }
      @media (min-width: 1200px) {
        .body-section.related-products .a-product .media-container {
          height: 182px; } }
      @media (max-width: 1199px) and (min-width: 992px) {
        .body-section.related-products .a-product .media-container {
          height: 202px; } }
      @media (max-width: 991px) and (min-width: 768px) {
        .body-section.related-products .a-product .media-container {
          height: 206px; } }
      .body-section.related-products .a-product .media-container img {
        width: 100%; }
    .body-section.related-products .a-product .brief {
      text-align: center; }
      .body-section.related-products .a-product .brief a:first-child {
        color: #555;
        font-size: 1.1em;
        display: block;
        margin-top: 5px; }
      .body-section.related-products .a-product .brief p {
        margin: 0;
        color: #c41c1c;
        font-weight: bold;
        margin-bottom: 5px; }
      .body-section.related-products .a-product .brief .custom-btn {
        margin-bottom: 10px; }
  @media (min-width: 768px) {
    .body-section.cart {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.cart .cart-table table th {
    color: #555;
    font-weight: normal; }
  .body-section.cart .cart-table table tr {
    color: #555; }
  .body-section.cart .cart-table table td.remove i.fa {
    color: #c41c1c; }
  .body-section.cart .cart-table table .cart-thumbnail {
    display: block;
    width: 100px;
    overflow: hidden; }
  .body-section.cart .cart-table table tr.total {
    font-weight: bold;
    text-align: center; }
    .body-section.cart .cart-table table tr.total td[colspan="2"] {
      font-weight: bold;
      color: #c41c1c; }
  .body-section.cart .cart-table .custom-btn {
    margin-left: 14px;
    border: none; }
  .body-section.cart .submit {
    color: #555; }
    .body-section.cart .submit .custom-btn {
      border: none; }
    .body-section.cart .submit label {
      font-weight: normal; }
    .body-section.cart .submit h2 {
      color: #c41c1c; }
  @media (min-width: 768px) {
    .body-section.login-register {
      border: 1px solid #dddddd;
      padding: 10px; } }
  @media (min-width: 768px) {
    .body-section.blog {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.blog .an-article {
    margin: 15px auto;
    text-align: justify; }
    @media (min-width: 768px) {
      .body-section.blog .an-article {
        height: 380px;
        overflow: hidden; } }
    .body-section.blog .an-article .media-container {
      -webkit-transform: translateZ(0) scale(1, 1); }
      .body-section.blog .an-article .media-container .inner {
        overflow: hidden; }
        @media (min-width: 1200px) {
          .body-section.blog .an-article .media-container .inner {
            height: 142px; } }
        @media (max-width: 1199px) and (min-width: 992px) {
          .body-section.blog .an-article .media-container .inner {
            height: 114px; } }
        @media (max-width: 991px) and (min-width: 768px) {
          .body-section.blog .an-article .media-container .inner {
            height: 116px; } }
    .body-section.blog .an-article .content h3 {
      margin-top: 10px;
      margin-bottom: 10px; }
      .body-section.blog .an-article .content h3 a {
        color: #c41c1c; }
        .body-section.blog .an-article .content h3 a:hover {
          color: #e63e3e; }
    .body-section.blog .an-article .content .stat-wrapper {
      padding: 0;
      margin-top: 10px;
      margin-bottom: 10px;
      color: #aaa; }
      .body-section.blog .an-article .content .stat-wrapper .stat {
        margin-right: 5px; }
      .body-section.blog .an-article .content .stat-wrapper a {
        color: #aaa; }
        .body-section.blog .an-article .content .stat-wrapper a:hover {
          color: #c41c1c; }
    .body-section.blog .an-article .content .brief {
      color: #777; }
    .body-section.blog .an-article.latest-article {
      height: auto; }
      .body-section.blog .an-article.latest-article .inner {
        height: auto; }
      @media (min-width: 992px) {
        .body-section.blog .an-article.latest-article h3 {
          margin-top: 0; } }
  @media (min-width: 768px) {
    .body-section.blog-detail {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.blog-detail h1 {
    text-transform: none; }
  .body-section.blog-detail .stat-wrapper {
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #aaa; }
    .body-section.blog-detail .stat-wrapper a {
      color: #aaa; }
      .body-section.blog-detail .stat-wrapper a:hover {
        color: #c41c1c; }
  @media (min-width: 768px) {
    .body-section.related-articles {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.related-articles ul {
    padding: 0; }
    .body-section.related-articles ul li {
      -webkit-transition: 200ms;
      -moz-transition: 200ms;
      -o-transition: 200ms;
      -ms-transition: 200ms;
      transition: 200ms;
      list-style: none; }
      .body-section.related-articles ul li a {
        color: #777 !important;
        line-height: 1.5; }
      .body-section.related-articles ul li .date {
        color: #c41c1c; }
      .body-section.related-articles ul li:hover {
        text-indent: 5px; }
        .body-section.related-articles ul li:hover a {
          color: #c41c1c !important; }
  @media (min-width: 768px) {
    .body-section.contact {
      border: 1px solid #dddddd;
      padding: 10px; } }
  .body-section.contact #map-contact {
    height: 400px; }

.products-popup-detail .popup-detail {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.9em;
  z-index: 99999;
  border-radius: 4px;
  overflow: hidden;
  width: 300px; }
  .products-popup-detail .popup-detail .heading {
    padding: 8px;
    background: rgba(207, 0, 0, 0.75);
    color: #fff;
    font-weight: bold; }
  .products-popup-detail .popup-detail .content {
    padding: 8px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff; }

/* MEDIA CONTAINER */
.media-container {
  transition: none;
  -webkit-transform: translateZ(0) scale(1, 1); }
  .media-container .inner {
    position: relative; }
    .media-container .inner .hover-overlay {
      -webkit-transition: 300ms;
      -moz-transition: 300ms;
      -o-transition: 300ms;
      -ms-transition: 300ms;
      transition: 300ms;
      display: block;
      border: none !important;
      margin: 0 !important;
      padding: 0 !important;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #000;
      text-align: center; }
    .media-container .inner .hover-overlay.color {
      background-color: #c41c1c; }
    .media-container .inner .icon {
      position: absolute;
      font-size: 3em;
      opacity: 0;
      color: #fff;
      top: 0;
      left: 0;
      transition: none;
      display: block; }
    .media-container .inner .price-wrapper {
      position: absolute;
      border: none !important;
      text-align: center; }
      .media-container .inner .price-wrapper p {
        margin: 5px 0; }
      .media-container .inner .price-wrapper .price, .media-container .inner .price-wrapper .saleoff {
        font-size: 3em;
        opacity: 0;
        color: #fff;
        line-height: 30px; }
        @media (max-width: 768px) {
          .media-container .inner .price-wrapper .price, .media-container .inner .price-wrapper .saleoff {
            font-size: 4em; } }
      .media-container .inner .price-wrapper .saleoff {
        font-size: 1.5em;
        color: #c3c3c3;
        line-height: 30px;
        text-decoration: line-through; }
        @media (max-width: 768px) {
          .media-container .inner .price-wrapper .saleoff {
            font-size: 2em; } }
    .media-container .inner .price-wrapper.large .price, .media-container .inner .price-wrapper.large .saleoff {
      font-size: 4em; }
    .media-container .inner .price-wrapper.large .saleoff {
      font-size: 2em; }
    .media-container .inner .price-wrapper.small .price, .media-container .inner .price-wrapper.small .saleoff {
      font-size: 1.5em; }
    .media-container .inner .price-wrapper.small .saleoff {
      font-size: 1em; }
  .media-container:hover .hover-overlay {
    opacity: 0.6; }
  .media-container:hover .icon, .media-container:hover .price, .media-container:hover .inner .price-wrapper .saleoff {
    opacity: 1 !important; }
  .media-container:hover .caption-heading {
    bottom: -100%; }
  .media-container:hover .caption-overlay {
    bottom: 0; }

/* CSS Created by CSS CHECKBOX */
/**********************************/
/**** www.CSScheckbox.com *********/
/*general styles for all CSS Checkboxes*/
label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

input[type=checkbox].css-checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

input[type=checkbox].css-checkbox + label.css-label {
  padding-left: 20px;
  height: 15px;
  display: inline-block;
  line-height: 15px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer; }

input[type=checkbox].css-checkbox:checked + label.css-label {
  background-position: 0 -15px; }

.css-label {
  background-image: url(http://csscheckbox.com/checkboxes/dark-check-green.png); }

/*specific classes related to Checkbox skins*/
.lite-green-check {
  background-image: url(http://csscheckbox.com/checkboxes/lite-green-check.png); }

.lite-blue-check {
  background-image: url(http://csscheckbox.com/checkboxes/lite-blue-check.png); }

.lite-gray-check {
  background-image: url(http://csscheckbox.com/checkboxes/lite-gray-check.png); }

.lite-cyan-check {
  background-image: url(http://csscheckbox.com/checkboxes/lite-cyan-check.png); }

.lite-orange-check {
  background-image: url(http://csscheckbox.com/checkboxes/lite-orange-check.png); }

.lite-red-check {
  background-image: url(http://csscheckbox.com/checkboxes/lite-red-check.png); }

.lite-x-cyan {
  background-image: url(http://csscheckbox.com/checkboxes/lite-x-cyan.png); }

.lite-x-gray {
  background-image: url(http://csscheckbox.com/checkboxes/lite-x-gray.png); }

.lite-x-blue {
  background-image: url(http://csscheckbox.com/checkboxes/lite-x-blue.png); }

.lite-x-orange {
  background-image: url(http://csscheckbox.com/checkboxes/lite-x-orange.png); }

.lite-x-red {
  background-image: url(http://csscheckbox.com/checkboxes/lite-x-red.png); }

.lite-x-green {
  background-image: url(http://csscheckbox.com/checkboxes/lite-x-green.png); }

.mac-style {
  background-image: url(http://csscheckbox.com/checkboxes/mac-style.png); }

.mario-style {
  background-image: url(http://csscheckbox.com/checkboxes/mario-style.png); }

.alert-style {
  background-image: url(http://csscheckbox.com/checkboxes/alert-style.png); }

.lite-plus {
  background-image: url(http://csscheckbox.com/checkboxes/lite-plus.png); }

.dark-plus {
  background-image: url(http://csscheckbox.com/checkboxes/dark-plus.png); }

.dark-plus-cyan {
  background-image: url(http://csscheckbox.com/checkboxes/dark-plus-cyan.png); }

.dark-plus-orange {
  background-image: url(http://csscheckbox.com/checkboxes/dark-plus-orange.png); }

.dark-check-cyan {
  background-image: url(http://csscheckbox.com/checkboxes/dark-check-cyan.png); }

.dark-check-green {
  background-image: url(http://csscheckbox.com/checkboxes/dark-check-green.png); }

.dark-check-orange {
  background-image: url(http://csscheckbox.com/checkboxes/dark-check-orange.png); }

.depressed-lite-small {
  background-image: url(http://csscheckbox.com/checkboxes/depressed-lite-small.png); }

.elegant {
  background-image: url(http://csscheckbox.com/checkboxes/elegant.png); }

.depressed {
  background-image: url(http://csscheckbox.com/checkboxes/depressed.png); }

.chrome-style {
  background-image: url(http://csscheckbox.com/checkboxes/chrome-style.png); }

.web-two-style {
  background-image: url(http://csscheckbox.com/checkboxes/web-two-style.png); }

.vlad {
  background-image: url(http://csscheckbox.com/checkboxes/vlad.png); }

.klaus {
  background-image: url(http://csscheckbox.com/checkboxes/klaus.png); }

input[type=checkbox].css-checkbox.med + label.css-label.med {
  padding-left: 22px;
  height: 17px;
  display: inline-block;
  line-height: 17px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer; }

input[type=checkbox].css-checkbox.med:checked + label.css-label.med {
  background-position: 0 -17px; }

input[type=checkbox].css-checkbox.sme + label.css-label.sme {
  padding-left: 22px;
  height: 16px;
  display: inline-block;
  line-height: 16px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer; }

input[type=checkbox].css-checkbox.sme:checked + label.css-label.sme {
  background-position: 0 -16px; }

input[type=checkbox].css-checkbox.lrg + label.css-label.lrg {
  padding-left: 22px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer; }

input[type=checkbox].css-checkbox.lrg:checked + label.css-label.lrg {
  background-position: 0 -20px; }
.cart-thumbnail img{
	max-width: 150px;
}

.divOnRightBottom{
	position: fixed;
	bottom: 0;
	right: 0;
}
.fb-share-button,.fb-like{
	float: left;
	margin-bottom: 10px;
	margin-right: 10px;
}
p.status{
	clear: both;
}
.listLogoManufacturer img{
	height: 120px !important;
}
.owl-theme .owl-controls{
	display: none !important;
}
.content img{
	max-width: 99%;
}
.welcome-msg{
	font-size: 15px;
	color: #000;
	padding-bottom: 5px;
}

.p-chude{
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding-top: 8px;
}
a#cart {
    float: right;
}
.img-full{
  width: 100%;
  height: 100%;
}

.body-section.products-grid .a-product .media-container img {
    width: 100%;
    height: 100%;
}

.p-splq{
  font-weight: 600;
  font-size: 16px;
  color: black;
  min-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  -webkit-line-clamp: 2;
  height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.p-chude{
  font-weight: 600;
  font-size: 18px;
  color: white;
  background-color: #243a76;
  margin: -11px -11px 10px -11px;
  padding: 10px 5px;
}

.p-note{
  font-weight: 600;
  font-size: 14px;
  color: white;
  background-color: #243a76;
  margin: -11px -11px 10px -11px;
  padding: 10px 5px;
}

/*icon css*/
  .icon-fa{
    font-size: 18px;
    color: white;
    background-color: blue;
    padding: 10px 16px;
    border-radius: 50%;
    margin-left: 10px;
  }
  .icon-mail{
    color: white;
    font-size: 18px;
    padding: 10px;
    background-color: red;
    border-radius: 50%;

  }
  .icon-phoen{
    margin-left: 10px;
    color: white;
    background-color: green;
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;

  }

  input[type="image"] {
    max-width: 100%;
    height: auto;

}
ul.custom-ulist {
    list-style-image: url(../images/shirt-icon.png);
    padding-left: 0px;
}
img{
  max-width: 100%;
}
.body-section.product-detail .detail .nav-tabs li.active a {
    border-bottom-color: #fff;
    background: #fff;
    color: #777 !important;
    border: none;
}
.nav-tabs {
     border-bottom: none; 
}
.fix-border{
  border-radius: 0 !important;
}


.chatzalo {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #243a76;
    position: fixed;
    bottom: 60px;
   right: 10px;
    padding: 10px 20px;
    border: 1px solid #243a76;
    border-radius: 20px;
    text-decoration: none;
}
.body-section.products-grid .a-product .brief h3 a:first-child {
    color: #555;
    font-size: 1.1em;
    display: block;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;  
    -webkit-line-clamp: 2;
    display: table-row-group;
    -webkit-box-orient: vertical;
  }
.chitietsp{
  color: #69aec6ed;
  font-weight: 600;
  margin-left: 5px;
}
.price-css{
  color: #69aec6ed;
  font-weight: 900;
  font-size: 20px;
  margin-left: 5px;
}
.css-muahang{
  padding: 10px 105px;
}
.ten-sp{
  font-size: 18px !important;
  color: black !important;
  font-weight: 500;
  background-color: #fff !important;
}
.mg-bottom{
  margin-bottom: 10px; 
}
.css-name-product{
    color: #555 !important;
    width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 25px !important;
    -webkit-line-clamp: 2 !important;
   margin-bottom: 5px !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
}


.css-muahang{
  padding: 10px 105px;
  margin-top: 30px;
}

/*the end