body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.navigator-menu {
    width: 27px;
    height: 25px !important;
    height: auto;
    border: 1px solid #fff;
    position: fixed;
    z-index: 6;
    top: 16px;
    left: 10px;
}

.navigator-menu a {
    color: #fff;
}

.sidenav li > a > i {
    color: #fff !important;
}

.mayuscula {
    text-transform: uppercase;
}

.minuscula {
    text-transform: lowercase;
}

.img-cliente {
    width: 100px !important;
}

.noticias-content {
    padding: 0;
    background: rgb(213, 135, 58);
    border-radius: 5px;
    overflow: hidden;
}

.noticias-titulo {
    margin: 0;
    padding: 0 5px;
    background: #9FC266;
}

.noticias-parrafo {
    padding: 0 5px;
    color: #fff;
}

.hoja-como-llegar {
    position: absolute;
    left: 0;
    bottom: 10px;
}

input[type=number]::-webkit-outer-spin-button,

input[type=number]::-webkit-inner-spin-button {

    -webkit-appearance: none;

    margin: 0;

}



input[type=number] {

    -moz-appearance: textfield;

}

/*Estilos de la Galería*/
/*
.galeria{
width: 90%;
margin: auto;
list-style: none;
padding: 20px;
box-sizing: border-box;

display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.galeria li{
margin: 5px;
}
.galeria img{
width: 150px;
height: 100px;
}
*/

/*Estilos del modal*/
/*
.modal-galeria{
display: none;
}
.modal-galeria:target{
display: block;
position: fixed;
z-index: 3;
background: rgba(0, 0, 0, 0.91);
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.modal-galeria h3{
color: #fff;
font-size: 30px;
text-align: center;
margin: 15px 0;
}
.imagen{
width: 100%;
height: 50%;

display: flex;
justify-content: center;
align-items: center;

}
.imagen a{
color: #fff;
font-size: 40px;
text-decoration: none;
margin: 0 10px;
}
.imagen a:nth-child(2){
margin: 0;
height: 100%;
flex-shrink: 2;
}
.imagen img{
width: 500px;
height: 100%;
max-width: 100%;
border: 7px solid #fff;
box-sizing: border-box;
}
.cerrar{
display: flex;
justify-content: center;
align-items: center;
background: #fff;
font-weight: bold;
width: 25px;
height: 25px;
margin: 15px auto;
text-align: center;
text-decoration: none;
font-size: 25px;
color: #000;
padding: 5px;
border-radius: 50%;
line-height: 25px;
}*/
.galeria img {
    display: block;
    width: 100%;
}

