.slideColumn {
    padding: 1.5em;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
}

.slideContent {
    width: 100%;
    margin: auto;
}

@media screen and (min-width: 768px) {
	.slideContent {
		width: 80%;
	}
}

@media screen and (min-width: 992px) {
	.slideContent {
		width: 60%;
	}
}

@media screen and (min-width: 1200px) {
	.slideContent {
		width: 40%;
	}
}

.slider {
    width: 100%;
    text-align: center;
    color: #003b4c;
    background: #f8f9fa;
    display: table;
}

.slider blockquote {
    padding: 0;
    margin: 0;
    font-size: inherit;
    border-left: none;
}

.slider blockquote:before {
    content: '»';
    color: #8ebf2a;
    font-weight: bold;
}

.slider blockquote:after {
    content: '«';
    color: #8ebf2a;
    font-weight: bold;
}

#fixHeight {
    transition: height .6s ease;
    height: 2.3em;
}

#slideText {
    min-height: 2.3em;
}

#fadeout {
	position: absolute;
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	background: -moz-linear-gradient(top, rgba(248,249,250,0) 0%, rgba(248,249,250,0) 50%, rgba(248,249,250,1) 80%, rgba(248,249,250,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(248,249,250,0) 0%,rgba(248,249,250,0) 50%,rgba(248,249,250,1) 80%,rgba(248,249,250,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(248,249,250,0) 0%,rgba(248,249,250,0) 50%,rgba(248,249,250,1) 80%,rgba(248,249,250,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    opacity: 1;
    transition: opacity .6s ease;
}

.slide {
    display: table-cell;
    vertical-align: middle;
    font-size: 200%;
    width: 10%;
}

.slideUnselectable {
    color: #DDD;
}

.slide:hover {
    background-color: rgba(0, 0, 0, .05);
}

.slideForwards {
    animation-name: slideForwards;
    animation-duration: .6s;
}

@keyframes slideForwards {
    0% {
        opacity: 1;
        transform: scale(1,1);
        transform: translate(0,0);
    }
    50% {
        opacity: 0;
        transform: scale(3,3);
        transform: translate(-100%,0);
    }
    51% {
        transform: translate(100%,0);
    }
    100% {
        opacity: 1;
        transform: scale(1,1);
        transform: translate(0,0);
    }
}

.slideBackwards {
    animation-name: slideBackwards;
    animation-duration: .6s;
}

@keyframes slideBackwards {
    0% {
        opacity: 1;
        transform: scale(1,1);
        transform: translate(0,0);
    }
    50% {
        opacity: 0;
        transform: scale(3,3);
        transform: translate(100%,0);
    }
    51% {
        transform: translate(-100%,0);
    }
    100% {
        opacity: 1;
        transform: scale(1,1);
        transform: translate(0,0);
    }
}
