.form .toggle-trigger:after, .theme-grid .tab-nav .current-btn:after {
  font-family: 'expedia';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grid .items .item .overlay, .box-item .box-header .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(0, 0, 0, 0.8)));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  background: -o-linear-gradient(top, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.grid .items .item .bg, .box-item .box-header .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background-color: #2a4d85;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}
.grid .items .item .creative-thumb-fix.bg, .box-item .box-header .creative-thumb-fix.bg {
  max-width: 105%;
}

.grid .items .item .underlay, .box-item .box-header .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 40, 71, 0);
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}

.grid .items .item .item-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  padding-top: 60%;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* ===========================================================
 *
 *  Name:          selectordie_dev.css
 *  Updated:       2014-10-10
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */
h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
}
@media screen and (min-width: 760px) {
  h1 {
    font-size: 45px;
    line-height: 45px;
  }
}

h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 21px;
  line-height: 21px;
  font-weight: 600;
}
@media screen and (min-width: 760px) {
  h2 {
    font-size: 32px;
    line-height: 32px;
  }
}

h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 19px;
  line-height: 19px;
  font-weight: 600;
}
h4.module-title {
  margin-bottom: 20px;
  color: #58738a;
}

.sod_select,
.sod_select * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select {
  display: inline-block;
  position: relative;
  line-height: 1;
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  border: 2px solid #c7c7c7;
  background: #ffffff;
  color: #4d5559;
  font-size: 15px;
  line-height: 19px;
  padding: 10px;
  outline: 0;
  outline-offset: -2px;
  /* Opera */
  cursor: default;
  border-radius: 4px;
        /*.rooms &{
	        margin-bottom: 10px;
        }*/
}

/* Up/Down arrows */
.sod_select:after {
  content: "\25BC";
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 7px;
}

/* Change the border color on hover, focus and when open */
.sod_select.open,
.sod_select.focus {
  border-color: #002847;
}

/* When the entire SoD is disabled, go crazy! */
.sod_select.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
.sod_select .sod_label {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  padding-right: 15px;
}

.sod_select .sod_prefix {
  /* Use this if you're using a prefix and want to style it */
}

.sod_select .sod_placeholder {
  /* Use this if you're using a placeholder and want to style it */
}

/* Options list wrapper */
.sod_select .sod_list_wrapper {
  position: absolute;
  top: 100%;
  left: -2px;
  right: -2px;
  display: none;
  height: auto;
  background: #ffffff;
  border: 2px solid #002847;
  border-top: none;
  color: #0065b8;
  font-weight: 300;
  z-index: 1;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Shows the option list (don't edit) */
.sod_select.open .sod_list_wrapper {
  display: block;
}

/* Don't display the options when  */
.sod_select.disabled.open .sod_list_wrapper {
  display: none;
}

/* When the option list is displayed above the SoD */
.sod_select.above .sod_list_wrapper {
  top: auto;
  bottom: 100%;
  border-top: 2px solid #002847;
  border-bottom: none;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* Options list container */
.sod_select .sod_list {
  display: block;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}
#wizard-block-html .sod_select .sod_list {
  max-height: 160px;
}

/* All the options. Keep the first three lines for truncating... */
.sod_select .sod_option {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  position: relative;
  padding: 10px 10px;
  list-style-type: none;
}

/* Optgroups */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
  background: inherit;
  color: #939393;
  font-size: 10px;
  font-style: italic;
}

/* Children of an optgroup */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

/* Used together with placeholderOption / data-placeholder-option */
.sod_select .sod_option.is-placeholder {
  display: none;
}

/* Disabled option */
.sod_select .sod_option.disabled {
  background: inherit;
  color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
.sod_select .sod_option.active {
  background: #f7f7f7;
  color: #333333;
}

/*Make room for the check mark */
.sod_select .sod_option.selected {
  font-weight: 700;
  padding-right: 25px;
}

/* Displays a check mark for the selected option */
.sod_select .sod_option.selected:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #808080;
  height: 9px;
  width: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
}

/* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
.sod_select.no_highlight .sod_option.selected {
  font-weight: 300;
}

.sod_select.no_highlight .sod_option.selected:before {
  display: none;
}

.sod_select .sod_option.link {
  /* If data-link is set on a specific option */
}

.sod_select .sod_option.linkexternal {
  /* If data-link-external is set on a specific option */
}

/* Hide native select */
.sod_select select {
  display: none !important;
}

/* The native select in touch mode. Keep this first line. Sorry, keep everything. */
.sod_select.touch select {
  -webkit-appearance: menulist-button;
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
}
@media screen and (min-width: 760px) {
  h1 {
    font-size: 45px;
    line-height: 45px;
  }
}

h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 21px;
  line-height: 21px;
  font-weight: 600;
}
@media screen and (min-width: 760px) {
  h2 {
    font-size: 32px;
    line-height: 32px;
  }
}

h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 19px;
  line-height: 19px;
  font-weight: 600;
}
h4.module-title {
  margin-bottom: 20px;
  color: #58738a;
}

.form label, .form .has-check {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
  color: #4d5559;
}

