@charset "UTF-8"; /*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
input:focus::-webkit-input-placeholder {
  color: transparent;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -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%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-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(0);
    transform: rotate(0);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-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;
}
@-webkit-keyframes wobble {
  0%,
  100% {
    -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);
  }
}
@keyframes wobble {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-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% {
    -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% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    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(0);
    -ms-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
.flipInY,
.flipOutX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
}
@-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(0);
    transform: perspective(400px) rotateY(0);
    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(0);
    -ms-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}
.flipInY {
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
    -ms-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -ms-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-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(0);
    transform: translateX(0) skewX(0);
    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(0);
    -ms-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
    -ms-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    -ms-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    -ms-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
.floating-label-wrapper,
.floating-label-wrapper .form-group {
  position: relative;
}
@media all and (max-width: 1199px) {
  .order_s_colum {
    padding: 0 6px;
  }
  .order_s_colum:nth-child(1) {
    padding-left: 6px;
  }
  .order_s_colum:nth-child(5) {
    padding-right: 6px;
  }
  .confirmation_box,
  .order_s_colum.zero_padding {
    padding: 0 6px;
  }
  .viewhistory .order_s_colum:nth-child(6) {
    padding-right: 6px;
  }
}
@media all and (max-width: 1190px) {
  .wrapper {
    max-width: 96%;
  }
}
@media all and (max-width: 991px) {
  .login_body {
    padding: 10px 80px !important;
  }
  .modal_card .modal-dialog {
    width: 96%;
  }
  .profile_image {
    margin-bottom: 18px;
  }
  .profile_pic {
    max-width: 250px;
    margin: 0 auto 10px;
  }
  .profile_section .btn-primary {
    max-width: 250px;
    margin: 0 auto;
  }
  .profile_section .zero_right {
    padding-left: 0;
  }
  .contact_info {
    margin-bottom: 20px;
    padding: 0;
  }
  .contact_form {
    padding: 0;
  }
  .contact_info h4 {
    font-size: 22px;
  }
}
@media all and (max-width: 767px) {
  .login_body {
    padding: 0;
  }
  .title_bar h1 {
    font-size: 22px;
    padding: 21px 0;
  }
  .main_header a.dryclean_logo {
    margin: 0;
    max-width: 221px;
  }
  .left_padding {
    padding: 0;
  }
  .icon_calender {
    right: 12px;
  }
  .menu_btn,
  .menu_section {
    position: absolute;
    right: 0;
  }
  .menu_btn {
    display: block;
    background: url(/images/nav-icon.png) no-repeat;
    width: 20px;
    height: 20px;
    top: 13px;
  }
  .menu_section {
    display: none;
    top: 34px;
    background: #fff;
    z-index: 250;
    width: 220px;
    border: 1px solid #ca1511;
  }
  .main_header {
    min-height: 62px;
    padding: 10px 0 0;
  }
  .menu_wrap ul {
    padding: 10px 0;
  }
  .menu_wrap ul li {
    padding: 0;
    margin: 0;
    float: none;
  }
  .menu_wrap ul li a {
    text-align: center;
    padding: 17px 10px 8px;
  }
}
@media all and (max-width: 635px) {
  .login_body {
    padding: 0;
  }
  .address_cards {
    padding-right: 0;
    white-space: normal;
  }
  #inner_scroll {
    width: 100%;
    overflow: auto;
    overflow-y: visible;
    white-space: normal;
    scroll-direction: horizontal;
    padding-bottom: 0;
  }
  #inner_scroll .address_post {
    width: 100%;
    margin: 0 0 20px;
  }
  .address_cards .btn_orange {
    position: relative;
    right: inherit;
    top: inherit;
    float: right;
    margin-bottom: 10px;
  }
  .address_posti p {
    float: none;
    display: block;
    font-size: 12px;
  }
  .profile_section h3 {
    font-size: 16px;
  }
  .default_actions {
    float: none;
    display: block;
    padding-top: 10px;
  }
}
@media all and (max-width: 600px) {
  #progressbar {
    min-width: 90%;
    margin-left: -10px;
  }
  #progress_section {
    max-width: 90%;
  }
  .login_body {
    padding: 0;
  }
}
@media all and (max-width: 560px) {
  .login_body {
    padding: 0;
  }
  .login_wrap {
    position: relative;
    top: inherit;
    left: inherit;
    margin: 0 auto;
    width: 96%;
    height: auto;
    padding: 30px 0 0;
  }
}
@media all and (max-width: 460px) {
  .login_body {
    padding: 0;
  }
  .footer p,
  .footer ul li a,
  .login_dropdown .btn,
  .top_header p {
    font-size: 10px;
  }
  .title_bar {
    min-height: 45px;
  }
  .title_bar h1 {
    font-size: 16px;
    padding: 14px 0;
  }
  .login_form {
    max-width: 96%;
  }
  .title_bar .back_btn {
    margin-top: 14px;
  }
  .securedby {
    float: none;
    display: block;
    clear: both;
    margin: 15px 0 0;
  }
}
@media all and (max-width: 430px) {
  .login_body {
    padding: 0;
  }
  #progressbar li {
    width: 44%;
    font-size: 10px;
  }
  #progressbar {
    margin-left: 0;
  }
  #progress_section {
    max-width: 80%;
  }
  #progressbar li aside {
    font-size: 10px;
    font-weight: 400;
  }
}
@media all and (max-width: 360px) {
  .login_form ul li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid silver;
  }
  .login_form ul li:last-child {
    border-bottom: 0;
  }
  .login_body {
    padding: 0;
  }
}
@media all and (max-width: 345px) {
  .field.special_textarea label {
    font-size: 11px;
  }
  .login_body {
    padding: 0;
  }
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
}
@media screen and (max-width: 600px) {
  .mainNav,
  .mainNav1 {
    height: auto;
  }
  .mainNav ul,
  .mainNav1 ul {
    width: 100%;
    display: none;
    height: auto;
  }
  .mainNav li,
  .mainNav1 li {
    width: 50%;
    float: left;
    position: relative;
  }
  .mainNav li a,
  .mainNav1 li a {
    border-bottom: 1px solid #576979;
    border-right: 1px solid #576979;
  }
  .mainNav a,
  .mainNav1 a {
    text-align: left;
    width: 100%;
    text-indent: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .mainNav,
  .mainNav1 {
    border-bottom: 0;
  }
  .mainNav ul,
  .mainNav1 ul {
    display: none;
    height: auto;
  }
  .mainNav a#pull,
  .mainNav1 a#pull1 {
    display: block;
    background-color: #283744 !important;
    width: 100%;
    position: relative;
  }
  .mainNav a#pull:after,
  .mainNav1 a#pull1:after {
    content: "";
    background: url(/images/nav-icon.png) no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 10px;
  }
}
.ngdialog.ngDialog-theme-signUp .ngdialog-content {
  width: 1030px !important;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="url"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="text"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="password"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="email"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input textarea {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 0.25em;
  min-height: 2.5em;
  padding: 0.25em 0.67em;
  width: 100%;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="url"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="text"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="password"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="email"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input textarea:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: 0;
}
* {
  margin: 0;
  padding: 0;
}
#autocomplete {
  top: 0;
  left: 0;
  width: 100%;
}
#locationField {
  height: 20px;
  margin-bottom: 20px;
}
body,
html {
  color: #666;
  font-size: 13px;
}
body {
  padding-bottom: 0;
}
a,
img {
  border: none;
  outline: 0 !important;
}
.img-responsive,
.max-width {
  width: 100%;
}
.padd-zero {
  padding-left: 0;
  padding-right: 0;
}
ol,
ul {
  padding-left: 17px;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
}
.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.mainNav,
.mainNav1 {
  height: 40px;
  width: 100%;
  background: #e3433d;
  font-family: Open Sans;
  position: relative;
  float: left;
}
.mainNav ul,
.mainNav1 ul {
  padding: 0;
  margin: 0 auto;
  width: 510px;
  height: 40px;
}
.mainNav li,
.mainNav1 li {
  display: inline;
  float: left;
}
.mainNav a,
.mainNav1 a {
  color: #fff;
  display: inline-block;
  width: auto;
  padding: 0 15px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
}
.mainNav li a,
.mainNav1 li a {
  font-size: 16px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mainNav a.active,
.mainNav a:hover,
.mainNav1 a.active,
.mainNav1 a:hover {
  background-color: #f3f3f3;
  color: #e3433d;
}
.mainNav a#pull,
.mainNav1 a#pull {
  display: none;
}
.color-email {
  color: #fff !important;
}
.color-email:hover {
  color: #fffa6d !important;
}
ul.chec-radio li.pz {
  display: inline;
}
.chec-radio .radio-inline .clab {
  border-radius: 25px;
  width: 55px;
  border: 1px solid #000;
  cursor: pointer;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  float: left;
  margin: 0 0 5px;
  height: 21px;
}
.chec-radio label.radio-inline input[type="checkbox"]:checked + div:before,
.chec-radio label.radio-inline input[type="radio"]:checked + div:before {
  content: "\e013";
  margin-right: 5px;
  font-family: "Glyphicons Halflings";
}
.chec-radio label.radio-inline input[type="radio"] {
  display: none;
}
.chec-radio label.radio-inline input[type="radio"]:checked + div {
  color: #fff;
  background-color: #e32821;
  border: none !important;
}
.top_header {
  min-height: 27px;
  background: #000;
}
.wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.top_header p {
  line-height: 27px;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  float: left;
}
.top_header p i {
  font-size: 16px;
  vertical-align: top;
  margin-top: 5px;
  margin-right: 5px;
}
.login_dropdown {
  float: right;
}
.login_dropdown .btn {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  border: 0;
  padding: 0;
  background: 0 0;
  outline: 0;
  line-height: 27px;
}
.btn-primary,
.form-control {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.login_dropdown .btn:focus,
.login_dropdown .btn:hover {
  outline: 0;
}
.login_dropdown .dropdown-menu {
  left: inherit;
  right: 0;
  top: 24px;
}
.login_dropdown .dropdown-menu > li > a {
  padding: 3px 11px;
  text-align: center;
}
.main_header {
  background: #fff;
  min-height: 60px;
  padding: 10px 0;
}
.menu_wrap ul,
.menu_wrap ul li {
  list-style: none;
  background: 0 0;
  margin: 0;
}
.main_header a.dryclean_logo {
  display: block;
  float: left;
  margin: 0;
  max-width: 250px;
}
.main_header a.dryclean_logo img {
  vertical-align: top;
  width: 100%;
}
.menu_wrap {
  float: right;
}
.menu_wrap ul {
  padding: 0;
}
.menu_wrap ul li {
  line-height: inherit;
  padding: 0 17px;
  float: left;
}
.menu_wrap ul li:last-child {
  padding-right: 0;
}
.menu_wrap ul li a {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 22px 0 0;
  display: block;
}
.menu_wrap ul li a:hover,
.menu_wrap ul li.active a {
  background: url("/images/menu_before.png") top center no-repeat;
  color: #ca1511;
}
.title_bar {
  min-height: 60px;
  background: url("/images/header_pattern.jpg") center #b91c16;
  margin-bottom: 12px;
}
.title_bar h1 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  padding-top: 21px;
  text-transform: uppercase;
  float: left;
}
.title_bar .back_btn {
  float: right;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-top: 20px;
}
.footer p,
.footer ul li a {
  font-size: 12px;
  font-weight: 400;
}
.footer {
  background: #000;
  border-top: 3px solid #1b1b1b;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 40px;
  z-index: 300;
}
.footer ul,
.footer ul li {
  margin: 0;
  background: 0 0;
  list-style: none;
}
.footer p {
  color: #fff;
  margin: 0;
  line-height: 36px;
  float: left;
}
.footer ul {
  padding: 0;
  float: right;
}
.footer ul li {
  float: left;
  padding: 0 8px;
  line-height: 35px;
}
.footer ul li a {
  color: #b8b8b8;
  text-decoration: none;
}
.footer ul li a:hover {
  text-decoration: underline;
}
.left_padding {
  padding: 0 20px 0 0;
}
.zero_padding {
  padding: 0;
}
.form-control {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 13px;
  font-weight: 400;
  color: #000;
  padding: 5px 9px;
  height: 37px;
  margin-bottom: 0;
}
input[type="number"].form-control {
  color: #000;
}
.order_date .form-control {
  background: #f1f1f1;
}
.form-control::-webkit-input-placeholder {
  color: #575757;
  font-weight: 400;
}
.form-control:-moz-placeholder {
  color: #575757;
  font-weight: 400;
}
.form-control::-moz-placeholder {
  color: #575757;
  font-weight: 400;
}
.form-control:-ms-input-placeholder {
  color: #575757;
  font-weight: 400;
}
.icon_calender {
  position: absolute;
  right: 29px;
  top: 8px;
  color: #101010;
  font-size: 14px;
}
.btn_orange {
  background: #d88f01;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border: 0;
  padding: 7px 11px;
}
.btn_orange:focus,
.btn_orange:hover {
  border: 0;
  outline: 0;
  box-shadow: none;
  color: #fff;
}
.placeorder_sec .btn_orange {
  float: right;
  margin: 4px 0 0;
}
.placeorder_sec .form-control {
  font-weight: 700;
}
.placeorder_sec textarea.form-control {
  height: 79px;
  padding: 9px;
  margin: 0 0 10px;
  resize: none;
}
.btn-default,
.btn-primary {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  outline: 0;
  font-weight: 400;
}
.placeorder_sec .btn-default,
.placeorder_sec .btn-primary {
  padding: 8px 25px;
}
.btn-primary {
  background: #ca1511;
  border-radius: 3px;
  color: #fff;
  border: 0;
  padding: 6px 10px;
}
.btn-primary:active,
.btn-primary:hover {
  background-color: #ca1511;
  color: #fff;
  outline: 0;
}
.btn-primary:focus {
  background-color: #ca1511;
}
.buttonPrimary {
  background-color: #ca1511 !important;
  color: #fff !important;
}
.btn-default {
  background: #333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  border: 0;
  padding: 6px 18px;
}
.btn-default:active,
.btn-default:focus,
.btn-default:hover {
  outline: 0;
}
.btn-default.active,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default.focus,
.btn-default:active,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover {
  color: #fff;
  background: #333;
  border-color: inherit;
}
.radio_button input[type="radio"]:checked ~ label,
.radio_button:hover label {
  color: #000;
}
.radio_button {
  position: relative;
  float: left;
  margin-right: 13px;
}
.radio_button input[type="radio"] {
  position: absolute;
  visibility: hidden;
}
.radio_button label {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 12px;
  padding: 0 0 0 20px;
  /* z-index: 9; */
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  line-height: 17px;
  margin: 0;
}
.radio_button .check {
  display: block;
  position: absolute;
  border: 1px solid #6a6a6a;
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 0;
  left: 0;
  /* z-index: 5; */
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}
.radio_button:hover .check {
  border: 1px solid #6a6a6a;
}
.radio_button .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  height: 7px;
  width: 7px;
  top: 3px;
  left: 3px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
