.playlist {
    overflow: hidden;
	position: relative;
	//background: url(../images/playlistbg.png) no-repeat;
	background: url(../images/playlistbg.png) no-repeat;
	background-size: cover;
	height: 100vh;
    background-position: center 76%;


    @media (max-height: 700px) and (min-width: 769px) {
      //  height: auto;
      //  padding-bottom: 13%;
    }

    @include breakpoint(mobile) {
        background:url(../images/playlistmobileTEMP.png) no-repeat;
        background-size: cover !important;
    }
}

.playlistWrap {
    padding-top: 128px !important;

    @include breakpoint(iphone) {
        padding-top: 58px!important;
    }
}

.playlistholder {
    @media (max-height: 700px) and (min-width: 769px) {
        top: -34px;
    }
}

.yellowFinish {
    position: absolute;
    right: -274px;
    background: RGBA(216, 216, 53, 1);
    width: 469px;
    height: 100vh;
    transform: skew(-27deg);
    overflow: hidden;
    top: 0;

    @media (max-height: 700px) and (min-width: 769px) {
        height: 1000px;
    }

    @include breakpoint(mobile) {
        right: -397px;
        transform: skew(-22deg);
    }

}


.thtab {
    width: 93%;
    margin: 0 auto;
    border-bottom: 1px solid #2D2D2D;
}


.thnum {
    color: #a0a0a0;
    padding: 10px 0 1px;
}

.thtrack {
    text-align: left;
    position: relative;
    left: 8px;
}

.thartist {
    position: relative;
    left: 6px;
}

.thnumber {
    text-align: right;
    position: relative;
    right: 4px;
}

.yellowFinish::before {
    content: "";
    position: absolute;
    width: 998px;
    background: url(../images/linesbg.png) no-repeat;
    display: block;
    height: 100vh;
    transform: skew(26.5deg);
    background-size: 181%;
    right: 9px;
    z-index: 1000;
}

.formtext {
	width: 93%;
    margin: 21px auto 10px;
	background: #fff;
    border-radius: 15px;
	color: #000;
	padding: 0 8px;
}

.playlistTitleWrap {
	text-align: center;
    position: relative;
    z-index: 1;
}

.playlistTitle {
    font-size: 21px;
	font-family: sansa_problackitalic;
	text-transform: uppercase;
    text-decoration: underline;
    letter-spacing: 1px;
    display: inline-block;

    @include breakpoint(mobile) {
        font-size: 16px;
    }

    &.spec {
        text-decoration: none;
	    line-height: 23px;
        padding-bottom: 12px;
        border-bottom: 7px solid #fff;
        text-align: left;

        @include breakpoint(mobile) {
            border-bottom: 5px solid #fff;
            line-height: 16px;
        }

        @include breakpoint(iphone) {
            font-size: 14px;
            line-height: 15px;
            padding-bottom: 5px;
        }
    }
}

.playlistTitleMain {
	font-size: 42px !important;
	font-family: sansa_problackitalic;
	text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;


    @include breakpoint(mobile) {
        font-size: 25px!important;
    }

    @include breakpoint(iphone) {
        font-size: 22px!important;
    }
}


.tracksboxwrapper {
	width: 100%;
	background: #171717;
    height: 247px;
    margin-top: 15px;
    overflow-y: scroll;
    font-family: proxima_nova_alt_rgregular;

    @include breakpoint(mobile) {
        height: 188px;
        margin-top: 11px;
    }

    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2/3) {
        height: 150px;
    }
}

//.tracksboxwrapper::-webkit-scrollbar { width: 0 !important }
//.tracksboxwrapper { -ms-overflow-style: none; }

.tracksboxwrapper::-webkit-scrollbar
{
  width: 3px;  /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
}

.tracksboxwrapper::-webkit-scrollbar-track
{
  background: rgba(0, 0, 0, 0.1);
}

.tracksboxwrapper::-webkit-scrollbar-thumb
{
  background: rgba(255, 255, 255, 0.5);
}

.playlisttracks {
    position: absolute;
    top: 50px;
	width: 100% !important;
	text-align: left;
	padding: 0 18px 0;
    height: 252px;
    overflow-y: scroll;
    margin: 10px auto !important;
    cursor: pointer;

    @include breakpoint(mobile) {
        height: 201px;
        top: 32px;
    }

    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2/3) {
        height: 152px;
        top: 32px;
    }

}

//.playlisttracks::-webkit-scrollbar { width: 0 !important }
//.playlisttracks { -ms-overflow-style: none; }


.playlisttracks::-webkit-scrollbar
{
  width: 3px;  /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
}

.playlisttracks::-webkit-scrollbar-track
{
  background: rgba(0, 0, 0, 0.1);
}

.playlisttracks::-webkit-scrollbar-thumb
{
  background: rgba(255, 255, 255, 0.5);
}

.firstth {
    width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;

    @include breakpoint(mobile) {
        width: 124px;
    }
}

.secondth {
	width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
   	padding-left: 20px;

    @include breakpoint(mobile) {
        width: 125px;
    }

    @include breakpoint(iphone) {
        padding-left: 9px;
        width: 87px;
    }
}

.thirdth {
	cursor: pointer;

    img {
        transition: .3s opacity ease;
        &:hover {
            opacity: .5;
        }
    }

}

.trackplaylist {
	background: none !important;
	border-bottom: 1px solid #282828;
	padding: 10px 8px !important;

    @include breakpoint(mobile) {
        padding: 4px 8px!important;
    }

}

table {
	tr {
		th {
			font-size: 14px;
			font-family: proxima_nova_alt_semibold;

            @include breakpoint(mobile) {
                font-size: 12px;
            }
		}
	}
}


.themeForToday {
    font-size: 18px;
    font-family: proxima_nova_altextrabold;
    padding-bottom: 16px;

    @include breakpoint(mobile) {
        padding-bottom: 5px;
    }


    @include breakpoint(iphone) {
        font-size: 12px;
        padding-bottom: 2px;
    }


}