.form .field-wrap {
  position: relative;
  margin-bottom: 20px;
}
.form .field-wrap:last-of-type {
  margin-bottom: 0;
}
.form .field-wrap input:not([data-provide="typeahead"]):hover, .form .field-wrap .sod_select:hover, .form .field-wrap .sod_option:hover {
  cursor: pointer;
}
.form .input-group {
  position: relative;
}
.form label {
  display: block;
  padding-bottom: 10px;
}
@media screen and (min-width: 520px) {
  .form .split {
    width: 50%;
    float: left;
    padding-right: 10px;
  }
  .form .split:last-of-type {
    padding-right: 0;
  }
  .form .split.split-33 {
    width: 33.33%;
  }
  .form .split.split-66 {
    width: 66.66%;
  }
}
.form input[type="text"], .form input[type="search"], .form input[type="email"], .form input[type="tel"] {
  border-radius: 4px;
  border: 2px solid #c7c7c7;
  font-family: "Source Sans Pro", sans-serif;
  background: #ffffff;
  font-size: 15px;
  line-height: 15px;
  padding: 10px;
  width: 100%;
  color: #4d5559;
  -webkit-transition: -webkit-box-shadow .2s ease;
  transition: -webkit-box-shadow .2s ease;
  -o-transition: box-shadow .2s ease;
  transition: box-shadow .2s ease;
  transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
}
@media screen and (min-width: 480px) {
  .form input[type="text"], .form input[type="search"], .form input[type="email"], .form input[type="tel"] {
    font-size: 15px;
    line-height: 15px;
    padding-left: 40px;
  }
}
.form input[type="text"].error, .form input[type="search"].error, .form input[type="email"].error, .form input[type="tel"].error {
  border-color: #d44f4f;
}
.form select {
  width: 100%;
}
.form .input-icon {
  position: absolute;
  left: 13px;
  top: 12px;
  color: #656f74;
  display: none;
}
@media screen and (min-width: 480px) {
  .form .input-icon {
    display: block;
  }
}
.form .has-check {
  display: inline-block;
  padding-right: 15px;
}
.form .has-check span {
  display: inline-block;
  padding-left: 5px;
}
.form .has-check:last-of-type {
  padding-right: 0;
}
.form .vertical .has-check {
  display: block;
  padding-right: 0;
}
.form.search-form .btn {
  width: 50px;
  min-width: 0;
  margin-left: 10px;
}
.form.search-form .btn .btn-label {
  display: none;
}
@media screen and (min-width: 480px) {
  .form.search-form .btn {
    width: 100px;
  }
  .form.search-form .btn .btn-label {
    display: block;
  }
  .form.search-form .btn .icon {
    display: none;
  }
}
.form.search-form .field-wrap .input-icon {
  left: 11px;
  top: 16px;
}
.form.search-form .field-wrap .input-group {
                /*float: left;
				width: calc(100% - 60px);
				@media screen and (min-width: 480px){
					width: calc(100% - 110px);
				}*/
  display: inline-block;
}
.form.search-form .field-wrap .input-group input {
  padding: 15px;
  border: 0;
}
.form.search-form .field-wrap .input-group input:focus {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 40, 71, 0.6);
          box-shadow: 0px 0px 15px 0px rgba(0, 40, 71, 0.6);
}
@media screen and (min-width: 480px) {
  .form.search-form .field-wrap .input-group input {
    padding-left: 30px;
  }
}
.booking-form .form .focused input[type="text"], .booking-form .form .focused input[type="search"], .booking-form .form .focused input[type="email"], .booking-form .form .focused input[type="tel"] {
  border: 2px solid #002847;
  color: #0065b8;
}
.booking-form .form .focused .input-icon {
  color: #002847;
}
.form .validation-msg {
  padding: 10px;
  background: #f3f0d6;
  border: 1px solid #d8c28b;
}
.form .validation-msg.errorh {
  padding: 10px 0px;
  color: #a63838;
  background: transparent;
  border: none;
}
.form .errors {
  display: block;
  padding: 10px;
  background: #f7b3b3;
  border: 1px solid #a63838;
  margin-bottom: 20px;
}
.form .errors li {
  list-style-type: decimal;
  list-style-position: inside;
}
.form .toggle-trigger {
  color: #ffffff;
  font-weight: 400;
}
.form .toggle-trigger:after {
  content: "\f103";
  font-size: 14px;
  position: relative;
  left: 5px;
  top: 1px;
}
.form h5 {
  color: #002847;
  padding-bottom: 10px;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert ul {
  margin-left: 20px;
  padding-left: 20px;
}
.alert ul li {
  list-style: circle;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.btn {
  border: 1px solid transparent;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-family: "Source Sans Pro", sans-serif;
  display: inline-block;
  text-align: center;
  padding: 10px 10px;
}
.btn.btn-primary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcb00), to(#ffcb00));
  background-image: -webkit-linear-gradient(top, #ffcb00, #ffcb00);
  background-image: -o-linear-gradient(top, #ffcb00, #ffcb00);
  background-image: linear-gradient(to bottom, #ffcb00, #ffcb00);
  border-color: #d4a900 #aa8700 #aa8700;
  color: #3d3100;
  height: 50px;
  min-width: 100px;
}
.desktop .btn.btn-primary:hover {
  background: #ffcb00;
}

/*THIS IS A TEMP SOLUTION TO HELP WITH QUICK TEMPLATE CHANGES. WE SHOULD FIGURE OUT IF WE WANT TO USE A GRID SYSTEM MOVING FORWARD.*/
.containerPromoted {
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  width: 100%;
  float: left;
  clear: both;
}

.standard-grid .sectioned {
  padding-top: 20px;
}
.standard-grid .item-wrap {
  padding: 10px;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .standard-grid .item-wrap {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .standard-grid .item-wrap {
    width: 25%;
  }
}
.standard-grid .item-wrap .text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  color: #ffffff;
  padding: 30px 20px 20px 20px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}
.standard-grid .item-wrap .text-wrap strong {
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
}
.standard-grid .item-wrap .text-wrap .icon {
  font-size: 20px;
  position: relative;
  padding-right: 5px;
  top: 1px;
}
.standard-grid .item-wrap .box-header .title {
  background: #0065b8;
  color: #ffffff;
  padding: 10px 20px;
  width: 100%;
  position: absolute;
  top: 0px;
  z-index: 3;
}
.standard-grid .category {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #151515;
  border-radius: 4px;
  padding: 3px 5px;
  margin-right: 5px;
  background: #c7c7c7;
  text-transform: capitalize;
}

.ezsearch-result {
  margin-bottom: 10px;
}
.ezsearch-result img {
  width: 100%;
}

.col-md-2, .col-md-3, .col-md-4, .col-md-8, .col-md-9 {
  width: 100%;
  float: left;
  padding: 10px;
}
.col-md-2:first-of-type, .col-md-3:first-of-type, .col-md-4:first-of-type, .col-md-8:first-of-type, .col-md-9:first-of-type {
  padding-left: 0px;
}

.col-md-2 {
  width: 100%;
  float: left;
}
@media screen and (min-width: 768px) {
  .col-md-2 {
    width: 50%;
  }
}

.col-md-3 {
  width: 100%;
  float: left;
}
@media screen and (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-4 {
    width: 33.33333%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-8 {
    width: 66.666666%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-9 {
    width: 75%;
  }
}

h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
}
@media screen and (min-width: 760px) {
  h1 {
    font-size: 45px;
    line-height: 45px;
  }
}

h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 21px;
  line-height: 21px;
  font-weight: 600;
}
@media screen and (min-width: 760px) {
  h2 {
    font-size: 32px;
    line-height: 32px;
  }
}

h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 19px;
  line-height: 19px;
  font-weight: 600;
}
h4.module-title {
  margin-bottom: 20px;
  color: #58738a;
}

@font-face {
  font-family: 'expedia';
  src: url("/fonts/expedia.eot?ulbl79");
  src: url("/fonts/expedia.eot?ulbl79#iefix") format("embedded-opentype"), url("/fonts/expedia.ttf?ulbl79") format("truetype"), url("/fonts/expedia.woff?ulbl79") format("woff"), url("/fonts/expedia.svg?ulbl79#expedia") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'expedia' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-wedding-cake:before {
  content: "\e900";
}

.icon-photo-camera:before {
  content: "\e901";
}

.icon-cocktails:before {
  content: "\e902";
}

.icon-elephant:before {
  content: "\e903";
}

.icon-street-light:before {
  content: "\e904";
}

.icon-art:before {
  content: "\e955";
}

.icon-postcard:before {
  content: "\e953";
}

.icon-briefcase:before {
  content: "\e954";
}

.icon-clapper-board:before {
  content: "\e952";
}

.icon-south-america:before {
  content: "\e94f";
}

.icon-decouvertes:before {
  content: "\e94e";
}

.icon-wine:before {
  content: "\e94d";
}

.icon-festivals:before {
  content: "\e90c";
}

.icon-globe:before {
  content: "\e927";
}

.icon-local_active:before {
  content: "\e937";
}

.icon-local_inactive:before {
  content: "\e95d";
}

.icon-plane_active:before {
  content: "\e95e";
}

.icon-plane_inactive:before {
  content: "\e95f";
}

.icon-newyear:before {
  content: "\e95c";
}

.icon-christmasNY:before {
  content: "\e94b";
}

.icon-cloclem:before {
  content: "\e94c";
}

.icon-football:before {
  content: "\e95b";
}

.icon-world:before {
  content: "\e948";
}

.icon-france:before {
  content: "\e949";
}

.icon-netherlands:before {
  content: "\e94a";
}

.icon-agenda:before {
  content: "\e905";
}

.icon-architecturecopy4:before {
  content: "\e906";
}

.icon-aurelia:before {
  content: "\e907";
}

.icon-autumn:before {
  content: "\e908";
}

.icon-barcelonain48hours:before {
  content: "\e909";
}

.icon-barcelonainbrief:before {
  content: "\e90a";
}

.icon-barcelonavuepar:before {
  content: "\e90b";
}

.icon-beach2:before {
  content: "\e90d";
}

.icon-bloggers_contributors:before {
  content: "\e90e";
}

.icon-Carnival:before {
  content: "\e90f";
}

.icon-children:before {
  content: "\e910";
}

.icon-contacts:before {
  content: "\e911";
}

.icon-coverportada:before {
  content: "\e912";
}

.icon-culturetradition:before {
  content: "\e913";
}

.icon-enamoureux:before {
  content: "\e914";
}

.icon-EscapadesenFrance:before {
  content: "\e915";
}

.icon-EscapadesenFrance-1:before {
  content: "\e916";
}

.icon-events:before {
  content: "\e917";
}

.icon-ExtremeSports:before {
  content: "\e918";
}

.icon-familysports:before {
  content: "\e919";
}

.icon-family2:before {
  content: "\e91a";
}

.icon-food:before {
  content: "\e91b";
}

.icon-Forma1:before {
  content: "\e91c";
}

.icon-gallery:before {
  content: "\e91d";
}

.icon-gastronomie:before {
  content: "\e91e";
}

.icon-gay:before {
  content: "\e91f";
}

.icon-Getaways:before {
  content: "\e920";
}

.icon-halloween:before {
  content: "\e921";
}

.icon-History2:before {
  content: "\e922";
}

.icon-history2:before {
  content: "\e923";
}

.icon-howtogetthere:before {
  content: "\e924";
}

.icon-immanquables:before {
  content: "\e925";
}

.icon-infopractical:before {
  content: "\e926";
}

.icon-instagram2:before {
  content: "\e928";
}

.icon-intro:before {
  content: "\e929";
}

.icon-magic:before {
  content: "\e92a";
}

.icon-material:before {
  content: "\e92b";
}

.icon-Music:before {
  content: "\e92c";
}

.icon-music-1:before {
  content: "\e92d";
}

.icon-nature:before {
  content: "\e92e";
}

.icon-Neighborhood:before {
  content: "\e92f";
}

.icon-nightlife:before {
  content: "\e930";
}

.icon-nosideesvoyage:before {
  content: "\e931";
}

.icon-ontheroadcopy:before {
  content: "\e932";
}

.icon-ontheroad:before {
  content: "\e933";
}

.icon-otheractivities:before {
  content: "\e934";
}

.icon-Party:before {
  content: "\e935";
}

.icon-pass:before {
  content: "\e936";
}

.icon-petitbudget:before {
  content: "\e938";
}

.icon-Rugby:before {
  content: "\e939";
}

.icon-Seasons:before {
  content: "\e93a";
}

.icon-shopping:before {
  content: "\e93b";
}

.icon-skipromenade:before {
  content: "\e93c";
}

.icon-ski2:before {
  content: "\e93d";
}

.icon-sparelax:before {
  content: "\e93e";
}

.icon-sportsetnature:before {
  content: "\e93f";
}

.icon-sportsetnature-1:before {
  content: "\e940";
}

.icon-Spring:before {
  content: "\e941";
}

.icon-spring-1:before {
  content: "\e942";
}

.icon-summer:before {
  content: "\e943";
}

.icon-surlaroute:before {
  content: "\e944";
}

.icon-surlestracesde:before {
  content: "\e945";
}

.icon-Sustainable_green:before {
  content: "\e946";
}

.icon-underground:before {
  content: "\e947";
}

.icon-videos:before {
  content: "\e950";
}

.icon-weather:before {
  content: "\e951";
}

.icon-Wedding:before {
  content: "\e956";
}

.icon-winter:before {
  content: "\e957";
}

.icon-beach:before {
  content: "\e61c";
}

.icon-building:before {
  content: "\e61d";
}

.icon-tower:before {
  content: "\e61e";
}

.icon-education:before {
  content: "\e61f";
}

.icon-seasons:before {
  content: "\e620";
}

.icon-top5:before {
  content: "\e621";
}

.icon-payment:before {
  content: "\e612";
}

.icon-bicycle:before {
  content: "\e613";
}

.icon-family:before {
  content: "\e614";
}

.icon-tram:before {
  content: "\e615";
}

.icon-quotes:before {
  content: "\e616";
}

.icon-passport:before {
  content: "\e617";
}

.icon-ski:before {
  content: "\e618";
}

.icon-history:before {
  content: "\e619";
}

.icon-book:before {
  content: "\e61a";
}

.icon-walk:before {
  content: "\e61b";
}

.icon-bag:before {
  content: "\e958";
}

.icon-bus:before {
  content: "\e959";
}

.icon-calendar:before {
  content: "\e60b";
}

.icon-location-pin:before {
  content: "\e60c";
}

.icon-suitcase:before {
  content: "\e600";
}

.icon-instagram:before {
  content: "\e611";
}

.icon-pinterest:before {
  content: "\e624";
}

.icon-tumblr:before {
  content: "\e625";
}

.icon-vimeo:before {
  content: "\e626";
}

.icon-film:before {
  content: "\e60d";
}

.icon-music:before {
  content: "\e60e";
}

.icon-ribbon:before {
  content: "\e60f";
}

.icon-office:before {
  content: "\e601";
}

.icon-eat:before {
  content: "\e610";
}

.icon-airplane:before {
  content: "\e602";
}

.icon-earth:before {
  content: "\e603";
}

.icon-star-empty:before {
  content: "\e608";
}

.icon-star-half:before {
  content: "\e609";
}

.icon-star-full:before {
  content: "\e60a";
}

.icon-share:before {
  content: "\e607";
}

.icon-google-plus:before {
  content: "\e604";
}

.icon-facebook:before {
  content: "\e605";
}

.icon-twitter:before {
  content: "\e606";
}

.icon-youtube:before {
  content: "\e622";
}

.icon-youtube3:before {
  content: "\e623";
}

.icon-search:before {
  content: "\f002";
}

.icon-heart:before {
  content: "\f004";
}

.icon-flag:before {
  content: "\f024";
}

.icon-comments:before {
  content: "\f086";
}

.icon-paperclip:before {
  content: "\f0c6";
}

.icon-angle-double-left:before {
  content: "\f100";
}

.icon-angle-double-right:before {
  content: "\f101";
}

.icon-angle-double-up:before {
  content: "\f102";
}

.icon-angle-double-down:before {
  content: "\f103";
}

.icon-angle-left:before {
  content: "\f104";
}

.icon-angle-right:before {
  content: "\f105";
}

.icon-angle-up:before {
  content: "\f106";
}

.icon-angle-down:before {
  content: "\f107";
}

.icon-ticket:before {
  content: "\f145";
}

.icon-automobile:before {
  content: "\f1b9";
}

.icon-cab:before {
  content: "\f1ba";
}

.icon-mars-double:before {
  content: "\f227";
}

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*padding:0;*/
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* 
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-nav .owl-prev {
  position: absolute;
  top: -10px;
  left: 0;
}
.owl-nav .owl-prev span {
  left: 15px;
  top: 5px;
}

.owl-nav .owl-next {
  position: absolute;
  top: -10px;
  right: 0;
}
.owl-nav .owl-next span {
  left: 18px;
  margin-top: 5px;
}

@media screen and (min-width: 480px) {
  .owl-nav .owl-prev {
    position: absolute;
    top: -10px;
    left: 0;
  }
  .owl-nav .owl-prev span {
    left: 14px;
    margin-top: 5px;
  }

  .owl-nav .owl-next {
    position: absolute;
    top: -10px;
    right: 0;
  }
  .owl-nav .owl-next span {
    left: 18px;
    margin-top: 5px;
  }
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #ffffff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #7d898f;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  -webkit-transition: background 200ms ease, opacity 200ms ease;
  -o-transition: background 200ms ease, opacity 200ms ease;
  transition: background 200ms ease, opacity 200ms ease;
}
.owl-theme .owl-nav [class*='owl-'] span {
  font-size: 30px;
  position: relative;
  top: 2px;
}

.owl-theme .owl-nav [class*='owl-']:not(.disabled):hover {
  background: #00569d;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  height: 45px;
  padding-top: 8px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #aacde1;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  -webkit-transition: opacity 200ms ease, background 200ms ease;
  -o-transition: opacity 200ms ease, background 200ms ease;
  transition: opacity 200ms ease, background 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .desktop .owl-theme .owl-dots .owl-dot:hover span {
  background: #00355f;
}

.carousel-module .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex.ie-class {
    display: block;
  }
}
.flex.center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: inherit;
  -webkit-justify-content: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
}

.main-header {
  background: #00355f;
  position: relative;
  width: 100%;
  font-family: "Source Sans Pro", sans-serif;
  color: #ffffff;
}
@media screen and (max-width: 759px) {
  .main-header {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.main-header .biggerNavContainer {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.main-header .navContainer {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 759px) {
  .main-header .navContainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
.main-header .anchorContainer {
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 759px) {
  .main-header .top-nav {
    width: 100%;
  }
}
.main-header .top-nav .group {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 759px) {
  .main-header .top-nav li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header .top-nav li a {
  font-size: 16px;
  line-height: 16px;
  padding: 15px;
  -webkit-transition: color .2s ease, background .2s ease;
  -o-transition: color .2s ease, background .2s ease;
  transition: color .2s ease, background .2s ease;
  text-decoration: none;
  height: 100%;
  width: 100%;
}
.main-header .top-nav li.home-link {
  border-right: 1px solid #004985;
}
@media screen and (max-width: 759px) {
  .main-header .top-nav li.home-link {
    width: 100%;
    border-bottom: 1px solid transparent;
  }
  .show-main-nav .main-header .top-nav li.home-link {
    border-bottom: 1px solid #004985;
  }
}
.main-header .top-nav li.home-link .icon {
  position: relative;
  padding-right: 8px;
  top: 1px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
  margin-left: 20px;
}
.main-header .top-nav li.home-link a {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  width: 100%;
  padding-left: 10px;
}
.desktop .main-header .top-nav li.home-link:hover a {
  background: #002847;
}
.desktop .main-header .top-nav li.home-link:hover a .icon {
  color: #ffcb00;
}
.main-header .top-nav li.menu-link {
  border-bottom: 1px solid transparent;
  width: 30%;
}
@media screen and (min-width: 760px) {
  .main-header .top-nav li.menu-link {
    display: none;
  }
}
@media screen and (max-width: 759px) {
  .show-main-nav .main-header .top-nav li.menu-link {
    border-bottom: 1px solid #004985;
  }
  .show-main-nav .main-header .top-nav li.menu-link a {
    background: #002847;
    text-decoration: none;
    width: 100%;
  }
}
.main-header .default-image {
  background-image: url("/img/germany/eventhub/static/img/fallback.jpg");
}
.main-header .searchContainer {
  display: none;
}
@media screen and (min-width: 768px) {
  .main-header .searchContainer {
    float: right;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .main-header .searchContainer {
    display: block;
  }
}
.main-header .main-search {
        /*display:none;

        @media screen and (min-width: $tablet) {
            float: right;
            margin-top: 5px;
            margin-left: 10px;
            margin-right: 25px;
        }

         @media screen and (min-width: $desktop) {
             display:block;
         }*/
}
.main-header .main-search .form.search-form {
    /*float:right;
padding:5px 0px 5px 5px;*/
}
.main-header .main-search .form.search-form .field-wrap .input-group input {
  padding: 10px 10px 10px 32px;
}
.main-header .main-search .form.search-form .btn.btn-primary {
  background: #2cacf9;
  border-color: #0795eb;
  color: #ffffff;
  padding: 6px 10px 6px 10px;
  width: auto;
  height: auto;
  float: none;
  margin-left: 5px;
}
.main-header .main-search .form.search-form .btn.btn-primary:hover {
  background: #5ec0fa;
}
.main-header .main-search .form.search-form .btn.btn-primary span {
  display: inline;
}
.main-header .main-search .form.search-form .btn.btn-primary span.icon {
  top: 2px;
  position: relative;
  padding-left: 5px;
}
.main-header .main-search .form.search-form .field-wrap .input-icon {
  top: 11px;
}
.main-header .main-search .form .input-group {
  display: inline-block;
}
.main-header .main-search .form .input-group input {
  display: inline-block;
}
.main-header .main-nav {
  width: 100%;
  height: 100%;
}
.main-header .main-nav .group {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
}
@media screen and (max-width: 759px) {
  .main-header .main-nav .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 759px) {
  .main-header .main-nav {
    z-index: 1;
    width: 100%;
    display: none;
    background: #002847;
    border-bottom: 1px solid #004985;
    position: relative;
  }
  .show-main-nav .main-header .main-nav {
    display: block;
  }
}
.main-header .main-nav li {
  display: block;
  text-align: center;
}
@media screen and (min-width: 760px) {
  .main-header .main-nav li {
    text-align: left;
    border-right: 1px solid #004985;
  }
}
.main-header .main-nav li a {
  font-size: 14px;
  line-height: 14px;
  padding: 17px 8px 13px 8px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
  text-decoration: none;
  height: 100%;
  width: 100%;
}
.main-header .main-nav li a .count {
  display: inline-block;
  border-radius: 4px;
  background: #0065b8;
  padding: 2px 3px 3px 3px;
  text-align: center;
  margin-left: 5px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}
.main-header .main-nav li a .count.featured-page {
  background: #ffcb00;
  color: #151515;
}
.desktop .main-header .main-nav li:hover a {
  background: #004379;
}
.desktop .main-header .main-nav li:hover a .count {
  background: #0081eb;
}
.main-header a {
  color: #ffffff;
  display: inline-block;
}
@media screen and (max-width: 759px) {
  .main-header a {
    display: block;
  }
}

.ui-icon {
  display: none !important;
}

.tooltip-arrow {
  display: none !important;
  position: absolute !important;
  width: 1.05882353em !important;
  height: 1.05882353em !important;
  background: #fff !important;
  border: 3px solid #00355f !important;
  -ms-transform: rotate(45deg) !important;
  -webkit-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
  top: -10px !important;
  left: 20px !important;
}

.tooltip-arrow-bt {
  /*display: none;*/
  position: absolute;
  width: 1.05882353em;
  height: 1.05882353em;
  background: #fff;
  border: 3px solid #00355f;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  /*top: 170px;*/
  left: 20px;
}

.tooltip-arrow {
  border-right: 0 solid transparent !important;
  border-bottom: 0 solid transparent !important;
}

.tooltip-arrow-bt {
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
}

.ui-autocomplete {
  margin: 0 !important;
  padding: 0.92307692em 0 0 !important;
  list-style-type: none !important;
  border: 3px solid #00355f !important;
  -webkit-box-shadow: 0 0.52941em 1.58824em rgba(0, 0, 0, 0.12) !important;
          box-shadow: 0 0.52941em 1.58824em rgba(0, 0, 0, 0.12) !important;
  border-radius: 0.23529412em !important;
  padding: 1.05882353em !important;
  background: #fff !important;
  padding: 0.82352941em 0 !important;
  margin-top: 5px !important;
  z-index: 11111 !important;
}
.ui-autocomplete .tooltip-arrow, .ui-autocomplete .tooltip-arrow-border {
  display: block !important;
}
.ui-autocomplete .tooltip-arrow {
  display: none !important;
  position: absolute !important;
  width: 1.05882353em !important;
  height: 1.05882353em !important;
  background: #fff !important;
  border: 3px solid #00355f !important;
  -webkit-transform: rotate(45deg) !important;
      -ms-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
  top: -10px !important;
  left: 20px !important;
  border-right: 0 solid transparent !important;
  border-bottom: 0 solid transparent !important;
}
.ui-autocomplete .tooltip-arrow-bt {
  /*display: none;*/
  position: absolute;
  width: 1.05882353em;
  height: 1.05882353em;
  background: #fff;
  border: 3px solid #00355f;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  /*top: 170px;*/
  left: 20px;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
}
.ui-autocomplete .ui-menu-item, .ui-autocomplete .ui-autocomplete .ui-menu-item:hover {
  padding: 0.46153846em 1.38461538em !important;
  color: #0065b8 !important;
  text-decoration: none !important;
  font-size: 0.88em !important;
  font-family: "Helvetica Neue",Arial,"Lucida Grande",sans-serif !important;
}
.ui-autocomplete .ui-menu-item .icon {
  padding-right: 0.76923077em;
  font-size: 0.88em;
}
.ui-autocomplete .ui-state-focus {
  border: none !important;
  background: none;
  font-weight: normal !important;
  background: #d1eaff !important;
  margin: 0 !important;
}

#ui-datepicker-div {
  border: 3px solid #00355f;
  background-color: #fff;
  padding: 0;
  font-family: "Helvetica Neue",Arial,"Lucida Grande",sans-serif;
  font-size: 13px;
}
#ui-datepicker-div .tooltip-arrow {
  display: block !important;
}
#ui-datepicker-div .tooltip-arrow-border {
  display: block !important;
}

#ui-datepicker-div .ui-datepicker-next, #ui-datepicker-div .ui-datepicker-prev {
  border: none;
  color: #0065b8;
  position: absolute;
  font-size: 2.1176470588235294em;
  top: -5px;
  text-decoration: none;
  cursor: pointer;
}

#ui-datepicker-div .ui-datepicker-prev span {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

#ui-datepicker-div .ui-datepicker-next:hover, #ui-datepicker-div .ui-datepicker-prev:hover {
  background: none;
}

#ui-datepicker-div .ui-datepicker-next:hover {
  right: 2px;
}

#ui-datepicker-div .ui-datepicker-prev {
  left: 5px;
}

#ui-datepicker-div .ui-datepicker-next {
  right: -14px;
}

#ui-datepicker-div .ui-datepicker-next:hover {
  right: -14px;
}

#ui-datepicker-div .ui-datepicker-next:after {
  content: "\f105";
}

#ui-datepicker-div .ui-datepicker-prev:after {
  content: "\f105";
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

#ui-datepicker-div .ui-datepicker-next:after, #ui-datepicker-div .ui-datepicker-next::before, #ui-datepicker-div .ui-datepicker-prev:after, #ui-datepicker-div .ui-datepicker-prev::before {
  display: inline-block;
  position: relative;
  font-family: 'expedia';
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  speak: none;
}

#ui-datepicker-div .ui-widget-header {
  border: none;
  background: none;
  background-image: none;
  margin-top: 10px;
}

.ui-widget-content {
  background: none;
}

#ui-datepicker-div .ui-datepicker-title {
  color: #00355f;
}

#ui-datepicker-div .ui-datepicker-calendar th {
  color: #999;
  font-weight: bold;
}

#ui-datepicker-div .ui-state-default, #ui-datepicker-div .ui-widget-content .ui-state-default, #ui-datepicker-div .ui-widget-header .ui-state-default {
  border: none;
  background: none;
  color: #0065b8;
  font-weight: normal !important;
  text-align: center;
  font-size: 14px;
}

#ui-datepicker-div .ui-state-default:hover {
  background: #0087f5;
  color: #fff;
  text-decoration: none;
}

#ui-datepicker-div td.ui-datepicker-unselectable .ui-state-default, #ui-datepicker-div td.ui-datepicker-unselectable .ui-state-default:hover {
  background: #fff;
  color: #CACACA;
  cursor: default;
}

.parthotel {
  clear: both;
  float: left;
}

.childages {
  float: left;
  clear: both;
  width: 100%;
}

.childages fieldset {
  float: left;
  margin-right: 10px;
}

#back-to-top {
  height: 31px;
  width: 35px;
  right: 1%;
  position: fixed;
  border-radius: 5px;
  z-index: 99;
  cursor: pointer;
  text-align: center;
}
#back-to-top.black {
  background-color: #021d37;
}
#back-to-top.black span {
  color: #ffffff;
}
#back-to-top.white {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
#back-to-top.white span {
  color: #0065b8;
}
#back-to-top span {
  background: none;
  font-size: 14px;
  font-family: verdana;
  vertical-align: middle;
  line-height: 34px;
}

.alertContainer {
  position: absolute;
  z-index: 99;
  top: -60px;
  display: none;
  white-space: nowrap;
}

.alert-error {
  border-color: #b80000;
  background: #f7b3b3;
}

.alert {
  position: relative;
  margin-bottom: .70588235em;
  border-radius: 2px;
  padding: 10px;
}

.alert:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 15px 11px 0;
  border-color: #f7b3b3 transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -8px;
  left: 92%;
}

.alert-title {
  color: #b80000;
  text-decoration: underline;
  font-size: .88235294em;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  padding-bottom: 0px;
}

.form.search-form .field-wrap .input-group.error span {
  color: #3d3100;
}
.form.search-form .field-wrap .input-group.error input {
  background: #f7b3b3;
  border: 1px solid #a63838;
}
.form.search-form .field-wrap .input-group.error input::-webkit-input-placeholder {
  color: #3d3100;
}
.form.search-form .field-wrap .input-group.error input:-moz-placeholder {
  /* Firefox 18- */
  color: #3d3100;
}
.form.search-form .field-wrap .input-group.error input::-moz-placeholder {
  /* Firefox 19+ */
  color: #3d3100;
}
.form.search-form .field-wrap .input-group.error input:-ms-input-placeholder {
  color: #3d3100;
}

