  /*
  --primary: #fe4600 / HOVER : #a92f00; // ORANGE
  --secondary: #0086ff; // BLUE

  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
*/

body {
  font-family: 'Exo 2', sans-serif;
  background: url(../img/header_bg.png) repeat #000;
}

.hidden{
  display: none;
}



/*
******** FONTS ******
*/

@font-face {
  font-family: "neuropol";
  src: url(../fonts/neuropol.ttf);
}


/*
******** BOOTSTRAP ******
*/

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.bg-dark {
  background-color: #000 !important;
}

.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item strong {
  color: #888;
  font-style: italic;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "»";
  padding: 0 2px 0 4px;
}

.btn{
  -webkit-transition: all 0.5s;
  transition: all 0.5s;

  border: none;
}
.btn:hover{
  cursor: pointer;
}

.btn.btn-primary{
  background: #fe4600;
}
.btn.btn-primary:hover{
  background: #a92f00;
}
.badge-primary{
  background: #fe4600;
}

.btn.btn-icon{
  padding-left: 30px;
  position: relative;
}
.btn.btn-icon i{
  position: absolute;
  left: 5px;
  top: 9px;
}

blockquote.blockquote{
  font-size: 1rem;
}

a{
  color: #fe4600;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover{
  color: #a92f00;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link{
  background-color: #fe4600;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*
******** HEADER *********
*/

header {
  height: 155px;
  border-bottom: solid 2px #fe4600;
  display: block;
  background: url(../img/header_bg.png) repeat #000;
}

header .logo {
  float: left;
  margin: 40px 35px 10px 0px;
  display: inline-block;
  width: 460px;
}

header .logo .headline {
  display: block;
  color: #FFF;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.22em;
  margin: 5px 0;
  text-align: left;
}

header .contact {
  margin: 45px 0;
  display: inline-block;
  color: #fff;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9em;
}

header .contact i {
  color: #fe4600;
}

header .contact .phone {
  color: #fe4600;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 35px;
}

header .cart {
  display: inline-block;
  height: 70px;
  float: right;
  margin: 35px 0 0;
  background: #fe4600;
  color: #fff;
  padding: 10px;
}

header .cart .cart-menu {
  margin: 0 7px;
}

header .cart .cart-menu i {
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 8px;
  background: #6c6f76;
  color: #FFF;
  line-height: 40px;
  text-align: center;
  font-size: 1.5em;
  float: left;
}

header .cart .cart-menu .label {
  display: inline-block;
  line-height: 20px;
  width: 20px;
  margin: 10px 0;
  text-align: center;
  background: #FFF;
  border-radius: 100%;
  color: #333;
  float: left;
}

header .cart .cart-paiement {
  float: right;
  margin-left: 10px;
}

header .cart .cart-paiement img {
  display: block;
}

header .cart .cart-title {
  font-size: 12px;
  color: #fff;
  display: block;
}

header .user-account {
  float: right;
  margin: 5px 0;
  color: #FFF;
  font-size: 1.2em;
}

header .user-account a {
  color: #fff;
  font-style: italic;
}

header .user-account a:hover {
  text-decoration: none;
  color: #CCC;
}


/*
******** CAROUSEL *********
*/

.slide-headline{
  position: relative;
  left: 0;
  right: 0;
  line-height: 40px;
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  background: #fe4600;
  z-index: 10;
}

.is-not-home .text-center>img{
  max-width: 2000px;
}

.slider {
  height: 600px;
  overflow: hidden;
}

.slider.is-home {
  height: 600px;
}

.slider .carousel .carousel-item{
  height: 600px;
}
.slider .carousel .carousel-item img {
  height: 600px;
  object-fit: cover;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.slider .carousel .carousel-item img {
  height: 600px;
  margin: 0 auto;
}

.slider .carousel .carousel-item .carousel-caption {
  top: 10%;
  left: 0;
  width: 350px;
  float: left;
  bottom: 50px;
  padding: 20px;
  background: rgba(254, 70, 0, 0.7);
  text-align: left;
}

.slider .carousel .carousel-item .carousel-caption h3 {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  font-size: 3em;
}

.slider .carousel .carousel-item .carousel-caption h4 {
  font-size: 2.2em;
  text-transform: uppercase;
  font-style: italic;
}

.slider .carousel .carousel-item .carousel-caption p {
  font-size: 14px;
  width: 60%;
}

.slider .carousel .carousel-item .carousel-caption .more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  color: #FFF;
  border: solid 1px #fff;
  font-size: 2em;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.slider .carousel .carousel-item .carousel-caption .more:hover {
  background: #fff;
  color: #fe4600;
}

.slider .carousel .carousel-indicators {
  justify-content: left;
  bottom: 50px;
}

.slider .carousel .carousel-indicators li {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 5px;
  background: #fff;
}
.slider .carousel .carousel-indicators li:hover{
  cursor: pointer;
}

.slider .carousel .carousel-indicators li.active {
  background: #fe4600;
}

.carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .carousel-item,
.carousel-fade .carousel-inner .active.carousel-item-left,
.carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade .carousel-inner .carousel-item.active,
.carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .carousel-inner .carousel-item-next,
.carousel-fade .carousel-inner .carousel-item-prev,
.carousel-fade .carousel-inner .active.carousel-item-left,
.carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}

/*
******** NAVBAR *********
*/

.navbar .navbar-nav .nav-item.dropdown {
  position: static !important;
}

.navbar {
  margin-top: -50px;
  top: 50px;
  background-color: #151515 !important;
}

.navbar .brand {
  display: none;
  height: 25px;
}

.navbar .brand img {
  height: 100%;
  width: auto;
}

.navbar.fixed {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  left: 0;
  right: 0;

  margin-top: 0;

  transition-property: margin-top, margin-right;
  transition-duration: .5s, .1s;
  transition-delay: 0;
  transition-timing-function: cubic-bezier(0.22, 0.99, 0.62, 1);
  -moz-transition-property: margin-top, margin-right;
  -moz-transition-duration: .5s, .1s;
  -moz-transition-delay: 0;
  -moz-transition-timing-function: cubic-bezier(0.22, 0.99, 0.62, 1);
  -o-transition-property: margin-top, margin-right;
  -o-transition-duration: .5s, .1s;
  -o-transition-delay: 0;
  -o-transition-timing-function: cubic-bezier(0.22, 0.99, 0.62, 1);
  -ms-transition-property: margin-top, margin-right;
  -ms-transition-duration: .5s, .1s;
  -ms-transition-delay: 0;
  -ms-transition-timing-function: cubic-bezier(0.22, 0.99, 0.62, 1);
  -webkit-transition-property: margin-top, margin-right;
  -webkit-transition-duration: .5s, .1s;
  -webkit-transition-delay: 0;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.99, 0.62, 1);
}

