/*--------------------------------------------------------------*\
## Publication List Style
\*--------------------------------------------------------------*/
.geoid-pub-header-area #publicationSearch input#s {
    border: 1px solid #DDD;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 10px;
    font-family: 'FontAwesome';
}

.geoid-pub-header-area .search {
    text-align: right;
}

.geoid-pub-footer-area .content {
    text-align: center;
}

.geoid-pub-footer-area .read-more {
    background-color:#0370a8;
    color:#ffffff;
}

.geoid-pub-header .wpb_content_element,
.geoid-pub-image {
    margin-bottom: 10px !important;
}

.geoid-pub-header .date,
.geoid-pub-header .tags .label {
    color: #006F8E;
}

.geoid-pub-header .date {
    font-weight: bold;
}

.geoid-pub-header .date .day {
    font-size: 3em;
}

.geoid-pub-header .date .month {
    font-size: 2em;
}

.geoid-pub-header .tags {
    text-align: right;
}

.geoid-pub-header .tags .tag {
    font-style: italic;
}

.geoid-pub-content .title {
    font-size: 1.3em;
    text-transform: uppercase;
}

.geoid-pub-content .title:hover {
    color: #006F8E;
}

.geoid-pub-content .content p {
    text-align: justify;
}

footer .widget > h4::after {
    background-color: #FFFFFF;
}

/* Common style */
.geoid-pub .geoid-pub-image figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 320px;
	max-width: 480px;
	max-height: 200px;
	width: 100%;
    height: 200px;
	background: #006F8E;
	text-align: center;
	cursor: pointer;
}

.geoid-pub .geoid-pub-image figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}

.geoid-pub .geoid-pub-image figure figcaption,
.geoid-pub .geoid-pub-image figure figcaption i {
	color: #fff;
	font-size: 1.3em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.geoid-pub .geoid-pub-image figure figcaption::before,
.geoid-pub .geoid-pub-image figure figcaption::after {
	pointer-events: none;
}

.geoid-pub .geoid-pub-image figure figcaption,
.geoid-pub .geoid-pub-image figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
.geoid-pub .geoid-pub-image figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.geoid-pub .geoid-pub-image figure p {
	margin: 0;
}

.geoid-pub .geoid-pub-image figure p {
	letter-spacing: 1px;
}

/*---------------*/
/***** Ruby *****/
/*---------------*/

figure.effect-ruby {
	background-color: #006F8E;
}

figure.effect-ruby img {
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

figure.effect-ruby:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-ruby p {
	margin: 1em 0 0;
	padding-top: 4em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0) scale(1.1);
	transform: translate3d(0,20px,0) scale(1.1);
} 

figure.effect-ruby:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,10px,0) scale(1);
	transform: translate3d(0,10px,0) scale(1);
}