/* Bundles */

.bundlesCont {
    display: flex;
    flex-wrap: wrap;
}

.bundleWrapper {
    flex-grow: 1;
    flex-basis: 33.33%;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bundleWrapper.standard {
    flex-basis: 100%;   
    padding: 0;
}

.bundleTitle {
    color: #ffffff;
    font-size: 17px;
    padding: 12px 0 10px 0;
    text-align: center;
    text-shadow: 1px 1px 1px #666;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


/* Tags */

.tags {
margin: 10px 0;
line-height: 21px;
}

.tags span {
    background-color: #fbfbfb; 
    padding: 3px 7px 5px 7px;
    display: inline-block;
    border: 1px solid #cccccc;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius: 4px;
    margin: 3px 2px;
    color: #555555;
    text-shadow: 0 1px 1px #ffffff;
}

.dark .tags span {
    background-color: #282828; 
    color: #dddddd;
    border: 1px solid #888888;
    text-shadow: none;
}


/* AUDIO */

audio {
    height: 52px;
    border-radius: 52px;
    box-shadow: 0 9px 9px 0 rgb(0 0 0 / 10%), 0 0 29px 0 rgb(0 0 0 / 10%);
}

/* TOOLTIP */

.tooltip {
    text-decoration: none;
    position: relative;
    z-index: 100;
    white-space: normal;
    font-size: 0;
}
.tooltip .tooltipText {
    display: none;
    color: #ffffff;
    font-style: italic;
    padding: 10px 14px;
    width: auto;
    max-width: 480px;
    font-size: 14px;
    background-color: rgba(0,0,0,0.8);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.tooltip:hover .tooltipText {
    display: block;
    position: fixed;
    overflow: hidden;
}

.tooltip a {
    color: #ffffff;
}


/* youtube subscribe button */
.subscribeCont div:first-child {
    vertical-align: bottom !important;
}





@media all and (min-width: 480px) {
    .googleAdMobileSmall {
        display: none;         
    }
}

.trackDescrContFlex {
    display: flex;
}

.trackDescrContFlexLeft {
    flex-basis: 70%;
    padding: 0 15px;
}

.trackDescrContFlexRight {
    flex-basis: 30%;
    margin: 20px;
}


@media all and (max-width: 1100px) {
    
    .trackDescrContFlexLeft {
        flex-basis: 100%;
    }
    
    .trackDescrContFlexRight {
        display: none;
    }
    
}


.youtubeSubscribeCont {
    padding: 10px 0 10px 0;
}

.artistChannelImg {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.simTrackText {
    margin:0; 
    font-size: 16px; 
    text-align: justify;
}

.iframeSpotify {
    margin: 0 20px 20px 0; 
    float: left; 
    border-radius:12px
}

@media all and (max-width: 1000px) {
    .iframeSpotify {
        width: 100%;
    }
}


/* loading dots */

.loading-dots {
	 text-align: center;
	 z-index: 5;
	 margin-left: 5px;
}
 .loading-dots .dot {
	 display: inline;
	 margin-left: 0.1em;
	 margin-right: 0.1em;
	 position: relative;
	 font-size: 1.5em;
	 opacity: 0;
	 animation: showHideDot 1.5s ease-in-out infinite;
}
 .loading-dots .dot.one {
	 animation-delay: 0.1s;
}
 .loading-dots .dot.two {
	 animation-delay: 0.2s;
}
 .loading-dots .dot.three {
	 animation-delay: 0.3s;
}
 @keyframes showHideDot {
	 0% {
		 opacity: 0;
	}
	 50% {
		 opacity: 1;
	}
	 60% {
		 opacity: 1;
	}
	 100% {
		 opacity: 0;
	}
}