.navbar.fixed .brand {
  display: block;
  margin-right: 20px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-family: "neuropol", sans-serif;
  font-size: 0.9em;
}

.navbar .navbar-nav .nav-item .nav-link .home {
  height: 20px;
  width: 30px;
  background: url(../img/home.png) top center no-repeat;
  background-position: 0 0;
  display: block;
}

.navbar .navbar-nav .nav-item .nav-link:hover .home {
  background-position: 0 -20px;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item.active .nav-link {
  color: #fe4600;
}

.navbar .navbar-nav .nav-item.dropdown>.mega-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  margin: 0;
  padding: 0;
  background: #333;
  max-height: 0;
  overflow: hidden;

  list-style: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.navbar .navbar-nav .nav-item.dropdown.active>.mega-menu {
  max-height: 500px;
  padding: 15px;
  box-shadow: 0 0 5px #000;
  overflow-y: scroll;
}

.navbar .navbar-nav .nav-item.dropdown>.mega-menu ul {
  list-style: none;
  padding: 0;
}

.navbar .navbar-nav .nav-item.dropdown>.mega-menu ul li a {
  color: #fff;
  padding: 2px 5px;
  padding-left: 15px;
}

.navbar .navbar-nav .nav-item.dropdown>.mega-menu ul li.headers a {
  color: #fff;
  background: #000;
  padding: 2px 5px;
  display: block;
}

.navbar .special-menu .bouton {
  display: block;
  color: #FFF;
  text-transform: uppercase;
  padding: 0px 8px;
  height: 34px;
  line-height: 34px;
  background: url(../img/special-menu-bg.png) right center #6c7076 no-repeat;
  min-width: 180px;
  position: relative;
  padding-right: 80px;
}

.navbar.fixed .special-menu {
  display: none;
}

.navbar .special-menu .bouton:hover {
  background: #fe4600;
  text-decoration: none;
}

.navbar .special-menu .bouton i {
  position: absolute;
  right: 25px;
  top: 5px;
  font-size: 1.4em;
  color: #fff;
}

.navbar .special-menu .bouton i.percent {
  right: 10px;
  top: 0px;
}


/*
******** MAIN *********
*/
.breadcrumb{
  display: none;
}
@media(min-width:768px){
  .breadcrumb{
    display: flex;
  }
}

.main {
  background: #ebebeb;
  padding: 15px;
  overflow: hidden;
  margin-top: 50px;
}

.main .title {
  padding: 5px 10px;
  position: relative;
}

.main .title.title-orange {
  background: #fe4600;
  color: #fff !important;
}

.main .title.title-blue {
  background: #0086ff;
  color: #fff !important;
  padding: 13px 10px;
}

.main .title h3 {
  margin: none;
  font-weight: 400;
  font-family: "neuropol", sans-serif;
  font-size: 16px;
  margin-right: 25px;
}

.main .title h3 .highlight {
  display: block;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  font-family: 'Exo 2', sans-serif;
}

.main .title .title-icon{
  position: absolute;
  right: 10px;
  top: 20px;
}

.main .title .icons {
  margin-right: 15px;
}

.main .title .icons i {
  margin-right: 10px;
}

.main .title .subtitle {
  font-style: italic;
  font-size: 20px;
}

.main .title .subtitle .highlight {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}

.main .title.title-orange .arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #fe4600 transparent transparent transparent;
  top: 100%;
}

