/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 13px;
    font-family: Verdana, Geneva, 'Orbitron', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:focus {
    outline: none;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

/** faq page **/
.q {
    font-weight: 600;
    font-size: 20px;
}
.a {
    font-weight: 500;
    font-size: 16px;
    padding-left: 20px;
}

.faq-contact {
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 1340px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 1450px) {
    .container {
        max-width: 1400px;
    }
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}


/*===========================================================
Preloader CSS
============================================================*/
.spinner-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: #fff;
}

.spinner {
    background-color: #065e52;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 9999999;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0.0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

/*===========================================================
 Scroll Animate
============================================================*/

.js .animate-box {
    opacity: 0;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 30px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}

/*===========================================================
Navigation CSS
============================================================*/
.desk-nav {
    background: #fff;
    height: 80px;
    line-height: 80px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    transition: all 0.5s;
}

.desk-nav.scrollUp {
    transform: translateY(-80px);
}

.nex-menu,
.desk-nav ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    float: right;
}

.nex-menu {
    display: inline-block;
}

.desk-nav ul.navbar-menu li {
    display: inline-block;
    margin: 0 10px;
}

.desk-nav ul.navbar-menu li a {
    font-family: 'Orbitron', sans-serif;
    color: #131313;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
}

.desk-nav a#brand {
    text-transform: uppercase;
    float: left;
    font-weight: 800;
    font-size: 20px;
}

.desk-nav button {
    background: none;
    width: 30px;
    height: 40px;
    margin-top: 20px;
    border: none;
    float: right;
    display: inline-block;
    cursor: pointer;
    display: none;
}

.desk-nav button span {
    width: 30px;
    height: 40px;
    height: 2px;
    background: #333;
    display: block;
    margin: 5px 0;
}

#brand {
    display: inline-block;
}

.nexmenu-reveal {
    height: 27px;
    width: 23px;
    cursor: pointer;
    z-index: 99999;
    transition: opacity .25s ease;
}

.nexmenu-reveal.nexclose {
    position: fixed;
    height: 27px;
    width: 25px;
    cursor: pointer;
    z-index: 110;
    transition: opacity .25s ease;
}

.nexmenu-reveal:hover {
    opacity: .7;
}

.nexmenu-reveal.nexclose span:nth-of-type(1) {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}

.nexmenu-reveal.nexclose span:nth-of-type(2) {
    background: #FFF;
    opacity: 0;
}

.nexmenu-reveal.nexclose span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}

.nexmenu-reveal span {
    background: #fff;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 12px;
    transition: all .35s ease;
    cursor: pointer;
    border-radius: 2px;
}

.nexmenu-reveal span {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 25px;
}

.nexmenu-reveal span:nth-of-type(2) {
    top: 8px;
    opacity: 1;
}

.nexmenu-reveal span:nth-of-type(3) {
    top: 16px;
}

.nexmenu-reveal.nexclose span:nth-of-type(3) {
    top: 22px;
}

.nexmenu-reveal {
    z-index: 110;
}

.nexmenu-reveal {
    width: 25px;
}

.nex-bar {
    overflow: hidden;
}

.nex-container #brand a {
    color: #fff;
    padding: 15px;
    font-size: 20px;
}

/*======= Navigation Menu=========*/
.navigation-area {
    padding: 20px 0;
}

.nav {
    padding: 20px 0;
}

.nav li a {
    font-family: 'Orbitron', sans-serif;
    color: #131313;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;

}

.navigation .donate-btn {
    padding-top: 5px;
}

.donate-btn a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 0 60px;
    line-height: 50px;
    background-color: #2083c5;
    display: inline-block;
}

.nav li {
    position: relative;
    margin-left: 40px;
    padding-left: 24px;
}

.nav li:before {
    position: absolute;
    top: 3px;
    left: 0;
    width: 13px;
    height: 12px;
    content: '';
    background-image: url("../img/nav-icon.svg");
    background-repeat: no-repeat;
}

.nav li:hover a,
.nav li.active a {
    color: #2083c5;
}

.nav li.active:before,
.nav li:hover:before {
    background-image: url("../img/nav-icon-active.svg");
    background-repeat: no-repeat;
}

/*Align 3 items*/
#justify-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* For Menu Design only */

.nav li {
    display: inline-block;
}

/*========= Audio Player =========*/

.audioplayer {
    width: 60px;
    height: 60px;
    margin: 50px auto auto auto;
    border: solid;
}

.playbutton {
    height: 60px;
    width: 60px;
    border: none;
    float: left;
    outline: none;
}

.play {
    background: url('http://www.alexkatz.me/codepen/img/play.png');
}

.pause {
    background: url('http://www.alexkatz.me/codepen/img/pause.png');
}