* {
  margin: 0;
  padding: 0;
}

textarea, input[type=text], input[type=submit], input[type=password], input[type=email], input[type=tel], input[type=url], input[type=datetime], input[type=date], input[type=search] {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  color: #212121;
}

img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
}

footer img {
  max-height: none !important;
  max-width: none !important;
  height: auto !important;
  width: auto !important;
}

.page_top .gradient, .box .gradient {
  position: absolute;
  top: 0;
  left: 0;
}

/*Opera fix*/
body:before {
  content: "";
  height: 100%;
  float: left;
  width: 0;
  margin-top: -32767px;
}

/*HEADER*/
.top {
  height: 100px;
  overflow: hidden;
  padding: 0 40px;
  display: none;
}
.top a {
  text-decoration: none;
  color: #0063ba;
}

nav li {
  float: left;
  margin-right: 20px;
  list-style: none;
  font-size: 1em;
}
nav li:last-child {
  margin-right: 0px;
}
nav li.home-link {
  margin-right: 0px;
}

.right-navigation {
  float: right;
  text-align: right;
}

.top-links {
  margin: 20px 0 7px;
}
.top-links a {
  margin-right: 20px;
  padding-right: 12px;
  font-size: 0.8em;
}
.top-links a:last-child {
  margin-right: 0px;
}
.top-links a:after {
  content: '';
  background: url(/Css/germany/eventhub/static/img/icons.png);
  background: url(/Css/germany/eventhub/static/img/icons.svg);
  width: 10px;
  height: 6px;
  background-position: -286px -13px;
  position: absolute;
  margin: 9px 0 0 2px;
}

.cookies:before, .logo:after, .icon, .entdecken a:after, .logo.active:after {
  content: '';
  width: 10px;
  height: 6px;
  background-position: -286px -13px;
  position: absolute;
  margin: 9px 0 0 2px;
}

.cookies {
  font-size: 0.9em;
  padding-left: 18px;
}
.cookies:before {
  width: 13px;
  height: 13px;
  background-position: -299px -9px;
  position: absolute;
  margin: 5px 0 0 -18px;
}

.global-header {
  width: 100%;
  height: 80px;
  border-top: 7px solid #ffcc00;
  -webkit-box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid #e4e4e4;
}

.header-content {
  position: absolute;
  width: 100%;
  height: 80px;
  background: #fff;
}

.logo-left {
  height: 80px;
  cursor: pointer;
  line-height: 80px;
  padding: 0 22px 0 40px;
  float: left;
}
.logo-left img {
  border: 0;
  margin: 15px 0 0 0;
  display: block;
  padding-right: 20px;
}

.logo:after {
  width: 13px;
  height: 8px;
  background-position: 0px -11px;
  margin: -20px 0 0 160px;
}
.logo.active:after {
  width: 13px;
  height: 8px;
  background-position: -376px -10px;
  margin: -20px 0 0 160px;
}

.search {
  float: right;
  height: 50px;
  padding-left: 15px;
  line-height: 50px;
  border-left: 1px solid #e4e4e4;
  margin: 15px 0;
  position: relative;
}

.icon {
  position: relative;
  float: left;
  margin: 0;
  background-position: 0px 0px;
  width: 10px;
  height: 10px;
}

.icon-search {
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: -15px -5px;
  margin: 15px 0 0 18px;
}

.search input {
  width: 300px;
  height: 44px;
  outline: none !important;
  font-family: 'Source Sans Pro';
  line-height: 44px;
  /*padding:0 15px 0 50px;*/
  padding: 0 15px 0 15px;
  border: 0;
  color: #999;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1em;
  border-radius: 5px;
}
.search input::-webkit-input-placeholder, .search input::-moz-placeholder, .search input:-ms-input-placeholder, .search input:-moz-placeholder {
  font-family: 'Source Sans Pro';
  color: #999;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1em;
}

input:focus::-webkit-input-placeholder, input:focus:-moz-placeholder, input:focus::-moz-placeholder, input:focus:-ms-input-placeholder {
  color: transparent;
}

.entdecken {
  display: none;
  float: right;
  padding: 0 40px;
  height: 54px;
  margin: 13px 0;
  border-left: 1px solid #e4e4e4;
  line-height: 54px;
}
.entdecken a {
  text-decoration: none;
  color: #999;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1em;
  padding-right: 34px;
}
.entdecken .active {
  color: #00355f;
}
.entdecken a:after {
  width: 21px;
  height: 15px;
  background-position: -70px -7px;
  margin: 20px 0 0 13px;
}
.entdecken .active:after {
  background-position: -413px -90px;
}

.entdecken_menu {
  position: absolute;
  right: 0;
  z-index: 99;
  width: 200px;
  background: #00355f;
  display: none;
}
.entdecken_menu li {
  list-style: none;
  border-bottom: 1px solid #58738a;
  padding: 0 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.entdecken_menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  padding: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.entdecken_menu li:hover {
  background: #ffcc00;
}
.entdecken_menu li:hover a {
  color: black;
  font-weight: 600;
}
.entdecken_menu li:last-child {
  border-bottom: 0;
}

.breadcrumbs {
  float: left;
  line-height: 80px;
  margin-left: 20px;
  overflow: hidden;
}
.breadcrumbs a {
  text-decoration: none;
  color: #212121;
  vertical-align: top;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 2;
  cursor: pointer;
}
.breadcrumbs a:hover {
  color: #ffcc00;
}
.breadcrumbs a:last-child {
  color: #ffcc00;
  cursor: default;
}
.breadcrumbs > a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 20px;
  border-color: transparent transparent transparent #ebebeb;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #ebebeb;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  display: inline-block;
  position: relative;
  float: right;
  margin: 0 0 0 1px;
  z-index: 0;
}
.breadcrumbs > a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 20px;
  border-color: transparent transparent transparent #ffffff;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #ebebeb;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  display: inline-block;
  position: relative;
  left: -1px;
  float: right;
  margin: 0 0 0 -20px;
  z-index: 1;
}

.country_data .search, .data_detail2 .search, .page_menu .search {
  border-left: 0;
  right: 0;
  display: none;
}

.country_data .search input, .data_detail2 .search input, .page_menu .search input {
  width: 270px;
}

.data_detail2 {
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: none;
}
.data_detail2 .search {
  display: block;
}

.mobile_icon {
  width: 20px;
  position: absolute;
  right: 25px;
  top: 40px;
  z-index: 999;
  cursor: pointer;
}

.mob_stripe {
  height: 3px;
  width: 100%;
  background: #0065b8;
  margin-bottom: 3px;
}

.left-navigation {
  max-width: 100%;
  padding: 0;
  border-bottom: 4px solid #f8c533;
  display: none;
}
.left-navigation a {
  border-top: 1px solid #c7c7c7;
  max-width: 100%;
  padding: 10px 20px;
  width: 100%;
  display: block;
  color: #0065b8;
  text-decoration: none;
}
.left-navigation a:hover {
  background-color: #d1eaff;
}

/*HOME*/
.page_top {
  height: 340px;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  position: relative;
  background-position: center center;
  float: left;
}
@media screen and (min-width: 768px) {
  .page_top {
    height: 450px;
  }
}

#surfen {
  height: 450px;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  position: relative;
  background-position: center center;
  height: 398px;
  max-width: 1707px;
  background: url("../img/surfen.jpg") no-repeat;
  margin: 0 auto;
}

.search_destination {
  width: 382px;
  margin: 0 auto;
  padding-top: 257px;
}

#destination_search, .destination_search {
  width: 327px;
  height: 38px;
  background: #fff;
  border: 3px solid #ffcc00;
  moz-border-radius: 23px;
  border-radius: 23px;
  outline: none !important;
  font-family: 'Source Sans Pro';
  line-height: 32px;
  padding-left: 55px;
  color: #999;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1em;
  margin: 0 auto;
  display: block;
}

.search_destination .icon-search {
  margin: 12px 0 0 18px;
}

.gradient {
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.home-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 25px 0 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-content {
    padding: 130px 0 0 0;
  }
}
.home-content h1.headline {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.47;
  padding-bottom: 37px;
}
@media screen and (min-width: 768px) {
  .home-content h1.headline {
    line-height: 56px;
    font-size: 2.9em;
    font-weight: 400;
    padding-bottom: 30px;
  }
}

.h1-budget-override {
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 40px;
  text-transform: none;
  text-align: left;
  padding-bottom: 0;
}

h1 {
  color: #fff;
  font-size: 2.9em;
  text-align: center;
  line-height: 56px;
  font-weight: 400;
  padding-bottom: 30px;
}
h1.h1-override {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  line-height: 32px;
  font-size: 1.9em;
  font-weight: 700;
  color: #00355f;
  text-transform: none;
}
h1.h1-override.h1-search-override {
  margin-bottom: 0px;
}

.suche {
  display: block;
  width: 290px;
  height: 37px;
  background: #ffd200 !important;
  color: #00355f !important;
  line-height: 37px !important;
  text-align: center;
  text-decoration: none;
  font-weight: 600 !important;
  margin: 0 auto;
  border-radius: 18px;
  -webkit-transition: all 0.4s ease-in-out !important;
  -o-transition: all 0.4s ease-in-out !important;
  transition: all 0.4s ease-in-out !important;
}
.suche:hover {
  background-color: #00355f !important;
  color: #fff !important;
}

.active_com {
  background-color: #00355f !important;
  color: #fff !important;
}

.button_search_destination {
  display: none !important;
}

.home-content .destination_search {
  display: none;
}

.country_description .mehr_country {
  text-transform: uppercase;
  color: #ffcc00;
  float: right;
  margin-top: 15px;
  font-size: 1.1em;
}
.country_description .mehr_country:hover {
  color: #212121;
}

.main_all_content, .all_content {
  width: 100%;
  float: left;
}

.all_content.homePage {
  background: #F3F3F3;
  margin-bottom: 60px;
}

.mehr {
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  width: 180px;
}

.suche.mehr {
  display: block;
}

.mehr_zeigen {
  display: none;
}

.home-content .icon-search {
  display: none;
  margin: 12px 0 0 18px;
}

.home_search {
  width: 390px;
  height: 38px;
  margin: 0 auto;
}

.navi_search_text {
  line-height: 44px;
  color: #999;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1em;
  position: absolute;
  margin: -47px 0 0 55px;
}

/*ABOUT*/
#DetailsForReport .picture {
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}
#DetailsForReport .text {
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 35px;
}

h3, .near_main h1 {
  font-size: 1.4em;
  color: #00355f;
  font-weight: bold;
  text-align: center;
  line-height: 0.9em;
  padding: 70px 0 45px;
  font-weight: 700;
}

#DetailsForReport h3 {
  padding: 35px 0 35px 0;
}

h3 span.pre, .near_main h1 span.type {
  font-size: 0.8em;
  font-style: italic;
  color: #969696;
  font-weight: 400;
}

.about p {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 0.9em;
  color: #343434;
  line-height: 26px;
}

.suche.more {
  width: 235px;
  margin-bottom: 45px;
}

#DetailsForReport .text p + h3 {
  padding-top: 0 !important;
}

/*POPULAR*/
.popular {
  background: #f3f3f3;
  width: 100%;
  float: left;
  padding-bottom: 90px;
}
.popular.pad-removal {
  padding-bottom: 0px;
}
.popular .swiper-slide {
  padding-bottom: 70px;
  width: 100%;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.swiper-wrapper .swiper-slide {
  width: 100%;
}

.destin {
  background: #f3f3f3;
  overflow: hidden;
  padding-bottom: 60px;
}

.popular-nav {
  margin: 0 auto;
  padding-top: 40px;
  overflow: hidden;
}

.left-right {
  overflow: hidden;
}

.detail .left-right {
  text-align: center;
}

h2 {
  font-size: 1.9em;
  font-weight: 700;
  text-align: center;
  color: #00355f;
  margin-bottom: 20px;
  line-height: 1.1;
}

.icon-arrow-left {
  position: relative;
  float: left;
  width: 37px;
  height: 11px;
  background-position: -92px -8px;
  margin: 55px 40px 0 0;
}

.icon-arrow-right {
  position: relative;
  float: left;
  width: 37px;
  height: 11px;
  background-position: -92px -8px;
  margin: 55px 40px 0 0;
  float: right;
  background-position: -134px -8px;
  margin: -62px 0 0 40px;
}
.icon-arrow-right:before {
  content: none !important;
}

.slider {
  margin-top: -86px;
  float: left;
  margin-left: 50%;
}
.slider.swiper-pagination-clickable .swiper-pagination-bullet {
  margin-right: 10px;
}
.slider .swiper-pagination-bullet-active {
  background: #212121 !important;
}

.icon-slider-active {
  position: relative;
  float: left;
  width: 8px;
  height: 8px;
  background-position: -174px -11px;
}

.icon-slider-noactive {
  position: relative;
  float: left;
  width: 8px;
  height: 8px;
  background-position: -174px -11px;
  float: right;
  background-position: -185px -11px;
  margin: 0 0 0 0;
}

.slider_country_all .slider {
  margin-left: 46%;
}

/*TILES*/
.tiles {
  padding-bottom: 70px;
}

.tiles-wrapper {
  border: 0px solid #dcdcdc;
  max-width: 1260px;
  margin: 0 auto;
  border-radius: 5px;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  width: 100%;
}

/*.container, .container2, .container3, #container4, #container5, #container6, .container7, #container8 {
    position: relative;
    width:100%;
    max-width: 1260px;
    margin: 0 auto;
    float:left; 
}*/
.container2 .box-container {
  margin: 0px;
  padding: 0px;
}
@media screen and (min-width: 676px) {
  .container2 .box-container {
    padding: 5px;
  }
}

.box-container {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
}
.box-container.mobile-fix {
  margin-bottom: 10px;
}
@media screen and (min-width: 676px) {
  .box-container.mobile-fix {
    margin-bottom: 0px;
  }
}
.box-container.size66 {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 676px) {
  .box-container.size66 {
    width: 300px;
  }
}
@media screen and (min-width: 910px) {
  .box-container.size66 {
    width: 530px;
    height: 530px;
  }
}
.box-container.size43 {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 676px) {
  .box-container.size43 {
    width: 300px;
  }
}
@media screen and (min-width: 910px) {
  .box-container.size43 {
    width: 290px;
    height: 260px;
  }
  .box-container.size43:nth-child(9n+1), .box-container.size43:nth-child(9n+2), .box-container.size43:nth-child(9n), .box-container.size43:nth-child(9n+3), .box-container.size43:nth-child(9n+7), .box-container.size43:nth-child(9n+5), .box-container.size43:nth-child(9n+6) {
    width: 350px;
  }
}
@media screen and (min-width: 1275px) {
  .box-container.size43 {
    width: 350px;
    height: 260px;
  }
}
.box-container.advertising {
  width: 100%;
  height: 300px;
  padding-bottom: 10px;
  margin-top: -10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 676px) {
  .box-container.advertising {
    width: 300px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 910px) {
  .box-container.advertising {
    width: 290px;
    height: 260px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1275px) {
  .box-container.advertising {
    width: 350px;
    height: 260px;
    margin-top: 0px;
    margin-bottom: -5px;
  }
}
.box-container.advertising > a {
  background: #ffd200;
}
.box-container.size46 {
  width: 350px;
  height: 530px;
  float: right;
}
.box-container.size44 {
  width: 100%;
  height: 305px;
}
@media screen and (min-width: 676px) {
  .box-container.size44 {
    width: 50%;
  }
}
@media screen and (min-width: 927px) {
  .box-container.size44 {
    width: 33%;
  }
}
@media screen and (min-width: 1200px) {
  .box-container.size44 {
    width: 25%;
  }
}
.box-container.size63 {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 676px) {
  .box-container.size63 {
    width: 300px;
  }
}
@media screen and (min-width: 910px) {
  .box-container.size63 {
    width: 530px;
    height: 260px;
  }
}
.box-container.size63 img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 676px) {
  .box-container.size63 img {
    height: 300px;
  }
}
@media screen and (min-width: 911px) {
  .box-container.size63 img {
    height: 260px;
  }
}

.box {
  color: #212121;
  text-decoration: none;
  font-size: 0.9em;
  border-radius: 5px;
  position: relative;
  display: block;
  background-color: #ffd200;
  position: relative;
  float: left;
  height: 100%;
  width: 100%;
  margin: 0px;
}
.box img {
  border-radius: 6px;
  height: 100%;
  width: 100%;
}

.container7 .box-container.size43 {
  height: 300px;
  width: 100%;
}
@media screen and (min-width: 616px) {
  .container7 .box-container.size43 {
    width: 300px;
    height: 290px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: left;
  }
}

.custom-container .box-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
}
@media screen and (min-width: 676px) {
  .custom-container .box-container {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin-bottom: 0px;
  }
}
.custom-container .box-container.advertising {
  margin-bottom: 10px;
}
@media screen and (min-width: 676px) {
  .custom-container .box-container.advertising {
    margin-bottom: 0px;
  }
}

.custom-container .box-container a:hover > .yellow-field > span {
  color: #ffd200;
}
.custom-container .box-container.advertising > a:hover {
  background: #00355f;
}
.custom-container .box-container.advertising > a:hover .fluege_suchen > .jetzt_suchen > p {
  color: #ffd200;
}
.custom-container .box-container.advertising > a:hover .fluege_suchen > .fluege_link > .title {
  color: #ffd200;
}

/*.box:nth-child(1) {background:url(../img/london.jpg); }
.box:nth-child(2) {background:url(../img/monokle.jpg);}
.box:nth-child(3) {background:url(../img/greece.jpg); background-position: 100% 0}
.box:nth-child(4) {background:url(../img/thailand.jpg);}
.box:nth-child(5) {background:url(../img/barn.jpg); background-position: 50% 0}
.box:nth-child(6) {background:url(../img/blog.jpg);}
.box:nth-child(7) {background:url(../img/berlin.jpg); background-position: 0 70%}*/
#container5, #container6 {
  margin-top: 9px;
}