.radio_button input[type="radio"]:checked ~ .check {
  border: 1px solid #6a6a6a;
}
.radio_button input[type="radio"]:checked ~ .check::before {
  background: #b91c16;
}
.ui-widget.ui-widget-content {
  z-index: 1500 !important;
}
.radio_wrap {
  padding: 8px 0;
}
.radio_wrap h4 {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: #ca1511;
  float: left;
  line-height: 19px;
  min-width: 236px;
}
.placeorder_sec .btn-primary {
  margin-right: 14px;
}
.menu_btn {
  display: block;
}
.address_cards {
  padding-right: 98px;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
  border-bottom: #bebebe 1px solid;
  padding-bottom: 3px;
  margin-bottom: 6px;
  min-height: 65px;
}
#inner_scroll {
  width: 100%;
  overflow: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-direction: horizontal;
  padding-bottom: 5px;
}
#inner_scroll .address_post {
  width: 326px;
  margin: 0 30px 0 0;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
#inner_scroll::-webkit-scrollbar {
  width: 2px;
  height: 4px;
}
#inner_scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#inner_scroll::-webkit-scrollbar-thumb {
  background-color: #656565;
  outline: #cbcbcb solid 1px;
}
#inner_scroll .address_post h3 {
  font-size: 16px;
  color: #000;
  margin: 0 0 7px;
  line-height: inherit;
}
#inner_scroll .address_post h4 {
  margin: 0 0 7px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  word-wrap: break-word;
}
#inner_scroll .address_post h3 span {
  display: block;
  float: left;
  width: 18px;
  height: 18px;
  margin: 2px 6px 0 0;
  padding: 0;
  background: #ca1511;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