.play,
.pause {
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.timeline {
    width: 0;
    height: 0;
    margin-top: 20px;
    float: left;
    border-radius: 15px;
    background: rgba(0, 0, 0, .3);
}

.playhead {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 1px;
    background: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.playhead {
    display: none;
}


/* ===== Checkbox =========*/
.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid #707070;
    border-radius: 1px;
}


.styled-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}


.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 8px;
    background: green;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 green, 4px 0 0 green, 4px -2px 0 green, 4px -4px 0 green, 4px -6px 0 green, 4px -8px 0 green;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.unstyled {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.checkboxes li label {
    text-overflow: ellipsis;
}

.checkboxes li {
    margin: 3px 0;
}

.checkboxes li {
    width: calc(100% / 8);
    display: inline-block;
    margin-left: -5px;
    overflow: hidden;
    clear: both;
    vertical-align: top;
}

.unstyled li:last-child {
    width: calc(100% / 4);
}

.mood {
    padding-left: 15px;
    border: 1px solid #000;
    padding-top: 10px;
    padding-bottom: 5px;
    border-radius: 5px;
}

.mood h4 {
    text-align: center;
    color: #131313;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

/*-======== Custom  Radio =====*/


.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #131313;
    border-radius: 100%;
    background: #fff;
}

.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #131313;
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


 h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 699px;
    color: #131313;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}


h2 {
    margin-top: 0;
    color: #131313;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

 ul li {
    margin-left:20px;
    margin-bottom:10px;
    padding: 5px 0;
}

/*content-top*/
.content-top h3 {
    margin-left: auto;
    margin-right: auto;
    max-width: 699px;
    color: #131313;
    font-size: 26px;
    font-weight: 700;
}

.content-top p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    /*max-width: 699px;*/

}

.content-top {
    text-align: center;
}

/* ===== content-right =========*/
.content-left {
    float: left;
    width: 180px;
    background-color: #f1f9fe;
}

.content-right {
    width: 180px;
    float: right;
}

.content-middle {
    width: calc(100% - 400px);
    margin-left: 20px;
    float: left;
    padding-top: 20px;
}

.content-left {
    padding: 15px;
}

.content-left h3 {
    color: #131313;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
}

.content-left ul li {
    display: block;
    padding: 5px 0;
}

.content-left ul li a {
    color: #131313;
    font-size: 13px;
    font-weight: 400;
}

.content-left ul li a:hover {
    color: #2083c5;
}

.music-download h3 {
    color: #131313;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 28px;
}

.content-top p {
    margin-bottom: 0;
    color: #131313;
    font-size: 15px;
    font-weight: 400;
}

.mood h4 {
    margin-bottom: 10px;
}

.genre-tempo {
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}

.genre {
    display: inline-block;
}

.tempo {
    display: inline-block;
    float: right;
}

.tempo-content {
    text-align: center;
    width: 290px;
}

.genre-tempo {
    margin-top: 35px;
}

.keyword input {
    padding: 0 15px;
}

.title-keyword {
    width: 240px;
    margin-top: 45px;
}

.title-keyword input {
    width: 252px;
    line-height: 40px;
    border-radius: 5px;
    border: 1px solid #707070;
    background-color: #f1f9fe;
}

.submit-btn button {
    margin-left: auto;
    margin-right: auto;
    border: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    width: 180px;
    line-height: 40px;
    background-color: #2083c5;
}

.submit-btn {
    margin-top: 80px;
    text-align: center;

}

.title-keyword h3,
.genre-select h3,
.tempo-content h3 {
    text-align: center;
    color: #131313;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.genre-select h3 {
    max-width: 190px;
}

.genre-select select {
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    background-position: 94% 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 10px;
    width: 190px;
    line-height: 43px;
    color: #131313;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #707070;
    border-radius: 4px;
}

.genre-select option {
    width: 190px;
    color: #131313;
    font-size: 15px;
    font-weight: 400;
}

.tempo-content label {
    color: #131313;
    font-size: 15px;
    font-weight: 400;
}

.tempo-radio p {
    margin-right: 28px;
    display: inline-block;
}

.tempo-radio p:last-child {
    margin-right: 0;
}

/*feat-left*/
.feat-left,
.feat-right {
    width: 50%;
    float: left;
}

.feat-left {
    padding: 27px 10px 22px 32px;
    border-radius: 5px;
    border: 1px solid #131313;
    background-color: #f1f9fe;
}

.feat-left h3 {
    margin: 0;
    color: #131313;
    font-size: 20px;
    font-weight: 700;
}

/* ===== banner-area =========*/
.banner-area {
    margin-top: 50px;
    height: 100px;
    background-image: url("../img/banner.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    padding: 27px 0;
}

.banner h3 {
    display: inline-block;
    float: right;
    color: #131313;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    margin-right: 45px;
    padding-top: 5px;
}

.banner-content {
    float: right;
    display: inline-block;
}

/*====== share ======*/
.share {
    margin-top: 115px;
    margin-bottom: 50px;
    padding: 18px 0;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    text-align: center;
}

.share h3 {
    display: inline-block;
    color: #131313;
    font-size: 15px;
    font-weight: 700;
    margin-right: 20px;
}

.share a {
    display: inline-block;
    margin-left: 32px;
}

/* Style for "New Song */
.faet-song-area h3 {
    text-align: center;
    color: #131313;
    font-size: 25px;
    margin-bottom: 30px;
}

.sm2_button span {
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background-color: #2083c5;
    padding: 7px 7px 7px 13px;
}

.sm2_button span img {
    line-height: 34px;
}

.song-download {
    padding-left: 50px;
}

.song-download,
.song-play {
    display: inline-block;
}

.songs {
    margin-top: 25px;
}

.feat-songs td:first-child {
    color: #131313;
    font-size: 15px;
    font-weight: 700;
}

.feat-songs td {
    line-height: 1.6;
}

.feat-songs td:last-child {
    color: #131313;
    font-size: 15px;
    font-weight: 400;
    padding-left: 20px;
}

.song-download span {
    color: #52c85d;
    font-size: 15px;
    font-weight: 400;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sm2_button {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sm2_button:hover span {
    background: #c4302B;
}

.sm2_button.sm2_playing span {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    background: #c4302B;
}

.feat-left h3 {
    font-size: 20px;
}

.feat-left {
    position: relative;
}

.social-btn {
    position: absolute;
    right: 11px;
    top: 25px;
}

.social-btn a {
    margin-left: 10px;
}

.feat-left h3 {
    text-align: left;
}

.feat-right {
    padding-left: 45px;
    padding-top: 20px;
}

.feat-right h3 {
    text-align: left;
    margin-bottom: 10px;
}

.feat-right p {
    margin-top: 10px;
    color: #131313;
    font-size: 15px;
    font-weight: 400;
}

/* ===== Right sidebar =========*/
.adv-1 {
    overflow: hidden;
}

.adv-2 {
    margin-top: 20px;
    text-align: center;
    background-image: url("../img/adv-2.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    min-height: 275px;
}

.adv-2 h4 {
    margin-left: auto;
    margin-right: auto;
    max-width: 145px;
    padding: 30px 15px 25px 15px;
    color: #131313;
    font-size: 13px;
    font-weight: 700;
}

.adv-2 img:last-child {
    margin-top: 50px;
}
 
/* ===== Footer =========*/
.footer-area {
    padding-top: 50px;
    padding-bottom: 65px;
    text-align: right;
}

.footer-area .container {
    max-width: 960px;
}

.footer-bottom {
    text-align: center;
}

.footer-top-left {
    width: 240px;
    padding-right: 40px;
    display: inline-block;
    vertical-align: middle;
}

.footer-top-right {
    width: calc(100% - 245px);
    display: inline-block;
    vertical-align: middle;
}

.footer-top-right p {
    color: #131313;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.footer-top {
    overflow: hidden;
    margin-bottom: 50px;
    text-align: center;
}

.footer-bottom p {
    color: #131313;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}

.footer-bottom h4 {
    color: #131313;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
}

.footer-bottom a {
    font-weight: 700;
    color: #131313;
    text-decoration: underline;
}

.footer-bottom p a {
    font-weight: 400;
    color: #131313;
    text-decoration: underline;
}

/*======== Search Page ====== */
.search-songs {
    overflow: hidden;
    clear: both;
    margin-left: -8px;
    margin-right: -8px;
}

.search-songs .row {
    margin-left: -8px;
    margin-right: -8px;
}

.search-songs .container,
.search-songs .col-xl-6,
.search-songs .col-md-6,
.search-songs .col-sm-6,
.search-songs .col-lg-6 {
    padding-left: 8px;
    padding-right: 8px;
}

.single-song {
    margin-bottom: 15px;
    overflow: hidden;
}

.single-song .feat-left {
    width: 100%;
}

.search-songs {
    margin-top: 35px;
    margin-bottom: 110px;
}

.content-top-search h2 {
    margin-top: 0;
    color: #131313;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
}

.content-top-search p {
    color: #131313;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    max-width: 700px;
}

.content-top-search a {
    color: #131313;
    font-size: 15px;
    font-weight: 700;
}

.content-search-left {
    vertical-align: top;
    width: 174px;
    height: 139px;
    display: inline-block;
}

.content-search-right {
    vertical-align: top;
    padding-left: 10px;
    width: calc(100% - 180px);
    display: inline-block;
} 

.hpt {
    display:none;
}
/*=============== Responsive ============*/
@media only screen and (min-width: 1199px) {
    .feat-left h3 {
        font-size: 16px;
    }

    .feat-songs td:last-child {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1340px) {
    .checkboxes li {
        width: calc(100% / 6);
    }

    .song-download {
        padding-left: 30px;
    }

    .nav li {
        margin-left: 25px;
    }
}

@media only screen and (max-width: 1199px) {
    .checkboxes li {
        width: calc(100% / 4);
    }

    .unstyled li:last-child {
        width: calc(100% / 2);
    }

    .nav li {
        margin-left: 12px;
        padding-left: 15px;
    }

    .share a {
        display: inline-block;
        margin-left: 20px;
    }

    .feat-left, .feat-right {
        width: 100%;
        float: left;
    }

    .feat-right {
        padding-left: 0;
    }

    .banner-area {
        /*height: 100px;*/
        /*padding: 10px 0;*/
    }

    .banner h3 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 991px) {
    .content-middle {
        width: 100%;
        margin-left: 0;
        float: left;
        padding-top: 20px;
    }

    .single-block.logo-block,
    .single-block.donate-btn {
        display: none;
    }

    #justify-block {
        display: block;
    }

    .nex-nav .container {
        width: 100%;
        max-width: 100%;
    }

    .nex-nav {
        /*width: 300px !important;*/
        /*float: right;*/
        /*background: #2083c5;*/
    }

    .nex-container .nex-nav ul li a {
        color: #2083c5;
    }

    .nex-container .nex-bar {
        -webkit-box-shadow: 2px 1px 0px #ddd;
        -moz-box-shadow: 2px 1px 0px #ddd;
        box-shadow: 2px 1px 0px #ddd;
    }

    .nex-container a.nexmenu-reveal {
        top: 23px;
    }

    .brand-bar {
        font-size: 23px;
        color: #fff;
        padding: 4px 15px;
    }

    .main-content-area {
        margin-top: 80px;
    }

    .content-left {
        width: calc(100% - 190px);
    }

    .content-middle {
        padding-top: 40px;
    }

    .banner h3 {
        font-size: 21px;
        float: none;
        text-align: center;
        display: block;
    }

    .banner-content {
        float: none;
        display: block;
        /* margin: 0 auto; */
        text-align: center;
    }

    .banner-area {
        margin-top: 20px;
        padding: 9px 0;
    }

    .feat-left h3 {
        padding-right: 76px;
    }
    .content-left,
    .content-right{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .share {
        overflow: hidden;
        width: 100%;
    }

    .genre-select h3 {
        max-width: 100%;
    }

    .genre {
        text-align: center;
        display: block;
        margin-bottom: 20px;
    }

    .tempo-content {
        text-align: center;
        width: 100%;
    }

    .submit-btn {
        margin-top: 20px;
        text-align: center;
    }

    .title-keyword {
        width: 100%;
        margin-top: 25px;
        text-align: center;
    }

    .tempo {
        display: block;
        float: none;
    }

    .share {
        margin-top: 50px;
    }

    .share h3 {
        display: block;
        padding-right: 0;
        margin-right: 0;
    }

    .footer-top-right p {
        text-align: center;
    }

    .content-left .genre {
        text-align: left;
    }

    .footer-top-right {
        width: 100%;
        display: block;
        vertical-align: middle;
        margin-top: 20px;
        text-align: left;
    }

    .footer-top {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .footer-top-left {
        text-align: center;
        padding-right: 0;
        width: auto;
        display: block;
        vertical-align: unset;
    }

    .search-songs {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 570px) {
    .checkboxes li {
        width: calc(100% / 3);
    }

    .unstyled li:last-child {
        width: calc(100%);
    }

    .banner h3 {
        display: none;
    }

    .banner-area {
        height: auto;
    }

    .feat-left {
        padding-left: 20px;
    }

    .content-search-right {
        display: block;
    }

    .content-search-left {
        width: 100%;
        display: block;
        text-align: center;
    }

    .content-search-right {
        margin-top: 15px;
        padding-left: 10px;
        width: 100%;
        text-align: center;
    }

    .content-top-search {
        text-align: center;
    }
}

@media only screen and (max-width: 400px) {
    .song-download {
        margin-top: 15px;
        display: block;
        padding-left: 0;
    }

    .checkboxes li {
        width: 100%;
    }

    .content-left {
        width: 100%;
    }

    .content-right {
        float: none;
    }
    .content-left{
        overflow: hidden;
    }
    .content-right {
        padding-top: 20px;
        float: none;
        width: 100%;
        overflow: hidden;
        clear: both;
    }
}