.tiles .gradient, #city_parts .gradient, .favorite_city .gradient, #city_parts2 .gradient, #best_near .gradient {
  background: -webkit-linear-gradient(transparent 10%, rgba(0, 0, 0, 0.7) 90%);
  background: -o-linear-gradient(to top, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(0, 0, 0, 0.6)), color-stop(25%, transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.tiles .gradient:before, #city_parts .gradient:before, .favorite_city .gradient:before, #city_parts2 .gradient:before, #best_near .gradient:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 53, 95, 0) 0%, rgba(0, 53, 95, 0.8) 75%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 53, 95, 0)), color-stop(75%, rgba(0, 53, 95, 0.8)));
  background: -o-linear-gradient(top, rgba(0, 53, 95, 0) 0%, rgba(0, 53, 95, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(0, 53, 95, 0) 0%, rgba(0, 53, 95, 0.8) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.grid-hover {
  height: 100%;
  border-radius: 5px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.description {
  background: #fff;
  width: 60%;
  height: 100%;
  float: left;
}

.yellow-field {
  background: rgba(255, 210, 0, 0.8);
  width: 40%;
  height: 100%;
  float: left;
  border-radius: 0px 5px 5px 0px;
}

.place {
  position: absolute;
  bottom: 0;
  margin: 0 0 20px 20px;
  color: #fff;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  width: 95%;
}

.description p {
  margin: 20px 10px 0 20px;
}

.place .name {
  font-size: 1.2em;
  font-weight: 400;
  width: 55%;
  margin: 0;
}
.place .country {
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.SectionReportsForContinent .place, .SectionReportsForCountry .place, .SectionReportsForDestination .place, .SectionReportsForReport .place {
  height: 88%;
}

.SectionReportsForContinent .place .preview, .SectionReportsForCountry .place .preview, .SectionReportsForDestination .place .preview, .SectionReportsForReport .place .preview {
  margin: 0;
  position: absolute;
  top: 0;
  max-width: 74%;
  font-style: normal;
  display: none;
}

.SectionReportsForContinent .place .name, .SectionReportsForCountry .place .name, .SectionReportsForDestination .place .name, .SectionReportsForReport .place .name {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 74%;
}

.SectionReportsForContinent .box:hover .place .preview, .SectionReportsForCountry .box:hover .place .preview, .SectionReportsForDestination .box:hover .place .preview, .SectionReportsForReport .box:hover .place .preview {
  display: block;
}

.SectionReportsForContinent .gradient, .SectionReportsForCountry .gradient, .SectionReportsForDestination .gradient, .SectionReportsForReport .gradient {
  background: -webkit-linear-gradient(transparent 10%, rgba(0, 0, 0, 0.7) 90%);
  background: -o-linear-gradient(to top, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(0, 0, 0, 0.6)), color-stop(25%, transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 10%, transparent 25%);
  border-radius: 5px;
}

.SectionReportsForContinent .grid-hover, .SectionReportsForCountry .grid-hover, .SectionReportsForDestination .grid-hover, .SectionReportsForReport .grid-hover {
  border-radius: 5px;
}

.SectionReportsForContinent .description, .SectionReportsForCountry .description, .SectionReportsForDestination .description, .SectionReportsForReport .description {
  width: 80%;
}

.SectionReportsForContinent .yellow-field, .SectionReportsForCountry .yellow-field, .SectionReportsForDestination .yellow-field, .SectionReportsForReport .yellow-field {
  width: 20%;
}

.category {
  position: absolute;
  padding: 10px;
  background: #fff;
  top: 0;
  right: 0;
  border-radius: 0px 5px 0 5px;
}

#PageBoxesPoi .icon-intro {
  left: 84.5%;
}

.icon-intro {
  position: absolute;
  top: 47%;
  left: 77.5%;
  font-size: 30px;
}

#PageBoxesLaunchpage .icon-Getaways, #PageBoxesLaunchpage .icon-ski {
  font-size: 18px;
  margin: 0;
}
#PageBoxesLaunchpage .tab .icon-earth {
  width: inherit;
  margin: 0;
  font-size: 18px;
}

.icon-Getaways {
  margin-right: 20px;
  margin-top: 5px;
  font-size: 23px;
}

.icon-city {
  width: 14px;
  height: 24px;
  background-position: -196px -3px;
}

.icon-place {
  width: 14px;
  height: 22px;
  background-position: -213px -3px;
}

.icon-world {
  width: 20px;
  height: 20px;
  background-position: -229px -4px;
}

.icon-blog {
  width: 17px;
  height: 22px;
  background-position: -252px -5px;
}

.icon-hotel {
  width: 17px;
  height: 22px;
  background-position: -151px -41px;
}

.icon-eye {
  width: 44px;
  height: 26px;
  background-position: -314px -1px;
  position: relative;
  top: 50%;
  margin: -13px auto 0;
  float: none;
  display: block;
}

#PageBoxesLaunchpage .icon-earth, #PageBoxesLaunchpage .icon-office {
  width: 14px;
  height: 22px;
  font-size: 23px;
  margin-right: 5px;
}
#PageBoxesLaunchpage .icon-airplane {
  width: 14px;
  height: 22px;
  font-size: 19px;
  margin-right: 5px;
}

.icon-eat, .icon-bag, .icon-sportsetnature-1, .icon-History2, .icon-Party, .icon-sparelax, .icon-christmasNY, .icon-bloggers_contributors, .icon-location-pin, .icon-ski {
  width: 14px;
  height: 22px;
  font-size: 23px;
  margin-right: 5px;
}

.icon-gay {
  width: 14px;
  height: 22px;
  font-size: 20px;
  margin-right: 13px;
}

.box:hover .grid-hover, .favorite_city.restaurants .box:hover .grid-hover, .wrapper_city .popular:first-child .box:hover .grid-hover, .restaurant.wrapper_country .popular .box:hover .grid-hover, .detail_all .popular .box:hover .grid-hover, .wrapper_country .container2 .box:hover .grid-hover {
  opacity: 1;
  display: block;
}

.box:hover .place, .favorite_city.restaurants .box:hover .place, .wrapper_city .popular:first-child .box:hover .place, .restaurant.wrapper_country .popular .box:hover .place, .detail_all .popular .box:hover .place, .wrapper_country .container2 .box:hover .place {
  color: #000;
}

.popular .container3 .box:hover .grid-hover, .favorite_city .box:hover .grid-hover, .kontinent .destin .box:hover .grid-hover, .all_content.restaurant .container3 .box:hover .grid-hover {
  opacity: 0;
}

.popular .container3 .box:hover .place, .favorite_city .box:hover .place, .kontinent .destin .box:hover .place, .all_content.restaurant .container3 .box:hover .place {
  color: #fff;
}

.popular .container3 .box {
  -webkit-transition: background-size 0.3s linear, background-color 0.2s linear, 0.3s -webkit-filter linear !important;
  transition: background-size 0.3s linear, background-color 0.2s linear, 0.3s -webkit-filter linear !important;
  -o-transition: background-size 0.3s linear, 0.3s filter linear, background-color 0.2s linear !important;
  transition: background-size 0.3s linear, 0.3s filter linear, background-color 0.2s linear !important;
  transition: background-size 0.3s linear, 0.3s filter linear, background-color 0.2s linear, 0.3s -webkit-filter linear !important;
  -webkit-transition: background-size 0.3s linear, 0.3s -webkit-filter linear, background-color 0.3s linear !important;
  -moz-transition: background-size 0.3s linear, 0.3s -moz-filter linear, 0.3s filter linear, background-color 0.2s linear !important;
  -o-transition: background-size 0.3s linear, 0.3s -o-filter linear, background-color 0.2s linear !important;
  -ms-transition: background-size 0.3s linear, 0.3s -ms-filter linear,background-color 0.2s linear;
  background-size: auto 100% !important;
  background-repeat: no-repeat;
  background-color: #ffcc00;
}
.popular .container3 .box:hover .gradient:before {
  opacity: 0.8;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*COUNTRY*/
#PageBoxesCountry .SectionDestinationsForCountry, #PageBoxesCountry .SectionPoisForCountry, #PageBoxesCountry .SectionReportsForCountry {
  display: none;
}

.city_parts {
  max-width: 1275px;
  margin: 40px auto 0;
}

.favorite_city.swiper-slide {
  padding-bottom: 70px;
}

.pages_top {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (max-width: 1350px) {
  .pages_top {
    max-height: 400px;
  }
}
@media (max-width: 1260px) {
  .pages_top {
    max-height: 450px;
  }
}
@media (max-width: 1050px) {
  .pages_top {
    max-height: 500px;
  }
}
@media (max-width: 910px) {
  .pages_top {
    max-height: none;
  }
}
.pages_top h1 {
  font-size: 36px;
  line-height: 1em;
  font-weight: 700;
  color: #00355f;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 0;
}

.pages_photo {
  width: 50%;
  height: 340px;
  background-size: cover !important;
  float: left;
  background-position: center center !important;
}

.country_description, .pages_description {
  padding: 46px 0 0;
  float: right;
  max-width: 43%;
  margin-right: 2%;
  width: 100%;
}

.country_description p, .pages_description p {
  color: #333333;
  font-size: 21px;
  line-height: 32px;
  margin-top: 33px;
  font-weight: 300;
}

.country_description a, .pages_description a {
  text-decoration: none;
  color: #333333;
  font-weight: 400;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.country_description a:hover, .pages_description a:hover {
  color: #ffcc00;
}

.country_data, .page_menu, .data_detail, .data_detail2 {
  clear: both;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  height: 80px;
  background: #fff;
}

.data_cont {
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
}

.country_data .data, .page_menu .data {
  float: left;
  width: 24.5%;
  height: 80px;
  border-right: 1px solid #f3f3f3;
  text-align: center;
}

.country_data .data:last-child, .page_menu .data:last-child {
  border-right: 0;
}

.country_data .data p, .page_menu .data p {
  font-size: 30px;
  line-height: 26px;
  font-weight: 300;
  color: #212121;
  text-transform: uppercase;
}

.country_data .data .data_name, .page_menu .data .data_name {
  font-size: 14px;
  line-height: 14px;
  color: #ffcc00;
  padding: 20px 0 5px 0;
  font-weight: 400;
}

.wrapper_country {
  background: #f3f3f3;
  overflow: hidden;
  padding: 10px 0 50px 0;
}

.additional {
  background: #fff;
  float: right;
}

.info, .karte, .filter, .themes, .hotels, .close_info {
  height: 35px;
  min-width: 80px;
  border-left: 1px solid #f3f3f3;
  text-align: center;
  color: #999999;
  font-size: 14px;
  padding: 35px 15px 10px 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  float: left;
}

.filter {
  border-right: 1px solid #f3f3f3;
}

.hotels, .close_info {
  border-bottom: 0;
  border-left: 0;
}

.themes, .hotels {
  display: none;
}

.info:hover, .karte:hover, .filter:hover, .themes:hover, .hotels:hover, .level2 .active, .additional .active, .info.active {
  background: #ffcc00;
  color: #fff;
}

.show {
  display: block !important;
}

.wrapper_country .city_parts {
  margin-top: 140px;
}
.wrapper_country #city_parts {
  padding-bottom: 70px;
}

.popular .container3 .box.advertising, .popular .container2 .box.advertising {
  background: #ffcc00;
  -webkit-transition: all 0.2s ease-in-out !important;
  -o-transition: all 0.2s ease-in-out !important;
  transition: all 0.2s ease-in-out !important;
}

/*TILES-2*/
.container2 .box {
  background-size: cover;
  background-position: center center;
}

/*.container2 .box:nth-child(1) {background:url(../img/berlin2.jpg); background-position: 96% 0}
.container2 .box:nth-child(2) {background:url(../img/oberholz.jpg); background-position: 42% 0}
.container2 .box:nth-child(3) {background:url(../img/kdw.jpg); background-position: 100% 0}
.container2 .box:nth-child(4) {background:url(../img/gallery.jpg);background-position: 0 68%;}
.container2 .box:nth-child(5) {background:url(../img/treptower.jpg); background-position: 75% 0}
.container2 .box:nth-child(6) {background:url(../img/berghain.jpg);background-position: 83% 0}
.container2 .box:nth-child(7) {background:url(../img/kantine.jpg); background-position: -41px 66%;}
.container2 .box:nth-child(8) {background:url(../img/hours25.jpg); background-position: 0 80%;}*/
.open_city {
  position: absolute;
  border-radius: 5px;
  background: #ffcc00;
  width: 225px;
  height: 225px;
  margin: 10px 0 0 10px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.open_city p {
  text-transform: uppercase;
  font-weight: 600;
  color: #212121;
  font-size: 24px;
  line-height: 26px;
}
.open_city p span {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}

.city_open {
  margin-top: 75px;
}

.open_city .bot {
  margin-top: 50px;
  padding-top: 10px;
  text-transform: uppercase;
  color: #212121;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.open_city:hover {
  background: #00355f;
}
.open_city:hover .bot, .open_city:hover p {
  color: #fff;
}
.open_city:hover .temp_flug, .open_city:hover .temperature, .open_city:hover .bot {
  border-color: rgba(255, 255, 255, 0.1);
}

.wrapper_country .popular-nav {
  max-width: 610px;
}

/*TILES-3*/
.container3 .box, #PageBoxesContinent .container3 .box {
  background-size: cover;
  background-position: center center;
}

/*.container3 .box:nth-child(1) {background:url(../img/hamburg.jpg); background-position: 53% 0}
.container3 .box:nth-child(2) {background:url(../img/dortmund.jpg); background-position: 83% 0}
.container3 .box:nth-child(3) {background:url(../img/duesseldorf.jpg); }
.container3 .box:nth-child(4) {background:url(../img/muenchen.jpg); background-position: -41px 66%;}
.container3 .box:nth-child(5) {background:url(../img/koeln.jpg);background-position: 75% 0 }
.container3 .box:nth-child(6),.wrapper_country.wrapper_city .container3 .box:nth-child(6) {background:url(../img/frankfurt.jpg); }
.container3 .box:nth-child(7) {background:url(../img/dresden.jpg);background-position: 25% 0 }
.container3 .box:nth-child(8) {background:url(../img/stuttgart.jpg); background-position: 48% -2px;}*/
/*OPEN INFO*/
.info_open {
  overflow: hidden;
  background: #fff;
  width: 100%;
  top: 509px;
  display: none;
  z-index: 9;
  border-top: 1px solid #f3f3f3;
}
.info_open.dest {
  top: 428px;
}

.info_aside {
  position: absolute;
  width: 90px;
  right: 0;
  display: none;
}
.info_aside .info {
  height: 80px;
  padding: 0;
}

.close_info {
  height: 80px;
  padding: 0;
}

.info_aside .info {
  background: #f3f3f3;
  padding-top: 30px;
  height: 50px;
}
.info_aside .info:hover {
  background: #f3f3f3;
  color: #999999;
}

.info_main {
  max-width: 1260px;
  margin: 0 auto;
}

.info_aside .info .icon_info {
  background-position: -180px -39px;
  margin: -20px 0 0 -8px;
}

.close_info {
  padding-top: 30px;
  height: 50px;
}

.info_text h2 {
  text-align: center;
  font-weight: 600;
  color: #212121;
  font-size: 2.2em;
  line-height: 1em;
  padding: 35px 0 40px;
}
.info_text h2 span.pre {
  font-weight: 400;
  color: #999999;
  font-size: 0.4em;
  font-style: italic;
  line-height: 0.6em;
}
.info_text h3 {
  text-transform: uppercase;
  font-weight: 300;
  color: #999999;
  font-size: 1.4em;
  padding: 0 0 35px 0;
  margin: 0;
  text-align: left;
}

.info_open p {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0 auto 35px;
}
.info_open .important {
  font-family: Times, serif;
  float: right;
  font-size: 1.5em;
  line-height: 34px;
  color: #333333;
  text-align: center;
  width: 372px;
  font-weight: bold;
  font-style: italic;
  padding: 25px 0 0 25px;
}

.photo_text {
  width: 314px;
  height: 250px;
  background: url(../img/germany_about.jpg) no-repeat;
  background-position: -36px 0;
  border-radius: 5px;
  margin: 0 35px 35px 0;
  float: left;
  display: none;
}

/*CITY*/
#PageBoxesDestination .SectionPoisForDestination, #PageBoxesDestination .SectionReportsForDestination, #PageBoxesDestination .SectionDestinationsForDestination {
  display: none;
}

.city_photo {
  background: url(../img/berlin2.jpg) no-repeat;
  background-position: 0 100%;
}

.yellow_title {
  position: absolute;
  background: #ffcc00;
  border-radius: 5px;
  color: #fff;
  font-size: 1em;
  text-align: center;
  width: 60px;
  height: 25px;
  line-height: 25px;
  margin: 20px 0 0 20px;
}

#container4 .open_city {
  width: 225px;
  height: 180px;
}
#container4 .open_city p {
  margin-top: 20px;
}

.temp_flug {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 22px;
  height: 40px;
}

.temperature, .flug_time {
  float: left;
  width: 49%;
}

.temperature {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.temp_flug p {
  font-size: 18px;
  line-height: 40px;
  margin: 0 !important;
}

.temperature span {
  display: inline-block;
  width: 28px;
  height: 29px;
  background-position: -59px -38px;
  margin: 5px 0 0 15px;
}

.flug_time span {
  display: inline-block;
  width: 28px;
  height: 29px;
  background-position: -59px -38px;
  margin: 5px 0 0 15px;
  background-position: -89px -38px;
}

#container4 .search_flug {
  width: 197px;
  height: 32px;
  outline: none !important;
  font-family: 'Source Sans Pro';
  line-height: 32px;
  padding-left: 20px;
  border: none;
  color: #ffcc00;
  font-size: 12px;
  background: #c6a521;
  border-radius: 20px;
  margin-top: 6px;
}
#container4 .search_flug::-webkit-input-placeholder, #container4 .search_flug::-moz-placeholder, #container4 .search_flug:-ms-input-placeholder, #container4 .search_flug:-moz-placeholder {
  font-family: 'Source Sans Pro';
  color: #ffcc00;
  font-size: 12px;
}