.main .title.title-orange.three-arrows .arrow.arrow-1,
.main .title.title-orange.one-arrow .arrow.arrow-1 {
  left: 15%;
}

.main .title.title-orange.three-arrows .arrow.arrow-2 {
  left: 49%;
}

.main .title.title-orange.three-arrows .arrow.arrow-3 {
  left: 83%;
}

.main .title.title-orange.two-arrows .arrow.arrow-1 {
  left: 25%;
}

.main .title.title-orange.two-arrows .arrow.arrow-2 {
  left: 74%;
}

.main .title h1 {
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
  font-weight: 700;
}

.main .title.title-blue h3 {
  margin: 0;
}

.main .title.title-blue.one-arrow .arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #0086ff transparent transparent transparent;
  top: 100%;
}

.main .title.title-blue.one-arrow .arrow.arrow-1 {
  left: 49%;
}

.main h4 {
  color: #fe4600;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}

.main h5 {
  font-size: 14px;
}

.main .stage {
  position: relative;
  color: #fff;
  margin-bottom: 18px;
}
.main .stage:hover{
  cursor: pointer;
}

.main .stage .stage-infos {
  height: 100%;
  display: block;
  position: absolute;
  z-index: 10;
  bottom: 0;
  top: 0;
  padding: 10px;
}
.main .stage .stage-infos:hover{
  cursor: pointer;
}

.main .stage .stage-infos .stage-title {
  color: #fff;
  padding: 10px;
  font-family: 'neuropol', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  background: url(../img/stage-title-bg.png) no-repeat left center;
  margin: -10px 0 10px -10px;
}

.main .stage .stage-infos .stage-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-transform: uppercase;
}

.main .stage .stage-infos .stage-link {
  position: absolute;
  display: block;
  height: 35px;
  width: 35px;
  bottom: 10px;
  right: 10px;
  background: #fe4600;
  color: #FFF;
  line-height: 35px;
  text-align: center;
}

.main .stage .stage-title .highlight {
  font-family: 'Exo 2', sans-serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
}

.main .stage img.stage-illustration {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  top: 0;
  left: 0;
}

.main .well {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
}

.main .well.well-orange {
  background: #fe4600;
  color: #fff !important;
}

.main .well.well-dark {
  background: #333;
  color: #fff !important;
}

.main .well:after {
  content: ' ';
  display: table;
  clear: both;
}

.main .well .well-title {
  font-family: 'neuropol', sans-serif;
  font-size: 16px;
  margin: 0 15px 0 0;
  color: #333;
  float: left;
}

