/* Timeline wrapper */
.cpt-dkr-posts-timeline-container {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: flex-start;
    /*justify-content: center;*/
    align-items: center;
    flex-wrap: nowrap;
    /*width: 98%;*/
    margin: 0 auto;
    padding: 30px;
}

.cpt-dkr-posts-timeline-container, .dkr-hometimeline-tooltip-wrapper {
    font-family: 'Work Sans', sans-serif;
}

/* Timeline container (except arrows) */
.cpt-dkr-posts-timeline-container .dkr-timeline-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
    flex-shrink: 0;
    z-index: 1;
}

/* Months and days container - Desktop */
.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-mobile-tworows-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    width: 50%;
    flex-shrink: 0;
}

/* Months' squares styling */
.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}

.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-month > span {
    background-color: #575757;
    color: white;
    width: calc(5px + 5vmin);
    height: calc(5px + 5vmin);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #b2b2b2;
    text-transform: uppercase;
    font-weight: 700;
	font-size: 20px;
}

/* Days' squares styling */
.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-day {
    width: calc(5px + 5vmin);
    height: calc(5px + 5vmin);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #b2b2b2;
	border-radius: 999px;
    text-transform: uppercase;
    font-size: 25px;
    margin: 5px;
}


/* Arrows - Desktop */
/*.elementor-shortcode .dkr-timeline-arrows-wrapper {*/
.cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper {
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    left: 30px;
}

/*.elementor-shortcode .dkr-timeline-arrows-wrapper > i {*/
.cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > i {
    position: absolute;
    top: 1.5em;
    font-size: 32px;
    cursor: pointer;
}

/*.elementor-shortcode .dkr-timeline-arrows-wrapper > .eicon-chevron-left {*/
.cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > .eicon-chevron-left {
    left: -1em;
}

/*.elementor-shortcode .dkr-timeline-arrows-wrapper > .eicon-chevron-right {*/
.cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > .eicon-chevron-right {
    right: -1em;
}

/* When a square has shows */
.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-day.dkr-day-has-show {
    cursor: pointer;
	background: #d5652c;
    color: white;
}

.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-day.dkr-day-has-show.dkr-single-day-sunday:hover,
.cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-day.dkr-day-has-show:hover {
    border: 2px solid #aeaeae;
    background-color: #ed9364;
}


/* CHECKED UNTIL HERE */



/* Tooltip */
.dkr-hometimeline-tooltip-wrapper {
    display: none;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 35%;
    /*height: fit-content;*/
    width: 30%;
    background-color: #ffff99;
    padding: 30px 10px 30px 30px;
    /*border: 2px solid #E6007E;*/
}

.dkr-hometimeline-tooltip-wrapper .dkr-eicon-close,
.dkr-hometimeline-tooltip-wrapper .eicon-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.dkr-timeline-tooltip-content {
    position: relative;
    padding: 10px 2px;
    border-top: 2px solid #aaa;
}

.dkr-timeline-tooltip-content:first-child {
    border-top: 0 none;
}

.dkr-timeline-tooltip-content > a {
    text-decoration: underline;
    position: absolute;
    right: 8px;
    bottom: 8px;
    font-size: 18px;
}

.dkr-timeline-tooltip-content > .dkr-timeline-tooltip-p {
    margin: 0 0 15px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    font-size: 18px;
}

p.dkr-timeline-tooltip-p2 {
    font-size: 18px;
}

.dkr-timeline-tooltip-content > .dkr-timeline-tooltip-p > .dkr-tooltip-terms {
    color: #aaa;
    font-weight: bold;
    margin-right: 4px;
}

.dkr-timeline-tooltip-content > .dkr-timeline-tooltip-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
	text-transform: uppercase;
}

.dkr-hometimeline-shows-wrapper{
	color: black;
}


/* Medium devices */
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .dkr-hometimeline-tooltip-wrapper {
        width: 55%;
    }

    /* Months and days container - Medium device */
    /*.dkr-home-timeline-container .dkr-timeline-container {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-mobile-tworows-wrapper {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-mobile-tworows-wrapper {
        width: 100%;
    }

    /* Arrows - Mobile */
    /*.elementor-shortcode .dkr-timeline-arrows-wrapper {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper {
        top: -50px;
    }

    /*.elementor-shortcode .dkr-timeline-arrows-wrapper > .eicon-chevron-left {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > .eicon-chevron-left {
        left: 9em;
    }

    /*.elementor-shortcode .dkr-timeline-arrows-wrapper > .eicon-chevron-right {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > .eicon-chevron-right {
        right: 9em;
    }

    /* Days' sizes */
    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-timeline-single-day,*/
    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-timeline-single-month,*/
    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-timeline-single-month > span {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-day,
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-month,
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-month > span {
        width: calc(5px + 8vmin);
        height: calc(5px + 8vmin);
        font-size: 16px;
    }

}


/* Mobile devices */
@media only screen and (max-width: 767px) {
    /* Months and days container - Mobile */
    /*.dkr-home-timeline-container .dkr-timeline-container {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-container {
        justify-content: center;
        flex-wrap: wrap;
		margin-top: 40px;
    }
	
	.cpt-dkr-posts-timeline-container {
   	 padding: 0px;
	}

    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-mobile-tworows-wrapper {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-mobile-tworows-wrapper {
        width: 100%;
    }

    /* Arrows - Mobile */
    /*.elementor-shortcode .dkr-timeline-arrows-wrapper {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper {
        top: -50px;
    }

    /*.elementor-shortcode .dkr-timeline-arrows-wrapper > .eicon-chevron-left {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > .eicon-chevron-left {
        left: 3em;
    }

    /*.elementor-shortcode .dkr-timeline-arrows-wrapper > .eicon-chevron-right {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-arrows-wrapper > .eicon-chevron-right {
        right: 3em;
    }

    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-timeline-single-day,*/
    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-timeline-single-month,*/
    /*.dkr-home-timeline-container .dkr-timeline-container .dkr-timeline-single-month > span {*/
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-day,
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-month,
    .cpt-dkr-posts-timeline-container .dkr-timeline-container .dkr-timeline-single-month > span {
        width: calc(5px + 8vmin);
        height: calc(5px + 8vmin);
        font-size: 14px;
    }

    .dkr-hometimeline-tooltip-wrapper {
        width: 85%;
    }
}


.dkr-visible {
    display: block;
}




/* CSS DA SPOSTARE! Styling filtri pagina alloggi*/
.cpt-dkr-posts-filter-container form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
    font-family: "Work Sans", Sans-serif;
}

.cpt-dkr-posts-filter {
    margin-bottom: 20px;
}

.cpt-dkr-posts-filter-container button[type="submit"] {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-width: 0px;
    border-radius: 999px;
    background-color: var( --e-global-color-accent );
    border-color: #FFFFFF00;
    color: white;
    height: fit-content;
}

.cpt-dkr-posts-filter span {
	margin-top: 3px;
}

.cpt-dkr-posts-filter span.selection:after {
    content: " ";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid darkgray;
    position: absolute;
    right: 10px;
    top: 42%;
}

.cpt-dkr-posts-filter label:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var( --e-global-color-accent );
}

.cpt-dkr-posts-filter:nth-child(1) label:before {
    content: "\f005";
}

.cpt-dkr-posts-filter:nth-child(2) label:before {
    content: "\f540";
}

.cpt-dkr-posts-filter:nth-child(3) label:before {
    content: "\f1b0";
}

.cpt-dkr-posts-filter:nth-child(4) label:before {
    content: "\f2e7";
}