.icon-go {
  position: absolute;
  width: 26px;
  height: 26px;
  background-position: -123px -39px;
  margin: 9px 0 0 187px;
}

.fluege_suchen {
  width: 96%;
  height: 91.5%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 10px auto 0;
  border-radius: 5px;
  color: #00355f;
}

.container3 .box:nth-child(6) .fluege_suchen {
  width: 93%;
  height: 92.5%;
}

.fluege_suchen p {
  text-align: center;
}
.fluege_suchen .fluege_link {
  margin: 49px auto 0;
}

.container3 .box:nth-child(6) .fluege_link {
  margin: 64px auto 0;
}

.fluege_suchen .fluege_link p {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
}
.fluege_suchen .fluege_link .first_line {
  color: #fff !important;
  font-size: 12px;
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
}
.fluege_suchen .fluege_link span {
  color: #fff !important;
  font-size: 12px;
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.container3 .box:nth-child(6) .fluege_link:after {
  margin: 20px 0 0 41%;
}

.fluege_suchen .jetzt_suchen {
  font-size: 14px;
  font-weight: bold;
  max-width: 140px;
  margin: 25px auto 0;
  color: #00355f;
}
.fluege_suchen .jetzt_suchen:after {
  content: '';
  width: 6px;
  height: 7px;
  background: url(/Css/germany/eventhub/static/img/icons.png);
  background-position: -171px -49px;
  position: relative;
  float: right;
  margin: -12px 0 0 0;
}

.popular .container3 .box.advertising:hover, .popular .container2 .box.advertising:hover {
  background: #00355f !important;
  -webkit-filter: saturate(100%);
  -moz-filter: saturate(100%);
  -o-filter: saturate(100%);
  -ms-filter: saturate(100%);
  filter: saturate(100%);
}
.popular .container3 .box.advertising:hover .fluege_suchen .fluege_link p, .popular .container2 .box.advertising:hover .fluege_suchen .fluege_link p, .popular .container3 .box.advertising:hover .fluege_suchen .jetzt_suchen, .popular .container2 .box.advertising:hover .fluege_suchen .jetzt_suchen {
  color: #ffcc00;
}
.popular .container3 .box.advertising:hover .fluege_suchen .fluege_link:after, .popular .container2 .box.advertising:hover .fluege_suchen .fluege_link:after {
  background: #fff;
}
.popular .container3 .box.advertising:hover .fluege_suchen {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.popular .container2 .box-container.advertising:hover .fluege_suchen {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.popular .container2 .box-container.advertising:hover .fluege_suchen .jetzt_suchen:after {
  background-position: -330px -49px;
}
.popular .container3 .box.advertising:hover .fluege_suchen .jetzt_suchen:after {
  background-position: -330px -49px;
}

.blogger_photo {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../img/blogger.jpg);
  margin-bottom: 5px;
}

.menu_lev2 {
  position: relative;
  margin: 81px 0 0 82.3%;
  z-index: 9;
}

.level2 {
  position: static;
  background: #fff;
  width: 224px;
  z-index: 9;
  display: none;
}
.level2 li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.level2 li a {
  display: block;
  width: 100%;
  height: 54px;
  line-height: 54px;
  border-bottom: 1px solid #f3f3f3;
  text-decoration: none;
  color: #999999;
  font-size: 1em;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.level2 li a:after {
  content: '';
  display: block;
  position: relative;
  float: right;
  width: 8px;
  height: 4px;
  background: url(/Css/germany/eventhub/static/img/icons.png);
  background-position: -72px -153px;
  margin: 27px 25px 0 0;
}
.level2 li .backmenu:after {
  width: 0px;
  height: 0px;
}
.level2 li span {
  display: block;
  float: left;
  width: 26px;
  height: 26px;
  background-position: -268px -86px;
  margin: 15px 20px 0 20px;
}
.level2 li .activ {
  background: #ffd119;
  color: #fff;
}

.level3 li .activ, .level3 li a:hover {
  background: #ffd119;
  color: #fff;
}

.level3 li a:hover:after, .level3 li .activ:after {
  background-position: -169px -121px;
}

.level3 {
  background: #fff;
  border-left: 1px solid #f3f3f3;
  width: 100%;
  z-index: 99;
  display: none;
}

.level2 .level3 .categ_name {
  height: 54px;
  width: 90%;
  border-bottom: 1px solid #f3f3f3;
  background: #fafafa;
  line-height: 54px;
  padding-left: 20px;
  font-size: 1em;
  color: #212121;
}

.level3 li a {
  height: 46px;
  line-height: 46px;
  color: #999999;
  font-size: 0.9em;
  background: #f8f8f8;
}
.level3 li a:after {
  margin: 20px 25px 0 0;
  content: '';
  display: block;
  position: relative;
  float: right;
  width: 4px;
  height: 8px;
  background: url(/Css/germany/eventhub/static/img/icons.png);
  background-position: -163px -121px;
}
.level3 li span {
  width: 29px;
  height: 29px;
  background-position: -10px -64px;
  margin: 3px 20px 0 17px;
}

.level3 li span.icon_width, .level2 li span.icon_width {
  width: 65px;
  height: auto;
  background-position: 0;
  margin: 0;
  display: block;
  float: left;
}

/*.level2 li .activ .icon_restaurant,.level3 li a:hover .icon_restaurant {background-position: -45px -64px;} 
.level2 li .activ .icon_cafe, .level3 li a:hover .icon_cafe {background-position: -46px -121px;} 
.level2 li .activ .icon_kultur2, .level3 li a:hover .icon_kultur2 {background-position: -46px -171px;} 
.level2 li .activ .icon_kneipe, .level3 li a:hover .icon_kneipe {background-position: -45px -218px;}*/
.map.country {
  background-repeat: repeat;
  float: none;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: none;
}

.aside_all {
  width: 100%;
  background: #f3f3f3;
  float: left;
}

.map.country .map_buttons {
  top: 10px;
  bottom: none;
}

.slider_country_all {
  overflow: hidden;
}

.wrapper_country.wrapper_city .city_parts {
  margin-top: 40px;
}
.wrapper_country.wrapper_city .slider_country_all {
  margin-top: 90px;
}

/*TILES-4*/
/*#container4 .box:nth-child(1) {background:url(../img/berlin3.jpg); background-position: 63% 0}
#container4 .box:nth-child(2) {background:url(../img/berghain.jpg); background-position: 83% 0}
#container4 .box:nth-child(3) {background:url(../img/kantine.jpg);}
#container4 .box:nth-child(4) {background:url(../img/hours25.jpg);}
#container4 .box:nth-child(5) {background:url(../img/treptower2.jpg); background-position: 75% 0}
#container4 .box:nth-child(6) {background:url(../img/blog.jpg);}
#/container4 .box:nth-child(7) {background:#ffcc00;-webkit-transition: all 0.2s ease-in-out;-moz-transition: all 0.2s ease-in-out;-o-transition: all 0.2s ease-in-out;transition: all 0.2s ease-in-out;}*/
/*TILES-5*/
/*#container5 .box:nth-child(1) {background:url(../img/soho.jpg); background-position: 63% 0; float:left;}
#container5 .box:nth-child(2) {background:url(../img/alexanderplatz.jpg); background-position: 83% 0}
#container5 .box:nth-child(3) {background:url(../img/zoo.jpg); background-position:46% -14px; float:right;}
#container5 .box:nth-child(4) {background:url(../img/blog2.jpg);}*/
/*TILES-6*/
/*#container6 .box:nth-child(1) {background:url(../img/doom.jpg); background-position: 63% 0}
#container6 .box:nth-child(2) {background:url(../img/kdw.jpg); background-position: 83% 0}
#container6 .box:nth-child(3) {background:url(../img/circus_hotel.jpg);}
#container6 .box:nth-child(4) {background:url(../img/one80.jpg);}*/
/*TILES-7*/
/*.container7 .box.size43 {width: 300px; height: 260px;}
.container7 .box:nth-child(1) {background:url(../img/one80.jpg); background-position: 63% 0}
.container7 .box:nth-child(2) {background:url(../img/gallery.jpg); background-position: 83% 0}
.container7 .box:nth-child(3) {background:url(../img/kdw.jpg);}
.container7 .box:nth-child(4) {background:url(../img/blog.jpg);}
.container7 .box:nth-child(5) {background:url(../img/kantine.jpg);background-position: -41px 66%;}
.container7 .box:nth-child(6) {background:url(../img/michelberger.jpg);}*/
/*RESTAURANTS*/
.restaurant_photo {
  background: url(../img/restaurants.jpg) no-repeat;
  background-position: 0 0 !important;
}

.wrapper_country.restaurant .city_parts {
  margin-top: 0;
  padding-bottom: 70px;
}

.all_content .popular .container3 .box.restaurant {
  background: url(../img/restaurants.jpg);
}

/*KONTINENT*/
#PageBoxesContinent .SectionCountriesForContinent, #PageBoxesContinent .SectionPoisForContinent, #PageBoxesContinent .SectionReportsForContinent, #PageBoxesContinent .SectionPoisForContinent {
  display: none;
}

.kontinent_top .home-content {
  padding-top: 157px;
}

.kontinent .popular {
  padding-bottom: 90px !important;
}

/*REPORT*/
/*DETAIL*/
.wrapper-all {
  background: #f3f3f3;
  overflow: hidden;
}

.close_all, .close_gallery {
  background: #ffcc00;
  width: 33px;
  height: 33px;
  position: absolute;
  right: 0;
  webkit-border-radius: 0 0 0 3px;
  border-radius: 0 0 0 3px;
  z-index: 9;
}

.close_all span, .close_gallery span {
  display: block;
  width: 21px;
  height: 21px;
  background-position: -438px -46px;
  margin: 5px 0 0 6px;
}

.navigation_left, .navigation_right, .gall_next, .gall_prev {
  position: fixed;
  left: 0;
  top: 50%;
  margin-top: -78px;
  height: 156px;
  width: 50px;
  background: #e4e4e4;
  webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  z-index: 99;
}

.navigation_right, .gall_next {
  left: calc(100% - 50px);
  webkit-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

.navigation_left:hover, .navigation_right:hover, .gall_next:hover, .gall_prev:hover {
  background: #ffcc00;
}

.navigation_left span, .navigation_right span, .gall_next span, .gall_prev span {
  display: block;
  width: 25px;
  height: 41px;
  background-position: -154px -75px;
  margin: 57px 0 0 10px;
}

.navigation_right span, .gall_next span {
  background-position: -184px -75px;
  margin: 57px 0 0 14px;
}

section.detail {
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
}

.detail aside {
  width: 44px;
  float: left;
  background: #ffcc00;
  position: relative;
  z-index: 9;
  font-size: 0.8em;
  color: #fff;
  display: none;
}
.detail aside div {
  height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  font-weight: 600;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}
.detail aside div:hover {
  background: #fff;
  color: #ffcc00;
}

.wrapper_near {
  width: 100%;
  margin: 0 auto;
}

.detail aside .icon {
  display: block;
  width: 16px;
  height: 14px;
  background-position: -339px -48px;
  margin: 10px 10px 0 13px;
}
.detail aside .icon_facebook {
  background-position: -360px -45px;
  width: 8px;
  height: 15px;
  margin-left: 17px;
}
.detail aside .icon_tweeter {
  background-position: -373px -46px;
  width: 16px;
  height: 13px;
  margin-left: 14px;
}
.detail aside .icon_stars {
  background-position: -391px -42px;
  width: 18px;
  height: 18px;
  margin-left: 13px;
  margin-top: 6px;
}
.detail aside .icon_interesting_near {
  background-position: -413px -45px;
  width: 16px;
  height: 16px;
  margin-left: 14px;
  margin-top: 8px;
}
.detail aside .interesting_hover {
  position: relative;
  width: 185px;
  height: 30px;
  padding: 0px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 0;
  margin: -38px 0 0 56px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  color: #212121;
  text-align: center;
  line-height: 30px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.detail aside .interesting_hover:hover {
  color: #212121;
}
.detail aside .interesting_hover:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #FFFFFF;
  display: block;
  width: 0;
  z-index: 1;
  left: -6px;
  top: 10px;
}
.detail aside .comments:hover .icon_comment {
  background-position: -339px -69px;
}
.detail aside .facebook:hover .icon_facebook {
  background-position: -360px -66px;
}
.detail aside .tweeter:hover .icon_tweeter {
  background-position: -373px -67px;
}
.detail aside .stars:hover .icon_stars {
  background-position: -391px -63px;
}
.detail aside .interesting_near:hover .icon_interesting_near {
  background-position: -413px -66px;
}
.detail aside .interesting_near:hover ~ div {
  opacity: 1;
}

.near_header {
  overflow: hidden;
}

.near_photo, .map {
  float: left;
  width: 50%;
  height: 450px;
}

.near_photo {
  position: relative;
  background-size: cover !important;
  background-position: center center;
}

.near_header .near_photo, .near_header .map {
  float: left;
  width: 50%;
  height: 450px;
}

.show_gallery {
  width: 153px;
  height: 36px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 600;
  color: #999999;
  line-height: 36px;
}
.show_gallery span.icon {
  display: inline-block;
  width: 23px;
  height: 21px;
  background-position: -5px -82px;
  margin: 7px;
}

.map {
  position: relative;
}

.map_place {
  background: url(../img/place_cafe.png) no-repeat;
  position: relative;
  width: 64px;
  height: 82px;
  margin: 207px 0 0 239px;
}

.map_buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
}
.map_buttons div {
  background: #fff;
  border-radius: 5px;
  float: left;
}
.map_buttons .smaller, .map_buttons .bigger {
  cursor: pointer;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  margin-right: 2px;
  color: #ffcc00;
  font-size: 2.3em;
  font-weight: 300;
}
.map_buttons .smaller {
  line-height: 31px;
}

.near_search {
  line-height: 36px;
  overflow: hidden;
  width: 134px;
}
.near_search input {
  width: 90px;
  border: 0;
  outline: none;
  font-weight: 600;
}
.near_search .icon-search2 {
  width: 14px;
  height: 22px;
  background-position: -78px -81px;
  margin: 7px 8px 0 11px;
}
.near_search .icon-search2:before {
  content: none !important;
}

.near_top {
  overflow: hidden;
}

.near_title {
  display: inline-block;
  float: left;
  max-width: 72%;
}
.near_title h1 {
  margin-top: 0;
}
.near_title h2 {
  padding: 0 0 35px 0;
  text-align: left;
  font-weight: 700;
  color: #00355f;
  line-height: 1.2em;
  font-size: 1.4em;
}

.near_main {
  background: #fff;
  border-radius: 0 0 5px 0;
  padding: 60px;
  overflow: hidden;
}
.near_main h1 {
  padding: 0 0 35px 0;
  text-align: left;
}
.near_main h1 .title {
  display: inline-block;
  line-height: 1.2em;
}

.post_date {
  float: right;
  color: #999999;
  font-size: 0.9em;
  margin-top: 5px;
}

.near_text, .other_themes {
  float: left;
}

.near_text {
  border-right: 1px solid #e4e4e4;
}

.other_themes {
  width: 260px;
  padding-left: 60px;
}
.other_themes h5 {
  text-transform: uppercase;
  font-weight: 300;
  color: #999999;
  font-size: 1.4em;
  padding: 0 0 35px 0;
  margin: 0;
  text-align: left;
}

.near_text {
  width: calc(100% - 381px);
  padding-right: 60px;
  margin-bottom: 50px;
}

.icon-date {
  width: 16px;
  height: 16px;
  background-position: -96px -82px;
  margin: 0 5px 0 0;
}
.icon-date:before {
  content: none !important;
}

.near_about p {
  padding-bottom: 35px;
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.near_about:after {
  content: '';
  width: 135px;
  height: 1px;
  background: #e4e4e4;
  position: absolute;
  margin: 0 0 0 300px;
}
.near_about .text h2 {
  font-size: 1.4em;
  color: #00355f;
  text-align: center;
  line-height: .9em;
  padding: 70px 0 45px;
  font-weight: 700;
}

.address, .open_time {
  margin: 35px 0 10px 0;
  overflow: hidden;
}

.detail .left, .detail .right {
  float: left;
}
.detail .left p {
  width: 185px;
  padding-right: 40px;
  font-weight: 300;
  color: #999999 !important;
  font-size: 1.4em !important;
}
.detail .right {
  width: calc(100% - 225px);
}
.detail .address .icon-place2 {
  display: inline-block;
  width: 12px;
  height: 20px;
  background-position: -116px -80px;
  margin: 5px 13px 0 0;
}
.detail .address .icon-place2:before {
  content: none !important;
}
.detail .icon-phone1 {
  display: inline-block;
  width: 21px;
  height: 20px;
  background-position: -262px -151px;
  margin: 5px 9px 0 -6px;
}
.detail .open_time .icon-clock {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: -132px -80px;
  margin: 5px 13px 0 0;
}
.detail .open_time .icon-clock:before {
  content: none !important;
}
.detail .address p, .detail .contact p, .detail .open_time p {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.detail .address a {
  text-decoration: none;
  color: #00355f;
  font-weight: 600;
  padding-left: 20px;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.detail .address a:hover {
  color: #ffcc00;
}
.detail .address a:before {
  content: '';
  background: #00355f;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  margin: 11px 0 0 -13px;
}

.other_themes .kids {
  display: block;
  text-decoration: none;
  width: 268px;
  height: 172px;
  background: url(../img/kids_pic.jpg) no-repeat;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #fff;
}
.other_themes .tauchen {
  display: block;
  text-decoration: none;
  width: 268px;
  height: 172px;
  background: url(../img/kids_pic.jpg) no-repeat;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #fff;
  background: url(../img/tauchen_pic.jpg) no-repeat;
}
.other_themes .kids p, .other_themes .tauchen p {
  text-align: center;
  font-size: 1em;
  padding-top: 17px;
  letter-spacing: 1px;
  font-weight: 300;
  width: 135px;
  margin: 0 auto;
}
.other_themes .kids p:before, .other_themes .tauchen p:before, .other_themes .kids p:after, .other_themes .tauchen p:after {
  content: '';
  width: 30px;
  height: 1px;
  background: #fff;
  position: relative;
  float: left;
  margin-top: 10px;
}
.other_themes .kids p:after, .other_themes .tauchen p:after {
  float: right;
}

.icon_kids {
  display: block;
  background: url(../img/kids.png) no-repeat;
  width: 138px;
  height: 100px;
  margin: 10px auto 0;
}

.icon_tauchen {
  display: block;
  background: url(../img/kids.png) no-repeat;
  width: 138px;
  height: 100px;
  margin: 10px auto 0;
  background: url(../img/tauchen.png) no-repeat;
  width: 189px;
  height: 105px;
}

.detail .tiles-wrapper {
  border: 0;
}

.detail_all {
  width: 100%;
  overflow: hidden;
}

.hotels_finden {
  margin: 0 auto;
  width: 215px;
  padding: 0 25px;
  text-align: left;
}
.hotels_finden:last-child {
  margin: 30px auto 0;
}

.comments {
  overflow: hidden;
  clear: both;
}

.com, .submit_comment {
  margin: 0;
  width: 220px;
}

.com {
  width: 280px;
}

.comment_box {
  max-width: 1160px;
  margin: 0 auto 100px auto;
  background: #fff;
  padding: 50px;
}

.old_comments {
  margin: 30px 0 0 0;
}

.new_comments {
  padding: 30px 0;
}

.old_comments {
  padding: 0 0 30px 0;
}

.user-name {
  font-weight: 600;
  font-size: 1em;
  line-height: 2em;
}

.old_comments ul li {
  list-style: none;
  border-bottom: 1px solid #e4e4e4;
  list-style: outside none none;
  padding: 30px 150px;
  width: 50%;
  margin: 0 auto;
}
.old_comments .comment div {
  font-size: 16px;
}

.gray {
  color: #999;
  font-style: italic;
  line-height: 2em;
}

.old_comments h2 {
  padding: 0 0 10px 0;
}

.new_comments h3 {
  text-align: center;
  padding: 20px 0 50px 0;
}

.comments_form {
  overflow: hidden;
  width: 500px;
  margin: 0 auto;
}
.comments_form div {
  overflow: hidden;
  clear: both;
}
.comments_form div .floatl {
  float: left;
  width: 130px;
}
.comments_form div .floatr {
  float: right;
}
.comments_form input {
  width: 270px;
  height: 40px;
  resize: none;
  outline: none !important;
  border: 1px solid #e4e4e4;
  margin-bottom: 15px;
  font-size: 1em;
  padding: 0 15px;
}
.comments_form textarea {
  width: 270px;
  height: 40px;
  resize: none;
  outline: none !important;
  border: 1px solid #e4e4e4;
  margin-bottom: 15px;
  font-size: 1em;
  padding: 0 15px;
  height: 90px;
  resize: none;
  padding: 15px;
}
.comments_form .gray {
  font-style: none;
  line-height: 1em;
}

.submit_comment {
  float: right;
  margin: 20px 83px 0 0;
}

.detail .tiles {
  padding: 0;
}

.icon_hotel_buchen {
  background-position: -166px -143px;
  width: 22px;
  height: 22px;
  margin: 6px 10px 0 0;
}

.icon_fluege_suchen2 {
  background-position: -188px -142px;
  width: 25px;
  height: 24px;
  margin: 6px 10px 0 0;
}

.hotels_finden:hover .icon_hotel_buchen {
  background-position: -216px -143px;
}
.hotels_finden:hover .icon_fluege_suchen2 {
  background-position: -240px -143px;
}

/*DESTINATION_DETAIL*/
.destination_detail {
  margin-top: -340px !important;
  z-index: 9;
  display: none;
  width: 100%;
}
.destination_detail .swiper-slide .near_photo {
  background-size: cover !important;
}
.destination_detail .swiper-slide:nth-child(1) .near_photo {
  background: url(../img/berghain.jpg);
}
.destination_detail .swiper-slide:nth-child(2) .near_photo {
  background: url(../img/kantine.jpg);
}
.destination_detail .swiper-slide:nth-child(3) .near_photo {
  background: url(../img/near.jpg);
}
.destination_detail .swiper-slide:nth-child(4) .near_photo {
  background: url(../img/treptower2.jpg);
}
.destination_detail .swiper-slide:nth-child(5) .near_photo {
  background: url(../img/blog.jpg);
}

/*PIONEER*/
.pioneer_top {
  background: url(../img/pioneer.jpg);
  height: 335px;
  width: 100%;
  background-size: cover !important;
}

/*FOOTER*/
footer {
  float: left;
  width: 100%;
}
footer .left_float {
  width: 120px;
  background: #fff;
  height: 190px;
  float: left;
}

#footer-section {
  background: #e3e3e3;
  overflow: hidden;
}
#footer-section div:first-child {
  padding-bottom: 0 !important;
}
#footer-section .footer .footer-separator {
  display: none;
}
#footer-section #footer {
  max-width: 1260px !important;
  width: 100% !important;
  margin: 0px auto;
  padding: 10px 0px 20px 0px !important;
}
#footer-section .footer-links {
  width: 100% !important;
}
#footer-section .footer-rounded-box-tr-bot, #footer-section .footer-links-inner-background {
  background-color: transparent !important;
}
#footer-section p {
  height: 190px;
  line-height: 190px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