.well-reviews {
  color: #4B639C;
  float: left;
  margin: 0 15px;
  font-size: 18px;
}

.main .well .facebook-link {
  float: right;
}

.main .well h2 {
  color: #fe4600;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  padding-bottom: 10px;
  border-bottom: dashed 2px #ccc;
}
.main .well.well-orange h2 {
  color: #fff !important;
}

.main .well .text-reference {
  font-size: 14px;
  font-style: italic;
  text-transform: uppercase;
}

.main .table td,
.main .table th {
  vertical-align: middle;
}

.main .table .infos {
  font-weight: 400;
  text-transform: uppercase;
  font-style: italic;
}

.main .table .table-title {
  font-size: 14px;
  line-height: 14px;
  font-style: italic;
  text-transform: uppercase;
}

.main .table .table-title small {
  display: block;
}

.main .table th {
  position: relative;
}

.main .table .btn-calendar {
  font-size: 14px;
  text-transform: uppercase;
  font-style: italic;
  display: block;
  position: relative;
  margin: 5px 0;
}

@media (min-width: 768px) {
  .main .table .btn-calendar {
    position: absolute;
    right: 10px;
    top: 12px;
    margin: auto;
  }
}

.main .table .btn-calendar i {
  margin-right: 5px;
  color: #fe4600;
}

.main .table tbody tr td.td-dark {
  background: #333;
  color: #fff;
}

.main .table tbody del {
  margin-right: 5px;
}

.main .table tbody .new-price {
  margin-right: 5px;
  font-weight: 700;
  color: #fe4600;
  font-style: italic;
}

.main .table tbody .basket {
  margin: 3px 0;
  background: #fe4600;
  border-radius: 5px;
  float: right;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  padding: 5px 10px 5px 25px;
  line-height: 18px;
  width: 100%;
}
.main .table tbody .basket i {
  color: #000;
  position: absolute;
  left: 5px;
  top: 8px;
  font-size: 1.2em;
}

@media(min-width:768px){

  .main .table tbody .basket {
    margin: auto;
    background: #fe4600;
    border-radius: 5px;
    float: right;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    padding: 1px 10px 1px 25px;
    line-height: 18px;
    width: auto;
  }

  .main .table tbody .basket i {
    color: #000;
    position: absolute;
    left: 5px;
    top: 4px;
    font-size: 1.2em;
  }
}

.main .table-list .table-list-row{
  background: #fff;
  border-bottom: dashed 2px #CCC;
}

.main .table-list .table-list-cell+.table-list-cell {
  border-top: solid 1px #ccc;
}

.main .table-list .table-list-cell {
  position: relative;
  padding: 15px;
  margin: 0 10px;
}


.main .table-list .table-list-title {
  padding: 0;
  margin: 0;
}

.main .table-list .table-list-title img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.main .table-list .table-list-title h2,
.main .table-list .table-list-title p{
  padding: 0 0 0 15px;
}

 /*
.main .table-list .table-list-tours {
  display: none;
}
*/

.main .table-list .btn.command {
  display: none;
}

@media(min-width:768px){
  .main .table-list .table-list-row{
    background: #fff;
    border: none;
  }
  .main .table-list .table-list-row+.table-list-row{
    border-top: dashed 2px #CCC;
  }
  .main .table-list .table-list-row:nth-child(odd) {
    background: transparent;
  }

  .main .table-list .table-list-title {
    min-height: 140px;
    width: 45%;
    padding: 15px 0;
    padding-left: 200px;
    position: relative;
  }

  .main .table-list .table-list-title img {
    position: absolute;
    left: 0.6rem;
    top: 0.6rem;
    width: 190px;
    height: auto;
    margin: 0;
  }

  .main .table-list .table-list-tours {
    width: 35%;
    margin: 0 20px;
    display: block;
  }
  .main .table-list .btn.command {
    display: block;
  }

  .main .table-list .table-list-cell+.table-list-cell{
    border: none;
  }
  .main .table-list .table-list-row:nth-child(even) .table-list-cell+.table-list-cell{
    border: none;
  }
  .main .table-list .table-list-cell+.table-list-cell:before {
    content: " ";
    height: 120px;
    width: 1px;
    background: #fff;
    position: absolute;
    left: -10px;
    top: 0.6rem;
  }

  .main .table-list .table-list-row:nth-child(even) .table-list-cell+.table-list-cell:before {
    background: #CCC;
  }
}


