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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

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

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(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 fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bubble-out {
  0% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; }
  100% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; } }

@-moz-keyframes bubble-out {
  0% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; }
  100% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; } }

@-o-keyframes bubble-out {
  0% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; }
  100% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; } }

@keyframes bubble-out {
  0% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; }
  100% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; } }

@-webkit-keyframes bubble-in {
  0% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; }
  100% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; } }

@-moz-keyframes bubble-in {
  0% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; }
  100% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; } }

@-o-keyframes bubble-in {
  0% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; }
  100% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; } }

@keyframes bubble-in {
  0% {
    border-top-right-radius: 111px;
    border-top-left-radius: 111px;
    border-width: 111px; }
  100% {
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    border: 39px solid #ffffff; } }

@font-face {
  font-family: 'Mono Social Icons Font';
  src: url("../fonts/monosocialiconsfont/MonoSocialIconsFont-1.10.eot");
  src: url("../fonts/monosocialiconsfont/MonoSocialIconsFont-1.10.eot?#iefix") format("embedded-opentype"), url("../fonts/monosocialiconsfont/MonoSocialIconsFont-1.10.woff") format("woff"), url("../fonts/monosocialiconsfont/MonoSocialIconsFont-1.10.ttf") format("truetype"), url("../fonts/monosocialiconsfont/MonoSocialIconsFont-1.10.svg#MonoSocialIconsFont") format("svg");
  src: url("../fonts/monosocialiconsfont/MonoSocialIconsFont-1.10.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'gotham_greeklight';
  src: url("../fonts/gothamgreek/gothamgrlight-webfont.eot");
  src: url("../fonts/gothamgreek/gothamgrlight-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/gothamgreek/gothamgrlight-webfont.woff") format("woff"), url("../fonts/gothamgreek/gothamgrlight-webfont.ttf") format("truetype"), url("../fonts/gothamgreek/gothamgrlight-webfont.svg#gotham_greeklight") format("svg");
  font-weight: normal;
  font-style: normal; }

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/raleway/raleway-v9-latin-100.eot");
  /* IE9 Compat Modes */
  src: local("Raleway Medium"), local("Raleway-Medium"), url("../fonts/raleway/raleway-v9-latin-100.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v9-latin-100.woff2") format("woff2"), url("../fonts/raleway/raleway-v9-latin-100.woff") format("woff"), url("../fonts/raleway/raleway-v9-latin-100.ttf") format("truetype"), url("../fonts/raleway/raleway-v9-latin-100.svg#Raleway") format("svg");
  /* Legacy iOS */ }

/* raleway-200 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/raleway/raleway-v9-latin-200.eot");
  /* IE9 Compat Modes */
  src: local("Raleway Medium"), local("Raleway-Medium"), url("../fonts/raleway/raleway-v9-latin-200.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v9-latin-200.woff2") format("woff2"), url("../fonts/raleway/raleway-v9-latin-200.woff") format("woff"), url("../fonts/raleway/raleway-v9-latin-200.ttf") format("truetype"), url("../fonts/raleway/raleway-v9-latin-200.svg#Raleway") format("svg");
  /* Legacy iOS */ }

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/raleway/raleway-v9-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Raleway"), url("../fonts/raleway/raleway-v9-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v9-latin-regular.woff2") format("woff2"), url("../fonts/raleway/raleway-v9-latin-regular.woff") format("woff"), url("../fonts/raleway/raleway-v9-latin-regular.ttf") format("truetype"), url("../fonts/raleway/raleway-v9-latin-regular.svg#Raleway") format("svg");
  /* Legacy iOS */ }

/* raleway-500 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/raleway/raleway-v9-latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Raleway Medium"), local("Raleway-Medium"), url("../fonts/raleway/raleway-v9-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v9-latin-500.woff2") format("woff2"), url("../fonts/raleway/raleway-v9-latin-500.woff") format("woff"), url("../fonts/raleway/raleway-v9-latin-500.ttf") format("truetype"), url("../fonts/raleway/raleway-v9-latin-500.svg#Raleway") format("svg");
  /* Legacy iOS */ }

/* raleway-600 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/raleway/raleway-v9-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Raleway SemiBold"), local("Raleway-SemiBold"), url("../fonts/raleway/raleway-v9-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v9-latin-600.woff2") format("woff2"), url("../fonts/raleway/raleway-v9-latin-600.woff") format("woff"), url("../fonts/raleway/raleway-v9-latin-600.ttf") format("truetype"), url("../fonts/raleway/raleway-v9-latin-600.svg#Raleway") format("svg");
  /* Legacy iOS */ }

/* Raleway */
/* muli-regular - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/muli/muli-v11-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Muli Regular"), local("Muli-Regular"), url("../fonts/muli/muli-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/muli/muli-v11-latin-regular.woff2") format("woff2"), url("../fonts/muli/muli-v11-latin-regular.woff") format("woff"), url("../fonts/muli/muli-v11-latin-regular.ttf") format("truetype"), url("../fonts/muli/muli-v11-latin-regular.svg#Muli") format("svg");
  /* Legacy iOS */ }

/* muli-600 - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/muli-v11-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Muli SemiBold"), local("Muli-SemiBold"), url("../fonts/muli-v11-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/muli-v11-latin-600.woff2") format("woff2"), url("../fonts/muli-v11-latin-600.woff") format("woff"), url("../fonts/muli-v11-latin-600.ttf") format("truetype"), url("../fonts/muli-v11-latin-600.svg#Muli") format("svg");
  /* Legacy iOS */ }

.symbol, a.symbol:before {
  font-family: 'Mono Social Icons Font';
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -ms-font-feature-settings: "liga" 1; }

a.symbol:before {
  content: attr(title);
  margin-right: 0;
  font-size: 100%; }

/*WordPress Core*/
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/*WordPress Core*/
/*dropdown fix*/
.dropdown-submenu {
  position: relative; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px; }

.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff; }

.dropdown-submenu.pull-left {
  float: none; }

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px; }

/*dropdown fix*/
/*outline*/
a {
  outline: 0 !important; }

a:active {
  outline: none !important; }

a:focus {
  -moz-outline-style: none !important; }

/*outline*/
div, p, span {
  padding: 0;
  margin: 0; }

/*variables*/
/*fonts*/
/*variables*/
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  color: #7d7d7d; }
  h1.maintitle, h2.maintitle, h3.maintitle, h4.maintitle, h5.maintitle, h6.maintitle {
    color: #363636;
    font-size: 50px;
    line-height: 60px;
    font-weight: 100; }
  h1.maintitle-sml1, h2.maintitle-sml1, h3.maintitle-sml1, h4.maintitle-sml1, h5.maintitle-sml1, h6.maintitle-sml1 {
    color: #363636;
    font-size: 50px;
    line-height: 56px;
    font-weight: 100; }
    @media (max-width: 900px) {
      h1.maintitle-sml1, h2.maintitle-sml1, h3.maintitle-sml1, h4.maintitle-sml1, h5.maintitle-sml1, h6.maintitle-sml1 {
        font-size: 40px;
        line-height: 46px; } }
  h1.title-photogallery, h2.title-photogallery, h3.title-photogallery, h4.title-photogallery, h5.title-photogallery, h6.title-photogallery {
    font-size: 50px;
    line-height: 50px;
    color: #a1a1a1;
    font-weight: 100;
    background: #f4f4f5;
    padding-bottom: 30px;
    padding-top: 30px; }
    @media (max-width: 900px) {
      h1.title-photogallery.margin-top-mobile, h2.title-photogallery.margin-top-mobile, h3.title-photogallery.margin-top-mobile, h4.title-photogallery.margin-top-mobile, h5.title-photogallery.margin-top-mobile, h6.title-photogallery.margin-top-mobile {
        margin-top: 35px; } }
    @media (max-width: 900px) {
      h1.title-photogallery, h2.title-photogallery, h3.title-photogallery, h4.title-photogallery, h5.title-photogallery, h6.title-photogallery {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 15px;
        padding-top: 15px; } }
  h1.align-center, h2.align-center, h3.align-center, h4.align-center, h5.align-center, h6.align-center {
    text-align: center; }
  h1.maintitle-homepage-promos, h2.maintitle-homepage-promos, h3.maintitle-homepage-promos, h4.maintitle-homepage-promos, h5.maintitle-homepage-promos, h6.maintitle-homepage-promos {
    padding-top: 49px; }
    @media (max-width: 900px) {
      h1.maintitle-homepage-promos, h2.maintitle-homepage-promos, h3.maintitle-homepage-promos, h4.maintitle-homepage-promos, h5.maintitle-homepage-promos, h6.maintitle-homepage-promos {
        padding-top: 0px; } }
  h1.maintitle-contentpage, h2.maintitle-contentpage, h3.maintitle-contentpage, h4.maintitle-contentpage, h5.maintitle-contentpage, h6.maintitle-contentpage {
    padding-bottom: 56px; }
  h1.contactform-title, h2.contactform-title, h3.contactform-title, h4.contactform-title, h5.contactform-title, h6.contactform-title {
    color: #6e6e6e;
    font-size: 46px;
    line-height: 50px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 100;
    padding-bottom: 34px;
    padding-top: 8px; }
  h1.spa-sec-title, h2.spa-sec-title, h3.spa-sec-title, h4.spa-sec-title, h5.spa-sec-title, h6.spa-sec-title {
    padding-top: 54px; }

