﻿/*
Item Name: jQuery Carousel Evolution
Author: Mapalla
Author URI: http://codecanyon.net/user/Mapalla
Version: 1.0
*/
/* _______________________________________________ */
/* CONTAINER */
/* _______________________________________________ */
.carousel {
    position: relative;
    margin: 0 auto;
    width: 1220px;
    height: auto;
    border: none;
    overflow: visible;
    margin-top: 50px;
}

/* _______________________________________________ */
/* SLIDES */
/* _______________________________________________ */
/* slide container */
.carousel .slides {
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
    position: relative;
    overflow: visible;
}

/* slide item */
.carousel .slides .slideItem {
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.carousel .slides .slideItem a {
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.carousel .slides .slideItem img {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.content-cover {
    display: flex;
    position: absolute;
    height: 100%;
    align-items: flex-end;
    background-image: url(../thumbnailSlider/gradiant.png);
    background-size: 100% 200px;
    background-position: bottom -30px left 0;
    background-repeat: no-repeat;
    top: 0;
    width: 100%;
}

.category-booknow {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 5px;
}

.category-booknow-name {
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
}


/* _______________________________________________ */
/* DIRECTION BUTTON */
/* _______________________________________________ */
.carousel .nextButton {
    position: absolute;
    right: 10px;
    top: 133px;
    width: 35px;
    height: 35px;
    background: url("next_button.png") no-repeat center;
    cursor: pointer;
    z-index: 9999;
}

.carousel .prevButton {
    position: absolute;
    left: 10px;
    top: 133px;
    width: 35px;
    height: 35px;
    background: url("prev_button.png");
    cursor: pointer;
    z-index: 9999;
}

/* _______________________________________________ */
/* NAVIGATION BUTTON */
/* _______________________________________________ */
/* buttons container */
.carousel .buttonNav {
    position: relative;
    margin: 0 auto;
    z-index: 999;
}

/* numbers */
.carousel .buttonNav .numbers {
    position: relative;
    float: left;
    margin: 5px;
    color: #828282;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
    font-family: Arial, Verdana;
}

.carousel .buttonNav .numbers:hover {
    color: #000;
    text-decoration: underline;
}

.carousel .buttonNav .numberActive {
    background: none;
    color: #000;
    cursor: default;
}

/* bullets */
/* .carousel .buttonNav .bullet {
	position: relative;
	float: left;
	width: 16px;
	height: 16px;
	background: url(Bullet-White.png) no-repeat center;
	margin: 5px;
	float: left;
	cursor: pointer;
}
.carousel .buttonNav .bullet:hover {
	background: url(Bullet-Black.png) no-repeat center;
}
.carousel .buttonNav .bulletActive {
	background: url(Bullet-Black.png) no-repeat center;
	cursor: default;
} */
/* ____________________________________________________________ */
/* VIDEO */
/* ____________________________________________________________ */
.carousel .slides .videoOverlay {
    background: url("images/video.png") no-repeat center;
    /* play button */
}

.carousel .slides .spinner {
    background: #000 url(loading.gif) no-repeat center;
    /* video preloader */
}

/* _____________________________ *
/* SHADOW */
/* _____________________________ */
.carousel .shadow {
    width: 100%;
    height: 82px;
}

.carousel .shadow .shadowLeft {
    background: url("shadowLeft.png") no-repeat;
    width: 100px;
    height: 82px;
}

.carousel .shadow .shadowMiddle {
    height: 82px;
    background: url("shadowTile.png") repeat-x;
}

.carousel .shadow .shadowRight {
    width: 100px;
    height: 82px;
    background: url("shadowRight.png") no-repeat;
}

/* ____________________________________________________________ */
/* REFLECTION GRADIENT */
/* ____________________________________________________________ */
/* gradient color for Opera */
.carousel .gradient {
    background-image: url(scripts/gradient.svg);
}


@media (max-width: 1399px) {
    .carousel {
        width: 1140px;
    }
}


/*
Item Name: jQuery Carousel Evolution
Author: Mapalla
Author URI: http://codecanyon.net/user/Mapalla
Version: 1.0
*/
/* _______________________________________________ */
/* CONTAINER */
/* _______________________________________________ */
.carouselSmallContainer {
    padding-left: 100px;
}

.carouselSmall {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
    border: none;
    overflow: visible;
}

/* _______________________________________________ */
/* SLIDES */
/* _______________________________________________ */
/* slide container */

.carouselSmall .slides {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
    position: relative;
    overflow: visible;
}

/* slide item */
.carouselSmall .slides .slideItem {
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.carouselSmall .slides .slideItem a {
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    position: relative;
}

.carouselSmall .slides .slideItem img {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* _______________________________________________ */
/* DIRECTION BUTTON */
/* _______________________________________________ */
.carouselSmall .nextButton {
    position: absolute;
    right: 10px;
    top: 133px;
    width: 35px;
    height: 35px;
    background: url("next_button.png") no-repeat center;
    cursor: pointer;
    z-index: 9999;
}

.carouselSmall .prevButton {
    position: absolute;
    left: 10px;
    top: 133px;
    width: 35px;
    height: 35px;
    background: url("prev_button.png");
    cursor: pointer;
    z-index: 9999;
}

/* _______________________________________________ */
/* NAVIGATION BUTTON */
/* _______________________________________________ */
/* buttons container */
.carouselSmall .buttonNav {
    position: relative;
    margin: 0 auto;
    z-index: 999;
}

/* numbers */
.carouselSmall .buttonNav .numbers {
    position: relative;
    float: left;
    margin: 5px;
    color: #828282;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
    font-family: Arial, Verdana;
}

.carouselSmall .buttonNav .numbers:hover {
    color: #000;
    text-decoration: underline;
}

.carouselSmall .buttonNav .numberActive {
    background: none;
    color: #000;
    cursor: default;
}

/* ____________________________________________________________ */
/* VIDEO */
/* ____________________________________________________________ */
.carouselSmall .slides .videoOverlay {
    background: url("images/video.png") no-repeat center;
    /* play button */
}

.carouselSmall .slides .spinner {
    background: #000 url(loading.gif) no-repeat center;
    /* video preloader */
}

/* _____________________________ *
/* SHADOW */
/* _____________________________ */
.carouselSmall .shadow {
    width: 100%;
    height: 78px;
    opacity: .8;
}

.carouselSmall .shadow .shadowLeft {
    background: url("shadowLeft.png") no-repeat;
    width: 100px;
    height: 82px;
}

.carouselSmall .shadow .shadowMiddle {
    height: 82px;
    background: url("shadowTile.png") repeat-x;
}

.carouselSmall .shadow .shadowRight {
    width: 100px;
    height: 82px;
    background: url("shadowRight.png") no-repeat;
}

/* ____________________________________________________________ */
/* REFLECTION GRADIENT */
/* ____________________________________________________________ */
/* gradient color for Opera */
.carouselSmall .gradient {
    background-image: url(scripts/gradient.svg);
}

.city-counter {
    background-color: var(--white);
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    /* box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, .1); */
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    width: 160px;
    margin: auto;
}

.city-counter-name {
    font-size: 16px;
    line-height: 20px;
    color: var(--orange);
}

.city-counter-property {
    font-size: 13px;
    line-height: 18px;
    color: var(--grey3);
}


/* bullets */
.buttonNav .bullet {
    position: relative;
    float: left;
    width: 13px;
    height: 13px;
    background-color: var(--grey2);
    border-radius: 50%;
    margin: 15px;
    float: left;
    cursor: pointer;
}

.buttonNav .bullet:hover {
    background-color: var(--white);
}

.buttonNav .bullet::before {
    content: '';
    width: 50px;
    height: 1px;
    background-color: var(--grey2);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -2;
}

.buttonNav .bullet::after {
    content: '';
    width: 27px;
    height: 27px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    left: -7px;
    z-index: -1;
}

.buttonNav .bullet:hover::after {
    background-color: var(--orange);
}

.buttonNav .bulletActive {
    background-color: var(--white);
}

.buttonNav .bulletActive::after {
    background-color: var(--orange);
    cursor: default;
}

.buttonNav .bullet:last-child::before {
    display: none;
}
