/******************PLAYLIST*PAGE*********************/
.plSel {
    color: #4CAF50 !important;
    background-color: #282828;
}
.slideshow .background-container{
    position:absolute;
    opacity: 0.2;
    z-index:1;
    width: 100%;
    height:238px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slideshow .artist__info {
    position:absolute;
    padding: 15px;
    z-index: 2;
    width: 80%;
    margin-top: 38px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
}
.slideshow .artist__info .profile__img {
    margin-right: 15px;
}
.slideshow .artist__info .profile__img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.slideshow .artist__info__type {
    color: #aaaaaa;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
.slideshow .artist__info__name {
    color: white;
    font-size: 36px;
    font-weight: 100;
    padding: 0 0 10px 0;
}
.slideshow .artist__info__actions {
    display: flex;
    flex-flow: row wrap;
}
.slideshow .artist__info__actions button {
    margin-right: 10px;
    height: 27px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 0 15px;
    font-weight: 500;
}
.slideshow .artist__info__actions button i {
    font-size: 20px;
    margin-right: 5px;
}
.slideshow .artist__info__actions .more {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
}
.slideshow .artist__info__actions .more i {
    margin: 0;
    padding-left: 6px;
}
@media (max-width: 522px) {
    .slideshow .artist__info {
        margin-top: 0;
        width: 100%;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        text-align: center;
    }
    .slideshow .artist__info .profile__img {
        margin-right: 0;
    }
    .slideshow .artist__info__type {
        margin-top: 10px;
    }
    .slideshow .artist__listeners {
        width: 100%;
        text-align: center;
    }
}
/****************************************************/


/******************MUSIC*WALL************************/
.slideshow {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.images {
    height: 233px;
    width: 3550px;
    margin-bottom: 5px;
    font-size: 0;
}

.slideshow-caption-parent{
    position:relative;
}

.slideshow-caption{
    position:absolute;
    text-align:left;
    opacity: 1;
    color:  #aaaaaa;
    padding-left:40px;
}

.slideshow .images {
    height: 233px;
    width: 3550px;
    margin-bottom: 5px;
    font-size: 0;
    opacity: 0.15;
}

.slideshow .images img {
    margin-bottom: 10px;
    margin-right: 5px;
    height: 233px;
    width: 350px;
}

.slideshow .images img  {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.media-card-empty{
    color: #aaaaaa;
    margin: 0 auto;
    text-align:center;
}

/*keyframe animations*/
.slideshow .images .first {
    -webkit-animation: bannermove 60s linear infinite;
    -moz-animation: bannermove 60s linear infinite;
    -ms-animation: bannermove 60s linear infinite;
    -o-animation: bannermove 60s linear infinite;
    animation: bannermove 60s linear infinite;
}

@keyframes bannermove {
    0% {margin-left: 0px;}
    100% {margin-left: -2130px;}
}

@-moz-keyframes bannermove {
    0% {margin-left: 0px;}
    100% {margin-left: -2130px;}
}

@-webkit-keyframes bannermove {
    0% {margin-left: 0px;}
    100% {margin-left: -2130px;}
}

@-ms-keyframes bannermove {
    0% {margin-left: 0px;}
    100% {margin-left: -2130px;}
}

@-o-keyframes bannermove {
    0% {margin-left: 0px;}
    100% {margin-left: -2130px;}
}

.zoom-slow{
    -webkit-animation: zoomin 30s infinite;
    -moz-animation: zoomin 30s infinite;
    -ms-animation: zoomin 30s infinite;
    -o-animation: zoomin 30s infinite;
    animation: zoomin 30s infinite;
}

@keyframes zoomin {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes zoomin {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes zoomin {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-ms-keyframes zoomin {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-o-keyframes zoomin {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}


/****************************************************/


/***********************HEADER************************/
.user__info{
}
.user__info .user__info__name .first {
    padding-top: 10px;
    display:none;
}
.user__info .user__info__name .last {
    padding-top: 10px;
    !important;
}
.user__actions {
    display: none;
}
/****************************************************/

/***********************LOGIN************************/
.logincontainer {
    color: #aaaaaa;
    background: #282828;
    min-height:250px;
    width: 35%;
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}
.logincontainer h2 {
    padding: 5px 0 0 0;
    text-align: center;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #393939;
    margin: 1em 0;
    padding: 0;
}
#login {
    width: 100%;
}
#login tr {
    height: 50px;
}
#login td:nth-child(1) {
    padding-left:20px;
    max-width: 80px;
}
#login .input-field {
    margin-left: 1%;
}
#login .input-field input {
    border-radius: 15px;
    border: none;
    background: white;
    height:30px;
    width:90%;
    color: #181818;
    padding-left: 10px;
    outline: none;
}
#login .submit {
    margin-right:7%;
}
#login .submit button {
    float:right;
}
#login .response-message {
    opacity: 0;
}
#login .error {
    color: #fb302a;
}
#login .success {
    color: #4CAF50;
}
/****************************************************/

/***********************BROWSE***********************/
.browsecontainer {
    color: #aaaaaa;
    background: #282828;
    min-height:100px;
    width: 100%;
    position: relative;
    margin: 0;
}

.queryform.input-field {
    margin-left: 1%;
}
.queryform input {
    border-radius: 15px;
    border: none;
    background: white;
    height:30px;
    width:80%;
    color: #181818;
    padding-left: 10px;
    outline: none;
}
.queryform .submit {
    display:inline-block;
    margin-top: 7px;
}
.queryform .submit button {
    float:right;
}