.btns {
  font-size: 17px;
  line-height: 17px;
  color: #fff;
  padding: 14px 14px;
  margin: 0px;
  background: #a7aaab;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s; }
  .btns.greywitharrow {
    padding: 14px 14px;
    min-width: 152px;
    position: relative; }
    .btns.greywitharrow:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #a7aaab;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.greywitharrow:hover:after {
      border-bottom-color: #4d4d4d; }
  .btns.bluewitharrow {
    padding: 14px 14px;
    min-width: 152px;
    position: relative;
    background: #8eb9d4; }
    .btns.bluewitharrow:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #8eb9d4;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.bluewitharrow:hover {
      background: #8eb9d4; }
      .btns.bluewitharrow:hover:after {
        border-bottom-color: #8eb9d4; }
  .btns.select-dropdown-blue {
    font-size: 17px;
    line-height: 17px;
    color: #ffffff;
    background: #f25bbe;
    padding: 11px 54px 11px 14px;
    position: relative;
    text-align: left;
    font-weight: 300;
    font-family: "Roboto", Arial, sans-serif; }
    .btns.select-dropdown-blue:after {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 40px;
      content: '';
      display: block;
      border-left: thin solid rgba(255, 255, 255, 0.5);
      background: url("../images/icons/btn-dropdown-arrow-up.png") no-repeat center transparent;
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.select-dropdown-blue:hover {
      background: #ca87cb; }
      .btns.select-dropdown-blue:hover:after {
        background-color: #e89fcb; }
  .btns.load-more-galleries {
    background: #bcbcbc;
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    padding: 14px 17px;
    min-width: 191px; }
    .btns.load-more-galleries:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 6px solid #bcbcbc;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.load-more-galleries:hover {
      color: #ffffff;
      background: #f25bbe; }
      .btns.load-more-galleries:hover:after {
        border-bottom-color: #f25bbe; }
  .btns.arrow-up-blue-stroke {
    background: #ffffff;
    border: thin solid #65e3ed;
    color: #65e3ed;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    padding: 13px 17px;
    min-width: 191px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
    .btns.arrow-up-blue-stroke:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 6px solid #65e3ed;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.arrow-up-blue-stroke:hover {
      border-color: #67d0d8;
      color: #67d0d8;
      background: #ffffff; }
      .btns.arrow-up-blue-stroke:hover:after {
        border-bottom-color: #67d0d8; }
  .btns.blue {
    background: #67d0d8;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 12px; }
    .btns.blue.room-btns {
      min-width: 191px; }
    .btns.blue:hover {
      background: #65e3ed;
      color: #ffffff; }
  .btns.spa-btn {
    background: #67d0d8;
    background: rgba(103, 208, 216, 0.3);
    font-size: 17px;
    line-height: 17px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    color: #ffffff;
    padding: 9px 19px; }
    .btns.spa-btn:hover {
      background: #67d0d8;
      background: rgba(103, 208, 216, 0.6);
      color: #ffffff; }
  .btns.featuredrooms-btn {
    background: #f25bbe;
    font-size: 17px;
    line-height: 17px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    color: #ffffff;
    padding: 9px 19px; }
    .btns.featuredrooms-btn:hover {
      background: #f49ad0;
      color: #ffffff; }
  .btns.booking-mobile-btn {
    background: transparent;
    height: 38px;
    font-size: 18px;
    line-height: 38px;
    padding: 0 14px;
    border: none;
    margin-top: 7px;
    background: #f25bbe; }
    .btns.booking-mobile-btn:hover {
      background: #f25bbe; }
  .btns.thinstrokeopacity {
    background: rgba(255, 255, 255, 0.1);
    border: thin solid #ffffff;
    border: thin solid rgba(255, 255, 255, 0.4);
    padding: 11px 14px;
    min-width: 145px;
    font-size: 17px;
    line-height: 17px;
    font-family: "Roboto", Arial, sans-serif; }
    .btns.thinstrokeopacity:hover {
      background: rgba(255, 255, 255, 0.3); }
  .btns.room-btns-darkblue {
    background: #bcbcbc;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 12px;
    min-width: 191px; }
    .btns.room-btns-darkblue:hover {
      background: #676767;
      color: #ffffff; }
  .btns.room-btns-darkblue-2 {
    background: #bcbcbc;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 12px;
    min-width: 191px; }
    .btns.room-btns-darkblue-2:hover {
      background: #676767;
      color: #ffffff; }
  .btns.room-booknow-btn {
    background: #a59b93;
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    padding: 14px 17px;
    min-width: 191px; }
    .btns.room-booknow-btn:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 6px solid #a59b93;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.room-booknow-btn.room-booknow-btn-listing {
      padding: 14px 17px; }
    .btns.room-booknow-btn:hover {
      color: #ffffff;
      background: #7f746c; }
      .btns.room-booknow-btn:hover:after {
        border-bottom-color: #7f746c; }
  .btns.btn-menu {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 17px;
    line-height: 17px;
    color: #fff;
    background: #37a7cd;
    border: none;
    font-weight: 400;
    padding: 13px 14px;
    width: 211px;
    margin: 0 auto;
    display: block;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
    .btns.btn-menu:after {
      content: "";
      position: absolute;
      bottom: -13px;
      width: 26px;
      height: 13px;
      left: 50%;
      margin-left: -13px;
      background: url("../img/arrow-down-gray-menu.png");
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .btns.btn-menu:hover, .btns.btn-menu:focus, .btns.btn-menu:active {
      color: #fff;
      background: #9d9fa2;
      text-decoration: none; }
      .btns.btn-menu:hover:after, .btns.btn-menu:focus:after, .btns.btn-menu:active:after {
        background: url("../img/arrow-down-gray-menu-hover.png"); }
  .btns:hover {
    text-decoration: none;
    background: #4d4d4d;
    color: #fff; }

.slogans {
  position: absolute;
  bottom: 164px;
  left: 0;
  width: 100%;
  display: inline-block;
  z-index: 1; }
  .slogans .cont {
    width: 100%;
    display: inline-block;
    text-align: center; }
    .slogans .cont p {
      font-family: "Roboto", Arial, sans-serif;
      font-size: 52px;
      line-height: 52px;
      color: #ffffff;
      font-weight: 100; }
  .slogans.right-bottom {
    bottom: 71px;
    left: auto;
    right: 60px;
    width: auto; }
    .slogans.right-bottom .cont {
      text-align: right;
      width: auto; }
      .slogans.right-bottom .cont p {
        font-family: "Roboto", Arial, sans-serif;
        font-size: 43px;
        line-height: 55px;
        color: #ffffff;
        font-weight: 100; }
    @media (max-width: 900px) {
      .slogans.right-bottom {
        left: 0;
        right: auto;
        width: 100%;
        text-align: center; }
        .slogans.right-bottom .cont {
          text-align: center; }
          .slogans.right-bottom .cont p {
            font-size: 40px;
            line-height: 50px; } }
  @media (max-width: 900px) {
    .slogans {
      bottom: 76px; } }
  @media (max-width: 571px) {
    .slogans .cont p {
      font-size: 39px;
      line-height: 41px; } }

.shapes {
  text-indent: -9999px;
  display: block; }
  .shapes.korona {
    background: url("../images/icons/korona.png") no-repeat 0 0 transparent;
    width: 36px;
    height: 29px;
    text-indent: -9999px;
    display: block;
    margin: 0 auto; }
  .shapes.gotonext-smll {
    background: url("../images/icons/icon-gotonextslide.png") no-repeat 0 0 transparent;
    width: 32px;
    height: 15px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 26px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-indent: -9999px;
    z-index: 2; }
    .shapes.gotonext-smll.black {
      background: url("../images/icons/icon-gotonextslide-black.png") no-repeat 0 0 transparent; }
  .shapes.gotonext .t {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    z-index: 2;
    text-align: center;
    color: #5b5b5b;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    word-break: break-all;
    text-indent: 0;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s; }
  .shapes.gotonext i {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    line-height: 0;
    border: 39px solid #ffffff;
    border-radius: 0;
    border-bottom: none;
    border-top-right-radius: 51px;
    border-top-left-radius: 51px;
    left: 0em;
    top: 0em;
    z-index: 1;
    -webkit-animation: bubble-in 1s 1 forwards;
    -moz-animation: bubble-in 1s 1 forwards;
    -o-animation: bubble-in 1s 1 forwards;
    animation: bubble-in 1s 1 forwards; }
    @media (min-width: 900px) and (max-width: 1100px) {
      .shapes.gotonext i {
        -webkit-animation: none 1s 1 forwards;
        -moz-animation: none 1s 1 forwards;
        -o-animation: none 1s 1 forwards;
        animation: none 1s 1 forwards; } }
    @media (max-width: 900px) {
      .shapes.gotonext i {
        -webkit-animation: none 1s 1 forwards;
        -moz-animation: none 1s 1 forwards;
        -o-animation: none 1s 1 forwards;
        animation: none 1s 1 forwards; } }
  .shapes.gotonext:after {
    content: '';
    background: url("../images/icons/arrow-godown.png") no-repeat 0 0 transparent;
    width: 33px;
    height: 15px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 7px;
    z-index: 3;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .shapes.gotonext.center-x {
    position: absolute;
    padding: 0;
    margin: 0;
    height: auto;
    bottom: 0;
    left: 50%;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .shapes.gotonext:hover .t {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
    @media (min-width: 900px) and (max-width: 1100px) {
      .shapes.gotonext:hover .t {
        display: none; } }
    @media (max-width: 900px) {
      .shapes.gotonext:hover .t {
        display: none; } }
  .shapes.gotonext:hover i {
    -webkit-animation: bubble-out 1s 1 forwards;
    -moz-animation: bubble-out 1s 1 forwards;
    -o-animation: bubble-out 1s 1 forwards;
    animation: bubble-out 1s 1 forwards; }
    @media (min-width: 900px) and (max-width: 1100px) {
      .shapes.gotonext:hover i {
        -webkit-animation: none 1s 1 forwards;
        -moz-animation: none 1s 1 forwards;
        -o-animation: none 1s 1 forwards;
        animation: none 1s 1 forwards; } }
    @media (max-width: 900px) {
      .shapes.gotonext:hover i {
        -webkit-animation: none 1s 1 forwards;
        -moz-animation: none 1s 1 forwards;
        -o-animation: none 1s 1 forwards;
        animation: none 1s 1 forwards; } }
  .shapes.gototopfooter i {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    line-height: 0;
    border: 47px solid #f2f2f2;
    border-radius: 0;
    border-bottom: none;
    border-top-right-radius: 63px;
    border-top-left-radius: 63px;
    left: 0em;
    top: 0em;
    z-index: 1; }
  .shapes.gototopfooter:after {
    content: '';
    background: url("../images/icons/arrow-goup.png") no-repeat 0 0 transparent;
    width: 33px;
    height: 15px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 3;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .shapes.gototopfooter.center-x {
    position: absolute;
    padding: 0;
    margin: 0;
    height: auto;
    top: 0;
    left: 50%;
    margin: -37px 0 0 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .shapes.gototop {
    position: fixed;
    right: 17px;
    bottom: 55%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #707070;
    width: 50px;
    height: 50px;
    background: url("../images/icons/gotop-arrow.png") no-repeat center transparent;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 12;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 0.5s,opacity 0.5s linear 0s;
    -moz-transition: visibility 0s linear 0.5s,opacity 0.5s linear 0s;
    -ms-transition: visibility 0s linear 0.5s,opacity 0.5s linear 0s;
    -o-transition: visibility 0s linear 0.5s,opacity 0.5s linear 0s;
    transition: visibility 0s linear 0.5s,opacity 0.5s linear 0s; }
    .shapes.gototop:hover, .shapes.gototop:active, .shapes.gototop:focus {
      background: url("../images/icons/gotop-arrow-hover.png") no-repeat center;
      background-color: rgba(255, 255, 255, 0.3); }
    .shapes.gototop.active {
      -webkit-transition: visibility 0s linear 0s,opacity 0.5s linear 0s,background 0.5s linear 0s,border 0.5s linear 0s;
      -moz-transition: visibility 0s linear 0s,opacity 0.5s linear 0s,background 0.5s linear 0s,border 0.5s linear 0s;
      -ms-transition: visibility 0s linear 0s,opacity 0.5s linear 0s,background 0.5s linear 0s,border 0.5s linear 0s;
      -o-transition: visibility 0s linear 0s,opacity 0.5s linear 0s,background 0.5s linear 0s,border 0.5s linear 0s;
      transition: visibility 0s linear 0s,opacity 0.5s linear 0s,background 0.5s linear 0s,border 0.5s linear 0s;
      visibility: visible;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
    @media (max-width: 900px) {
      .shapes.gototop {
        display: none; } }
  .shapes.floorplan {
    background: url("../images/icons/floorplan-icon.png") no-repeat center #e7e7e7;
    padding: 0;
    margin: 0;
    width: 48px;
    height: 48px;
    display: inline-block;
    vertical-align: top;
    border: thin solid #dcd9d9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px; }
  .shapes.hamburger-btn {
    width: 52px;
    height: 52px;
    background-color: transparent;
    display: block;
    position: relative;
    padding: 0;
    margin: 0; }
    .shapes.hamburger-btn:before {
      content: "";
      position: absolute;
      left: 50%;
      top: 17px;
      width: 22px;
      height: 4px;
      background: #ffffff;
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      -khtml-border-radius: 2px;
      border-radius: 2px;
      box-shadow: 0 7px 0 0 #ffffff, 0 14px 0 0 #ffffff;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
  .shapes.room-left-btn {
    display: block;
    width: 30px;
    height: 107px;
    text-indent: -9999px;
    position: relative;
    background: url("../images/icons/room-left-arrow.png") no-repeat center transparent;
    padding: 0;
    margin: 0; }
    .shapes.room-left-btn.absolute-pos-left {
      position: absolute;
      left: 20px;
      top: 50%;
      z-index: 2;
      -webkit-transform: translateY(-50%) ;
      -ms-transform: translateY(-50%) ;
      transform: translateY(-50%) ; }
    @media (max-width: 900px) {
      .shapes.room-left-btn {
        display: none; } }
  .shapes.room-right-btn {
    display: block;
    width: 30px;
    height: 107px;
    text-indent: -9999px;
    position: relative;
    background: url("../images/icons/room-right-arrow.png") no-repeat center transparent;
    padding: 0;
    margin: 0; }
    .shapes.room-right-btn.absolute-pos-right {
      position: absolute;
      right: 20px;
      top: 50%;
      z-index: 2;
      -webkit-transform: translateY(-50%) ;
      -ms-transform: translateY(-50%) ;
      transform: translateY(-50%) ; }
    @media (max-width: 900px) {
      .shapes.room-right-btn {
        display: none; } }

.fck {
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 26px;
  color: #626262; }
  .fck a {
    color: #636363;
    text-decoration: underline; }
    .fck a:hover {
      color: #b5b5b5;
      text-decoration: underline; }
  .fck strong {
    font-weight: 600; }
  .fck ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .fck ul.three-col {
      display: block;
      width: 100%;
      overflow: hidden; }
      .fck ul.three-col li {
        width: 33%;
        float: left;
        text-align: left;
        line-height: 30px; }
      @media (max-width: 900px) {
        .fck ul.three-col li {
          width: 50%; } }
      @media (max-width: 571px) {
        .fck ul.three-col {
          width: auto; }
          .fck ul.three-col li {
            width: auto;
            float: none; } }
    .fck ul.twocol {
      display: block;
      width: 100%;
      overflow: hidden; }
      .fck ul.twocol li {
        width: 50%;
        float: left;
        text-align: left;
        line-height: 30px; }
      @media (max-width: 571px) {
        .fck ul.twocol {
          width: auto; }
          .fck ul.twocol li {
            width: auto;
            float: none; } }
    .fck ul li {
      padding: 0 0 0 12px;
      margin: 0;
      background: url("../images/icons/li-icon.png") no-repeat 0 12px transparent; }
  .fck.fck-homepagepromos {
    font-size: 16px;
    line-height: 23px;
    color: #626262; }
  .fck.fck-roomslisting {
    font-size: 16px;
    line-height: 23px;
    color: #626262; }
  .fck.fck-smpl-content {
    font-size: 16px;
    line-height: 23px;
    color: #616161; }
    .fck.fck-smpl-content h3, .fck.fck-smpl-content h4, .fck.fck-smpl-content h5 {
      font-weight: 400;
      font-size: 18px;
      line-height: 26px;
      color: #616161;
      text-decoration: underline;
      padding: 0;
      margin: 0; }
  .fck.fck-justify {
    text-align: justify; }
  .fck.fck-contact {
    text-align: center;
    font-size: 15px;
    line-height: 23px;
    color: #636363; }
    .fck.fck-contact p.logo-contact {
      display: block;
      width: 196px;
      height: 158px;
      text-indent: -9999px;
      background: url(../img/contact-logo.png) no-repeat 0 0 transparent;
      margin: 0 auto 32px auto; }

.remove-left-right-paddings {
  padding-left: 0px;
  padding-right: 0px; }

@media (min-width: 900px) and (max-width: 1100px) {
  .roomcontnet-left-right-paddings {
    padding-left: 75px;
    padding-right: 75px; } }

.gallery-grid-container {
  position: relative;
  margin: 0px;
  padding: 0px;
  width: 100%; }
  .gallery-grid-container .gallery-grid-container-holder {
    width: auto;
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px; }
    .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner {
      margin: 0px;
      padding: 0px;
      list-style: none;
      display: block;
      width: 100%;
      position: relative;
      margin: 0;
      padding: 0;
      overflow: auto; }
      .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner.padding-bottom-content {
        padding-bottom: 43px; }
      .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li {
        position: relative;
        display: block;
        float: left;
        overflow: hidden;
        width: 25%;
        margin: 0;
        padding: 0; }
        @media (max-width: 900px) {
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li {
            width: 50%; } }
        .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li:hover a img {
          /*
                            -webkit-transform: scale(1.03,1.03);
                            -moz-transform: scale(1.03,1.03);
                            -ms-transform: scale(1.03,1.03);
                            -o-transform: scale(1.03,1.03);
                            transform: scale(1.03,1.03);
                            */
          -webkit-transform: scale(1.1, 1.1);
          -moz-transform: scale(1.1, 1.1);
          -ms-transform: scale(1.1, 1.1);
          -o-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1); }
        .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer {
          background: transparent;
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0px;
          top: 0px;
          z-index: 1;
          -webkit-transition: all .3s ease-in-out;
          -moz-transition: all .3s ease-in-out;
          -ms-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
          @media (max-width: 571px) {
            .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer img.img-logo {
              width: 24px; } }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer p {
            padding: 0;
            margin: 0;
            display: block; }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer a {
            display: inline-block; }
            .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer a.btns {
              margin-top: 31px;
              overflow: visible; }
              .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer a.btns:before {
                width: 41px;
                height: 46px;
                position: absolute;
                left: 50%;
                top: 0;
                margin: -54px 0 0 0;
                padding: 0;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                content: '';
                display: block;
                background: url("../images/icons/korona.png") no-repeat 0 0 transparent; }
              @media (max-width: 571px) {
                .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer a.btns {
                  margin-top: 15px; } }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer div.overflow-layer-t {
            display: table;
            width: 100%;
            height: 100%;
            text-align: center; }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer div.overflow-layer-r {
            display: table-row; }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer div.overflow-layer-c {
            display: table-cell;
            vertical-align: middle;
            float: none; }
            .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li div.overflow-layer div.overflow-layer-c a.blocklink {
              display: block;
              width: 100%;
              height: 100%;
              padding: 0;
              margin: 0; }
        .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li a {
          position: relative;
          -webkit-backface-visibility: hidden;
          display: block;
          overflow: hidden;
          margin-right: -1px;
          margin-bottom: -1px !important; }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li a img {
            display: block;
            max-width: 100%;
            height: auto;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            -webkit-transform: scale(1, 1);
            -moz-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            transform: scale(1, 1); }
        .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li.inactive {
          display: none; }
        .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li.category-image div.overflow-layer {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
          filter: alpha(opacity=0);
          -moz-opacity: 0;
          -khtml-opacity: 0;
          opacity: 0; }
          .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li.category-image div.overflow-layer div.overflow-layer-c {
            background: rgba(0, 0, 0, 0.47); }
        .gallery-grid-container .gallery-grid-container-holder ul.gallery_inner li.category-image:hover div.overflow-layer {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
          filter: alpha(opacity=100);
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1; }
    .gallery-grid-container .gallery-grid-container-holder .loadmore-wrp {
      display: block;
      text-align: center;
      padding: 0 0 0 0;
      margin: 0; }
      .gallery-grid-container .gallery-grid-container-holder .loadmore-wrp.hompeagepadding {
        padding-top: 44px; }
  .gallery-grid-container .gallery-grid-navi {
    position: relative;
    margin: 0px;
    padding: 0px;
    display: block;
    text-align: center; }
    .gallery-grid-container .gallery-grid-navi .btns {
      margin: 37px 0; }

.promos-listing {
  display: block;
  padding: 50px 0 127px 0;
  margin: 0; }
  @media (max-width: 571px) {
    .promos-listing {
      padding: 20px 0 20px 0; } }
  .promos-listing.padding-bottom-0 {
    padding-bottom: 0; }
  .promos-listing .promo-wrp {
    display: block;
    position: relative;
    padding: 0 0 39px 0;
    margin: 0 0 0 0; }
    .promos-listing .promo-wrp .promo-t {
      display: table; }
      .promos-listing .promo-wrp .promo-t .promo-r {
        display: table-row;
        position: relative; }
        .promos-listing .promo-wrp .promo-t .promo-r .promo-image {
          display: table-cell;
          vertical-align: top;
          padding: 0 34px; }
          @media (min-width: 900px) and (max-width: 1100px) {
            .promos-listing .promo-wrp .promo-t .promo-r .promo-image {
              padding-left: 0; } }
          .promos-listing .promo-wrp .promo-t .promo-r .promo-image img {
            padding: 0;
            margin: 0; }
        .promos-listing .promo-wrp .promo-t .promo-r .promo-text {
          display: table-cell;
          vertical-align: top; }
          .promos-listing .promo-wrp .promo-t .promo-r .promo-text .list-promo-title {
            display: block;
            color: #363636;
            font-family: "Roboto", Arial, sans-serif;
            font-size: 35px;
            line-height: 38px;
            font-weight: 100;
            padding: 0 0 17px 0; }
            .promos-listing .promo-wrp .promo-t .promo-r .promo-text .list-promo-title a {
              color: #363636;
              text-decoration: none; }
              .promos-listing .promo-wrp .promo-t .promo-r .promo-text .list-promo-title a:hover {
                text-decoration: none; }
          .promos-listing .promo-wrp .promo-t .promo-r .promo-text .fck {
            display: block;
            margin: 0 0 50px 0;
            padding: 0 0 25px 0; }
            @media (max-width: 571px) {
              .promos-listing .promo-wrp .promo-t .promo-r .promo-text .fck {
                margin-bottom: 0; } }
    .promos-listing .promo-wrp .promo-btn-wrp {
      position: absolute;
      left: 531px;
      bottom: 40px;
      width: auto;
      text-align: left;
      margin: 0 0 10px 0;
      padding: 0; }
      @media (min-width: 900px) and (max-width: 1100px) {
        .promos-listing .promo-wrp .promo-btn-wrp {
          left: 496px; } }
      .promos-listing .promo-wrp .promo-btn-wrp a.btns {
        display: inline-block;
        margin: 0 0px 0 0;
        vertical-align: bottom; }
        .promos-listing .promo-wrp .promo-btn-wrp a.btns:last-child {
          margin-right: 0;
          margin-left: 10px; }
        .promos-listing .promo-wrp .promo-btn-wrp a.btns:first-child {
          margin-left: 0; }
    .promos-listing .promo-wrp:last-child {
      padding-bottom: 0;
      margin-bottom: 0; }
      .promos-listing .promo-wrp:last-child .promo-btn-wrp {
        bottom: 0px; }
  .promos-listing.promohomeheader {
    padding-bottom: 0px;
    padding-top: 0px; }
  .promos-listing.offers {
    padding-bottom: 49px; }
    .promos-listing.offers .promo-wrp {
      border-bottom: thin solid #e2e2e2;
      margin: 0 0 62px 0;
      padding: 0 0 62px 0; }
      .promos-listing.offers .promo-wrp .promo-t .promo-r .promo-text .fck {
        padding: 0 0 85px 0; }
      .promos-listing.offers .promo-wrp .promo-btn-wrp {
        left: 456px;
        bottom: 52px; }
        .promos-listing.offers .promo-wrp .promo-btn-wrp .expdate {
          display: inline-block;
          font-size: 13px;
          line-height: 46px;
          font-family: "Roboto", Arial, sans-serif;
          color: #8f8f8f;
          font-weight: 300;
          font-style: italic;
          padding: 0 0 0 23px;
          margin: 0 0 0 12px;
          background: url("../images/icons/calendar-icon.png") no-repeat 0 center transparent;
          vertical-align: top; }
      .promos-listing.offers .promo-wrp:last-child {
        border-bottom: none;
        margin-bottom: 0; }
  .promos-listing.promos-listing-roomlisting {
    padding-bottom: 0;
    margin-top: 50px;
    border-top: thin solid #E0E0E0; }
    .promos-listing.promos-listing-roomlisting .promo-wrp {
      margin: 0 0 21px 0; }
      .promos-listing.promos-listing-roomlisting .promo-wrp .promo-btn-wrp {
        left: 496px; }
        .promos-listing.promos-listing-roomlisting .promo-wrp .promo-btn-wrp .btns {
          position: relative; }
      .promos-listing.promos-listing-roomlisting .promo-wrp .promo-t .promo-r .promo-image {
        padding: 0 34px 0 0px; }
    @media (max-width: 900px) {
      .promos-listing.promos-listing-roomlisting {
        margin-top: 20px; }
        .promos-listing.promos-listing-roomlisting .promo-wrp .promo-btn-wrp {
          display: inline-block;
          position: relative;
          left: auto;
          bottom: auto;
          margin-top: 20px;
          margin-bottom: 0;
          width: 100%;
          float: none;
          overflow: visible; }
          .promos-listing.promos-listing-roomlisting .promo-wrp .promo-btn-wrp .btns {
            padding: 14px 10px;
            min-width: 10px; }
            .promos-listing.promos-listing-roomlisting .promo-wrp .promo-btn-wrp .btns:first-child {
              float: left; }
            .promos-listing.promos-listing-roomlisting .promo-wrp .promo-btn-wrp .btns:last-child {
              margin-left: 0px;
              float: right; } }
  @media (max-width: 900px) and (max-width: 900px) {
    .promos-listing.promos-listing-roomlisting .promo-wrp .promo-t .promo-r .promo-image {
      padding-right: 0; } }
  @media (max-width: 900px) {
    .promos-listing .promo-wrp .promo-t {
      display: block; }
      .promos-listing .promo-wrp .promo-t .promo-r {
        display: block; }
        .promos-listing .promo-wrp .promo-t .promo-r .promo-image {
          display: block;
          width: 100%;
          padding: 0; }
          .promos-listing .promo-wrp .promo-t .promo-r .promo-image img {
            width: 100%;
            height: auto; }
        .promos-listing .promo-wrp .promo-t .promo-r .promo-text {
          display: block;
          width: 100%; }
          .promos-listing .promo-wrp .promo-t .promo-r .promo-text .list-promo-title {
            padding-top: 17px; }
          .promos-listing .promo-wrp .promo-t .promo-r .promo-text .fck {
            padding-bottom: 0; }
    .promos-listing .promo-wrp .promo-btn-wrp {
      display: inline-block;
      position: relative;
      left: auto;
      bottom: auto;
      width: auto;
      margin-top: 20px;
      margin-bottom: 0; }
    .promos-listing.offers .promo-wrp {
      margin: 0 0 31px 0;
      padding: 0 0 31px 0; }
      .promos-listing.offers .promo-wrp .promo-t .promo-r .promo-text .fck {
        padding-bottom: 0; }
      .promos-listing.offers .promo-wrp .promo-btn-wrp {
        left: auto;
        bottom: auto; } }

ul.dropdown-select-el {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block; }
  ul.dropdown-select-el li {
    padding: 0;
    margin: 0; }
  ul.dropdown-select-el > li {
    display: block; }
    ul.dropdown-select-el > li ul {
      display: none;
      position: absolute;
      width: 100%;
      left: 0;
      top: 100%;
      background: #bcbcbc;
      padding: 5px 0px;
      z-index: 9;
      top: auto;
      bottom: 100%; }
      ul.dropdown-select-el > li ul li {
        display: block;
        font-size: 17px;
        line-height: 22px;
        font-weight: 400;
        font-family: "Lato", Arial, sans-serif;
        color: #ffffff;
        padding: 6px 16px 6px 16px;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
        ul.dropdown-select-el > li ul li a {
          color: #ffffff;
          text-decoration: none;
          display: block;
          font-weight: 300; }
        ul.dropdown-select-el > li ul li:hover {
          background: #999898; }
    ul.dropdown-select-el > li:hover > a.select-dropdown-blue {
      background: #bcbcbc; }
      ul.dropdown-select-el > li:hover > a.select-dropdown-blue:after {
        background-color: #bcbcbc;
        border-color: rgba(255, 255, 255, 0.5); }
    ul.dropdown-select-el > li:hover > ul {
      display: block; }

.promo-icons {
  display: block;
  text-align: center;
  padding: 0 0 68px 0; }
  @media (max-width: 571px) {
    .promo-icons {
      padding-bottom: 20px; } }
  .promo-icons ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: block;
    text-align: center; }
    .promo-icons ul li {
      padding: 0;
      margin: 0;
      display: inline-block; }
  @media (max-width: 571px) {
    .promo-icons ul li {
      display: block;
      padding-bottom: 20px; } }

.preloader-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 999999; }
  .preloader-overlay .preloader-logo {
    padding: 0px;
    margin: -15px 0 0 -15px;
    margin: 0;
    left: 50%;
    top: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%) ;
    -ms-transform: translate(-50%, -50%) ;
    transform: translate(-50%, -50%) ; }

.booking-elements {
  padding: 34px 0 0 0;
  margin: 40px 0 56px 0;
  border-top: thin solid #e5e7e8;
  width: 100%;
  overflow: hidden; }
  .booking-elements .left {
    float: left; }
    .booking-elements .left.remove-price p.icon {
      margin-top: 32px; }
    .booking-elements .left.remove-garantee p.price {
      margin-top: 15px; }
    .booking-elements .left p {
      font-size: 27px;
      line-height: 27px;
      color: #8a8a8a;
      font-family: "Lato", Arial, sans-serif;
      font-weight: 300;
      padding: 0;
      margin: 0; }
      .booking-elements .left p.price {
        font-style: italic;
        color: #a6a6a6;
        font-size: 14px;
        line-height: 14px;
        font-family: "Times New Roman", sans-serif;
        font-weight: 400; }
        .booking-elements .left p.price span {
          font-family: "Lato", Arial, sans-serif;
          color: #4f4f4f;
          font-size: 45px;
          line-height: 45px;
          font-style: normal;
          font-weight: 300;
          display: block; }
      .booking-elements .left p.icon {
        font-size: 17px;
        line-height: 34px;
        color: #b5b5b5;
        font-weight: 400;
        background: url("../images/icons/icon-price-guarantee.png") no-repeat 0 0 transparent;
        padding: 0 0 0 40px;
        margin: 10px 0 0 0; }
  .booking-elements .right {
    float: right;
    padding: 22px 0 0 0; }
    .booking-elements .right a {
      margin-right: 5px; }
      .booking-elements .right a:last-child {
        margin-right: 0px; }
  @media (max-width: 900px) {
    .booking-elements {
      margin-bottom: 5px; }
      .booking-elements .left {
        float: none;
        padding: 0;
        margin: 0;
        display: block;
        text-align: center; }
        .booking-elements .left p {
          display: inline-block; }
      .booking-elements .right {
        float: none;
        padding: 35px 0 0 0;
        margin: 0;
        display: block;
        text-align: center; } }

.offers-wrp {
  width: 100%;
  overflow: hidden;
  height: 719px;
  position: relative; }
  .offers-wrp .offer-child {
    width: 50%;
    display: block;
    min-height: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    z-index: 1;
    overflow: hidden; }
    .offers-wrp .offer-child .offer-child-wrp {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      right: 0;
      left: auto;
      top: 0;
      float: none; }
      .offers-wrp .offer-child .offer-child-wrp .imgsslider {
        width: 100%;
        height: 100%; }
      .offers-wrp .offer-child .offer-child-wrp .offer-text {
        min-width: 292px;
        text-align: left;
        position: absolute;
        left: 17px;
        bottom: 20px;
        z-index: 10;
        margin: 0 0 0 0px;
        padding: 26px 26px;
        text-align: left;
        background: rgba(0, 0, 0, 0.35); }
        .offers-wrp .offer-child .offer-child-wrp .offer-text p {
          font-size: 25px;
          line-height: 32px;
          font-weight: 300;
          color: #ffffff;
          font-family: "Lato", Arial, sans-serif;
          display: block;
          padding: 0 0 14px 0; }
          @media (max-width: 571px) {
            .offers-wrp .offer-child .offer-child-wrp .offer-text p {
              font-size: 25px;
              line-height: 30px; } }
        .offers-wrp .offer-child .offer-child-wrp .offer-text h4 {
          font-size: 25px;
          line-height: 32px;
          font-weight: 300;
          color: #fffbfb;
          font-family: "Lato", Arial, sans-serif;
          display: block;
          padding: 0 0 14px 0;
          margin: 0; }
          @media (max-width: 571px) {
            .offers-wrp .offer-child .offer-child-wrp .offer-text h4 {
              font-size: 25px;
              line-height: 30px; } }
        .offers-wrp .offer-child .offer-child-wrp .offer-text a.offer-title-link {
          font-size: 25px;
          line-height: 32px;
          font-weight: 300;
          color: #fffbfb;
          font-family: "Lato", Arial, sans-serif;
          display: block;
          padding: 0 0 14px 0;
          margin: 0;
          text-decoration: none; }
          .offers-wrp .offer-child .offer-child-wrp .offer-text a.offer-title-link:hove {
            text-decoration: none;
            color: #fffbfb; }
          @media (max-width: 571px) {
            .offers-wrp .offer-child .offer-child-wrp .offer-text a.offer-title-link {
              font-size: 25px;
              line-height: 30px; } }
    .offers-wrp .offer-child.offer-child-last {
      left: auto;
      right: 0; }
      .offers-wrp .offer-child.offer-child-last .offer-child-wrp {
        left: auto;
        right: 0;
        float: none; }
  .offers-wrp .navi {
    padding: 0;
    margin: 0;
    position: absolute;
    right: 25px;
    top: 32px;
    z-index: 9; }
    @media (max-width: 900px) {
      .offers-wrp .navi {
        top: 20px;
        right: 20px; } }
    .offers-wrp .navi a {
      display: inline-block;
      text-indent: -9999px;
      position: relative;
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
      .offers-wrp .navi a.left-arrow {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 11.5px 16px 11.5px 0;
        border-color: transparent #ffffff transparent transparent;
        border-color: transparent rgba(255, 255, 255, 0.3) transparent transparent; }
        @media (max-width: 900px) {
          .offers-wrp .navi a.left-arrow {
            border-width: 20px 28px 20px 0;
            margin-right: 20px; } }
        .offers-wrp .navi a.left-arrow:hover {
          border-color: transparent #000000 transparent transparent;
          border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent; }
      .offers-wrp .navi a.right-arrow {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 11.5px 0 11.5px 16px;
        border-color: transparent transparent transparent #ffffff;
        border-color: transparent transparent transparent rgba(255, 255, 255, 0.3); }
        @media (max-width: 900px) {
          .offers-wrp .navi a.right-arrow {
            border-width: 20px 0 20px 28px; } }
        .offers-wrp .navi a.right-arrow:hover {
          border-color: transparent transparent transparent #000000;
          border-color: transparent transparent transparent rgba(0, 0, 0, 0.3); }
  @media (min-width: 900px) and (max-width: 1100px) {
    .offers-wrp.offers-wrp-multi {
      height: 619px; } }
  @media (max-width: 900px) {
    .offers-wrp.offers-wrp-multi {
      height: 400px;
      overflow: hidden; } }
  .offers-wrp.offers-wrp-multi .offer-child {
    z-index: 2;
    border-right: 2px solid #ffffff; }
    @media (max-width: 900px) {
      .offers-wrp.offers-wrp-multi .offer-child {
        height: 100%;
        width: 100% !important;
        position: absolute;
        left: 0;
        top: 0;
        border-right: none; } }
    .offers-wrp.offers-wrp-multi .offer-child.new {
      z-index: 3; }
    .offers-wrp.offers-wrp-multi .offer-child.offer-child-last {
      border-right: none; }
      @media (max-width: 900px) {
        .offers-wrp.offers-wrp-multi .offer-child.offer-child-last {
          display: none; } }
    .offers-wrp.offers-wrp-multi .offer-child .offer-child-wrp .offer-title {
      display: block;
      padding: 0 0 19px 0; }
    .offers-wrp.offers-wrp-multi .offer-child .offer-child-wrp .offer-price {
      display: block;
      color: #ffffff;
      font-size: 45px;
      line-height: 45px;
      font-family: "Lato", Arial, sans-serif;
      font-weight: 300;
      border-top: thin solid #4c4c51;
      border-top: thin solid rgba(0, 0, 0, 0.4);
      padding: 21px 0 0 0; }
      .offers-wrp.offers-wrp-multi .offer-child .offer-child-wrp .offer-price span {
        font-style: italic;
        font-size: 14px;
        line-height: 14px;
        font-family: "Times New Roman", sans-serif;
        font-weight: 400;
        color: #ffffff;
        display: block;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
        filter: alpha(opacity=70);
        -moz-opacity: 0.7;
        -khtml-opacity: 0.7;
        opacity: 0.7; }
  @media (max-width: 900px) {
    .offers-wrp {
      height: auto; }
      .offers-wrp .offer-child {
        width: 100% !important;
        float: none;
        position: relative;
        height: auto;
        left: auto;
        height: 322px; }
        .offers-wrp .offer-child .offer-child-wrp {
          position: relative;
          width: 100% !important; }
          .offers-wrp .offer-child .offer-child-wrp .offer-text {
            left: 50% !important;
            bottom: 42px !important;
            right: auto !important;
            width: 80% !important;
            text-align: center !important;
            padding: 13px 10px 16px 10px !important;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%); } }

form.contactform input[type="text"], form.contactform input[type="email"] {
  background: #f6f6f6;
  border: thin solid #dcdada;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #565759;
  font-size: 15px;
  line-height: 15px;
  font-family: Arial, sans-serif;
  padding: 11px 6px 9px 6px;
  width: 100%; }

form.contactform select {
  background: #f6f6f6;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%; }

form.contactform textarea {
  background: #f6f6f6;
  border: thin solid #dcdada;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #565759;
  font-size: 15px;
  line-height: 15px;
  font-family: Arial, sans-serif;
  padding: 10px 6px 9px 6px;
  width: 100%; }

form.contactform input[type="text"]:focus, form.contactform input[type="email"]:focus, form.contactform textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

form.contactform button[type="submit"], form.contactform button[type="button"], form.contactform input[type="submit"] {
  font-size: 17px;
  line-height: 17px;
  color: #fff;
  padding: 14px 14px;
  margin: 0px;
  background: #a7aaab;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none; }
  form.contactform button[type="submit"].greywitharrow, form.contactform button[type="button"].greywitharrow, form.contactform input[type="submit"].greywitharrow {
    padding: 14px 14px;
    min-width: 152px;
    position: relative; }
    form.contactform button[type="submit"].greywitharrow:after, form.contactform button[type="button"].greywitharrow:after, form.contactform input[type="submit"].greywitharrow:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #a7aaab;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].greywitharrow:hover:after, form.contactform button[type="button"].greywitharrow:hover:after, form.contactform input[type="submit"].greywitharrow:hover:after {
      border-bottom-color: #4d4d4d; }
  form.contactform button[type="submit"].bluewitharrow, form.contactform button[type="button"].bluewitharrow, form.contactform input[type="submit"].bluewitharrow {
    padding: 14px 14px;
    min-width: 152px;
    position: relative;
    background: #8eb9d4; }
    form.contactform button[type="submit"].bluewitharrow:after, form.contactform button[type="button"].bluewitharrow:after, form.contactform input[type="submit"].bluewitharrow:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #8eb9d4;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].bluewitharrow:hover, form.contactform button[type="button"].bluewitharrow:hover, form.contactform input[type="submit"].bluewitharrow:hover {
      background: #8eb9d4; }
      form.contactform button[type="submit"].bluewitharrow:hover:after, form.contactform button[type="button"].bluewitharrow:hover:after, form.contactform input[type="submit"].bluewitharrow:hover:after {
        border-bottom-color: #8eb9d4; }
  form.contactform button[type="submit"].select-dropdown-blue, form.contactform button[type="button"].select-dropdown-blue, form.contactform input[type="submit"].select-dropdown-blue {
    font-size: 17px;
    line-height: 17px;
    color: #ffffff;
    background: #f25bbe;
    padding: 11px 54px 11px 14px;
    position: relative;
    text-align: left;
    font-weight: 300;
    font-family: "Roboto", Arial, sans-serif; }
    form.contactform button[type="submit"].select-dropdown-blue:after, form.contactform button[type="button"].select-dropdown-blue:after, form.contactform input[type="submit"].select-dropdown-blue:after {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 40px;
      content: '';
      display: block;
      border-left: thin solid rgba(255, 255, 255, 0.5);
      background: url("../images/icons/btn-dropdown-arrow-up.png") no-repeat center transparent;
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].select-dropdown-blue:hover, form.contactform button[type="button"].select-dropdown-blue:hover, form.contactform input[type="submit"].select-dropdown-blue:hover {
      background: #ca87cb; }
      form.contactform button[type="submit"].select-dropdown-blue:hover:after, form.contactform button[type="button"].select-dropdown-blue:hover:after, form.contactform input[type="submit"].select-dropdown-blue:hover:after {
        background-color: #e89fcb; }
  form.contactform button[type="submit"].load-more-galleries, form.contactform button[type="button"].load-more-galleries, form.contactform input[type="submit"].load-more-galleries {
    background: #bcbcbc;
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    padding: 14px 17px;
    min-width: 191px; }
    form.contactform button[type="submit"].load-more-galleries:after, form.contactform button[type="button"].load-more-galleries:after, form.contactform input[type="submit"].load-more-galleries:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 6px solid #bcbcbc;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].load-more-galleries:hover, form.contactform button[type="button"].load-more-galleries:hover, form.contactform input[type="submit"].load-more-galleries:hover {
      color: #ffffff;
      background: #f25bbe; }
      form.contactform button[type="submit"].load-more-galleries:hover:after, form.contactform button[type="button"].load-more-galleries:hover:after, form.contactform input[type="submit"].load-more-galleries:hover:after {
        border-bottom-color: #f25bbe; }
  form.contactform button[type="submit"].arrow-up-blue-stroke, form.contactform button[type="button"].arrow-up-blue-stroke, form.contactform input[type="submit"].arrow-up-blue-stroke {
    background: #ffffff;
    border: thin solid #65e3ed;
    color: #65e3ed;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    padding: 13px 17px;
    min-width: 191px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
    form.contactform button[type="submit"].arrow-up-blue-stroke:after, form.contactform button[type="button"].arrow-up-blue-stroke:after, form.contactform input[type="submit"].arrow-up-blue-stroke:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 6px solid #65e3ed;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].arrow-up-blue-stroke:hover, form.contactform button[type="button"].arrow-up-blue-stroke:hover, form.contactform input[type="submit"].arrow-up-blue-stroke:hover {
      border-color: #67d0d8;
      color: #67d0d8;
      background: #ffffff; }
      form.contactform button[type="submit"].arrow-up-blue-stroke:hover:after, form.contactform button[type="button"].arrow-up-blue-stroke:hover:after, form.contactform input[type="submit"].arrow-up-blue-stroke:hover:after {
        border-bottom-color: #67d0d8; }
  form.contactform button[type="submit"].blue, form.contactform button[type="button"].blue, form.contactform input[type="submit"].blue {
    background: #67d0d8;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 12px; }
    form.contactform button[type="submit"].blue.room-btns, form.contactform button[type="button"].blue.room-btns, form.contactform input[type="submit"].blue.room-btns {
      min-width: 191px; }
    form.contactform button[type="submit"].blue:hover, form.contactform button[type="button"].blue:hover, form.contactform input[type="submit"].blue:hover {
      background: #65e3ed;
      color: #ffffff; }
  form.contactform button[type="submit"].spa-btn, form.contactform button[type="button"].spa-btn, form.contactform input[type="submit"].spa-btn {
    background: #67d0d8;
    background: rgba(103, 208, 216, 0.3);
    font-size: 17px;
    line-height: 17px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    color: #ffffff;
    padding: 9px 19px; }
    form.contactform button[type="submit"].spa-btn:hover, form.contactform button[type="button"].spa-btn:hover, form.contactform input[type="submit"].spa-btn:hover {
      background: #67d0d8;
      background: rgba(103, 208, 216, 0.6);
      color: #ffffff; }
  form.contactform button[type="submit"].featuredrooms-btn, form.contactform button[type="button"].featuredrooms-btn, form.contactform input[type="submit"].featuredrooms-btn {
    background: #f25bbe;
    font-size: 17px;
    line-height: 17px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    color: #ffffff;
    padding: 9px 19px; }
    form.contactform button[type="submit"].featuredrooms-btn:hover, form.contactform button[type="button"].featuredrooms-btn:hover, form.contactform input[type="submit"].featuredrooms-btn:hover {
      background: #f49ad0;
      color: #ffffff; }
  form.contactform button[type="submit"].booking-mobile-btn, form.contactform button[type="button"].booking-mobile-btn, form.contactform input[type="submit"].booking-mobile-btn {
    background: transparent;
    height: 38px;
    font-size: 18px;
    line-height: 38px;
    padding: 0 14px;
    border: none;
    margin-top: 7px;
    background: #f25bbe; }
    form.contactform button[type="submit"].booking-mobile-btn:hover, form.contactform button[type="button"].booking-mobile-btn:hover, form.contactform input[type="submit"].booking-mobile-btn:hover {
      background: #f25bbe; }
  form.contactform button[type="submit"].thinstrokeopacity, form.contactform button[type="button"].thinstrokeopacity, form.contactform input[type="submit"].thinstrokeopacity {
    background: rgba(255, 255, 255, 0.1);
    border: thin solid #ffffff;
    border: thin solid rgba(255, 255, 255, 0.4);
    padding: 11px 14px;
    min-width: 145px;
    font-size: 17px;
    line-height: 17px;
    font-family: "Roboto", Arial, sans-serif; }
    form.contactform button[type="submit"].thinstrokeopacity:hover, form.contactform button[type="button"].thinstrokeopacity:hover, form.contactform input[type="submit"].thinstrokeopacity:hover {
      background: rgba(255, 255, 255, 0.3); }
  form.contactform button[type="submit"].room-btns-darkblue, form.contactform button[type="button"].room-btns-darkblue, form.contactform input[type="submit"].room-btns-darkblue {
    background: #bcbcbc;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 12px;
    min-width: 191px; }
    form.contactform button[type="submit"].room-btns-darkblue:hover, form.contactform button[type="button"].room-btns-darkblue:hover, form.contactform input[type="submit"].room-btns-darkblue:hover {
      background: #676767;
      color: #ffffff; }
  form.contactform button[type="submit"].room-btns-darkblue-2, form.contactform button[type="button"].room-btns-darkblue-2, form.contactform input[type="submit"].room-btns-darkblue-2 {
    background: #bcbcbc;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 12px;
    min-width: 191px; }
    form.contactform button[type="submit"].room-btns-darkblue-2:hover, form.contactform button[type="button"].room-btns-darkblue-2:hover, form.contactform input[type="submit"].room-btns-darkblue-2:hover {
      background: #676767;
      color: #ffffff; }
  form.contactform button[type="submit"].room-booknow-btn, form.contactform button[type="button"].room-booknow-btn, form.contactform input[type="submit"].room-booknow-btn {
    background: #a59b93;
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    padding: 14px 17px;
    min-width: 191px; }
    form.contactform button[type="submit"].room-booknow-btn:after, form.contactform button[type="button"].room-booknow-btn:after, form.contactform input[type="submit"].room-booknow-btn:after {
      position: absolute;
      left: 50%;
      top: 0;
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 6px solid #a59b93;
      margin: -6px 0 0 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].room-booknow-btn.room-booknow-btn-listing, form.contactform button[type="button"].room-booknow-btn.room-booknow-btn-listing, form.contactform input[type="submit"].room-booknow-btn.room-booknow-btn-listing {
      padding: 14px 17px; }
    form.contactform button[type="submit"].room-booknow-btn:hover, form.contactform button[type="button"].room-booknow-btn:hover, form.contactform input[type="submit"].room-booknow-btn:hover {
      color: #ffffff;
      background: #7f746c; }
      form.contactform button[type="submit"].room-booknow-btn:hover:after, form.contactform button[type="button"].room-booknow-btn:hover:after, form.contactform input[type="submit"].room-booknow-btn:hover:after {
        border-bottom-color: #7f746c; }
  form.contactform button[type="submit"].btn-menu, form.contactform button[type="button"].btn-menu, form.contactform input[type="submit"].btn-menu {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 17px;
    line-height: 17px;
    color: #fff;
    background: #37a7cd;
    border: none;
    font-weight: 400;
    padding: 13px 14px;
    width: 211px;
    margin: 0 auto;
    display: block;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
    form.contactform button[type="submit"].btn-menu:after, form.contactform button[type="button"].btn-menu:after, form.contactform input[type="submit"].btn-menu:after {
      content: "";
      position: absolute;
      bottom: -13px;
      width: 26px;
      height: 13px;
      left: 50%;
      margin-left: -13px;
      background: url("../img/arrow-down-gray-menu.png");
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    form.contactform button[type="submit"].btn-menu:hover, form.contactform button[type="submit"].btn-menu:focus, form.contactform button[type="submit"].btn-menu:active, form.contactform button[type="button"].btn-menu:hover, form.contactform button[type="button"].btn-menu:focus, form.contactform button[type="button"].btn-menu:active, form.contactform input[type="submit"].btn-menu:hover, form.contactform input[type="submit"].btn-menu:focus, form.contactform input[type="submit"].btn-menu:active {
      color: #fff;
      background: #9d9fa2;
      text-decoration: none; }
      form.contactform button[type="submit"].btn-menu:hover:after, form.contactform button[type="submit"].btn-menu:focus:after, form.contactform button[type="submit"].btn-menu:active:after, form.contactform button[type="button"].btn-menu:hover:after, form.contactform button[type="button"].btn-menu:focus:after, form.contactform button[type="button"].btn-menu:active:after, form.contactform input[type="submit"].btn-menu:hover:after, form.contactform input[type="submit"].btn-menu:focus:after, form.contactform input[type="submit"].btn-menu:active:after {
        background: url("../img/arrow-down-gray-menu-hover.png"); }
  form.contactform button[type="submit"]:hover, form.contactform button[type="button"]:hover, form.contactform input[type="submit"]:hover {
    text-decoration: none;
    background: #4d4d4d;
    color: #fff; }

form.contactform input[type="text"], form.contactform input[type="email"] {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  background: #eeeded;
  border-color: #cecece;
  font-size: 18px;
  line-height: 18px;
  color: #6a6a6a;
  font-weight: 300;
  font-family: "Roboto", Arial, sans-serif;
  padding: 12px 6px 10px 6px;
  height: auto; }
  form.contactform input[type="text"]::-webkit-input-placeholder, form.contactform input[type="email"]::-webkit-input-placeholder {
    color: #6a6a6a; }
  form.contactform input[type="text"]:-moz-placeholder, form.contactform input[type="email"]:-moz-placeholder {
    color: #6a6a6a; }
  form.contactform input[type="text"]::-moz-placeholder, form.contactform input[type="email"]::-moz-placeholder {
    color: #6a6a6a; }
  form.contactform input[type="text"]:-ms-input-placeholder, form.contactform input[type="email"]:-ms-input-placeholder {
    color: #6a6a6a; }
  @media (max-width: 571px) {
    form.contactform input[type="text"]::-webkit-input-placeholder, form.contactform input[type="email"]::-webkit-input-placeholder {
      color: #6a6a6a; }
    form.contactform input[type="text"]:-moz-placeholder, form.contactform input[type="email"]:-moz-placeholder {
      color: #6a6a6a; }
    form.contactform input[type="text"]::-moz-placeholder, form.contactform input[type="email"]::-moz-placeholder {
      color: #6a6a6a; }
    form.contactform input[type="text"]:-ms-input-placeholder, form.contactform input[type="email"]:-ms-input-placeholder {
      color: #6a6a6a; } }

form.contactform textarea {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  height: 146px;
  background: #eeeded;
  border-color: #cecece;
  font-size: 18px;
  line-height: 18px;
  color: #6a6a6a;
  font-weight: 300;
  font-family: "Roboto", Arial, sans-serif; }
  form.contactform textarea::-webkit-input-placeholder {
    color: #6a6a6a; }
  form.contactform textarea:-moz-placeholder {
    color: #6a6a6a; }
  form.contactform textarea::-moz-placeholder {
    color: #6a6a6a; }
  form.contactform textarea:-ms-input-placeholder {
    color: #6a6a6a; }
  @media (max-width: 571px) {
    form.contactform textarea::-webkit-input-placeholder {
      color: #6a6a6a; }
    form.contactform textarea:-moz-placeholder {
      color: #6a6a6a; }
    form.contactform textarea::-moz-placeholder {
      color: #6a6a6a; }
    form.contactform textarea:-ms-input-placeholder {
      color: #6a6a6a; } }

form.contactform select {
  -webkit-appearance: button;
  width: 100%;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  background: #ffffff;
  border-color: #d6d6d6;
  font-size: 18px;
  line-height: 19px;
  color: #868687;
  font-family: "Roboto", Arial, sans-serif;
  font-style: 300;
  padding: 13px 6px;
  height: auto; }
  form.contactform select::-webkit-input-placeholder {
    color: #868687; }
  form.contactform select:-moz-placeholder {
    color: #868687; }
  form.contactform select::-moz-placeholder {
    color: #868687; }
  form.contactform select:-ms-input-placeholder {
    color: #868687; }

form.contactform .row .left {
  padding: 0 !important;
  margin: 0; }
  form.contactform .row .left .row div.form-group {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 9px; }
    form.contactform .row .left .row div.form-group:first-child {
      padding-right: 9px; }

form.contactform .row .right {
  padding: 0 0 0 0px !important;
  margin: 0 0 0 0 !important; }

form.contactform .row.buttons {
  padding-top: 30px; }
  form.contactform .row.buttons .right {
    padding: 0px;
    margin: 0px;
    float: right; }
    @media (max-width: 900px) {
      form.contactform .row.buttons .right {
        float: none;
        text-align: center; } }
  form.contactform .row.buttons .left {
    padding: 0px 0 0 0px !important;
    margin: 0px;
    float: left; }
    @media (max-width: 900px) {
      form.contactform .row.buttons .left {
        float: none; } }
    form.contactform .row.buttons .left .checkbox {
      font-family: "Roboto", Arial, sans-serif;
      font-size: 15px;
      line-height: 15px;
      color: #868687;
      font-weight: 300;
      font-style: normal;
      padding-left: 0px; }
      form.contactform .row.buttons .left .checkbox label {
        padding: 0;
        margin: 0;
        font-weight: 300; }
      @media (min-width: 900px) and (max-width: 1100px) {
        form.contactform .row.buttons .left .checkbox {
          width: 220px; } }
      @media (max-width: 900px) {
        form.contactform .row.buttons .left .checkbox {
          text-align: center; } }

@media (max-width: 900px) {
  form.contactform div.row div.left div.row > div.form-group {
    width: 100%; }
    form.contactform div.row div.left div.row > div.form-group:first-child {
      padding-right: 0px; }
  form.contactform div.row div.right {
    padding: 0 0 0 0px !important; }
  form.contactform div.row.buttons div.left {
    padding: 0px 0 0 0px !important;
    float: none;
    display: block; }
  form.contactform div.row.buttons div.right {
    float: none;
    display: block; } }

.confirmationbox {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  width: auto;
  background: #fff;
  border: 1px solid #b4b4b4;
  height: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 20px;
  margin: 0px;
  color: #000000;
  text-align: center;
  display: none;
  z-index: 110; }
  .confirmationbox p {
    padding: 0px;
    margin: 0px;
    display: none; }

@media (min-width: 768px) {
  .container {
    width: 100%; } }

/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@font-face {
  font-family: 'helvetica_neue_lt_com35_thin';
  src: url("../fonts/helvetica/helveticaneueltcom-th-webfont.eot");
  src: url("../fonts/helvetica/helveticaneueltcom-th-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/helvetica/helveticaneueltcom-th-webfont.woff") format("woff"), url("../fonts/helvetica/helveticaneueltcom-th-webfont.ttf") format("truetype"), url("../fonts/helvetica/helveticaneueltcom-th-webfont.svg#helvetica_neue_lt_com35_thin") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'eb_garamondregular';
  src: url("fonts/ebgaramond-webfont.eot");
  src: url("fonts/ebgaramond-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/ebgaramond-webfont.woff") format("woff"), url("fonts/ebgaramond-webfont.ttf") format("truetype"), url("fonts/ebgaramond-webfont.svg#eb_garamondregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/* muli-regular - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/muli/muli-v11-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Muli Regular"), local("Muli-Regular"), url("../fonts/muli/muli-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/muli/muli-v11-latin-regular.woff2") format("woff2"), url("../fonts/muli/muli-v11-latin-regular.woff") format("woff"), url("../fonts/muli/muli-v11-latin-regular.ttf") format("truetype"), url("../fonts/muli/muli-v11-latin-regular.svg#Muli") format("svg");
  /* Legacy iOS */ }

/* muli-600 - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/muli-v11-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Muli SemiBold"), local("Muli-SemiBold"), url("../fonts/muli-v11-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/muli-v11-latin-600.woff2") format("woff2"), url("../fonts/muli-v11-latin-600.woff") format("woff"), url("../fonts/muli-v11-latin-600.ttf") format("truetype"), url("../fonts/muli-v11-latin-600.svg#Muli") format("svg");
  /* Legacy iOS */ }

html,
button,
input,
select,
textarea {
  color: #222; }

html {
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }

@media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
     * Don't show links for images, or javascript/internal links
     */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

ul {
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px; }

body, html {
  background: #fff; }

#supersized {
  background: #fff;
  padding: 0px;
  margin: 0px; }

.x2-btn {
  letter-spacing: 1px;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  padding: 14px 10px;
  margin: 0px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-family: "Times New Roman", Times, Arial, Sans-Serif; }

.x2-btn:hover {
  color: #ffffff;
  text-decoration: none; }

.x2-container {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  position: absolute;
  width: 100%;
  height: 100%; }

.x2-logo {
  text-align: center;
  width: 600px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  margin: 0 auto;
  top: 8%;
  left: 50%;
  position: absolute;
  margin-left: -300px;
  margin-top: 0px; }

.x2-logo img {
  margin: 0;
  width: 220px;
  height: auto; }

.discovermore {
  text-decoration: none;
  color: #404041;
  display: block;
  padding: 37px 0 0 0;
  margin: 0 0 0 0;
  font-family: "Times New Roman",Arial,sans-serif;
  font-size: 36px;
  line-height: 36px; }

.discovermore:hover {
  text-decoration: underline; }

.x2-footer {
  font-family: Arial,sans-serif;
  position: absolute;
  bottom: 0px;
  text-align: center;
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  font-weight: normal; }

.x2-footer .copyright {
  padding-bottom: 14px; }

.x2-footer .copyright a {
  font-family: Arial,sans-serif;
  text-decoration: none;
  line-height: 30px;
  color: #ffffff; }

.x2-footer .copyright a:hover {
  text-decoration: underline; }

.preloader {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  z-index: 999; }

.preloader img {
  top: 50%;
  left: 50%;
  position: relative;
  margin-left: -10px;
  margin-top: -10px; }

.x2-logo h2 {
  padding: 0 0 60px 0;
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 36px;
  line-height: 33px;
  font-weight: 200;
  color: #fff;
  text-decoration: none;
  display: block; }

a.x2-btn-discover-more {
  font-family: "Muli", sans-serif;
  font-size: 17px;
  line-height: 17px;
  color: #fff;
  font-weight: 400;
  display: block;
  letter-spacing: 0;
  padding: 16px 14px;
  width: 220px;
  position: relative;
  text-align: center;
  margin-top: 0px;
  background: #4d4d4d;
  z-index: 1;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s; }
  a.x2-btn-discover-more:after {
    content: "";
    position: absolute;
    bottom: -9px;
    width: 20px;
    height: 9px;
    left: 50%;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 9px solid #4d4d4d;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }

a.x2-btn-discover-more:hover {
  color: #fff;
  background: #b5b5b5; }
  a.x2-btn-discover-more:hover:after {
    border-top-color: #b5b5b5; }

ul.x2-menu {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  width: 220px;
  margin: 0 auto; }

ul.x2-menu > li {
  position: relative;
  padding: 0 0 0 0;
  margin: 0 0 0 0; }

ul.x2-menu > li > ul {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: auto;
  top: 100%;
  list-style-type: none;
  padding: 14px 0;
  margin: 0 0 0 0;
  background: #4d4d4d;
  border: none;
  box-shadow: 0px 0px 0px 1px #4d4d4d inset; }

/*
ul.x2-menu > li > ul li { padding:  8px 8px 8px 8px; }
ul.x2-menu > li > ul li:first-child { padding:  22px 8px 8px 8px; }
ul.x2-menu > li > ul li:last-child { padding:  8px 8px 17px 8px; }
ul.x2-menu > li > ul li:last-child { padding-bottom: 22px; }
*/
ul.x2-menu > li > ul li {
  padding: 0;
  margin: 0; }
  ul.x2-menu > li > ul li a {
    padding: 8px 8px;
    display: block; }
    ul.x2-menu > li > ul li a:hover {
      background: #9d9fa2;
      text-decoration: none;
      color: #fff; }

ul.x2-menu > li > ul li a, ul.x2-menu > li > ul li {
  text-decoration: none;
  font-family: "Muli", sans-serif;
  font-size: 17px;
  line-height: 17px;
  color: #fff;
  font-weight: 400; }

ul.x2-menu > li:hover > ul {
  display: block; }

ul.x2-menu > li > ul:after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -10px;
  content: url("../img/arrow-down-gray-menu.png");
  display: none; }

.x2-arrow-down-gray {
  background: url("../img/arrow-down-gray-menu.png") no-repeat 0 0 transparent;
  width: 22px;
  height: 11px;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -10px; }

ul.x2-menu > li:first-child {
  background: transparent;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  display: block;
  padding: 0 0 0 0;
  margin: 0px 0 0 0; }

ul.x2-menu > li:first-child:hover {
  border-bottom: none; }

ul.x2-menu > li:first-child:hover .x2-arrow-down-gray {
  display: none; }

ul.x2-menu > li:first-child:hover > ul {
  border-top: none; }

@media (max-width: 670px) {
  .x2-logo h2 {
    padding: 23px 0px 26px;
    font-size: 32px;
    line-height: 32px; }
  .x2-logo {
    margin: 0;
    top: 10px;
    width: 100%;
    left: 0; }
  .x2-logo img {
    width: 211px;
    margin-left: 0; }
  ul.x2-menu {
    padding: 0; }
  ul.x2-menu > li > ul li a, ul.x2-menu > li > ul li {
    font-size: 16px;
    line-height: 16px; }
  ul.x2-menu > li > ul {
    position: absolute; }
  ul.x2-menu > li > ul:after {
    position: absolute;
    bottom: -14px;
    left: 50%;
    margin-left: -10px;
    content: url("../img/arrow-down-gray-menu.png"); }
  a.x2-btn-discover-more {
    font-size: 17px;
    line-height: 17px; }
  .x2-footer {
    font-size: 13px; }
  .x2-footer a {
    font-size: 13px; }
  ul.x2-menu {
    width: 211px; }
  a.x2-btn-discover-more {
    width: 211px; } }

@media (min-width: 500px) and (max-width: 670px) {
  .x2-logo {
    top: 0; } }

@media (max-width: 338px) {
  .x2-footer {
    line-height: 14px; } }

/*@media (max-height: 800px) {
    ul.x2-menu > li > ul {
        bottom: 100%;
        top: auto;
    }
}*/
@media (max-height: 600px) {
  ul.x2-menu {
    padding: 0; } }

html {
  width: 100%;
  height: 100%;
  background: transparent; }
  html body {
    width: 100%;
    height: 100%;
    background: transparent; }

body .mainnavbar-wrp {
  background: black;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  margin-bottom: 0px; }
  body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw {
    background: #e5e5e5; }
    body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi h1.logo a, body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi div.logo a {
      background: url("../images/icons/logo-new-color.png") no-repeat 0 0 transparent;
      background-size: 46px 52px; }
    body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi h1.logo.black a, body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi div.logo.black a {
      background: url("../images/icons/logo-new-color.png") no-repeat 0 0 transparent;
      background-size: 46px 52px; }
    @media (max-width: 900px) {
      body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi h1.logo a, body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi div.logo a {
        background-size: 36px 41px; }
      body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi h1.logo.black a, body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi div.logo.black a {
        background-size: 36px 41px; } }
    body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi .navbar-collapse ul.nav > li > a {
      color: #5f5f5f;
      font-weight: 300; }
      body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi .navbar-collapse ul.nav > li > a:hover, body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi .navbar-collapse ul.nav > li > a:focus {
        text-decoration: none;
        color: #6b6b6b; }
    body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi .navbar-collapse ul.nav > li.active > a, body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi .navbar-collapse ul.nav > li.current-menu-parent > a {
      text-decoration: underline;
      background-color: transparent;
      color: #5f5f5f; }
    body .mainnavbar-wrp.mainnavbar-wrp-onscrolldonw .container-navi .navbar-collapse ul.nav > li > ul.dropdown-menu:before {
      top: -15px; }
  body .mainnavbar-wrp.langdisabled .container-navi .navbar-collapse ul.nav > li.boldcategory {
    margin-right: 15px; }
  body .mainnavbar-wrp .mobile-navigation-c {
    display: none; }
    body .mainnavbar-wrp .mobile-navigation-c a.shapes.hamburger-btn {
      float: right; }
    body .mainnavbar-wrp .mobile-navigation-c a.btns.booking-mobile-btn {
      float: right; }
    body .mainnavbar-wrp .mobile-navigation-c ul.lang {
      position: relative;
      float: right;
      display: inline-block;
      list-style-type: none;
      padding: 0;
      margin: 0; }
      body .mainnavbar-wrp .mobile-navigation-c ul.lang li {
        width: 52px;
        text-align: center; }
        body .mainnavbar-wrp .mobile-navigation-c ul.lang li a {
          color: #d1d1d1;
          font-family: Arial, sans-serif;
          background: transparent;
          font-weight: 400;
          font-size: 16px;
          line-height: 52px;
          text-transform: none; }
          body .mainnavbar-wrp .mobile-navigation-c ul.lang li a:hover {
            text-decoration: none; }
        body .mainnavbar-wrp .mobile-navigation-c ul.lang li ul {
          list-style-type: none;
          padding: 0;
          margin: 0;
          position: absolute;
          left: 0;
          top: 100%;
          width: 100%;
          display: block;
          background: #ffffff;
          display: none; }
          body .mainnavbar-wrp .mobile-navigation-c ul.lang li ul li a {
            display: block;
            color: #929191;
            text-align: center;
            padding: 7px 14px;
            font-size: 16px;
            line-height: 16px; }
            body .mainnavbar-wrp .mobile-navigation-c ul.lang li ul li a:hover {
              color: #67d0d8; }
        body .mainnavbar-wrp .mobile-navigation-c ul.lang li:hover ul {
          display: block; }
    @media (max-width: 900px) {
      body .mainnavbar-wrp .mobile-navigation-c {
        display: block; } }
  body .mainnavbar-wrp .container-navi h1.logo, body .mainnavbar-wrp .container-navi div.logo {
    width: 46px;
    height: 52px;
    text-indent: -9999px;
    display: block;
    margin: 0px 0 0 0px;
    padding: 0px;
    position: absolute;
    float: left;
    z-index: 1;
    left: 10px;
    top: 6px; }
    body .mainnavbar-wrp .container-navi h1.logo.black a, body .mainnavbar-wrp .container-navi div.logo.black a {
      background: url("../images/icons/logo-new-color.png") no-repeat 0 0 transparent;
      background-size: 46px 52px; }
    body .mainnavbar-wrp .container-navi h1.logo a, body .mainnavbar-wrp .container-navi div.logo a {
      display: block;
      height: 100%;
      background: url("../images/icons/logo-new-color.png") no-repeat 0 0 transparent;
      z-index: 2;
      background-size: 46px 52px; }
  body .mainnavbar-wrp .container-navi .navbar-collapse {
    float: right;
    width: auto;
    position: relative;
    border: none;
    border-color: transparent;
    box-shadow: none; }
    @media (min-width: 571px) and (max-width: 900px) {
      body .mainnavbar-wrp .container-navi .navbar-collapse {
        display: block; } }
    body .mainnavbar-wrp .container-navi .navbar-collapse.navbar-collapse-left {
      display: none !important; }
    body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav {
      float: right;
      padding-right: 0px;
      position: relative;
      font-size: 0; }
      body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav span.caret {
        display: none; }
      body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav.afterArrow {
        float: none;
        margin: 0; }
      body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li {
        display: inline-block;
        float: none;
        position: relative;
        padding: 24px 0px; }
        @media (min-width: 900px) and (max-width: 1100px) {
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li {
            vertical-align: middle; } }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li a {
          font-family: "Roboto", Arial, sans-serif;
          font-size: 17px;
          line-height: 17px;
          font-weight: 400;
          color: #f2f2f2;
          font-style: normal;
          -webkit-transition: all 0.6s;
          -moz-transition: all 0.6s;
          -ms-transition: all 0.6s;
          -o-transition: all 0.6s;
          transition: all 0.6s; }
          @media (min-width: 571px) and (max-width: 900px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li a {
              font-size: 12px; } }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a {
          padding: 0 11px;
          border-right: none;
          color: #ffffff;
          font-weight: 300; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a > span {
            display: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a:before, body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a:after {
            display: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a:hover, body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a:focus {
            text-decoration: none;
            color: #ffffff; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a.bookonlinemainmenu {
            font-weight: 400; }
          @media (max-width: 1377px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a {
              font-size: 14px;
              padding: 0 7px; } }
          @media (max-width: 1233px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a {
              font-size: 13px;
              padding: 0 7px; } }
          @media (max-width: 1170px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a {
              font-size: 11px;
              padding: 0 7px; } }
          @media (min-width: 900px) and (max-width: 1100px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > a {
              font-size: 12px;
              padding: 0 5px; } }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.boldcategory {
          background: #f25bbe;
          -webkit-transition: all 0.6s;
          -moz-transition: all 0.6s;
          -ms-transition: all 0.6s;
          -o-transition: all 0.6s;
          transition: all 0.6s; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.boldcategory > a {
            font-weight: 400;
            color: #ffffff; }
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.boldcategory > a:hover {
              font-weight: 400;
              text-decoration: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.boldcategory:hover {
            background: #f49ad0; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.active a, body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.current-menu-parent a {
          text-decoration: none;
          background-color: transparent;
          color: #ffffff; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.closebtn-mobile {
          display: none; }
          @media (max-width: 900px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.closebtn-mobile {
              display: block;
              text-align: center;
              padding: 10px 0; }
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.closebtn-mobile a {
                text-indent: -9999px;
                width: 45px;
                height: 45px;
                background: url("../images/icons/close45x45.png") no-repeat center transparent !important;
                background-size: 45px 45px;
                display: inline-block; } }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li:hover > a {
          text-decoration: none; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li:hover > ul.dropdown-menu {
          display: block; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > ul.dropdown-menu {
          left: 0; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li > ul.dropdown-menu:before {
            position: absolute;
            content: url(../images/icons/arrow-mainmenu.png);
            left: 24px;
            top: -16px; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu ul {
          border: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu ul.dropdown-menu {
            border: none; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu {
          background: #ffffff;
          border-radius: 0px;
          min-width: 216px; }
          @media (min-width: 900px) and (max-width: 1100px) {
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu {
              margin-top: 7px; } }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li a {
            font-family: "Roboto", Arial, sans-serif;
            font-size: 17px;
            line-height: 17px;
            font-weight: 300;
            color: #5f5f5f;
            text-transform: none;
            padding: 9px 14px; }
            @media (min-width: 900px) and (max-width: 1100px) {
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li a {
                font-size: 12px; } }
            @media (max-width: 900px) {
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li a {
                white-space: normal; } }
            @media (max-width: 571px) {
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li a {
                font-size: 20px;
                line-height: 20px;
                padding: 12px 14px; } }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li.current-menu-item a {
            font-weight: 400; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li.active a {
            background-color: transparent;
            color: #121212; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li:hover > a {
            color: #ffffff;
            background: #f25bbe; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li ul.dropdown-menu li.dropdown-submenu a:after {
            border: none; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang {
          position: relative; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang:hover a {
            text-decoration: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang a {
            color: #d1d1d1;
            font-family: Arial, sans-serif;
            background: transparent;
            font-weight: 400;
            font-size: 16px;
            text-transform: none; }
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang a.selected-lang {
              position: relative;
              margin-right: 11px; }
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang a.selected-lang:after {
                position: absolute;
                content: url("../images/icons/arrow-lang.png");
                right: -4px;
                top: -1px;
                display: block; }
          body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu {
            border-top: none;
            margin-top: 0px;
            min-width: 10px;
            background: #ffffff;
            width: 100%; }
            @media (min-width: 900px) and (max-width: 1100px) {
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu {
                margin-top: 7px; } }
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu:before {
              display: none; }
            body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu li {
              display: block; }
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu li:hover {
                background: transparent; }
                body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu li:hover a {
                  background: transparent; }
              body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu li a {
                display: block;
                color: #929191;
                text-align: center;
                padding: 7px 14px;
                font-size: 16px; }
                body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li.lang > ul.dropdown-menu li a:hover {
                  color: #67d0d8; }
        body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li:nth-last-child(4) > a, body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li:nth-last-child(3) > a, body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li:nth-last-child(2) > a, body .mainnavbar-wrp .container-navi .navbar-collapse ul.nav > li:last-child > a {
          border-right: none; }
  @media (max-width: 900px) {
    body .mainnavbar-wrp .container-navi div.logo {
      width: 36px;
      height: 41px;
      left: 10px;
      top: 5px; }
      body .mainnavbar-wrp .container-navi div.logo.black {
        width: 36px;
        height: 41px; }
        body .mainnavbar-wrp .container-navi div.logo.black a {
          background-size: 36px 41px; }
      body .mainnavbar-wrp .container-navi div.logo a {
        background-size: 36px 41px; }
    body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu {
      display: none !important;
      position: absolute;
      left: 0;
      top: 52px;
      width: 100%;
      padding-left: 0;
      padding-right: 0; }
      body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav {
        width: 100%;
        background: #e3e3e3;
        visibility: visible;
        width: 100%;
        margin: 0;
        overflow: hidden; }
        body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li {
          display: block;
          text-align: center;
          width: 100%;
          padding: 0; }
          body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li.boldcategory, body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li.lang {
            display: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > a {
            color: #505050;
            font-size: 19px;
            line-height: 23px;
            font-weight: 400;
            padding: 10px 11px;
            background: transparent !important;
            border-right: none; }
          body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > ul.dropdown-menu {
            position: relative;
            top: auto;
            left: auto;
            margin: 0px;
            padding: 0px;
            float: none;
            border: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: #cccaca; }
            body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > ul.dropdown-menu:before {
              display: none; }
            body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > ul.dropdown-menu li {
              padding: 0;
              text-align: center;
              display: block; }
              body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > ul.dropdown-menu li a {
                color: #575757;
                font-size: 19px;
                line-height: 23px;
                font-weight: 300;
                padding: 10px 11px;
                background: transparent !important;
                border-right: none; }
                body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > ul.dropdown-menu li a:hover {
                  color: #575757 !important; } }
        @media (max-width: 900px) and (max-width: 900px) {
          body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav > li > ul.dropdown-menu {
            background: #ffffff; } }
    @media (max-width: 900px) and (max-width: 571px) {
      body .mainnavbar-wrp .container-navi .navbar-collapse-mainmenu ul.nav {
        padding-top: 18px;
        overflow: hidden; } }
  @media (max-width: 900px) {
    body .mainnavbar-wrp.openmenu {
      position: relative; }
      body .mainnavbar-wrp.openmenu .container-navi .navbar-collapse-mainmenu {
        display: block !important; } }

body .contact-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2; }
  body .contact-popup.showmap {
    display: block; }
  body .contact-popup .close-cont {
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    margin: 0 11px 0 0;
    padding: 0;
    z-index: 2; }
    body .contact-popup .close-cont .closebtn {
      background: #a3a3a3;
      padding: 0;
      margin: 0;
      z-index: 2;
      width: 68px;
      height: 68px;
      text-indent: -9999px;
      display: block;
      float: right; }
      body .contact-popup .close-cont .closebtn:hover {
        background-color: #a3a3a3; }
      body .contact-popup .close-cont .closebtn span {
        position: absolute;
        width: 33px;
        height: 33px;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
        body .contact-popup .close-cont .closebtn span:after {
          position: absolute;
          content: "";
          border-left: thin solid #ffffff;
          height: 100%;
          top: 0px;
          left: 16px;
          transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          /* IE 9 */
          -webkit-transform: rotate(-45deg);
          /* Safari and Chrome */ }
        body .contact-popup .close-cont .closebtn span:before {
          position: absolute;
          content: "";
          border-left: thin solid #ffffff;
          height: 100%;
          top: 0px;
          left: 16px;
          transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          /* IE 9 */
          -webkit-transform: rotate(45deg);
          /* Safari and Chrome */ }
    @media (max-width: 571px) {
      body .contact-popup .close-cont {
        margin-right: 0; }
        body .contact-popup .close-cont .closebtn {
          width: 34px;
          height: 34px; }
          body .contact-popup .close-cont .closebtn span {
            width: 16px;
            height: 16px; }
            body .contact-popup .close-cont .closebtn span:after {
              left: 8px; }
            body .contact-popup .close-cont .closebtn span:before {
              left: 8px; } }

body section {
  position: relative; }
  body section .img-wrp {
    height: 600px;
    background: #ffffff;
    position: relative; }
    body section .img-wrp.img-wrp-gmap {
      height: 639px; }
      body section .img-wrp.img-wrp-gmap .gmapslide {
        height: 639px;
        width: 100%; }
      @media (max-width: 571px) {
        body section .img-wrp.img-wrp-gmap {
          height: 300px; }
          body section .img-wrp.img-wrp-gmap .gmapslide {
            height: 300px; } }
    body section .img-wrp .imgsslider {
      width: 100%;
      height: 100%; }
    body section .img-wrp .slide-navi {
      position: absolute;
      right: 0;
      left: auto;
      bottom: 0;
      margin: 0 60px 29px 0;
      padding: 0; }
      body section .img-wrp .slide-navi li {
        list-style: none;
        width: 12px;
        height: 12px;
        float: left;
        margin: 0 5px 0 0; }
        body section .img-wrp .slide-navi li.current-slide a {
          background: #586774;
          background: rgba(88, 103, 116, 0.6); }
          body section .img-wrp .slide-navi li.current-slide a:hover {
            background: #0e2432;
            background: rgba(14, 36, 50, 0.6); }
        body section .img-wrp .slide-navi li a {
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          -khtml-border-radius: 50%;
          border-radius: 50%;
          width: 12px;
          height: 12px;
          background: white;
          background: rgba(255, 255, 255, 0.45);
          display: block;
          cursor: pointer; }
          body section .img-wrp .slide-navi li a:hover {
            background: #0e2432;
            background: rgba(14, 36, 50, 0.6); }
      @media (max-width: 900px) {
        body section .img-wrp .slide-navi {
          display: none; } }
    @media (max-width: 571px) {
      body section .img-wrp {
        height: 300px; } }
    @media (max-height: 360px) {
      body section .img-wrp {
        height: 200px; } }
  body section .content-wep {
    position: relative; }
    body section .content-wep .container {
      background: #ffffff; }
      body section .content-wep .container.container-fluid {
        width: auto; }
        body section .content-wep .container.container-fluid.container-fluid-footer {
          padding-left: 21px;
          padding-right: 21px;
          border-bottom: thin solid #d7d7d7;
          border-top: thin solid #d7d7d7;
          background: #f4f4f5; }
      body section .content-wep .container.tableClass {
        display: table; }
        @media (max-width: 900px) {
          body section .content-wep .container.tableClass.mobile-clear-table {
            display: inline-block;
            width: 100%; }
            body section .content-wep .container.tableClass.mobile-clear-table div.tableRowClass {
              display: inline-block;
              width: 100%; }
              body section .content-wep .container.tableClass.mobile-clear-table div.tableRowClass div.tableCellClass {
                display: inline-block;
                padding-left: 0;
                padding-right: 0; } }
      body section .content-wep .container .row {
        background: #ffffff;
        margin-right: 0px;
        margin-left: 0px; }
        body section .content-wep .container .row.tableRowClass {
          display: table-row; }
        body section .content-wep .container .row .heightContentSlide {
          height: 570px;
          min-height: 570px;
          padding-top: 15px;
          padding-bottom: 15px; }
          @media (max-width: 900px) {
            body section .content-wep .container .row .heightContentSlide {
              height: auto;
              min-height: 10px;
              padding-top: 56px;
              padding-bottom: 39px; } }
        @media (max-height: 610px) and (min-width: 1279px) {
          body section .content-wep .container .row .heightContentSlideSmaller {
            height: 440px; } }
        body section .content-wep .container .row .heightContentSlideHP2Sl {
          height: 670px;
          min-height: 670px;
          padding-top: 50px;
          padding-bottom: 50px; }
          body section .content-wep .container .row .heightContentSlideHP2Sl.heightContentSlideHP2Sl-sml1a {
            height: 489px;
            min-height: 489px; }
          body section .content-wep .container .row .heightContentSlideHP2Sl.heightContentSlideHP2Sl-sml1 {
            height: 399px;
            min-height: 399px; }
          body section .content-wep .container .row .heightContentSlideHP2Sl.roompadding-top {
            padding-top: 50px; }
          @media (min-width: 900px) and (max-width: 1100px) {
            body section .content-wep .container .row .heightContentSlideHP2Sl {
              padding-left: 0px;
              padding-right: 0px; } }
          @media (max-width: 900px) {
            body section .content-wep .container .row .heightContentSlideHP2Sl {
              min-height: 10px !important;
              height: auto !important;
              padding-top: 56px;
              padding-bottom: 39px; } }
          @media (max-width: 571px) {
            body section .content-wep .container .row .heightContentSlideHP2Sl {
              padding-bottom: 0; } }
        body section .content-wep .container .row .heightContentSlideHP2Sl-homeheader {
          height: 380px;
          min-height: 380px;
          padding-top: 15px;
          padding-bottom: 15px; }
          @media (max-width: 900px) {
            body section .content-wep .container .row .heightContentSlideHP2Sl-homeheader {
              min-height: 10px;
              height: auto;
              padding-top: 56px;
              padding-bottom: 39px; } }
        body section .content-wep .container .row .heightContentSlideHP2Sl-contact {
          height: 524px;
          min-height: 524px;
          padding-top: 15px;
          padding-bottom: 15px; }
          @media (max-width: 900px) {
            body section .content-wep .container .row .heightContentSlideHP2Sl-contact {
              min-height: 10px;
              height: auto;
              padding-top: 0;
              padding-bottom: 39px; } }
        @media (min-width: 900px) and (max-width: 1100px) {
          body section .content-wep .container .row .heightContentSlidePaddingLeftRight {
            padding-left: 0px;
            padding-right: 0px; } }
        body section .content-wep .container .row .slideFixWidth {
          width: 986px !important;
          margin: 0 auto !important;
          float: none !important; }
          @media (max-width: 986px) {
            body section .content-wep .container .row .slideFixWidth {
              width: 100% !important; } }
          @media (max-width: 900px) {
            body section .content-wep .container .row .slideFixWidth {
              width: 100% !important; } }
        body section .content-wep .container .row .slideFixWidth990 {
          width: 990px; }
          @media (max-width: 989px) {
            body section .content-wep .container .row .slideFixWidth990 {
              width: 100%; } }
        body section .content-wep .container .row .tableCellClass {
          display: table-cell;
          float: none;
          vertical-align: top; }
          body section .content-wep .container .row .tableCellClass.verticalAlignMiddle {
            vertical-align: middle; }
        body section .content-wep .container .row .heightContentSlidePromosHomepage .row > div .maintitle {
          padding-top: 0; }
        body section .content-wep .container .row .heightContentSlidePromosHomepage .row > div .promos-listing {
          padding-bottom: 0; }
          @media (max-width: 900px) {
            body section .content-wep .container .row .heightContentSlidePromosHomepage .row > div .promos-listing {
              padding-bottom: 50px; } }
        body section .content-wep .container .row .contact-left-fck {
          padding-top: 21px; }
          @media (max-width: 900px) {
            body section .content-wep .container .row .contact-left-fck {
              width: 100% !important;
              padding: 10px 0px; } }
        body section .content-wep .container .row .contact-right-fck {
          border-left: thin solid #e0e1e2;
          padding-left: 43px;
          padding-right: 0;
          padding-bottom: 17px; }
          @media (max-width: 900px) {
            body section .content-wep .container .row .contact-right-fck {
              width: 100% !important;
              border: none;
              padding: 10px 0px; } }
  body section.footer {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 75px;
    padding: 100px 0 0 0; }
    @media (max-width: 900px) {
      body section.footer {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        height: auto;
        min-height: 10px; } }
    @media (max-width: 571px) {
      body section.footer {
        padding-top: 50px; } }
    body section.footer .footer-first {
      position: relative; }
      body section.footer .footer-first .container {
        width: auto;
        padding: 63px 78px;
        background: url("../images/icons/footer-logo-bg.png") no-repeat center #f2f2f2; }
        @media (min-width: 900px) and (max-width: 1100px) {
          body section.footer .footer-first .container {
            padding: 63px 20px; } }
        @media (max-width: 900px) {
          body section.footer .footer-first .container {
            background-image: none; } }
        @media (max-width: 571px) {
          body section.footer .footer-first .container {
            padding: 63px 20px; } }
        body section.footer .footer-first .container .row .left .tripadvisor-review > span {
          font-size: 17px;
          line-height: 23px;
          color: #7d7d7d;
          font-weight: 300;
          font-family: "Roboto", Arial, sans-serif;
          background: url("../images/icons/tripadvisor-icon-reviews.png") no-repeat 0 2px transparent;
          padding: 0 0 0 40px;
          margin: 0; }
        body section.footer .footer-first .container .row .left .tripadvisor-review > p {
          font-size: 16px;
          line-height: 23px;
          color: #404040;
          font-weight: 300;
          font-family: "Roboto", Arial, sans-serif;
          font-style: italic;
          padding: 15px 0 0 0; }
          body section.footer .footer-first .container .row .left .tripadvisor-review > p a {
            color: #41c1cb;
            text-decoration: underline; }
            body section.footer .footer-first .container .row .left .tripadvisor-review > p a:hover {
              color: #67d0d8; }
        body section.footer .footer-first .container .row .left .tripadvisor-review > a {
          font-size: 14px;
          line-height: 20px;
          color: #000000;
          font-weight: 300;
          font-family: "Roboto", Arial, sans-serif;
          text-decoration: underline;
          padding: 0;
          margin: 23px 0 0 0;
          display: block; }
          body section.footer .footer-first .container .row .left .tripadvisor-review > a:hover {
            color: #000000; }
        body section.footer .footer-first .container .row .left .newsletter-form {
          padding: 15px 0 0 0; }
          body section.footer .footer-first .container .row .left .newsletter-form > span {
            font-size: 17px;
            line-height: 23px;
            color: #7d7d7d;
            font-weight: 300;
            font-family: "Roboto", Arial, sans-serif;
            padding: 0;
            margin: 0; }
          body section.footer .footer-first .container .row .left .newsletter-form form {
            padding: 15px 0 0 0;
            margin: 0;
            overflow: hidden; }
            body section.footer .footer-first .container .row .left .newsletter-form form input[type="email"] {
              font-size: 14px;
              line-height: 22px;
              color: #7d7d7d;
              background: #ffffff;
              padding: 11px 14px 11px 14px;
              position: relative;
              text-align: left;
              font-family: "Roboto", Arial, sans-serif;
              font-weight: 300;
              font-style: normal;
              display: inline-block;
              vertical-align: bottom;
              height: 44px;
              float: left;
              border: none;
              box-shadow: none;
              border-radius: 0;
              border: thin solid #dddddd;
              border-right: none;
              -webkit-appearance: none; }
              body section.footer .footer-first .container .row .left .newsletter-form form input[type="email"]::-webkit-input-placeholder {
                color: #7d7d7d; }
              body section.footer .footer-first .container .row .left .newsletter-form form input[type="email"]:-moz-placeholder {
                color: #7d7d7d; }
              body section.footer .footer-first .container .row .left .newsletter-form form input[type="email"]::-moz-placeholder {
                color: #7d7d7d; }
              body section.footer .footer-first .container .row .left .newsletter-form form input[type="email"]:-ms-input-placeholder {
                color: #7d7d7d; }
              body section.footer .footer-first .container .row .left .newsletter-form form input[type="email"]:focus {
                outline-style: auto;
                outline-width: 0px;
                outline-color: -webkit-focus-ring-color;
                border: none;
                box-shadow: none;
                border: thin solid #dddddd;
                border-right: none; }
            body section.footer .footer-first .container .row .left .newsletter-form form input[type="button"], body section.footer .footer-first .container .row .left .newsletter-form form input[type="submit"] {
              float: left;
              border: none;
              box-shadow: none;
              border-radius: 0;
              text-indent: -9999px;
              width: 44px;
              height: 44px;
              background: url("../images/icons/subscribe-arrow.png") no-repeat center #ffffff;
              display: inline-block;
              vertical-align: bottom;
              border: thin solid #dddddd;
              border-left: none; }
              body section.footer .footer-first .container .row .left .newsletter-form form input[type="button"]:hover, body section.footer .footer-first .container .row .left .newsletter-form form input[type="submit"]:hover {
                background-color: #ffffff; }
        @media (max-width: 900px) {
          body section.footer .footer-first .container .row .left {
            width: 100% !important; }
            body section.footer .footer-first .container .row .left .tripadvisor-review {
              text-align: center; }
            body section.footer .footer-first .container .row .left .newsletter-form {
              text-align: center; }
              body section.footer .footer-first .container .row .left .newsletter-form > span {
                display: block;
                float: none; }
              body section.footer .footer-first .container .row .left .newsletter-form form {
                display: inline-block;
                float: none; } }
        body section.footer .footer-first .container .row .right .wrp {
          float: right; }
          body section.footer .footer-first .container .row .right .wrp .weather {
            background: url("../images/icons/footer-weather-icon.png") no-repeat 0 0 transparent;
            padding: 4px 0 0 35px; }
            body section.footer .footer-first .container .row .right .wrp .weather > span {
              font-size: 17px;
              line-height: 17px;
              color: #7d7d7d;
              font-weight: 300;
              font-family: "Lato", Arial, sans-serif; }
            body section.footer .footer-first .container .row .right .wrp .weather > p {
              font-size: 25px;
              line-height: 25px;
              color: #7a7a7a;
              font-weight: 300;
              font-family: "Lato", Arial, sans-serif;
              padding: 10px 0 0 0; }
          body section.footer .footer-first .container .row .right .wrp .contactinfo {
            background: url("../images/icons/footer-info-icon.png") no-repeat 0 0 transparent;
            padding: 0px 0 0 35px;
            margin: 28px 0 0 0; }
            body section.footer .footer-first .container .row .right .wrp .contactinfo > span {
              font-size: 17px;
              line-height: 17px;
              color: #7d7d7d;
              font-weight: 300;
              font-family: "Lato", Arial, sans-serif; }
            body section.footer .footer-first .container .row .right .wrp .contactinfo > .text {
              font-size: 16px;
              line-height: 23px;
              color: #404040;
              font-weight: 300;
              font-family: "Lato", Arial, sans-serif;
              padding: 0px 0 0 0; }
          @media (max-width: 900px) {
            body section.footer .footer-first .container .row .right .wrp {
              float: none; } }
        @media (max-width: 900px) {
          body section.footer .footer-first .container .row .right {
            padding-top: 40px;
            width: 100% !important; }
            body section.footer .footer-first .container .row .right .wrp {
              text-align: center;
              display: block;
              float: left;
              width: 100%;
              text-align: center; }
              body section.footer .footer-first .container .row .right .wrp .weather {
                text-align: center;
                width: auto;
                display: block;
                background: none;
                padding: 0; }
              body section.footer .footer-first .container .row .right .wrp .contactinfo {
                text-align: center;
                width: auto;
                display: block;
                background: none;
                padding: 0; } }
    body section.footer .content-wep .container {
      padding-top: 0px;
      padding-bottom: 0px; }
      body section.footer .content-wep .container.container-padding-topBottom {
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: none; }
      body section.footer .content-wep .container .row {
        background: transparent; }
        body section.footer .content-wep .container .row .left {
          padding: 21px 0px 0px 0px; }
          body section.footer .content-wep .container .row .left p {
            font-size: 20px;
            line-height: 20px;
            color: #575757;
            font-family: "Lato", Arial, sans-serif;
            font-weight: 300;
            margin: 0px;
            padding: 0 0 7px 0px; }
            body section.footer .content-wep .container .row .left p strong {
              font-weight: 400; }
            @media (max-width: 900px) {
              body section.footer .content-wep .container .row .left p {
                font-size: 13px;
                line-height: 13px; } }
          body section.footer .content-wep .container .row .left ul.footer-menu {
            list-style-type: none;
            margin: 0px;
            padding: 0px; }
            body section.footer .content-wep .container .row .left ul.footer-menu li {
              display: inline-block;
              margin: 0px;
              padding: 0px;
              font-family: "Roboto", Arial, sans-serif;
              font-weight: 300;
              font-size: 15px;
              line-height: 15px;
              color: #6b6b6b; }
              body section.footer .content-wep .container .row .left ul.footer-menu li a {
                font-family: "Roboto", Arial, sans-serif;
                font-weight: 300;
                font-size: 15px;
                line-height: 15px;
                color: #6b6b6b;
                margin: 0 5px 0 0px;
                padding: 0 5px 0 0px;
                border-right: thin solid #9f9fa0; }
              body section.footer .content-wep .container .row .left ul.footer-menu li:last-child a {
                border: none;
                margin: 0px;
                padding: 0px; }
            @media (max-width: 900px) {
              body section.footer .content-wep .container .row .left ul.footer-menu {
                font-size: 12px;
                line-height: 21px; }
                body section.footer .content-wep .container .row .left ul.footer-menu a {
                  font-size: 12px;
                  line-height: 21px; } }
          @media (max-width: 900px) {
            body section.footer .content-wep .container .row .left {
              padding: 0px;
              text-align: center;
              float: none;
              display: block;
              width: 100%; }
              body section.footer .content-wep .container .row .left ul.socialicons-bottom {
                padding-top: 25px;
                padding-bottom: 32px; } }
        body section.footer .content-wep .container .row .right {
          text-align: right;
          padding: 0px 0px 0px 0px; }
          @media (max-width: 900px) {
            body section.footer .content-wep .container .row .right .addthis-container {
              text-align: center;
              padding-top: 0px; } }
          body section.footer .content-wep .container .row .right .addthis-container .weathercont {
            display: inline-block;
            padding: 0 15px 0 0px;
            margin: 0px 0px 0 0;
            float: right;
            border-right: thin solid #bcdbe5;
            display: none; }
            body section.footer .content-wep .container .row .right .addthis-container .weathercont p {
              padding: 0px;
              margin: 0px;
              color: #7a7a7a;
              font-family: "Open Sans", Arial, sans-serif;
              font-size: 15px;
              line-height: 42px;
              font-weight: 400;
              display: inline-block; }
              body section.footer .content-wep .container .row .right .addthis-container .weathercont p.weathercont-text {
                font-weight: 300; }
              body section.footer .content-wep .container .row .right .addthis-container .weathercont p.weathercont-temp {
                font-weight: 400; }
            @media (max-width: 900px) {
              body section.footer .content-wep .container .row .right .addthis-container .weathercont {
                float: none;
                padding-right: 0px;
                border-right: none !important; } }
          body section.footer .content-wep .container .row .right .addthis-container .socialfooter {
            padding: 0;
            margin: 0;
            float: right;
            list-style-type: none; }
            @media (max-width: 900px) {
              body section.footer .content-wep .container .row .right .addthis-container .socialfooter {
                float: none; } }
            body section.footer .content-wep .container .row .right .addthis-container .socialfooter li {
              padding: 0;
              margin: 0;
              display: inline-block;
              vertical-align: top; }
              body section.footer .content-wep .container .row .right .addthis-container .socialfooter li a {
                padding: 0;
                margin: 0;
                color: #afafaf;
                font-size: 85px;
                line-height: 85px;
                text-decoration: none; }
                @media (max-width: 995px) {
                  body section.footer .content-wep .container .row .right .addthis-container .socialfooter li a {
                    font-size: 70px; } }
                @media (max-width: 900px) {
                  body section.footer .content-wep .container .row .right .addthis-container .socialfooter li a {
                    font-size: 38px;
                    line-height: 38px; } }
                body section.footer .content-wep .container .row .right .addthis-container .socialfooter li a:before {
                  font-size: 0%;
                  display: none; }
                body section.footer .content-wep .container .row .right .addthis-container .socialfooter li a:hover {
                  text-decoration: none;
                  color: #f25bbe; }
          body section.footer .content-wep .container .row .right .addthis-container .adthiswrp {
            display: block;
            float: right;
            vertical-align: middle;
            line-height: 85px;
            padding-left: 11px; }
            body section.footer .content-wep .container .row .right .addthis-container .adthiswrp span.at4-icon {
              background: url("../images/icons/addthis.png") no-repeat 0 0 transparent !important; }
            body section.footer .content-wep .container .row .right .addthis-container .adthiswrp .addthis_32x32_style .addthis_counter.addthis_bubble_style a.addthis_button_expanded {
              color: #939393; }
            body section.footer .content-wep .container .row .right .addthis-container .adthiswrp div.fb-like.fb_iframe_widget {
              top: auto;
              display: inline-block !important;
              float: none !important;
              width: auto !important;
              line-height: 5px;
              vertical-align: middle; }
            body section.footer .content-wep .container .row .right .addthis-container .adthiswrp div.addthis_toolbox.addthis_default_style.addthis_32x32_style {
              display: inline-block; }
            body section.footer .content-wep .container .row .right .addthis-container .adthiswrp div.addthis_toolbox {
              display: inline-block !important;
              float: none !important;
              min-width: 110px;
              vertical-align: middle; }
            @media (max-width: 900px) {
              body section.footer .content-wep .container .row .right .addthis-container .adthiswrp {
                float: none;
                padding-top: 10px; } }
          body section.footer .content-wep .container .row .right ul.footer-icos-badges {
            margin: 0px;
            padding: 0px;
            list-style-type: none; }
            body section.footer .content-wep .container .row .right ul.footer-icos-badges li {
              margin: 0px;
              padding: 0 20px 0 0;
              display: inline-block; }
              body section.footer .content-wep .container .row .right ul.footer-icos-badges li a {
                margin: 0px;
                padding: 0px; }
              body section.footer .content-wep .container .row .right ul.footer-icos-badges li:last-child {
                padding: 0 0px 0 0; }
          @media (max-width: 1244px) {
            body section.footer .content-wep .container .row .right ul.footer-icos-badges li {
              padding: 0 0 0 0; }
              body section.footer .content-wep .container .row .right ul.footer-icos-badges li a img {
                height: 80px; } }
          @media (max-width: 900px) {
            body section.footer .content-wep .container .row .right {
              padding: 0px;
              text-align: center;
              float: none;
              display: block;
              width: 100%; }
              body section.footer .content-wep .container .row .right ul.footer-icos-badges {
                text-align: center;
                padding-top: 25px; }
                body section.footer .content-wep .container .row .right ul.footer-icos-badges li {
                  padding: 0 0 0 0; }
                  body section.footer .content-wep .container .row .right ul.footer-icos-badges li a img {
                    height: 32px; } }
  body section.promo-drodown-menu {
    z-index: 1; }
  body section.firstslide-slideshow.firstslide-slideshow-roomlist .img-wrp {
    height: 273px; }
    body section.firstslide-slideshow.firstslide-slideshow-roomlist .img-wrp #slide-navi-main {
      display: none; }
  body section.firstslide-slideshow .img-wrp .logo-first-slide {
    width: 243px;
    height: 207px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -50px 0 0 0;
    padding: 0;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%) ;
    -ms-transform: translate(-50%, -50%) ;
    transform: translate(-50%, -50%) ;
    background: url("../images/icons/logo-first-slide.png") no-repeat 0 0 transparent; }
    body section.firstslide-slideshow .img-wrp .logo-first-slide.interior {
      background: url("../images/icons/logo-first-slide2.png") no-repeat 0 0 transparent;
      width: 134px;
      height: 148px;
      margin: 0 0 0 0; }
      @media (max-height: 670px) {
        body section.firstslide-slideshow .img-wrp .logo-first-slide.interior {
          margin-top: -20px; } }
      @media (max-height: 615px) {
        body section.firstslide-slideshow .img-wrp .logo-first-slide.interior {
          margin-top: -40px; } }
      @media (max-height: 570px) {
        body section.firstslide-slideshow .img-wrp .logo-first-slide.interior {
          margin-top: -60px; } }
    @media (max-width: 900px) {
      body section.firstslide-slideshow .img-wrp .logo-first-slide {
        -webkit-transform: translateY(0%) ;
        -ms-transform: translateY(0%) ;
        transform: translateY(0%) ;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: auto;
        bottom: 310px;
        background-size: 132px 112px;
        width: 132px;
        height: 112px;
        margin: 0 0 0 0; }
        body section.firstslide-slideshow .img-wrp .logo-first-slide.interior {
          background: url("../images/icons/logo-first-slide2.png") no-repeat 0 0 transparent;
          width: 134px;
          height: 148px;
          background-size: 134px 148px;
          margin: 0px 0 0 0;
          bottom: 260px; } }
  @media (max-height: 400px) {
    body section.firstslide-slideshow .img-wrp .logo-first-slide {
      bottom: 190px;
      width: 117px;
      height: 100px;
      background-size: 117px 100px; }
      body section.firstslide-slideshow .img-wrp .logo-first-slide.interior {
        bottom: 185px;
        width: 116px;
        height: 128px;
        background-size: 116px 128px; } }

body .x2-footer ul.socialfooter {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: block;
  text-align: center; }
  body .x2-footer ul.socialfooter li {
    padding: 0;
    margin: 0;
    display: inline-block; }
    body .x2-footer ul.socialfooter li a {
      font-size: 59px;
      line-height: 59px;
      color: #fff;
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
      body .x2-footer ul.socialfooter li a:hover {
        text-decoration: none;
        color: #fff; }

.cc_container {
  background: #fff !important;
  color: #636363 !important;
  font-size: 15px !important;
  font-family: "Muli", sans-serif !important;
  box-sizing: border-box !important;
  font-weight: 300;
  border: 1px solid #a7aaab; }

.cc_container .cc_btn, .cc_container .cc_btn:visited {
  color: #fff !important;
  background-color: #a7aaab !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  border: 1px solid #a7aaab !important; }

.cc_container .cc_btn:hover, .cc_container .cc_btn:active {
  color: #fff !important;
  background-color: #4d4d4d !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  border: 1px solid #4d4d4d !important; }

.cc_container a, .cc_container a:visited {
  color: #636363 !important;
  text-decoration: underline !important; }

.cc_container .cc_btn {
  max-width: 155px !important;
  text-decoration: none !important; }

@media (min-width: 768px) {
  .cc_container .cc_btn {
    max-width: 200px !important; } }

@media (min-width: 1600px) {
  .cc_container .cc_btn {
    max-width: 200px !important; } }

@media (min-width: 1900px) {
  .cc_container .cc_btn {
    max-width: 220px !important; } }

/*# sourceMappingURL=styles.css.map */
