html {
    background: #000;
}
body {
    background: #000;
    margin: 0px;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    min-height: calc(100vh - 100px);
}

wave {
    background: #FFF;
}

wave canvas {
    background: #FFF;
}

::-webkit-scrollbar-button {
    background-image: url();
    background-repeat: no-repeat;
    width: 8px;
    height: 0
}

::-webkit-scrollbar-track {
    background-color: #f6f6f6
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #d6a0ff;
    height: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #692a98
}

::-webkit-resizer {
    background-image: url();
    background-repeat: no-repeat;
    width: 4px;
    height: 0
}

::-webkit-scrollbar {
    width: 4px;
}

.preloader {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #000;
    z-index: 99999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader img {
    height: 250px;
    transition: all 0.3s ease;
}

.loading_text {
    position: relative;
    z-index: 2;
    margin-top: -50px;
    overflow: hidden;
    background: linear-gradient(90deg, #000, #FFF, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    font-weight: 600;
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

.header {
    color: #652993;
    text-align: center;
    padding: 5px 0px;
    text-shadow: 0 1px 1px #fff;
    position: fixed;
    z-index: 10;
    top: 0px;
    left: 0px;
    right: 0px;
    background: #000;
    box-shadow: 0px 3px 10px #000;
}

.header_h1_link {
    flex-grow: 1;
    text-decoration: none;
}

h1 {
    display: inline-block;
    margin: 0px;
    font-size: 16px;
    font-weight: 200;
    text-shadow: none;
    transition: all 1s ease;
    display: none;
}

.head_title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.head_title span {
    font-weight: 600;
}

.no_mixes {
    text-align: center;
}

.no_mixes img {
    display: block;
    margin: 40px auto;
}

.mixes_holder {
    padding-top: 49px;
    transition: all 0.3s ease;
}

.mixes_holder.faded {
    -webkit-filter: grayscale(1) blur(10px);
    -moz-filter: grayscale(1) blur(10px);
    -o-filter: grayscale(1) blur(10px);
    -ms-filter: grayscale(1) blur(10px);
    filter: grayscale(1) blur(10px);
    transition: all 0.3s ease;
}

.mix {
    padding: 100px 10px;
    position: relative;
    margin-bottom: 20px;
}

.mix:last-of-type {
    margin-bottom: 0px;
}

.mix_background {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-filter: grayscale(1) blur(10px);
    -moz-filter: grayscale(1) blur(10px);
    -o-filter: grayscale(1) blur(10px);
    -ms-filter: grayscale(1) blur(10px);
    filter: grayscale(1) blur(10px);
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.4;
    transition: all 0.2s ease;
}

.mix:hover .mix_background {
    opacity: 0.6;
    -webkit-filter: grayscale(0.5) blur(10px);
    -moz-filter: grayscale(0.5) blur(10px);
    -o-filter: grayscale(0.5) blur(10px);
    -ms-filter: grayscale(0.5) blur(10px);
    filter: grayscale(0.5) blur(10px);
}

.mix_data {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 2;
}

.mix_image_holder {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.mix_image_holder a img,
.mix_image_holder span img {
    transition: all 0.2s ease;
}

.mix_image_holder a:hover img,
.mix_image_holder span:hover img {
    transform: scale(1.1);
}

.album_art {
    border-radius: 3px;
    width: 150px;
    -webkit-box-shadow: 0 0 33px 7px #d6a0ff9c;
    box-shadow: 0 0 33px 7px #d6a0ff9c;
    transition: all 0.2s ease;
}

.mix:hover .album_art {
    -webkit-box-shadow: 0 0 33px 7px #0000009c;
    box-shadow: 0 0 33px 7px #0000009c;
}

.download_button {
    margin-top: 20px;
    text-align: center;
    text-decoration: none !important;
}

.download_button img {
    width: 40px;
}

.download_button span {
    display: block;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #FFF;
    font-weight: 600;
    font-size: 12px;
}

.mix_info_block {
    flex-grow: 1;
    max-width: 100%;
}

.mix_title {
    font-size: 24px;
    font-weight: 600;
    color: #692a98;
    background: #FFF;
    padding: 10px;
    border-radius: 3px;
}

.mix_info_row {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 20px;
    display: flex;
    color: #f6f6f6;
    max-width: 100%;
    align-items: center;
}

.mix_info_row>div {
    margin-right: 10px;
}

.mix_info_row span {
    font-weight: 600;
    color: #FFF;
}

.mix_info_row span a {
    margin-right: 3px;
    color: #FFF;
}

.mix_info_row span a:last-of-type {
    margin-right: none;
}

.mix_info_row img {
    height: 14px;
}

.mix_tracklist {
    background: #ffffff;
    color: #000;
    padding: 10px;
    font-size: 12px;
    border-radius: 0px 0px 3px 3px;
    border-top: solid 1px #f6f6f6;
}

.mix_tracklist_header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
    display: none !important;
}

.mix_tracklist_header span {
    padding: 5px;
    background: #d6a0ff24;
    border-radius: 3px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mix_tracklist_header span:hover,
.mix_tracklist_header span.active {
    background: #692a98;
    box-shadow: inset 0 0 20px #0000006e;
    color: #FFF;
}

.mix_tracklist_content {
    max-height: 350px;
    overflow-y: auto;
    font-family: 'Ubuntu Mono', monospace;
}

.mix_tracklist_content p {
    margin: 0px;
    margin-bottom: 5px;
}

.mix_tracklist_content p:last-of-type {
    margin-bottom: none;
}

.mix_tracklist_content .no_mixes {
    margin-bottom: 40px;
}

.play_moment {
    transition: all 0.2s ease;
    cursor: pointer;
}

.play_moment img {
    width: 8px;
    transition: all 0.2s ease;
    filter: grayscale(1);
}

.play_moment.playing_now,
.play_moment:hover {
    color: #692a98;
}

.play_moment.playing_now img,
.play_moment:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.active_button {
    border-radius: 3px;
    background: #692a98;
    display: block;
    color: #FFF;
    text-align: center;
    margin: 0 auto;
    width: 150px;
    line-height: 40px;
    box-shadow: inset 0 0 20px #0000006e;
    margin-left: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.inactive_button {
    border-radius: 3px;
    background: #dedede;
    display: block;
    color: #FFF;
    text-align: center;
    margin: 0 auto;
    width: 150px;
    line-height: 40px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.active_button:hover {
    background: #d6a0ff;
    color: #000;
    box-shadow: inset 0 0 20px #0000006e;
}

.form {
    margin: 20px 0px;
    width: calc(100% - 22px);
}

.name_input {
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    border: solid 1px #dedede;
    padding: 0px 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-grow: 1;
    margin: 0 auto;
    display: block;
    line-height: 40px;
}

.comment_input {
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    border: solid 1px #dedede;
    padding: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 60%;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    height: 80px;
}

.form_lined {
    display: flex;
    width: calc(60% + 22px);
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.comment_input:active,
.comment_input:focus,
.name_input:active,
.name_input:focus {
    border-color: #692a98;
}

.comment {
    padding: 10px 0px;
    color: #000;
    font-size: 14px;
    border-bottom: solid 1px #efefef;
}

.comment:last-of-type {
    border-bottom: none;
}

.comment_head {
    display: flex;
    align-items: flex-end;
}

.comment_name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #692a98;
}

.comment_name.rm_da_funk {
    background: rgb(105, 42, 152);
    background: -webkit-linear-gradient( left, #692a98 0%, #d6a0ff 25%, #245dff 50%, #4dbdbd 100%) repeat;
    -webkit-background-clip: text;
    -ms-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-animation-name: masked-animation;
    -webkit-animation-duration: 50s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.comment_date {
    font-size: 14px;
    margin-left: 15px;
    color: #555;
    flex-grow: 1;
    justify-content: flex-end;
}

.comment_ip {
    font-size: 14px;
    margin-left: 15px;
    color: #555;
}

.comment_date,
.comment_ip {
    display: flex;
    align-items: center;
}

.comment_date img,
.comment_ip img {
    margin-right: 5px;
}

.comment_body {
    margin-top: 10px;
}

.player_holder {
    padding: 10px;
    background: #FFF;
    display: flex;
    border-radius: 3px 3px 0px 0px;
    flex-wrap: wrap;
}

.waveform {
    width: calc(100% - 138px);
    position: relative;
    background: #FFF;
}

.player_loader {
    top: 0px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    height: 50px;
    width: 50px;
    z-index: 11;
    background: transparent;
}

.player_loader img {
    height: 50px;
}

.play_button {
    width: 128px;
    height: 128px;
    border-radius: 3px;
    background: #692a98;
    display: block;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 20px #0000006e;
}

.play_button:hover,
.play_button.playing {
    background: #d6a0ff;
    color: #000;
}

.play_button img {
    width: 24px;
}

.mix_timing {
    text-align: center;
    color: #692a98;
    font-size: 12px;
    width: calc(100% + 20px);
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 10px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -10px;
    background: #f6f6f6;
    font-weight: 600;
}

.load_more {
    border-radius: 3px;
    background: #692a98;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 20px #0000006e;
    margin: 20px auto;
    font-size: 20px;
    padding: 20px;
    width: 300px;
}

.mixes_loader {
    width: 300px;
    height: 64px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mixes_loader img {
    height: 50px;
}

.mix_year {
    position: absolute;
    display: flex;
    align-items: center;
    margin: 0px auto;
    right: 50px;
    width: 80px;
    font-size: 12px;
    justify-content: center;
    bottom: 40px;
}

.mix_year img {
    margin-right: 5px;
    height: 14px;
}

.inner_loader {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #000;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head_selects {
    display: flex;
    align-items: center;
    justify-content: center;
}

.the_select {
    position: relative;
    padding: 5px 0px;
}

.the_select_head {
    padding: 5px 20px;
    color: #fff;
    background: #692a98;
    text-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 20px #0000006e;
}

.the_select_head img {
    margin-left: 5px;
    height: 8px;
}

.list_select .the_select_head img {
    margin-left: 0px;
    margin-right: 5px;
    height: 12px;
}

.the_select_drop {
    top: 100%;
    position: absolute;
    background: #d6a0ff;
    box-shadow: 0 2px 5px #d6a0ff;
    z-index: 3;
    min-width: 100%;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    opacity: 0;
}

.the_select:hover .the_select_drop,
.the_select:focus .the_select_drop {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.the_select:hover .the_select_head,
.the_select:focus .the_select_head {
    color: #000;
    background: #d6a0ff;
}

.the_select_drop a {
    padding: 5px 15px;
    white-space: nowrap;
    display: block;
    text-align: left;
    text-shadow: none;
    color: #000;
    text-decoration: none;
    border-bottom: solid 1px #00000014;
    font-size: 12px;
}

.the_select_drop a:last-of-type {
    border-bottom: none;
}

.the_select_drop a:hover,
.the_select_drop a.selected {
    color: #FFF;
    text-decoration: none;
    background: #692a98;
}

.nav_toggle {
    display: none;
}

.sharer {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.2);
    position: absolute;
    left: calc(50% - 170px);
    top: -4px;
    padding: 5px;
    border-radius: 30px;
    background: #0000009e;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-left: 2px;
    padding-right: 2px;
    transition: all 0.2s ease;
}

.sharer.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.sharer a {
    padding: 3px;
    background: #FFF;
    line-height: 0px;
    border-radius: 50%;
    margin: 0px 2px;
    transition: all 0.2s ease;
}

.sharer a img {
    height: 32px;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
}

.sharer a:hover {
    transform: scale(1.01) translateY(-3px);
}

.mix_actions {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-top: solid 1px #ffffff69;
    padding-top: 10px;
    margin-top: 20px;
    width: 80px;
    position: relative;
}

.mix_actions a,
.mix_actions span {
    cursor: pointer;
    margin: 0px 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mix_actions>a span,
.mix_actions>span span {
    display: none;
}

.mix_actions img {
    height: 20px;
}

.scroll-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: #ce9af5;
    border-radius: 3px;
    box-shadow: 0 0 20px #0000006e;
    cursor: pointer;
    height: 31px;
    width: 34px;
    text-align: center;
    padding-top: 4px;
}

.modal_list {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 99;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #000;
    overflow-y: auto;
    padding: 100px;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    transform: translateX(100vw);
}


.modal_list.opened {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.modal_close {
    position: fixed;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.year_heading {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px;
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    text-shadow: none;
    border-top: solid 1px #ffffff29;
    border-bottom: solid 1px #ffffff29;
}

.quick_mix {
    display: flex;
    flex-wrap: nowrap;
    text-decoration: none !important;
    margin-bottom: 20px;
    text-align: left;
    align-items: center;
    width: 33%;
}

.quick_mix_image {
    padding-right: 10px;
}

.quick_mix_image img {
    border-radius: 3px;
    width: 50px;
    -webkit-box-shadow: 0 0 33px 7px #d6a0ff9c;
    box-shadow: 0 0 33px 7px #d6a0ff9c;
    transition: all 0.3s ease;
}

.quick_mix:hover .quick_mix_image img {
    transform: scale(1.05);
}

.quick_mix_info {

}

.quick_mix_title {
    color: #FFF;
    text-shadow: none;
    font-weight: 800;
    margin-bottom: 5px;
}

.quick_mix_small_info {
    color: #fff;
    font-size: 12px;
}

.quick_mix_small_info span {
    color: #FFF;
    text-shadow: none;
    margin: 0px 3px;
    font-weight: 600;
}

.donut_float {
    position: fixed;
    bottom: 10px;
    background: #000;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px #60268a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 5;
    padding: 5px 15px;
    width: 100px;
    text-align: center;
    left: calc(50% - 50px);
    border-radius: 3px;
    cursor: pointer;
}

.donut_float:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.mix_statistics {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 0px !important;
}

.mix_statistics div {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.mix_statistics div:last-of-type {
    margin-right: 0px;
}

.mix_statistics div img {
    width: 17px;
    height: 17px;
    /* padding: 5px; */
    /* border-radius: 50%; */
    /* border: solid 2px #FFF; */
    margin-right: 5px;
}

.spinner {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999999999999999999;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.spinner.visible {
    visibility: visible;
    opacity: 1;
}

.spinner_wheel {
    transition: all 0.3s ease;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 500px;
    height: 500px;
    margin: auto;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    -webkit-animation:spin 3s linear infinite;
    -moz-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite;
    -webkit-box-shadow: 0 0 33px 7px #d6a0ff9c;
    box-shadow: 0 0 33px 7px #d6a0ff9c;
    border-radius: 50%;
    overflow: hidden;
}

.spinner_wheel .wheel_back_image {
    transition: all 0.4s ease;
    width: 550px;
    height: 550px;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.spinner_wheel .wheel_back_image.visible {
    opacity: 1;
    visibility: visible;
}

.spinner_wheel_center {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 20;
    background: #000;
    z-index: 10;
    border-radius: 50%;
    z-index: 1;
    -webkit-box-shadow: inset 0 0 3px 0px #d6a0ff9c;
    box-shadow: inset 0 0 3px 0px #d6a0ff9c;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }



@media (max-width: 1400px) {
    .sharer {
        left: -25px;
    }

    .quick_mix {
        width: 49%;
    }
}

@media (max-width: 1200px) {
    .modal_list {
        padding: 50px;
    }

    .form_lined {
        width: calc(100% + 22px);
    }
    .comment_input {
        width: 100%;
    }
}


@media (max-width: 1000px) {
    .mix_info_row {
        flex-wrap: wrap;
    }

    .mix_statistics {
        width: 100%;
        justify-content: center;
        margin-top: 20px !important;
    }
}


@media (max-width: 800px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 42px;
    }

    .nav_toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
    }

    h1 {
        display: block;
        flex-grow: 1;
    }

    .head_title {
        font-size: 20px;
    }

    .head_selects {
        opacity: 0;
        visibility: hidden;
        display: block;
        position: fixed;
        top: 52px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background: #000;
        height: calc(100vh - 52px);
        padding: 20px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.5s ease;
        transform: translateX(-100vw);
        z-index: -10;
    }

    .head_selects.opened {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .the_select:hover .the_select_head,
    .the_select:focus .the_select_head {
        color: #FFF;
        background: transparent;
    }
    
    .the_select:last-of-type {
        margin-bottom: 100px;
    }

    .the_select_head {
        background: transparent;
        box-shadow: none;
        text-align: left;
        justify-content: flex-start;
        font-size: 20px;
    }

    .list_select .the_select_head {
        margin-bottom: 20px;
    }

    .the_select_drop {
        background: transparent;
        visibility: visible;
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
    }

    .the_select_drop a {
        color: #fff;
        font-size: 14px;
        padding: 10px 30px;
    }

    .mixes_holder {
        padding-top: 52px;
    }

    .mix {
        padding: 50px 15px;
        padding-top: 80px;
    }

    .mix_data {
        flex-wrap: wrap;
    }

    .album_art {
        display: none;
    }

    .mix_image_holder {
        padding: 0px;
        position: absolute;
        right: calc(50% - 151px);
        top: -53px;
        flex-direction: row-reverse;
        width: 302px;
        justify-content: center;
    }

    .mix_actions {
        margin-top: 0px;
        padding: 0px;
        border: none;
        width: auto;
        margin-right: 15px;
        margin-left: 0px;
        position: static;
    }

    .mix_actions img {
        height: 25px;
    }

    .mix_actions>a, 
    .mix_actions>span {
        margin: 0px 15px;
    }

    .mix_actions>a:first-of-type {
        margin-left: 0px;
    }

    .sharer {
        left: auto;
        right: calc(50% - 170px);
        top: -13px;
    }

    .download_button {
        margin-top: 0px;
        display: flex;
        align-items: center;
    }

    .waveform {
        width: calc(100% - 60px);
    }

    .play_button {
        width: 50px;
        height: 50px;
    }

    .play_button img {
        width: 18px;
    }

    .mix_info_row span {
        display: block;
    }

    .mix_info_row>div {
        margin: 0px;
    }

    .mix_info_row>div:nth-of-type(2),
    .mix_info_row>div:nth-of-type(3) {
        display: none;
    }

    .mix_info_row>div:first-of-type {
        width: 100%;
    }

    .mix_info_row {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .download_button img {
        width: 25px;
        margin-right: 5px;
    }

    .share_button span,
    .open_button span,
    .download_button span {
        font-size: 8px;
        color: #FFF;
        text-decoration: none;
    }

    .mix_actions>a span,
    .mix_actions>span span {
        display: block;
        text-transform: uppercase;
        font-weight: 600;
    }

    .mix .mix_background {
        opacity: 0.6;
        -webkit-filter: grayscale(0.5) blur(10px);
        -moz-filter: grayscale(0.5) blur(10px);
        -o-filter: grayscale(0.5) blur(10px);
        -ms-filter: grayscale(0.5) blur(10px);
        filter: grayscale(0.5) blur(10px);
    }

    .mix_year {
        bottom: 17px;
        right: 0px;
    }

    .modal_list {
        padding: 50px 20px;
    }

    .quick_mix {
        width: 100%;
    }

    .modal_close {
        right: auto;
        left: 10px;
    }

    .the_select {
        margin-bottom: 20px;
    }

    .comment_name {
        font-size: 16px;
    }

    .comment_date, 
    .comment_ip {
        font-size: 12px;
    }

    .comment_date img, 
    .comment_ip img {
        height: 16px;
    }

    .spinner_wheel {
        width: 400px;
        height: 400px;
    }

    .spinner_wheel .wheel_back_image {
        width: 430px;
        height: 430px;
    }
}

@media (max-width: 600px) {
    .mix_title {
        font-size: 18px;
    }

    h1 {
        font-size: 14px;
    }

    .form_lined {
        width: 100%;
        display: block;
    }

    .name_input {
        width: 100%;
        margin-bottom: 10px;
    }

    .comment_input {
        width: 100%;
    }

    .inactive_button,
    .active_button {
        margin-left: 0px;
    }

    .comment_ip {
        display: none;
    }

    .comment_date img {
        height: 14px;
    }
}

@media (max-width: 500px) {
    .spinner_wheel {
        width: 200px;
        height: 200px;
    }

    .spinner_wheel .wheel_back_image {
        width: 230px;
        height: 230px;
    }
}