#FooterSocialMediaButtons {
  height: 48px;
  overflow: hidden;
  background-color: #ffffff;
}
#FooterSocialMediaButtons ul {
  width: 345px;
  margin: 0 auto;
  overflow: hidden;
}
#FooterSocialMediaButtons li {
  float: left;
  height: 50px;
  list-style: none;
  border-left: 1px solid #e3e3e3;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
#FooterSocialMediaButtons li:last-child {
  border-right: 1px solid #e3e3e3;
}
#FooterSocialMediaButtons li a {
  display: block;
  width: 48px;
  text-decoration: none;
}
#FooterSocialMediaButtons li a span {
  display: block;
  color: #D0D0D0;
  width: 11px;
  height: 16px;
  margin: 18px auto 0;
}
#FooterSocialMediaButtons span.social.tweeter {
  background-position: 0px 0;
  width: 11px;
  height: 16px;
  margin: 18px auto 0;
  background-position: -13px -1px;
  width: 13px;
  height: 12px;
  margin: 20px auto 0;
}
#FooterSocialMediaButtons span.social.googleplus {
  background-position: -29px -1px;
  width: 13px;
  height: 14px;
  margin: 20px auto 0;
}
#FooterSocialMediaButtons span.social.pinterest {
  background-position: -46px 0px;
  width: 11px;
  height: 14px;
  margin: 20px auto 0;
}
#FooterSocialMediaButtons span.social.mail {
  background-position: -62px -3px;
  width: 13px;
  height: 8px;
  margin: 24px auto 0;
}
#FooterSocialMediaButtons span.social.youtube {
  background-position: -76px -3px;
  width: 18px;
  height: 13px;
  margin: 22px auto 0;
}
#FooterSocialMediaButtons span.social.instagram {
  background-position: -94px -2px;
  width: 14px;
  height: 14px;
  margin: 22px auto 0;
}
#FooterSocialMediaButtons li:hover {
  background: #e3e3e3;
}

.up {
  text-decoration: none;
  position: absolute;
  right: 0;
  margin-top: -49px;
  width: 48px;
  height: 48px;
  border-left: 1px solid #e3e3e3;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.up:hover {
  background: #e3e3e3;
}

.icon-up {
  display: block;
  background-position: -271px -13px;
  width: 12px;
  height: 7px;
  margin: 23px 0 0 18px;
}
.icon-up:before {
  content: none !important;
}

/*Gallery-swiper*/
.overlay {
  position: absolute;
  z-index: 9;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: none;
}

.gal.swiper-container {
  width: 1450px;
  height: 800px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -400px 0 0 -725px;
  z-index: 999;
  display: none;
}

.gallery_header {
  position: absolute;
  height: 50px;
  z-index: 9999;
  background: #fff;
  color: #999999;
  width: 100%;
  display: none;
}

.pic_name {
  float: left;
  width: calc(100% - 314px);
  line-height: 50px;
  margin-left: 25px;
  text-transform: uppercase;
  color: #212121;
  font-size: 1.1em;
}
.pic_name span {
  text-transform: none;
  color: #999999;
  font-size: 0.8em;
  font-style: italic;
}

.number_photos {
  width: 135px;
  line-height: 50px;
  text-align: center;
}

.gall_next, .gall_prev {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: none;
}

.gall_next span, .gall_prev span {
  opacity: 0.6;
}

.gall_next:hover span, .gall_prev:hover span {
  opacity: 1;
}

.swiper-container .swiper-slide {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  width: 800px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.swiper-container .swiper-slide p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  margin-top: 555px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
}
.swiper-container .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
.swiper-container .swiper-slide .left_text {
  float: left;
  width: 50%;
}
.swiper-container .swiper-slide .right_text {
  float: right;
  width: 50%;
  text-align: right;
}

.swiper-slide-prev div, .swiper-slide-next div {
  width: 250px !important;
  height: 250px !important;
  position: absolute;
  right: 0;
  top: calc(50% - 125px);
  overflow: hidden;
}

.swiper-slide-prev img {
  min-width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.swiper-slide-next img {
  min-width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.swiper-slide-next div {
  right: auto;
  left: 0;
}

.swiper-slide.swiper-slide-prev, .swiper-slide.swiper-slide-next {
  background: none;
}

.swiper-container .swiper-slide.swiper-slide-active span.desc {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.9em;
  font-weight: 100;
  position: absolute;
  color: #fff;
  bottom: 50px;
  right: 0;
  display: none;
}

/*CONTINENT LIST*/
.continent_list {
  position: absolute;
  width: 200px;
  margin-top: -10px;
  margin-left: 56px;
  z-index: 9;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow-y: hidden;
  max-height: 0;
  background: transparent;
  -o-transition: max-height;
  transition: max-height;
  -o-transition-timing-function: ease-out;
     transition-timing-function: ease-out;
  -o-transition-duration: 250ms;
     transition-duration: 250ms;
  -o-transition-delay: 1s;
     transition-delay: 1s;
  -ms-transition: max-height;
  -ms-transition-timing-function: ease-out;
  -ms-transition-duration: 250ms;
  -ms-transition-delay: 1s;
  -moz-transition: max-height;
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
  -moz-transition-delay: 1s;
  -webkit-transition: max-height;
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -webkit-transition-delay: 1s;
}
.continent_list ul {
  margin: 10px;
}
.continent_list li {
  list-style: none;
  border-bottom: 1px solid #f3f3f3;
  background: #fff;
}
.continent_list li a {
  text-decoration: none;
  color: #212121 !important;
  display: block;
  padding: 15px 10px;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  line-height: 22px;
}
.continent_list li:last-child {
  border-bottom: 0;
}
.continent_list li a:hover {
  color: #ffcc00 !important;
  cursor: pointer;
}

.breadcrumbs a:nth-child(2):hover + .continent_list, .continent_list:hover {
  max-height: 565px;
  /* Fade in */
  -o-transition: max-height;
  transition: max-height;
  -o-transition-timing-function: ease-out;
     transition-timing-function: ease-out;
  -o-transition-duration: 250ms;
     transition-duration: 250ms;
  -ms-transition: max-height;
  -ms-transition-timing-function: ease-out;
  -ms-transition-duration: 250ms;
  -moz-transition: max-height;
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
  -webkit-transition: max-height;
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
}

/*LOADER*/
.loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #eaeaea;
  z-index: 10;
  top: 0px;
}

.loader {
  border-radius: 50%;
  position: fixed;
  position: device-fixed;
  *position: fixed;
  width: 10em;
  height: 10em;
  font-size: 11px;
  text-indent: -99999em;
  -webkit-box-shadow: inset 0 0 0 1em #ffcb00;
          box-shadow: inset 0 0 0 1em #ffcb00;
  top: 50%;
  left: 50%;
  margin: -5em 0 0 -5em;
  z-index: 10;
}
.loader:before, .loader:after {
  border-radius: 50%;
}
.loader:before, .loader:after {
  position: absolute;
  content: '';
  -webkit-transition: background 300ms;
  -o-transition: background 300ms;
  transition: background 300ms;
}
.loader:before {
  width: 5.2em;
  height: 10.2em;
  background: #eaeaea;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.2em 5.1em;
  -ms-transform-origin: 5.2em 5.1em;
  transform-origin: 5.2em 5.1em;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.loader:after {
  width: 5.2em;
  height: 10.2em;
  background: #eaeaea;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 5.1em;
  -webkit-transform-origin: 0px 5.1em;
  -ms-transform-origin: 0px 5.1em;
  transform-origin: 0px 5.1em;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}
.loader.fin:before, .loader.fin:after {
  background: none;
}

.fullscreen.loader-bg, .fullscreen.loader {
  display: none;
}

.boxed.loader-bg, .boxed.loader {
  position: absolute;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loadingFin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loadingFin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*RESPONSIVE*/
@media (max-width: 1450px) {
  .gal.swiper-container {
    width: 100%;
    height: 600px;
    margin: -300px auto 0;
    left: auto;
  }

  .swiper-slide.swiper-slide-active div {
    height: 600px;
    width: 100%;
  }
}
@media (max-width: 1350px) {
  .top {
    height: auto;
    padding: 0;
  }

  .contry_photo, .pages_photo {
    height: 440px;
  }
}
@media (max-width: 1275px) {
  .tiles-wrapper {
    max-width: 900px;
  }

  .container2 .box {
    clear: none;
  }
  .container2 .box:nth-child(4), .container2 .box:nth-child(5), .container2 .box:nth-child(6) {
    float: left;
    width: 290px;
  }

  .footer-list {
    margin-left: 13px !important;
  }

  .container7 .box.size43 {
    width: 290px;
    height: 290px;
  }
}
@media (max-width: 1260px) {
  .menu_lev2 {
    margin-left: 0 !important;
    right: 0;
    position: absolute;
  }

  .info_about {
    padding: 0 20px;
  }

  .near_about:after {
    display: none;
  }

  .contry_photo, .pages_photo {
    height: 500px;
  }
}
@media (max-width: 1050px) {
  nav li {
    float: none;
    line-height: 35px;
    margin-right: 0;
  }
  nav li:last-child {
    border-bottom: 0;
  }

  .data_cont .search {
    display: none !important;
  }

  .page_menu.surfen_page_menu .data_cont .search, .data_detail2 .data_cont .search {
    display: block !important;
  }

  .contry_photo, .pages_photo {
    height: 550px;
  }

  .swiper-container .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .swiper-container .swiper-slide img {
    height: 100% !important;
    width: auto;
  }
}
@media (max-width: 1030px) {
  .fluege_suchen {
    width: 95%;
    height: 93%;
  }
  .fluege_suchen .fluege_link:after {
    margin: 20px 0 0 44%;
  }

  #footer-copyright {
    padding: 20px 0 0 0 !important;
  }

  #footer-global-sites .footer-list a {
    margin-top: 7px !important;
  }

  #footer-corporate-links .footer-list {
    width: 95% !important;
  }

  .footer-list li {
    line-height: 20px !important;
  }

  .footer-awards-badges-de {
    width: 100% !important;
    height: auto !important;
  }
  .footer-awards-badges-de a {
    display: block !important;
  }

  #footer-awards-badges-tuv-text, #footer-awards-badges-tuv2-text, #footer-awards-badges-vir-text {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  #footer-awards-badges a img {
    padding: 0 !important;
    margin: 10px auto !important;
    display: block !important;
  }

  .old_comments ul li {
    width: 70%;
    padding: 30px 15%;
  }

  .nav-group.cf, .cols-row.emea-cookie-msg.cf, .site-header.site-header-secondary {
    display: none !important;
  }

  .top {
    display: block !important;
  }
  .top .right-navigation {
    display: none !important;
  }

  .site-header .cols-row {
    padding: 10px 24px 20px 24px !important;
  }
}
@media (max-width: 910px) {
  .tiles-wrapper {
    max-width: 620px;
  }

  .box, .popular .box.size63 {
    background-repeat: no-repeat;
    background-size: cover !important;
  }
  .box img, .popular .box.size63 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }

  .pages_photo {
    width: 100%;
    max-width: 100%;
    float: none;
    height: 350px;
  }

  .pages_description {
    width: 100%;
    max-width: 100%;
    float: none;
    height: 350px;
    height: auto;
  }

  .pages_description {
    width: 94%;
    max-width: 94%;
    float: none;
    margin: 0 3%;
  }
  .pages_description p {
    margin-bottom: 35px;
  }

  .near_main, .near_text, .other_themes {
    float: none;
    width: 100%;
  }

  .near_main {
    padding: 5%;
    width: 90%;
  }

  .other_themes {
    padding: 50px 0;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
  }

  .suche.hotels_finden {
    margin: 0;
  }
  .suche.hotels_finden:last-child {
    margin: 30px 0 0 0;
  }

  .comments {
    margin: 35px 0 15px 0;
  }

  .breadcrumbs a {
    display: none;
  }
  .breadcrumbs a:first-child {
    display: block;
  }

  .gal.swiper-container {
    width: 100%;
    height: 400px;
    margin: -200px auto 0;
  }

  .swiper-slide.swiper-slide-active div {
    height: 400px;
    width: 100%;
  }

  .swiper-container .swiper-slide img {
    height: 400px;
    width: auto;
  }
}
@media (max-width: 755px) {
  .data_detail2 .breadcrumbs {
    display: none;
  }

  .near_header .near_photo, .near_header .map {
    float: none;
    width: 100%;
    height: 350px;
  }
  .near_header .near_photo {
    margin-bottom: 30px;
  }
}
@media (max-width: 690px) {
  .page_menu.surfen_page_menu .breadcrumbs {
    display: block;
  }

  .gal.swiper-container {
    width: 100%;
    height: 300px;
    margin: -150px auto 0;
  }

  .swiper-slide.swiper-slide-active div {
    height: 300px;
    width: 100%;
  }

  .swiper-container .swiper-slide img {
    height: 300px;
    width: auto;
  }
}
@media (max-width: 675px) {
  .box, .popular .box.size63 {
    float: none !important;
  }
  .box img, .popular .box.size63 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }

  h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 625px) {
  .global-header {
    height: 145px;
  }

  .logo-left {
    float: none;
    border-bottom: 1px solid #e4e4e4;
    height: 65px;
  }

  .global-header .search {
    float: none;
    clear: both;
    border-left: 0;
    width: 300px;
    margin: 7px 0 0 0;
  }

  .header-content {
    height: auto;
  }

  .global-header .search input {
    width: 260px;
  }
}
@media (max-width: 570px) {
  .comments_form {
    width: 305px;
  }
  .comments_form div .floatl, .comments_form div .floatr {
    display: block;
    float: none;
  }
  .comments_form div .floatl {
    margin-bottom: 10px;
  }
}
@media (max-width: 520px) {
  .page_menu.surfen_page_menu .data_cont .search {
    display: none !important;
  }

  .detail .left {
    float: none;
    width: 100%;
  }
  .detail .right {
    float: none;
    width: 100%;
    margin-top: 20px;
  }

  .old_comments ul li {
    width: 100%;
    padding: 30px 0;
  }
}
@media (max-width: 470px) {
  .breadcrumbs {
    display: none;
  }
}
@media (max-width: 400px) {
  .home_search, .search_destination {
    width: 100%;
  }

  input.destination_search, input#destination_search {
    width: 80%;
  }

  .home-content .icon-search {
    margin: 12px 0 0 25px;
  }

  .swiper-container .swiper-slide p {
    display: none;
  }
}
/*******************************************************/
/*in ajax_box*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.ajax_box {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 1000;
  display: none;
  width: 100%;
  background: none;
}
.ajax_box .ajax_box_detail {
  border: 10px solid #ffffff;
  display: block;
  border-radius: 5px;
  display: block;
  max-width: 1260px;
  margin: 100px 40px;
  margin: 100px auto;
}
.ajax_box .navigation_left, .ajax_box .navigation_right, .ajax_box .close_all {
  display: block;
  cursor: pointer;
}
.ajax_box .navigation_right, .ajax_box .gall_next {
  right: 18px;
  left: auto;
}

.overlay_gallery {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1499;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.gal.swiper-container {
  z-index: 1500;
}

.close_all {
  position: fixed;
  top: 57px;
  left: auto;
  right: 50%;
  -webkit-transform: translate(670px, 0);
      -ms-transform: translate(670px, 0);
          transform: translate(670px, 0);
  z-index: 1250;
  display: block;
  background: none repeat scroll 0 0 #ffcc00;
  border-radius: 3px;
  height: 33px;
  width: 33px;
  cursor: pointer;
}

.close_gallery {
  position: fixed;
  top: 57px;
  left: auto;
  right: 50%;
  -webkit-transform: translate(670px, 0);
      -ms-transform: translate(670px, 0);
          transform: translate(670px, 0);
  z-index: 1250;
  display: block;
  background: none repeat scroll 0 0 #ffcc00;
  border-radius: 3px;
  height: 33px;
  width: 33px;
  cursor: pointer;
  z-index: 9999;
  right: 18px;
  top: 30px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.ajax_box .close_gallery {
  right: 36px;
}
.ajax_box header, .ajax_box footer, .ajax_box .data_detail, .ajax_box .data_detail2 {
  display: none !important;
}

/*not in ajax_box*/
.navigation_left, .navigation_right, .close_all, .close_gallery {
  display: none;
}

