/******* Bootstrap ********/
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 600px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 800px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1000px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 600px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 800px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1000px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 600px) {
    .float-sm-left {
        float: left !important;
    }

    .float-sm-right {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 800px) {
    .float-md-left {
        float: left !important;
    }

    .float-md-right {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 1000px) {
    .float-lg-left {
        float: left !important;
    }

    .float-lg-right {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }

    .float-xl-right {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }
}

.fade {
    opacity: 0;
    transition: opacity .15s linear;
}

.fade.show {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

tr.collapse.show {
    display: table-row;
}

tbody.collapse.show {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

main {
    display: block;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (min-width: 701px) {
    .landing.buy-processs .wrapper{padding-top: 30px;}
    .wrapper {
        padding-top: 70px;
    }
    .landing_footer div.wrapper{padding: 30px;}
}

a, button, img {
    outline: 0;
    border: none;
}

.btn {
    color: black;
    font: 16px 'Playfair Display', serif;
    padding: 0;
    border-radius: 0;
}

@media (max-width: 599.98px) {
    .hidden-down {
        display: none !important;
    }
}
@media (min-width: 600px) {
    .icon-294.hidden-up,
    .hotel_info--precio.hidden-up{
        display: none !important;
    }
}
.d-flex.align-items-center.hotel_info--localizacion .dist .ver_mapa_oculto{padding-right: 4px;}
@media (min-width: 901px) {
    .hidden-up {
        display: none !important;
    }
}

@media (max-width: 999.98px) {
    .hidden-tablet-down {
        display: none !important;
    }
}

@media (min-width: 1000px) {
    .hidden-tablet-up {
        display: none !important;
    }
}

.main_header--title {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    font-weight: 300;
}

@media (max-width: 599.98px) {
    .main_header--title {
        text-align: center;
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
        padding: 17px 0;
        margin-bottom: 20px;
        margin-left: -10px;
        margin-right: -10px;
        font: 13px 'Montserrat', sans-serif;
        letter-spacing: 2px;
    }
}

@media (max-width: 599.98px) {
    .main_header {
        flex-direction: column;
    }
}

.main_left {
    max-width: 280px;
    width: 24%;
}

@media (max-width: 999.98px) {
    .main_left {
        width: 100%;
        order: 2;
    }
}

.main_right {
    width: 80%;
    padding-left: 5%;
}

@media (max-width: 999.98px) {
    .main_right {
        width: 100%;
        order: 1;
        padding-left: 0;
    }
}

.listado_hoteles{
    padding-top: 20px;
}

.main_right .listado_hoteles .hotel {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel {
        flex-wrap: wrap;
    }
}

.main_right .listado_hoteles .hotel_img_box {
    line-height: 0;
    padding: 0;
    width: 31%;
}

.main_right .listado_hoteles .hotel_img_box--pic {
    position: relative;
}

.main_right .listado_hoteles .hotel_img_box--logo {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 2;
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_img_box--logo {
        bottom: 0;
        left: 0;
    }
}

.main_right .listado_hoteles .hotel_img_box--logo .logo-marca {
    width: auto;
    height: 40px;
}

.main_right .listado_hoteles .hotel_img_box img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 200px;
}

@media (max-width: 599.98px) {
  .main_right .listado_hoteles{
    padding-top: 20px;
  }
  .main_right .listado_hoteles .hotel_img_box {
    width: 100%; }
  .main_right .listado_hoteles .hotel_img_box .fotos_hotel_movil {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 3; }
  .main_right .listado_hoteles .hotel_img_box .fotos_hotel_movil .btn--fotos {
    color: white;
    width: auto; }
  .main_right .listado_hoteles .hotel_img_box .fotos_hotel_movil .btn--fotos span {
    margin-right: 0; } }
.main_right .listado_hoteles .hotel_info {
    padding: 10px 10px 10px 30px;
    width: 65%;
}

.main_right .listado_hoteles .hotel_info--left {
    width: 100%;
}

.main_right .listado_hoteles .hotel_info--right {
    width: 100%;
    text-align: center;
    max-width: 200px;
}

.main_right .listado_hoteles .hotel_info--right .btn--verhotel {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    background: #b48d48;
    color: white;
    height: 40px;
    width: 100%;
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_info--right .btn--verhotel {
        max-width: 130px;
        margin: 5px auto 10px;
        font-size: 12px;
    }
}

.main_right .listado_hoteles .hotel_info--right .btn--verhotel:hover {
    text-decoration: none;
    background-color: rgba(180, 141, 72, 0.8);
}

.main_right .listado_hoteles .hotel_info--nombre {
    font: 22px 'Playfair Display', serif;
    color: #b48d48;
    color: black;
}
.main_right .listado_hoteles .hotel_info--nombre a span{font-family: serif;}

.main_right .listado_hoteles .hotel_info--nombre .n_stars {
    font: 18px 'Montserrat', sans-serif;
    font-weight: 300;
    color: #b48d48;
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_info--nombre .n_stars {
        font-size: 16px;
    }
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_info--nombre {
        margin: 7px 0;
        font-size: 18px;
    }
}

.main_right .listado_hoteles .hotel_info--direccion {
    color: black;
    font: 13px 'Playfair Display', serif;
}

.main_right .listado_hoteles .hotel_info--localizacion {
    color: black;
    font: 13px 'Playfair Display', serif;
    color: #999;
}

.main_right .listado_hoteles .hotel_info--localizacion .icon-261 {
    color: #cc9944;
    width: 20px;
}

.main_right .listado_hoteles .hotel_info--localizacion .icon-261:before {
    font-size: 18px;
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_info--localizacion .ver_mapa_movil {
        padding-left: 5px;
    }

    .main_right .listado_hoteles .hotel_info--localizacion .ver_mapa_movil a {
        color: #b48d48;
        padding-left: 5px;
    }
    .main_right .listado_hoteles .hotel_info--localizacion .ver_mapa_movil button{
        color: #b48d48;
        padding-left: 5px;
    }
    .main_right .listado_hoteles .hotel_info--localizacion .ver_mapa_movil button:hover{
        text-decoration: underline;
    }
}

.main_right .listado_hoteles .hotel_info--descripcion {
    color: black;
    font: 13px 'Playfair Display', serif;
    color: #999;
    padding: 5px 0;
}

.main_right .listado_hoteles .hotel_info--footer {
    border-top: solid 1px #ccc;
    padding-top: 10px;
    order: 3;
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_info--footer {
        border-top: none;
    }
}

@media (max-width: 599.98px) {
    .main_right .listado_hoteles .hotel_info {
        padding: 10px;
        width: 100%;
    }
}

.main_right .listado_hoteles .hotel_info .btn--fotos, .main_right .listado_hoteles .hotel_info .btn--mapa {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: #b48d48;
    margin-right: 20px;
    width: 100px;
}

.main_right .listado_hoteles .hotel_info .btn--fotos span, .main_right .listado_hoteles .hotel_info .btn--mapa span {
    margin-right: 5px;
}

.main_right .listado_hoteles .hotel_info .btn--fotos .hover--btn, .main_right .listado_hoteles .hotel_info .btn--mapa .hover--btn {
    border-bottom: 1px solid white;
    margin-right: 0;
}

.main_right .listado_hoteles .hotel_info .btn--fotos:hover, .main_right .listado_hoteles .hotel_info .btn--mapa:hover {
    text-decoration: none;
}

.main_right .listado_hoteles .hotel_info .btn--fotos:hover .hover--btn, .main_right .listado_hoteles .hotel_info .btn--mapa:hover .hover--btn {
    border-bottom: 1px solid #b48d48;
}

.main_right .listado_hoteles .hotel:last-child {
    margin-bottom: 0;
}

.main_right--botones button {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    align-items: center;
    height: 50px;
    width: 104px;
}

.main_right--botones .btn--mapa, .main_right--botones .btn--lista {
    background: #efefef;
    color: #999;
}

.main_right--botones .btn--mapa.active, .main_right--botones .btn--lista.active {
    background: #b48d48;
    color: white;
    font-weight: 700;
}

.main_right--botones .btn--mapa.active:hover, .main_right--botones .btn--lista.active:hover {
    border: none;
}

.main_right--botones .btn--mapa:hover, .main_right--botones .btn--lista:hover {
    border: 1px solid #979797;
}

.main_right--botones .btn--lista [class|=icon] {
    padding-right: 5px;
}

.main_right--botones .btn--lista [class|=icon]:before {
    font: 14px/14px 'Icons';
}

#mapa_hoteles {
    display: none;
    margin-bottom: 20px;
    position: relative;
}

#mapa_hoteles img {
    width: 100%;
    height: auto;
}

.popup_mapa {
    height: 300px;
    width: 220px;
    position: absolute;
    top: 0;
    z-index: 9;
}

.popup_mapa--close {
    background: #b48d48;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 37px;
    height: 32px;
    text-align: center;
    padding-top: 5px;
}

.popup_mapa--info {
    padding: 10px;
}

.popup_mapa--nombre {
    color: black;
    font: 18px 'Playfair Display', serif;
}

.popup_mapa--nombre .n_stars {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    color: #b48d48;
}

@media (max-width: 599.98px) {
    .popup_mapa--nombre {
        margin: 7px 0;
    }
}

.popup_mapa--direccion {
    color: black;
    font: 11px 'Playfair Display', serif;
}

.popup_mapa--precio {
    color: black;
    font: 11px 'Playfair Display', serif;
    padding: 3px 0 7px;
}

.popup_mapa--precio .enteros {
    font: 18px 'Montserrat', sans-serif;
    color: #b48d48;
}

.popup_mapa--precio .decimales {
    font: 11px 'Montserrat', sans-serif;
    color: #b48d48;
}

.popup_mapa--verhotel .btn--verhotel {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    background: #b48d48;
    color: white;
    height: 40px;
    width: 100%;
    text-decoration: none;
}

.popup_mapa--verhotel .btn--verhotel:hover {
    text-decoration: none;
}

.popup_mapa--arrow_box {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.popup_mapa--arrow_box:after {
    border: solid transparent;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -15px;
    top: 100%;
    left: 50%;
    box-sizing: border-box;
    border-width: 10px;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.popup_mapa img {
    width: 100%;
    height: auto;
}

.marker_mapa {
    position: absolute;
    top: 350px;
    margin-left: 115px;
    border-radius: 50%;
    border: 8px solid #cc9944;
    width: 8px;
    height: 8px;
}

.marker_mapa:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    bottom: -25px;
    left: -5px;
    border: 9px solid transparent;
    border-top: 12px solid #cc9944;
}

/******* Iconos ********/
.icon-1:before {
    content: '\61';
    font: 25px/25px 'Icons';
}
.icon-10:before{
    content: 'j';
    font: 25px/25px 'Icons';
    text-transform:lowercase;
}

.icon-7:before {
    content: '\67';
    font: 25px/25px 'Icons';
}

.icon-149:before {
    content: '\e036';
    font: 25px/25px 'Icons';
}

.icon-174:before {
    content: '\e04f';
    font: 25px/25px 'Icons';
}

.icon-175:before {
    content: '\45';
    font: 25px/25px 'Icons';
}

.icon-178:before {
    content: '\e053';
    font: 25px/25px 'Icons';
}

.icon-131:before {
    content: '\e024';
    font: 25px/25px 'Icons';
}

.icon-297:before {
    content: '\e0ac';
    font: 25px/25px 'Icons';
}

.icon-332:before {
    content: '\e050';
    font: 25px/25px 'Icons';
}

.icon-385:before {
    content: '\e103';
    font: 25px/25px 'Icons';
}

.icon-202:before {
    content: '\e06b';
    font: 25px/25px 'Icons';
}

.icon-341:before {
    content: '\e0d7';
    font: 25px/25px 'Icons';
}

.icon-458:before {
    content: '\e14d';
    font: 25px/25px 'Icons';
}

.icon-150:before {
    content: '\e037';
    font: 25px/25px 'Icons';
}

.icon-376:before {
    content: '\e0fc';
    font: 25px/25px 'Icons';
}

.icon-455:before {
    content: '\e14a';
    font: 25px/25px 'Icons';
}

.icon-465:before {
    content: '\e157';
    font: 25px/25px 'Icons';
}

.icon-466:before {
    content: '\e156';
    font: 25px/25px 'Icons';
}

.icon-469:before {
    content: '\e158';
    font: 25px/25px 'Icons';
}

.icon-474:before {
    content: '\e15d';
    font: 25px/25px 'Icons';
}

.icon-191:before {
    content: '\e060';
    font: 25px/25px 'Icons';
}

.icon-154:before {
    content: '\e03b';
    font: 25px/25px 'Icons';
}

.icon-106:before {
    content: '\e00b';
    font: 25px/25px 'Icons';
}

.icon-423:before {
    content: '\e128';
    font: 25px/25px 'Icons';
}

.icon-89:before {
    content: '\0060';
    font: 25px/25px 'Icons';
}

.icon-218:before {
    content: '\e07a';
    font: 25px/25px 'Icons';
}

.icon-96:before {
    content: '\e001';
    font: bold 16px/25px 'Icons';
}

.icon-130:before {
    content: '\2a';
    font: 17px 'Icons';
}

.icon-165:before {
    content: '\e046';
    font: 25px/25px 'Icons';
}

.icon-207:before {
    content: '\e070';
    font: 25px/25px 'Icons';
}

.icon-251:before {
    content: '\e080';
    font: 25px/25px 'Icons';
}

.icon-259:before {
    content: '\e086';
    font: 20px/25px 'Icons';
}

.icon-261:before {
    content: '\e088';
    font: 25px/25px 'Icons';
}

.icon-269:before {
    content: '\e090';
    font: 25px/25px 'Icons';
}

.icon-271:before {
    content: '\e092';
    font: 25px/25px 'Icons';
}

.icon-294:before {
    content: '\e0a9';
    font: 25px/25px 'Icons';
}

.icon-296:before {
    content: '\e0ab';
    font: 25px/25px 'Icons';
}

.icon-303:before {
    content: '\e0b2';
    font: bold 14px 'Icons';
}

.icon-down:before {
    content: '\e013';
    font: bold 14px 'Icons';
}

.icon-304:before {
    content: '\e0b3';
    font: bold 14px 'Icons';
}

.icon-305:before {
    content: '\e0b4';
    font: bold 14px 'Icons';
}

.icon-306:before {
    content: '\e0b5';
    font: bold 14px 'Icons';
}

.icon-up:before {
    content: '\e00f';
    font: bold 14px 'Icons';
}

.icon-319:before {
    content: '\e0c2';
    font: 25px/25px 'Icons';
}

.icon-328:before {
    content: '\e0cb';
    font: 25px/25px 'Icons';
}

.icon-340:before {
    content: '\e0d6';
    font: 25px/25px 'Icons';
}

.icon-350:before {
    content: '\e0df';
    font: 25px/25px 'Icons';
}

.icon-351:before {
    content: '\e0e0';
    font: 25px/25px 'Icons';
}

.icon-385:before {
    content: '\e103';
    font: 25px/25px 'Icons';
}

.icon-449:before {
    content: '\e143';
    font: 25px/25px 'Icons';
}

.icon-453:before {
    content: '\e148';
    font: 25px/25px 'Icons';
}

.icon-457:before {
    content: '\e14c';
    font: 25px/25px 'Icons';
}

.icon-464:before {
    content: '\e153';
    font: 25px/25px 'Icons';
}

.icon-471:before {
    content: '\e15a';
    font: 25px/25px 'Icons';
}

.icon-483:before {
    content: '\e165';
    font: 25px/25px 'Icons';
}

.icon-spain:before {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHJlY3QgeT0iODUuMzMxIiBzdHlsZT0iZmlsbDojRkZEQTQ0OyIgd2lkdGg9IjUxMiIgaGVpZ2h0PSIzNDEuMzM3Ii8+DQo8Zz4NCgk8cmVjdCB5PSI4NS4zMzEiIHN0eWxlPSJmaWxsOiNEODAwMjc7IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjExMy43NzUiLz4NCgk8cmVjdCB5PSIzMTIuODgyIiBzdHlsZT0iZmlsbDojRDgwMDI3OyIgd2lkdGg9IjUxMiIgaGVpZ2h0PSIxMTMuNzc1Ii8+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==");
    background-size: contain;
    content: " ";
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
}

.icon-372:before {
    content: '\e00a';
    font: 25px/25px 'Icons';
}

.icon-297:before {
    content: '\e0ac';
    font: 25px/25px 'Icons';
}

.icon-308:before {
    content: '\e0b7';
    font: 25px/25px 'Icons';
}

.icon-341:before {
    content: '\e0d7';
    font: 25px/25px 'Icons';
}

.icon-90:before {
    content: '\7b';
    font: 25px/25px 'Icons';
}

.icon-196:before {
    content: '\e065';
    font: 25px/25px 'Icons';
}

.icon-315:before {
    content: '\e0be';
    font: 25px/25px 'Icons';
}

.modal-open {
    overflow: hidden;
}

.modal {
    background: white;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    z-index: 1050;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-close {
    color: #cc9944;
    text-align: right;
    padding: 10px;
    font-size: 24px;
    line-height: 1;
}

.modal-dialog {
    position: relative;
    width: auto;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-title {
    color: #b48d48;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin: 0 auto;
    padding: 10px 0;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding-bottom: 50px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.btn-filtrar-movil {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.btn-filtrar-movil .btn {
    background: #b48d48;
    color: white;
    font-size: 24px;
    font-weight: normal;
    font-style: italic;
    padding: 10px;
    width: 100%;
    z-index: 100;
}

.btn-filtrar-movil .icon-453 {
    padding-right: 10px;
}

.landing_cabecera {
    position: relative;
    /*min-height: 356px;*/
    /*margin: 80px 0;*/
    width: 100%;
}

@media (max-width: 799.98px) {
    .landing_cabecera {
        /*height: auto;*/
    }
}

@media (max-width: 599.98px) {
    .landing_cabecera {
        margin: 20px 0;
    }
}

@media (max-width: 999.98px) {
    .landing_cabecera {
        flex-direction: column;
        margin: 0 -10px;
        width: initial;
        height: initial;
    }
}

.landing .cabecera picture {
  position: absolute;
  z-index: 1;
  height: auto;
  width: 70%;
  line-height: 0px;
  left: 0;
  top: 0;
  bottom:0;
}

.landing .cabecera picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 999.98px) {
    .landing .cabecera picture {
        position: initial;
        width: 100%;
    }
}

.landing .cabecera_box {
    background: white;
    position: relative;
    right: 0px;
    z-index: 2;
    max-width: 460px;
    top: 70px;
    padding: 20px 10px 30px 60px;
}

@media (max-width: 999.98px) {
    .landing .cabecera_box {
        top: 0;
        text-align: center;
        max-width: 100%;
        padding: 20px 10px;
    }
}

.landing .cabecera_box--subtitle {
    font: 22px 'Playfair Display', serif;
    color: #b48d48;
    padding-bottom: 20px;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box--subtitle {
        font: 16px 'Playfair Display', serif;
        padding-bottom: 10px;
    }
}

.landing .cabecera_box--text {
    color: black;
    font: 16px 'Playfair Display', serif;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box--text {
        font: 13px 'Playfair Display', serif;
    }
}

.landing_main {
    padding-bottom: 60px;
}

@media (max-width: 999.98px) {
    .landing_main {
        flex-direction: column;
    }
}

@media (max-width: 799.98px) {
    .landing_main {
        padding-bottom: 10px;
    }
}

.landing .main_header {
    min-height: 50px;
    margin-bottom: 20px;
}

.landing .main_header--title span {
    font-weight: 500;
}

.landing .main_left--listado .listado--item {
    border-bottom: solid 1px #ccc;
    padding-bottom: 20px;
}

.landing .main_left--listado .listado--footer {
    padding: 10px 15px 30px;
}

.landing .main_left--listado .listado--footer a {
    color: black;
    font: 16px 'Playfair Display', serif;
    color: #b48d48;
    line-height: 30px;
}

@media (max-width: 999.98px) {
    .landing .main_left.hoteles_mas_vendidos {
        display: none;
    }
}

.landing .main_left.hoteles_mas_vendidos .listado {
    border: solid 1px #d8d8d8;
    padding: 8px 10px;
    text-align: center;
}

.landing .main_left.hoteles_mas_vendidos .listado--item {
    margin-bottom: 20px;
}

.landing .main_left.hoteles_mas_vendidos .listado--img {
    padding: 0 0 10px;
}

.landing .main_left.hoteles_mas_vendidos .listado--img img {
    height: auto;
    max-width: 100%;
}

.landing .main_left.hoteles_mas_vendidos .listado--nombre {
    font: 22px 'Playfair Display', serif;
    color: #b48d48;
    color: black;
}

.landing .main_left.hoteles_mas_vendidos .listado--nombre .n_stars {
    color: #b48d48;
}

.landing .main_left.hoteles_mas_vendidos .listado--localizacion {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    margin-top: 7px;
}

.landing .main_left.hoteles_mas_vendidos .listado .n_stars {
    font: 18px 'Montserrat', sans-serif;
    font-weight: 300;
}

.landing .main_right .listado_hoteles .hotel_info--puntuacion {
    color: #b48d48;
    font: 36px 'Montserrat', sans-serif;
    padding-top: 20px;
}

.landing .main_right .listado_hoteles .hotel_info--puntuacion span {
    font: 20px 'Montserrat', sans-serif;
}

.landing .main_right .listado_hoteles .hotel_info--puntuacion .txt-puntuacion {
    color: black;
    font: 16px 'Playfair Display', serif;
    margin-top: 10px;
}

.landing .main_right .listado_hoteles .hotel_info--puntuacion .icon-296 {
    margin-right: 10px;
}

.landing_footer {
    background: #efefef;
    padding-bottom: 30px;
}

.landing_footer--row {
    padding: 30px 0 0;
}

.landing_footer--title {
    font: 24px 'Playfair Display', serif;
    color: #b48d48;
    border-bottom: solid 1px #b48d48;
    margin-bottom: 30px;
    padding-bottom: 7px;
    font-style: italic;
}

@media (max-width: 599.98px) {
    .landing_footer--title {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

.landing_footer ul {
    margin: 10px 10px 0;
    flex-wrap: wrap;
}

.landing_footer ul li {
    color: black;
    font: 16px 'Playfair Display', serif;
    color: #b48d48;
    font-size: 10px;
    list-style: disc inside;
    margin-bottom: 5px;
    width: 25%;
}

.landing_footer ul li a {
    color: black;
    font-size: 16px;
    padding-left: 10px;
}

@media (max-width: 599.98px) {
    .landing_footer ul li a {
        font-size: 11px;
    }
}

.landing_footer .row1 ul li {
    width: 25%;
}

@media (max-width: 799.98px) {
    .landing_footer .row1 ul li {
        width: 50%;
    }
}

@media (max-width: 599.98px) {
    .landing_footer .row1 ul li {
        width: 100%;
    }
}

.landing_footer .row2 ul li {
    width: 33%;
}

@media (max-width: 799.98px) {
    .landing_footer .row2 ul li {
        width: 50%;
    }
}

@media (max-width: 599.98px) {
    .landing_footer .row2 ul li {
        width: 100%;
    }
}

.tpl-titulo-cabecera-ho header.sta-titulo-cabecera-ho_title > span {
    font: 16px 'Montserrat', sans-serif;
    display: block;
    font-weight: 300;
    line-height: normal;
    letter-spacing: normal;
    color: black;
}

.tpl-titulo-cabecera-ho header.sta-titulo-cabecera-ho_title span.stars {
    font: 18px 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 24px;
    display: inline;
    color: inherit;
}

@media (max-width: 599.98px) {
    .tpl-titulo-cabecera-ho header.sta-titulo-cabecera-ho_title > span {
        font-size: 12px;
        line-height: 18px;
        font-weight: normal;
        padding: 0 45px;
    }

    .tpl-titulo-cabecera-ho header.sta-titulo-cabecera-ho_title span.stars {
        font-size: 16px;
        padding: 0px;
    }
}

.bg-color {
    background: #efefef;
}

.bg-green {
    background: #7fa747;
}

.bg-white {
    background: white;
}

html {
    overflow-x: hidden;
}

.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media (max-width: 999.98px) {
    .full-width {
        width: 100%;
        position: initial;
        left: initial;
        right: initial;
        margin-left: initial;
        margin-right: initial;
    }
}

.btn-gold, .btn-gold > *, .title-gold {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: #cc9944;
    text-align: left;
}

.btn-gold [class|=icon], .btn-gold > * [class|=icon], .title-gold [class|=icon] {
    color: #cc9944;
}

@media (max-width: 599.98px) {
    .btn-gold, .btn-gold > *, .title-gold {
        font-size: 12px;
        letter-spacing: 2.57px;
    }
}

.btn-switch {
    font: 12px 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    background-color: #a8a8a8;
    color: white;
    cursor: pointer;
}

.btn-switch [class|=icon]:before {
    font: 20px/15px 'Icons';
    font-weight: 300;
    color: white;
}

.btn-switch:hover {
    background-color: rgba(127, 167, 71, 0.8);
}

.title-gold {
    color: #b48d48;
}

.vertical-line {
    border-left: solid 1px #b48d48;
    width: 1px;
    display: inline-block;
}

.closed > .hidden-on-close {
    display: none;
}

:not(.closed) > .hidden-on-open {
    display: none;
}

.closed:not(.tab_content--title) [class|=icon],
.tab:not(.show-selected) > [class|=icon],
.tab_content--title:not(.closed) [class|=icon] {
    transform: rotate(180deg);
}

ul.list-gold li {
    padding-left: 15px;
    position: relative;
}

ul.list-gold li:before {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_content {
        flex-direction: column;
    }
}

.landing_hotel .hotel_images {
    padding-right: 15px;
    max-width: 625px;
    width: 100%;
    font-size: 0px;
    user-select: none;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_images {
        margin: 0 auto;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 30px;
        max-width: 650px;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_images {
        padding-bottom: 0px;
    }
}

.landing_hotel .hotel_images .hotel_img {
    position: relative;
    margin-bottom: 10px;
    max-height: 320px;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.landing_hotel .hotel_images .hotel_img figure {
    width: 100%;
    height: 100%;
}

.landing_hotel .hotel_images .hotel_img figure #imgHotel {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.landing_hotel .hotel_images .hotel_img img {
    width: 100%;
    height: auto;
}

.landing_hotel .hotel_images .hotel_img_box--logo {
    position: absolute;
    width: auto;
    margin-top: 10px;
    height: 45px;
    z-index: 2;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_images .hotel_img_box--logo img {
        width: auto;
        height: 30px;
        display: none;
    }
}

.landing_hotel .hotel_images .hotel_img_box--gallery {
    position: absolute;
    width: auto;
    margin-top: 10px;
    right: 15px;
    bottom: 10px;
    z-index: 2;
    display: none;
}
@media (max-width: 599px) {
    .landing_hotel .hotel_images .hotel_img_box--gallery.hidden-up{display: block;}
}

.landing_hotel .hotel_images .hotel_img_box--gallery a {
    text-decoration: none;
}


.landing_hotel .hotel_images .hotel_img_box--gallery [class|=icon] {
    color: white;
}

.landing_hotel .hotel_images .hotel_gallery ul {
    margin-left: -10px;
    overflow: hidden;
}

.landing_hotel .hotel_images .hotel_gallery ul.closed {
    height: 90px;
}

.landing_hotel .hotel_images .hotel_gallery li {
    max-width: 80px;
    height: 80px;
    padding-left: 10.5px;
    margin-bottom: 10px;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_images .hotel_gallery li {
        margin-right: auto;
    }
}

.landing_hotel .hotel_images .hotel_gallery li figure, .landing_hotel .hotel_images .hotel_gallery li img {
    width: 100%;
    height: 100%;
}

.landing_hotel .hotel_images .hotel_gallery--button--more {
    margin-top: 15px;
}

.landing_hotel .hotel_images .hotel_gallery--button--more [class|=icon] {
    padding-left: 5px;
}

.landing_hotel .hotel_images .hotel_gallery--button--more [class|=icon]:before {
    font: 12px/12px 'Icons';
    font-weight: bold;
}

.landing_hotel .hotel_info {
    padding-left: 40px;
    max-width: 600px;
    width: 100%;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_info {
        margin: 0 auto;
        padding-left: 0px;
        padding-right: 0px;
        max-width: 650px;
    }
}

.landing_hotel .hotel_info--details {
    color: #cc9944;
    border-bottom: solid 1px #b48d48;
    padding-bottom: 14px;
    margin-bottom: 10px;
    display: flex;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_info--details {
        padding-bottom: 0px;
    }
}

.landing_hotel .hotel_info--details p {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: normal;
    color: black;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_info--details p {
        font-size: 12px;
    }
}

.landing_hotel .hotel_info--details [class|=icon] {
    padding-right: 5px;
    color: #cc9944;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_info--details [class|=icon] {
        font-size: 24px;
    }
}

.landing_hotel .hotel_info--details .vertical-line {
    height: 15px;
    margin-left: 15px;
    padding-left: 15px;
}

.landing_hotel .hotel_info--rate {
    min-height: 120px;
    margin: 24px 0;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_info--rate {
        margin: 10px 0px;
        min-height: initial;
    }
}

.landing_hotel .hotel_info--rate--global {
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    padding: 20px 30px;
    color: white;
    text-align: center;
    font: 12px 'Montserrat', sans-serif;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_info--rate--global {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        font-size: 14px;
        padding: 12px 30px;
    }

    .landing_hotel .hotel_info--rate--global .score {
        font-size: 24px;
    }

    .landing_hotel .hotel_info--rate--global p ~ p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }
}

.landing_hotel .hotel_info--rate--global .score {
    font-size: 30px;
    padding: 0 5px;
}

.landing_hotel .hotel_info--rate--global .score-text {
    font-size: 16px;
    display: block;
    color: white;
}

.landing_hotel .hotel_info--rate--text {
    width: 60%;
    padding: 15px 30px;
    color: black;
    font: 16px 'Playfair Display', serif;
    font-style: italic;
    line-height: 22px;
}

.landing_hotel .hotel_info--rate--text p {
    padding-bottom: 15px;
    margin-bottom: auto;
}

.landing_hotel .hotel_info--description {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 25px;
    overflow: hidden;
    position: relative;
    transition:all 3s;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_info--description {
        font-size: 13px;
        line-height: 19px;
    }
}

.landing_hotel .hotel_info--description.closed {
    height: 200px;
    transition:all 3s;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_info--description.closed {
        height: 80px;
    }
}

.landing_hotel .hotel_info--description strong, .landing_hotel .hotel_info--description a {
    color: #cc9944;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 25px;
}

.landing_hotel .hotel_info--description--button--more {
    margin-top: 15px;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_info--description--button--more {
        margin-top: 10px;
    }
}

.landing_hotel .hotel_info--description--button--more [class|=icon] {
    padding-left: 5px;
}

.landing_hotel .hotel_info--description--button--more [class|=icon]:before {
    font: 12px/12px 'Icons';
    font-weight: bold;
}

.landing_hotel .hotel_tabs {
    margin-top: 50px;
}

@media (max-width: 1199.98px) {
    .landing_hotel .hotel_tabs {
        margin-top: 20px;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs {
        margin-top: 0px;
    }
}

.landing_hotel .hotel_tabs--header {
    justify-content: flex-start;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--header {
        display: none !important;
    }
}

.landing_hotel .hotel_tabs--header .tab {
    padding: 20px 10px;
}

.landing_hotel .hotel_tabs--header .tab.show-selected {
    padding: 20px 20px;
    background: white;
}

.landing_hotel .hotel_tabs--header .tab.show-selected > * {
    color: black;
}

.landing_hotel .hotel_tabs--header .tab.next {
    padding-left: 20px;
}

.landing_hotel .hotel_tabs--header .tab.prev {
    padding-right: 20px;
}

@media (max-width: 1199.98px) {
    .landing_hotel .hotel_tabs--header .tab {
        padding: 10px 5px;
    }

    .landing_hotel .hotel_tabs--header .tab.show-selected {
        padding: 10px 10px;
        background: white;
    }

    .landing_hotel .hotel_tabs--header .tab.show-selected > * {
        color: black;
    }

    .landing_hotel .hotel_tabs--header .tab.next {
        padding-left: 10px;
    }

    .landing_hotel .hotel_tabs--header .tab.prev {
        padding-right: 10px;
    }
}

.landing_hotel .hotel_tabs--content--tab--button--more {
    display: none !important;
}

.landing_hotel .hotel_tabs--content--tab--button--more a {
    text-decoration: none;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content--tab--button--more {
        display: flex !important;
    }
}

.landing_hotel .hotel_tabs--content--tab--button--more .tab {
    margin: 0 -10px;
    width: 100%;
    padding: 15px 10px;
    color: black;
    font: 18px 'Playfair Display', serif;
}

.landing_hotel .hotel_tabs--content--tab--button--more .tab, .landing_hotel .hotel_tabs--content--tab--button--more .tab > * {
    color: #b48d48;
}

.landing_hotel .hotel_tabs--content--tab--button--more .tab:not(.show-selected) {
    border-top: 0.5px solid #efefef;
    border-bottom: 0.5px solid #efefef;
}

.landing_hotel .hotel_tabs--content--tab--button--more .tab.show-selected {
    margin: 0;
    padding: 15px 0;
    border-bottom: solid 1px #ccc;
}

.landing_hotel .hotel_tabs--content .tab_content {
    padding: 0;
    color: black;
    font: 16px 'Playfair Display', serif;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content .tab_content {
        padding: 15px 10px;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content {
        font-size: 13px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content--subtitle + p ~ p {
    margin-top: 24px;
}

.landing_hotel .hotel_tabs--content .tab_content--left {
    width: 50%;
    height: 100%;
    padding: 0px 40px 0px 0px;
}

.landing_hotel .hotel_tabs--content .tab_content .vertical-line {
    margin: 0 90px;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .vertical-line {
        margin: 0px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content--right {
    width: 50%;
    height: 100%;
    padding: 0px 0px 0px 40px;
}

.landing_hotel .hotel_tabs--content .tab_content--fullWidth {
    padding: 0;
    width: 100%;
    padding-bottom: 30px;
}

.tab-content.hotel_tabs—content.wrapper.bg-white{
    padding-top: 58px;
}
@media(max-width: 999px){
    .tab-content.hotel_tabs--content.wrapper.bg-white{
        padding-top: 0;
    }
}
.landing_hotel .hotel_tabs--content .tab_content--fullWidth--flat {
    width: 100%;
}

.landing_hotel .hotel_tabs--content .tab_content--title {
    width: 100%;
    font: 24px 'Playfair Display', serif;
    font-style: italic;
    color: #b48d48;
    border-bottom: solid 1px #b48d48;
    padding: 5px 0px;
}

.landing_hotel .hotel_tabs--content .tab_content--title [class|=icon] {
    color: #cc9944;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_tabs--content .tab_content--title {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 18px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content--subtitle {
    font: 22px 'Playfair Display', serif;
    color: #b48d48;
    margin-bottom: 5px;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_tabs--content .tab_content--subtitle {
        font-size: 18px;
        letter-spacing: 0px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content--subtitle [class|=icon] {
    padding-right: 12px;
    color: #cc9944;
    vertical-align: middle;
}

.landing_hotel .hotel_tabs--content .tab_content--others ul {
    padding-top: 30px;
    height: 150px;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content .tab_content--others ul {
        height: initial;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .grid-element {
    width: 25%;
    text-align: center;
    margin-top: 30px;
}

.landing_hotel .hotel_tabs--content .tab_content .grid-element [class|=icon] {
    color: #cc9944;
    padding-bottom: 5px;
}

.landing_hotel .hotel_tabs--content .tab_content .grid-element [class|=icon]:before {
    font: 32px/32px 'Icons';
}

.landing_hotel .hotel_tabs--content .tab_content .tpl-mapa-ho {
    width: 100%;
    padding: 25px 0px;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tpl-mapa-ho {
        margin-bottom: 15px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tpl-mapa-ho::before {
    content: none;
}

.landing_hotel .hotel_tabs--content .tab_content .tpl-mapa-ho .sta-mapa-ho_mapa {
    width: 100%;
    height: 360px;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tpl-mapa-ho {
        height: auto;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 26px;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tabTable, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv {
        font-size: 13px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable th, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv th {
    font-weight: bold;
    vertical-align: bottom;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable th [class|=icon], .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv th [class|=icon] {
    color: #cc9944;
    padding-bottom: 5px;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable th:first-child,
.landing_hotel .hotel_tabs--content .tab_content .tabTable td:first-child, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv th:first-child,
.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv td:first-child {
    text-align: left;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv th, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv-mv th {
    text-align: left;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv tr:nth-child(odd) td div > [class|=icon], .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv-mv tr:nth-child(odd) td div > [class|=icon] {
    margin: 0 auto;
    color: #cc9944;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv tr:nth-child(even) td > .d-flex > *, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv-mv tr:nth-child(even) td > .d-flex > * {
    width: 50%;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv tr:nth-child(even) td > .d-flex > * [class|=icon], .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv-mv tr:nth-child(even) td > .d-flex > * [class|=icon] {
    color: #cc9944;
    padding: 0px 5px 0px 20px;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv tr:nth-child(even) td > .d-flex > * [class|=icon]::before, .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv-mv tr:nth-child(even) td > .d-flex > * [class|=icon]::before {
    font-size: 18px;
}

.landing_hotel .hotel_tabs--content .tab_content .tabTable-mv tr:not(:first-child):nth-child(odd), .landing_hotel .hotel_tabs--content .tab_content .tabTable-mv-mv tr:not(:first-child):nth-child(odd) {
    border-top: solid 1px #ccc;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate {
    width: 100%;
    min-height: 120px;
    margin-top: 20px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight {
    margin-top: -5px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 905px;
    min-height: 150px;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight {
        min-height: 100px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight .tab_info--rate--global {
    width: 20%;
    padding: 30px 40px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight .tab_info--rate--global .score {
    padding: 0 5px;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight .tab_info--rate--global {
        width: 50%;
        padding: 15px 20px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight .tab_info--rate--text {
    width: 80%;
    padding: 15px 30px;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--highlight .tab_info--rate--text {
        width: 50%;
        flex-direction: column;
        padding: 7px 15px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal {
    width: 100%;
    max-width: 120px;
    justify-content: center;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal {
        justify-content: flex-start;
        padding-top: 10px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text {
    width: 100%;
    padding: 10px 30px;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text {
        padding: 10px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal {
    color: white;
    text-align: center;
    font: 18px 'Montserrat', sans-serif;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal {
        font-size: 14px;
    }

    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global p ~ p, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal p ~ p {
        font-size: 14px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global p ~ p, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal p ~ p {
    font: 12px 'Montserrat', sans-serif;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global .score, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal .score {
    font-size: 36px;
    padding: 0 5px;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global .score, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal .score {
        font-size: 24px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--global .score-text, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--personal .score-text {
    font-size: 16px;
    display: block;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text {
    color: black;
    font: 16px 'Playfair Display', serif;
    border: solid 1px #d5d5d5;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text {
        font-size: 13px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .user {
    line-height: normal;
    color: #4f4f4f;
    font-style: italic;
    margin-bottom: 5px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .user [class|=icon] {
    padding-right: 5px;
    vertical-align: sub;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text p {
    margin-bottom: auto;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress {
    margin: 5px 0;
    width: 50%;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress {
        width: 100%;
        margin: 0px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar {
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label, .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar {
        padding-right: 5px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label {
    align-items: baseline;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label p {
    color: black;
    font: 16px 'Playfair Display', serif;
    padding: 0;
    margin: 0;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label p {
        font-size: 13px;
        line-height: 22px;
    }

    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label p .score {
        font-size: 16px;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label p ~ p {
    font: 12px 'Montserrat', sans-serif;
    text-transform: uppercase;
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label p ~ p {
        margin-left: auto;
    }
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-label .score {
    color: #7fa747;
    font-size: 24px;
    padding: 0 5px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar {
    height: 5px;
    margin-top: 5px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    color: #7fa747;
    background-color: #d8d8d8;
    display: block;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar progress[value]::-webkit-progress-bar {
    background-color: #d8d8d8;
    border-radius: 3px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar progress[value]::-ms-fill {
    background-color: #7fa747;
    border-radius: 3px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar progress[value]::-moz-progress-bar {
    background-color: #7fa747;
    border-radius: 3px;
}

.landing_hotel .hotel_tabs--content .tab_content .tab_info--rate--text .progress-bar progress[value]::-webkit-progress-value {
    background-color: #7fa747;
    border-radius: 3px;
}

.landing_hotel .hotel_tabs #descripcion .tab_content--left,
.landing_hotel .hotel_tabs #descripcion .tab_content--right {
    min-height: 320px;
}
.landing_hotel .hotel_tabs #descripcion .tab_content--left, 
.landing_hotel .hotel_tabs #descripcion .tab_content--right > div{padding-bottom: 20px;}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs #descripcion .tab_content--left,
    .landing_hotel .hotel_tabs #descripcion .tab_content--right {
        min-height: initial;
    }

    .landing_hotel .hotel_tabs #descripcion .tab_content--left > div,
    .landing_hotel .hotel_tabs #descripcion .tab_content--right > div {
        padding-bottom: 15px;
    }
}

.landing_hotel .hotel_tabs #opiniones .tab_content--fullWidth {
    padding: 0px;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs #info .tab_content--fullWidth .vertical-line {
        border-left: none;
        border-bottom: solid 1px #b48d48;
        width: 100%;
        height: 1px;
        margin-bottom: 30px;
    }
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_tabs #descripcion .tab_content--fullWidth,
    .landing_hotel .hotel_tabs #info .tab_content--fullWidth,
    .landing_hotel .hotel_tabs #localizacion .tab_content--fullWidth,
    .landing_hotel .hotel_tabs #salones .tab_content--fullWidth--flat {
        flex-direction: column;
        padding: 0px;
    }

    .landing_hotel .hotel_tabs #descripcion .tab_content--fullWidth .tab_content--left,
    .landing_hotel .hotel_tabs #descripcion .tab_content--fullWidth .tab_content--right,
    .landing_hotel .hotel_tabs #info .tab_content--fullWidth .tab_content--left,
    .landing_hotel .hotel_tabs #info .tab_content--fullWidth .tab_content--right,
    .landing_hotel .hotel_tabs #localizacion .tab_content--fullWidth .tab_content--left,
    .landing_hotel .hotel_tabs #localizacion .tab_content--fullWidth .tab_content--right,
    .landing_hotel .hotel_tabs #salones .tab_content--fullWidth--flat .tab_content--left,
    .landing_hotel .hotel_tabs #salones .tab_content--fullWidth--flat .tab_content--right {
        width: 100%;
        padding: 0 0 15px;
    }
}

.landing_hotel .hotel_footer {
    padding: 50px 0px 60px;
}

@media (max-width: 1199.98px) {
    .landing_hotel .hotel_footer {
        padding: 50px 40px 60px;
    }
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_footer {
        padding: 25px 15px;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_footer {
        padding: 25px 0px;
    }
}

.landing_hotel .hotel_footer--title {
    font: 30px 'Playfair Display', serif;
    color: #b48d48;
    margin: 0 auto 50px;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_footer--title {
        font-size: 18px;
        letter-spacing: 0px;
        margin-bottom: 20px;
    }
}

.landing_hotel .hotel_footer .guarantee_box {
    max-width: 300px;
    width: 100%;
    text-align: center;
}

@media (max-width: 999.98px) {
    .landing_hotel .hotel_footer .guarantee_box {
        padding-bottom: 20px;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_footer .guarantee_box {
        padding-bottom: 10px;
    }
}

.landing_hotel .hotel_footer .guarantee_box .title-gold {
    text-align: center;
}

.landing_hotel .hotel_footer .guarantee_box p {
    color: black;
    font: 16px 'Playfair Display', serif;
    padding: 15px 0;
}

@media (max-width: 799.98px) {
    .landing_hotel .hotel_footer .guarantee_box p {
        padding: 10px;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .hotel_footer .guarantee_box p {
        font-size: 13px;
        padding: 10px 0px;
    }
}

.landing_hotel .hotel_footer .guarantee_box p a {
    display: block;
    color: #b48d48;
}

.landing_hotel .content-right {
    margin-left: auto;
}

.landing_hotel .btn-others-float {
    margin-top: 50px;
    margin-bottom: -108px;
}

.landing_hotel .btn-others-float .btn-others a {
    width: 210px;
    padding: 5px 0px 5px 10px;
    display: inline;
    position: relative;
}

@media (max-width: 599.98px) {
    .landing_hotel .btn-others-float .btn-others a {
        width: 185px;
    }
}

.landing_hotel .btn-others-float .btn-others a:after {
    content: '\e103';
    font: 28px Icons;
    vertical-align: middle;
    margin-right: 14px;
    font-weight: bold;
    position: absolute;
    padding-left: 8px;
    top: 100%;
    margin-top: -28px;
}

@media (max-width: 1199.98px) {
    .landing_hotel .btn-others-float {
        margin: 0 auto;
        padding: 20px 40px 0px;
    }

    .landing_hotel .btn-others-float .content-right {
        margin: 0 auto;
    }
}

@media (max-width: 599.98px) {
    .landing_hotel .btn-others-float {
        padding: 15px 40px 10px;
    }
}

.landing .landing_cabecera.sta-sinImg {
    flex-direction: unset;
    margin: 0;
}

.landing .landing_cabecera.sta-sinImg .cabecera_box {
    max-width: none;
    padding: 20px 10px;
    top: 0;
}
.landing .landing_cabecera.sta-sinTexto picture{display: none;}

.landing_cabecera.sta-sinImg picture {
    display: none;
}

@media (min-width: 999.98px) {
    .justify-content-end.sta-sinImg {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .landing .landing_cabecera.sta-sinImg .cabecera_box {
        max-width: none;
        padding: 20px 0 40px;
        padding-left: 5%;
        width: 80%;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max {
    display: flex;
    justify-content: space-between;
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max header {
    text-align: left;
}

@media (max-width: 999.98px) {
    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max {
        flex-direction: column;
        align-items: center;
    }

    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max header {
        text-align: center;
        padding-bottom: 10px;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price {
    color: black;
    font: 16px 'Playfair Display', serif;
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text {
    margin-right: 20px;
}

@media (max-width: 599.98px) {
    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text {
        margin-right: 10px;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .txt-price {
    color: black;
    font: 16px 'Playfair Display', serif;
    margin-right: 5px;
}

@media (max-width: 599.98px) {
    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .txt-price {
        font-size: 13px;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .num-price {
    font: 20px 'Montserrat', sans-serif;
    color: #b48d48;
    white-space: nowrap;
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .num-price-big {
    font-size: 30px;
}

@media (max-width: 599.98px) {
    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .num-price {
        font-size: 14px;
    }

    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .num-price-big {
        font-size: 24px;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .subtxt-price {
    color: black;
    font: 16px 'Playfair Display', serif;
    color: #999;
    text-align: right;
    margin-top: -5px;
}

@media (max-width: 599.98px) {
    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--text .subtxt-price {
        font-size: 13px;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--buttom .btn--verhotel {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: #b48d48;
    color: white;
    min-width: 270px;
    padding: 5px 15px;
    max-height: 41px;
    height: 100%;
}

@media (max-width: 599.98px) {
    .buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--buttom .btn--verhotel {
        font-size: 12px;
        letter-spacing: 2.57px;
        max-width: 130px;
        padding: 10px;
        max-height: auto;
        min-width: auto;
        height: auto;
    }
}

.buy-processs:not(.unavailability) .sta-titulo-cabecera-ho_max .buy-processs-price--buttom .btn--verhotel:hover {
    text-decoration: none;
    background-color: rgba(180, 141, 72, 0.8);
}

.buy-processs .hotel_checkout {
    padding-top: 30px;
}

.buy-processs .hotel_checkout--title {
    width: 100%;
    font: 24px 'Playfair Display', serif;
    font-style: italic;
    color: #b48d48;
    border-bottom: solid 1px #b48d48;
    padding: 5px 0px;
    margin-bottom: 20px;
}

.buy-processs .hotel_checkout--title [class|=icon] {
    color: #cc9944;
}

@media (max-width: 1199.98px) {
    .buy-processs .hotel_checkout--title :first-child {
        flex-direction: column;
    }
}

.buy-processs .hotel_checkout--title .date {
    font: 18px 'Montserrat', sans-serif;
    font-weight: 300;
    padding: 0 5px;
}

.buy-processs .hotel_checkout--title .btn-gold {
    padding: 12px 27px;
    margin-bottom: 5px;
    border: solid 1px #b48d48;
    white-space: nowrap;
}

.buy-processs .hotel_checkout--title .btn-gold [class|=icon] {
    padding-right: 5px;
}

.buy-processs .hotel_checkout--title .btn-gold [class|=icon]::before {
    font-size: 20px;
}

.buy-processs .hotel_checkout--title .btn-gold:hover {
    color: white;
    background-color: rgba(180, 141, 72, 0.8);
}

.buy-processs .hotel_checkout--title .btn-gold:hover [class|=icon]::before {
    color: white;
}

.buy-processs .hotel_checkout--text {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 25px;
    margin-bottom: 20px;
}

@media (max-width: 999.98px) {
    .buy-processs .hotel_checkout--roomlist {
        flex-direction: column;
        align-items: center;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs {
    width: 70vw;
    max-width: 940px;
}

@media (max-width: 999.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs {
        width: 100%;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header {
    border-bottom: solid 1px #b48d48;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab {
    margin-top: auto;
    padding: 7px 20px;
    background-color: #d8d8d8;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab:first-of-type .icon-304:before{
    display: none;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab:last-of-type .icon-305:before{
    display: none;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab {
        padding: 4.5px 6.5px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab a {
    text-decoration: none;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab-text {
    font: 12px 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.57px;
    color: #333;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 3px;
    text-align: center;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab-text {
        font-size: 10px;
        letter-spacing: 1.25px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab-num {
    font: 20px 'Montserrat', sans-serif;
    color: #b48d48;
    letter-spacing: 5px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab-num {
        font-size: 12px;
        letter-spacing: 0px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab [class|=icon] {
    display: none;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab [class|=icon]:first-child {
    margin-right: 5px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab [class|=icon]:last-child {
    margin-left: 5px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab:not(.show-selected):hover {
    background-color: white;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected {
    padding: 17px 17px 0 17px;
    background-color: transparent;
    border: solid 1px #b48d48;
    border-bottom: 3px solid #efefef;
    margin-bottom: -2px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected {
        padding: 13px 13px 0 13px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected .tab-text {
    font-size: 14px;
    padding: 0px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected .tab-text {
        font-size: 10px;
        letter-spacing: 0.83px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected .tab-num {
    margin-bottom: -9px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected [class|=icon] {
    display: initial;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected .highlight {
    font-size: 36px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--header .tab.show-selected .highlight {
        font-size: 24px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users {
    margin-top: 15px;
    color: black;
    font: 16px 'Playfair Display', serif;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users > :nth-child(n) {
    margin: 0px 15px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users [class|=icon] {
    color: #cc9944;
    padding-right: 5px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users [class|=icon].icon-child::before {
    font-size: 18px;
    line-height: 18px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users {
        font-size: 13px;
        line-height: 25px;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users > :nth-child(n) {
        margin: 0px 8px;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users [class|=icon]::before {
        font-size: 18px;
        line-height: 18px;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-users [class|=icon].icon-child::before {
        font-size: 13px;
        line-height: 14px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available {
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available {
        margin-bottom: 10px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--title {
    font: 24px 'Playfair Display', serif;
    color: #b48d48;
    text-align: left;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--title {
        font-size: 18px;
        letter-spacing: 0;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type {
    margin-top: 7px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row {
    margin-bottom: 3px;
    height: 100%;
    max-height: 64px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type {
    width: 100%;
    max-width: 150px;
    padding-left: 20px;
    padding-right: 11.5px;
    font: 12px 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    border-right: 32px solid #cccccc;
    background-color: white;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type:lang(de){padding-left: 10px;font-size: 10px;}
@media (min-width: 800px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type {
    padding-left: 60px !important;
    }
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type:before {
    position: absolute;
    left: 10px;
    top: 10px;
    font: 40px/40px 'Icons';
    color: #b48d48;
    }
    /*solo alojamiento*/
     .icon-36:before{
    content: 'J';
     }
    /*desayuno*/
    .icon-68:before{
    content: '&';
     }
    /*pension completa*/
    .icon-429:before{
    content: '\e12e';
    }
    /*media pension*/
    .icon-293:before{
    content: '\e0a8';
    }
    /*todo incluido*/
    .icon-bien:before{
        content: '\e07f';
    }
}

@media (max-width: 799.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type {
        max-width: 80px;
        width: 25%;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type:after {
    content: '';
    position: absolute;
    top: 0px;
    right: -32px;
    width: 0;
    height: 0;
    border-top: 31px solid transparent;
    border-left: 32px solid white;
    border-bottom: 31px solid transparent;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type {
        font-size: 11px;
        text-transform: initial;
        padding-left: 5px;
        padding-right: 7px;
        border-right: 19px solid #cccccc;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type:after {
        right: -18px;
        border-left: 18px solid white;
    }
}
@media(min-width: 600px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type + div >div:after{content: "";position: absolute;top: 0;bottom: 0;width: 15px;left: -14px;background: #fff;}
}
@media(min-width: 601px) {

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .offer-type:after {
    right: -18px;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid white;
    }
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate::before {
        width: 15px;
    border-top: 18px solid white;
    border-left: 18px solid transparent;
    border-bottom: 18px solid white;
    }
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type + div >div.selected:before{content: "";position: absolute;top: 0;bottom: 0;width: 15px;left: -14px;background-color: rgba(149, 255, 0, 0.102);z-index: 1;}
}


.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type + div {
    width: 100%;
    background-color: white;
    position: relative;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row.clase-prueba .room-subrow .offer-button .btn-switch {
    padding: 8px 0;
 }
 @media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row.clase-prueba .room-subrow .offer-button .btn-switch {
        padding: 5.5px 0;
        width: 30px;
    }
 }
.room-row.clase-prueba {top: 30px!important;}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow {
    min-height: 64px;
    font: 12px 'Montserrat', sans-serif;
    line-height: 12px;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow {
        font-size: 9px;
        letter-spacing: 0px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate {
    width: 100%;
    padding-left: 13.5px;
    position: relative;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate {
        padding-left: 0px;
        padding-right: 15px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate .discount {
    font: 10px 'Montserrat', sans-serif;
    color: white;
    letter-spacing: 0.21px;
    border-radius: 4px;
    border: solid 1px #1e74d9;
    background-color: #4a90e2;
    padding: 1.5px 6px;
    margin: 0px 10px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate .discount span {
    font-size: 14px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate a {
    margin: 0px 10px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate a, .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate a:hover {
    text-decoration: none;
}

@media (max-width: 799.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate a {
        margin: 0px 5px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate [class|=icon]::before {
    font-size: 18px;
    line-height: 18px;
    color: #cc9944;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price {
    width: 100%;
    padding: 2px 15px 2px 0px;
    font: 14px 'Montserrat', sans-serif;
    text-align: center;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price > :first-child {
    justify-content: flex-end;
    align-items: center;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price-total {
    align-items: flex-end;
    padding-right: 5px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price-total.discount {
    color: #7fa747;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price-old {
    font: 10px 'Montserrat', sans-serif;
    text-align: right;
    line-height: 18px;
    font-weight: 300;
    color: #666;
    margin-right: 30px;
    text-decoration: line-through;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price-subtext {
    font: 8px 'Montserrat', sans-serif;
    font-weight: 500px;
    text-transform: uppercase;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price {
        font-size: 12px;
        letter-spacing: normal;
        padding: 0px 10px 0px;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price-old {
        line-height: 13px;
        margin-right: 0;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price > :first-child {
        flex-direction: column;
        justify-content: center;
        align-items: initial;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-rate > :nth-child(n), .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-price > :nth-child(n) {
    height: 100%;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-button {
    max-width: 115px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-button .btn-switch {
    padding: 24px 0;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-button .btn-switch {
        padding: 22px 0;
        width: 30px;
    }
}
@media(min-width: 601px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate::before {
    width: 15px;}
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate, .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(odd) .offer-price {
    /*border-bottom: 1px solid #cccccc;*/
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(odd) .offer-button {
    border-bottom: 1px solid white;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -31px;
    width: 0;
    height: 0;
    border-top: 31px solid white;
    border-left: 32px solid transparent;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate::before {
        left: -18px;
        border-left: 18px solid transparent;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(even) .offer-rate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -31px;
    width: 0;
    height: 0;
    border-bottom: 30px solid white;
    border-left: 32px solid transparent;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-child(even) .offer-rate::before {
        left: -18px;
        border-left: 18px solid transparent;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected {
    background-color: rgba(149, 255, 0, 0.102);
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-of-type(2) .offer-rate::after{content: "";width: 2px;height: 2px;}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected:nth-child(odd) .offer-rate::before {
    border-top: 32px solid #F4FFE5 !important;
    border-bottom: 32px solid #F4FFE5 !important;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected:nth-child(even) .offer-rate::before {
    border-bottom: 30px solid #F4FFE5;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected .btn-switch {
    background-color: #7fa747;
    position: relative;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected .btn-switch::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-right: 10px solid #7fa747;
    border-bottom: 32px solid transparent;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row.clase-prueba .room-subrow.selected .btn-switch::before {

    border-top: 15px solid transparent;
    border-right: 9px solid #7fa747;
    border-bottom: 16px solid transparent;
    left: -9px;
}   

.buy-processs .hotel_checkout--roomlist .roomlist--price {
    margin-top: 35px;
    width: 25%;
    max-width: 290px;
    height: 100%;
    border: solid 1px #b48d48;
    padding: 10px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .offer-type:after {

    right: -16px;

    border-top: 32px solid transparent;

    border-left: 16px solid white;

    border-bottom: 32px solid transparent;

}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate::before {

    width: 2px;
    border-top: 32px solid white;
    border-left: 16px solid transparent;
    border-bottom: 32px solid white;

}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row 

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .room-subrow:nth-child(odd) .offer-rate, .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .sta-only .room-available--type .room-row .room-subrow:nth-child(odd) .offer-price {
    border: none;
}

@media (max-width: 999.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--price {
        width: 100%;
        margin-top: 0px;
    }
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--price {
        padding: 10px 0px;
        max-width: initial;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--total {
    padding: 10px 0px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--total .txt-price {
    font: 22px 'Playfair Display', serif;
    color: black;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--total .num-price {
    font: 20px 'Montserrat', sans-serif;
    color: #b48d48;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--total .num-price-big {
    font: 36px 'Montserrat', sans-serif;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--total .subtxt-price {
    font: 14px 'Playfair Display', serif;
    color: gray;
    text-align: center;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--price--total {
        padding: 0px;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--price--total .txt-price {
        font-size: 13px;
        line-height: normal;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--price--total .num-price {
        font-size: 14px;
        letter-spacing: normal;
        line-height: normal;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--price--total .num-price-big {
        font-size: 24px;
        letter-spacing: normal;
        line-height: normal;
    }

    .buy-processs .hotel_checkout--roomlist .roomlist--price--total .subtxt-price {
        font-size: 13px;
        letter-spacing: normal;
        line-height: normal;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--conversor {
    padding: 10px 0px;
    text-align: center;
    position: relative;
    min-width: 260px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--conversor * {
    text-align: center;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--conversor .subtxt-conversor {
    font: 14px 'Montserrat', sans-serif;
    color: #b48d48;
}

@media (max-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--price--conversor .subtxt-conversor {
        font-size: 12px;
        letter-spacing: normal;
        line-height: normal;
    }
    .roomlist--price--buttom.hidden-down.d-flex.align-items-center{
        display:block!important; 
        width: 200px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--buttom {
    width: 100%;
    padding-top: 10px;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--buttom .btn--verhotel {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: #b48d48;
    color: white;
    width: 100%;
    max-height: 41px;
    padding: 11px 0;
    text-align: center;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected .hidden-down2{display: none;}
@media (min-width: 601px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected .hidden-down2{
    display: block;
}
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow.selected .hidden-selected{
    display: none;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .hidden-down2{
    display: none;
}

.buy-processs .hotel_checkout--roomlist .roomlist--price--buttom .btn--verhotel:hover {
    text-decoration: none;
    background-color: rgba(180, 141, 72, 0.8);
}

.hotel_checkout--form .availability-form {
    flex-direction: row;
    width: 100%;
    background-color: #e2e2e2;
    padding-top: 30px;
}

.hotel_checkout--form .availability-form-text {
    flex-direction: column;
    width: 100%;
}

.hotel_checkout--form .availability-form-text_title {
    text-align: center;
    color: #b48d48;
    font: 24px 'Playfair Display', serif;
    padding-bottom: 16px;
}

.hotel_checkout--form .availability-form-text_subtitle {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 25px;
    text-align: center;
    max-width: 595px;
    margin: 0 auto;
    padding: 0 10px 24px;
}

.hotel_checkout--form .availability-form-input {
    padding: 0 10px 30px;
}

.hotel_checkout--form .reservation-text-input-2.sta-condiciones-availability{
    margin-bottom:20px;
    text-align:center;
}

@media (max-width: 799.98px) {
    .hotel_checkout--form .availability-form-input {
        flex-direction: column;
    }
}

.hotel_checkout--form .availability-form-submit {
    text-align: center;
    padding-bottom: 32px;
}

.hotel_checkout--form .availability-form-submit button {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    width: 100%;
    max-width: 123px;
    min-height: 46px;
    color: #b48d48;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #b48d48;
    transition: .3s;
}
.hotel_checkout--form .availability-form-submit button:lang(fr){
    padding: 5px;
}

.hotel_checkout--form .availability-form-submit button:hover {
    color: white;
    background-color: rgba(180, 141, 72, 0.8);
}

.hotel_checkout--form .form-av_input, .hotel_checkout--form .form-av_phone {
    position: relative;
    margin-right: 2%;
    max-width: 280px;
    width: 100%;
}

.hotel_checkout--form .form-av_input input, .hotel_checkout--form .form-av_phone input {
    background-color: #fff;
    padding-left: 10px;
    display: block;
    height: 40px;
    box-sizing: border-box;
    width: 100%;
    color: #21212a;
    -webkit-appearance: none;
}

.hotel_checkout--form .form-av_input ::-webkit-input-placeholder, .hotel_checkout--form .form-av_phone ::-webkit-input-placeholder {
    /* Edge */
    color: #8d8d8d;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.hotel_checkout--form .form-av_input :-ms-input-placeholder, .hotel_checkout--form .form-av_phone :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8d8d8d;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.hotel_checkout--form .form-av_input ::placeholder, .hotel_checkout--form .form-av_phone ::placeholder {
    color: #8d8d8d;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.hotel_checkout--form .form-av_input:last-child, .hotel_checkout--form .form-av_phone:last-child {
    margin-right: 0;
}

@media (max-width: 799.98px) {
    .hotel_checkout--form .form-av_input, .hotel_checkout--form .form-av_phone {
        max-width: 350px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.hotel_checkout--form .form-av_phone {
    width: 100%;
    max-width: 350px;
}

.hotel_checkout--form .form-av_phone .flagdiv {
    position: relative;
    background: white;
    min-width: 90px;
    max-width: 145px;
    width: 30%;
    height: 30px;
    padding-top: 10px;
    margin-right: 2%;
    margin-bottom: 0;
}

.hotel_checkout--form .form-av_phone .flagdiv .selectpicker {
    padding-left: 10px;
    height: 40px;
    box-sizing: border-box;
    width: 100%;
    color: #21212a;
    font: 12px "Montserrat";
    -webkit-appearance: none;
}

.hotel_checkout--form .form-av_label_placeHolder {
    color: #8d8d8d;
    font-family: "Montserrat", sans-serif;
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 13px;
    font-weight: 300;
}

.busqueda_realizada {
    background: #464646;
    color: white;
    margin-bottom: 10px;
    padding: 10px;
}

.busqueda_realizada--left .icon-131, .busqueda_realizada--left .icon-297 {
    color: #b48d48;
    padding-right: 7px;
}

.busqueda_realizada--left .icon-131:before, .busqueda_realizada--left .icon-297:before {
    font-size: 18px;
}

.busqueda_realizada--left .icon-385 {
    padding: 0 7px;
}

.busqueda_realizada--title {
    color: black;
    font: 18px 'Playfair Display', serif;
    color: white;
    padding-bottom: 5px;
}

.busqueda_realizada--date {
    font: 13px 'Montserrat', sans-serif;
}

.busqueda_realizada--rooms {
    font: 13px 'Montserrat', sans-serif;
}

.busqueda_realizada--right {
    border-left: 1px solid #efefef;
    color: #cc9944;
    padding: 25px 15px 0 25px;
}

*::-ms-backdrop, .room-subrow {
    min-height: auto !important;
}

/* fix IE11 */
.filtros {
    border: solid 1px #d8d8d8;
}

@media (max-width: 599.98px) {
    .filtros{
        border-top: 1px solid #d8d8d8;
        border-bottom:none;
    }
    .modal.show .modal-dialog{
        padding-left:15px;
    }
}

.filtros .flt_hot {
    color: black;
    font: 16px 'Playfair Display', serif;
    border-bottom: solid 1px #ccc;
    clear: both;
    padding: 15px;
}

.filtros .flt_hot_opt {
    margin-top: 14px;
    clear: both;
}

.filtros .flt_hot_opt .fltNomHotel {
    font: 12px 'Montserrat', sans-serif;
    text-transform: uppercase;
    border: solid 1px #d8d8d8;
    height: 50px;
    padding: 0 10px;
    max-width: 180px;
    width: 100%;
}

@media (max-width: 599.98px) {
    .filtros .flt_hot_opt .fltNomHotel {
        max-width: 100%;
    }
}

.filtros .flt_hot_opt .button_filter_name {
    background: #b48d48;
    color: white;
}

.filtros .flt_hot_opt .button_filter_name .icon-259 {
    padding: 0 10px;
}

.filtros .flt_hot_opt .button_filter_name:hover {
    background: rgba(180, 141, 72, 0.8);
}

.filtros .flt_hot .flt_min_precio, .filtros .flt_hot .flt_max_precio {
    font: 11px 'Montserrat', sans-serif;
    background: #b48d48;
    color: white;
    cursor: pointer;
    padding: 5px;
    margin-top: 10px;
}

.filtros .flt_hot .flt_min_precio::before, .filtros .flt_hot .flt_max_precio::before {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 3px solid transparent;
    /* izquierda flecha */
    border-right: 3px solid transparent;
    /* derecha flecha */
    border-bottom: 6px solid #b48d48;
    /* base flecha y color*/
    font-size: 0px;
    line-height: 0px;
    position: absolute;
    margin: -10px 0 0 15px;
}

.filtros .flt_hot .flt_min_precio:hover, .filtros .flt_hot .flt_max_precio:hover {
    background: rgba(180, 141, 72, 0.8);
}

.filtros .flt_hot .flt_min_precio {
    float: left;
}

.filtros .flt_hot .flt_max_precio {
    float: right;
}

.filtros .flt_hot .fltpre {
    margin: 30px 0 40px;
}

.filtros_opt {
    text-align: left;
    width: 100%;
}

.filtros .icon-306 {
    color: #cc9944;
}

.filtros .collapsed .icon-306:before {
    content: '\e0b2';
}

.custom-checkbox {
    margin-bottom: 15px;
    width: auto;
}

.custom-checkbox .box {
    border: none;
    position: relative;
    width: auto;
    display: inline-block;
    padding-left: 32px;
}

.custom-checkbox input[type="checkbox"] + span:before {
    content: '';
    width: 22px;
    height: 22px;
    float: left;
    border: none;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    background: white;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -11px;
    left: 4px;
}
#por-cat .custom-checkbox input[type="checkbox"] + span:after{
    left: 4px;
}

.custom-checkbox input[type="checkbox"] + span:hover:before {
    box-shadow: 0 0 2px 0 black;
}

.custom-checkbox input[type="checkbox"]:checked + span:after {font: 14px 'Icons';content: '\e0a9';width: 0;height: 0;border: none; border-radius: 0;color: #b48d48;position: absolute;top: 50%;left: 8px;margin-top: -7px;}

.custom-checkbox input[type="checkbox"]:checked + span.sta-categoria:after {
    margin-left: 4px;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-cat {
    position: relative;
}

.checkbox-cat input[type="checkbox"] {
    display: none;
}

.checkbox-cat .box {
    width: 44px;
    height: 80px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    position: relative;
    border: none;
    background: #efefef;
    border-radius: 0;
    margin: 0 5px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checkbox-cat .box [class|=icon]:before {
    font: 12px/12px 'Icons';
    color: #cc9944;
}

.checkbox-cat .box:hover {
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
}

@media (min-width: 1000px) and (max-width: 1199.98px) {
    .checkbox-cat .box {
        width: 35px;
    }
}

.checkbox-cat input[type="checkbox"]:checked + .box {
    background: #b48d48;
    color: white;
}

.checkbox-cat input[type="checkbox"]:checked + .box [class|=icon]:before {
    color: white;
}

.checkbox-cat:last-child .box {
    margin: 0;
}

.button-go-top {
    max-width: 260px;
    width: 100%;
    border: solid 1px #b48d48;
    margin-top: 20px;
    position: fixed;
    top: 83%;
    display: none !important;
}
@media (min-width: 1101px){
    .button-go-top{
        max-width: 280px;
    }
}


.button-go-top .btn-gold {
    padding: 12px 20px;
}

.button-go-top .btn-gold > *, .button-go-top .btn-gold {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: #cc9944;
    text-align: center;
}

.button-go-top .btn-gold > * [class|=icon], .button-go-top .btn-gold [class|=icon] {
    color: #cc9944;
    padding-left: 5px;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: 3px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -7px;
    margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

/* Component containers
----------------------------------*/
.ui-widget {
    font-family: Verdana, Arial, sans-serif;
    font-size: .9em;
}

.ui-widget .ui-widget {
    font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1em;
}

.ui-widget-content {
    background: #efefef;
    color: #222222;
}

.ui-widget-content a {
    color: #222222;
}

.ui-widget-header {
    border: 1px solid #b48d48;
    background: #b48d48;
}

.ui-widget-header a {
    color: white;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border-radius: 100%;
    background: #b48d48;
    font-weight: normal;
    color: #222;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #222;
    text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #aaa;
    background: #e5e5e5;
    font-weight: normal;
    color: #212121;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
    color: #212121;
    text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #396aab;
    background: #396aab;
    font-weight: normal;
    color: #fff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #fff;
    text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #ff9933;
    background: #ff9933;
    color: #fff;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #fff;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #fef1ec;
    color: #cd0a0a;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #cd0a0a;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #cd0a0a;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35);
    /* For IE8 - See #6059 */
}

.resultados-busqueda {
    padding-bottom: 30px;
}

.resultados-busqueda .main_header {
    margin: 30px 0 20px;
}

.resultados-busqueda .main_header--title .icon-453 {
    margin-right: 20px;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_header--title {
        border: none;
        margin-bottom: 0;
    }
}

.resultados-busqueda .main_header_order {
    margin-top: 30px;
}

.resultados-busqueda .main_header_order .order_title {
    color: black;
    font: 16px 'Playfair Display', serif;
}

.resultados-busqueda .main_header_order .order_options {
    margin-top: 10px;
}

.resultados-busqueda .main_header_order .order_options li {
    color: #b48d48;
}

.resultados-busqueda .main_header_order .order_options li a {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    color: #b48d48;
    font-weight: 500;
}

.resultados-busqueda .main_header_order .order_options li:before {
    content: "|";
    padding: 0 15px;
}

.resultados-busqueda .main_header_order .order_options li:first-child:before {
    content: "";
    padding: 0;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_header {
        margin: 0 0 20px;
    }
}

@media (min-width: 1000px) {
    .resultados-busqueda .main_right {
        width: 72%;
    }
}

@media (min-width: 1200px) {
    .resultados-busqueda .main_right {
        width: 80%;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price {
    border: 4px solid #b48d48;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--header {
    background: #b48d48;
    color: white;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--box {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    padding: 5px 10px;
    width: 90px;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--box {
        align-items: center;
        font-size: 11px;
        padding: 5px 20px;
        width: auto;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--box .icon-269 {
    padding-right: 7px;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--title {
    font: 22px 'Playfair Display', serif;
    padding: 0 0 4px 10px;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--time {
    color: black;
    font: 16px 'Playfair Display', serif;
    color: white;
    margin: 0 5px 5px 0;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--time .contador {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    letter-spacing: 0;
    text-transform: none;
    padding: 7px 30px;
    margin-left: 10px;
}

@media (max-width: 799.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--time .contador {
        display: block;
        margin-left: 0;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--descuento {
    color: #b48d48;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--descuento {
        order: 2;
        font-size: 16px;
        padding-left: 10px;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--antic {
    color: #999;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-decoration: line-through;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--antic {
        order: 1;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--precio {
    color: #b48d48;
    font-family: "Montserrat", sans-serif;
    padding: 0 20px 0 0;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--precio .txt-precio {
    color: black;
    font: 13px 'Playfair Display', serif;
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--precio .enteros {
    font-size: 30px;
    line-height: 30px;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--precio .enteros {
        font-size: 24px;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--precio .decimales {
    font-size: 20px;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--precio .decimales {
        font-size: 14px;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--precio .txt-hab-noche {
    color: black;
    font: 13px 'Playfair Display', serif;
    color: #999;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--precio {
        order: 3;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hot_price--footer {
    border-top: solid 1px #ccc;
    padding-top: 0;
}

@media (max-width: 799.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hot_price--footer {
        border-top: none;
        flex-direction: column;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hotel_info--right {
    margin: 0 auto;
}

.resultados-busqueda .main_right .listado_hoteles .hotel_info--precio {
    color: #b48d48;
    text-align: right;
    padding: 10px 0;
    order: 2;
}

.resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .txt-precio {
    color: black;
    font: 16px 'Playfair Display', serif;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .txt-precio {
        font-size: 13px;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .enteros {
    font: 36px 'Montserrat', sans-serif;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .enteros {
        font-size: 24px;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .decimales {
    font: 20px 'Montserrat', sans-serif;
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .decimales {
        font-size: 14px;
    }
}

.resultados-busqueda .main_right .listado_hoteles .hotel_info--precio .txt-hab-noche {
    color: black;
    font: 13px 'Playfair Display', serif;
    color: #999;
}

@media (max-width: 1107px) {
    .resultados-busqueda .main_right--botones {
        margin-top: 20px;
    }
}

@media (max-width: 599.98px) {
    .resultados-busqueda .main_right {
        padding-top: 0;
    }
}

@media (max-width: 999.98px) {
    .resultados-busqueda .main {
        flex-direction: column;
    }
}

.resultados-busqueda .order_movil {
    margin-right: -10px;
    margin-left: -10px;
}

.resultados-busqueda .order_movil .btn {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    border-top: solid 1px #ccc;
    border-bottom: white;
    border-radius: 0;
    width: 100%;
    padding: 15px;
}

.resultados-busqueda .order_movil .btn:first-child {
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.resultados-busqueda .order_movil .btn.collapsed {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.resultados-busqueda .order_movil .icon-306:before, .resultados-busqueda .order_movil .icon-303:before {
    color: #cc9944;
    font-size: 12px;
}

.resultados-busqueda .order_movil .collapsed .icon-306:before {
    content: '\e0b2';
}

.resultados-busqueda #order-cat-movil {
    position: absolute;
    background: white;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.5);
    margin-right: -10px;
    margin-left: -10px;
    width: 100vw;
    z-index: 100;
}

.resultados-busqueda #order-cat-movil .order_options {
    margin: 0;
    padding: 20px 15px;
}

.resultados-busqueda #order-cat-movil .order_options li {
    color: #b48d48;
    padding: 0 0 15px;
}

.resultados-busqueda #order-cat-movil .order_options li a {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #b48d48;
    font-weight: 500;
    letter-spacing: 2px;
}

.resultados-busqueda #order-cat-movil .order_options li:last-child {
    padding: 0;
}

.resultados-busqueda .filtros_tablet {
    padding: 20px 0;
}

.nav_moneda {
    position: relative;
}

.nav_moneda .select_moneda {
    background: white;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    color: #b48d48;
    cursor: pointer;
    height: 50px;
    width: 135px;
    margin-right: 20px;
}

.nav_moneda .select_moneda .option_simbol {
    font: 12px 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: black;
}

.nav_moneda .option_list {
    background: white;
    position: absolute;
    right: 20px;
    width: 550px;
    z-index: 10;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    padding: 20px 35px;
}

@media (max-width: 791px){

    .nav_moneda .option_list{right: auto; left: 0;}

}

.nav_moneda .option_list li {
    margin-bottom: 7px;
    width: 100px;
}

.nav_moneda .option_list li a {
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    letter-spacing: 0;
    display: flex;
    border: 1px solid white;
    border-bottom: 2px solid white;
}

.nav_moneda .option_list li a span {
    display: block;
}

@media (min-width: 600px) {
    .nav_moneda .option_list li a:hover {
        border: 1px solid #999;
        border-bottom: 2px solid #b48d48;
        color: black;
        text-decoration: none;
    }
}

.nav_moneda .option_list .simbol {
    font-weight: 500;
    width: 40px;
    padding: 5px 0 5px 10px;
}

.nav_moneda .option_list .text {
    color: #999;
    font-size: 11px;
    line-height: 18px;
    padding: 5px 10px 5px 0;
}

.nav_moneda .option_list .selected a {
    background: #efefef;
}

.nav_moneda .option_list .selected a:hover {
    border: 1px solid #efefef;
}

.nav_moneda .toggle_monedas {
    cursor: pointer;
    text-align: center;
    width: 20px;
}

.nav_moneda .toggle_monedas.active .icon-303:before {
    content: '\e0b5';
}

.steps-number {
    margin: 0 auto;
}

.steps-number-circle {
    margin-right: 30px;
    height: 48px;
    width: 48px;
    border: 1.5px solid #c6c6c6;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #c6c6c6;
}

.steps-number-circle span {
    font: 24px 'Montserrat', sans-serif;
    color: #c6c6c6;
}

.steps-number-circle.selected {
    border-color: #b48d48;
    color: #b48d48;
}

.steps-number-circle.selected span {
    color: #b48d48;
}

.steps-number-circle:last-child {
    margin-right: 0px;
}

.steps-number.step-1 + .steps-text {
    text-align: left;
}

.steps-number.step-2 + .steps-text {
    text-align: center;
}

.steps-number.step-3 + .steps-text {
    text-align: right;
}

.steps-text {
    font: 16px 'Montserrat', sans-serif;
    letter-spacing: 2px;
    color: #b48d48;
    padding-top: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.content-full-buy-process {
    width: auto;
    height: 1601px;
    padding: 0px 60px;
    background: #efefef;
}

.confirm_msg {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    background-color: #ffffff;
    display: inline-flex;
    border-top: 3px solid #7fa747;
}

.confirm_msg_title {
    font: 24px 'Playfair Display', serif;
    color: #7fa747;
    display: inline-block;
}

@media (max-width: 599.98px) {
    .confirm_msg_title {
        color: black;
        font: 13px 'Playfair Display', serif;
        color: #7fa747;
        display: inline-block;
    }
}
.confirm_msg_content {
    font: 24px 'Playfair Display', serif;
    color: #7fa747;
    display: inline-block;
}
@media (min-width:901px){
    .confirm_msg_title {font-size:30px;}
    .confirm_msg_content {font-size:30px;}
}

.confirm_msg_txt {
    margin: 18px 0px 17px 0px;
    padding: 0 30px 0 103px;
}

@media (max-width: 599.98px) {
    .confirm_msg_txt {
        margin: 10px 0px 15px 0px;
        padding: 0 20px 0 58px;
    }
}



@media (max-width: 599.98px) {
    .confirm_msg_content {
        color: black;
        font: 13px 'Playfair Display', serif;
        color: #7fa747;
        display: inline-block;
    }
}

.confirm_msg_icon {
    width: 50px;
    height: 50px;
    color: #7fa747;
    margin: 28px 24px 28px 30px;
}

.confirm_msg_icon::before {
    font: 50px/50px "Icons";
    color: #7fa747;
}

@media (max-width: 599.98px) {
    .confirm_msg_icon {
        margin: 32px 17px 32px 15px;
    }

    .confirm_msg_icon::before {
        font: 24px/24px "Icons";
        color: #7fa747;
    }
}

.green-border-confirm_msg {
    width: 100%;
    height: 3px;
    background-color: #7fa747;
}

/*Green block*/
.confirm_msg-green {
    background-color: #7fa747;
    padding: 20px 30px;
}

@media (max-width: 599.98px) {
    .confirm_msg-green {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        padding: 20px 10px;
    }
}

.confirm_msg-green_icon {
    border: 1px solid #fff;
    color: #7fa747;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    margin-right: 30px;
}

@media (max-width: 1199.98px) {
    .confirm_msg-green_icon {
        display: none;
    }
}

.confirm_msg-green_icon .icon-341:before {
    font: 33.6px/24px "Icons";
    color: #ffffff;
}

@media (max-width: 599.98px) {
    .confirm_msg-green_icon {
        margin: 32px 17px 32px 15px;
    }

    .confirm_msg-green_icon:before {
        font: 24px/24px "Icons";
        color: #ffffff;
    }
}

.confirm_msg-green-txt {
    background-color: #7fa747;
    max-width: 670px;
    padding: 0 12px;
    width: 85%;
}

@media (max-width: 1199.98px) {
    .confirm_msg-green-txt {
        max-width: 100%;
        margin-bottom: 30px;
        width: 75%;
    }
}

@media (max-width: 599.98px) {
    .confirm_msg-green-txt {
        width: 100%;
    }
}

.confirm_msg-green-txt_title {
    font: 24px 'Playfair Display', serif;
    color: #fff;
}

@media (max-width: 599.98px) {
    .confirm_msg-green-txt_title {
        text-align: center;
        color: black;
        font: 18px 'Playfair Display', serif;
        color: #fff;
    }
}

.confirm_msg-green-txt_content {
    color: black;
    font: 13px 'Playfair Display', serif;
    color: #fff;
}

@media (max-width: 599.98px) {
    .confirm_msg-green-txt_content {
        text-align: center;
        color: black;
        font: 13px 'Playfair Display', serif;
        color: #fff;
    }
}

.confirm_msg-green-ref {
    min-width: 370px;
    margin-right: 0;
}

@media (max-width: 599.98px) {
    .confirm_msg-green-ref {
        min-width: initial;
    }
}

.table-ref {
    border: dotted 0.8px #ffffff;
    padding: 12px;
}

@media (max-width: 599.98px) {
    .table-ref {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

.table-ref-column-1 {
    padding-right: 21px;
}

.table-ref-column-1-text {
    color: black;
    font: 13px 'Playfair Display', serif;
    color: #fff;
    max-width: 210px;
}

.table-ref-column-1-number {
    font: 18px 'Montserrat', sans-serif;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 599.98px) {
    .table-ref-column-1 {
        text-align: center;
        padding-right: 0px;
        margin: 0 auto;
    }
}

.table-ref-column-2 {
    border-left: 1px solid #fff;
    padding-right: 27px;
}

@media (max-width: 599.98px) {
    .table-ref-column-2 {
        text-align: center;
        border-bottom: 1px solid #fff;
        border-left: none;
        padding-top: 8px;
    }
}

@media (max-width: 599.98px) {
    .table-ref-column-3 {
        text-align: center;
        padding-top: 6px;
        margin: 0 auto;
    }
}

.title-buy-process {
    width: 1278px;
    background: #efefef;
    font: 18px "Playfair Display", serif;
    color: #b48d48;
    padding: 140px 80px 45px;
}

.title-buy-process-content {
    font: 30px 'Playfair Display', serif;
}

.bg-color {
    background: #efefef;
}

.bg-white {
    background: white;
}

.tpl-titulo-cabecera-ho header > span {
    font: 16px "Montserrat", sans-serif;
    display: block;
    font-weight: 300;
    line-height: normal;
    letter-spacing: normal;
    color: black;
}
.tpl-titulo-cabecera-ho header h1 span{font-family: serif;}

.tpl-titulo-cabecera-ho header span.stars {
    font: 18px 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 24px;
    display: initial;
    color: inherit;
}

.confir_msg_icon {
    position: relative;
}




.confir_msg_icon::before {
    font: 24px/24px "Icons";
    color: #7fa747;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 15px;
}
@media (min-width: 601px) {
    .confir_msg_icon::before {
        font: 50px/50px "Icons";
        color: #7fa747;
        margin-top: -25px;
        left: 30px;
    }
}
.buy-process-header {
    text-align: justify;
}

.buy-process-title {
    font: 22px 'Playfair Display', serif;
    margin-bottom: 4px;
    margin-top: 14px;
}

@media (max-width: 599.98px) {
    .buy-process-title {
        margin: 0px;
        color: black;
        font: 18px 'Playfair Display', serif;
    }
}

.buy-process-title-top {
    font: 24px 'Playfair Display', serif;
    margin-bottom: 9px;
}

@media (max-width: 599.98px) {
    .buy-process-title-top {
        color: black;
        font: 18px 'Playfair Display', serif;
        padding-right: 90px;
    }
}

.buy-process-subtitle {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 1.13;
}

@media (max-width: 599.98px) {
    .buy-process-subtitle {
        color: black;
        font: 13px 'Playfair Display', serif;
    }
}

.buy-process-subtitle-icon {
    margin-top: 12px;
    margin-left: 10px;
}

.buy-process-subtitle-icon::before {
    font: 12px/12px "Icons";
    font-weight: bold;
    color: #cc9944;
}

@media (max-width: 599.98px) {
    .buy-process-subtitle-icon::before {
        font: 12px/12px "Icons";
        color: #cc9944;
    }
}

.buy-process-subtitle-b {
    color: black;
    font: 16px 'Playfair Display', serif;
    margin-top: 20px;
    margin-bottom: 7px;
    font-weight: bold;
    line-height: normal;
}

.buy-process-subtitle-down {
    color: black;
    font: 16px 'Playfair Display', serif;
    padding: 21px 0px 0px 23px;
}

@media (max-width: 599.98px) {
    .buy-process-subtitle-down {
        color: black;
        font: 13px 'Playfair Display', serif;
        padding: 8px;
    }
}

.buy-process-subtitle-moreinfo {
    padding-top: 14px;
}

.buy-process-subtitle-moreinfo a {
    font: 16px 'Montserrat', sans-serif;
    color: #b48d48;
    font-weight: 500;
    letter-spacing: 2px;
}

.buy-process-subtitle-moreinfo a:hover {
    text-decoration: underline;
}

@media (max-width: 599.98px) {
    .buy-process-subtitle-moreinfo {
        font: 12px 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
}

.buy-process-text {
    color: black;
    font: 13px 'Playfair Display', serif;
    margin-bottom: 9px;
}

.buy-process-text span {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 19px;
    letter-spacing: 0;
}

.buy-process-text p {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 19px;
    letter-spacing: 0;
}

@media (max-width: 599.98px) {
    .buy-process-text p {
        color: black;
        font: 11px 'Playfair Display', serif;
    }
}

.buy-process-confirmation-button {
    margin: auto;
}

@media (min-width: 1000px) {
    .buy-process-confirmation-button {
        margin-right: 30px;
        margin-top: 32px;
    }
}

@media (max-width: 1199.98px) {
    .buy-process-confirmation-button {
        padding-bottom: 10px;
        padding-top: 17px;
    }
}

@media (max-width: 599.98px) {
    .buy-process-confirmation-button {
        width: 100%;
    }
}

@media (max-width: 599.98px) {
    .buy-process-confirmation-button-1 {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

.buy-process-confirmation-button-1 button {
    margin-right: 10px;
    padding-right: 25px;
    padding-left: 25px;
    height: 46px;
    background: #b48d48;
    color: #fff;
    letter-spacing: 3px;
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    text-transform: uppercase;
    border: 1px solid #b48d48;
}

@media (max-width: 1199.98px) {
    .buy-process-confirmation-button-1 button {
        height: 36px;
        letter-spacing: 2.57px;
        font: 12px 'Montserrat', sans-serif;
        text-transform: uppercase;
    }
}

@media (max-width: 599.98px) {
    .buy-process-confirmation-button-1 button {
        width: 100%;
    }
}

.buy-process-confirmation-button-1 button:hover {
    background-color: rgba(180, 141, 72, 0.8);
}

.buy-process-confirmation-button-2 button {
    padding-right: 25px;
    padding-left: 25px;
    height: 46px;
    background: #b48d48;
    color: #fff;
    letter-spacing: 3px;
    font: 14px 'Montserrat', sans-serif;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    text-transform: uppercase;
    border: 1px solid #b48d48;
}

@media (max-width: 1199.98px) {
    .buy-process-confirmation-button-2 button {
        height: 36px;
        letter-spacing: 2.57px;
        font: 12px 'Montserrat', sans-serif;
        text-transform: uppercase;
    }
}

@media (max-width: 799.98px) {
    .buy-process-confirmation-button-2 button {
        display: none;
    }
}

.buy-process-confirmation-button-2 button:hover {
    background-color: rgba(180, 141, 72, 0.8);
}

.buy-process-table-column {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 1.88;
}

@media (max-width: 599.98px) {
    .buy-process-table-column {
        color: black;
        font: 13px 'Playfair Display', serif;
        line-height: 1.88;
        padding-right: 0px;
    }
}

.buy-process-table-column-bold {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 1.88;
    font-weight: bold;
    padding-right: 25px;
}

@media (max-width: 599.98px) {
    .buy-process-table-column-bold {
        color: black;
        font: 13px 'Playfair Display', serif;
        line-height: 1.88;
        font-weight: bold;
        padding-right: 10px;
    }
}

.table-data_td {
    margin-right: 10px;
}

.table-data-price {
    border-collapse: collapse;
    width: 100%;
}

.icon-huesped::before {
    font: 15px/16px "Icons";
    color: #cc9944;
}

.icon-huesped_little::before {
    font: 11px/12px "Icons";
    color: #cc9944;
}

.data-price {
    padding-bottom: 30px;
}

.data-price-title {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 20px;
    letter-spacing: 0;
}

@media (max-width: 599.98px) {
    .data-price-title {
        color: black;
        font: 13px 'Playfair Display', serif;
        font-weight: bold;
    }
}

.data-price-title-bold {
    font: 16px 'Montserrat', sans-serif;
    font-weight: bold;
    line-height: 20px;
}

.data-price-text {
    color: black;
    font: 13px 'Playfair Display', serif;
}

.data-price-text-lite {
    color: black;
    font: 11px 'Playfair Display', serif;
}

.data-price-total {
    padding-top: 20px;
}

.data-price-total-border {
    border-top: 1px solid #d8d8d8;
    padding-top: 34px;
    padding-bottom: 20px;
}

.data-price-import {
    font: 16px 'Montserrat', sans-serif;
    text-align: right;
    line-height: 20px;
    font-weight: bold;
    vertical-align: top;
}

@media (max-width: 599.98px) {
    .data-price-import {
        vertical-align: top;
        font: 13px 'Montserrat', sans-serif;
        font-weight: bold;
    }
}

.data-price-import-total {
    font: 20px 'Montserrat', sans-serif;
    text-align: right;
    line-height: 20px;
    font-weight: bold;
}

.down-icon {
    padding: 16px 0px 51px 30px;
}

@media (max-width: 799.98px) {
    .down-icon {
        text-align: center;
        padding: 14px;
    }
}

.down-icon::before {
    font: 45px/43px "Icons";
    color: #cc9944;
}

.landing-bottom {
    padding-bottom: 60px;
}

.landing_cabecera-buy {
    margin-top: 31px;
    width: 100%;
}

@media (max-width: 799.98px) {
    .landing_cabecera-buy {
        height: auto;
    }
}

@media (max-width: 799.98px) {
    .landing_cabecera-buy {
        margin: 0px;
    }
}

.landing_facturacion-buy {
    margin-top: 31px;
    min-height: 110px;
    width: 100%;
}

@media (max-width: 799.98px) {
    .landing_facturacion-buy {
        height: auto;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

@media (max-width: 599.98px) {
    .landing_facturacion-buy {
        margin: 20px 0;
    }
}

.landing_gbar {
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 799.98px) {
    .landing_gbar {
        height: auto;
        margin-bottom: 13px;
    }
}

.landing .cabecera_grey-bar {
    height: 1px;
    margin-left: 30px;
    margin-right: 30px;
    background-color: #d8d8d8;
}

.landing .cabecera_box-1 {
    background: white;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-1 {
        flex-direction: column;
    }
}

.landing .cabecera_box-1-left {
    width: 50%;
}

.landing .cabecera_box-1-left figure {
    padding: 30px 15px 30px 30px;
}

.landing .cabecera_box-1-left figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-1-left {
        width: 100%;
        display: none;
    }
}

.landing .cabecera_box-1-text {
    width: 50%;
}

.landing .cabecera_box-1-text-adjust {
    padding: 28px 0px 30px 15px;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-1-text-adjust {
        padding: 10px;
    }
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-1-text {
        width: 100%;
    }
}

.landing .cabecera_box-2 {
    background: white;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-2 {
        flex-direction: column;
    }
}

.landing .cabecera_box-2-left {
    width: 50%;
}

.landing .cabecera_box-2-left-adjust {
    padding: 14px 15px 24px 30px;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-2-left-adjust {
        padding: 10px;
    }
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-2-left {
        width: 100%;
        order: 2;
    }
}

.landing .cabecera_box-2-text {
    width: 50%;
}

.landing .cabecera_box-2-text-adjust {
    padding: 35px 30px 24px 15px;
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-2-text-adjust {
        padding: 10px;
    }
}

@media (max-width: 799.98px) {
    .landing .cabecera_box-2-text {
        width: 100%;
        order: 1;
    }
}

.reservation {
    margin-top: 31px;
    flex-direction: row;
}

@media (max-width: 900px) {
    .reservation {
        flex-direction: column;
    }
}

@media (max-width: 799.98px) {
    .reservation {
        margin-top: 0px;
    }
}

.reservation_box-1 {
    width: 70%;
    margin-right: 15px;
    margin-bottom: 70px;
}

@media (max-width: 900px) {
    .reservation_box-1 {
        order: 2;
        width: 100%;
    }
}

@media (max-width: 799.98px) {
    .reservation_box-1 {
        margin-bottom: 30px;
    }
}

.reservation_box-1-space {
    height: 30px;
    background-color: #efefef;
}

.reservation_box-2 {
    width: 30%;
    margin-left: 15px;
}

@media (max-width: 900px) {
    .reservation_box-2 {
        order: 1;
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.reservation_box-1-left {
    width: 100%;
}

.reservation_box-1-left-content {
    padding: 22px 30px 29px 30px;
    margin-bottom: 30px;
}

@media (max-width: 799.98px) {
    .reservation_box-1-left-content {
        padding: 10px;
        margin-bottom: 10px;
    }
}

.reservation_box-2-left-content {
    padding: 30px 30px 32px 30px;
}

@media (max-width: 599.98px) {
    .reservation_box-2-left-content {
        padding: 10px 10px 0px;
    }
}

.reservation_box-2-right {
    padding: 9px 30px 14px 30px;
}

@media (max-width: 799.98px) {
    .reservation_box-2-right {
        padding: 10px 10px 15px;
    }
}

.reservation-text-icon-row {
    margin-right: 15px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #b48d48;
}

@media (max-width: 799.98px) {
    .reservation-text-icon-row {
        height: 24px;
        width: 24px;
        margin-right: 8px;
    }
}

.reservation-icon-circle::before {
    font: 32px/28px "Icons";
    color: #ffffff;
}

@media (max-width: 799.98px) {
    .reservation-icon-circle::before {
        font: 15px/13px "Icons";
        color: #ffffff;
    }
}

.reservation-text-row {
    width: 90%;
}

.reservation-text-title {
    font: 30px 'Playfair Display', serif;
    color: #b48d48;
    padding-bottom: 8px;
}

@media (max-width: 799.98px) {
    .reservation-text-title {
        color: black;
        font: 18px 'Playfair Display', serif;
        padding-bottom: 7px;
        color: #b48d48;
    }
}

.reservation-text-title-b {
    font: 22px 'Playfair Display', serif;
    padding-bottom: 4px;
}

@media (max-width: 799.98px) {
    .reservation-text-title-b {
        color: black;
        font: 13px 'Playfair Display', serif;
        font-weight: bold;
    }
}

.reservation-text-subtitle {color: black;font: 16px 'Playfair Display', serif;margin-bottom: 30px;}

@media (max-width: 799.98px) {
    .reservation-text-subtitle {
        color: black;
        font: 13px 'Playfair Display', serif;
    }
}

.reservation-text-subtitle-b {
    line-height: 18px;
    color: black;
    font: 16px 'Playfair Display', serif;
    padding-bottom: 29px;
}

.reservation-text-subtitle-b a {
    color: #b48d48;
    padding-left: 2px;
}

@media (max-width: 799.98px) {
    .reservation-text-subtitle-b {
        line-height: 18px;
        color: black;
        font: 13px 'Playfair Display', serif;
        padding-bottom: 12px;
    }
}

.reservation-text-obs-title {
    color: black;
    font: 16px 'Playfair Display', serif;
    font-weight: bold;
    padding-bottom: 7px;
}

@media (max-width: 799.98px) {
    .reservation-text-obs-title {
        color: black;
        font: 13px 'Playfair Display', serif;
        font-weight: bold;
        padding-bottom: 0px;
    }
}

.reservation-text-obs-date {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 19px;
}

@media (max-width: 799.98px) {
    .reservation-text-obs-date {
        line-height: 18px;
        color: black;
        font: 13px 'Playfair Display', serif;
    }
}

.reservation-text-obs-content {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 19px;
    padding-bottom: 21px;
}

@media (max-width: 799.98px) {
    .reservation-text-obs-content {
        line-height: 18px;
        color: black;
        word-break: break-word;
        font: 13px 'Playfair Display', serif;
    }
}

.reservation-text-input {
    padding-bottom: 32px;
}

.reservation-text-input-1 {
    padding-bottom: 21px;
}

.reservation-text-input input {
    width: 22px;
    height: 22px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
}

.reservation-text-bestprice {
    border-top: solid 1px #d8d8d8;
    flex-direction: row;
}

@media (max-width: 599.98px) {
    .reservation-text-bestprice {
        flex-direction: column;
    }
}

.reservation-text-bestprice-text {
    width: 65%;
    padding-top: 21px;
}

@media (max-width: 799.98px) {
    .reservation-text-bestprice-text {
        width: 100%;
        padding-top: 11px;
    }
}

.reservation-text-bestprice-title {
    font: 22px 'Playfair Display', serif;
    color: #b48d48;
    padding-bottom: 6px;
}

@media (max-width: 799.98px) {
    .reservation-text-bestprice-title {
        color: black;
        font: 18px 'Playfair Display', serif;
        color: #b48d48;
        padding-bottom: 6px;
    }
}

.reservation-text-bestprice-subtitle {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 18px;
}

.reservation-text-bestprice-subtitle a {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 18px;
    color: #b48d48;
}

@media (max-width: 799.98px) {
    .reservation-text-bestprice-subtitle {
        padding-bottom: 8px;
    }
}

.reservation-text-bestprice-button {
    padding-top: 35px;
    margin-left: auto;
    min-width: 210px;
}

@media (max-width: 799.98px) {
    .reservation-text-bestprice-button {
        padding-top: 15px;
    }
}

@media (max-width: 599.98px) {
    .reservation-text-bestprice-button {
        min-width: 100%;
        margin-left: -10px;
        margin-right: -10px;
    }
}

.tpl-form-ho .reservation-text-bestprice-button button {padding: 0 10px;height: 60px;background-color: #7fa747;color: #fff;font: 12px 'Montserrat', sans-serif;text-transform: uppercase;font-weight: 500;text-transform: uppercase;text-align: center;border-color: #7fa747;letter-spacing: normal;}

.tpl-form-ho .reservation-text-bestprice-button button:hover{color:#7fa747;}

@media (max-width: 599.98px) {
    .reservation-text-bestprice-button button {
        height: 60px;
        padding-top: 0px;
        width: 100%;
    }
}

.reservation-form-row {
    flex-direction: row;
}

@media (max-width: 599.98px) {
    .reservation-form-row {
        flex-direction: column;
    }
}

.your-reservation-title {
    font: 30px 'Playfair Display', serif;
    color: #b48d48;
    padding-bottom: 10px;
}

@media (max-width: 799.98px) {
    .your-reservation-title {
        color: black;
        font: 18px 'Playfair Display', serif;
        color: #b48d48;
    }
}

.your-reservation-subtitle {
    font: 22px 'Playfair Display', serif;
    border-top: solid 1px #d8d8d8;
    padding-top: 9px;
}

@media (max-width: 799.98px) {
    .your-reservation-subtitle {
        color: black;
        font: 18px 'Playfair Display', serif;
        padding-top: 10px;
    }
}

.your-reservation-text {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 18px;
    padding-top: 8px;
    padding-bottom: 15px;
}

@media (max-width: 799.98px) {
    .your-reservation-text {
        padding-top: 3px;
        padding-bottom: 16px;
    }
}

.your-reservation-table {
    border-top: solid 1px #d8d8d8;
    padding-top: 9px;
    padding-bottom: 17px;
    width: 100%;
}

@media (max-width: 799.98px) {
    .your-reservation-table {
        padding-top: 11px;
        padding-bottom: 16px;
    }
}

.your-reservation-table-column {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 24px;
    white-space: nowrap;
}

.your-reservation-table-column-bold {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 24px;
    font-weight: bold;
    width: 40%;
}

.your-reservation-table-price {
    border-collapse: collapse;
    width: 100%;
}

.your-reservation-price {
    border-top: solid 1px #d8d8d8;
}

@media (max-width: 799.98px) {
    .your-reservation-price {
        width: 60%;
    }
}

.your-reservation-price-title {
    color: black;
    font: 16px 'Playfair Display', serif;
    line-height: 18px;
    padding-top: 11px;
}

@media (max-width: 799.98px) {
    .your-reservation-price-title {
        color: black;
        font: 13px 'Playfair Display', serif;
        line-height: 18px;
        font-weight: bold;
    }
}

.your-reservation-price-title-bold {
    font: 16px 'Montserrat', sans-serif;
    font-weight: bold;
    line-height: 20px;
    padding-top: 17px;
}

.your-reservation-price-text {
    color: black;
    font: 13px 'Playfair Display', serif;
    line-height: 18px;
    padding-bottom: 11px;
}

.your-reservation-price-text-lite {
    color: black;
    font: 11px 'Playfair Display', serif;
    color: #9b9b9b;
    padding-bottom: 19px;
}

.your-reservation-price-import {
    border-top: solid 1px #d8d8d8;
    font: 13px 'Montserrat', sans-serif;
    line-height: 18px;
    font-weight: bold;
    text-align: right;
    vertical-align: top;
    padding-top: 11px;
}

.your-reservation-price-import-total {
    border-top: solid 1px #d8d8d8;
    border-bottom: solid 1px #d8d8d8;
    font: 20px 'Montserrat', sans-serif;
    font-weight: bold;
    text-align: right;
    vertical-align: top;
    padding-top: 17px;
}

.your-reservation-price-total {
    border-top: solid 1px #d8d8d8;
    border-bottom: solid 1px #d8d8d8;
}

.your-reservation-price-footer {
    padding-top: 10px;
    color: black;
    font: 11px 'Playfair Display', serif;
}

.reservation_box-1-form .tpl-form-ho {
    padding: 29px 0px 0px 0px;
}

.reservation_box-1-form .tpl-form-ho .sta-form-ho_select {
    width: 48%;
    max-width: 389px;
    margin: 0px 0px 2% 0px;
}

.reservation_box-1-form .tpl-form-ho .sta-form-ho_select select {
    background: white;
    height: 50px;
}

@media (max-width: 799.98px) {
    .reservation_box-1-form .tpl-form-ho .sta-form-ho_select select {
        height: 40px;
    }
}

@media (max-width: 599.98px) {
    .reservation_box-1-form .tpl-form-ho .sta-form-ho_select {
        width: 100%;
        max-width: 100%;
        margin: 0px 0px 2% 0px;
    }
}

.reservation_box-1-form .sta-form-ho_input {
    width: 48%;
    max-width: 389px;
    margin: 0px 0px 2% 0px;
}

.reservation_box-1-form .sta-form-ho_input input {
    height: 50px;
}

@media (max-width: 799.98px) {
    .reservation_box-1-form .sta-form-ho_input input {
        height: 40px;
    }
}

@media (max-width: 599.98px) {
    .reservation_box-1-form .sta-form-ho_input {
        width: 100%;
        max-width: 100%;
        margin: 0px 0px 2% 0px;
    }
}

.reservation_box-1-form .observations-form .sta-form-ho_label_placeHolder {
    text-align: initial;
}

.reservation_box-1-form .observations-form .sta-form-ho_label_placeHolder p:last-child {
    color: #666666;
}

.reservation_box-1-form .observations-form .sta-form-ho_input {
    width: 100%;
    max-width: 100%;
    max-height: 155px;
    text-align: left;
}

.reservation_box-1-form .observations-form .sta-form-ho_input input {
    height: 155px;
}
.reservation_box-1-form .observations-form .sta-form-ho_input textarea {
    height: 107px;
    padding: 29px 10px 17px;
    width: calc(100% - 22px);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px 0px;
    font: 12px "Montserrat";
}
@media (max-width: 600px) {
    .reservation_box-1-form .observations-form .sta-form-ho_input textarea{
        height: 91px;
        padding-top: 45px;
    }
}

.reservation_box-1-form .observations-form .sta-form-ho_label_placeHolder p:first-of-type {
    font-weight: bold;
}
.tpl-form-ho .sta-form-ho_input textarea:focus + .sta-form-ho_label_placeHolder{top: 2px; font-size: 10px; transition: .3s;}

.reservation_box-1-form .phone-form {
    width: 48%;
}

.reservation_box-1-form .phone-form .sta-form-ho_select {
    width: 30%;
    max-width: 145px;
    height: 40px;
    padding-top: 10px;
}

@media (max-width: 799.98px) {
    .reservation_box-1-form .phone-form .sta-form-ho_select {
        height: 30px;
    }
}

@media (max-width: 599.98px) {
    .reservation_box-1-form .phone-form .sta-form-ho_select {
        width: 28%;
    }
}

.reservation_box-1-form .phone-form .sta-form-ho_input {
    width: 65%;
    max-width: 265px;
    height: 50px;
}

@media (max-width: 799.98px) {
    .reservation_box-1-form .phone-form .sta-form-ho_input {
        height: 40px;
        max-width: 100%;
    }
}

@media (max-width: 599.98px) {
    .reservation_box-1-form .phone-form .sta-form-ho_input {
        width: 68%;
    }
}

@media (max-width: 599.98px) {
    .reservation_box-1-form .phone-form {
        width: 100%;
        max-width: 100%;
    }
}

/*-----------SELECT BANDERA -------- */
.flagdiv .bootstrap-select {
    width: auto;
}

.flagdiv .bootstrap-select .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
}

.flagdiv .bootstrap-select:not([class*=span]):not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto;
}

.flagdiv .bootstrap-select.btn-group .btn .filter-option {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    width: 45px;
}

.flagdiv .bootstrap-select.btn-group:not(.input-group-btn) {
    float: none;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 0;
}

.flagdiv .bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    z-index: 98;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    padding: 5px 0 5px 5px;
    height: 254px;
}

.flagdiv .bootstrap-select.btn-group .dropdown-menu li{display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 114px;
    padding-bottom: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.hotel_checkout--form .form-av_phone .flagdiv .btn-group.bootstrap-select.open .selectpicker {
    height: 250px;
}

.flagdiv .open > .dropdown-menu {
    display: block;
}

.flagdiv .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.flagdiv.sta-form-ho_select:after {
    content: '';
}

.flagdiv.sta-form-ho_select .bootstrap-select .btn {
    width: 100%;
}

.flagdiv.sta-form-ho_select .bootstrap-select .btn:after {
    content: '\e0b2';
    font: bold 12px Icons;
    position: absolute;
    right: 15px;
    color: #cc9944;
}

.flagdiv .flag-icon {
    padding-right: 20px;
}

.flagdiv .flag-icon:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    z-index: 9;
}

/* --------FIN SELECT BANDERA ------- */

.landing_hotel .flag-icon {

    padding-right: 20px;

    position: relative;
}

.landing_hotel .flag-icon:before {

    content: "";

    width: 16px;

    height: 16px;

    position: absolute;

    z-index: 9;

    left: 0;

    top: 50%;

    margin-top: -8px;

}
.gm-style-iw.gm-style-iw-c{border-radius: 0; max-width: 220px!important; max-height: 320px!important;}
.gm-style-iw-d{max-width: none!important; max-height: none!important;}
.gm-ui-hover-effect{background: #c94!important; top: 0!important; right: 0!important; opacity: 1;}
.gm-style-iw.gm-style-iw-c .fot{width: 100%; height: 130px; position: absolute; background-size: cover; background-position: center; background-repat: no-repeat; left: 0; right: 0; top:0;}
.gm-style-iw.gm-style-iw-c .hot{padding-top: 130px;}
.gm-style-iw.gm-style-iw-c .hot .nom{display: block; font: 18px 'Playfair Display', serif;}
.gm-style-iw.gm-style-iw-c .adr{font: 11px 'Playfair Display', serif;}
.gm-style-iw.gm-style-iw-c .desd{font: 11px 'Playfair Display', serif;}
.gm-style-iw.gm-style-iw-c .desd strong{color: #c94; font: 18px 'Playfair Display', serif;}
.gm-style-iw.gm-style-iw-c button{display: block; margin: 0 auto;width: 100%; margin-top: 5px; padding: 8px 0; background: #c94; color: #fff; text-transform: uppercase; font-size: 15px; letter-spacing: 0.2em;}
@media (min-width: 1000px) {
    .tab-content.hotel_tabs--content.wrapper.bg-white {
        padding-top: 25px
    }
}

#gmaps {
    height: 350px !important;
}


span.ico_theatre:before {
    content: '\e050';
    font-family: 'Icons';
    color: #c94;
}

span.ico_school:before {
    content: 'E';
    font-family: 'Icons';
    color: #c94;
}

span.ico_cocktail:before {
    content: '\e04f';
    font-family: 'Icons';
    color: #c94;
}

span.ico_banquet:before {
    content: '\e04f';
    font-family: 'Icons';
    color: #c94;
}

span.ico_shape_u:before {
    content: '\e053';
    font-family: 'Icons';
    color: #c94;
}

span.ico_neg:before {
    content: ' \e054';
    font-family: 'Icons';
    color: #c94;
}

button.d-flex.align-items-center.justify-content-between.tab_content--title:hover .icon-89:before {
    background: #cc9944;
    color: #fff;
    border-radius: 50%;
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available—title {
    margin-top: 16px;
}



@media (min-width: 599.98px) {
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow .offer-button {
        width: 100%;
    }
}

.landing_hotel .hotel_images .hotel_gallery ul li button{width: 80px; height: 80px;}
.landing_hotel .hotel_images .hotel_gallery li img{ width: 100%;height: 100%;object-fit: cover;}


.landing_hotel .hotel_images .hotel_gallery li img{ width: 100%;height: 100%;object-fit: cover;}

@media (max-width: 601px){
    .landing_hotel .hotel_tabs--content .tab_content .tab_info--rate—personal{max-width: 55px;}
    .landing_hotel .hotel_tabs--content .tab_content .tab_info—rate{margin-top: 11px;}
}

.wrapper.hotel.landing_hotel{
    padding-top: 80px;
}
@media (max-width: 999.98px){
    .wrapper.hotel.landing_hotel{
        padding-top: 85px;
    }
}

@media (max-width: 599.98px){
    .wrapper.hotel.landing_hotel{
        padding-top: 25px;
    }
}

@media (max-width: 701px){
    .wrapper.hotel.landing_hotel{
        padding-top: 25px;
    }
}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row.clase-prueba .room-subrow{min-height: 32px;}

.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row.clase-prueba .room-subrow:nth-child(even) .offer-rate::before {
    display: none
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row.clase-prueba {
    max-height: 64px;
}
@media (min-width: 1200px) {
    .landing.buy-processs .wrapper{padding-top: 60px;}
    .wrapper {
        padding: 70px 20px 0;
    }
}
.room-subrow.d-flex.justify-content-between.tarifa:not(:first-of-type){border-top: 1px solid #ccc;}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type + div >div:not(:first-of-type):after{content: "";top: 50%;position: absolute;height: 1px;left: -3px;right: 0;background: #ccc;z-index: 1;}
@media(min-width:601px){
.room-subrow.d-flex.justify-content-between.tarifa:not(:first-of-type){position: relative;}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .offer-type + div >div:not(:first-of-type):after{content: "";top: -1px;position: absolute;      height: 1px;left: -15px;right: 0;background: #ccc;z-index: 1;}
}
#migas{font-size: 12px;margin: 0 auto;max-width: 1280px; text-align: left;margin-bottom: 10px;}
@media(max-width:600px){
    #migas{display: none;}
}
.migas-element,
.amarillo10bold{display: inline-block;}

/* custom tooltip */
.tooltip, .arrow:after {
    padding: 10px 20px;   
    border: 1px solid #FCEFA1;
    font-size: 12px;
        position: absolute!important;   
    opacity: 1;
    z-index: 1;
}

.room-row .tooltip {
    color: #363636;
    background: #fc0;   
    top: 45px!important;
    left: -50px!important;
    width: 200px;
}
.roomlist--price--conversor .tooltip{
    padding: 10px 20px;
   color: #fff;
   background-color: #c94!important;
   top: 50px!important;
   width: 250px;
   left: -16px!important;
}
 .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
 }
 
 .arrow.top {
    top: -16px;
    bottom: auto;
 }
 
 .arrow.left {
    left: 20%;
 }
 
 .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
 }
 
 .arrow.top:after {
    bottom: -20px;
    top: auto;
 }
@media(min-width: 601px){
    .room-row   .tooltip {
       left: 30px!important;
    }
}
.room-row.clase-prueba .tooltip{
    top: 30px!important
}
.sta-top .d-flex.justify-content-between.busqueda_realizada.hidden-up{
    position: fixed;
    transition: top 1s;
    top: 50px;
    z-index: 400;
    left: 0;
    right: 0;
}
@media(min-width: 601px){
    .sta-top .d-flex.justify-content-between.busqueda_realizada.hidden-up{
        top: 80px;
    }
}
@media(min-width: 701px){
    .sta-top .d-flex.justify-content-between.busqueda_realizada.hidden-up{
        top: 90px;
    }
}
.icon-47:before{
    content: 'U';
    font: 25px/25px 'Icons';
}
.hotel_checkout--form .form-av_input.sta-error input{border: 1px solid #da1d24;box-shadow: 0 0 2px 0 rgba(255, 0, 0, 0.5); color: #ba1d24; background: #ffe1e2;}
.hotel_checkout--form .sta-form-ho_errores .sta-ko,
.hotel_checkout--form  .sta-form-ho_errores .sta-ok{display: none;}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-of-type(2) .offer-rate::after {
    content: "";
    width: 16px;
    top: -1px;
    bottom: 0px;
    z-index: 10;
    position: absolute;
    left: -30px;
    border-left: 15px solid transparent;
    border-bottom: 30px solid #fff;
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-of-type(2).selected .offer-rate::after {
    content: "";
    width: 16px;
    top: -2px;
    bottom: 1px;
    z-index: 10;
    position: absolute;
    left: -32px;
    border-left: 16px solid transparent;
    border-bottom: 32px solid rgba(149, 255, 0, 0.102);
}
.buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-of-type(2).selected:before{content: none;}
@media(max-width: 600px){
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-of-type(2) .offer-rate::after {width: 3px;left: -18px;}
    .buy-processs .hotel_checkout--roomlist .roomlist--tabs--content .tab_content .room-available--type .room-row .room-subrow:nth-of-type(2).selected .offer-rate::after {width: 3px;left: -19px;}
    #salones .d-flex.flex-column.justify-content-between.tab_content--right .tabTable tr th div p{display: none;}
}
@media(min-width: 600px){
    .ver_mapa_movil.hidden-up,
    .fotos_hotel_movil.hidden-up,
    .d-flex.justify-content-between.align-items-center.hotel_info--left.hidden-up{
        display: none !important;
    }
}
@media(max-width: 599px){
    .ver_mapa_oculto{
        display: none !important;
    }
}
.custom-checkbox .sta-error .box {
    color: #ba1d24;
 }
 
 .custom-checkbox .sta-error input[type="checkbox"] + span:before {
    border: 1px solid #da1d24;
    box-shadow: 0 0 2px 0 rgba(255, 0, 0, 0.5);
    background: #ffe1e2;
 }
 .tpl-form-ho .sta-form-ho_errores.sta-ko{
    margin-bottom: 20px;
    text-align: center;
 }
 .tab-content.hotel_tabs--content.wrapper.bg-white{padding-bottom: 20px;}
 @media(min-width: 701px) and (max-width: 1000px){
    .d-flex.justify-content-end.cabecera.landing_gbar.bg-white{margin-top: -30px;}
 }
 @media(min-width: 1200px){
    .d-flex.justify-content-end.cabecera.landing_gbar.bg-white{margin-top: -50px;}
 }
 .green-border-confirm_msg:empty{display: none;}
.gm-style-iw.gm-style-iw-c a{text-decoration:none}
.hotel_info--description:not(.closed) + .hotel_info--description--button--more.d-flex.justify-content-start .hidden-on-close{display: block;}
.hotel_info--description:not(.closed) + .hotel_info--description--button--more.d-flex.justify-content-start .hidden-on-open{display: none;}
.hotel_info--description:not(.closed) + .hotel_info--description--button--more.d-flex.justify-content-start .icon-306:before{content: '\e013';}
@media(min-width: 1000px){
    .landing .landing_cabecera.sta-sinTexto{justify-content: center!important;}
    .landing .landing_cabecera.sta-sinTexto .cabecera_box{padding:0;top: 0;}
}

.landing.buy-processs .nav_moneda .select_moneda{display: flex !important;margin:0 auto 10px;}
.landing.buy-processs .nav_moneda .option_list{position: static;width: auto;margin-bottom: 20px;justify-content: center;}
@media(min-width: 1000px){
    .landing.buy-processs .hotel_checkout--roomlist.d-flex.justify-content-between{position: relative;}
    .landing.buy-processs .nav_moneda{position: absolute;right: 0;top: -26px;}
    .landing.buy-processs .nav_moneda .option_list{position: absolute;right: 0;width: 550px;}
}
