/* Search page related styling */

/* Search */
#peteyvid-link img {
    height: 20px;
    width: 20px;
}
.search-query-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-query-container input {
    min-width: 20%;
    max-width: 600px;
}
.search-query-container button {
    margin-left: 5px;
}
.search-options-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 0;
}
.search-options-container .search-option {
    padding: 2px;
}
.search-options-container select {
    min-width: 135px;
}
.search-options-container select:disabled {
    opacity: 0.5;
}
.search-options-container[max-width~="450px"] {
	flex-direction: column;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
}

/* Channel Results */
.channel-result-container {
    margin: 0 0 20px;
    display: flex;
    max-height: 270px;
	overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.channel-result-image-container,
.channel-result-text-container {
    position: relative;
	display: inline-block;
	width: 100%;
	text-align: left;
}
.channel-result-image-container {
    margin-right: 20px;
    max-width: 270px;
}
.channel-result-image-container:hover .play-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
	transform: scale(1);
}
.channel-result-bottom-shadow {
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	position: absolute;
	width: 100%;
	min-height: 50%;
	left: 0;
	bottom: -2px;
	z-index: 1;
}
.channel-result-name {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 6px;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    display: block;
    display: -webkit-box;
    min-height: 1em;
    max-height: 3em;
    line-height: 1em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.channel-result-title a {
    font-size: 16px;
    font-weight: bold;
}
.channel-result-creator {
    margin: 3px 0 6px;
}
.channel-result-creator a {
    font-size: 14px;
    font-weight: bold;
}
.channel-result-shadow {
	position: absolute;
	width: 110%;
	min-height: 65px;
	left: -10px;
	bottom: -16px;
	z-index: 1;
}
.channel-result-details {
    position: absolute;
    min-width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.results-list[max-width~="592px"] .channel-result-image-container {
    margin: 0;
    min-width: 100%;
}
.results-list[max-width~="592px"] .channel-result-text-container {
    display: none;
}

/* Video Results */
.video-result-container {
    margin: 0 0 20px;
    display: flex;
    max-height: 150px;
	overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.video-result-image-container,
.video-result-text-container {
    position: relative;
	display: inline-block;
	width: 100%;
	text-align: left;
}
.video-result-image-container:hover .play-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.video-result-image-container:hover .action-button {
    opacity: 1;
}
.video-result-image-container {
    margin-right: 20px;
}
.video-result-image {
	position: relative;
}
.video-result-image-container,
.video-result-image,
.video-result-image img {
	max-width: 270px;
}
.video-result-title a {
    font-size: 16px;
    font-weight: bold;
}
.video-result-channel {
    margin: 3px 0 6px;
}
.video-result-channel a {
    font-size: 14px;
    font-weight: bold;
}
.video-result-text {
    margin: 5px 0;
    display: block;
    display: -webkit-box;
    min-height: 8.0em;
    max-height: 8.0em;
    line-height: 1.2em;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    overflow: hidden;
}
.video-result-text p {
    margin-bottom: 14px;
}
.video-result-text p:last-child {
    margin-bottom: 0;
}
.video-result-shadow {
	position: absolute;
	width: 110%;
	min-height: 60px;
	left: -10px;
	bottom: -16px;
	z-index: 1;
}
.video-result-details {
    position: absolute;
    min-width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.results-list[max-width~="592px"] {
	align-items: center;
	justify-content: center;
}
.results-list[max-width~="592px"] .video-result-container {
	flex-direction: column;
	max-width: 270px;
	max-height: 100%;
}
.results-list[max-width~="592px"] .video-result-image-container,
.results-list[max-width~="592px"] .video-result-text-container {
    margin: 0;
    min-width: 100%;
}
.results-list[max-width~="592px"] .video-result-title {
    margin: 5px 0 0;
}
