.body {
    background-color: #f2f4f5;
}
.excursion-title {
    line-height: 1.2;
    height: 2.4em;
}
.item-title {
    display: block;
    display: -webkit-box;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: baseline;
}
.excursion-price {
    font-weight: 600;
}
.see-gallery-button {
    position: absolute;
    padding: 0.5em;
    background-color: white;
    margin: 1em;
    border-radius: 8px;
    font-weight: 500;
    color: #f58329;
}
.see-gallery-button:hover {   
    background-color: rgb(231, 231, 231);
    color: #f58329;
}

/*excursionS*/
.excursion-search-box-bg {
    background-color: #02354e;
}
.excursion-gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 100px;
	padding: 20px 5px 5px 5px;
	grid-gap: 5px;
	width: 100%;
}

.excursion-gallery-container:hover {
	cursor:pointer;
}

.excursion-gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.excursion-gallery-item:nth-child(1) { 
	grid-column-start: span 2;
	grid-row-start: span 2;
}
.clickable-cell {
    cursor: pointer;
}
h3,h5 {
    text-transform: none;
}
.addrange {
    transition: all .2s ease-in-out;
    border: 1px dashed #10adda;
    color: #10adda;
    text-align: center;
    display: block;
    padding: 15px 0;
    cursor: pointer;
}
.w-100 {
    width: 100%;
}
.form-select {
    font-size: 14px;
}

.excursion-price-box-loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f58326;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.excursion-price-box-loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f58326;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite
}

.excursion-price-box-loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1f96d3;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite
}

.excursion-price-box-loader-wrapper {
    min-height: 160px;
    position: relative
}

@media (min-width: 768px) { 
	.excursion-gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 200px;
	padding: 20px 5px 5px 5px;
	grid-gap: 5px;
	width: 100%;
	}

	.excursion-gallery-container:hover {
	cursor:pointer;
	}
    
    .bedroom-carousel-container:hover {
        cursor:pointer;
    }

	.excursion-gallery-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.excursion-gallery-item:nth-child(1) { 
		grid-column-start: span 2;
		grid-row-start: span 2;
	}
}