#inner_scroll .address_post p {
  font-size: 14px;
  color: #000;
  margin: 0 0 8px;
  line-height: 20px;
  min-height: 60px;
  word-wrap: break-word;
  font-family: monospace;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
}
.btn-success,
.confirmation_box label,
.order_colum h4,
.order_colum p {
  font-family: "Open Sans", sans-serif;
}
#inner_scroll .address_post p .doted {
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
/* #inner_scroll .address_post .btn-primary {
  display: inline-block;
  float: none;
  margin: 0 0 8px;
  background: #aeaeae;
  color: #000;
  width: 35%;
} */
#inner_scroll .address_post.active_post .btn-primary {
  background: #ca1511;
  color: #fff;
}
#inner_scroll .address_post .btn-default {
  min-width: 100px;
  background: #cbcbcb;
  color: #000;
  /* margin-bottom: 7px; */
  margin-left: 2px;
}
#inner_scroll .address_post .btn-default:last-child {
  /* float: right; */
}

.buttonDefault {
  margin-left: 2px !important;
}
.address_cards .btn_orange {
  position: absolute;
  right: 0;
  top: 10px;
}
.address_cards .btn_orange i {
  margin-right: 3px;
}
.login_body {
  padding: 16px 190px;
  background: #f1f1f1;
}
.login_wrap .dryclean_logo {
  float: none;
  display: block;
  max-width: 385px;
}
.login_wrap .dryclean_logo img {
  vertical-align: top;
  width: 100%;
}
.model-signUp {
  z-index: 9999;
}
.login_inner {
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  -webkit-box-shadow: 0 0 30px -1px rgba(1, 1, 1, 0.3);
  -moz-box-shadow: 0 0 30px -1px rgba(1, 1, 1, 0.3);
  box-shadow: 0 0 30px -1px rgba(1, 1, 1, 0.3);
  text-align: center;
  margin-bottom: 15px;
  min-height: 380px;
}
.login_inner h2 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-bottom: #cfcfcf 1px solid;
  padding: 12px 0;
}
.fieldset .form-control,
.login_wrap p {
  font-weight: 400;
}
.login_form {
  margin: 0 auto;
  padding: 10px 35px 25px;
}
.fieldset {
  position: relative;
  margin: 0 0 14px;
}
.fieldset i {
  position: absolute;
  right: 11px;
  top: 7px;
  font-size: 16px;
  color: #ababab;
}
.fieldset .form-control:focus {
  border: 1px solid #ca1511;
}
.login_form .btn-primary {
  display: block;
  padding: 7px 10px;
  margin-bottom: 20px;
  width: 100%;
}
.login_form ul {
  display: block;
  max-width: 90%;
  margin: 10px auto 0;
  padding: 0;
  list-style: none;
  border-top: silver 1px solid;
  border-bottom: silver 1px solid;
}
.login_form ul li {
  display: block;
  width: 50%;
  float: left;
  list-style: none;
  text-align: center;
  margin: 0;
  background: 0 0;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  padding: 10px 0;
  border-right: silver 1px solid;
}
.login_form ul li a {
  color: #d93731;
  text-decoration: none;
  font-size: 12px;
}
.login_form ul li a:hover {
  text-decoration: underline;
}
.login_form ul li:last-child {
  border: 0;
}
.pad_top {
  padding: 50px 35px 10px;
}
.login_wrap p {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin: 0;
  padding-top: 10px;
}
.login_wrap p span {
  color: #d22f28;
}
.modal_wrape {
  display: table;
  height: 100%;
  width: 100%;
}
.modal-cell {
  display: table-cell;
  vertical-align: middle;
}
.confirmation_box input[type="checkbox"],
.default_actions a,
.profile_pic img,
.total_orders span span,
.we_accept img {
  vertical-align: top;
}
.modal-header {
  padding: 11px;
  border-bottom: 1px solid #9f9f9f;
  text-align: center;
  position: relative;
}
.modal-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.modal-header .modalcrox {
  font-size: 26px;
  padding: 0;
  margin: -4px 0 0;
  position: absolute;
  right: 5px;
  top: 8px;
  opacity: 1;
  color: #666;
  line-height: 15px;
  text-decoration: none;
}
.modal-header .modalcrox:focus,
.modal-header .modalcrox:hover {
  outline: 0;
  text-decoration: none;
}
.modal-body {
  padding: 16px;
}
.modal-body .form-control {
  height: 36px;
  /* padding: 5px 12px; */
  font-weight: 400;
}
.modal-body .form-control:focus {
  border: 1px solid #ca1511;
  font-weight: 400;
}
.modal-body .modal_col {
  padding: 0 4px;
  position: relative;
}
.checkboxstyle {
  width: 28px;
  height: 28px;
  position: relative;
  /* background: #fcfff4; */
  /* background: -webkit-linear-gradient(top, #fcfff4 0, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(to bottom, #fcfff4 0, #dfe5d7 40%, #b3bead 100%);
  box-shadow: inset 0 1px 1px #fff, 0 1px 3px rgba(0, 0, 0, 0.5); */
  float: left;
}
.checkboxstyle label {
  width: 28px;
  height: 28px;
  cursor: pointer;
  position: absolute;
  left: 3px;
  top: 3px;
  /* background: -webkit-linear-gradient(top, #e02d29 0, #b51410 100%);
  background: linear-gradient(to bottom, #e02d29 0, #b51410 100%);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), 0 1px 0 #fff; */
}
.checkboxstyle label:after {
  content: "";
  width: 13px;
  height: 7px;
  position: absolute;
  top: 3px;
  left: 2px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: 0 0;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.checkboxstyle label:hover::after {
  opacity: 0.3;
}
.checkboxstyle input[type="checkbox"] {
  visibility: hidden;
}
.checkboxstyle input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.chkbox_label {
  float: left;
  line-height: 23px;
  font-weight: 400;
  font-size: 12px;
  color: #000;
  margin: 0 0 0 9px;
}
.modal-footer {
  padding: 5px 20px 16px;
  text-align: left;
  border-top: 0;
}
.modal_card .modal-dialog {
  width: 853px;
}
.modal_card .modal-dialog .icon_calender {
  right: 13px;
}
.modal_card .modal-header h4 {
  float: left;
  text-align: left;
  padding: 7px 0;
}
.modal_card .modal-header {
  padding: 5px 20px;
}
.we_accept {
  float: right;
  padding-right: 20px;
}
.we_accept label {
  margin: 0 10px 0 0;
  float: left;
  font-weight: 400;
  font-size: 11px;
  color: #333;
  line-height: 20px;
}
.address_details .addnew_btn,
.personal_detail .edit_btn,
.securedby {
  float: right;
}
.securedby {
  margin-bottom: 0;
}
.securedby h6 {
  font-size: 12px;
  color: #333;
  font-weight: 400;
  margin: 0 0 4px;
}
.order_summary {
  padding-top: 0;
}
.order_s_colum {
  padding: 0 6px;
}
.back_generic{
  background-color: #ededed;
  padding: 15px 0;
  border-radius: 6px;
  /* margin-bottom: 50px; */
}
/* .order_s_colum:nth-child(1) {
  padding-left: 0;
}
.order_s_colum:nth-child(4) {
  padding-right: 0;
} */
.order_colum,
.order_colum_payment {
  padding: 0 12px;
  min-height: 84px;
  word-wrap: break-word;
}
.order_colum {
  background: #ededed;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.order_colum h4 {
  margin: 0;
  font-size: 15px;
  color: #ca1511;
  font-weight: 600;
  padding: 7px 0 0;
  position: relative;
}
.order_colum p,
.order_history .search_form .fa-search {
  font-size: 14px;
}
.order_colum h4 span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  padding: 5px 0 0;
  line-height: 20px;
}
.order_colum p {
  margin: 5px 0 0;
  font-weight: 400;
  color: #000;
}
.confirmation_box {
  margin-bottom: 20px;
  clear: both;
}
.confirmation_box label {
  display: inline-block;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 22px;
}
.confirmation_box label a {
  color: #ca1511;
  text-decoration: none;
}
.zero_left {
  padding-left: 0;
}
.zero_right {
  padding-right: 0;
}
.confirmation_box .checkboxstyle {
  margin-right: 10px;
}
.order_s_colum.zero_padding {
  padding: 0;
}
.order_history .search_form {
  position: relative;
  margin: 0 0 12px;
}
.order_history .search_form button {
  position: absolute;
  background-color: transparent;
  color: #9c9c9c;
  border: 0;
  top: 6px;
  right: 9px;
}
.order_history .search_form button:focus,
.order_history .search_form button:hover {
  outline: 0;
}
.edit_btn,
.profile_section h3 {
  font-weight: 400;
  font-size: 18px;
}
.order_history .search_form .form-control {
  height: 30px;
  font-weight: 400;
  margin-bottom: 0;
}
.order_history .search_form .form-group {
  margin-bottom: 0;
}
.orderHistoryTable {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow-y: auto;
}
.address_posti,
.btn-success {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.orderHistoryTable table {
  margin: 0;
}
.orderHistoryTable thead {
  background-color: #e3e3e3;
}
.orderHistoryTable .blueText {
  color: #2f9ed2;
}
.orderHistoryTable .greenText {
  color: #2fb210;
}
.orderHistoryTable .redText {
  color: #d70000;
}
.orderHistoryTable .orangeText {
  color: #eb8a00;
}
.viewhistory .order_s_colum:nth-child(5) {
  padding-right: 6px;
}
.viewhistory .order_s_colum:nth-child(6) {
  padding-right: 0;
}
.profile_section h3 {
  color: #ca1511;
  margin: 0 0 8px;
  padding: 0 6px;
}
.profile_pic {
  margin: 0 0 10px;
}
.profile_pic img {
  width: 100%;
}
.profile_section .btn-primary {
  display: block;
  margin: 0;
  width: 100%;
}
.personal_detail {
  margin-bottom: 3px;
}
.edit_btn {
  color: #ca1511;
}
.addnew_btn {
  font-weight: 600;
  font-size: 11px;
  color: #ca1511;
  margin: 4px 0 0;
  text-decoration: none;
}
.address_posti p,
.signuplabel {
  font-weight: 400;
  font-size: 14px;
}
.address_details {
  margin-bottom: 3px;
}
.address_posti {
  background: #e9e9e9;
  padding: 10px 12px;
  margin: 0 6px 6px;
  border-radius: 3px;
  min-height: 67px;
}
.address_posti p {
  line-height: inherit;
  margin: 0;
  float: left;
  color: #000;
  max-width: 85%;
  word-wrap: break-word;
}
.default_actions {
  float: right;
}
.default_actions .radio_button {
  margin-right: 3px;
}
.default_actions a {
  float: right;
  font-size: 14px;
  color: #ca1511;
  margin-left: 10px;
}
.pay_det .default_actions {
  padding: 0;
}
.signupmodal label {
  margin-right: 14px;
}
.signuplabel {
  margin-left: 0;
  margin-right: 10px;
  line-height: 23px;
  color: #000;
  float: left;
}
.chkbox_label a {
  color: #d93933;
}
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #ca1511;
  border-color: #ca1511;
}
.contact_info h4,
.contact_info h5 {
  color: #ca1511;
  padding: 0;
  font-weight: 400;
}
.contact_form textarea.form-control {
  margin-bottom: 10px;
}
.contact_info h4 {
  font-size: 24px;
  margin: 0 0 15px;
}
.contact_info h5 {
  font-size: 18px;
  margin: 0 0 8px;
}
.contact_info p {
  font-size: 14px;
  margin: 0;
  padding: 2px 0;
  color: #000;
}
.contact_info p i {
  min-width: 24px;
  color: #ca1511;
}
.contact_form select.form-control {
  font-weight: 400;
}
ul.social-network {
  list-style: none;
  display: block;
  padding: 0;
  margin: 10px 0 17px;
}
ul.social-network li {
  display: inline;
  margin: 0 5px 0 0;
}
.social-network a.icoRss:hover {
  background-color: #f56505;
}
.social-network a.icoFacebook:hover {
  background-color: #3b5998;
}
.social-network a.icoTwitter:hover {
  background-color: #3cf;
}
.social-network a.icoGoogle:hover {
  background-color: #bd3518;
}
.social-network a.icoVimeo:hover {
  background-color: #0590b8;
}
.social-network a.icoLinkedin:hover {
  background-color: #007bb7;
}
.social-network a.icoFacebook:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoLinkedin:hover i,
.social-network a.icoRss:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoVimeo:hover i {
  color: #fff;
}
.socialHoverClass,
a.socialIcon:hover {
  color: #44bcdd;
}
.social-circle li a {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 25px;
  height: 25px;
  font-size: 14px;
}
.exp_label,
.order_colum span.summary_span {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
.dropdown-toggle.btn:after,
.dropdown-toggle:after,
.new_discount {
  display: none;
}
.social-circle li i {
  margin: 0;
  line-height: 25px;
  text-align: center;
}
.social-circle li a:hover i,
.triggeredHover {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.social-circle i {
  color: #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.social-network a {
  background-color: #ca1511;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-content {
  padding: 0;
}
.special_textarea {
  margin-top: 10px;
}
.special_textarea .form-control {
  font-weight: 400;
}
.field {
  margin-bottom: 16px;
}
.login_form .field {
  margin-bottom: 28px;
}
.ngdialog.ngdialog-theme-default.model-login .ngdialog-content {
  padding: 0;
  background: #fff;
}
.ngdialog.ngdialog-theme-default.model-login .modal-header h4 {
  font-weight: 400;
}
.ngdialog.ngdialog-theme-default.model-login .field {
  margin-bottom: 0;
}
.empty-posts {
  padding: 16px 0 0;
}
.credit_post #inner_scroll .address_post p {
  min-height: 80px;
}
.ngdialog.ngdialog-theme-default.editprofile .ngdialog-content {
  background: #fff;
  padding: 0;
}
.editprofile {
  font-weight: 400;
}
.block-ui-message {
  background-color: transparent !important;
}
.placeorder_sec label.has-error {
  padding: 4px 3px;
  top: 38px;
  width: 90%;
  margin: 0;
}
.placeorder_sec .contact_form label.has-error {
  width: 100%;
}
.placeorder_sec .special_textarea label.has-error {
  top: 80px;
  width: 100%;
}
.placeorder_sec .contact_form .comments_area label.has-error {
  top: 80px;
}
.addresspop label.has-error,
.editprofile label.has-error {
  width: 98.5%;
}
.exp_date select.form-control {
  padding: 5px 3px;
  float: left;
  width: 48%;
}
.exp_date select.form-control:first-child {
  border-right: 0;
}
.exp_date select.form-control:last-child {
  border-left: 0;
}
.exp_date label {
  position: absolute;
  top: -11px;
  opacity: 1;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  left: 7px;
  color: #000;
  background: #fff;
  padding: 0 5px;
  border-radius: 2px;
  line-height: 18px;
}
.exp_date .icon_calender {
  right: 15px;
}
.editprofile .chkbox_label {
  margin-right: 10px;
}
.profile_pic {
  overflow: hidden;
  position: relative;
}
.profile_upload {
  position: absolute;
  width: 100%;
  height: 30px;
  background: rgba(202, 21, 17, 0.7);
  left: 0;
  bottom: -30px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: ease-out 0.7s;
  -moz-transition: ease-out 0.7s;
  -o-transition: ease-out 0.7s;
  transition: ease-out 0.7s;
}
.profile_pic:hover .profile_upload {
  bottom: 0;
  opacity: 1;
  -webkit-transition: ease-out 0.7s;
  -moz-transition: ease-out 0.7s;
  transition: ease-out 0.7s;
}
.custom-file-input {
  color: transparent;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before,
.profile_upload::before {
  color: #000;
  display: inline-block;
  background: url(/images/cameraupload.png) left 5px center no-repeat;
  outline: 0;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  content: "";
  width: 100%;
  height: 30px;
}
.custom-file-input:active,
.custom-file-input:hover::before {
  outline: 0;
}
.confirmation_box label {
  font-size: 16px;
}
.order_summary .btn-primary {
  padding: 6px 10px;
  min-width: 115px;
}
.btn-default {
  min-width: 115px;
}
.forget-modal .modal-body {
  overflow: visible;
}
.forget-modal label.has-error {
  width: 98%;
}
.forget-modal .btn-primary {
  margin-top: 8px;
}
.contact_form .btn-primary {
  margin-top: 12px;
}
.profile_upload a {
  position: absolute;
  left: 38px;
  top: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.profile_upload a:hover {
  text-decoration: none;
}
.force-select {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
}
.pop-content-height-400 {
  max-height: 400px;
}
.check_erores span {
  margin: 0;
  color: #e02d29;
  font-size: 13px;
  padding: 6px 0 0 4px;
  display: block;
  clear: both;
}
.btn-success {
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 6px 10px;
}
.modalbox .modal-dialog.fastest .modal-body-inner:before {
  display: inline-block;
  float: left;
  margin-top: -0.3em;
  margin-right: 9px;
  font-family: "Glyphicons Halflings";
  font-size: 20px;
  color: #ca1511;
  content: "\e086";
}
.modalbox .modal-dialog.fastest .modal-body {
  padding: 16px 16px 3px;
}
.modalbox .modal-dialog.fastest .modal-footer {
  padding: 7px 15px 14px;
}
::-webkit-scrollbar,
::-webkit-scrollbar-button {
  width: 15px;
}
.orderHistoryTable table tr td.open {
  color: #eba706 !important;
}
.orderHistoryTable table tr td.pickedup {
  color: #098fb4 !important;
}
.orderHistoryTable table tr td.pickfromstore {
  color: #b002b6 !important;
}
.orderHistoryTable table tr td.deliveredtostore {
  color: #de700e !important;
}
.orderHistoryTable table tr td.readyonstore {
  color: #26d077 !important;
}
.orderHistoryTable table tr td.deliveredcustomer {
  color: #3f9f08 !important;
}
.orderHistoryTable table tr td.pickedupstore {
  color: #4dbcda !important;
}
.orderHistoryTable table tr td.invoicecreated {
  color: #084557 !important;
}
.exp_fields {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ccc;
  min-height: 36px;
}
.exp_label {
  position: absolute;
  transition: 0.2s ease all;
  top: -10px;
  opacity: 1;
  margin: 0;
  left: 4px;
  color: #000;
  background: #fff;
  padding: 0 5px;
  border-radius: 2px;
  line-height: 15px;
  text-align: left;
}
#progressbar li,
#progressbar li aside,
.order_colum_payment h4 {
  font-family: "Open Sans", sans-serif;
}
.exp_fields .form-control {
  width: 48%;
  float: left;
  margin-right: 4%;
  height: 25px;
  margin-top: 5px;
}
.exp_fields .form-control:last-child {
  margin-right: 0;
}
.order_colum span.summary_span {
  line-height: 18px;
  margin: 0;
  padding: 0;
  color: #ca1511;
}
#progress_section {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  counter-reset: section;
  padding-top: 25px;
}
#progressbar {
  margin-bottom: 5px;
  counter-reset: step;
  padding: 0;
  min-width: 528px;
  display: inline-block;
}
#progressbar li {
  list-style-type: none;
  color: #666;
  text-transform: capitalize;
  font-size: 15px;
  width: 47%;
  float: left;
  position: relative;
}
#progressbar li:before {
  counter-increment: section;
  width: 26px;
  line-height: 26px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0;
  position: inherit;
  z-index: 2;
  content: counter(section);
  background: #e3e3e3;
  color: #000;
  font-size: 13px;
}
#progressbar li:after {
  content: "";
  width: 100%;
  height: 5px;
  background: #e0e0e0;
  position: absolute;
  left: 0;
  top: 11px;
  z-index: 1;
}
#progressbar li.completed:after,
#progressbar li.completed:before {
  background: #fff;
  color: #000;
}
#progressbar li.completed a {
  color: #fff;
}
#progressbar li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
#progressbar li.active:before {
  background: #d48c02;
  color: #fff;
}
#progressbar li.active:after {
  background: #e3e3e3;
}
#progressbar li:last-child {
  width: 20px;
}
#progressbar li aside {
  position: absolute;
  top: -20px;
  left: -42px;
  width: 115px;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  color: #e3e3e3;
}
#progressbar li.active aside {
  color: #fff;
}
.total_orders {
  float: right;
  padding: 8px 0 0;
  font-size: 12px;
  color: #fff;
}
.total_orders span {
  background: #e19501;
  padding: 7px 14px;
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  -webkit-bor5der-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}
.total_orders span span {
  display: inline-block;
  padding: 0;
  -webkit-bor5der-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#inner_scroll .address_post {
  position: relative;
}
.expired_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/images/expired_card.png) top center no-repeat rgba(255, 255, 255, 0.6);
}
.address_posti {
  position: relative;
}
.address_posti .expired_card {
  background: url(../images/profile_card_exp.png) 20% 0 no-repeat rgba(255, 255, 255, 0.6);
  z-index: 40;
}
.address_posti .expired_card a {
  float: right;
  font-size: 14px;
  color: #ca1511;
  vertical-align: top;
  margin-right: 12px;
  margin-top: 10px;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #d88f01;
}
.dropdown-menu {
  min-width: 98px;
}
.orderHistoryTable .table tbody tr td a.btn_readmore {
  float: right;
  font-size: 11px;
  text-decoration: none;
  color: #d88f01;
  margin: 1px 0 0;
}
.orderHistoryTable .table tbody tr td a.btn_readmore:hover {
  text-decoration: underline;
}
.default_actions .radio_button {
  margin: 0;
  float: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.checkboxstyle.agree_check input[type="checkbox"] {
  visibility: visible;
  outline: 0;
  margin: 4px 0 0 4px;
}
.checkboxstyle.agree_check input[type="checkbox"]:focus {
  outline: #bebebe 5px;
}
.checkboxstyle.agree_check input[type="checkbox"]:focus + label {
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.radiobtnstyle.agree_check input[type="radio"] {
  visibility: visible;
  outline: 0;
  margin: 4px 0 0 4px;
}
.radiobtnstyle.agree_check input[type="radio"]:focus {
  outline: #bebebe 5px;
}
.radio_selections .radio_button input[type="radio"] {
  margin: 1px 0 0 1px;
  visibility: visible;
}
.radio_selections .radio_button .check {
  background: #fff;
}
.order_colum h4 span.status10 {
  color: #eba706 !important;
}
.order_colum h4 span.status20 {
  color: #098fb4 !important;
}
.order_colum h4 span.status40 {
  color: #4dbcda !important;
}
.order_colum h4 span.status30 {
  color: #de700e !important;
}
.order_colum h4 span.status35 {
  color: #26d077 !important;
}
.order_colum h4 span.status50 {
  color: #3f9f08 !important;
}
.card_detail .modal-body {
  white-space: normal;
  word-wrap: break-word;
}
.order_colum label {
  font-size: 14px;
}
.order_colum_payment {
  background: #ededed;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* Tipping Styles Start */

.tip-heading {
  font-weight: 700;
  color: #000;
  margin: 10px 0 10px;
  line-height: 22px;
}

.tipping {
  margin-bottom: 0;
  padding: 0;
  color: #fff;
}
.tipping ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.tipping ul li {
  float: left;
  padding: 16px 22px;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
  font-size: 14px;
}

.tipping .other {
  margin-left: 32px;
  padding: 12.6px 16px;
  font-size: 14px;
}

.dolar {
  color: black;
  display: inline;
  position: relative;
  right: 27px;
  font-size: 18px;
}

.no_tip:hover {
  background-color: #ca1511;
  color: #fff;
}

.other label {
  color: black;
  display: inline;
  position: relative;
  right: 36px;
  font-size: 18px;
}
.other input {
  padding: 0;
  color: #000;
  border: 0;
  width: 60px;
}

.tipping .done {
  background-color: #ca1511;
  color: #fff;
}

.disclaimer {
  color: #ca1511;
  font-size: 13px;
  margin-top: 10px;
}
.tipping ul li.active {
  background-color: #ca1511;
  color: #fff;
}

/* Tipping Styles End */

.order_colum_payment h4 {
  margin: 0;
  font-size: 15px;
  color: #ca1511;
  font-weight: 600;
  padding: 7px 0 0;
  position: relative;
}
.fieldset .form-control {
  height: 32px;
}
.login_inner h2 {
  margin: 0 0 11px;
}
.login_wrap .dryclean_logo {
  margin: 0 auto 25px;
}
.login_body label.has-error {
  top: 30px;
}
#ResultMsg {
  color: #d22f28;
  padding-top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.login_form .btn-primary {
  margin-top: 5px;
}
.login_body .floating-label {
  top: 6px;
}
.exp_label,
.floating-label {
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: none;
}
.floating-label {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  position: absolute;
  left: 12px;
  display: block;
  top: 8px;
  transition: 0.2s ease all;
  text-align: left;
}
.field,
.order_date {
  position: relative;
}
.for-register .floating-label {
  left: 15px;
  top: 7px;
}
.form-control:focus ~ .floating-label,
.form-control:not(.empty) ~ .floating-label {
  top: -9px;
  opacity: 1;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  left: 4px;
  color: #000;
  background: #fff;
  padding: 0 5px;
  border-radius: 2px;
  line-height: 18px;
}
.modal-body .form-control:focus ~ .floating-label,
.modal-body .form-control:not(.empty) ~ .floating-label {
  left: 11px;
}
.for-register .form-control:focus ~ .floating-label,
.for-register .form-control:not(.empty) ~ .floating-label {
  left: 9px;
}
.registration-form .form-control.empty ~ .floating-label {
  opacity: 1;
}
.has-feedback label ~ .form-control-feedback {
  top: 0;
}
.order_date {
  margin-bottom: 16px;
}
label.has-error {
  margin: 0 3px;
  font-weight: 400;
  padding: 4px 0;
  position: absolute;
  left: 0;
  top: 37px;
  width: 97%;
  font-size: 12px;
  text-align: center;
  z-index: 100;
  background: #a94442;
  line-height: 16px;
  border-radius: 4px;
  color: #fff !important;
  min-height: 24px;
}
.login_body label.has-error {
  margin: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.17);
  box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.17);
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
  background: #fff;
  padding: 0;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}
.menu_wrap button {
  width: 30px;
  height: 30px;
  border-radius: 0;
}
.goggle_logos img {
  width: 35%;
}
.app_store img {
  float: right;
}
.button_control {
  width: 88% !important;
}
.search-right {
  float: right;
  padding: 10px 34px;
}
@media all and (max-width: 1199px) {
  #pageContent {
    margin-bottom: 10%;
  }
  .order_s_colum {
    padding: 0 6px;
  }
  .order_s_colum:nth-child(1) {
    padding-left: 6px;
  }
  .order_s_colum:nth-child(5) {
    padding-right: 6px;
  }
  .confirmation_box,
  .order_s_colum.zero_padding {
    padding: 0 6px;
  }
  .viewhistory .order_s_colum:nth-child(6) {
    padding-right: 6px;
  }
}
@media all and (max-width: 1190px) {
  .wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media all and (max-width: 992px) {
  .goggle_logos img {
    width: 35%;
    margin-left: 15px;
    margin-right: 15px;
  }
  .login_body {
    padding: 0 !important;
  }
  .main_header {
    padding: 10px 0;
  }
  .wrapper {
    padding: 0 20px;
  }
  .content_section {
    margin-bottom: 10%;
  }
}
@media all and (max-width: 991px) {
  goggle_logos .col-md-6 {
    width: 50% !important;
  }
  .modal_card .modal-dialog {
    width: 96%;
  }
  .profile_image {
    margin-bottom: 18px;
  }
  .profile_pic {
    max-width: 250px;
    margin: 0 auto 10px;
  }
  .profile_section .btn-primary {
    max-width: 250px;
    margin: 0 auto;
  }
  .profile_section .zero_right {
    padding-left: 0;
  }
  .contact_info {
    margin-bottom: 20px;
    padding: 0;
  }
  .contact_form {
    padding: 0;
  }
  .contact_info h4 {
    font-size: 22px;
  }
  #progressbar {
    min-width: 359px;
  }
  .title_bar h1 {
    font-size: 14px;
  }
  .block-get {
    position: absolute;
    top: 97px;
    display: inline-block;
    width: 18%;
    right: 0;
  }
  .button_control {
    width: 80% !important;
  }
}
.referal_modal {
  width: 500px !important;
  top: 60px !important;
}
@media all and (max-width: 767px) {
  .footer p,
  .footer ul {
    float: none;
    text-align: center;
  }
  .new_progress {
    margin-top: 50px;
  }
  .new_index {
    z-index: 9999;
  }
  .footer ul li {
    width: 33%;
  }
  .placeorder_sec form {
    margin-bottom: 20%;
  }
  .footer {
    margin-top: 100px;
  }
  .title_bar h1 {
    padding: 18px 41px;
    width: 100%;
    display: block;
    text-align: left;
  }
  .login_form,
  .pad_top {
    padding: 10px !important;
  }
  .left_padding,
  .login_body {
    padding: 0;
  }
  .main_header a.dryclean_logo {
    margin: 0;
    max-width: 221px;
  }
  .icon_calender {
    right: 12px;
  }
  .menu_btn,
  .menu_section {
    position: absolute;
    right: 0;
  }
  .menu_btn {
    display: block;
    background: url(/images/nav-icon.png) no-repeat #ccc;
    top: 13px;
  }
  .menu_section {
    display: block;
    top: 34px;
    background: #fff;
    z-index: 250;
    width: 220px;
    border: 1px solid #ca1511;
  }
  .footer ul,
  .total_orders {
    display: block;
    width: 100%;
  }
  .main_header {
    min-height: 62px;
    padding: 10px 30px;
  }
  .menu_wrap ul {
    padding: 10px 0;
  }
  .menu_wrap ul li {
    padding: 0;
    margin: 0;
    float: none;
  }
  .menu_wrap ul li a {
    text-align: center;
    padding: 17px 10px 8px;
  }
  .footer p {
    display: block;
    line-height: 18px;
    font-size: 11px;
  }
  .total_orders {
    float: right;
  }
  .content_section,
  .order_history .table-responsive {
    margin-bottom: 15%;
  }
  .Refer-A-friend-Btn {
    margin-bottom: 0;
    display: none;
  }
  .small-offer-box {
    display: inline-block !important;
    float: right;
    padding-bottom: 20px;
  }
  .title_bar h1 {
    font-size: 18px;
  }
  #progressbar {
    min-width: 359px;
  }
  .new_discount {
    display: block;
  }
}
@media all and (max-width: 635px) {
  .login_body {
    padding: 0;
  }
  .address_cards {
    padding-right: 0;
    white-space: normal;
  }
  #inner_scroll {
    width: 100%;
    overflow: auto;
    overflow-y: visible;
    white-space: normal;
    scroll-direction: horizontal;
    padding-bottom: 0;
  }
  #inner_scroll .address_post {
    width: 100%;
    margin: 0 0 20px;
  }
  .address_cards .btn_orange {
    position: relative;
    right: inherit;
    top: inherit;
    float: right;
    margin-bottom: 10px;
  }
  .address_posti p {
    float: none;
    display: block;
    font-size: 12px;
  }
  .profile_section h3 {
    font-size: 16px;
  }
  .default_actions {
    float: none;
    display: block;
    padding-top: 10px;
  }
  .fa-pencil:before {
    content: "\f040";
    position: absolute;
    top: 5px;
    right: 10px;
  }
  .button_control {
    width: 75% !important;
  }
}
@media all and (max-width: 600px) {
  #progressbar {
    min-width: 90%;
    margin-left: -10px;
  }
  #progress_section {
    max-width: 90%;
  }
  .login_body {
    padding: 0;
  }
  .mainNav,
  .mainNav1 {
    height: auto;
  }
  .mainNav ul,
  .mainNav1 ul {
    width: 100%;
    display: none;
    height: auto;
  }
  .mainNav li,
  .mainNav1 li {
    width: 50%;
    float: left;
    position: relative;
  }
  .mainNav li a,
  .mainNav1 li a {
    border-bottom: 1px solid #576979;
    border-right: 1px solid #576979;
  }
  .mainNav a,
  .mainNav1 a {
    text-align: left;
    width: 100%;
    text-indent: 25px;
  }
}
@media (max-width: 568px) {
  .ngdialog.ngDialog-theme-signUp .ngdialog-button: focus,.ngdialog.ngDialog-theme-signUp .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none;
  }
  .order_history .table-responsive {
    margin-bottom: 20%;
  }
  .button_control {
    width: 68% !important;
  }
}
@media all and (max-width: 560px) {
  .login_body {
    padding: 0;
  }
  .login_wrap {
    position: relative;
    top: inherit;
    left: inherit;
    margin: 0 auto;
    width: 96%;
    height: auto;
    padding: 30px 0 0;
  }
  #progressbar li {
    width: 42%;
  }
  .content_section {
    margin-bottom: 20%;
  }
  #pageContent {
    margin-bottom: 25%;
  }
}
@media only screen and (max-width: 480px) {
  .mainNav,
  .mainNav1 {
    border-bottom: 0;
  }
  .mainNav ul,
  .mainNav1 ul {
    display: none;
    height: auto;
  }
  .mainNav a#pull,
  .mainNav1 a#pull1 {
    display: block;
    background-color: #283744 !important;
    width: 100%;
    position: relative;
  }
  .mainNav a#pull:after,
  .mainNav1 a#pull1:after {
    content: "";
    background: url(/images/nav-icon.png) no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 10px;
  }
  .content_section {
    margin-bottom: 25%;
  }
  .button_control {
    width: 60% !important;
  }
}
@media all and (max-width: 460px) {
  .login_body {
    padding: 0;
  }
  .footer p,
  .footer ul li a,
  .login_dropdown .btn,
  .top_header p {
    font-size: 10px;
  }
  .title_bar {
    min-height: 45px;
  }
  .title_bar h1 {
    font-size: 14px;
    padding: 15px;
  }
  .login_form {
    max-width: 100%;
  }
  .title_bar .back_btn {
    margin-top: 14px;
  }
  .securedby {
    float: none;
    display: block;
    clear: both;
    margin: 15px 0 0;
  }
  .login_form,
  .pad_top {
    padding: 10px !important;
  }
}
@media all and (max-width: 430px) {
  .login_body {
    padding: 0;
  }
  #progressbar li {
    width: 42%;
    font-size: 10px;
  }
  #progressbar {
    margin-left: 0;
  }
  #progress_section {
    max-width: 80%;
  }
  #progressbar li aside {
    font-size: 10px;
    font-weight: 400;
  }
  .placeorder_sec form {
    margin-bottom: 30%;
  }
  .radio_wrap h4 {
    min-width: 195px;
    font-size: 11px;
  }
  .radio_button label {
    font-size: 10px;
    padding: 0 0 0 18px;
  }
  .radio_button {
    margin-right: 5px;
  }
  .order_history .table-responsive {
    margin-bottom: 25%;
  }
}
@media all and (max-width: 400px) {
  .footer,
  .footer p {
    text-align: center;
  }
  .footer p,
  .footer ul li {
    line-height: 18px;
  }
  .login_body {
    padding: 0;
  }
  .form-control {
    font-size: 12px;
  }
  .footer {
    padding-bottom: 5px;
  }
  .footer p {
    float: none;
    display: block;
  }
  .footer ul {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .we_accept img {
    width: 100px;
  }
  .modal_card .modal-header h4 {
    padding: 4px 0;
  }
  .modal-header h4 {
    font-size: 14px;
  }
}
@media all and (max-width: 360px) {
  .login_form ul li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid silver;
  }
  .login_form ul li:last-child {
    border-bottom: 0;
  }
  .login_body {
    padding: 0;
  }
  #progress_section {
    max-width: 100%;
  }
  .order_history .table-responsive {
    margin-bottom: 35%;
  }
}
@media all and (max-width: 345px) {
  .field.special_textarea label {
    font-size: 11px;
  }
  .login_body {
    padding: 0;
  }
  #progressbar li {
    width: 40%;
  }
  button_control {
    width: 50% !important;
  }
}
@media only screen and (max-width: 320px) {
  .mainNav li,
  .mainNav1 li {
    display: block;
    float: none;
    width: 100%;
  }
  .mainNav li a,
  .mainNav1 li a {
    border-bottom: 1px solid #576979;
  }
}
@-webkit-keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
.ngdialog.ngDialog-theme-signUp.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flyout 0.5s;
  animation: ngdialog-flyout 0.5s;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-content {
  -webkit-animation: ngdialog-flyin 0.5s;
  animation: ngdialog-flyin 0.5s;
  background: #fff;
  border-radius: 5px;
  color: #444;
  font-family: Helvetica, sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  top: 60px;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-content .modal-header h4 {
  text-align: left;
  font-weight: 400;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-content .chkbox_label {
  margin-right: 12px;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-close:before {
  background: 0 0;
  border-radius: 3px;
  color: #bbb;
  content: "\00D7";
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px;
}
#controls,
#locationField,
.menu_wrap {
  position: relative;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-close:active:before,
.ngdialog.ngDialog-theme-signUp .ngdialog-close:hover:before {
  color: #777;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-message {
  margin-bottom: 0.5em;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-input {
  margin-bottom: 1em;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="email"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="password"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="text"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="url"],
.ngdialog.ngDialog-theme-signUp .ngdialog-input textarea {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 0.25em;
  min-height: 2.5em;
  padding: 0.25em 0.67em;
  width: 100%;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="email"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="password"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="text"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input input[type="url"]:focus,
.ngdialog.ngDialog-theme-signUp .ngdialog-input textarea:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: 0;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin: 0 0 0 0.5em;
  padding: 0.75em 2em;
  text-transform: uppercase;
}
a,
body,
h1,
h2,
h3,
h4,
h5,
h6,
html,
p {
  font-family: "Open Sans", sans-serif;
}
.ngdialog.ngDialog-theme-signUp .ngdialog-button:focus {
  -webkit-animation: ngdialog-pulse 1.1s infinite;
  animation: ngdialog-pulse 1.1s infinite;
  outline: 0;
}
.pay_det {
  margin-bottom: 10%;
}
.img-block {
  margin-bottom: -6px;
}
@media (max-width: 635px) {
  .fa-pencil:before {
    content: "\f040";
    position: absolute;
    top: 5px;
    right: 24px;
  }
  .default_actions a {
    float: right;
    font-size: 14px;
    color: #ca1511;
    margin-left: 10px;
    position: absolute;
    right: 12px;
    top: 15px;
  }
}
@media all and (max-width: 575px) {
  .goggle_logos img {
    width: 70%;
  }
}
.small-offer-box {
  display: none;
}
.promotion_fixed {
  opacity: 1;
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: fixed;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.promotion_fixed i {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}
.promotion_fixed img {
  width: 350px;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.myLoading {
  height: 100vh;
}
.promotion_fixed.dcd_prom {
  opacity: 1;
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: fixed;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
#pageContent {
  margin-bottom: 75px;
}
.doOver{
  float: right;
  color: rgb(202, 21, 17);
  font-size: 12px;
}
