/*
Theme Name: IOT 2017 
Theme URI:
Description: Custom Theme for IOT Tour Operator
Author: B42 srls 
Author URI: http://www.b42.it
Version: 0.1
*/
.cf {
  *zoom: 1;
}
.cf:before,
.cf:after {
  display: table;
  content: "";
  line-height: 0;
}
.cf:after {
  clear: both;
}
/* GENERAL */
html,
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
  position: relative;
}
img {
  max-width: 100%;
}
img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain-intrinsic-size: initial;
}
.img_cover {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.no_padding_left {
  padding-left: 0;
}
.no_padding_right {
  padding-right: 0;
}
hr {
  padding: 0;
  border-top: 1px solid #ffffff;
}
/* font */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
}
h1 {
  font-size: 60px;
  font-weight: 300;
  color: #ffffff;
}
h1.title_main {
  padding: 60px 0 20px;
  color: #333;
  font-size: 60px;
  font-weight: 400;
}
h2 {
  padding: 60px 0;
  font-size: 72px;
  font-weight: 400;
}
h2.destination {
  font-size: 60px;
}
strong {
  font-weight: 500;
}
/* a */
a,
a:hover,
a:focus {
  background-color: transparent;
  outline: none;
  color: #000;
  text-decoration: none;
}
/* buttons and a[role=button] */
a.btn,
button.btn {
  border: 1px solid #ff9934;
  background-color: #ff9934;
  border-radius: 0;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  outline: none;
}
a.btn:focus,
button.btn:focus,
a.btn:hover,
button.btn:hover,
a.btn:active:focus,
button.btn:active:focus {
  outline: none;
  border-color: #ff9934;
  background-color: #ffffff;
  color: #ff9934;
}
a.btn-outline,
button.btn-outline,
a.btn-outline:focus,
button.btn-outline:focus {
  background-color: #ffffff;
  color: #ff9934;
}
a.btn-outline:hover,
button.btn-outline:hover,
a.btn-outline:active:focus,
button.btn-outline:active:focus {
  background-color: #ff9934;
  color: #ffffff;
}
a.btn-outline:hover,
button.btn-outline:hover {
  border-color: #ffffff;
}
a.btn-lg,
button.btn-lg,
a.btn-lg:hover,
button.btn-lg:hover {
  margin: 40px 0 0;
  padding: 10px 40px;
  font-size: 22px;
}
/* form */
.form-control {
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ff9934;
}
input.form-control,
select.form-control {
  height: 39px;
}
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(img/arrows/arrow_down_orange.svg);
  background-position: calc(100% - 7px) 50%;
  background-repeat: no-repeat;
  -webkit-background-size: 47px 14px;
  -moz-background-size: 47px 14px;
  -o-background-size: 47px 14px;
  background-size: 47px 14px;
  border-radius: 0;
}
textarea {
  resize: none;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
textarea:-webkit-autofill:hover,
select:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill:active,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -moz-box-shadow: 0 0 0 1000px #ffffff inset;
  box-shadow: 0 0 0 1000px #ffffff inset;
}
input.error,
textarea.error,
select.error {
  border-color: #FF3434;
}
.form-control[disabled],
.form-control[readonly] {
  background-color: #ffffff;
  background-image: none;
  border-color: #ffffff;
  cursor: auto;
}
label.error {
  color: #FF3434;
}
/* loader */
.loader {
  height: 100px;
  width: 100px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  border: 10px solid #e6e6e6;
  border-top: 10px solid #ff9934;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
@-webkit-keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* HEADER */
header {
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  line-height: 50px;
  z-index: 100;
}
header.main_header {
  background-color: #ff9934;
  border-bottom: 1px solid #ffffff;
}
header .opacity-menu li {
  display: inline-block;
  float: none;
}
header .navbar {
  margin: 0;
  border: 0;
}
header .navbar-brand {
  padding: 0;
}
header .navbar-brand img {
  max-height: 50px;
}
header .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
header .nav > li {
  padding: 0 0 0 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
header .nav > li a {
  padding: 0;
  color: #ffffff;
  line-height: 50px;
}
header .nav > li a:focus {
  background-color: transparent;
}
header .nav > li.current_page_item a {
  color: #000;
}
header .nav > li:hover a {
  color: #000;
  background-color: transparent;
}
header .nav > li.nav-search {
  margin-left: 10px;
  cursor: pointer;
}
header .nav > li.nav-search .glyphicon {
  margin-left: 5px;
  font-size: 24px;
  line-height: 50px;
  vertical-align: bottom;
}
header .nav > li.nav-search .nav_form {
  height: 80px;
  width: 100%;
  position: fixed;
  top: 50px;
  left: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #000;
  z-index: 10;
  display: none;
}
header .nav > li.nav-search .form-search .form-group,
header .nav > li.nav-search .form-search button {
  margin: 20px 0 0;
}
header .nav > li.nav-social a {
  line-height: normal;
  margin-top: 10px;
}
/* SEARCH */
/* box */
.box-search .fluid-bg {
  position: relative;
  padding: 20px 0 5px;
}
/* button */
.form-search button.btn-default {
  height: 39px;
  width: 100%;
  margin-bottom: 15px;
  font-weight: 400;
}
.form-search button.btn-default:hover {
  border-color: #ff9934;
}
/* FOOTER */
footer {
  background: #f0f0f0;
  padding: 30px 0;
}
footer .social-icn a {
  margin: 10px;
  display: block;
  float: right;
}
footer .logos a {
  max-width: 49%;
  margin-bottom: 30px;
  display: inline-block;
  vertical-align: top;
}
footer .logos a:nth-child(odd) {
  padding-right: 7px;
}
footer .logos a:nth-child(even) {
  padding-left: 7px;
}
footer h6 {
  margin: 15px 0;
  font-size: 16px;
}
footer ul {
  margin-bottom: 30px;
}
footer ul a {
  color: #000;
}
footer ul a:hover {
  color: #ff9934;
}
footer hr {
  border-color: #dadada;
  margin: 5px 0 10px;
}
footer .total,
footer .creator {
  color: #8e8e8e;
  font-size: 12px;
}
/* ALERT ROTATE DEVICE */
.alert_landscape {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  display: none;
}
.alert_landscape .logo_alert {
  width: 150px;
  margin: 10px 0 20px;
}
.alert_landscape .rotate_icon {
  width: 50px;
  margin: 10px 0;
}
/* CAROUSEL */
.carousel .carousel-inner {
  height: 100%;
}
.carousel-control {
  width: 40px;
}
.carousel-control.right,
.carousel-control.left {
  background-image: none;
}
.carousel-control.right img,
.carousel-control.left img {
  position: absolute;
  top: 50%;
  margin-top: -46px;
}
.carousel-control.right img {
  right: 0;
}
.carousel-control.left img {
  left: 0;
}
/* FLUID BACKGROUNDS */
.fluid-img {
  position: relative;
}
.fluid-img .half-bg {
  height: 50%;
  width: 100%;
  position: absolute;
}
.fluid-img .half-bg .img-bg {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.fluid-bg {
  width: 100%;
  background: #f0f0f0;
}
/* MAIN */
.main,
.generic-box {
  position: relative;
}
.main h4,
.generic-box h4 {
  margin: 20px 0 10px;
}
.main ul,
.generic-box ul,
.main ol,
.generic-box ol {
  padding: 15px 30px;
}
.main ul li,
.generic-box ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.main ol li,
.generic-box ol li {
  list-style: lower-latin;
  margin-bottom: 5px;
}
.box-choose-trip ul,
.list_travels ul,
.box-choose-trip ol,
.list_travels ol {
  padding: 0;
}
.box-choose-trip ul li,
.list_travels ul li {
  list-style: none;
  margin-bottom: 0;
}
.box-choose-trip ol li,
.list_travels ol li {
  list-style: none;
  margin-bottom: 0;
}
/* GATTINONI */
.home .box-choose-trip.gattinoni ul li.gattinoni:hover {
  background: #becc20;
}
.home .box-choose-trip.gattinoni ul li.gattinoni:hover a {
  color: #ffffff;
}
.home .box-choose-trip.gattinoni ul li.gattinoni.active a {
  color: #ffffff;
  background: #becc20;
}
.home .box-choose-trip.gattinoni ul li.gattinoni a {
  color: #becc20;
  font-weight: 900;
}
.home .box-choose-trip.gattinoni ul li.gattinoni a:hover {
  color: #ffffff !important;
  background-color: #becc20 !important;
}
.home .box-choose-trip.gattinoni .tab-content.gattinoni {
  background: #becc20;
}
.home .box-choose-trip.gattinoni .tab-content.gattinoni p.gattinoni {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 400;
  padding: 0 0 50px 0;
}
.home .box-choose-trip.gattinoni .tab-content.gattinoni a.btn {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #becc20;
}
.home .box-choose-trip.gattinoni .tab-content.gattinoni a.btn:hover {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #becc20;
}
.home .box-gattinoni {
  padding-top: 60px;
}
.home .box-gattinoni .fluid-bg {
  width: 100%;
  background: url(img/gattinoni-box-background.jpg) center center #becc20;
  background-blend-mode: multiply;
  border-top: 10px solid #becc20;
  border-bottom: 10px solid #becc20;
}
.home .box-gattinoni .fluid-bg .caption h3 {
  font-size: 40px;
  margin-bottom: 50px;
}
.home .box-gattinoni .fluid-bg a {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #becc20;
  padding: 10px 40px;
  font-size: 22px;
}
/* FINE GATTINONI */
.single_country ul,
.single_country ol {
  padding: 0;
}
/* main image */
.page-main-image .fluid-img,
.page-main-image .half-bg {
  height: 50vh;
}
.page-main-image .fluid-img .caption {
  height: inherit;
  position: absolute;
  bottom: 70px;
  color: #ffffff;
}
.page-main-image .fluid-img .caption h2,
.page-main-image .fluid-img .caption h3 {
  padding: 0;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
}
.page-main-image .fluid-img .caption h1 {
  font-weight: 400;
  font-size: 60px;
}
.page-main-image .fluid-img .caption h4 {
  padding: 0;
  margin-top: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
}
/* THUMBNAIL */
.thumbnail {
  border-radius: 0;
  padding: 0;
}
/* MEDIA */
p.descrizione-tab {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 400;
  padding: 0 0 50px 0;
}
.media {
  position: relative;
}
.media .media-body {
  position: relative;
}
.media .media-body a:hover {
  color: #ff9934;
}
.media h4.media-heading {
  font-size: 30px;
  font-weight: 400;
  padding: 0 0 15px 0;
  margin: 0;
}
.media .trip-description {
  font-size: 18px;
}
.media a.btn {
  width: 185px;
  margin-top: 15px;
  font-weight: 400;
}
.media .trip-dates {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.media .trip-category,
.thumbnail .trip-category {
  padding-top: 15px;
}
.media .trip-category.orange,
.thumbnail .trip-category.orange {
  color: #ff9934;
  font-weight: 600;
}
.media .trip-category li,
.thumbnail .trip-category li {
  display: inline-block;
  padding-right: 5px;
}
.media .trip-category a,
.thumbnail .trip-category a {
  color: #ff9934;
  font-weight: 600;
}
.media .trip-category a:hover,
.thumbnail .trip-category a:hover {
  color: #000;
}
.media .trip-minpartecipants,
.thumbnail .trip-minpartecipants {
  color: #979797;
}
.media .trip-info,
.thumbnail .trip-info,
.media .availability_marker,
.thumbnail .availability_marker {
  padding-top: 15px;
}
.thumbnail .trip-dates {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
/* INFO SEATS */
.availability_marker {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
}
.availability_marker .circle {
  height: 13px;
  width: 13px;
  margin-right: 7px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ff9934;
}
.availability_marker .confirmed_text {
  display: none;
}
.availability_marker.available {
  color: #ff9934;
}
.availability_marker.available .available_text {
  margin-right: 10px;
}
.availability_marker.available .available_text + .seats_text {
  font-weight: 400;
}
.availability_marker.last5 {
  color: #ff9934;
}
.availability_marker.last5 .circle {
  background-color: #ff9934;
}
.availability_marker.last5 .seats_text {
  font-weight: 400;
}
.availability_marker.confirmed {
  color: #5ea74d;
}
.availability_marker.confirmed .circle {
  background-color: #5ea74d;
}
.availability_marker.confirmed .confirmed_text {
  display: inline-block;
  margin-right: 10px;
}
.availability_marker.confirmed .seats_text {
  display: none;
  font-weight: 400;
}
.availability_marker.confirmed.last5 .seats_text {
  display: inline-block;
}
.availability_marker.sold_out {
  color: #979797;
}
.availability_marker.sold_out .circle {
  background-color: #979797;
}
.availability_marker.sold_out .seats_text {
  color: #979797;
}
td .availability_marker.available .available_text + .seats_text,
td .availability_marker.confirmed.last5 .seats_text {
  display: block;
  text-indent: 23px;
}
/* PAGINATION */
.pagination > li > a,
.pagination > li > span {
  height: 35px;
  width: 35px;
  color: #ff9934;
  margin: 0 5px 10px;
  padding: 6px 0 0 0;
  border-radius: 0 !important;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 5px;
}
.pagination > .active a,
.pagination > .active a:focus,
.pagination > .active a:hover,
.pagination > .active span,
.pagination > .active span:focus,
.pagination > .active span:hover {
  background-color: #ff9934;
  border-color: #ff9934;
}
/* MODAL */
.modal {
  padding: 0 !important;
}
.modal .modal-content {
  border-radius: 0;
  padding: 20px;
}
.modal .modal-content img {
  width: 150px;
}
.modal .modal-content h6 {
  font-size: 18px;
}
.modal .modal-content .text-modal {
  margin: 20px 0;
  font-size: 16px;
  line-height: 26px;
}
.modal .modal-content .btn {
  padding: 6px 28px;
}
/* CONTACTS */
.box-contact {
  padding-bottom: 80px;
}
.box-contact .infos_button {
  padding-top: 20px;
}
.box-contact .infos_button .btn-lg {
  padding: 20px 80px;
  font-size: 30px;
}
.box-contact #modalPrivacyPolicy.modal .modal-content .text-modal {
  font-size: 14px;
}
.box-contact .explain_buttons {
  font-size: 19px;
}
.box-contact .divider_buttons {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 16px;
}
.box-contact #panelPrivacyReport,
.box-contact #panelPrivacyReportContacts {
  height: 300px;
  overflow-y: scroll;
}
.telfax {
  display: none;
}
/* custom COLORBOX */
#cboxOverlay {
  background-image: none;
  background-color: rgba(117, 117, 117, 0.9);
}
#cboxPrevious,
#cboxNext,
#cboxClose {
  background-image: url(img/colorbox/controls.png);
}
#cboxTopLeft,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxTopCenter,
#cboxBottomCenter {
  background-image: none;
}
#cboxLoadingOverlay {
  background-image: url(img/colorbox/loading_background.png);
}
#cboxLoadingGraphic {
  background-image: url(img/colorbox/loading.gif);
}
.colorbox_logo {
  width: 120px;
  position: absolute;
  top: 50px;
  left: 50%;
  margin-left: -60px;
}
/**/
/* tables */
.departures-table form {
  display: none;
}
.departures-table,
.offers-table {
  background: #ffffff;
  border: 1px solid #000;
  padding: 10px 20px;
}
.departures-table table,
.offers-table table {
  width: 100%;
  margin-bottom: 0;
}
.departures-table table td,
.offers-table table td {
  border-bottom: 1px solid #ddd;
  border-top: 0;
}
.departures-table table td .td-date,
.offers-table table td .td-date,
.departures-table table td .td-type-offer,
.offers-table table td .td-type-offer,
.departures-table table td .td-destination,
.offers-table table td .td-destination,
.departures-table table td .td-duration,
.offers-table table td .td-duration,
.departures-table table td .td-cost,
.offers-table table td .td-cost,
.departures-table table td .td-info-seats,
.offers-table table td .td-info-seats,
.departures-table table td .td-button,
.offers-table table td .td-button {
  padding: 6px;
}
.departures-table table td .td-type-offer,
.offers-table table td .td-type-offer {
  color: #ff9934;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.departures-table table td .td-destination,
.offers-table table td .td-destination {
  font-weight: 600;
  font-size: 16px;
}
.departures-table table td .td-destination .min,
.offers-table table td .td-destination .min {
  color: #d1d1d1;
  font-weight: 300;
  font-size: 14px;
}
.departures-table table td a,
.offers-table table td a {
  width: 100%;
  font-size: 16px;
}
/* HOMEPAGE */
/* slider */
#carousel_homepage {
  height: 100vh;
  position: relative;
}
#carousel_homepage .item {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
}
#carousel_homepage .carousel-caption {
  right: 0;
  left: 0;
  /* modifica provvisoria legata alla pandemia 2020 */
  top: 46%;
  /**/
  bottom: auto;
  padding-top: 20px;
}
#carousel_homepage .carousel-caption .dark h2,
#carousel_homepage .carousel-caption .dark .description-slider {
  color: #000;
}
#carousel_homepage .carousel-caption .light h2,
#carousel_homepage .carousel-caption .light .description-slider {
  color: #ffffff;
}
#carousel_homepage .carousel-caption h2 {
  padding: 0;
  font-size: 60px;
}
#carousel_homepage .carousel-caption .description-slider {
  margin: 20px 0 30px;
  font-size: 20px;
  font-weight: 200;
}
#carousel_homepage .carousel-caption a {
  width: 200px;
  font-size: 22px;
  font-weight: 400;
}
#carousel_homepage .carousel-caption a:hover {
  border-color: #ffffff;
}
#carousel_homepage .scroll_down {
  margin: 20px auto;
  cursor: pointer;
}
#carousel_homepage .carousel-control.right {
  right: 50%;
  margin-right: -540px;
}
#carousel_homepage .carousel-control.left {
  left: 50%;
  margin-left: -540px;
}
#logo_anniversary {
  width: 150px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10000;
}
/* homepage search */
.carousel_search {
  /* modifica provvisoria legata alla pandemia 2020 */
  display: none !important;
  /**/
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0;
  background: none;
  color: #ffffff;
}
.carousel_search .search-top {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
}
.carousel_search hr {
  margin: 10px 0;
}
.carousel_search .search-bottom label {
  padding-top: 10px;
  font-weight: 300;
}
.carousel_search .search-bottom button.btn-default {
  margin: 35px 0 0 0;
}
.carousel_search .search-bottom button.btn-default:hover {
  border-color: #ffffff;
}
.home,
.chi-siamo {
  /* section - scegli il tuo viaggio */
  /* section - prossime partenze */
  /* section - FVG mosaic */
  /* section - focus */
  /* section - perchè IOT */
  /* section - opportunità */
  /* section - offers */
}
.home .box-choose-trip .controls-carousel .glyphicon-chevron-left,
.chi-siamo .box-choose-trip .controls-carousel .glyphicon-chevron-left,
.home .box-choose-trip .controls-carousel .glyphicon-chevron-right,
.chi-siamo .box-choose-trip .controls-carousel .glyphicon-chevron-right {
  height: 40px;
  margin-top: 0;
  margin-left: 15px;
  margin-right: 15px;
  top: 0;
}
.home .box-choose-trip ul.nav-pills li a,
.chi-siamo .box-choose-trip ul.nav-pills li a {
  padding: 10px 12px;
  color: #747474;
  border-radius: 0;
}
.home .box-choose-trip ul.nav-pills li.active a,
.chi-siamo .box-choose-trip ul.nav-pills li.active a {
  background-color: #f2f1f1;
  color: #000;
}
.home .box-choose-trip ul.nav-pills li.speciale-mare a,
.chi-siamo .box-choose-trip ul.nav-pills li.speciale-mare a {
  font-weight: 600;
  color: #ff9934;
}
.home .box-choose-trip ul.nav-pills li.speciale-mare a:hover,
.chi-siamo .box-choose-trip ul.nav-pills li.speciale-mare a:hover {
  background-color: #ff9934;
  color: #ffffff;
}
.home .box-choose-trip ul.nav-pills li.speciale-mare.active a,
.chi-siamo .box-choose-trip ul.nav-pills li.speciale-mare.active a {
  background-color: #ff9934;
  color: #ffffff;
}
.home .box-choose-trip .carousel-inner,
.chi-siamo .box-choose-trip .carousel-inner {
  overflow: visible;
}
.home .box-choose-trip .tab-content,
.chi-siamo .box-choose-trip .tab-content {
  color: #000;
  background-color: #f2f1f1;
  padding: 40px;
}
.home .box-choose-trip .dates,
.chi-siamo .box-choose-trip .dates {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
}
.home .box-choose-trip .price,
.chi-siamo .box-choose-trip .price {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
}
.home .box-choose-trip .features,
.chi-siamo .box-choose-trip .features {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  color: #ff9934;
}
.home .box-upcoming-departures .claim,
.chi-siamo .box-upcoming-departures .claim {
  padding: 80px 0;
  color: #ffffff;
  font-size: 36px;
  line-height: 42px;
}
.home .box-mosaic-fvg .claim,
.chi-siamo .box-mosaic-fvg .claim {
  padding: 80px 0;
  color: #ffffff;
  font-size: 36px;
  line-height: 42px;
}
.home .box-mosaic-fvg .td-destination,
.chi-siamo .box-mosaic-fvg .td-destination {
  width: 60%;
}
.home .box-focus h2,
.chi-siamo .box-focus h2 {
  padding-bottom: 0;
}
.home .box-focus .gradient_top,
.chi-siamo .box-focus .gradient_top,
.home .box-focus .gradient_bottom,
.chi-siamo .box-focus .gradient_bottom {
  height: 120px;
  width: 100%;
  position: absolute;
  left: 0;
  background-position: 0 0;
  background-repeat: repeat-x;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}
