/* Download popup */
.download-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    opacity: 0;
    display: none;
}

.download-popup .download-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.download-popup .download-content {
    background: #101010;
    padding: 40px 60px;
    border-radius: 6px;
    z-index: 1002;
    width: 40%;
}

.download-popup .download-content input[type='text'] {
    font-size: 15px;
    min-width: 400px;
    padding: 12px;
    background: black;
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: block;
    margin-top: 30px;
    color: #FFF;
}

.download-popup .download-content input[type='checkbox'] {
    width: 17px;
    height: 17px;
    border-radius: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    color: #000000;
    text-align: left;
    display: inline-block;
    position: relative;
    top: 1.8px;
    margin-right: 10px;
}

.download-popup .download-content .btn {
    margin-top: 20px;
}

.download-popup h1 {
    margin-bottom: 5px;
    font-size: 24px;
}

.download-popup h2 {
    margin-top: 0;
    font-size: 20px;
}

.download-popup .error {
    font-size: 14px;
    color: red;
    display: block;
    margin-top: 10px;
    display: none;
}

.download-popup h3 {
    display: none;
}

/* Beats */
.beats {
    margin: 0 auto;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
}

/* Top contact buttons */
.beats .beats-contact {
    margin-top: 20px;
}

.beats .beats-contact .beats-contact-opt {
    position: relative;
    width: 220px;
    height: 70px;
    line-height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: inline-block;
    margin: 0 10px;
    transition: background 0.5s;
    cursor: pointer;
}

.beats .beats-contact .beats-contact-opt:hover {
    background: rgba(255, 255, 255, 0.05);
}

.beats .beats-contact .beats-contact-opt i {
    font-size: 24px;
    position: relative;
    top: 2.5px;
    margin-right: 5px;
}

.beats .beats-contact .beats-contact-opt span {
    font-size: 14px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -2px;
}

.beats .beats-info {
    text-align: center;
    margin: 0 0 40px 0;
}

/* Beat instance */
.beats .beat {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-bottom: dashed 1px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.5s, color 0.5s;
}

.beats .highlight {
    background: rgba(207, 255, 24, 0.16);
}

.beats .beat:hover {

}

.beats .beat div:hover {

}

.beats .beat .beat-img {
    width: 60px;
    height: 60px;
    background-size: 100% 100% !important;
}

.beats .beat .act {
    background: #416381;
    border-radius: 6px;
    padding: 6px;
    font-weight: bold;
    font-size: 12px;
    width: fit-content;
    transition: background 0.5s;
}

.beats .beat .act:hover {
    background: #417db1;
}

.beats .beat #buy {

}

.beats .beat .beat-licences {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.beats .beat .beat-licences .licence {
    display: inline-block;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 20px 30px;
    margin: 0 20px;
    vertical-align: top;
    transition: background 0.5s;
}

.beats .beat .beat-licences .licence:hover {
    background: rgba(255, 255, 255, 0.05);
}

.beats .beat .beat-licences .licence ul {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.beats .beat .beat-licences .licence:last-of-type {
    border: none;
}

.beats .beat-licences .extra-info {
    text-align: left;
    margin: 40px 5px;
    font-size: 12px;
}

/* Beat rows width */
.beats .col .row:nth-of-type(1) { width: 8%; }
.beats .col .row:nth-of-type(2) { width: 46%; }
.beats .col .row:nth-of-type(3) { width: 10%; }
.beats .col .row:nth-of-type(4) { width: 8%; }
.beats .col .row:nth-of-type(5) { width: 8%; }
.beats .col .row:nth-of-type(6) { width: 10%; }
.beats .col .row:nth-of-type(7) { width: 10%; }

/* Search */
.beats .search {
    position: relative;
    width: 50%;
    height: 48px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    margin-bottom: 20px;
}

.beats .search input {
    font-size: 17px;
    color: #FFF;
    width: 500px;
    height: 48px;
    line-height: 48px;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    background: none;
}

.beats .search i {
    position: relative;
    top: 3px;
    font-size: 25px;
    margin: 0 30px;
}

.beats .beats-error {
    margin: 50px auto;
    text-align: center;
    font-weight: bold;
    display: none;
}