.main .table-list h2 {
  font-size: 20px;
  color: #fe4600;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0;
}

.main .table-list .h5 {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.main .table-list .price {
  font-size: 2.3em;
  text-align: center;
  display: block;
  font-weight: 700;
  font-style: italic;
}
.main .table-list .price del{
  font-size: 0.8em;
  margin-right: 5px;
  color: #999;
}
.main .table-list .price>span{
  display: none;
  opacity: 0;
}
.main .table-list .price>span.active{
  display: block;
  opacity: 1;
}

.main .table-list .btn {
  color: #fff;
  background: #fe4600;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding-left: 40px;
  text-transform: uppercase;
  font-style: italic;
  line-height: 15px;
  text-align: center;
  margin: 0 auto 0 15px;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.main .table-list .btn:hover {
  background: #a92f00;
}

.main .table-list .btn i {
  color: #000;
  position: absolute;
  left: 7px;
  top: 3px;
  font-size: 22px;
}

.main .table-list p {
  font-style: italic;
}

.main .table-list .boutton {
  position: absolute;
  text-align: center;
  vertical-align: bottom;
  font-style: italic;
  bottom: 20px;
}

.main .table-list .boutton .main .table-list .boutton.boutton-minus {
  left: 5px;
}

.main .table-list .boutton.boutton-plus {
  right: 5px;
}

.main .table-list .boutton a {
  width: 43px;
  height: 43px;
  line-height: 43px;
  font-size: 22px;
  color: #fff;
  background: #fe4600;
  display: block;
  margin: 5px auto;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.main .table-list .boutton a:hover {
  background: #a92f00;
}
.main .table-list .boutton a.disabled{
  opacity: 0.5;
  cursor: not-allowed;
}

.main .table-list .tours {
  display: block;
  padding: 0 60px;
  text-align: center;
}

.main .table-list .tours .nombre {
  font-size: 5em;
  vertical-align: bottom;
  font-weight: 700;
  font-style: italic;
  display: inline-block;
  color: #fe4600;
  line-height: 0.7;
}
.main .table-list .tours .nombre span{
  opacity: 0;
  display: none;
}
.main .table-list .tours .nombre span.active{
  opacity: 1;
  display: block;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.main .table-list .tours .nombre small {
  font-size: 0.4em;
}

.main .table-list .tours .text-tours {
  margin-left: 3px;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

.main .table-list .tours .text-tours .highlight {
  font-size: 1.6em;
  color: #fe4600;
  font-style: italic;
}

.main .more {
  position: relative;
  margin: 0 -15px;
  text-align: center;
}

.main .more:before {
  height: 20px;
  width: 100%;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+0,0+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}

.main .more a.more-boutton {
  margin: 0 15px;
  padding: 0 45px;
  position: relative;
  top: 0;
  line-height: 35px;
  color: #fff;
  background: #fe4600;
  text-align: center;
  display: inline-block;
  border-radius: 0 0 15px 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;

  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media(min-width:768px){
  .main .more a.more-boutton {
    width: 35%;
    margin: 0 auto;
  }
}
.main .more a.more-boutton:hover {
  background: #a92f00;
}

.main .more a.more-boutton i {
  position: absolute;
  top: 5px;
  left: 20px;
  font-size: 1.8em;
}

.main .more a.more-boutton i.fa-right {
  left: auto;
  right: 20px;
}

.main .coaching .title {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 40px;
  text-transform: uppercase;
  font-style: italic;
}

.main .coaching .title>i {
  margin: 0 10px 0 15px;
  line-height: 40px;
}

.main .coaching .title strong {
  margin-right: 10px;
}

.main .coaching .title .stars {
  margin: 0 25px;
  color: #fe4600;
}


/*
******** FOOTER *********
*/

footer {
  color: #fcfcfc;
  font-size: 0.9em;
  padding: 25px 0;
}

footer .widget h3 {
  font-family: "neuropol", sans-serif;
  color: #fe4600;
  font-size: 15px;
  text-transform: uppercase;
}

footer .widget a {
  color: #fcfcfc;
}

footer .widget .fa-ul {
  margin: 0;
}

footer .widget .fa-ul li {
  padding-left: 35px;
  margin: 5px 0 10px;
  display: block;
  position: relative;
  min-height: 30px;
  font-size: 14px;
}

footer .widget .fa-ul li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.7em;
  color: #fe4600;
  text-align: left;
}

footer .well {
  padding: 15px 20px;
  margin-bottom: 30px;
}

footer .well.well-dark {
  background: rgba(0, 0, 0, 0.4)
}

footer .well.well-dark h3 {
  color: #fcfcfc;
}

footer .well ul {
  margin-bottom: 0;
}


/*
******** CREDENTIAL *********
*/

.credential {
  background: #151515;
  color: #fefefe;
  overflow: hidden;
  text-align: center;
}

.credential p {
  line-height: 50px;
  padding: 10px 0;
}

.credential a {
  color: #fefefe;
}

.calendar{
  width:100%;
  overflow: hidden;
}

.month{
  margin: 1%;
  min-height: 185px;
  border: solid 1px #ccc;
}

.calendar .month h3{
  text-align: center;
  background: #1366A7;
  display: block;
  color: #FFF;
  font-size: 13px;
  font-family: Arial;
  margin: 0;
}

.modal-lg{
  max-width: 950px !important;
}

.month .days,
.month .week{
  width: 100%;
  overflow: hidden;
  margin: 0 3% 0 0;
}
.month .week{
  background: #51BAD5;
  color: #FFF;
  margin: 0 3% 0 0;
}

.month .week .day,
.month .days .day{
  width: 11%;
  text-align: center;
  float: left;
  margin: 0 3% 0 0;
}

.day.highlight{
  background-color: #1A73B7;
  color:#fff;
  cursor: pointer;
  font-weight: 700;
}

/* COOKIE CONSENT */
#cookie-notice {
  display: block;
  visibility: hidden;
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 100000;
  font-size: 13px;
  line-height: 20px;
  left: 0;
  text-align: center;
}

.cn-top {
  top: 0;
}

.cn-bottom {
  bottom: 0;
}

.cookie-notice-container {
  padding: 10px;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cookie-notice-revoke-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cn-top .cookie-notice-revoke-container {
  top: 0;
  bottom: auto;
}

#cookie-notice .cn-revoke-cookie {
  margin: 0;
}

.cn-button.wp-default,
.cn-button.wp-default:hover,
.cn-button.bootstrap,
.cn-button.bootstrap:hover {
  box-shadow: none;
  text-decoration: none;
}

#cookie-notice .cn-button {
  margin-left: 10px;
}

.cn-button.wp-default {
  font-family: sans-serif;
  line-height: 18px;
  padding: 2px 12px;
  background: linear-gradient(to bottom, #FEFEFE, #F4F4F4) repeat scroll 0 0 #F3F3F3;
  border-color: #BBB;
  color: #333;
  text-shadow: 0 1px 0 #FFF;
  -moz-box-sizing: border-box;
  border-radius: 3px 3px 3px 3px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
}

.cn-button.wp-default:hover {
  background: linear-gradient(to bottom, #FFFFFF, #F3F3F3) repeat scroll 0 0 #F3F3F3;
  border-color: #999;
  color: #222;
}

.cn-button.bootstrap {
  font-family: sans-serif;
  display: inline-block;
  *display: inline;
  padding: 4px 12px;
  margin-right: .3em;
  margin-bottom: 0;
  *margin-left: .3em;
  line-height: 20px;
  color: #333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
  font-style: normal;
  vertical-align: middle;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
  background-color: #006dcc;
  *background-color: #04c;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  border-style: solid;
  border-width: 1px;
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .2) inset, 0 1px 2px rgba(0, 0, 0, .05);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  padding: 2px 10px;
  font-size: 12px;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: none;
}

.cn-button.bootstrap:hover {
  color: #fff;
  background-color: #04c;
  *background-color: #003bb3;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

@media all and (max-width: 900px) {
  .cookie-notice-container #cn-notice-text {
    display: block;
    margin-bottom: 5px;
  }
  #cookie-notice .cn-button {
    margin-left: 5px;
    margin-right: 5px;
  }
}