.home .box-focus .gradient_top,
.chi-siamo .box-focus .gradient_top {
  top: 0;
  background-image: url(img/gradient_focus_top.png);
}
.home .box-focus .gradient_bottom,
.chi-siamo .box-focus .gradient_bottom {
  bottom: 0;
  background-image: url(img/gradient_focus_bottom.png);
}
.home .box-focus .fluid-img,
.chi-siamo .box-focus .fluid-img {
  height: 822px;
  /*margin: 60px 0;*/
  background-position: 0 center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.home .box-focus h3,
.chi-siamo .box-focus h3 {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 10px 0;
}
.home .box-focus .claim,
.chi-siamo .box-focus .claim {
  margin-top: 75%;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 400;
}
.home .box-focus .thumbnail,
.chi-siamo .box-focus .thumbnail {
  border: 0;
  margin-top: 60px;
  -webkit-box-shadow: 0px 0px 44px 0px #999999;
  -moz-box-shadow: 0px 0px 44px 0px #999999;
  box-shadow: 0px 0px 44px 0px #999999;
}
.home .box-focus .thumbnail img,
.chi-siamo .box-focus .thumbnail img {
  margin: 0 auto;
}
.home .box-focus .thumbnail .caption,
.chi-siamo .box-focus .thumbnail .caption {
  padding: 20px;
}
.home .box-focus .thumbnail .caption a,
.chi-siamo .box-focus .thumbnail .caption a {
  font-size: 16px;
  font-weight: 400;
}
.home .box-why-iot .carousel-inner,
.chi-siamo .box-why-iot .carousel-inner {
  position: relative;
}
.home .box-why-iot .carousel-inner .item,
.chi-siamo .box-why-iot .carousel-inner .item {
  color: #ffffff;
}
.home .box-why-iot .carousel-inner .item img,
.chi-siamo .box-why-iot .carousel-inner .item img {
  margin: 0 auto;
}
.home .box-why-iot .carousel-inner .item blockquote,
.chi-siamo .box-why-iot .carousel-inner .item blockquote {
  position: absolute;
  bottom: 30px;
  padding: 0 100px;
  border: 0;
}
.home .box-why-iot .carousel-inner .item blockquote .step,
.chi-siamo .box-why-iot .carousel-inner .item blockquote .step {
  color: #dbdbdb;
  font-family: "times new roman";
  font-size: 120px;
  font-weight: 600;
  opacity: 0.5;
  line-height: 120px;
}
.home .box-why-iot .carousel-inner .item blockquote h4,
.chi-siamo .box-why-iot .carousel-inner .item blockquote h4 {
  margin-bottom: 10px;
}
.home .box-why-iot .carousel-control.left,
.chi-siamo .box-why-iot .carousel-control.left {
  margin-left: -35px;
}
.home .box-why-iot .carousel-control.right,
.chi-siamo .box-why-iot .carousel-control.right {
  margin-right: -35px;
}
.home .fluid-bg,
.chi-siamo .fluid-bg {
  padding: 40px 0;
}
.home .fluid-bg .thumbnail,
.chi-siamo .fluid-bg .thumbnail {
  margin: 0;
  border: 0;
}
.home .fluid-bg .thumbnail .caption,
.chi-siamo .fluid-bg .thumbnail .caption {
  padding: 25px;
  position: relative;
}
.home .fluid-bg .thumbnail .caption h3,
.chi-siamo .fluid-bg .thumbnail .caption h3 {
  min-height: 70px;
  margin-bottom: 30px;
}
.home .fluid-bg .thumbnail .caption small,
.chi-siamo .fluid-bg .thumbnail .caption small {
  display: block;
  color: #000;
}
.home .fluid-bg .thumbnail .caption .content,
.chi-siamo .fluid-bg .thumbnail .caption .content {
  height: 170px;
}
.home .fluid-bg .thumbnail .caption a.btn-lg,
.chi-siamo .fluid-bg .thumbnail .caption a.btn-lg,
.home .fluid-bg .thumbnail .caption button.btn-lg,
.chi-siamo .fluid-bg .thumbnail .caption button.btn-lg {
  margin-top: 20px;
}
.home .box-offers,
.chi-siamo .box-offers {
  margin: 60px 0 0 0;
}
.home .box-offers .fluid-bg,
.chi-siamo .box-offers .fluid-bg {
  background: #ff9934;
}
.home .box-offers .fluid-bg h2,
.chi-siamo .box-offers .fluid-bg h2 {
  color: #ffffff;
  padding: 0 0 60px;
}
.home .box-offers .fluid-bg .caption,
.chi-siamo .box-offers .fluid-bg .caption {
  font-family: 'Oswald', sans-serif;
}
.home .box-offers .fluid-bg .caption h3,
.chi-siamo .box-offers .fluid-bg .caption h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.home .box-offers .fluid-bg .caption h3 a:hover,
.chi-siamo .box-offers .fluid-bg .caption h3 a:hover {
  color: #ff9934;
}
.home .box-offers .fluid-bg .caption .dates,
.chi-siamo .box-offers .fluid-bg .caption .dates {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.home .box-offers .fluid-bg .caption .price,
.chi-siamo .box-offers .fluid-bg .caption .price {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
  min-height: 90px;
}
.home .box-offers .fluid-bg .caption img,
.chi-siamo .box-offers .fluid-bg .caption img {
  margin-bottom: 15px;
}
.home .box-offers .fluid-bg .caption .content,
.chi-siamo .box-offers .fluid-bg .caption .content {
  font-size: 20px;
  font-weight: 100;
  height: auto;
  padding-bottom: 20px;
}
.box-newsletter .single-newsletter-title {
  margin-bottom: 20px;
}
/* DESTINATION PAGE */
.box-destination-step {
  height: 100vh;
  width: 100%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.box-destination-step .container_info .col-xs-12 {
  height: 100vh;
}
.box-destination-step h1 {
  width: inherit;
  position: absolute;
  top: 70%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Open Sans', sans-serif;
  font-size: 48px;
}
.box-destination-step h1 strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 200px;
}
.box-destination-step h2 {
  margin-top: 150px;
  font-size: 60px;
  padding: 0 0 30px 0;
  line-height: 52px;
  color: #ffffff;
}
.box-destination-step#contacts {
  padding: 0;
}
.box-destination-step#contacts h2 {
  margin-top: 100px;
  color: #000;
}
.box-destination-step .carousel-inner {
  height: 230px;
  color: #ffffff;
  font-size: 16px;
}
.box-destination-step .carousel-indicators {
  width: 100%;
  position: relative;
  margin: 20px 0 0 0;
  left: 0;
}
.box-destination-step .carousel-indicators li {
  margin: 0 5px;
}
.box-destination-step .carousel-control {
  opacity: 1;
}
.box-destination-step .carousel-control.right {
  margin: -40px -50px 0 0;
}
.box-destination-step .carousel-control.left {
  margin: -40px 0 0 -50px;
}
.box-destination-step .scroll_down {
  width: 100%;
  position: absolute;
  bottom: 20px;
}
.all-departure {
  padding: 62px 0;
  background-color: #ff9934;
}
.all-departure a.btn-lg {
  padding: 30px 10%;
  margin: 0;
  border: 1px solid #ffffff;
  font-size: 48px;
}
.all-departure a.btn-lg:hover {
  padding: 30px 10%;
  background: #ffffff;
  color: #ff9934;
}
.destination-nav {
  color: #ffffff;
  font-size: 13px;
  position: fixed;
  right: 50px;
  z-index: 10;
  top: 50%;
  margin: -300px 0 0 0;
}
.destination-nav .br_nav {
  display: none;
}
.destination-nav ul li {
  height: 110px;
  padding: 20px 10px 0 0;
  border-right: 1px solid #ffffff;
  float: none;
}
.destination-nav ul li a {
  padding: 0;
  color: #ffffff;
}
.destination-nav ul li a:hover {
  background-color: transparent;
  color: #ff9934;
}
.destination-nav ul li a:visited {
  color: #ffffff;
}
.destination-nav ul li a:focus {
  background-color: transparent;
}
.destination-nav ul li:last-child {
  height: 65px;
}
.destination-nav ul li.negative {
  border-right-color: #000;
}
.destination-nav ul li.negative a {
  color: #000;
}
.destination-nav .marker {
  height: 65px;
  position: absolute;
  top: 0;
  right: -1px;
  border-right: 3px solid #ffffff;
  -webkit-transition: 0.8s, margin, linear;
  -moz-transition: 0.8s, margin, linear;
  -ms-transition: 0.8s, margin, linear;
  -o-transition: 0.8s, margin, linear;
  transition: 0.8s, margin, linear;
}
.destination-nav .marker.negative_marker {
  border-right-color: #000;
}
/* LIST ALL DESTINATIONS */
.continent {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.continent:last-child {
  margin-bottom: 0;
}
.continent h2 {
  padding: 0;
  margin-bottom: 10px;
  font-size: 40px;
}
.continent .single_country {
  margin-bottom: 20px;
}
.continent .single_country h3 {
  margin-bottom: 15px;
  font-weight: 300;
}
.continent .single_country h3 a {
  font-weight: 500;
}
.continent .single_country li {
  margin-bottom: 5px;
  padding-left: 16px;
  list-style: disc;
  list-style-position: inside;
  text-indent: -16px;
}
.continent .single_country a {
  color: #000;
}
.continent .single_country a:hover {
  color: #ff9934;
}
/* TRAVELS */
/* list */
.list_travels {
  /*h2.destination {
		padding: 40px 0;
		font-size: 48px;
		font-weight: @medium;
	}
	.availability_marker {margin-top: 15px;}*/
}
.list_travels .alert_no_results {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 50px;
}
.list_travels hr {
  border-color: #f2f1f1;
}
body.tutti-i-viaggi .alert_no_results {
  margin-top: 60px;
}
.box-tips {
  margin-top: 50px;
}
.box-tips .fluid-bg {
  padding: 30px 0;
}
.box-tips h3 {
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 30px;
}
.box-tips .thumbnail {
  border-color: #acacac;
  font-family: 'Open Sans', sans-serif;
}
.box-tips .thumbnail .caption {
  padding: 11px 15px 30px;
}
.box-tips .thumbnail .caption a {
  display: block;
}
.box-tips .thumbnail h5 {
  padding-bottom: 15px;
  font-size: 22px;
  font-weight: 400;
}
.box-tips .thumbnail a.btn {
  width: 80%;
  margin: 30px auto 0;
  font-size: 14px;
}
/* search result page */
.more-results-btn {
  margin: 20px 0 40px;
}
/* single travel */
.travel {
  /* 1st tab */
  /* 2nd tab */
  /* 4th tab */
  /* 5th tab */
  /* 6th tab */
  /* aside */
}
.travel .container_nav_tabs {
  height: 40px;
  padding: 0;
}
.travel .container_nav_tabs.fixed {
  position: fixed;
  top: 50px;
  z-index: 50;
}
.travel .nav-tabs {
  border: 0;
  padding: 0;
}
.travel .nav-tabs li {
  padding: 0;
  margin: 0;
}
.travel .nav-tabs li a {
  height: 40px;
  padding: 0;
  margin: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #f0f0f0 #ffffff;
  border-radius: 0;
  color: #000;
  font-size: 14px;
  line-height: 40px;
}
.travel .nav-tabs li a:hover {
  border-top-color: #ff9934;
  background-color: #ffffff;
  border-bottom: 0;
}
.travel .nav-tabs li.active a,
.travel .nav-tabs li.active a:focus,
.travel .nav-tabs li.active a:hover {
  border-color: #ffffff;
  border-top-color: #ff9934;
}
.travel .destination {
  margin: 35px 0 20px;
  font-size: 20px;
}
.travel h3 {
  margin-top: 35px;
  font-size: 48px;
}
.travel .tab-content {
  margin-top: 35px;
}
.travel .tab-content blockquote {
  font-size: 14px;
  font-style: italic;
}
.travel .tab-content li {
  list-style: disc;
  margin: 0 20px;
}
.travel .sold-out-alert {
  margin: 20px;
  padding: 5px;
  background-color: #ff9934;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
}
.travel .container_icons_travel {
  margin: 45px 0;
}
.travel .container_icons_travel li {
  display: inline-block;
  margin: 0 16px;
  vertical-align: top;
}
.travel .container_icons_travel li img {
  height: 30px;
}
.travel .container_icons_travel span {
  margin-top: 10px;
  display: block;
  font-size: 11px;
}
.travel .row_two_images,
.travel .row_one_image {
  margin-bottom: 15px;
}
.travel .send_to_friend {
  cursor: pointer;
}
.travel .panel {
  margin-bottom: 30px;
  box-shadow: none;
}
.travel .panel a {
  color: #000;
}
.travel .panel .panel-heading {
  padding: 0;
  border-radius: 0;
}
.travel .panel .panel-heading .panel-title {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}
.travel .panel .panel-heading .number_day {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
}
.travel .panel .panel-heading .title_day {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
}
.travel .panel .panel-heading .transfer_icon {
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
}
.travel .panel .panel-body {
  padding: 5px 0 15px 0;
  line-height: 22px;
}
.travel .panel .hotel {
  margin-top: 15px;
  padding: 15px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  background: #f9f9f9;
}
.travel .panel .hotel .info-pernottamento {
  font-size: 12px;
  margin-bottom: 10px;
  color: #ff9934;
}
.travel .panel .hotel .name_hotel {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 20px;
}
.travel .panel .hotel .stars_hotel {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 5px 0 0;
}
.travel .panel .hotel .address_hotel {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}
.travel .panel.notes_trip .section {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 22px;
  /*p {margin-bottom: 0;}*/
}
.travel .panel.notes_trip .section .title_note {
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.travel .panel.notes_trip .section ul {
  margin-bottom: 15px;
}
.travel .notes_trip {
  padding: 15px;
  background: #f0f0f0;
  margin-bottom: 15px;
}
.travel .notes_trip .title_day {
  margin: 10px 0 15px;
  font-size: 24px;
  line-height: 24px;
}
.travel table.departures-table {
  width: 100%;
  margin-bottom: 30px;
  border: 0;
}
.travel table.departures-table tr {
  border-bottom: 1px solid #ddd;
}
.travel table.departures-table th,
.travel table.departures-table td {
  vertical-align: middle;
  padding: 5px 6px;
  margin-bottom: 10px;
}
.travel table.departures-table th .td-head,
.travel table.departures-table td .td-head {
  display: none;
}
.travel table.departures-table button {
  width: 100%;
}
.travel .reason {
  position: relative;
  margin-bottom: 45px;
}
.travel .reason .number_reason {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.travel .reason .title_reason {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}
.travel .reason p {
  margin-bottom: 0;
}
.travel .tab_infos h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 5px 0;
}
.travel .caption_image_gallery {
  height: 100%;
  width: calc(100% - 30px);
  position: absolute;
  top: 0;
  background-color: rgba(117, 117, 117, 0.9);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 16px;
  cursor: pointer;
  display: none;
}
.travel .caption_image_gallery span {
  width: 100%;
  display: block;
  position: absolute;
  padding: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.travel .image_gallery.img-left .caption_image_gallery,
.travel .image_gallery.img-right .caption_image_gallery {
  width: calc(100% - 22px);
}
.travel .tab_gallery a {
  margin-bottom: 15px;
}
.travel .image_gallery:hover .caption_image_gallery {
  display: block;
}
.travel .aside {
  margin: 35px -15px 0;
  padding: 20px;
  background-color: #ff9934;
  color: #ffffff;
}
.travel .aside .title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 13px;
}
.travel .aside .media {
  padding: 10px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.travel .aside .media h6,
.travel .aside .media .trip-minpartecipants {
  font-family: 'Oswald', sans-serif;
  color: #000;
  font-size: 17px;
  font-weight: 300;
}
.travel .aside .media h6 small,
.travel .aside .media .trip-minpartecipants small {
  display: block;
  margin-top: 10px;
  font-weight: 200;
}
.travel .aside label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.travel .aside select {
  border: 0;
  cursor: pointer;
}
.travel .aside .price {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
}
.travel .aside .price .value {
  display: block;
  font-size: 52px;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 30px;
}
.travel .aside button {
  margin: 0;
}
.travel .aside button:hover {
  border-color: #ffffff;
}
.travel .aside .info_quotation {
  margin: 30px 0 20px;
  font-size: 16px;
  font-weight: 500;
}
.travel .box-orange {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ff9934;
  color: #ffffff;
}
.travel .box-orange .info_quotation {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
.travel .box-orange button {
  margin: 0;
}
.travel .box-orange button:hover {
  border-color: #ffffff;
}
/* CORPORATE PAGE */
.box-about p {
  margin-bottom: 30px;
}
.box-about .title_image {
  font-size: 12px;
}
.box-about .green_box,
.box-about .orange_box {
  min-height: 380px;
  padding: 20px;
  margin: 90px 0;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
}
.box-about .green_box h3,
.box-about .orange_box h3 {
  margin: 0 0 45px;
  font-size: 30px;
  font-weight: 400;
}
.box-about .green_box {
  background-color: #33baaf;
}
.box-about .orange_box {
  background-color: #ff9934;
}
/* CONTACTS PAGE */
body.contatti .box.full_text-office,
body.test-contacts .box.full_text-office {
  margin-bottom: 30px;
}
body.contatti .staff_member,
body.test-contacts .staff_member {
  margin-bottom: 20px;
}
body.contatti .staff_member .member_thumbnail,
body.test-contacts .staff_member .member_thumbnail {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  background-color: #ff9934;
}
body.contatti .staff_member .member_thumbnail img,
body.test-contacts .staff_member .member_thumbnail img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
body.contatti .staff_member .member_thumbnail img:is([sizes="auto" i], [sizes^="auto," i]),
body.test-contacts .staff_member .member_thumbnail img:is([sizes="auto" i], [sizes^="auto," i]) {
  height: 100%;
}
body.contatti .staff_member .member_role,
body.test-contacts .staff_member .member_role {
  display: block;
  margin: 5px 0 10px;
}
.box-contacts .intro {
  margin-bottom: 50px;
}
.box-contacts h4 {
  margin-bottom: 15px;
  font-size: 24px;
}
.box-contacts h5 {
  margin-bottom: 12px;
  font-size: 18px;
}
.box-contacts .maps {
  height: 300px;
  width: 100%;
  background-color: pink;
  margin-bottom: 20px;
}
.box-contacts .info_office {
  line-height: 22px;
  margin-bottom: 50px;
}
.box-contacts .type_office {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
}
/* OFFERTS PAGE */
/* SINGLE OFFERT */
.offert-box {
  font-family: 'Oswald', sans-serif;
}
.offert-box .dates {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
}
.offert-box .price {
  font-size: 26px;
  font-weight: 300;
}
.offert-box .price p:first-child {
  font-size: 26px;
  display: inline;
}
.offert-box .price p {
  font-size: 18px;
  margin-top: 20px;
}
.offert-box img {
  margin: 15px 0;
}
.offert-box .explain_description {
  margin-bottom: 60px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}
.offert-box .explain_description ul {
  padding: 20px 0 20px 20px;
}
.offert-box .explain_description ul li {
  list-style: disc;
}
.offert-box .explain_description .aligncenter {
  text-align: center;
}
.offert-box button.btn-primary {
  margin: 10px 0 0;
  font-size: 40px;
}
.offert-box .title_main {
  font-size: 48px;
}
.offert-box .subtitle_main {
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
}
.offert-box .img_offert {
  margin: 70px 0 60px;
}
.offert-box .last_seats {
  color: #ff9934;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 30px;
}
.offert-box .binding {
  font-family: 'Oswald', sans-serif;
}
.offert-box .binding .title-binding {
  color: #ff9934;
  font-weight: 400;
  font-size: 30px;
}
.offert-box .binding .terms-binding {
  background-color: #ff9934;
  margin-top: -8px;
  padding: 40px 30px;
  color: #ffffff;
  font-size: 24px;
}
.offert-box .binding .terms-binding button {
  margin-top: 40px;
  font-size: 40px;
}
/* LIST DIARIES */
.list_diaries .last_travel .name_travel {
  font-size: 24px;
}
.list_diaries .last_travel .dates_travel {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.list_diaries .name_travel {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.list_diaries .image {
  margin: 15px 0 25px;
}
.list_diaries a.btn {
  margin-bottom: 50px;
}
/* DIARY PAGE */
/* GENERIC PAGE */
.caption {
  color: #ffffff;
  /*.caption-title {*/
  /*.caption-subtitle {*/
}
.caption .caption-claim {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
}
.caption .caption-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 60px;
}
.generic-page {
  /*h1 {
        font-size: 48px;
        font-family: @titleFont;
        margin-top: 70px;
        margin-bottom: 30px;
        font-weight: @strong;
        line-height: 1.1;
        color:@black;
    }*/
}
.generic-page .description {
  margin-bottom: 30px;
}
.generic-page .full_text {
  margin-bottom: 15px;
  font-weight: 400;
}
.generic-page .full_image {
  margin-bottom: 15px;
}
.generic-page .text-text {
  margin-bottom: 30px;
}
.generic-page .text-text h3 {
  margin-bottom: 15px;
}
.generic-page .text-text h4 {
  margin-bottom: 5px;
}
.generic-page .mission,
.generic-page .vision {
  background: #33baaf;
  padding: 20px;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
  min-height: 260px;
}
.generic-page .mission {
  background: #33baaf;
}
.generic-page .vision {
  background: #ff9934;
}
.generic-page .mission h4,
.generic-page .vision h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
/* 404 PAGE */
.error404 {
  /* header */
  /* main */
  /* search */
}
.error404 header {
  position: absolute;
}
.error404 header .logo img {
  margin-top: 30px;
}
.error404 .main {
  height: 100vh;
  background-image: url(img/bg_404.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.error404 .container_message {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
}
.error404 .number {
  font-weight: 200;
  font-size: 60px;
  line-height: 40px;
}
.error404 .message {
  font-weight: 600;
  font-size: 100px;
}
.error404 a.btn {
  border-color: #ffffff;
  padding: 15px 40px;
  background-color: transparent;
  color: #ffffff;
  font-size: 25px;
}
.error404 a.btn:hover {
  color: #ff9934;
  background-color: #ffffff;
}
.error404 .carousel_search {
  bottom: 65px;
}
/* FORMS */
.info_before_booking,
.info_before_request {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.info_before_booking img,
.info_before_request img {
  margin: 80px 0 50px;
}
.info_before_booking .claim_booking,
.info_before_request .claim_booking {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
}
.info_before_booking .nb_booking,
.info_before_request .nb_booking {
  font-size: 22px;
  margin-bottom: 50px;
}
.info_before_booking .span,
.info_before_request .span {
  margin-bottom: 30px;
}
.modal_forms .modal-content .btn {
  padding: 10px 40px;
  border-color: #ffffff;
}
.panel_privacy_consent,
.panel_insurances {
  margin-bottom: 0;
  margin-left: 30px;
  background-color: #ff9934;
  box-shadow: none;
}
.panel_privacy_consent .panel-heading,
.panel_insurances .panel-heading {
  padding: 0;
}
.panel_privacy_consent .panel-heading a,
.panel_insurances .panel-heading a {
  color: #ffffff;
  text-decoration: underline;
}
.panel_privacy_consent .panel-heading a:hover,
.panel_insurances .panel-heading a:hover {
  text-decoration: none;
}
.panel_privacy_consent .panel-body,
.panel_insurances .panel-body {
  margin-top: 10px;
  padding: 10px 20px 10px 10px;
  background-color: #ffffff;
  font-size: 13px;
  color: #8e8e8e;
}
.checkbox-error {
  border: 1px solid #FF3434;
}
.modal_forms form,
#booking,
#booking_offer,
#quotation_form,
#confirm_form,
#summary_form,
#catalog_form,
.wpcf7 {
  background-color: #ff9934;
  padding: 45px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  /*.subtitle {margin-bottom: 30px;}*/
  /*.checkbox-inline span {
		margin-left: 10px;
		display: block;
	}*/
}
.modal_forms form h1,
#booking h1,
#booking_offer h1,
#quotation_form h1,
#confirm_form h1,
#summary_form h1,
#catalog_form h1,
.wpcf7 h1,
.modal_forms form h2,
#booking h2,
#booking_offer h2,
#quotation_form h2,
#confirm_form h2,
#summary_form h2,
#catalog_form h2,
.wpcf7 h2,
.modal_forms form h3,
#booking h3,
#booking_offer h3,
#quotation_form h3,
#confirm_form h3,
#summary_form h3,
#catalog_form h3,
.wpcf7 h3 {
  font-weight: 400;
}
.modal_forms form h1,
#booking h1,
#booking_offer h1,
#quotation_form h1,
#confirm_form h1,
#summary_form h1,
#catalog_form h1,
.wpcf7 h1,
.modal_forms form h2,
#booking h2,
#booking_offer h2,
#quotation_form h2,
#confirm_form h2,
#summary_form h2,
#catalog_form h2,
.wpcf7 h2 {
  margin-bottom: 10px;
  padding: 0;
  font-size: 42px;
}
.modal_forms form h2 span,
#booking h2 span,
#booking_offer h2 span,
#quotation_form h2 span,
#confirm_form h2 span,
#summary_form h2 span,
#catalog_form h2 span,
.wpcf7 h2 span {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}
.modal_forms form h3,
#booking h3,
#booking_offer h3,
#quotation_form h3,
#confirm_form h3,
#summary_form h3,
#catalog_form h3,
.wpcf7 h3 {
  position: relative;
  margin: 30px 0;
  font-size: 30px;
}
.modal_forms form h3 span,
#booking h3 span,
#booking_offer h3 span,
#quotation_form h3 span,
#confirm_form h3 span,
#summary_form h3 span,
#catalog_form h3 span,
.wpcf7 h3 span {
  position: relative;
  z-index: 10;
  padding: 0 26px;
  background-color: #ff9934;
}
.modal_forms form h3:before,
#booking h3:before,
#booking_offer h3:before,
#quotation_form h3:before,
#confirm_form h3:before,
#summary_form h3:before,
#catalog_form h3:before,
.wpcf7 h3:before,
.modal_forms form h3:after,
#booking h3:after,
#booking_offer h3:after,
#quotation_form h3:after,
#confirm_form h3:after,
#summary_form h3:after,
#catalog_form h3:after,
.wpcf7 h3:after {
  content: "";
  width: 50%;
  position: absolute;
  top: 16px;
  border-bottom: 1px solid #ffffff;
}
.modal_forms form h3:before,
#booking h3:before,
#booking_offer h3:before,
#quotation_form h3:before,
#confirm_form h3:before,
#summary_form h3:before,
#catalog_form h3:before,
.wpcf7 h3:before {
  left: 15px;
}
.modal_forms form h3:after,
#booking h3:after,
#booking_offer h3:after,
#quotation_form h3:after,
#confirm_form h3:after,
#summary_form h3:after,
#catalog_form h3:after,
.wpcf7 h3:after {
  right: 15px;
}
.modal_forms form label,
#booking label,
#booking_offer label,
#quotation_form label,
#confirm_form label,
#summary_form label,
#catalog_form label,
.wpcf7 label {
  font-weight: 300;
}
.modal_forms form .small_font,
#booking .small_font,
#booking_offer .small_font,
#quotation_form .small_font,
#confirm_form .small_font,
#summary_form .small_font,
#catalog_form .small_font,
.wpcf7 .small_font {
  font-size: 12px;
  margin-bottom: 50px;
}
.modal_forms form .start_hidden,
#booking .start_hidden,
#booking_offer .start_hidden,
#quotation_form .start_hidden,
#confirm_form .start_hidden,
#summary_form .start_hidden,
#catalog_form .start_hidden,
.wpcf7 .start_hidden {
  display: none;
}
.modal_forms form .form-control,
#booking .form-control,
#booking_offer .form-control,
#quotation_form .form-control,
#confirm_form .form-control,
#summary_form .form-control,
#catalog_form .form-control,
.wpcf7 .form-control {
  width: 100%;
  border-color: #ffffff;
}
.modal_forms form .form-control.error,
#booking .form-control.error,
#booking_offer .form-control.error,
#quotation_form .form-control.error,
#confirm_form .form-control.error,
#summary_form .form-control.error,
#catalog_form .form-control.error,
.wpcf7 .form-control.error {
  border-color: #FF3434;
  background-color: #ff7777;
}
.modal_forms form .btn-secondary,
#booking .btn-secondary,
#booking_offer .btn-secondary,
#quotation_form .btn-secondary,
#confirm_form .btn-secondary,
#summary_form .btn-secondary,
#catalog_form .btn-secondary,
.wpcf7 .btn-secondary {
  border-color: #ffffff;
}
.modal_forms form .checkbox-inline,
#booking .checkbox-inline,
#booking_offer .checkbox-inline,
#quotation_form .checkbox-inline,
#confirm_form .checkbox-inline,
#summary_form .checkbox-inline,
#catalog_form .checkbox-inline,
.wpcf7 .checkbox-inline,
.modal_forms form .radio-inline,
#booking .radio-inline,
#booking_offer .radio-inline,
#quotation_form .radio-inline,
#confirm_form .radio-inline,
#summary_form .radio-inline,
#catalog_form .radio-inline,
.wpcf7 .radio-inline {
  line-height: 39px;
  padding-left: 25px;
}
.modal_forms form .checkbox-inline input,
#booking .checkbox-inline input,
#booking_offer .checkbox-inline input,
#quotation_form .checkbox-inline input,
#confirm_form .checkbox-inline input,
#summary_form .checkbox-inline input,
#catalog_form .checkbox-inline input,
.wpcf7 .checkbox-inline input,
.modal_forms form .radio-inline input,
#booking .radio-inline input,
#booking_offer .radio-inline input,
#quotation_form .radio-inline input,
#confirm_form .radio-inline input,
#summary_form .radio-inline input,
#catalog_form .radio-inline input,
.wpcf7 .radio-inline input {
  height: 15px;
  width: 15px;
  margin-top: 10px;
  margin-left: -25px;
}
.modal_forms form .btn_report_privacy,
#booking .btn_report_privacy,
#booking_offer .btn_report_privacy,
#quotation_form .btn_report_privacy,
#confirm_form .btn_report_privacy,
#summary_form .btn_report_privacy,
#catalog_form .btn_report_privacy,
.wpcf7 .btn_report_privacy {
  padding: 0;
  margin: 10px 0 0 30px;
  display: block;
  font-size: 14px;
  text-decoration: underline;
}
.modal_forms form .btn_report_privacy:hover,
#booking .btn_report_privacy:hover,
#booking_offer .btn_report_privacy:hover,
#quotation_form .btn_report_privacy:hover,
#confirm_form .btn_report_privacy:hover,
#summary_form .btn_report_privacy:hover,
#catalog_form .btn_report_privacy:hover,
.wpcf7 .btn_report_privacy:hover {
  color: #ffffff;
  text-decoration: none;
}
.modal_forms form tr,
#booking tr,
#booking_offer tr,
#quotation_form tr,
#confirm_form tr,
#summary_form tr,
#catalog_form tr,
.wpcf7 tr {
  border-bottom: 1px solid #ffffff;
}
.modal_forms form tr td,
#booking tr td,
#booking_offer tr td,
#quotation_form tr td,
#confirm_form tr td,
#summary_form tr td,
#catalog_form tr td,
.wpcf7 tr td {
  padding: 5px 0;
}
.modal_forms form tr.total_price,
#booking tr.total_price,
#booking_offer tr.total_price,
#quotation_form tr.total_price,
#confirm_form tr.total_price,
#summary_form tr.total_price,
#catalog_form tr.total_price,
.wpcf7 tr.total_price {
  border: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 30px;
}
.modal_forms form tr.total_price td,
#booking tr.total_price td,
#booking_offer tr.total_price td,
#quotation_form tr.total_price td,
#confirm_form tr.total_price td,
#summary_form tr.total_price td,
#catalog_form tr.total_price td,
.wpcf7 tr.total_price td {
  padding-top: 15px;
}
.modal_forms form label.error,
#booking label.error,
#booking_offer label.error,
#quotation_form label.error,
#confirm_form label.error,
#summary_form label.error,
#catalog_form label.error,
.wpcf7 label.error {
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
}
.modal_forms form input[disabled],
#booking input[disabled],
#booking_offer input[disabled],
#quotation_form input[disabled],
#confirm_form input[disabled],
#summary_form input[disabled],
#catalog_form input[disabled],
.wpcf7 input[disabled] {
  width: calc(100% - 150px);
  background-color: #ff9934;
  color: #ffffff;
  font-weight: 500;
  border: 0;
}
.modal_forms form textarea,
#booking textarea,
#booking_offer textarea,
#quotation_form textarea,
#confirm_form textarea,
#summary_form textarea,
#catalog_form textarea,
.wpcf7 textarea {
  width: 100%;
  color: #555;
}
#booking,
#booking_offer,
#quotation_form,
#summary_form {
  margin-bottom: 50px;
}
#booking,
#booking_offer {
  /*.checkbox,*/
  /*tr {
		border-bottom: 1px solid @white;
		td {padding: 5px 0;}
		&.total_price {
			border: 0;
			font-family: @titleFont;
			font-weight: @medium;
			font-size: 30px;
			td {padding-top: 15px;}
		}
	}*/
}
#booking .radio-inline.label-inline-block,
#booking_offer .radio-inline.label-inline-block {
  width: auto;
  display: inline-block;
}
#booking .form-control#roommate_gender,
#booking_offer .form-control#roommate_gender {
  width: 150px;
  display: inline-block;
}
#booking .radio-inline,
#booking_offer .radio-inline {
  height: 39px;
  display: block;
  margin: 0;
  line-height: 39px;
}
#booking .other_participant,
#booking_offer .other_participant {
  clear: both;
}
#booking .other_participant_info label,
#booking_offer .other_participant_info label {
  display: block;
}
#booking .remove_participant,
#booking_offer .remove_participant {
  margin-top: 27px;
  border-color: #FF3434;
  color: #FF3434;
}
#booking #add_participant,
#booking_offer #add_participant {
  margin-top: 15px;
}
#booking #add_participant span,
#booking_offer #add_participant span {
  font-size: 14px;
}
#booking hr,
#booking_offer hr {
  border-color: rgba(255, 255, 255, 0.5);
  margin: 15px 0;
}
#booking .advance,
#booking_offer .advance {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 26px;
}
#booking .value_advance,
#booking_offer .value_advance {
  font-weight: 600;
  font-size: 48px;
}
#booking .credit_cards li,
#booking_offer .credit_cards li {
  display: inline-block;
  margin-left: 5px;
}
#booking button[type="submit"],
#booking_offer button[type="submit"] {
  margin: 0 0 45px;
  padding: 22px 42px;
  font-size: 40px;
}
#booking button[type="submit"]:hover,
#booking_offer button[type="submit"]:hover {
  border: 1px solid #ffffff;
}
#booking_offer .alert_max_participants,
#booking_offer #quotation_booking {
  display: none;
}
#booking_offer .form-offer {
  font-size: 30px;
  font-family: 'Oswald', sans-serif;
  border-bottom: 1px dotted #ffffff;
  padding-bottom: 15px;
}
#booking_offer .form-offer input {
  width: 12px;
  height: 21px;
  float: left;
  margin-right: 10px;
  margin-top: 10px;
}
#booking_offer .form-offer p {
  margin: 0;
  display: inline;
  float: left;
}
#booking_offer .form-offer strong {
  float: right;
}
#subscribe .checkbox-inline {
  line-height: normal;
}
.wpcf7 {
  margin-top: 40px;
}
.wpcf7 #fc_document_group {
  margin-top: 15px;
}
.wpcf7 .wpcf7-field-group-remove,
.wpcf7 .wpcf7-field-group-add {
  margin-top: 25px;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #ff9934;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  line-height: 0.7;
}
.wpcf7 .wpcf7-field-group-remove:hover,
.wpcf7 .wpcf7-field-group-add:hover {
  background-color: #ff9934;
  color: #ffffff;
}
.wpcf7 input[type="submit"] {
  margin: 45px 0;
  padding: 22px 42px;
  font-size: 40px;
  font-family: 'Open Sans', sans-serif;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #ff9934;
  border-radius: 0;
}
.wpcf7 input[type="submit"]:hover {
  background-color: #ff9934;
  color: #ffffff;
}
.wpcf7 input[type="submit"]:disabled {
  width: auto;
}
/* SUMMARY PAGE */
#summary_form {
  /* table {
        tr {
            border-bottom: 1px solid @white;
            &.total_price {
                border-bottom: none;
                font-size: 30px;
                font-family: @titleFont;
                font-weight: @bold;
            }
        }
    }*/
}
#summary_form .summary_title {
  padding-bottom: 30px;
  font-size: 24px;
}
#summary_form .summary_title span {
  font-size: 36px;
  font-weight: 500;
  display: block;
}
#summary_form .iCheck-helper:hover {
  cursor: default;
}
#summary_form table {
  width: 100%;
}
#summary_form .summary-group-box table {
  border-collapse: separate;
  border-spacing: 0 15px;
}
#summary_form .summary-group-box tr {
  background: #ffffff;
  /*padding: 5px;*/
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  color: #000;
  /*table td.name {
					width:23%;
					padding-right: 2%;
				}
				&.code {
					width:18%;
					padding-right: 2%;
				}
				&.supplements {
					width:15%;
					font-size: 12px;
					padding-right: 2%;
					input {
						display: inline;
						height: auto;
						margin-right: 12px;
					}
				}
				&.adult {
					width:19%;
				}
			}*/
}
#summary_form .summary-group-box tr .supplements input {
  cursor: default;
}
#summary_form .summary-group-box tr .name,
#summary_form .summary-group-box tr .code,
#summary_form .summary-group-box tr .supplements,
#summary_form .summary-group-box tr .age {
  padding: 5px;
}
#summary_form .summary-price-box {
  background: #ffffff;
  font-family: 'Oswald', sans-serif;
  color: #000;
  font-size: 30px;
  font-weight: 600;
  padding: 30px;
  line-height: 50px;
  margin-bottom: 30px;
}
#summary_form .summary-price-box strong {
  display: block;
  font-size: 60px;
}
#summary_form ul.credit_cards {
  min-height: 30px;
  display: flex;
  /*margin-left: 27px;*/
  /*margin-top: 10px;*/
}
#summary_form ul.credit_cards li {
  display: inline-block;
  float: left;
}
#summary_form .summary-payment-bank-data {
  margin-left: 27px;
  font-size: 14px;
}
#summary_form .summary-payment-bank-data strong {
  font-weight: 600;
  display: block;
}
#summary_form .summary-payment-bank-data .payment_data {
  margin-bottom: 10px;
  /* margin-top: 15px;*/
}
#summary_form .summary-payment-bank-data .payment_code strong {
  display: inline;
}
/*.small_font {
    margin: 0 8.33333333% 50px;
    font-size: 12px;
}*/
/*.summary-payment-box {
    margin-left:8.33333333%;
    .summary-payment-paypal {
        margin-bottom: 20px;
    }
    input {
        display:inline;
        margin-right: 10px;
    }
    
    
}*/
/* THANKS PAGE */
.info_thanks {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.info_thanks img {
  margin: 80px 0 50px;
}
.info_thanks .claim_thanks {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
}
.info_thanks .claim_thanks span {
  display: block;
  font-size: 90px;
  font-weight: 600;
}
.info_thanks .claim_thanks img {
  display: block;
  margin: 0 auto;
  width: 150px;
}
.info_thanks .claim_thanks strong {
  display: block;
  font-size: 90px;
  font-weight: 600;
}
.info_thanks .nb_thanks {
  font-size: 22px;
  margin-bottom: 50px;
  text-align: left;
}
.info_thanks .span {
  margin-bottom: 30px;
  text-align: left;
}
/* MAIL PAGE */
body.pagamento {
  background: #ff9934;
}
.mail_page {
  background: #ff9934;
  padding: 50px 0;
}
.mail_page .main {
  width: 600px;
  margin: 0 auto;
}
.mail_page .main .container {
  width: 100%;
  background: #ffffff;
  padding: 40px;
}
.mail_page .main .container_orange {
  background: #ff9934;
  color: #ffffff;
  padding: 0;
}
.mail_page .main .container_orange .social {
  border-bottom: 1px solid #ffffff;
  font-family: 'Oswald', sans-serif;
  padding: 12px 0;
  font-weight: 400;
  font-size: 16px;
}
.mail_page .main .container_orange .social img {
  width: 25px;
  margin: 0 10px;
}
.mail_page .main .container_orange .unsubscribe_text {
  padding: 10px 0 20px;
  font-size: 12px;
}
.mail_page .main .container_orange .unsubscribe_text a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 400;
}
.mail_page .main .container_orange .footer {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
}
.mail_page img {
  width: 200px;
  margin-bottom: 50px;
}
.mail_page .mail_text {
  text-align: left;
}
.box-news {
  margin: 0 0 50px 0;
  text-align: center;
}
.box-news h3 {
  text-align: left;
}
.box-news h3 a:hover {
  color: #ff9934;
}
.box-news .date {
  margin: 5px 0 10px 0;
  text-align: left;
  color: #999999;
}
.box-news p {
  text-align: left;
  margin: 0 0 20px 0;
}
.box-news img {
  margin: 0 0 10px 0;
}
.single-news .date {
  margin: 5px 0 10px 0;
  text-align: left;
  color: #999999;
}
.single-news img {
  margin: 0 0 10px 0;
}
body.news .box-contact {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: 80px;
}
/* MODALE */
.modal-dialog .text-modal a.btn-lg {
  margin: 0 0 20px 0;
}
/* BLOG */
body.blog #blog-results {
  padding: 0;
}
body.blog #blog-results li {
  margin-bottom: 30px;
}
body.blog .article-excerpt p:last-child {
  margin-bottom: 0;
}
.single-post .single-news img {
  margin-bottom: 30px;
}
.single-post .description {
  font-size: 18px;
}
.single-post .gallery_img {
  display: block;
  margin: 15px 0;
  cursor: pointer;
}
#c-modal__gallery #c-carousel__gallery .item img {
  width: auto;
  margin: 0 auto;
}
#c-modal__gallery #c-carousel__gallery .carousel-control.right img,
#c-modal__gallery #c-carousel__gallery .carousel-control.left img {
  margin-top: 0;
  transform: translateY(-50%);
}
/* NEWSLETTER */
body.newsletter .single-newsletter {
  height: 375px;
  overflow-y: hidden;
  margin-bottom: 30px;
}
body.newsletter .single-newsletter a {
  display: block;
}
body.newsletter .single-newsletter-title {
  margin-bottom: 15px;
}
.single-post .c-back__link,
.single-newsletter .c-back__link {
  display: block;
  margin-top: 30px;
  color: #ff9934;
  text-decoration: underline;
}
/* PARTENZE GARANTITE */
body.page-template-page-guaranteed-departures .thumbnail .description,
body.page-template-page-guaranteed-geotarget-list .thumbnail .description {
  margin: 15px 0 30px;
}
/**************/
/* RESPONSIVE */
/**************/
@media screen and (min-width: 768px) {
  /* MEDIA */
  .media .media-body.col-xs-12 {
    float: none;
    position: static;
  }
  /* HOMEPAGE */
  .home {
    /* section - scegli il tuo viaggio */
  }
  .home .box-choose-trip .nav-pills {
    display: block;
  }
  .home .box-choose-trip .controls-carousel,
  .home .box-choose-trip .nav-pill-carousel,
  .home .box-choose-trip .tab-content .nav-pill-carousel {
    display: none;
  }
  /* TRAVELS */
  /* single travel */
  .image_gallery.img-left {
    padding-right: 7px;
  }
  .image_gallery.img-right {
    padding-left: 7px;
  }
  /* list travels */
  .box-tips .description {
    min-height: 140px;
  }
  /* NEWS */
  .box-news h3 {
    height: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    width: 1000px;
  }
  /* footer */
  footer .creator {
    text-align: right;
  }
  /* tables */
  .departures-table table td .td-date,
  .offers-table table td .td-date,
  .departures-table table td .td-cost,
  .offers-table table td .td-cost {
    width: 12%;
  }
  .departures-table table td .td-duration,
  .offers-table table td .td-duration {
    width: 12%;
    text-align: center;
  }
  .departures-table table td .td-duration br,
  .offers-table table td .td-duration br {
    display: block;
  }
  .departures-table table td .td-duration span,
  .offers-table table td .td-duration span {
    display: none;
  }
  .departures-table table td .td-destination,
  .offers-table table td .td-destination {
    width: 33%;
  }
  .departures-table table td .td-info-seats,
  .offers-table table td .td-info-seats,
  .departures-table table td .td-type-offer,
  .offers-table table td .td-type-offer {
    width: 17%;
  }
  .departures-table table td .td-button,
  .offers-table table td .td-button {
    width: 14%;
  }
  /* HOMEPAGE */
  .home {
    /* main header */
    /* second header */
  }
  .home .main_header {
    margin-top: -51px;
    -webkit-transition: 0.5s, margin, linear;
    -moz-transition: 0.5s, margin, linear;
    -ms-transition: 0.5s, margin, linear;
    -o-transition: 0.5s, margin, linear;
    transition: 0.5s, margin, linear;
  }
  .home .second_header {
    height: auto;
    position: absolute;
  }
  .home .second_header .header-top {
    height: 50px;
    border-bottom: 1px solid #ffffff;
    background-color: rgba(51, 51, 51, 0.2);
  }
  .home .second_header .header-top .social {
    display: inline-block;
    padding: 0 12px;
  }
  .home .second_header .header-bottom {
    height: 179px;
  }
  .home .second_header .header-bottom img {
    margin: 27px 0 10px;
  }
  .home .second_header .header-bottom .navbar-nav {
    float: none;
    display: inline-block;
  }
  .home .second_header .header-bottom .nav > li {
    padding: 0;
    margin: 0 12px;
  }
  .home .second_header .header-bottom .nav > li.active a,
  .home .second_header .header-bottom .nav > li:hover a {
    color: #ff9934;
  }
  /* FORMS */
  .modal_forms .modal-dialog {
    width: 960px;
  }
  #booking .small_font,
  #booking_offer .small_font,
  #quotation_form .small_font,
  #confirm_form .small_font,
  #summary_form .small_font {
    padding: 0;
  }
  #summary_form .summary-group-box .name {
    width: 22%;
  }
  #summary_form .summary-group-box .code {
    width: 18%;
  }
  #summary_form .summary-group-box .supplements {
    width: 15%;
  }
  #summary_form .summary-group-box .age {
    width: 15%;
    text-align: right;
  }
  /* list travels */
  .box-tips .description {
    min-height: 100px;
  }
}
@media screen and (max-width: 1200px) {
  /* DESTINATION PAGE */
  .box-destination-step h1 strong {
    font-size: 150px;
  }
}
@media screen and (max-width: 1180px) {
  /* HOMEPAGE */
  /* slider homepage && why carousel */
  #carousel_homepage .carousel-caption,
  #quote-carousel .carousel-caption {
    padding-left: 55px;
    padding-right: 55px;
  }
  #carousel_homepage .carousel-control.right,
  #quote-carousel .carousel-control.right {
    right: 15px;
    margin-right: 0;
  }
  #carousel_homepage .carousel-control.left,
  #quote-carousel .carousel-control.left {
    left: 15px;
    margin-left: 0;
  }
  /* LANDING PAGE */
  /*.box-destination-step {
		h2 {margin-top: 120px;}
		.scroll_down {bottom: 35px;}
	}*/
}
/* tablet landscape */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  /* GENERAL */
  header .nav > li.nav-social,
  .social-icn {
    display: none;
  }
  /* DESTINATION PAGE */
  .box-destination-step h2,
  .box-destination-step #contacts h2 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  /* TRAVELS */
  /* single travel */
  .travel {
    /* 6th tab */
  }
  .travel .caption_image_gallery {
    height: auto;
    width: 100%;
    position: relative;
    top: 0;
    background-color: transparent;
    cursor: auto;
    display: block;
  }
  .travel .caption_image_gallery span {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    color: #000;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    width: 100%;
  }
  /* GENERAL */
  /* font */
  h2 {
    font-size: 66px;
  }
  /* HEADER */
  header .navbar-header {
    width: 100%;
  }
  header .navbar-toggle {
    display: block;
    margin-left: auto;
  }
  header .navbar-collapse.collapse {
    display: none!important;
  }
  header .navbar-collapse.collapse.in {
    display: block !important;
  }
  header .navbar-nav {
    float: none!important;
  }
  header .navbar-nav > li {
    float: none;
    color: #ff9934;
  }
  header .navbar-nav > li a {
    color: #ff9934;
  }
  header #menu {
    margin-top: 50px;
    background-color: #ffffff;
  }
  header .nav > li.nav-search .nav_form {
    position: relative;
    border-bottom: 0;
    top: 0;
  }
  /* MEDIA */
  .media .media-body {
    width: 100%;
  }
  /* INFO SEATS */
  td .availability_marker.available .available_text + .seats_text,
  td .availability_marker.confirmed.last5 .seats_text {
    display: inline-block;
    text-indent: 0;
  }
  /* MODAL */
  #modalPrivacyPolicy .modal-dialog,
  .modal_forms .modal-dialog {
    width: 100%;
    margin: 0;
  }
  /* departures table */
  .departures-table table td .td-duration br {
    display: none;
  }
  .departures-table table td .td-duration span {
    display: inline-block;
  }
  .departures-table table td .td-button {
    text-align: right;
  }
  .departures-table table td .td-button a {
    width: auto;
  }
  /* HOMEPAGE */
  /* slider */
  #carousel_homepage .carousel-caption {
    top: 100px;
  }
  .home {
    /* main header */
    /* second header */
    /* section - prossime partenze */
    /* section - fvg mosaic */
    /* section - focus */
    /* section - perchè IOT */
    /* section - opportunità */
  }
  .home header .main_header {
    margin-top: 0;
  }
  .home .second_header {
    display: none;
  }
  .home .box-upcoming-departures .claim {
    padding: 60px 0;
    font-size: 30px;
  }
  .home .box-mosaic-fvg .claim {
    padding: 60px 0;
    font-size: 30px;
  }
  .home .box-focus .claim {
    font-size: 18px;
    margin-top: 30px;
  }
  .home .box-focus .thumbnail {
    margin-top: 30px;
  }
  .home .box-why-iot .carousel-inner .item blockquote {
    bottom: 10px;
    padding: 0;
  }
  .home .fluid-bg .thumbnail .caption h3 {
    height: 100px;
    margin-bottom: 0;
  }
  .box-newsletter .single-newsletter:nth-child(3) {
    display: none;
  }
  /* DESTINATION PAGE */
  .box-destination-step h1 {
    font-size: 42px;
  }
  .box-destination-step h1 strong {
    font-size: 110px;
  }
  .box-destination-step .carousel-inner {
    height: 315px;
    color: #ffffff;
  }
  .destination-nav {
    right: 20px;
  }
  .destination-nav .br_nav {
    display: block;
  }
  /* TRAVELS */
  /* list */
  /*.box-search {
		.fluid-bg {padding: 20px 0;}
		.btn {width: 100%;}
	}*/
  /* single */
  .travel {
    /*.destination {
			margin: 35px 0 20px;
			font-size: 20px;
		}
		h3 {font-size: 48px;}*/
    /* 1st tab */
    /* 2nd tab */
    /* 4th tab */
    /* 5th tab */
    /* aside */
  }
  .travel .col-md-8.no_padding_left {
    padding-left: 15px;
  }
  .travel #title_tab_active {
    height: 40px;
    border-top: 1px solid #ff9934;
    background-color: #ffffff;
    color: #000;
    font-size: 14px;
    line-height: 40px;
  }
  .travel .container_icons_travel ul {
    text-align: left;
  }
  .travel .container_icons_travel ul li {
    margin-bottom: 10px;
  }
  .travel .panel {
    margin-bottom: 26px;
    box-shadow: none;
  }
  .travel .panel .panel-heading {
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 0;
  }
  .travel .panel .panel-heading .panel-title {
    position: relative;
  }
  .travel .panel .panel-heading .number_day {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
  }
  .travel .panel .panel-heading .title_day {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
  }
  .travel .panel .panel-heading .transfer_icon {
    height: 40px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -20px;
  }
  .travel .panel .panel-body {
    padding: 15px 0 15px 15px;
  }
  .travel .panel .hotel {
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
  }
  .travel .panel .hotel .name_hotel {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 24px;
  }
  .travel .panel .hotel .stars_hotel {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
  }
  .travel .panel .hotel .address_hotel {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .travel .panel.notes_trip .section {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .travel .panel.notes_trip .section .title_note {
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
  }
  .travel .panel.notes_trip .section p {
    margin-bottom: 0;
  }
  .travel .panel.notes_trip .section li:before {
    content: "- ";
  }
  .travel table thead {
    display: none;
  }
  .travel table td[class*=col-],
  .travel table th[class*=col-] {
    display: inline-block;
  }
  .travel table > tbody > tr > td {
    vertical-align: middle;
  }
  .travel table > tbody > tr > td .td-head {
    display: inline-block !important;
  }
  .travel table > tbody > tr > td a {
    width: 100%;
    color: #ffffff;
  }
  .travel .reason {
    position: relative;
    margin-bottom: 45px;
  }
  .travel .reason .number_reason {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .travel .reason .title_reason {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .travel .reason p {
    margin-bottom: 0;
  }
  .travel .tab_infos h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
  }
  .travel .aside {
    margin: 0 0 30px;
  }
  .travel .aside.affix {
    width: 100%;
    position: relative;
    bottom: auto !important;
    top: auto !important;
  }
  .travel .aside .title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 13px;
  }
  .travel .aside label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
  }
  .travel .aside select {
    border: 0;
    cursor: pointer;
  }
  .travel .aside .price {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
  }
  .travel .aside .price .value {
    display: block;
    font-size: 52px;
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 30px;
  }
  .travel .aside button {
    margin: 0;
  }
  .travel .aside button:hover {
    border-color: #ffffff;
  }
  .travel .aside .info_quotation {
    margin: 30px 0;
    font-size: 12px;
  }
  /* FORMS */
  .contaienr_form {
    padding: 0;
  }
  .modal_forms form,
  #booking,
  #booking_offer {
    margin-bottom: 0;
  }
  #summary_form .summary-group-box .name,
  #summary_form .summary-group-box .code,
  #summary_form .summary-group-box .supplements,
  #summary_form .summary-group-box .age {
    margin-bottom: 15px;
  }
  /* ERROR 404 PAGE */
  .error404 {
    /* header */
    /* main */
  }
  .error404 header .logo img {
    width: 210px;
  }
  .error404 .number {
    font-size: 50px;
    line-height: 30px;
  }
  .error404 .message {
    font-size: 80px;
  }
  .error404 a.btn {
    font-size: 22px;
  }
  .error404 .carousel_search {
    bottom: 30px;
  }
}
/* smartphone landscape */
@media screen and (max-width: 768px) and (orientation: landscape) {
  header,
  .main,
  footer,
  #carousel_homepage {
    display: none;
  }
  .alert_landscape {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  /* GENERAL */
  /* font */
  h2 {
    font-size: 50px;
  }
  /* buttons and a[role=button] */
  a.btn-lg,
  button.btn-lg {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  /* serach button */
  .box-search .btn {
    width: 100%;
  }
  /* media */
  /*.media .media-body {width: 100%;}*/
  /* header */
  header #menu {
    margin: 0 -15px;
    background-color: #ffffff;
  }
  header .nav > li {
    padding: 0;
    color: #ff9934;
  }
  header .nav > li a {
    color: #ff9934;
  }
  header .nav > li.nav-search .nav_form {
    position: relative;
    top: 0;
    margin-top: 10px;
    border: 0;
  }
  /* footer */
  footer {
    text-align: center;
  }
  footer .logos a {
    max-width: 100%;
    display: block;
  }
  footer .logos a:nth-child(odd) {
    padding-right: 0;
  }
  footer .logos a:nth-child(even) {
    padding-left: 0;
  }
  /* contatti */
  .box-contact .explain_buttons {
    margin-top: 0;
    font-size: 16px;
  }
  .box-contact .infos_button .btn-lg {
    padding: 20px 0;
  }
  /* full image */
  .page-main-image .fluid-img .caption {
    bottom: 10px;
  }
  .page-main-image .fluid-img .caption h2 {
    display: none;
  }
  /* modal */
  .modal .modal-content {
    padding: 10px;
  }
  /* MEDIA */
  .media .media-body {
    margin-top: 15px;
  }
  /* tables */
  .departures-table table td,
  .td-info-seats table td {
    font-size: 14px;
  }
  .departures-table table td .td-date,
  .td-info-seats table td .td-date,
  .departures-table table td .td-type-offer,
  .td-info-seats table td .td-type-offer,
  .departures-table table td .td-destination,
  .td-info-seats table td .td-destination,
  .departures-table table td .td-duration,
  .td-info-seats table td .td-duration,
  .departures-table table td .td-cost,
  .td-info-seats table td .td-cost,
  .departures-table table td .td-info-seats,
  .td-info-seats table td .td-info-seats {
    padding: 6px 0 0;
  }
  .departures-table table td .td-button,
  .td-info-seats table td .td-button {
    padding-left: 0;
    padding-right: 0;
  }
  /* search */
  .carousel_search .search-bottom label {
    padding-top: 0;
  }
  .carousel_search .search-bottom button.btn-default {
    margin-top: 0;
  }
  /* HOMEPAGE */
  /* slider */
  #carousel_homepage .carousel-caption h2 {
    font-size: 36px;
  }
  #carousel_homepage .carousel-caption .description-slider {
    font-size: 15px;
  }
  #carousel_homepage .scroll_down {
    display: none;
  }
  #carousel_homepage .carousel_search {
    padding-top: 20px;
    position: relative;
    color: #000;
  }
  #carousel_homepage .carousel_search hr {
    border-color: #000;
  }
  .home {
    /* section - scegli il tuo viaggio */
    /* section - prossime partenze */
    /* section - fvg mosaic */
    /* section - focus */
    /* section - why */
    /* section - opportunità */
  }
  .home .main {
    margin-top: 290px;
  }
  .home .box-choose-trip .nav-pills {
    display: none;
  }
  .home .box-choose-trip .controls-carousel,
  .home .box-choose-trip .nav-pill-carousel {
    display: block;
  }
  .home .box-choose-trip .tab-content {
    padding: 40px 30px;
    margin-top: 40px;
  }
  .home .box-choose-trip .tab-content .nav-pill-carousel {
    height: 40px;
    width: 100%;
    margin: -80px 0 40px;
    display: block;
  }
  .home .box-choose-trip .tab-content .nav-pill-carousel span {
    display: block;
    margin: 0 auto;
    padding: 10px 15px;
    background-color: #f2f1f1;
  }
  .home .box-choose-trip .media .media-left {
    padding: 0;
  }
  .home .box-choose-trip .media .media-body {
    padding: 20px 0 0;
  }
  .home .box-choose-trip .media a.btn {
    margin-top: 10px;
  }
  .home .box-choose-trip .left {
    margin-left: 15px;
  }
  .home .box-choose-trip .right {
    margin-right: 15px;
  }
  .home .box-choose-trip .left,
  .home .box-choose-trip .right {
    height: 40px;
    width: 40px;
    opacity: 1;
  }
  .home .box-choose-trip .left img,
  .home .box-choose-trip .right img {
    height: 40px;
    top: 0;
    margin-top: 0;
  }
  .home .box-upcoming-departures .claim {
    padding: 40px 0;
    font-size: 18px;
    line-height: 29px;
  }
  .home .box-mosaic-fvg .claim {
    padding: 40px 0;
    font-size: 18px;
    line-height: 29px;
  }
  .home .box-focus {
    display: none;
  }
  .home .box-why-iot {
    display: none;
  }
  .home .fluid-bg .thumbnail {
    margin-bottom: 15px;
  }
  .home .fluid-bg .thumbnail .caption h3 {
    height: auto;
    margin-bottom: 30px;
  }
  .home .fluid-bg .thumbnail .caption .content {
    height: auto;
  }
  .box-newsletter .single-newsletter:nth-child(2) {
    display: none;
  }
  /* DESTINATION PAGE */
  .box-destination-step .container_img {
    height: 35%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .box-destination-step h1 {
    font-size: 38px;
  }
  .box-destination-step h1 strong {
    font-size: 60px;
  }
  .box-destination-step h2 {
    position: absolute;
    bottom: 65%;
    margin: 0 0 20px;
    padding: 0;
    font-size: 50px;
    line-height: 46px;
  }
  .box-destination-step#contacts {
    height: auto;
    min-height: 100vh;
  }
  .box-destination-step#contacts h2 {
    position: relative;
    margin-top: 50px;
  }
  .box-destination-step .carousel-destination {
    height: calc(65% - 75px);
    top: 35%;
    margin-top: 20px;
  }
  .box-destination-step .carousel-inner {
    height: 87%;
    color: #000;
    font-size: 14px;
    overflow-y: scroll;
  }
  .box-destination-step .carousel-inner .item {
    padding: 0 10%;
  }
  .box-destination-step .carousel-control.right {
    margin: 0 -10px 0 0;
  }
  .box-destination-step .carousel-control.left {
    margin: 0 0 0 -10px;
  }
  .box-destination-step .carousel-indicators {
    position: absolute;
    bottom: 0;
  }
  .box-destination-step .carousel-indicators .active {
    background-color: #000;
  }
  .box-destination-step .carousel-indicators li {
    border-color: #000;
  }
  .box-destination-step .scroll_down {
    bottom: 15px;
  }
  .all-departure {
    padding: 30px 0;
  }
  .all-departure .btn-lg {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .destination-nav {
    display: none;
  }
  /* LIST ALL DESTINATIONS */
  .continent {
    margin-bottom: 30px;
  }
  /* TRAVELS */
  /* single travel */
  .travel .left {
    margin-left: 15px;
  }
  .travel .right {
    margin-right: 15px;
  }
  .travel .left,
  .travel .right {
    height: 40px;
    width: 40px;
    opacity: 1;
  }
  .travel .left img,
  .travel .right img {
    height: 40px;
    top: 0;
    margin-top: 0;
  }
  /* ERROR 404 PAGE */
  .error404 {
    /* header */
    /* main */
  }
  .error404 header .logo img {
    height: 50px;
    width: auto;
    margin: 0 0 10px;
  }
  .error404 .container_message {
    top: 65px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .error404 .number {
    font-size: 30px;
  }
  .error404 .message {
    margin: 10px 0;
    font-size: 30px;
  }
  .error404 a.btn {
    font-size: 16px;
  }
  .error404 .carousel_search {
    bottom: 10px;
  }
  .error404 .carousel_search .form-group {
    margin-bottom: 10px;
  }
  .error404 .carousel_search label {
    padding-top: 0;
  }
  .error404 .carousel_search .search-bottom button.btn-default {
    margin-top: 0;
  }
  /* GENERIC PAGE */
  .caption .caption-subtitle {
    font-size: 50px;
    line-height: 50px;
  }
  /* FORMS */
  .modal_forms .modal-body {
    padding: 20px 0 0;
  }
  .modal_forms .modal-content .btn {
    padding: 15px;
    font-size: 30px;
  }
  .birthday-group .col-xs-12 {
    padding: 0;
  }
  .day_birth,
  .mounth_birth {
    margin-bottom: 15px;
  }
  .modal_forms form,
  #booking,
  #booking_offer,
  #summary_form {
    padding: 20px;
  }
  body.news button.btn-lg {
    width: 80%;
  }
}
