/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
.quotes-wrapper {
	position: relative;
	min-height: 206px;
	overflow: hidden;
}

.parent-pageid-9 .quotes-wrapper {
	min-height: 355px;	
}

.quotes-wrapper .custom-icon-quote {
	font-size: 5em;
	position: absolute;
	top: 25px;
	left: 0;
	color: #CCC;
}

.quotes-wrapper ul {
	margin-left: 90px;
	list-style: none;
	color: #777;
}

.quotes-wrapper ul li {
	position: absolute;
	top: 40px;
    left: 115px;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
	transition: all 0.4s ease-in;
} 

.quotes-wrapper ul li.hidden {
	-ms-transform: translate(300px, 0); /* IE 9 */
    -webkit-transform: translate(300px, 0); /* Safari */
    transform: translate(300px, 0);
	opacity: 0;
}
 
 .quotes-wrapper .quotes-nav {
	 position: absolute;
	 bottom: 0;
	 right: 0;
 }
 
 .quotes-nav-btn {
	 cursor: pointer;
	 padding: 5px;
	 font-size: 1.2em;
	 color: #A9A9A9;
 }
 
 .quotes-nav-btn:hover {
	 background: #f7f7f7
 }
 
 .quotes-nav-btn:hover:before {
	 color: #000;
 }
 
 .quote-phrase {
	 font-family: 'Rambla';
	 font-style: italic;
	 font-size: 1.3em;
 }
 
 
 .parent-pageid-9 .quotes-wrapper .quote-phrase {
     font-size: 1.1em;
     line-height: 1.5em;
 }
 
 .quote-author {
	 font-size: 0.8em;
 }