/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

/*My colors Shandy Brown="#FC9F5B" Tuscan="#FBD1A2" Dutch White="#ECE4B7" Pearl Aqua="#7DCFB6" UFO Green="#33CA7F"*/
/*Index*/
/* 1. Globals */
/* 2. Home page holders*/
/* 3. Search Form*/
/* 4. Artist card*/
/* 5. View songs*/
/* 6. Nav Bar*/
/* 7. Search By Songs*/
/* 8. Top Charts table*/
/* Globals */
html{
    background-color: black;
    margin: 0;
}
body{
    background-color: #ECE4B7;
    font-weight: 400;
    margin: 0;
    padding:0;
    font-family: 'Lato', sans-serif;    
    background-color: #ECE4B7;
    font-display: swap;
    overflow: scroll;
}
/* Home page holders */
.homepage-body{
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #ECE4B7;
}
.homepage-body > div{
    min-height: 0;
}

.info-text h1{
    font-weight: 800;
}

.column-holder{
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.column-chart {
    float: left;
    width: 50%;
    background-image: url("images/calming-lake-orignal.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-size: cover;
}
.column-search {
    float: right;
    width: 50%;
    background-image: url("images/headphones-guy.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-size: cover;
}
@media (max-width: 800px){
    .column-holder{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .column-search{
        width: 100%;
    }
    .column-chart{
        width: 100%;

    }
}

/*Search Form*/
.search-bar{
    display: block;
    position: relative;
    text-align: center;
    top: 15%;
    background:rgba(0,0,0,0.4);
    margin-left: 10%; 
    margin-right: 10%;
    margin-top: 10%;
    margin-bottom: 10%;
    padding-top: 10%;
}

.search-form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #212529;
    font-weight: 1000;
}

.search-form button{
    margin-top: 20px;
    width: 100px;
    height: 50px;
    border-radius: 30%;
    font-weight: 400;
    margin-bottom: 20px;
    color: #E27D60;
    border: 2px solid #E27D60;
}

.search-form button:hover{
    background-color: #E27D60;
    color: #ECE4B7;
}

.dropdown{
    width:200px;
    display: inline-block;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    height: 100%;
    text-align: center;
    margin: auto;
}

.dropdown .select {
    width:200px;
    cursor: pointer;
    display: block;

}
.option-menu{
    text-align: center;
    width:auto;
    margin: 10%;
}

.form-control{
    background-color:#7f7f7f;
    color: #212529;
    border: 1px solid #E27D60;
    font-weight: 600;
    width: auto;
}
.form-control input{
    color: #FC9F5B;
}

/**/

/*Artist card*/
.artist-cards{
    text-align: center;
    margin: auto;
    color: #E27D60;    
    padding: 10px;
}
.card {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #557A95;
    border: 2px solid #E27D60;
}
.title {
    color: #E8A87C;
    font-size: 18px;
}
.card a{
    text-decoration: none;
    font-size: 22px;
    color: black;
}

.card img{
    width: auto;
    height: auto;
    margin: auto;
    padding:20px;

}
.card p{
    font-size: 16px;
}
.card h1{
    font-size: 18px;
}
.no-imagesizeing{
    max-width: 214px;
    max-height: 214px;
}
.viewAlbum-songs{
    margin: auto;
    margin-bottom: 15px;
    background-color: #C0C0C0;
    border: 1px solid #E27D60;
    color: #E27D60;
    font-weight: 600;
    height: 40px;
}
/* View songs*/
.album-songs img{
    width: auto;
    height: auto;
    padding: 15px;
}
.album-songs{
    text-align: center;
    font-size: 18px;
}

.list-songs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.track-name{
    padding-top: 5px;
    margin: auto;
}
.track-name h4{
    font-weight: 600;
    font-size: 110%;
}
.track-duration{
    margin: auto;
}
@media (max-width: 768px) {
    .list-songs{
        font-size: 16px;
    }
}


/*Nav Bar*/
.bg-navbar{
    background-color:#E8A87C;
}
.navbar-light .navbar-brand{
    color: #557A95;
    font-weight: 600;
    font-size: 20px;
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover,
.navbar-light .navbar-nav .nav-link:hover{
    color: #7f7f7f;
}
/*Footer*/
#footer{
    clear: both;
    position: relative;
    width: 100%;
    background-color:#7f7f7f;
    bottom: 0;

}
#footer a{
    color:#C0C0C0;
    font-size: 14px;

}
#footer a:hover{
    color: #E27D60;

}

.footer-text{
    font-size: 14px;
    padding: 5px;
    color: #C0C0C0;

}
.list-unstyled{
    margin-bottom: 1px;
}


/*Search By Songs */
.songs-search{
    margin: auto;
    text-align: center;
    height: 150px;
    margin-bottom: 20px;
}

.songs-search > h4{
    color: #C0C0C0;
    font-weight: 600;
    font-size: 20px;
    margin: auto;
}
.song-search-outer p{
    color: #E27D60;
}
.song-search-outer{
    text-align: center;
    margin: auto;
color: #E27D60;    
padding: 10px;
}
/*Top Charts table*/
.charts-outer{
    padding: 0;
    color: #212529;
    clear: both;
}

#chart-table > tbody > tr{
    background-color: transparent;
}
table.dataTable tr.even td.sorting_1,
table.dataTable tr.odd td.sorting_1 {
    background-color: transparent;
}
.paginate_button{
    cursor:pointer;
    margin: 5px;
}

#chart-table{
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3);
}

.dataTables_length {
    margin: auto;
    color: #7DCFB6;
    font-weight: 600;
    margin-left: 50px;

}

#chart-table_filter{
    font-weight: 800;
    text-align: center;
    float: none;
    font-size: 20px;
}
#chart-table_filter input{
    background-color: #7f7f7f;
    color: #212529;
    border: #E27D60 solid 1px;
}
.dataTables_filter input::placeholder{
    color: #212529;
}
table.dataTable td {
    padding: 2px 1px;
}
table.dataTable thead th {
    padding: 0;
}
.dataTables_info {
    display: none;
}

.dataTables_paginate > a,
.dataTables_paginate > span {
    font-size: 24px;
    color: #212529;
    margin: 10px;
}
.dataTables_paginate > span > a:hover,
.dataTables_paginate > a:hover{
    color: #E27D60;
}
.dataTables_paginate{
    font-weight: 1000;
    background-color: rgba(255, 255, 255, 0.3);
    float: none;
    text-align: center;
    padding: 5px;
}
@media(max-width:320px){
    .dataTables_paginate > a,
    .dataTables_paginate > span{
        font-size: 20px;
    }
}

.charts-image h2{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.chart-info > h2{
    font-size: 130%;
    font-weight: 1000;
    padding: 10px;
    text-align: center;
}