.mini-posts img {
	width: 200px;
}

#sidebar .mini-posts img {
	width: 100px;
}

.pagination ul {
	justify-content: center;
}

.pagination .actions li {
	padding: 0;
}

.pagination a {
	padding: 0 1rem;
}

.pagination .button {
	padding: 0 1.5rem;
}

.pagination .button:after {
	display: none;
}

#footer .content > section {
	min-width: 30%;
	width: 30%;
}

/* Mobile menu dropdown */
.depth-1.hidden {
	display: none !important;
}

.dropdown.closed:after {
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-left: 0.5rem;
}

.dropdown:after {
    content: "\f0d7";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-left: 0.5rem;
}

/* Floating contact */
#floating-contact {
	display: flex;
	position: fixed;
	right: 0;
	top: 50vh;
	max-width: calc(100vw - 2rem);
	height: 8rem;
	z-index: 1000;
	color: white;
	background-color: rgb(10, 115, 247);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    font-size: 1.2rem;

	transform: translateX(338px);
	transition: all 0.2s;
}

#floating-contact:hover {
	transform: translateX(280px);
	cursor: pointer;
}

@media screen and (max-width: 480px) {
	#floating-contact {
		transform: translateX(calc(100vw - 2rem - 4rem));
	}
}

#floating-contact.opened {
	transform: translateX(0px);
}

#floating-contact .label {

    width: 8rem;
	height: 4rem;
	padding: 1rem 2rem;
    text-align: center;

	color: white;
	background-color: rgb(48, 184, 235);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;

	font-weight: bold;

	transform: rotate(-90deg) translate(-2rem, -2rem);
}

/* Login */
#login {
	display: flex;
	flex-flow: row-reverse nowrap;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 26px;
	z-index: 110;
	padding-right: 2rem;
	background-color: rgb(7, 21, 170);
}

#login a:before {
	margin-right: 0.5rem;
    font-size: 0.9rem;
}


#login2 {
	display:flex;
	flex-flow: row-reverse nowrap;
	position: fixed;
	top: 2px;
	left: 0;
	right: 0;
	height: 26px;
	z-index: 111;
	padding-left: 2rem;
	background-color: rgb(7, 21, 170);
}

	#login2 a:before {
		margin-left: 0.5rem;
		font-size: 0.9rem;
	}




/* Scroll top */
#scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
    color: #ffffff;
    font-family: 'Font Awesome 5 Free';
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    width: 5.5rem;
	height: 5.5rem;

    background: rgb(10, 115, 247);
	border-radius: 3rem;
	opacity: 0;
    z-index: 110;

	transition: all 0.4s;
}

#scroll-top:hover {
	cursor: pointer;
	opacity: 1;
	transform: translateY(-1rem);
}

#scroll-top::before {
	content: '\f062';
    vertical-align: sub;
}

/* Header contact icon */
ul.header-contact-icons {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-around;
	align-items: flex-start;

	width: 280px;
	height: 100%;
	max-width: calc(100% - 2rem);
	padding-left: 0;

	list-style-type: none;
}

	ul.header-contact-icons li:before {
		font-size: 1.5rem;
		vertical-align: middle;
	margin-right: 0.5rem;
	}