.navigation_left, .navigation_right, .gall_next, .gall_prev {
  background: none repeat scroll 0 0 #666666;
  cursor: pointer;
}

/*map*/
.map img {
  max-height: none;
  height: auto;
}
.map.country {
  position: relative;
  height: 0px;
  display: block;
  overflow: hidden;
}
.map.country .container {
  position: absolute;
  width: 100%;
  left: -10000px;
  height: 450px;
}
.map.country .container.active {
  left: 0px;
}
.map .infoBox img {
  width: 22px;
  height: 22px;
  z-index: 10;
  margin: 10px 10px 0 0;
}
.map .infoBox .map_ovl {
  -webkit-box-shadow: 0 0 8px #525252;
          box-shadow: 0 0 8px #525252;
  background: none repeat scroll 0 0 #f8f8f8;
  margin-left: -162px;
  position: relative;
  width: 325px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
}
.map .infoBox .map_ovl .inner {
  padding: 10px;
  margin-top: -1px;
}
.map .infoBox .map_ovl .inner h3, .map .infoBox .map_ovl .inner p {
  text-align: left;
  padding: 0px 7px 10px 7px;
  font-size: 14px;
  line-height: 20px;
}
.map .infoBox .map_ovl .inner h3 {
  color: #00355f;
  font-size: 16px;
  line-height: 20px;
  padding-right: 35px;
  padding-top: 3px;
}
.map .infoBox .btn {
  text-decoration: none;
  background: none repeat scroll 0 0 #ffcb00;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  height: 16px;
  line-height: 16px;
  overflow: hidden;
  padding: 5px 10px;
  position: relative;
  text-align: center;
  -webkit-transition: background 300ms ease 0s, color 300ms ease 0s;
  -o-transition: background 300ms ease 0s, color 300ms ease 0s;
  transition: background 300ms ease 0s, color 300ms ease 0s;
  vertical-align: middle;
}
.map .infoBox .btn:hover {
  background: none repeat scroll 0 0 #00355f;
  color: #ffffff;
}
.map .infoBox .arrow {
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 0px;
  margin-left: -14px;
  display: block;
  border-style: solid;
  border-width: 0 14px 14px 14px;
  border-color: transparent transparent #ffffff transparent;
}
.map .infoBox .map_ovl .arrow {
  border-color: transparent transparent #f8f8f8;
  margin-top: -7px;
  top: -7px;
}

.near_header .map .container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
  background-color: transparent !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.default-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.page_top.home-page.default-image img {
  position: absolute;
}

.icon-up:before, .icon-clock:before, .icon-search2:before, .icon-date:before, .icon-place2:before, .icon-phone1:before, .icon-go:before, .icon-arrow-left:before, .icon-arrow-right:before, .icon-slider-active:before, .icon-slider-noactive:before, .icon-city:before, .icon-place:before, .icon-world:before, .icon-blog :before, .icon-hotel :before, .icon-eye :before {
  content: none !important;
}

.main-header li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-header li:hover {
  background: #004379;
}
.main-header li:hover.home-link {
  background: #002847;
}
.main-header li:hover.home-link .icon {
  color: #ffcb00;
}
@media screen and (max-width: 768px) {
  .main-header li.menu-link a {
    line-height: 36px;
  }
}
.main-header .main-nav li {
  margin-right: 0px;
}
.main-header .main-nav li a {
  line-height: 18px;
}
.main-header .icon {
  position: relative;
  padding-right: 8px;
  top: 1px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
  background: none;
  float: inherit;
  margin: inherit;
}
.main-header .main-search .form.search-form .input-group span.input-icon {
  top: 0px;
  left: 0px;
  margin: 12px;
}

.page-content {
  position: relative;
  width: 100%;
  float: left;
  margin: 0 auto;
  background-color: #f3f3f3;
}
.page-content .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-content .inner h2.headline {
  padding: 10px;
}
.page-content .inner .col-md-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-content .inner .col-md-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-content .inner .grid-section h2 {
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 12px;
  text-align: left;
}
.page-content .inner .grid-section h2 a {
  color: #0065b8;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  outline: 0;
  -moz-outline: 0;
  text-decoration: none;
}
.desktop .page-content .inner .grid-section h2 a:hover {
  color: #00355f;
}
.page-content .inner .box-item .box-header {
  width: 100%;
  position: relative;
  padding-top: 60%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.page-content .inner .box-item .box-header .overlay {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.page-content .inner .box-item .box-header h4 {
  z-index: 3;
}
.page-content .inner .box-item .box-header h4 .icon {
  top: 2px;
}

.theme-grid {
  padding-bottom: 40px;
  padding-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.theme-grid ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.theme-grid ul.tab-nav {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.theme-grid ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
.theme-grid .tab-nav .current-btn {
  background: #00355f;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  padding: 13px 15px;
  margin-bottom: 5px;
  position: relative;
}
.theme-grid .tab-nav .current-btn.chevron-removal.cursor-default {
  cursor: default;
}
.theme-grid .tab-nav .current-btn.chevron-removal:after {
  content: "\07" !important;
}
@media screen and (min-width: 760px) {
  .theme-grid .tab-nav .current-btn {
    display: none;
  }
}
.theme-grid .tab-nav .current-btn:after {
  content: "\f107";
  position: absolute;
  top: 9px;
  right: 15px;
  color: #ffffff;
  font-size: 26px;
}
@media screen and (max-width: 759px) {
  .theme-grid .tab-nav.show ul {
    display: block;
    width: 100%;
    margin-top: -5px;
    margin-bottom: 5px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
  }
}
.theme-grid .tab-nav.show .current-btn:after {
  content: "\f106";
  top: 7px;
}
.theme-grid .tab-nav li {
  display: block;
  background: #ffffff;
}
@media screen and (min-width: 760px) {
  .theme-grid .tab-nav li {
    display: inline-block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border: 1px solid #c7c7c7;
    overflow: hidden;
    -webkit-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease;
    float: left;
    margin-right: 4px;
  }
}
.theme-grid .tab-nav li a {
  text-decoration: none;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  color: #0065b8;
  font-weight: 600;
  display: block;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
.theme-grid .tab-nav li a .icon {
  position: relative;
  padding-right: 5px;
  top: 3px;
  width: inherit;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
}
.theme-grid .tab-nav li.active a {
  color: #00355f;
}
@media screen and (min-width: 760px) {
  .theme-grid .tab-nav li.active {
    background: #00355f;
    border-color: #00355f;
  }
  .theme-grid .tab-nav li.active a {
    color: #ffffff;
  }
}
@media screen and (min-width: 760px) {
  .desktop .theme-grid .tab-nav li:hover {
    background: #f2f2f2;
  }
  .desktop .theme-grid .tab-nav li:hover a {
    color: #00569d;
  }
  .desktop .theme-grid .tab-nav li:hover.active {
    background: #002746;
  }
  .desktop .theme-grid .tab-nav li:hover.active a {
    color: #ffffff;
  }
}
.theme-grid .tab-nav ul {
  overflow: hidden;
  display: none;
  margin: 0px;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
@media screen and (min-width: 760px) {
  .theme-grid .tab-nav ul {
    display: block;
  }
}

.grid {
  position: relative;
}
.grid .sectioned {
  overflow: hidden;
}
.grid .sectioned h2 {
  text-align: left;
}
.grid .inner {
  position: relative;
}
.grid .items {
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  border-top: 1px solid #c7c7c7;
  padding: 10px;
}
.grid .items.js-tab-content {
  display: none;
}
.grid .items.js-tab-content.active {
  display: block;
}
.grid .items .sectioned {
  padding-top: 20px;
}
.grid .items .sectioned h2 {
  margin-bottom: 10px;
  padding-left: 10px;
}
.grid .items .content-item {
  width: 100%;
  padding: 10px;
  clear: both;
  background: #ffffff;
}
@media screen and (max-width: 699px) {
  .grid .items .content-item {
    border-radius: 4px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 700px) {
  .grid .items .content-item {
    width: 50%;
    float: left;
    clear: none;
  }
}
@media screen and (min-width: 980px) {
  .grid .items .content-item {
    width: 33.333%;
    padding: 20px 10px 10px 10px;
  }
}
.grid .items .item {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 5px;
  position: relative;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid .items .item.bg {
  height: 110%;
}
@media screen and (min-width: 980px) {
  .grid .items .item {
    padding: 10px;
  }
}
.grid .items .item:nth-child(4) {
  height: 100%;
}
.grid .items .item.popular-item-hide {
  display: none;
}
.grid .items .item.standard.split {
  width: 50%;
  float: left;
}
@media screen and (min-width: 980px) {
  .grid .items .item.standard.split {
    width: 33.333%;
  }
}
@media screen and (min-width: 700px) {
  .grid .items .item.standard {
    width: 50%;
    float: left;
  }
  .grid .items .item.standard .item-inner {
    padding-top: 60%;
  }
}
@media screen and (min-width: 980px) {
  .grid .items .item.standard {
    width: 33.333%;
  }
  .grid .items .item.standard .item-inner {
    padding-top: 60%;
  }
}
.grid .items .item.standard:hover:not(.no-hover) .item-inner .bg {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.grid .items .item.standard:hover:not(.no-hover) .item-inner .underlay {
  background: rgba(0, 40, 71, 0.4);
}
@media screen and (min-width: 700px) {
  .grid .items .item.thin {
    width: 50%;
    float: left;
  }
  .grid .items .item.thin .item-inner {
    padding-top: 56.25%;
  }
  .grid .items .item.thin .item-inner:nth-child(1) {
    height: 15px;
  }
}
@media screen and (min-width: 877px) {
  .grid .items .item.thin .item-inner {
    padding-top: 56.25%;
  }
  .grid .items .item.thin .item-inner:nth-child(1) {
    height: 17px;
  }
}
@media screen and (min-width: 980px) {
  .grid .items .item.thin {
    width: 30%;
  }
  .grid .items .item.thin .item-inner {
    padding-top: 65.87%;
  }
}
.grid .items .item.thin:hover:not(.no-hover) .item-inner .bg {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.grid .items .item.thin:hover:not(.no-hover) .item-inner .underlay {
  background: rgba(0, 40, 71, 0.4);
}
@media screen and (min-width: 700px) {
  .grid .items .item.wide {
    width: 50%;
    float: left;
  }
  .grid .items .item.wide .item-inner {
    padding-top: 56.25%;
  }
  .grid .items .item.wide .item-inner:nth-child(1) {
    height: 15px;
  }
}
@media screen and (min-width: 980px) {
  .grid .items .item.wide {
    width: 40%;
  }
  .grid .items .item.wide .item-inner {
    padding-top: 48.675%;
  }
}
.grid .items .item.wide:hover:not(.no-hover) .item-inner .bg {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.grid .items .item.wide:hover:not(.no-hover) .item-inner .underlay {
  background: rgba(0, 40, 71, 0.4);
}
.grid .items .item.extra-wide {
  max-width: 480px;
}
@media screen and (min-width: 700px) {
  .grid .items .item.extra-wide {
    width: 50%;
    float: left;
    max-width: none;
  }
  .grid .items .item.extra-wide .item-inner {
    padding-top: 40%;
  }
}
@media screen and (min-width: 980px) {
  .grid .items .item.extra-wide {
    width: 50%;
  }
  .grid .items .item.extra-wide .item-inner {
    padding-top: 40%;
  }
}
.grid .items .item.extra-wide:hover:not(.no-hover) .item-inner .bg {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.grid .items .item.extra-wide:hover:not(.no-hover) .item-inner .underlay {
  background: rgba(0, 40, 71, 0.4);
}
.grid .items .item div.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid .items .item .bg {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.grid .items .item .overlay {
  background: -webkit-linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  background: -o-linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(0, 0, 0, 0.8)));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  background: -o-linear-gradient(top, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.grid .items .item .text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  color: #ffffff;
  padding: 30px 20px 20px 20px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}
.grid .items .item .text-wrap .category {
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 3px 5px;
  background: #0065b8;
  text-transform: capitalize;
}
.grid .items .item .text-wrap .category.category-green {
  background: #1cb170;
}
.grid .items .item .text-wrap .category.category-red {
  background: #cf3f50;
}
.grid .items .item .text-wrap .category.category-light-blue {
  background: #4c95bf;
}
.grid .items .item .text-wrap .category.category-orange {
  background: #ee7720;
}
.grid .items .item .text-wrap .category.category-yellow {
  background: #ffcb00;
}
.grid .items .item .text-wrap .category.category-black {
  background: #151515;
}
.grid .items .item .text-wrap .category.category-pink {
  background: #d55766;
}
.grid .items .item .text-wrap strong {
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
}
.grid .items .item .text-wrap .icon {
  font-size: 20px;
  position: relative;
  padding-right: 5px;
  top: 1px;
}
.grid .items .item .text-wrap p {
  margin-bottom: 0px;
}
.grid .items .item.text-only .underlay {
  background: rgba(0, 26, 46, 0.9);
}
.grid .items .item.text-only .text-wrap {
  top: 0;
  bottom: auto;
  font-weight: 600;
}
.grid .items .item.js-tab-content {
  display: none;
}
.grid .items .item.js-tab-content.active {
  display: block;
}
.desktop .grid .items .item:hover:not(.text-only) .text-wrap {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.desktop .grid .items .item:hover:not(.text-only) .underlay {
  background: rgba(0, 40, 71, 0.4);
}
.desktop .grid .items .item:hover:not(.text-only) .bg {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.grid.destination-grid {
  padding: 30px 0px;
}

.ui-menu-item span.icon {
  display: none;
}

.intro {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 7px;
}
@media screen and (min-width: 768px) {
  .intro {
    max-width: 1260px;
  }
}
.intro .h1-override {
  margin-top: 40px;
  text-align: left;
  width: 100%;
  line-height: 32px;
  font-size: 1.9em;
  font-weight: 700;
  color: #00355f;
  text-transform: none;
}
.intro h2.headline {
  text-align: left;
  line-height: 32px;
  padding: 0 20px;
  margin-top: 20px;
}
@media screen and (min-width: 480px) {
  .intro h2.headline {
    margin-top: 40px;
  }
}
.intro .intro-container {
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro .intro-container {
    margin-top: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: none;
  }
}
.intro .intro-container .intro-column-left {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px 70px;
}
.intro .intro-container h3 {
  text-align: left;
  padding: 0px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.5px;
  color: #536d83;
}
.intro .intro-container ul {
  list-style: none;
}
.intro .intro-container ul li {
  margin-bottom: 5px;
}
.intro .intro-container ul li a {
  text-decoration: none;
}
.intro .intro-container ul li a div {
  padding-left: 17px;
  width: 290px;
  height: 58px;
  border-radius: 3px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1179ce), to(#0a3f6b));
  background-image: -webkit-linear-gradient(top, #1179ce, #0a3f6b);
  background-image: -o-linear-gradient(top, #1179ce, #0a3f6b);
  background-image: linear-gradient(to bottom, #1179ce, #0a3f6b);
  border: solid 1px #003c6e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .intro .intro-container ul li a div {
    width: 100%;
    padding-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .intro .intro-container ul li a div {
    width: 100%;
    padding-left: 0px;
  }
}
.intro .intro-container ul li a div span:not(.icon) {
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  color: #ffffff;
  padding-left: 25px;
}
@media screen and (min-width: 768px) {
  .intro .intro-container ul li a div span:not(.icon) {
    font-size: 17px;
  }
}

.flex-fix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
}
@media screen and (min-width: 676px) {
  .flex-fix {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}
@media screen and (min-width: 1275px) {
  .flex-fix {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

@media screen and (min-width: 676px) {
  .fix-top-pad {
    max-width: 620px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .fix-top-pad {
    margin: 0px;
  }
}

.width-fix {
  width: 100%;
}

.popular-container {
  margin: 0 auto;
  padding: 40px 0px 40px 0px;
  padding-bottom: 80px;
  background-color: #fff;
  float: left;
  width: 100%;
}
.popular-container .items {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.popular-container h2 {
  margin-bottom: 0px;
  margin-top: 10px;
}
.popular-container .popular-summary {
  padding: 0px 15px;
  text-align: center;
}
.popular-container .input-contain {
  text-align: center;
  margin: 20px auto;
  position: relative;
}
@media screen and (min-width: 992px) {
  .popular-container .input-contain {
    width: 70%;
  }
}
.popular-container .input-contain .popular-search {
  border-radius: 4px !important;
  border: 2px solid #c7c7c7;
  background: #ffffff;
  font-size: 15px;
  line-height: 15px;
  padding: 10px 10px 10px 40px;
  width: 100%;
  color: #4d5559;
  -webkit-transition: -webkit-box-shadow .2s ease;
  transition: -webkit-box-shadow .2s ease;
  -o-transition: box-shadow .2s ease;
  transition: box-shadow .2s ease;
  transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.popular-container .input-contain .position-popular {
  top: 12px;
  left: 10px;
  margin: 0;
}

#SectionPageHeader .inspiration-sidebar {
  width: 100%;
  margin-bottom: 20px;
}
#SectionPageHeader .inspiration-sidebar .inspiration-sidebar-wrapper {
  width: 100%;
  background-color: rgba(1, 43, 74, 0.9);
}
@media screen and (min-width: 992px) {
  #SectionPageHeader .inspiration-sidebar .fiter-intro {
    width: 25%;
    float: left;
  }
}
#SectionPageHeader .inspiration-sidebar h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
#SectionPageHeader .inspiration-sidebar span {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  color: #c7c7c7;
}
#SectionPageHeader .inspiration-sidebar span.icon {
  font-size: 36px;
  position: static;
  margin-left: 0;
  float: none;
  padding-right: 5px;
  background: none;
}
#SectionPageHeader .inspiration-sidebar span.icon.icon-gay {
  margin-right: 3px;
}
#SectionPageHeader .inspiration-sidebar input[type="checkbox"] {
  width: 1px;
  height: 1px;
  opacity: 0;
  float: left;
}
#SectionPageHeader .inspiration-sidebar input[type="radio"] {
  width: 1px;
  height: 1px;
  opacity: 0;
}
#SectionPageHeader .inspiration-sidebar .icon-container {
  width: 100%;
}
#SectionPageHeader .inspiration-sidebar .icon-container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  #SectionPageHeader .inspiration-sidebar .icon-container ul {
    padding-left: 0;
  }
}
#SectionPageHeader .inspiration-sidebar .icon-container ul li {
  text-align: center;
  width: 50%;
  padding-top: 10px;
}
@media screen and (min-width: 992px) {
  #SectionPageHeader .inspiration-sidebar .icon-container ul li {
    width: 10%;
    margin-left: 10px;
    margin-right: 10px;
  }
}
#SectionPageHeader .inspiration-sidebar .icon-container ul li a {
  font-weight: 800;
  font-size: 11px;
  font-family: "Source Sans Pro",sans-serif;
  padding-top: 10px;
  display: block;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  #SectionPageHeader .inspiration-sidebar .icon-container ul li {
    width: 25%;
  }
}
@media screen and (min-width: 992px) {
  #SectionPageHeader .inspiration-sidebar .icon-container ul li {
    width: 10%;
  }
}
#SectionPageHeader .inspiration-sidebar div.bottom-section {
  padding: 20px 30px;
}
#SectionPageHeader .inspiration-sidebar div.bottom-section:not(.active) span {
  opacity: 0.5;
}
#SectionPageHeader .inspiration-sidebar div.bottom-section:not(.active) h4 {
  opacity: 0.5;
}
#SectionPageHeader .inspiration-sidebar div.button-section {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0;
}
@media screen and (min-width: 480px) {
  #SectionPageHeader .inspiration-sidebar div.button-section {
    padding: 35px 30px 20px;
  }
}
#SectionPageHeader .inspiration-sidebar div.button-section .pixel-override {
  font-size: 16px;
}
@media screen and (min-width: 480px) {
  #SectionPageHeader .inspiration-sidebar div.button-section .pixel-override {
    font-size: 19px;
  }
}
#SectionPageHeader .inspiration-sidebar div.button-section button {
  margin-top: 0;
  width: 100%;
}
@media screen and (min-width: 480px) {
  #SectionPageHeader .inspiration-sidebar div.button-section button {
    width: 120px;
    margin-top: 40px;
  }
}
#SectionPageHeader .inspiration-sidebar div.active span {
  color: #f9f9f9;
}
#SectionPageHeader .inspiration-sidebar div.active span.isActive {
  color: #ffcb00;
}
#SectionPageHeader .inspiration-sidebar div.active a.isActive {
  color: #ffcb00;
}
#SectionPageHeader .inspiration-sidebar div.active input[type="checkbox"]:checked + span.icon {
  color: #ffcb00;
}
#SectionPageHeader .inspiration-sidebar div.active input[type="checkbox"]:checked + span.icon + a {
  color: #ffcb00;
}
#SectionPageHeader .inspiration-sidebar div.active label span:hover {
  cursor: pointer;
}
#SectionPageHeader .inspiration-sidebar div.active ul.error li span {
  color: #ff6174;
}
#SectionPageHeader .inspiration-sidebar :not(.active) .icon-container {
  display: none;
}
@media screen and (min-width: 480px) {
  #SectionPageHeader .inspiration-sidebar :not(.active) .icon-container {
    display: block;
  }
}
#SectionPageHeader .inspiration-sidebar .active .icon-container {
  display: block;
}

