/*
* Channel Finder CSS
*/

#channel-finder-search form,
#channel-finder-search-results form {
    display: flex;
}
#channel-finder-search-results form {
    justify-content: center;
}
#channel-finder-search input {
    outline: none;
    border: none;
    width: 200px;
    padding: 15px 30px;
    background-color: #eee;
    border-radius: 24px;
    color: #000;
}
#channel-finder-search-results input {
    outline: none;
    border: none;
    width: 400px;
    padding: 15px 30px;
    background-color: #eee;
    border-radius: 24px;
}
#channel-finder-search-results button {
    border: none;
    color: #fff;
    background-color: var(--brand-2);
    padding: 15px;
    border-radius: 24px;
    margin-left: -35px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
#channel-finder-search-results p {
    /*
    margin-left: -380px;
    */
    margin-bottom: -15px;
}
#channel-finder-search-results button:hover,
#channel-finder-search button:hover {
    background-color: var(--brand-3);
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
#channel-finder-search input::placeholder {
    color: #000;
    opacity: 1;
}
#channel-finder-search input:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
#channel-finder-search input::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
#channel-finder-search button {
	border: none;
    color: #fff;
    background-color: var(--brand-2);
    padding: 15px;
    border-radius: 24px;
    margin-left: -35px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
#channel-finder-results {
    text-align: center;
    margin: 50px 0;
}
#channel-finder-results h1 {
    max-width: 124rem;
    margin: 0 auto;
    overflow: hidden;
}
#channel-finder-results h1:before,
#channel-finder-results h1:after{
    content:"";
    vertical-align: middle;
    display: inline-block;
    width: 50%;
    border-bottom: 7px dotted #ccc;
    margin: 0 2% 0 -55%;
}
#channel-finder-results h1:after{
    margin:0 -55% 0 2%;
}
#channel-finder-results-table {
    margin: 50px 0;
}
#channel-finder-results-table table {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
}
#channel-finder-results table tbody tr td,
#channel-finder-results table thead tr th {
    padding: 25px 0;
}
#channel-finder-results table thead tr th {
    font-size: 22px;
    font-weight: 300;
}
#channel-finder-results table tbody tr:nth-child(even) {
    background-color: #eee;
}
@media only screen and (max-width: 1023px) {
    #channel-finder-search form {
	    padding: 20px 0 0 25px;
	}
    #channel-finder-results h1:before,
    #channel-finder-results h1:after{
        content:none;
    }
    #channel-finder-results h1 {
        width: 100%;
    }
    #channel-finder-search-results p {
        text-align:left;
        margin:0 auto;
        width:49.1rem;
    }
}
