.slider {
	width: 50%;
	height: 50%; /*50vh*/
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	position: fixed;
	bottom: 1px;
	width: 100%;
}

.circular-slider {
	width: 100%;
	height: 100%; /*bottom position*/
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	/*background-color: #222; */
}
.circular-slider .wrapper {
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px 20px 0px 20px;
	overflow: hidden;
}
.circular-slider .wrapper .controls__left,
.circular-slider .wrapper .controls__right,
.circular-slider .wrapper .controls__autoplay {
	position: absolute;
	z-index: 101;
	-webkit-transition: 0.6s all;
	-o-transition: 0.6s all;
	transition: 0.6s all;
}
.circular-slider .wrapper .controls__left:hover .icon-wrapper,
.circular-slider .wrapper .controls__right:hover .icon-wrapper,
.circular-slider .wrapper .controls__autoplay:hover .icon-wrapper {
	font-size: 1.7em;
	opacity: 1;
}
.circular-slider .wrapper .controls__left .icon-wrapper,
.circular-slider .wrapper .controls__right .icon-wrapper,
.circular-slider .wrapper .controls__autoplay .icon-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 1.5em;
	opacity: 0.7;
}
.circular-slider .wrapper .controls__left,
.circular-slider .wrapper .controls__right {
	top: 50%;
}
.circular-slider .wrapper .controls__left {
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.circular-slider .wrapper .controls__left:hover {
	left: 0;
}
.circular-slider .wrapper .controls__right {
	right: 0;
	-webkit-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.circular-slider .wrapper .controls__autoplay {
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
	-ms-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
}
.circular-slider .wrapper .controls__autoplay_running .pause {
	display: block;
}
.circular-slider .wrapper .controls__autoplay_running .run {
	display: none;
}
.circular-slider .wrapper .controls__autoplay_paused .pause {
	display: none;
}
.circular-slider .wrapper .controls__autoplay_paused .run {
	display: block;
}
.circular-slider .wrapper .slides-holder {
	border-radius: 50%;
	/*border: 2px solid #fff;*/
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 100;
}
.circular-slider .wrapper .slides-holder__item {
	border-radius: 50%;
	/*border: 2px solid #7C99B4;*/
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	/* background-color: red;*/
	-webkit-transition: 0.3s linear all;
	-o-transition: 0.3s linear all;
	transition: 0.3s linear all;
	-webkit-filter: brightness(70%);
	filter: brightness(70%);
}
.circular-slider .wrapper .slides-holder__item img {
	width: 100%; /*60% sin href*/
	height: 100%;
	/*border-radius: 50%;*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.circular-slider .wrapper .slides-holder__item_active {
	-webkit-filter: brightness(100%);
	filter: brightness(100%);
	background-color: #e52d1a;
}
.circular-slider .wrapper .descriptions {
	position: absolute;
	bottom: 0%;
	z-index: 0;
}
.circular-slider .wrapper .descriptions__item {
	width: 100%;
	height: 0%;
	opacity: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: opacity 0s 0s linear;
	-o-transition: opacity 0s 0s linear;
	transition: opacity 0s 0s linear;
}
.circular-slider .wrapper .descriptions__item_visible {
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.6s 0s linear;
	-o-transition: opacity 0.6s 0s linear;
	transition: opacity 0.6s 0s linear;
}
.circular-slider .wrapper .descriptions__item h1,
.circular-slider .wrapper .descriptions__item .description {
	font-family: Helvetica, sans-serif;
	color: white;
	text-align: center;
}
.circular-slider .wrapper .descriptions__item h1 {
	font-size: 2.5em;
	padding-top: 5px;
	font-family: "Roboto Slab", serif;
}
small.title-icon {
	color: #fff;
}
.circular-slider .wrapper .descriptions__item .description {
	font-size: 100%;
	margin-top: 5px;
	padding: 0% 10%;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow-y: hidden;
}

.icon-menu {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: inline-flex;
	width: 80px;
	height: 80px;
	align-items: center;
	justify-content: center;
	border: 3px solid white;
	background: rgba(0, 0, 0, 0.3);
	margin: 0 5px;
}
/*
.icon-menu > a {
    width: 45%;
}
*/
.svg-icon path {
	background-color: #fff;
}
/*figure {
  margin: none !important;
}*/
.title-counter {
	font-size: 15px;
	display: grid;
	text-align: right;
	color: #fff;
	margin: 0 30px 0 0 !important;
	text-shadow: 0px 0px 8px rgba(150, 150, 150, 1);
}
.title-counter,
.items-menu-right > .icon-menu {
	margin: 5px 0;
}

@media (min-width: 576px) {
	.items-menu-right {
		float: right;
	}
	.items-menu-right > .icon-menu {
		display: flex;
		margin: 15px 30px 0 0;
	}
}

.btn {
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.infoWindow > div {
	text-align: center;
}
.infoWindow b {
	display: inline-block;
	width: 30px;
	height: 30px;
	background: #e52d1a;
	color: white;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	border-radius: 100%;
	margin-right: 10px;
	margin: 0.5em 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.infoWindow b:hover {
	background: #39b54a;
}

.infoWindow .title {
	text-transform: uppercase;
	color: black;
	font-weight: bold;
	text-align: center;
	margin: 0.5em 0;
}
.infoWindow .location {
	text-transform: uppercase;
	color: black;
	text-align: center;
	margin: 0.5em 0;
}

.infoWindow .cover {
	width: 80%;
	text-align: center;
	margin: 0 auto;
	height: 150px;
	max-height: 150px;
	object-fit: cover;
}

.modal-alerts .cover img {
	max-width: 80%;
}
.modal-alerts .desc {
	padding: 1em 0;
}

/* .files-item .thumbnail {

} */

/* The overlay effect with black background */
.overlay {
	height: 100%;
	width: 100%;
	display: none;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(
		0,
		0,
		0,
		0.9
	); /* Black with a little bit see-through */
}

/* The content */
.overlay-content {
	position: relative;
	top: 46%;
	width: 80%;
	text-align: center;
	margin-top: 30px;
	margin: auto;
}

/* Close button */
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	cursor: pointer;
	color: white;

	border-radius: 100%;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #4d4d4d;
	border: 3px solid white;
	color: white;
	font-size: 18px;
	font-family: "Glyphicons Halflings", sans-serif;
}

.overlay .closebtn:before {
	content: "\e014";
}

.overlay .closebtn:hover {
	color: #ccc;
}

/* Style the search field */
.overlay input[type="text"] {
	padding: 15px;
	font-size: 17px;
	border: none;
	float: left;
	width: 80%;
	background: white;
}

.overlay input[type="text"]:hover {
	background: #f1f1f1;
}

/* Style the submit button */
.overlay button {
	float: left;
	width: 20%;
	padding: 15px;
	background: #39b54a;
	font-size: 17px;
	border: none;
	color: white;
	cursor: pointer;
	-webkit-transition: 0.6s all;
	-o-transition: 0.6s all;
	transition: 0.6s all;
}

.overlay button:hover {
	background: #e52d1a;
}

.text-gray {
	color: gray !important;
}

.result-items .rel {
	padding: 1em 0;
}
.results-files figure {
	background: #808080;
	border: 2px solid white;
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	text-align: center;
	color: white;
	position: relative;
	fill: white;
	font-size: 25px;
}
a.delete-post {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background: #4d4d4d;
	border: 3px solid white;
	top: 0;
	right: 0;
	font-family: "Glyphicons Halflings", sans-serif;
	color: white;
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	z-index: 3;
}
a.delete-post:before {
	content: "\e014";
}
.memories > div {
	text-align: center;
}
.memories img {
	width: 90%;
	border: 4px solid white;
	margin: auto;
}
.docs h4,
.docs .desc {
	padding: 0.5em 0 1.2em 0;
}

.home p {
	padding: 0.8em 0.1em;
	color: white;
	font-size: 14px;
	font-weight: normal;
	text-align: left;
	line-height: 2em;
}
body > .main > .row > .col-md-4 footer.sidebar {
	display: block;
	position: relative;
	overflow-y: auto;
	height: calc(100% - 150px) !important;
}
.side-bar-data img {
	width: 100%;
}
@media (min-width: 768px) {
	body .main {
		width: 100% !important;
	}
}

/*FOR MOBILES*/
@media (max-width: 767.98px) {
    #menu-primary {
        position: fixed;
    }
}

