/* General styles
========================================================================== */
.onyx-tours-price-holder {
    color: #005bdd;
    font-weight: 700;
    font-size: 20px;
}

.onyx-tour-item-label {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0 33px;
    font-size: 13px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
    box-sizing: border-box;
    color: #fff;
    background-color: #005bdd;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.onyx-tour-item-label.onyx-tour-item-label-skin1 {
    color: #fff;
    background-color: #363636;
}

.onyx-tour-item-label.onyx-tour-item-label-skin2 {
    color: #005bdd;
    background-color: #fff;
}

.onyx-tour-item-label.onyx-tour-item-label-skin3 {
    color: #fff;
    background-color: #0095e1;
}

.onyx-tour-item-rating {
    font-size: 16px;
}

.onyx-tour-rating-rate {
    vertical-align: middle;
}

.onyx-tour-rating-label {
    vertical-align: middle;
}

.onyx-tours-price-with-discount .onyx-tours-item-discount-price {
    text-decoration: none;
}

/* General styles end
========================================================================== */
/* Standard type styles
========================================================================== */
.onyx-tours-standard-item .onyx-tours-standard-item-image-holder {
    position: relative;
}

.onyx-tours-standard-item .onyx-tours-standard-item-image-holder > a {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.onyx-tours-standard-item .onyx-tours-standard-item-image-holder > a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    opacity: 0;
    background-color: rgba(54, 54, 54, 0.2);
    -webkit-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tours-standard-item .onyx-tours-standard-item-image-holder > a:hover:after {
    opacity: 1;
}

.onyx-tours-standard-item .onyx-tours-standard-item-image-holder img {
    vertical-align: middle;
}

.onyx-tours-standard-item .onyx-tours-standard-item-content-inner {
    padding: 36px 30px;
    background-color: #fff;
    box-sizing: border-box;
}

.onyx-tour-item-has-border .onyx-tours-standard-item .onyx-tours-standard-item-content-inner {
    border: 1px solid #ebebeb;
    border-top: none;
    border-bottom: none;
}

.onyx-tours-standard-item .onyx-tours-standard-item-price-holder {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 700;
}

.onyx-tours-standard-item .onyx-tours-standard-item-title-price-holder {
    position: relative;
    padding-right: 60px;
}

.onyx-tours-standard-item .onyx-tours-standard-item-title-price-holder .onyx-tour-title {
    margin: 0 0 8px;
}
.onyx-tours-standard-item .onyx-tours-standard-item-title-price-holder .onyx-tour-title a {
    font-size: 18px;
}

.onyx-tours-standard-item .onyx-tours-standard-item-excerpt {
        font-size: 14px;
        line-height: 22px;
}

.onyx-tours-standard-item .onyx-tours-standard-item-rating .onyx-tour-item-rating {
    color: #999;
    margin-bottom: 16px;
}

.onyx-tours-standard-item .onyx-tours-standard-item-bottom-content {
    padding: 16px 30px;
    color: #fff;
    background-color: #005bdd;
}

.onyx-tours-standard-item .onyx-tours-standard-item-bottom-content .onyx-tours-standard-item-bottom-item {
    display: inline-block;
    margin-right: 21px;
}

.onyx-tours-standard-item .onyx-tours-standard-item-bottom-content .onyx-tours-standard-item-bottom-item:last-child {
    margin-right: 0;
}

.onyx-tours-standard-item .onyx-tour-info-icon {
    font-size: 14px;
    margin: 0 3px 0 0;
}

.onyx-tours-standard-item .onyx-tours-price-with-discount .onyx-tours-item-price {
    font-size: 16px;
    color: #363636;
    text-decoration: line-through;
    margin-right: 5px;
}

.onyx-tours-standard-item .onyx-tours-item-discount-price.onyx-tours-item-price {
    font-size: 20px;
    color: #005bdd;
    text-decoration: none;
    margin-right: 0;
}

/* Standard type styles end
     ========================================================================== */
/* Gallery type styles
     ========================================================================== */
.onyx-tours-gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.touch .onyx-tours-gallery-item {
    cursor: pointer;
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-image-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
}

.onyx-tour-item-has-border .onyx-tours-gallery-item .onyx-tours-gallery-item-image {
    border: 1px solid #ebebeb;
    border-top: 0;
    box-sizing: border-box;
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-image img {
    vertical-align: middle;
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(54, 54, 54, 0.2);
    opacity: 0;
    z-index: 10;
    -webkit-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-content-holder {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    height: auto;
    padding: 11px 19px;
    background-color: #fff;
    box-sizing: border-box;
    -webkit-transition: all 0.3s cubic-bezier(0.29, 0.22, 0.11, 1.33);
    -moz-transition: all 0.3s cubic-bezier(0.29, 0.22, 0.11, 1.33);
    transition: all 0.3s cubic-bezier(0.29, 0.22, 0.11, 1.33);
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-content-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
}

.onyx-tours-gallery-item .onyx-tours-gallery-title-holder {
    padding: 10px 0;
}

.onyx-tours-gallery-item .onyx-tours-gallery-title-holder .onyx-tour-title {
    display: table-cell;
    vertical-align: top;
    margin: 0;
}

.onyx-tours-gallery-item .onyx-tours-gallery-title-holder .onyx-tours-gallery-item-price-holder {
    position: relative;
    top: 1px;
    display: table-cell;
    vertical-align: top;
    width: 1%;
    white-space: nowrap;
}

.onyx-tours-gallery-item .onyx-tour-item-label {
    z-index: 30;
}

.onyx-tours-gallery-item .onyx-tours-price-with-discount .onyx-tours-item-price {
    color: #363636;
    font-size: 16px;
    text-decoration: line-through;
    margin: 0 5px 0 0;
}

.onyx-tours-gallery-item .onyx-tours-price-with-discount .onyx-tours-item-discount-price.onyx-tours-item-price {
    font-size: 20px;
    color: #005bdd;
    text-decoration: none;
    margin-right: 0;
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-excerpt {
    position: relative;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.15s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: all 0.15s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: all 0.15s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-excerpt-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0 0 10px;
}

.onyx-tours-gallery-item .onyx-tours-gallery-item-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.onyx-tours-gallery-item:hover .onyx-tours-gallery-item-content-holder {
    -webkit-transition: all 0.5s cubic-bezier(0.81, -0.65, 0, 0.94);
    -moz-transition: all 0.5s cubic-bezier(0.81, -0.65, 0, 0.94);
    transition: all 0.5s cubic-bezier(0.81, -0.65, 0, 0.94);
}

.onyx-tours-gallery-item:hover .onyx-tours-gallery-item-image:after,
.onyx-tours-gallery-item:hover .onyx-tours-gallery-item-excerpt {
    opacity: 1;
}

/* Gallery type styles end
	========================================================================== */
/* List type styles start
     ========================================================================== */
.onyx-tours-list-item {
    margin-left: -20px;
    margin-right: -20px;
}

.onyx-tours-list-item:before, .onyx-tours-list-item:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tours-list-item:after {
    clear: both;
}

.onyx-tours-list-item {
    *zoom: 1;
}

.onyx-tours-list-item .onyx-tours-list-item-image-holder {
    position: absolute;
    height: 100%;
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.onyx-tours-list-item .onyx-tours-list-item-image-holder .onyx-tours-list-item-image-holder-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.onyx-tours-list-item .onyx-tours-list-item-image-holder a {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
}

.onyx-tours-list-item .onyx-tours-list-item-image-holder a:hover:after {
    opacity: 1;
}

.onyx-tours-list-item .onyx-tours-list-item-image-holder a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: 1;
    opacity: 0;
    background-color: rgba(54, 54, 54, 0.2);
    -webkit-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tours-list-item .onyx-tours-list-item-image-holder img {
    display: none;
}

.onyx-tours-list-item .onyx-tours-list-item-content-holder {
    width: 100%;
    padding-left: 40%;
    padding-right: 15px;
    box-sizing: border-box;
}

.onyx-tours-list-item .onyx-tour-title {
    margin: 0 0 8px;
    line-height: 34px;
}

.onyx-tours-list-item .onyx-tour-title a {
    font-size: 22px;
}

.onyx-tours-list-item .onyx-tours-list-item-excerpt {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 24px;
}

.onyx-tours-list-item .onyx-tours-list-item-excerpt p {
    margin: 0;
}

.onyx-tours-list-item .onyx-tours-list-item-price-holder {
    margin: 22px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid #ebebeb;
}

.onyx-tours-list-item .onyx-tours-list-item-price-holder:before, .onyx-tours-list-item .onyx-tours-list-item-price-holder:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tours-list-item .onyx-tours-list-item-price-holder:after {
    clear: both;
}

.onyx-tours-list-item .onyx-tours-list-item-price-holder {
    *zoom: 1;
}

.onyx-tours-list-item .onyx-tours-price-with-discount .onyx-tours-item-price {
    font-size: 16px;
    color: #363636;
    text-decoration: line-through;
    margin-right: 5px;
}

.onyx-tours-list-item .onyx-tours-price-with-discount .onyx-tours-item-discount-price.onyx-tours-item-price {
    font-size: 20px;
    color: #005bdd;
    text-decoration: none;
    margin-right: 0;
}

.onyx-tours-list-item .onyx-tours-list-item-price {
    float: left;
}

.onyx-tours-list-item .onyx-social-share-holder {
    float: right;
}

.onyx-tours-list-item .onyx-tours-list-item-bottom-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 24px 0 0;
    padding: 16px 30px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.onyx-tours-list-item .onyx-tours-list-item-bottom-content .onyx-tours-list-item-bottom-item {
    float: left;
    margin-right: 21px;
}

.onyx-tours-list-item .onyx-tours-list-item-bottom-content .onyx-tours-list-item-bottom-item:last-child {
    margin-right: 0;
}

.onyx-tours-list-item .onyx-tours-list-item-bottom-content .onyx-tour-info-icon {
    font-size: 14px;
    margin-right: 3px;
}

.onyx-tours-list-item .onyx-tours-tour-categories-holder:before, .onyx-tours-list-item .onyx-tours-tour-categories-holder:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tours-list-item .onyx-tours-tour-categories-holder:after {
    clear: both;
}

.onyx-tours-list-item .onyx-tours-tour-categories-holder {
    *zoom: 1;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item {
    float: left;
    margin-right: 21px;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item:last-child {
    margin-right: 0;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item a {
    color: #808285;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item a:hover {
    color: #005bdd;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item .onyx-tour-cat-item-icon {
    font-size: 14px;
    margin-right: 3px;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item .onyx-tour-cat-item-custom-image {
    vertical-align: baseline;
}

.onyx-tours-list-item .onyx-tours-tour-categories-item .onyx-tour-cat-item-custom-image img {
    vertical-align: middle;
    width: 14px;
}

/* List type styles end
     ========================================================================== */
/* Filter styles
     ========================================================================== */
.onyx-tours-list-holder .onyx-tours-list-filter-holder {
    margin-bottom: 64px;
}

.onyx-tours-list-holder .onyx-tours-list-filter-holder ul {
    list-style-type: none;
    text-align: center;
    margin: 0;
}

.onyx-tours-list-holder .onyx-tours-list-filter-holder ul li {
    display: inline-block;
    margin: 0 13px;
}

.onyx-tours-list-holder .onyx-tours-list-filter-holder ul li a {
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
}

.onyx-tours-list-holder .onyx-tour-list-filter-item.onyx-tour-list-current-filter a {
    color: #005bdd !important;
}

/* Filter styles end
     ========================================================================== */
.onyx-boxed-widget {
    padding: 30px 30px 35px;
    background-color: #f9f9f9;
}

.onyx-boxed-widget.onyx-tours-search-main-filters-holder {
    position: relative;
    margin: 0 0 28px;
}

.onyx-boxed-widget.onyx-tours-search-main-filters-holder .onyx-btn {
    position: absolute;
    left: 30px;
    bottom: 0;
    margin: 0;
    width: calc(100% - 60px);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
}

.onyx-tours-input-with-icon {
    position: relative;
    margin-bottom: 13px;
    background-color: #fff;
}

.onyx-tours-input-with-icon:before, .onyx-tours-input-with-icon:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tours-input-with-icon:after {
    clear: both;
}

.onyx-tours-input-with-icon {
    *zoom: 1;
}

.onyx-tours-input-with-icon input[type=text],
.onyx-tours-input-with-icon input[type=number],
.onyx-tours-input-with-icon select {
    width: 100%;
    height: 46px;
    background-color: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.onyx-tours-input-with-icon input[type=text],
.onyx-tours-input-with-icon input[type=number],
.onyx-tours-input-with-icon textarea,
.onyx-tours-input-with-icon select {
    color: #808285;
    font-size: 12px;
    font-weight: 500;
}

.onyx-tours-input-with-icon input[type=text]::-webkit-input-placeholder,
.onyx-tours-input-with-icon input[type=number]::-webkit-input-placeholder,
.onyx-tours-input-with-icon textarea::-webkit-input-placeholder,
.onyx-tours-input-with-icon select::-webkit-input-placeholder {
    color: #999;
}

.onyx-tours-input-with-icon input[type=text]::-moz-placeholder,
.onyx-tours-input-with-icon input[type=number]::-moz-placeholder,
.onyx-tours-input-with-icon textarea::-moz-placeholder,
.onyx-tours-input-with-icon select::-moz-placeholder {
    color: #999;
}

.onyx-tours-input-with-icon input[type=text]:-ms-input-placeholder,
.onyx-tours-input-with-icon input[type=number]:-ms-input-placeholder,
.onyx-tours-input-with-icon textarea:-ms-input-placeholder,
.onyx-tours-input-with-icon select:-ms-input-placeholder {
    color: #999;
}

.onyx-tours-input-with-icon input[type=text],
.onyx-tours-input-with-icon input[type=number],
.onyx-tours-input-with-icon select {
    padding-left: 43px;
    padding-right: 20px;
}

.onyx-tours-input-with-icon input[type=text].onyx-tours-price-range-field {
    padding: 0;
}

.onyx-tours-input-with-icon textarea {
    display: block;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    resize: none;
    height: 85px;
    padding: 15px;
}

.onyx-tours-input-with-icon select {
    -moz-appearance: none;
}

.onyx-tours-input-icon {
    position: absolute;
    left: 20px;
    top: 0;
    height: 46px;
    width: auto;
    line-height: 46px;
    font-size: 14px;
    color: #bbb;
}

.onyx-tours-input-icon * {
    display: block;
    line-height: inherit;
}

.onyx-tours-list-holder .onyx-tours-list-holder-inner {
    opacity: 0;
    margin: -15px;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-one-item .onyx-tours-list-grid-sizer,
.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-one-item .onyx-tour-list-item-inner {
    width: 100%;
}

.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-two-items .onyx-tours-list-grid-sizer,
.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-two-items .onyx-tour-list-item-inner {
    width: 50%;
}

.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-three-items .onyx-tours-list-grid-sizer,
.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-three-items .onyx-tour-list-item-inner {
    width: 33.33%;
}

.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-four-items .onyx-tours-list-grid-sizer,
.onyx-tours-list-holder .onyx-tours-list-holder-inner.onyx-four-items .onyx-tour-list-item-inner {
    width: 25%;
}

.onyx-tours-list-holder .onyx-tour-list-item-inner {
    padding: 15px;
    box-sizing: border-box;
}

.onyx-tours-list-holder .onyx-tours-pagination-holder.onyx-tours-pagination-load-more {
    text-align: center;
    margin-top: 60px;
}

.onyx-tours-carousel-holder {
    margin: 0 -15px;
    width: auto !important;
}

.onyx-tours-carousel-holder ul li {
    list-style-type: none;
}

.onyx-tours-carousel-holder .onyx-tours-carousel {
    margin: 0;
    opacity: 0;
}

.onyx-tours-carousel-holder .onyx-tours-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.onyx-tours-carousel-holder .onyx-tours-carousel .owl-item {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.onyx-tours-carousel-holder .onyx-tours-carousel .onyx-tour-carousel-item-inner {
    height: 100%;
    max-width: 100%;
}
.onyx-tours-carousel-holder .onyx-tours-carousel .onyx-tours-standard-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.onyx-tours-carousel-holder .onyx-tours-carousel .onyx-tours-standard-item-image-holder {
}
.onyx-tours-carousel-holder .onyx-tours-carousel .onyx-tours-standard-item-content-holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background-color: #fff;
}

.onyx-tours-carousel-holder .onyx-tours-carousel .owl-item {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav {
    width: 100%;
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .owl-prev,
.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .owl-prev:hover > span,
.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .owl-next:hover > span {
    color: #363636;
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .owl-prev {
    left: -4%;
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .owl-next {
    right: -4%;
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .onyx-prev-icon,
.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .onyx-next-icon {
    display: inline-block;
    font-family: Linearicons-Free;
    font-size: 42px;
    line-height: 1;
    color: #cbcbcb;
    text-align: center;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .onyx-prev-icon i,
.onyx-tours-carousel-holder .onyx-tours-carousel.owl-carousel .owl-nav .onyx-next-icon i {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.onyx-tours-carousel-holder .onyx-tour-carousel-item-inner {
    position: relative;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.onyx-tours-destination-grid .onyx-tours-destination-grid-item {
    margin-bottom: 30px;
}

.onyx-tours-destination-item-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.touch .onyx-tours-destination-item-holder {
    cursor: pointer;
}

.onyx-tours-destination-item-holder:hover .onyx-tours-destination-item-image img {
    -webkit-transform: translateZ(0) scale(1.03);
    -moz-transform: translateZ(0) scale(1.03);
    transform: translateZ(0) scale(1.03);
}

.onyx-tours-destination-item-holder:hover .onyx-tours-destination-item-image:after {
    opacity: 1;
}

.onyx-tours-destination-item-holder .onyx-tours-destination-item-content {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.onyx-tours-destination-item-holder .onyx-tours-destination-item-content-inner {
    position: relative;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    text-align: center;
}

.onyx-tours-destination-item-holder .onyx-tours-destination-item-content-inner .onyx-tours-destination-item-title {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.onyx-tours-destination-item-holder .onyx-tours-destination-item-image {
    overflow: hidden;
    z-index: 10;
}

.onyx-tours-destination-item-holder .onyx-tours-destination-item-image img {
    display: block;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -webkit-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}

.onyx-tours-destination-item-holder .onyx-tours-destination-item-image:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: 1;
    opacity: 0.2;
    background-color: rgba(54, 54, 54, 0.4);
    -webkit-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tours-filter-vertical.onyx-tours-filter-skin-white .onyx-boxed-widget {
    background-color: #fff;
}

.onyx-tours-filter-vertical.onyx-tours-filter-skin-white .onyx-boxed-widget .onyx-tours-input-with-icon {
    background-color: #f5f6f6;
}

.onyx-tours-full-width-filter .onyx-container {
    background-color: transparent;
}

.onyx-tours-filter-horizontal {
    background-color: #fff;
}

.onyx-tours-filter-horizontal.onyx-tours-filter-skin-light {
    background-color: #fff;
}

.onyx-tours-filter-horizontal.onyx-tours-filter-skin-light.onyx-tours-filter-semitransparent {
    background-color: rgba(255, 255, 255, 0.8);
}

.onyx-tours-filter-horizontal.onyx-tours-filter-skin-dark {
    /*background-color: #005ade;*/
    background-color: rgba(21, 21, 21, .65);
}

.onyx-tours-filter-horizontal.onyx-tours-filter-skin-dark.onyx-tours-filter-semitransparent {
    position: relative;
    background-color: rgba(21, 21, 21, .65);
    margin-top: -98px;
    z-index: 9;
}

.onyx-tours-filter-horizontal .onyx-btn.onyx-btn-solid {
    background-color: #ff0a32;
    border: 2px solid #ff0a32;
}

.onyx-tours-filter-horizontal .onyx-grid {
    padding: 20px 30px 20px;
    box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
    .onyx-tours-filter-horizontal .onyx-grid {
        width: 100%;
    }
}

.onyx-tours-filter-horizontal .onyx-tours-search-horizontal-filters-holder:before, .onyx-tours-filter-horizontal .onyx-tours-search-horizontal-filters-holder:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tours-filter-horizontal .onyx-tours-search-horizontal-filters-holder:after {
    clear: both;
}

.onyx-tours-filter-horizontal .onyx-tours-search-horizontal-filters-holder {
    *zoom: 1;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder {
    float: left;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    box-sizing: border-box;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-field-holder {
    border-right: 1px solid #e1e1e1;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-field-holder:before, .onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-field-holder:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-field-holder:after {
    clear: both;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-field-holder {
    *zoom: 1;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-submit-field-holder {
    width: 15%;
    border-right: none;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-filter-submit-field-holder input[type="submit"] {
    width: 100%;
    min-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    max-height: 46px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 42px;
    letter-spacing: .5px;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-input-with-icon {
    width: 100%;
    margin-bottom: 0;
    padding: 0 20px 0 40px;
    float: left;
    box-sizing: border-box;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-input-with-icon input[type=text],
.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-input-with-icon input[type=number],
.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-input-with-icon select {
    padding-left: 23px;
}

.onyx-tours-filter-horizontal .onyx-tours-filters-fields-holder .onyx-tours-input-with-icon .onyx-tours-input-icon {
    left: 40px;
}

.onyx-tours-filter-horizontal .onyx-tours-filter-col {
    float: left;
    width: 28.33333333333333%;
    box-sizing: border-box;
}

.onyx-tour-type-list-holder ul {
    margin: 0;
    list-style-type: none;
}

.onyx-tour-type-list-holder li:before, .onyx-tour-type-list-holder li:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tour-type-list-holder li:after {
    clear: both;
}

.onyx-tour-type-list-holder li {
    *zoom: 1;
}

.onyx-tour-type-list-holder li a {
    display: block;
    color: #363636;
    font-size: 15px;
    font-weight: 700;
    padding: 12px;
    border-bottom: 1px solid #ebebeb;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out, background-color 0.2s ease-out;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.onyx-tour-type-list-holder li a:hover {
    color: #005bdd;
    background-color: #fff;
}

.onyx-tour-type-list-holder li:last-child a {
    border-bottom: none;
}

.onyx-tour-type-list-holder li .onyx-tour-type-icon,
.onyx-tour-type-list-holder li .onyx-tour-type-name,
.onyx-tour-type-list-holder li .onyx-tour-type-min-price-label,
.onyx-tour-type-list-holder li .onyx-tour-type-min-price {
    vertical-align: middle;
}

.onyx-tour-type-list-holder li .onyx-tour-type-icon {
    margin-right: 26px;
    width: 33px;
    display: inline-block;
    text-align: center;
    font-size: 33px;
}

.onyx-tour-type-list-holder li .onyx-tour-type-min-price-holder {
    float: right;
    color: #808285;
    font-size: 14px;
}

.onyx-tour-type-list-holder.onyx-gray-hover li a:hover {
    background-color: #f9f9f9;
}

.onyx-tours-top-reviews-carousel-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-carousel-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 40px;
    box-sizing: border-box;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-carousel-title {
    margin: 0 0 22px;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-carousel {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    visibility: hidden;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-carousel-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-title {
    margin: 0 0 2px;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tour-reviews-criteria-holder {
    display: block;
    width: 100%;
    float: none;
    margin: 0;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-content {
    margin: 20px 0 0;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-content p {
    margin: 0;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-author-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 32px 0 0;
    padding: 0 100px 0 0;
    box-sizing: border-box;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-author-avatar {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 21px 0 0;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-author-avatar img {
    display: block;
    border-radius: 50%;
}

.onyx-tours-top-reviews-carousel-holder .onyx-tours-top-reviews-item-author-name {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.onyx-tours-top-reviews-carousel-holder .owl-item {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

@-webkit-keyframes onyxFadeInSlide {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.85);
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes onyxFadeInSlide {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.85);
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes onyxFadeOutSlide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes onyxFadeOutSlide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.onyx-tours-top-reviews-carousel-holder .owl-item.onyx-slide-fade-out {
    -webkit-animation: onyxFadeOutSlide 0.2s 1 ease forwards;
    -moz-animation: onyxFadeOutSlide 0.2s 1 ease forwards;
    animation: onyxFadeOutSlide 0.2s 1 ease forwards;
}

.onyx-tours-top-reviews-carousel-holder .owl-item.onyx-slide-fade-in {
    -webkit-animation: onyxFadeInSlide 0.4s 1 ease 0.15s both;
    -moz-animation: onyxFadeInSlide 0.4s 1 ease 0.15s both;
    animation: onyxFadeInSlide 0.4s 1 ease 0.15s both;
}

.onyx-tours-top-reviews-carousel-holder .owl-nav {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 80px;
}

.onyx-tours-top-reviews-carousel-holder .owl-prev,
.onyx-tours-top-reviews-carousel-holder .owl-next {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    float: left;
    color: #808285;
    font-size: 21px;
    text-align: center;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.onyx-tours-top-reviews-carousel-holder .owl-prev:hover,
.onyx-tours-top-reviews-carousel-holder .owl-next:hover {
    color: #005bdd;
}

.onyx-tours-top-reviews-carousel-holder .owl-prev span,
.onyx-tours-top-reviews-carousel-holder .owl-next span {
    display: block;
    line-height: inherit;
}

.onyx-tours-slider-with-filter-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-slider-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder {
    position: absolute;
    width: 100%;
    z-index: 100;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-bottom {
    bottom: 0;
    left: 0;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-bottom-offset {
    bottom: 60px;
    left: 0;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-left .onyx-tours-filter-holder {
    float: left;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon {
    padding: 0;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon input[type=text],
.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon input[type=number],
.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon select {
    text-transform: uppercase;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon input[type=number],
.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon input[type=text],
.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon select {
    padding-left: 63px;
}

@media only screen and (max-width: 1024px) {
    .onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon input[type=number],
    .onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon input[type=text],
    .onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-horizontal .onyx-tours-input-with-icon select {
        padding-left: 38px;
    }
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-vertical {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-vertical .onyx-tours-filter-holder {
    width: 300px;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-vertical .onyx-tours-input-with-icon input[type=text],
.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-vertical .onyx-tours-input-with-icon input[type=number],
.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-vertical .onyx-tours-input-with-icon select {
    padding-left: 23px;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-vertical .onyx-tours-input-with-icon input[type=text].onyx-tours-price-range-field {
    padding-left: 0;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder.onyx-tours-swf-filter-right .onyx-tours-filter-holder {
    float: right;
}

.onyx-tours-slider-with-filter-holder .onyx-tours-swf-filter-holder .onyx-tours-swf-filter-vertical {
    width: 300px;
}

/* ==========================================================================
# Tour single style - begin
========================================================================== */
.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav {
    padding: 8px 0 0;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li {
    float: left;
    display: inline-block;
    vertical-align: middle;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li.ui-state-active a {
    margin: -8px 0 0;
    padding: 25px 0 17px;
    color: #005bdd;
    background-color: #fff;
    border-color: #fff;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li.ui-state-active a:before {
    display: block;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li:first-child a:before {
    display: none;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li:last-child a {
    border-right: 0;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li a {
    position: relative;
    margin: 0;
    padding: 17px 0;
    width: 142px;
    font-size: 12px;
    font-weight: 700;
    color: #808285;
    background-color: #f4f4f4;
    border: none;
    border-right: 1px solid #d7d7d7;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li a:before {
    content: '';
    position: absolute;
    display: none;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background-color: #fff;
    z-index: 1;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li a .onyx-tour-nav-section-icon {
    display: block;
    font-size: 18px;
    line-height: 1em;
    font-weight: normal;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li a .onyx-tour-nav-section-title {
    display: block;
    line-height: 20px;
    margin: 8px 0 0;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tabs-nav li a:hover {
    color: #005bdd;
}

.onyx-tour-item-single-holder .onyx-tabs.onyx-horizontal .onyx-tab-container {
    top: 0;
    padding: 72px 0 30px;
    border-top: none;
}

.onyx-tour-item-single-holder article .onyx-tour-item-section:not(:first-child) {
    display: none;
}

.onyx-tour-item-single-holder article .onyx-tour-item-title {
    display: inline-block;
    margin: 0 22px 0 0;
    text-transform: uppercase;
}

.onyx-tour-item-single-holder article .onyx-tour-item-price-holder {
    display: inline-block;
}

.onyx-tour-item-single-holder article .onyx-tour-item-price-holder .onyx-tour-item-price {
    color: #005bdd;
    font-size: 26px;
    font-weight: 700;
}

.onyx-tour-item-single-holder article .onyx-tour-item-price-holder .onyx-tours-price-holder {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.onyx-tour-item-single-holder article .onyx-tour-item-price-holder .onyx-tour-item-price-text:before {
    content: '/';
    margin: 0 2px 0 0;
}

.onyx-tour-item-single-holder article .onyx-tour-item-price-holder .onyx-tours-price-with-discount .onyx-tours-item-price {
    color: #363636;
    font-size: 20px;
    text-decoration: line-through;
}

.onyx-tour-item-single-holder article .onyx-tour-item-price-holder .onyx-tours-item-discount-price.onyx-tours-item-price {
    color: #005bdd;
    font-size: 26px !important;
    font-weight: 700;
    text-decoration: none;
}

.onyx-tour-item-single-holder article .onyx-info-section-part.onyx-tour-item-main-info {
    margin: 34px 0 36px;
}

.onyx-tour-item-single-holder article .onyx-info-section-part.onyx-tour-item-content {
    margin: 13px 0 40px;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 18px 22px;
    line-height: 26px;
    background-color: #f4f4f4;
    clear: both;
    box-sizing: border-box;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-single-info-item,
.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-holder,
.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-item {
    float: left;
    margin-right: 34px;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-single-info-item:last-child,
.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-holder:last-child,
.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-item:last-child {
    margin-right: 0;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-holder:before, .onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-holder:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-holder:after {
    clear: both;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-holder {
    *zoom: 1;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tour-info-icon,
.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tour-cat-item-icon {
    font-size: 14px;
    margin-right: 8px;
    vertical-align: top;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tour-cat-item-custom-image {
    vertical-align: top;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tour-cat-item-custom-image img {
    width: 20px;
    vertical-align: top;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tour-info-label,
.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tour-cat-item-text {
    vertical-align: top;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-item a {
    color: #808285;
}

.onyx-tour-item-single-holder article .onyx-tour-item-short-info .onyx-tours-tour-categories-item a:hover {
    color: #005bdd;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder {
    list-style: none;
    margin: 0;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li {
    border-top: 1px solid #ebebeb;
    padding: 18px 0;
    -webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li:last-child {
    border-bottom: 1px solid #ebebeb;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li:hover {
    background-color: #f9f9f9;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li:hover .col6.onyx-info {
    color: #005bdd;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li .col6 {
    width: 50%;
    float: left;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li .col6.onyx-info {
    color: #363636;
    font-size: 15px;
    font-weight: 700;
    padding-left: 21px;
    box-sizing: border-box;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li .col6.onyx-value {
    font-size: 14px;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li .col6.onyx-value .col6.onyx-tour-main-info-attr {
    margin-bottom: 3px;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li.onyx-tours-checked-attributes .onyx-tour-main-info-attr:before {
    position: relative;
    top: 2px;
    content: "\4e";
    font-family: 'ElegantIcons';
    color: #005bdd;
    margin-right: 5px;
    font-size: 14px;
}

.onyx-tour-item-single-holder article .onyx-tour-main-info-holder li.onyx-tours-unchecked-attributes .onyx-tour-main-info-attr:before {
    position: relative;
    top: 2px;
    content: "\4d";
    font-family: 'ElegantIcons';
    color: #e83f53;
    margin-right: 5px;
    font-size: 16px;
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item {
    position: relative;
    float: left;
    width: calc((100% - 52px) / 3);
    margin-bottom: 26px;
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item:not(:nth-child(3n)) {
    margin-right: 26px;
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item:nth-child(3n+1) {
    clear: both;
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item a {
    position: relative;
    display: block;
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item a:hover:after {
    opacity: 1;
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: 1;
    opacity: 0;
    background-color: rgba(54, 54, 54, 0.2);
    -webkit-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tour-item-single-holder article .onyx-tour-gallery .onyx-tour-gallery-item a img {
    display: block;
    width: 100%;
}

.onyx-tour-item-single-holder .onyx-tour-gallery-item-holder .onyx-gallery-title {
    margin: 0 0 21px;
}

.onyx-tour-item-single-holder .onyx-tour-gallery-item-holder p.onyx-tour-gallery-item-excerpt,
.onyx-tour-item-single-holder .onyx-tour-gallery-item-holder p.onyx-tour-gallery-item-excerpt-field {
    font-size: 18px;
    margin: 0 0 32px;
}

.onyx-tour-item-single-holder .onyx-tour-item-section .onyx-tour-item-plan-part-description {
    margin: 23px 0 0 88px;
}

.onyx-tour-item-single-holder .onyx-tour-item-section .onyx-tour-item-plan-part-title {
    margin: 14px 0 0 88px;
}

.onyx-tour-item-single-holder .onyx-tour-item-section .onyx-info-section-part.onyx-tour-item-plan-part {
    position: relative;
    padding-bottom: 43px;
}

.onyx-tour-item-single-holder .onyx-tour-item-section .onyx-route-id {
    float: left;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #005bdd;
    border-radius: 50%;
    margin-right: 38px;
    text-align: center;
}

.onyx-tour-item-single-holder .onyx-tour-item-section span.onyx-line-between-icons {
    height: 100%;
    position: absolute;
    z-index: -1;
    width: 50px;
    left: 0;
}

.onyx-tour-item-single-holder .onyx-tour-item-section span.onyx-line-between-icons-inner {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 100%;
    border-right: 1px dashed #b7b7b7;
    z-index: 8;
    content: '';
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.onyx-tour-item-single-holder .onyx-location-part {
    margin-bottom: 40px;
}

.onyx-tour-item-single-holder .onyx-location-part .onyx-tour-location {
    margin: 0 0 21px;
}

.onyx-tour-item-single-holder .onyx-location-part p.onyx-location-excerpt {
    font-size: 18px;
    margin: 0 0 32px;
}

.onyx-tour-item-single-holder .onyx-location-part .onyx-google-map {
    height: 500px;
}

.onyx-tour-item-single-holder .onyx-location-part .onyx-location-addresses {
    margin: 0 0 47px;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-masonry-gallery {
    margin: 0 -13px;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-grid-gutter {
    width: 0;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-grid-sizer {
    width: 33.33333333333333%;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    float: left;
    width: 33.33333333333333%;
    padding: 0 13px;
    margin: 0 0 26px;
    box-sizing: border-box;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item.onyx-large-width-masonry-item, .onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item.onyx-large-width-height-masonry-item {
    width: 66.66666666666667%;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item .onyx-tour-gallery-item-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item a {
    position: relative;
    display: block;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item a:hover:after {
    opacity: 1;
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item a:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: 1;
    opacity: 0;
    background-color: rgba(54, 54, 54, 0.2);
    -webkit-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    -moz-transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
    transition: opacity 1s cubic-bezier(0.29, 0.22, 0.11, 1);
}

.onyx-tour-item-single-holder .onyx-tour-masonry-gallery-holder .onyx-tour-gallery-item a img {
    display: block;
    width: 100%;
}

.onyx-tour-item-section div.onyx-tour-item-plan-part:last-child .onyx-line-between-icons {
    display: none;
}

/* ==========================================================================
# Tour single style - end
========================================================================== */
.onyx-review-ratings {
    margin-top: 16px;
}

.onyx-review-ratings:before, .onyx-review-ratings:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.onyx-review-ratings:after {
    clear: both;
}

.onyx-review-ratings {
    *zoom: 1;
}

.onyx-tour-reviews-criteria-holder {
    display: inline-block;
    float: left;
    width: 33.33%;
    padding: 4px 0;
}

@media only screen and (min-width: 769px) {
    .onyx-tour-reviews-criteria-holder:nth-child(3n+1) {
        clear: both;
    }
}

.onyx-tour-reviews-criteria-holder .onyx-tour-reviews-criterion-name {
    display: inline-block;
    margin: 0 7px 0 0;
    color: #363636;
    font-size: 13px;
    font-weight: 700;
}

.onyx-tour-reviews-criteria-holder .onyx-tour-reviews-rating-holder {
    display: inline-block;
    color: #005bdd;
}

.onyx-tour-reviews-criteria-holder .onyx-tour-reviews-rating-holder .onyx-tour-reviews-star-holder {
    margin-right: 3px;
}

.onyx-tour-reviews-input-wrapper {
    margin-bottom: 37px;
}

.onyx-tour-reviews-input-wrapper .onyx-tour-reviews-input {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tour-reviews-input-wrapper .onyx-tour-reviews-input .onyx-tour-reviews-criteria-holder .onyx-tour-reviews-rating-holder {
    cursor: pointer;
}

.onyx-tour-reviews-input-wrapper .onyx-tour-reviews-input .onyx-tour-reviews-criteria-holder .onyx-tour-reviews-hidden-input {
    display: none !important;
}

.onyx-tour-reviews-display-wrapper {
    position: relative;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-review-title {
    margin: 0 0 21px;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-review-subtitle {
    font-size: 18px;
    margin: 0 0 32px;
}

.onyx-tour-reviews-display-wrapper .onyx-tours-reviews-breakdown {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-left {
    position: absolute;
    top: 6px;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    width: 170px;
    height: calc(100% - 12px);
    background-color: #ebebeb;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-left .onyx-tour-reviews-display-left-inner {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-left .onyx-tour-reviews-average-wrapper {
    position: relative;
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-average-rating {
    font-size: 60px;
    line-height: 1em;
    color: #005bdd;
    font-weight: 700;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-verbal-description {
    vertical-align: middle;
    margin: 2px 0 0;
    font-size: 24px;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-rating-icon {
    vertical-align: middle;
    font-size: 20px;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right {
    padding-left: 195px;
    box-sizing: border-box;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right .onyx-tour-reviews-display-bar {
    line-height: 28px;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right .onyx-tour-reviews-display-bar .onyx-tour-reviews-display-bar-inner {
    padding: 6px 0;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right .onyx-tour-reviews-bar-holder {
    width: 100%;
    background: #ebebeb;
    position: relative;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right .onyx-tour-reviews-bar-holder .onyx-tour-reviews-bar-progress {
    background: #0095e1;
    color: white;
    text-align: right;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right .onyx-tour-reviews-bar-holder .onyx-tour-reviews-bar-progress .onyx-tour-reviews-bar-rating {
    margin-right: 10px;
    display: inline-block;
}

.onyx-tour-reviews-display-wrapper .onyx-tour-reviews-display-right .onyx-tour-reviews-bar-holder .onyx-tour-reviews-bar-title {
    left: 12px;
    position: absolute;
    top: 0;
    color: #fff;
    font-size: 12px;
}

#tour-item-review-id .onyx-comment-holder {
    padding: 0;
    margin: 0;
}

#tour-item-review-id .onyx-comments {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 60px 0 54px;
}

#tour-item-review-id .onyx-comment-list {
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}

#tour-item-review-id .onyx-comment-list li {
    border-top: 1px solid #ebebeb;
    padding: 47px 0 37px;
    margin: 0;
}

#tour-item-review-id .onyx-comment-list .onyx-comment-image img {
    border-radius: 50%;
}

#tour-item-review-id .onyx-comment-list .onyx-comment-text {
    padding-left: 90px;
}

#tour-item-review-id .onyx-comment-list .onyx-comment-text h5.onyx-comment-name {
    float: none;
}

#tour-item-review-id .onyx-comment-list .onyx-comment-date {
    margin-bottom: 8px;
}

#tour-item-review-id .onyx-comment-form {
    margin: 0 0 40px;
}

#tour-item-review-id .onyx-comment-form .comment-reply-title {
    margin: 0 0 9px;
}

.onyx-tours-booking-form-holder {
    box-sizing: border-box;
}

.onyx-tours-booking-form-holder .onyx-boxed-widget {
    padding: 30px 30px 0;
    margin: 0 0 28px;
}

.onyx-tours-booking-form-holder .onyx-boxed-widget #onyx-tour-booking-form {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding: 0 0 28px;
}

.onyx-tours-booking-form-holder .onyx-boxed-widget input[type=submit] {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
}

.onyx-tours-booking-form-holder * {
    box-sizing: border-box;
}

.onyx-tours-booking-form-holder .onyx-tour-booking-title {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.onyx-tours-booking-form-holder input[type=submit]:disabled {
    cursor: not-allowed;
    opacity: 1;
}

.onyx-tours-booking-form-holder input[type=submit]:disabled:not(.onyx-btn-custom-hover-bg):not(.onyx-btn-custom-border-hover):not(.onyx-btn-with-animation):hover {
    color: #fff !important;
    background-color: #ef4b5e !important;
    border-color: #ef4b5e !important;
}

.onyx-tours-booking-form-holder input[type=submit],
.onyx-tours-booking-form-holder .onyx-tours-check-availability {
    width: 100%;
    min-width: inherit;
    padding: 15px;
}

.onyx-tours-booking-form-holder input[type=submit] {
    background-color: #0095e1;
    border-color: #0095e1;
}

.onyx-tours-booking-form-holder input[type=submit]:not(.onyx-btn-custom-hover-bg):not(.onyx-btn-custom-border-hover):not(.onyx-btn-with-animation):hover {
    color: #fff !important;
    background-color: #005bdd !important;
    border-color: #005bdd !important;
}

.onyx-tours-booking-form-holder .onyx-tours-check-availability {
    margin-bottom: 15px;
    text-transform: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    padding-left: 10px;
    padding-right: 10px;
    color: #808285;
    background-color: #b9babc;
    border: 1px solid #b9babc;
}

.onyx-tours-booking-form-holder #booking-validation-messages-holder {
    margin: 0 0 13px;
}

.onyx-tours-booking-form-holder .onyx-tour-booking-validation-list {
    padding: 10px 15px;
    font-size: 14px;
    box-sizing: border-box;
}

.onyx-tours-booking-form-holder .onyx-tour-booking-validation-list li {
    border-bottom: none !important;
}

.onyx-tours-booking-form-holder .onyx-tour-message-danger {
    background-color: #fef7f8;
    color: #e83f53;
    border: 1px solid #f7bac1;
}

.onyx-tours-booking-form-holder .onyx-tour-message-success {
    color: #005bdd;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.onyx-tours-my-bookings-list {
    list-style-type: none;
}

.onyx-tours-my-booking-item {
    display: table;
    width: 100%;
    margin-bottom: 50px;
}

.onyx-tours-my-booking-item .onyx-tours-booking-item-image-holder {
    display: table-cell;
    vertical-align: top;
    width: 190px;
    padding-right: 25px;
}

.onyx-tours-my-booking-item .onyx-tours-booking-item-image-holder img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.onyx-tours-my-booking-item .onyx-tours-info-items {
    display: table-cell;
    vertical-align: top;
    padding-bottom: 34px;
    border-bottom: 1px solid #ebebeb;
}

.onyx-tours-my-booking-item .onyx-tours-info-items .onyx-tours-booking-info-item:first-child {
    margin-top: -8px;
}

.onyx-tours-my-booking-item .onyx-tours-info-items .onyx-tours-booking-info-item:first-child p {
    margin-top: 0 !important;
}

.onyx-tours-my-booking-item .onyx-tours-info-items p {
    margin: 8px 0;
}

.onyx-tours-my-booking-item .onyx-tours-info-items p span {
    font-size: 15px;
    color: #363636;
    font-weight: 700;
    margin-right: 5px;
}


/* User booking page
*************************************/
.onyx-tours-booking-info-item.actions {
    margin-top: 20px;
}
button.delete-user-booking {
    display: inline-block;
        background-color: #363636;
        border: 2px solid #363636;
        color: #fff;
        position: relative;
        vertical-align: middle;
        outline: none;
        margin: 0 10px;
        padding: 10px 30px;
        font-size: 13px;
        letter-spacing: .5px;
        line-height: normal;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
        -moz-transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
        transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}
button.delete-user-booking:hover {
        background-color: #ff0a32;
        border-color: #ff0a32;
        cursor: pointer;
}

form.user-booking-payment {
    display: inline-block;
}
form.user-booking-payment button {
        padding: 10px 30px;
        font-size: 13px;
        letter-spacing: .5px;
        line-height: normal;
}



.onyx-tours-my-booking-item .onyx-tours-info-items p.onyx-membership-desc {
    margin-top: 26px;
    margin-bottom: 15px;
}

.onyx-tours-my-booking-item .onyx-tours-info-items p.onyx-membership-desc span {
    display: block;
    margin-bottom: 6px;
}

.onyx-tours-my-booking-item .onyx-tours-info-items .onyx-tours-booking-price {
    font-size: 20px;
    color: #005bdd;
    font-weight: 700;
}

.onyx-tours-my-booking-item:last-child .onyx-tours-info-items {
    border-bottom: 0;
    padding-bottom: 0;
}

.page-template-user-dashboard .onyx-content .onyx-content-inner > .onyx-container > .onyx-container-inner,
.page-template-user-dashboard .onyx-content .onyx-content-inner > .onyx-full-width > .onyx-full-width-inner {
    padding: 80px 0;
}

.page-template-user-dashboard .onyx-content ul,
.page-template-user-dashboard .onyx-content ol {
    margin: 0 0;
}

/* #Tour type filters styles - start
     ========================================================================== */
.onyx-tours-type-filter-item {
    margin-bottom: 8px;
}

/* #Tour type filters styles - end
     ========================================================================== */
/* #Main filters styles - start
     ========================================================================== */
.onyx-tours-search-main-filters-holder.onyx-boxed-widget .onyx-tours-input-with-icon {
    padding: 0;
}

.onyx-tours-search-main-filters-holder.onyx-boxed-widget .onyx-tours-input-with-icon input[type=text],
.onyx-tours-search-main-filters-holder.onyx-boxed-widget .onyx-tours-input-with-icon input[type=number],
.onyx-tours-search-main-filters-holder.onyx-boxed-widget .onyx-tours-input-with-icon select {
    padding-left: 43px;
}

.onyx-tours-search-main-filters-holder.onyx-boxed-widget .onyx-tours-input-with-icon input[type=text].onyx-tours-price-range-field {
    padding-left: 20px;
}

.onyx-tours-search-main-filters-holder .onyx-tours-input-with-icon {
    padding: 0 20px;
}

.onyx-tours-search-main-filters-holder .onyx-tours-input-with-icon input[type=text],
.onyx-tours-search-main-filters-holder .onyx-tours-input-with-icon input[type=number],
.onyx-tours-search-main-filters-holder .onyx-tours-input-with-icon select {
    padding-left: 23px;
}

.onyx-tours-search-main-filters-holder .onyx-tours-input-with-icon input[type=text].onyx-tours-price-range-field {
    padding-left: 0;
}

.onyx-tours-search-main-filters-holder * {
    box-sizing: border-box;
}

.onyx-tours-search-main-filters-holder input[type=checkbox] {
    display: none;
}

.onyx-tours-search-main-filters-holder label {
    vertical-align: middle;
    font-size: 14px;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    cursor: pointer;
}

.onyx-tours-search-main-filters-holder label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-family: ElegantIcons;
    font-size: 13px;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #fff;
    box-sizing: border-box;
}

.onyx-tours-search-main-filters-holder input[type=checkbox]:checked + label:before {
    content: '\4e';
    color: #fff;
    background-color: #005bdd;
}

.onyx-tours-search-main-filters-holder .onyx-tours-search-main-filters-title {
    margin-bottom: 25px;
    text-align: center;
}

.onyx-tours-search-main-filters-holder .onyx-tours-search-main-filters-title h4 {
    margin: 0;
}

.onyx-tours-search-main-filters-holder .onyx-tours-range-input {
    height: 3px;
    border: none;
    background-color: #005bdd;
    margin-bottom: 26px;
    margin-top: 29px;
    box-shadow: none;
}

.onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-base,
.onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-background {
    background-color: #ebebeb;
    box-shadow: none;
}

.onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-connect {
    background: #005bdd;
    box-shadow: none;
}

.onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-handle {
    width: 14px;
    height: 14px;
    top: -6px;
    left: -4px;
    background: #005bdd;
    border: none;
    border-radius: 50%;
    box-shadow: none;
}

.onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-handle:after, .onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-handle:before {
    content: none;
}

.onyx-tours-search-main-filters-holder .onyx-tours-range-input .noUi-handle:hover {
    cursor: move;
}

.onyx-tours-search-main-filters-holder .onyx-btn {
    width: 100%;
    display: block;
    margin-top: 19px;
}

.onyx-tours-search-main-filters-holder select option {
    color: #000;
}

.typeahead {
    background-color: #fff;
}

.typeahead:focus {
    border: 2px solid #0097cf;
}

.tt-hint {
    color: #999;
}

.tt-menu {
    width: 101%;
    margin: 10px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ebebeb;
    left: -1px !important;
    font-size: 13px;
}

.twitter-typeahead {
    width: 100%;
}

.tt-suggestion {
    padding: 3px 15px;
}

.tt-suggestion:hover {
    cursor: pointer;
    color: #fff;
    background-color: #0095e1;
}

.tt-suggestion.tt-cursor {
    color: #fff;
    background-color: #0095e1;
}

.tt-suggestion p {
    margin: 0;
}

/* #Main filters styles - end
     ========================================================================== */
.onyx-tours-search-content .onyx-social-share-holder .onyx-icon-name {
    display: none;
}

.onyx-search-ordering-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.onyx-search-ordering-holder .onyx-search-ordering-list {
    position: relative;
    display: block;
    list-style: none;
    margin: 0;
    padding: 8px 0 0;
    overflow: hidden;
    vertical-align: middle;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li {
    float: left;
    display: inline-block;
    vertical-align: middle;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li:first-child a:before {
    display: none;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li:last-child a {
    border-right: none;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li.onyx-search-ordering-item-active a {
    margin: -8px 0 0;
    padding: 25px 0 17px;
    color: #005bdd;
    background-color: #fff;
    border-color: #fff;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li.onyx-search-ordering-item-active a:before {
    display: block;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li a {
    position: relative;
    display: block;
    margin: 0;
    padding: 17px 0;
    width: 142px;
    font-size: 12px;
    font-weight: 600;
    color: #808285;
    background-color: #f4f4f4;
    border: none;
    border-right: 1px solid #d7d7d7;
    text-align: center;
    box-sizing: border-box;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li a:before {
    content: '';
    position: absolute;
    display: none;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background-color: #fff;
    z-index: 1;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li a:hover {
    color: #005bdd;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li a .onyx-search-ordering-icon {
    display: block;
    font-size: 18px;
    line-height: 1em;
}

.onyx-search-ordering-holder .onyx-search-ordering-list li a .onyx-search-ordering-title {
    display: block;
    line-height: 20px;
    margin: 8px 0 0;
}

.onyx-tours-search-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin-top: 60px;
}

.onyx-tours-search-content > .onyx-grid-row {
    margin: 0 -15px;
}

.onyx-tours-search-content.onyx-tours-searching {
    opacity: 0.2;
}

.onyx-tours-search-content .onyx-tours-search-item.onyx-tours-search-list-item {
    margin-bottom: 60px;
}

.onyx-tours-search-content .onyx-tours-search-item.onyx-tours-search-list-item:last-child {
    margin-bottom: 0;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item {
    padding: 0 15px;
    margin: 0 0 30px;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item.onyx-grid-col-4:nth-child(3n+1) {
    clear: both;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-standard-item-content-inner {
    padding: 21px 20px;
    border: 1px solid #ebebeb;
    border-top: none;
    border-bottom: none;
}

@media only screen and (min-width: 1025px) {
    .onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-standard-item-title-price-holder {
        padding-right: 80px;
    }
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-standard-item-title-price-holder .onyx-tour-title,
.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-price-holder {
    font-size: 15px;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-price-with-discount .onyx-tours-item-price {
    font-size: 12px;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-price-with-discount .onyx-tours-item-discount-price {
    font-size: 15px;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-standard-item .onyx-tours-standard-item-excerpt {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 10px 0 0;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-gallery-item .onyx-tours-gallery-item-image {
    border: 1px solid #ebebeb;
    border-top: none;
    box-sizing: border-box;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-gallery-item .onyx-tours-gallery-title-holder .onyx-tour-title,
.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-gallery-item .onyx-tours-price-holder {
    font-size: 15px;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-gallery-item .onyx-tours-price-with-discount .onyx-tours-item-price {
    font-size: 12px;
}

.onyx-tours-item-with-smaller-spacing.onyx-tours-search-item .onyx-tours-gallery-item .onyx-tours-price-with-discount .onyx-tours-item-discount-price {
    font-size: 15px;
}

.onyx-tours-search-page-holder .onyx-tours-search-pagination {
    margin-top: 60px;
    margin-bottom: 46px;
}

.onyx-widget-tour-holder .onyx-tours-widget-item {
    margin-bottom: 24px;
}

.onyx-widget-tour-holder .onyx-tours-widget-item:last-child {
    margin-bottom: 0;
}

.onyx-widget-tour-holder .onyx-tour-title {
    position: static !important;
}

.onyx-tours-checkout-content-inner {
    display: table;
    width: 100%;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder,
.onyx-tours-checkout-content-inner .onyx-tours-image-holder {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder {
    padding-left: 15px;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder .onyx-tours-info-title {
    margin: 0 0 6px;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder .onyx-tours-info-message {
    margin: 0;
    color: #005bdd;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder p {
    margin: 6px 0;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder p span {
    color: #363636;
    font-size: 15px;
    font-weight: 700;
    margin-right: 5px;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder p.onyx-tours-info-description {
    margin: 42px 0;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder p.onyx-tours-info-description span {
    display: block;
    margin-bottom: 6px;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder .onyx-tours-booking-price {
    color: #005bdd;
    font-size: 20px;
    font-weight: 700;
}

.onyx-tours-checkout-content-inner .onyx-tours-info-holder form {
    margin-top: 28px;
}

.onyx-tours-checkout-content-inner .onyx-tours-image-holder {
    position: relative;
    padding-right: 15px;
}

.onyx-tours-checkout-content-inner .onyx-tours-image-holder img {
    display: none;
}

.onyx-tours-checkout-content-inner .onyx-tours-image-holder .onyx-tours-image-bckg {
    position: absolute;
    height: 100%;
    width: calc(100% - 15px);
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.page-template-tour-checkout .onyx-content .onyx-content-inner > .onyx-container > .onyx-container-inner,
.page-template-tour-checkout .onyx-content .onyx-content-inner > .onyx-full-width > .onyx-full-width-inner {
    padding: 100px 0;
}

/*# sourceMappingURL=tours.css.map */