.full-description-landing {
  margin-bottom: 50px;
  padding-bottom: 30px;
  line-height: 26px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media screen and (min-width: 768px) {
  .full-description-landing {
    margin-bottom: 0px;
  }
}
.full-description-landing h2 {
  font-weight: 700;
  color: #021d37;
  text-align: left;
  margin-bottom: 15px;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .full-description-landing h2 {
    font-size: 26px;
  }
}
.full-description-landing p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.63;
  text-align: left;
  color: #444444;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .full-description-landing p {
    font-size: 16px;
  }
}

.creative-container {
  position: relative;
  height: 100%;
}

@media screen and (min-width: 480px) {
  .footer-pad {
    padding-top: 100px;
  }
}

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*padding:0;*/
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* 
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-nav .owl-prev {
  position: absolute;
  top: -10px;
  left: 0;
}
.owl-nav .owl-prev span {
  left: 15px;
  top: 5px;
}

.owl-nav .owl-next {
  position: absolute;
  top: -10px;
  right: 0;
}
.owl-nav .owl-next span {
  left: 18px;
  margin-top: 5px;
}

@media screen and (min-width: 480px) {
  .owl-nav .owl-prev {
    position: absolute;
    top: -10px;
    left: 0;
  }
  .owl-nav .owl-prev span {
    left: 14px;
    margin-top: 5px;
  }

  .owl-nav .owl-next {
    position: absolute;
    top: -10px;
    right: 0;
  }
  .owl-nav .owl-next span {
    left: 18px;
    margin-top: 5px;
  }
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #ffffff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #7d898f;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  -webkit-transition: background 200ms ease, opacity 200ms ease;
  -o-transition: background 200ms ease, opacity 200ms ease;
  transition: background 200ms ease, opacity 200ms ease;
}
.owl-theme .owl-nav [class*='owl-'] span {
  font-size: 30px;
  position: relative;
  top: 2px;
}

.owl-theme .owl-nav [class*='owl-']:not(.disabled):hover {
  background: #00569d;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  height: 45px;
  padding-top: 8px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #aacde1;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  -webkit-transition: opacity 200ms ease, background 200ms ease;
  -o-transition: opacity 200ms ease, background 200ms ease;
  transition: opacity 200ms ease, background 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .desktop .owl-theme .owl-dots .owl-dot:hover span {
  background: #00355f;
}

.carousel-module .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0;
}

#SectionPageHeader .carousel-module {
  background: #d8d8d8;
  padding: 20px 0px;
  float: left;
  width: 100%;
    /*.inner{
max-width: 1200px;
margin: 0 auto;
}*/
}
#SectionPageHeader .carousel-module.promoted-theme {
  margin-bottom: 40px;
}
@media screen and (min-width: 760px) {
  #SectionPageHeader .carousel-module {
    padding: 40px 25px;
  }
}
.page-content #SectionPageHeader .carousel-module {
  background: transparent;
  padding: 0;
}
#SectionPageHeader .carousel-module .owl-carousel {
  padding-bottom: 10px;
}
#SectionPageHeader .carousel-module .owl-carousel.owl-nav {
  padding: 0;
}
@media screen and (max-width: 479px) {
  #SectionPageHeader .carousel-module .module-title {
    padding-left: 10px;
  }
}

.white-carousel-bg {
  background: #ffffff;
}
.white-carousel-bg h2 {
  margin-bottom: 40px;
}
.white-carousel-bg h2.popular-heading {
  margin-top: 40px;
  margin-bottom: 40px;
}
.white-carousel-bg h2.article-heading {
  margin-bottom: 10px;
}
@media screen and (min-width: 480px) {
  .white-carousel-bg h2.article-heading {
    margin-bottom: 40px;
  }
}
.white-carousel-bg h3 {
  padding-bottom: 0px;
}
.white-carousel-bg h3.theme-heading {
  padding-bottom: 40px;
}
.white-carousel-bg h3.blog-header {
  padding-bottom: 20px;
}
.white-carousel-bg h3.popular-heading {
  padding-bottom: 30px;
}
@media screen and (min-width: 480px) {
  .white-carousel-bg h3.popular-heading {
    padding-bottom: 0px;
  }
}

.carousel-module {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  padding: 30px 25px;
}
@media screen and (min-width: 768px) {
  .carousel-module {
    padding-top: 0;
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .carousel-module {
    padding-top: 0;
    margin-bottom: -25px;
  }
}
.carousel-module:last-child {
  padding-bottom: 90px;
}
@media screen and (max-width: 480px) {
  .carousel-module:last-child {
    padding-top: 1px;
  }
}
.carousel-module:last-child:first-child {
  padding-top: 0px;
}
.carousel-module h4 {
  text-align: center;
  margin-top: -25px;
}
@media screen and (min-width: 480px) {
  .carousel-module h4 {
    text-align: left;
    margin-top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .carousel-module .owl-prev {
    left: 33%;
  }
}
@media screen and (max-width: 480px) {
  .carousel-module .owl-prev span.icon-angle-left {
    top: 6px;
  }
}
@media screen and (max-width: 480px) {
  .carousel-module .owl-next {
    right: 33%;
  }
}
.carousel-module .box-container {
  padding: 0;
  height: 328px;
}
@media screen and (min-width: 768px) {
  .carousel-module .box-container {
    height: 334px;
  }
}
.carousel-module .box-container p {
  padding-top: 90px;
  color: #00355f;
}
.carousel-module .box-container:nth-child(2) {
  height: 352px;
}
.carousel-module .box-item {
  text-decoration: none;
}
.carousel-module .box-item .box-header .overlay {
  display: block;
}
.carousel-module .box-item .box-header h4 {
  z-index: 5;
}
.carousel-module .box-item .box-header h4 .icon {
  font-size: 20px;
  position: relative;
  padding-right: 5px;
  top: -3px;
}
.carousel-module .box-item .box-header h4 .icon.icon-airplane {
  padding-right: 15px;
}
.carousel-module .box-item .box-header h4 .icon.icon-gay {
  padding-right: 8px;
}
.carousel-module .box-item .box-header h4 .icon.icon-sportsetnature-1 {
  padding-right: 8px;
}
.carousel-module .box-item .box-body h3 {
  text-align: left;
  padding: 0;
}
.carousel-module .box-item .box-footer:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}
.carousel-module .box-item:hover:not(.no-hover) {
  background: aliceblue;
}
.carousel-module .box-item:hover:not(.no-hover).box-blue {
  background: #00355f;
}
.carousel-module .box-item:hover:not(.no-hover).box-blue .box-header {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  width: 96%;
  height: 93.5%;
  margin: 10px auto 0;
  border-radius: 5px;
}
.carousel-module .box-item:hover:not(.no-hover).box-blue h4 {
  color: #ffd200;
}
.carousel-module .box-item.box-blue {
  background: #ffd200;
  padding: 0;
}
.carousel-module .box-item.box-blue .box-header {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 10px auto 0;
  width: 96%;
  height: 93.5%;
  margin: 10px auto 0;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.carousel-module .box-item.box-blue h4 {
  position: initial;
  color: #00355f;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
}

.box-item {
  position: relative;
  background: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  overflow: hidden;
  margin-bottom: 10px;
  display: block;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}
.box-item .box-text-header {
  padding: 20px 15px 10px 15px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  overflow: hidden;
}
.box-item .box-text-header h4 {
  font-size: 19px;
  line-height: 19px;
  color: #58738a;
  margin-bottom: 0;
}
.box-item .box-header {
  width: 100%;
  position: relative;
  padding-top: 60%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.contributors .box-item .box-header {
  padding-top: 100%;
}
.box-item .box-header .bg {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
}
.box-item .box-header h4 {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  font-weight: 600;
  margin-bottom: 0;
}
.box-item .box-header h4 .icon {
  font-size: 20px;
  position: relative;
  padding-right: 5px;
}
.box-item .box-body {
  padding: 20px 20px 60px 20px;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 20px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}
.box-item .box-body .box-image {
  float: left;
  width: 15%;
  padding: 10px;
}
.box-item .box-body .box-image .box-circle {
  border-radius: 50%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}
.box-item .box-body .box-text {
  float: left;
  width: 85%;
  padding-left: 20px;
}
.box-item .box-body.large-text {
  font-size: 16px;
  line-height: 24px;
}
.box-item .box-body.large-text h3 {
  font-size: 19px;
  line-height: 22px;
  color: #002847;
}
.box-item .box-body.no-footer {
  padding-bottom: 20px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.box-item .box-body.no-header {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.box-item .box-body.large-type {
  font-size: 16px;
  line-height: 24px;
}
.box-item .box-body .sell-header {
  margin-bottom: 10px;
  min-height: 50px;
}
.box-item .box-body .sell-header h3 {
  float: left;
  width: 70%;
  font-size: 15px;
  line-height: 18px;
}
.box-item .box-body h3 {
  color: #0065b8;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.box-item .box-body p:last-of-type {
  margin-bottom: 0;
}
.box-item .box-body h5 {
  color: #0065b8;
  font-weight: 600;
}
.box-item .box-footer {
  border-top: 1px solid #c7c7c7;
  font-size: 14px;
  line-height: 14px;
  padding: 12px 20px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.box-item .box-footer a {
  display: block;
}
.box-item .box-footer span {
  color: #0065b8;
}
.desktop .box-item .box-footer:hover {
  background: aliceblue;
}
.desktop .box-item .box-footer:hover a {
  color: #0065b8;
}
.box-item:hover:not(.no-hover) {
  background: aliceblue;
}
.box-item:hover:not(.no-hover) .box-header h4 {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.box-item:hover:not(.no-hover) .box-header .bg {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.box-item:hover:not(.no-hover) .box-header .underlay {
  background: rgba(0, 40, 71, 0.4);
}

#show-promoted-btn {
  width: 180px;
}

.hide-carousel-theme {
  display: none;
}

#show-hidden-carousel {
  margin-bottom: 40px;
}
@media screen and (min-width: 480px) {
  #show-hidden-carousel {
    margin-bottom: 60px;
  }
}

.full-description p {
  margin-bottom: 20px !important;
}

.carousel-is-month-module.owl-theme .owl-nav {
  width: 100%;
  position: absolute;
  height: 100%;
}

.creative-container {
  position: relative;
  height: 100%;
}