.galeria {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.galeria__item {
    width: 80%;
    cursor: pointer;
}

@media (min-width:480px) {
    .galeria__item {
        width: 48%;
        margin: 5px;
    }
}

@media (min-width:768px) {
    .galeria__item {
        width: 30%;
    }
}

@media (min-width:1024px) {
    .galeria__item {
        width: 20%;
        margin: 15px;
    }
}

.modal-galeria {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 3;
}

.modal__galeria__img {
    width: 70%;
    max-width: 700px;
}

.modal__boton {
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    font-family: monospace;
    line-height: 50px;
    text-align: center;
    background: red;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

.gallery {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 230px;
    padding: 3px;
    filter: grayscale(100%);
    transition: .5s;
}

.gallery img:hover {
    filter: grayscale(0);
    transform: scale(1.03);
}

#video-el-parque {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
}

.border-bottom {
    border-bottom: 1px solid black;
}


.product-block1 {
    /*    background-color: #e65a4b;*/
    overflow: hidden;
    position: relative;
    backface-visibility: hidden;
    /* W3C */

    -webkit-backface-visibility: hidden;
    /* Safari & Chrome */

    -moz-backface-visibility: hidden;
    /* Firefox */

    -ms-backface-visibility: hidden;
    /* Internet Explorer */

    -o-backface-visibility: hidden;
    /* Opera */
    margin: 5px;

}

.product-block1 .img img {
    display: block;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.product-block .img img {
    -moz-transition: -moz-transform 0.8s;
    -ms-interpolation-mode: bicubic;
    -webkit-transition: -webkit-transform 0.8s;
    border: 0px;
    height: auto;
    max-width: 100%;
    transition: transform 0.8s;
    vertical-align: middle;
    width: 100%;
}

.product-block1:hover .img > img {
    -moz-transform: translateY(-45px);
    -ms-transform: translateY(-45px);
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
}

/*Productos de los saltos*/
.product-block {
    /*    background-color: #e65a4b;*/
    overflow: hidden;
    position: relative;
    backface-visibility: hidden;
    /* W3C */

    -webkit-backface-visibility: hidden;
    /* Safari & Chrome */

    -moz-backface-visibility: hidden;
    /* Firefox */

    -ms-backface-visibility: hidden;
    /* Internet Explorer */

    -o-backface-visibility: hidden;
    /* Opera */
    margin: 5px;

}

.product-block .image .img {
    display: block;
    width: 100%;
}

.product-block .image .img img {
    -moz-transition: -moz-transform 0.8s;
    -ms-interpolation-mode: bicubic;
    -webkit-transition: -webkit-transform 0.8s;
    border: 0px;
    height: auto;
    max-width: 100%;
    transition: transform 0.8s;
    vertical-align: middle;
    width: 100%;
}

.product-block .image .product-label {
    color: #ffffff;
    font-weight: 900;
    left: 10px;
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    z-index: 1;
}

.product-block .meta-back {
    height: 100px;
    width: 100%;
}

.product-block .product-meta {
    -moz-transition: height 0.5s ease-in-out;
    -webkit-transition: height 0.5s ease-in-out;
    background-color: #e65a4b;
    bottom: 0px;
    color: #ffffff;
    height: 100px;
    padding: 10px;
    position: absolute;
    transition: height 0.5s ease-in-out;
    width: 100%;
}

.product-block .product-meta a {
    color: #ffffff;
    text-decoration: none;
}

.product-block .product-meta .name {
    display: block;
    font-weight: 600;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.product-block .product-meta .rating {
    bottom: 0px;
    color: #ff9e8f;
    font-size: 13px;
    height: 20px;
    margin-bottom: 10px;
    position: absolute;
    width: auto;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.product-block .product-meta .rating i {
    display: initial;
    border: none;
    line-height: normal;
    font-size: 13px;
}

.product-block .product-meta .rating .fa {
    color: #ff9e8f;
}

.product-block .product-meta .rating .fa-star {
    color: #ffffff;
}

.product-block .product-meta .big-price {
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-size: 35px;
    font-weight: 900;
    opacity: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.product-block .product-meta .big-price .sym {
    font-size: 14px;
    vertical-align: super;
}

.product-block .product-meta .big-price .price-old {
    font-size: 14px;
    font-weight: 400;
    padding-left: 10px;
    text-decoration: line-through;
}

.product-block .product-meta .big-price .price-old .sym {
    font-size: 13px;
    text-decoration: none;
}

.product-block .product-meta .small-price {
    bottom: 30px;
    position: absolute;
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    height: auto;
    opacity: 1;
    overflow: visable;
    width: auto;
    transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
}

.product-block .product-meta .small-price .sym {
    font-size: 14px;
    vertical-align: super;
}

.product-block .product-meta .small-price .price-old {
    font-size: 14px;
    font-weight: 400;
    padding-left: 5px;
    text-decoration: line-through;
}

.product-block .product-meta .small-price .price-old .sym {
    font-size: 13px;
    text-decoration: none;
}

.product-block .product-meta .small-btns {
    bottom: 0px;
    margin: 10px;
    position: absolute;
    right: 0px;
    border: 1px #f76b5c solid;
}

.product-block .product-meta .small-btns .btn {
    height: 40px;
    line-height: 40px;
    margin: 0px;
    outline: none;
    padding: 0px;
    text-align: center;
    width: 40px;
    background-color: #e65a4b;
}

.product-block .product-meta .small-btns .btn i {
    display: initial;
    border: none;
    line-height: normal;
    font-size: 13px;
}

.product-block .product-meta .small-btns .btn-compare {
    border-right: 1px #f76b5c solid;
}

.product-block .product-meta .small-btns .btn-compare:hover {
    background-color: #f76b5c;
}

.product-block .product-meta .small-btns .btn-wishlist {
    border-right: 1px #f76b5c solid;
}

.product-block .product-meta .small-btns .btn-wishlist:hover {
    background-color: #f76b5c;
}

.product-block .product-meta .small-btns .btn-addtocart:hover {
    /*    background-color: #f76b5c;*/
}

.product-block .product-meta .big-btns {
    width: 100%;
    display: flex;
}

.product-block .product-meta .big-btns .btn {
    font-size: 13px;
    font-weight: 600;
    height: 0px;
    line-height: 58px;
    margin: 0px;
    opacity: 0;
    overflow: hidden;
    padding: 0px;
    width: 50%;
    background-color: #e65a4b;
    border: 1px #f76b5c solid;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.product-block .product-meta .big-btns .btn:hover {
    background-color: #f76b5c;
}

.product-block .product-meta .big-btns .btn-view {
    margin-left: -200px;
}

.product-block .product-meta .big-btns .btn-addtocart {
    border-left: none;
    margin-right: -200px;
}

.product-block:hover .image > .img > img {
    -moz-transform: translateY(-45px);
    -ms-transform: translateY(-45px);
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
}

.product-block:hover .product-meta {
    bottom: 0px;
    height: 200px;
    position: absolute;
}

.product-block:hover .big-btns .btn {
    height: 58px;
    opacity: 1;
    overflow: visible;
}

.product-block:hover .big-btns .btn-view {
    margin-left: 0px;
}

.product-block:hover .big-btns .btn-addtocart {
    margin-right: 0px;
}

.product-block:hover .rating {
    margin-bottom: 20px;
}

.product-block:hover .big-price {
    height: auto;
    opacity: 1;
    overflow: visable;
}

.product-block:hover .small-price {
    height: 0px;
    opacity: 0;
    overflow: hidden;
}

.product-new {
    background-color: #feaa37;
}

.product-sale {
    background-color: #e65a4b;
}

.product-hot {
    background-color: #333333;
}

/*Hover*/
.product-block {
    /*    background-color: #e65a4b;*/
}

.product-block .image .product-label {
    color: #ffffff;
}

.product-block .product-meta {
    background-color: #5D8637;
    color: #ffffff;
}

.product-block .product-meta a {
    color: #ffffff;
}

.product-block .product-meta .rating {
    color: #ff9e8f;
}

.product-block .product-meta .rating .fa {
    color: #ff9e8f;
}

.product-block .product-meta .rating .fa-star {
    color: #ffffff;
}

.product-block .product-meta .small-btns {
    border: 0;
}

.product-block .product-meta .small-btns .btn-compare {
    border-right: 0;
    background-color: #feaa37;
}

.product-block .product-meta .small-btns .btn-compare:hover {
    background-color: #fec06a;
}

.product-block .product-meta .small-btns .btn-wishlist {
    border-right: 0;
    background-color: #c73b2c;
}

.product-block .product-meta .small-btns .btn-wishlist:hover {
    background-color: #d84c3d;
}

.product-block .product-meta .small-btns .btn-addtocart {
    background-color: rgba(17, 191, 17, 1);
}

.product-block .product-meta .small-btns .btn-addtocart:hover {
    background-color: rgba(17, 191, 17, 0.7);
}

.product-block .product-meta .big-btns .btn {
    background: rgba(255, 165, 0, 1);
    border: 0;
    margin: 2px;
}

.product-block .product-meta .big-btns .btn:hover {
    background: rgba(255, 165, 0, 0.9);
}

.product-block .product-meta .big-btns .btn-view {
    /*    border-right: 1px #e65a4b solid;*/
    margin: 2px;
}

.product-new {
    background-color: rgba(254, 170, 55, 1);
}

.product-new:hover {
    background-color: rgba(254, 170, 55, 0.9);
}

.product-sale {
    background-color: #e65a4b;
}

.product-hot {
    background-color: #333333;
}

/*Estilos del formulario*/
/* label color */
.input-field label {
    color: green;
}

/* label focus color */
.input-field input[type=text]:focus + label {
    color: #000;
}

/* label underline focus color */
.input-field input[type=text]:focus {
    border-bottom: 1px solid green;
    box-shadow: 0 1px 0 0 green;
}

/* valid color */
.input-field input[type=text].valid {
    border-bottom: 1px solid green;
    box-shadow: 0 1px 0 0 green;
}

/* invalid color */
.input-field input[type=text].invalid {
    border-bottom: 1px solid green;
    box-shadow: 0 1px 0 0 green;
}

/* icon prefix focus color */
.input-field .prefix.active {
    color: green;
}

/*Estilos de Tripadvisor*/
.landerHeader {
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-size: 42px;
    color: #666;
}

.title1 {
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-size: 24px;
    color: #666;
}

.title2 {
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-size: 18px;
    color: #666;
}

.title3 {
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-size: 16px;
    color: #666;
}

.title4 {
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-size: 14px;
    color: #666;
}

.bodyCopy {
    font-family: ArialMT, Tahoma, 'Bitstream Vera Sans', sans-serif;
    font-size: 13px;
    color: #666;
}

.bodyCopy.link {
    color: #069;
    cursor: pointer;
}

.formLabel {
    font-size: 13px;
    color: #666;
}

.formLabel.HR {
    font-family: "Georgia Italic", Georgia, serif;
    font-style: italic;
}

.formLabel.MC {
    font-family: ArialMT, Tahoma, 'Bitstream Vera Sans', sans-serif;
}

.tableHeader {
    font-family: Arial;
    font-size: 11px;
    color: #666;
}

.hyperLink {
    font-family: ArialMT, Tahoma, 'Bitstream Vera Sans', sans-serif;
    font-size: 13px;
    color: #069;
    cursor: pointer;
}

.hyperLink.free {
    text-decoration: underline;
    font-size: 11px;
}

.keyLabel {
    font-family: ArialMT, Tahoma, 'Bitstream Vera Sans', sans-serif;
    font-size: 11px;
    color: #666;
}

.chartLabel {
    font-family: ArialMT, Tahoma, 'Bitstream Vera Sans', sans-serif;
    font-size: 10px;
    color: #666;
}

.orangeText {
    color: #EF6945;
}

.greenText {
    color: #00a680;
}

.redText {
    color: #C32D0A;
}

.semibold {
    font-weight: 600;
}

.t4b-button {
    border: solid 1px #069;
    background-color: #FFF;
    color: #069;
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-size: 18px;
    padding: 10px 30px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.t4b-button.orangeSolid {
    background-color: #EF6945;
    border-color: #EF6945;
    color: #FFF;
}

.t4b-button.orangeOutline {
    color: #EF6945;
    border-color: #EF6945;
    background-color: #FFF;
}

.t4b-button.orangeSolid:hover {
    background-color: #eb4316;
}

.t4b-button.orangeOutline:hover {
    background-color: rgba(242, 242, 242, 0.5);
}

.t4b-button.darkBlueSolid {
    background-color: #134C75;
    border-color: #134C75;
    color: #FFF;
}

.t4b-button.darkBlueOutline {
    background-color: #FFF;
    border-color: #134C75;
    color: #134C75;
}

.t4b-button.darkBlueSolid:hover {
    background-color: #006DAC;
}

.t4b-button.darkBlueOutline:hover {
    background-color: rgba(242, 242, 242, 0.5);
}

.t4b-button.secondary {
    padding: 10px 24px;
    font-size: 15px;
}

.t4b-button.tertiary {
    padding: 10px 12px;
    font-size: 11px;
    font-family: Arial, Verdana, "Bitstream Vera Sans", Helvetica, sans-serif;
    text-transform: uppercase;
}

.t4b-button.ta-green {
    background-color: #FFF;
    border-color: #00a680;
    color: #00a680;
}

.t4b-button.ta-green:hover {
    background-color: #00a680;
    border-color: #00a680;
    color: #FFF;
}

.t4b-button.ta-greenSolid {
    background-color: #00a680;
    border-color: #00a680;
    color: #FFF;
}

.t4b-button.ta-greenSolid:hover {
    background-color: #007359;
}

.t4b-button.inactive,
.t4b-button:disabled {
    opacity: .5;
    cursor: default;
}

#CDSSCROLLINGRAVE {
    background-color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    font: normal 14px Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    margin: 0;
    text-align: left;
    border: none;
    text-decoration: none;
    outline: none;
    color: #333;
    padding: 7px;
}

#CDSSCROLLINGRAVE img {
    border-style: none;
}

#CDSSCROLLINGRAVE .rightBorder {
    border-right: 1px solid #B7B7B7;
    padding-right: 12px;
    float: left;
}

#CDSSCROLLINGRAVE div {
    padding: 1px;
}

#CDSSCROLLINGRAVE div span {
    display: inline-block;
    padding: 0 0 0 8px;
    margin-top: 5px;
}

#CDSSCROLLINGRAVE div span.bubble {
    padding-left: 10px;
}

#CDSSCROLLINGRAVE .placeHolder {
    line-height: 0;
}

#CDSSCROLLINGRAVE .reviewContribution {
    color: #666;
}

#CDSSCROLLINGRAVE a {
    color: #069;
    text-decoration: underline;
}

#CDSSCROLLINGRAVE a:visited {
    color: #069;
    text-decoration: underline;
}

#CDSSCROLLINGRAVE a:hover {
    text-decoration: underline;
}

#CDSSCROLLINGRAVE .reviewTitle {
    font-weight: bold;
}

#CDSSCROLLINGRAVE.shadow {
    box-shadow: 0 1px 4px 0 #B7B7B7;
}

#CDSSCROLLINGRAVE.border {
    border: 1px solid #00a680;
}

#CDSSCROLLINGRAVE.gray {
    background-color: #f2f2f2;
}

#CDSSCROLLINGRAVE.wide {
    width: 450px;
}

#CDSSCROLLINGRAVE.narrow {
    width: 100% !important;
}

/**************************************/

.btn-red {
    background: #B3332E;
    margin: 5px;
}

.btn-blue {
    background: #304B9C;
    margin: 5px;
}

.img-none {
    display: none !important;
}
