.sm2-bar-ui {
 position: relative;
 display: inline-block;
 width: 100%;
 font-family: helvetica, arial, verdana, sans-serif;
 font-weight: normal;
 /* prevent background border bleed */
 -webkit-background-clip: padding-box;
 background-clip: padding-box;
 /* because indeed, fonts do look pretty "fat" otherwise in this case. */
 -moz-osx-font-smoothing: grayscale;
 -webkit-font-smoothing: antialiased;
 /* http://files.christophzillgens.com/webkit-font-smoothing.html */
 /* font-smoothing: subpixel-antialiased; */
 /* general font niceness? */
 font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
 min-width: 20em;
 max-width: 30em;
 /* take out overflow if you want an absolutely-positioned playlist dropdown. */
 border-radius: 2px;
 overflow: hidden;
 /* just for fun (animate normal / full-width) */
 transition: max-width 0.2s ease-in-out;
}

.sm2-bar-ui .sm2-playlist li {
 text-align: center;
 font-size: 92.5%;
 line-height: 1em;
}

.sm2-bar-ui.compact {
 min-width: 1em;
 max-width: 15em;
}

.sm2-bar-ui ul {
 line-height: 1em;
}

/* want things left-aligned? */
.sm2-bar-ui.left .sm2-playlist li {
 text-align: left;
}

.sm2-bar-ui .sm2-playlist li .load-error {
  cursor: help;
}

.sm2-bar-ui.full-width {
 max-width: 100%;
 z-index: 5;
}

.sm2-bar-ui.fixed {
 position: fixed;
 top: auto;
 bottom: 0px;
 left: 0px;
 border-radius: 0px;
 /* so the absolutely-positioned playlist can show... */
 overflow: visible;
 /* and this should probably have a high z-index. tweak as needed. */
 z-index: 999;
}

.sm2-bar-ui.fixed .bd,
.sm2-bar-ui.bottom .bd {
 /* display: table; */
 border-radius: 0px;
 border-bottom: none;
}

.sm2-bar-ui.bottom {
 /* absolute bottom-aligned UI */
 top: auto;
 bottom: 0px;
 left: 0px;
 border-radius: 0px;
 /* so the absolutely-positioned playlist can show... */
 overflow: visible;
}

.sm2-bar-ui.playlist-open .bd {
 border-bottom-left-radius: 0px;
 border-bottom-right-radius: 0px;
 border-bottom-color: transparent;
}

.sm2-bar-ui .bd,
.sm2-bar-ui .sm2-extra-controls {
 position: relative;
 background-color: #2288cc;
 /*
 transition: background 0.2s ease-in-out;
 */
}

.sm2-bar-ui .sm2-inline-gradient {
 /* gradient */
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 background-image: -moz-linear-gradient(to bottom, rgba(255,255,255,0.125) 5%, rgba(255,255,255,0.125) 45%, rgba(255,255,255,0.15) 52%, rgba(0,0,0,0.01) 51%, rgba(0,0,0,0.1) 95%); /* W3C */
 background-image: linear-gradient(to bottom, rgba(255,255,255,0.125) 5%, rgba(255,255,255,0.125) 45%, rgba(255,255,255,0.15) 50%, rgba(0,0,0,0.1) 51%, rgba(0,0,0,0.1) 95%); /* W3C */
}

.sm2-bar-ui.flat .sm2-inline-gradient {
 background-image: none;
}

.sm2-bar-ui.flat .sm2-box-shadow {
 display: none;
 box-shadow: none;
}

.sm2-bar-ui.no-volume .sm2-volume {
 /* mobile devices (android + iOS) ignore attempts to set volume. */
 display: none;
}

.sm2-bar-ui.textured .sm2-inline-texture {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
 height: 100%;
 /* for example */
 /* background-image: url(../image/wood_pattern_dark.png); */
 /* additional opacity effects can be applied here. */
 opacity: 0.75;

}

.sm2-bar-ui.textured.dark-text .sm2-inline-texture {
 /* dark text + textured case: use light wood background (for example.) */
 /* background-image: url(../image/patterns/wood_pattern.png); */
}

.sm2-bar-ui.textured.dark-text .sm2-playlist-wrapper {
 /* dark text + textured case: ditch 10% dark on playlist body. */
 background-color: transparent;
}

.sm2-bar-ui.textured.dark-text .sm2-playlist-wrapper ul li:hover a,
.sm2-bar-ui.textured.dark-text .sm2-playlist-wrapper ul li.selected a {
 /* dark + textured case: dark highlights */
 background-color: rgba(0,0,0,0.1);
 background-image: url(../../image/black-10.png);
 /* modern browsers don't neeed the image */
 background-image: none, none;
}

.sm2-bar-ui .bd {
 display: table;
 border-bottom: none;
}

.sm2-bar-ui .sm2-playlist-wrapper {
 background-color: rgba(0,0,0,0.1);
}

.sm2-bar-ui .sm2-extra-controls .bd {
 background-color: rgba(0,0,0,0.2);
}


.sm2-bar-ui.textured .sm2-extra-controls .bd {
 /* lighten extra color overlays */
 background-color: rgba(0,0,0,0.05);
}

.sm2-bar-ui .sm2-extra-controls {
 background-color: transparent;
 border: none;
}

.sm2-bar-ui .sm2-extra-controls .bd {
 /* override full-width table behaviour */
 display: block;
 border: none;
}

.sm2-bar-ui .sm2-extra-controls .sm2-inline-element {
 display: inline-block;
}

.sm2-bar-ui,
.sm2-bar-ui .bd a {
 color: #fff;
}

.sm2-bar-ui.dark-text,
.sm2-bar-ui.dark-text .bd a {
 color: #000;
}

.sm2-bar-ui.dark-text .sm2-inline-button {
 /* Warning/disclaimer: SVG might be fuzzy when inverted on Chrome, losing resolution on hi-DPI displays. */
 -webkit-filter: invert(1);
 /* SVG-based invert filter for Firefox */
 filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'invert\'><feColorMatrix in='SourceGraphic' type='matrix' values='-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0'/></filter></svg>#invert");
 /* IE 8 inverse filter, may only match pure black/white */
 /* filter: xray; */
 /* pending W3 standard */
 filter: invert(1);
 /* not you, IE < 10. */
 filter: none\9;
}

.sm2-bar-ui .bd a {
 text-decoration: none;
}

.sm2-bar-ui .bd .sm2-button-element:hover {
 background-color: rgba(0,0,0,0.1);
 background-image: url(../../image/black-10.png);
 background-image: none, none;
}

.sm2-bar-ui .bd .sm2-button-element:active {
 background-color: rgba(0,0,0,0.25);
 background-image: url(../../image/black-25.png);
 background-image: none, none;
}

.sm2-bar-ui .bd .sm2-extra-controls .sm2-button-element:active .sm2-inline-button,
.sm2-bar-ui .bd .active .sm2-inline-button/*,
.sm2-bar-ui.playlist-open .sm2-menu a */{
 -ms-transform: scale(0.9);
 -webkit-transform: scale(0.9);
 -webkit-transform-origin: 50% 50%;
 /* firefox doesn't scale quite right. */
 transform: scale(0.9);
 transform-origin: 50% 50%;
 /* firefox doesn't scale quite right. */
 -moz-transform: none;
}

.sm2-bar-ui .bd .sm2-extra-controls .sm2-button-element:hover,
.sm2-bar-ui .bd .sm2-extra-controls .sm2-button-element:active,
.sm2-bar-ui .bd .active {
 background-color: rgba(0,0,0,0.1);
 background-image: url(../../image/black-10.png);
 background-image: none, none;
}

.sm2-bar-ui .bd .sm2-extra-controls .sm2-button-element:active {
 /* box shadow is excessive on smaller elements. */
 box-shadow: none;
}

.sm2-bar-ui {
 /* base font size */
 font-size: 15px;
 text-shadow: none;
}

.sm2-bar-ui .sm2-inline-element {
 position: relative;
 display: inline-block;
 vertical-align: middle;
 padding: 0px;
 overflow: hidden;
}

.sm2-bar-ui .sm2-inline-element,
.sm2-bar-ui .sm2-button-element .sm2-button-bd {
 position: relative;
 /**
  * .sm2-button-bd exists because of a Firefox bug from 2000
  * re: nested relative / absolute elements inside table cells.
  * https://bugzilla.mozilla.org/show_bug.cgi?id=63895
  */
}

.sm2-bar-ui .sm2-inline-element,
.sm2-bar-ui .sm2-button-element .sm2-button-bd {
 /**
  * if you play with UI width/height, these are the important ones.
  * NOTE: match these values if you want square UI buttons.
  */
 min-width: 2.8em;
 min-height: 2.8em;
}

.sm2-bar-ui .sm2-inline-button {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
 height: 100%;
}

.sm2-bar-ui .sm2-extra-controls .bd {
 /* don't double-layer. */
 background-image: none;
 background-color: rgba(0,0,0,0.15);
}

.sm2-bar-ui .sm2-extra-controls .sm2-inline-element {
 width: 25px; /* bare minimum */
 min-height: 1.75em;
 min-width: 2.5em;
}

.sm2-bar-ui .sm2-inline-status {
 line-height: 100%;
 /* how much to allow before truncating song artist / title with ellipsis */
 display: inline-block;
 min-width: 200px;
 max-width: 20em;
 /* a little more spacing */
 padding-left: 0.75em;
 padding-right: 0.75em;
}

.sm2-bar-ui .sm2-inline-element {
 /* extra-small em scales up nicely, vs. 1px which gets fat */
 border-right: 0.075em dotted #666; /* legacy */
 border-right: 0.075em solid rgba(0,0,0,0.1);
}

.sm2-bar-ui .sm2-inline-element.noborder {
 border-right: none;
}

.sm2-bar-ui .sm2-inline-element.compact {
 min-width: 2em;
 padding: 0px 0.25em;
}

.sm2-bar-ui .sm2-inline-element:first-of-type {
 border-top-left-radius: 3px;
 border-bottom-left-radius: 3px;
 overflow: hidden;
}

.sm2-bar-ui .sm2-inline-element:last-of-type {
 border-right: none;
 border-top-right-radius: 3px;
 border-bottom-right-radius: 3px;
}

.sm2-bar-ui .sm2-inline-status a:hover {
 background-color: transparent;
 text-decoration: underline;
}

.sm2-inline-time,
.sm2-inline-duration {
 display: table-cell;
 width: 1%;
 font-size: 75%;
 line-height: 0.9em;
 min-width: 2em; /* if you have sounds > 10:00 in length, make this bigger. */
 vertical-align: middle;
}

.sm2-bar-ui .sm2-playlist {
 position: relative;
 height: 1.45em;
}

.sm2-bar-ui .sm2-playlist-target {
 /* initial render / empty case */
 position: relative;
 min-height: 1em;
}

.sm2-bar-ui .sm2-playlist ul {
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 list-style-type: none;
 overflow: hidden;
 white-space: nowrap;
 text-overflow: ellipsis;
}

.sm2-bar-ui p,
.sm2-bar-ui .sm2-playlist ul,
.sm2-bar-ui .sm2-playlist ul li {
 margin: 0px;
 padding: 0px;
}

.sm2-bar-ui .sm2-playlist ul li {
 position: relative;
}

.sm2-bar-ui .sm2-playlist ul li,
.sm2-bar-ui .sm2-playlist ul li a {
 position: relative;
 display: block;
 /* prevent clipping of characters like "g" */
 height: 1.5em;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 text-align: center;
}

.sm2-row {
 display: table-row;
}

.sm2-progress-bd {
 /* spacing between progress track/ball and time (position) */
 padding: 0px 0.8em;
}

.sm2-progress .sm2-progress-track,
.sm2-progress .sm2-progress-ball,
.sm2-progress .sm2-progress-bar {
 position: relative;
 width: 100%;
 height: 0.65em;
 border-radius: 0.65em;
}

.sm2-progress .sm2-progress-bar {
 /* element which follows the progres "ball" as it moves */
 position: absolute;
 left: 0px;
 top: 0px;
 width: 0px;
 background-color: rgba(0,0,0,0.33);
 background-image: url(../../image/black-33.png);
 background-image: none, none;
}

.volume-shade,
.playing .sm2-progress .sm2-progress-track,
.paused .sm2-progress .sm2-progress-track {
 cursor: pointer;
}

.playing .sm2-progress .sm2-progress-ball {
 cursor: -moz-grab;
 cursor: -webkit-grab;
 cursor: grab;
}

.sm2-progress .sm2-progress-ball {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 1em;
 height: 1em;
 margin: -0.2em 0px 0px -0.5em;
 width: 14px;
 height: 14px;
 margin: -2px 0px 0px -7px;
 width: 0.9333em;
 height: 0.9333em;
 margin: -0.175em 0px 0px -0.466em;
 background-color: #fff;
 padding: 0px;
/*
 z-index: 1;
*/
 -webkit-transition: -webkit-transform 0.15s ease-in-out;
 transition: transform 0.15s ease-in-out;
}

/*
.sm2-bar-ui.dark-text .sm2-progress .sm2-progress-ball {
 background-color: #000;
}
*/

.sm2-progress .sm2-progress-track {
 background-color: rgba(0,0,0,0.4);
 background-image: url(../../image/black-33.png); /* legacy */
 background-image: none, none; /* modern browsers */
}

/* scrollbar rules have to be separate, browsers not supporting this syntax will skip them when combined. */
.sm2-playlist-wrapper ul::-webkit-scrollbar-track {
 background-color: rgba(0,0,0,0.4);
}

.playing.grabbing .sm2-progress .sm2-progress-track,
.playing.grabbing .sm2-progress .sm2-progress-ball {
 cursor: -moz-grabbing;
 cursor: -webkit-grabbing;
 cursor: grabbing;
}

.sm2-bar-ui.grabbing .sm2-progress .sm2-progress-ball {
 -webkit-transform: scale(1.15);
 transform: scale(1.15);
}

.sm2-inline-button {
 background-position: 50% 50%;
 background-repeat: no-repeat;
 /* hide inner text */
 line-height: 10em;
 /**
  * image-rendering seems to apply mostly to Firefox in this case. Use with caution.
  * https://developer.mozilla.org/en-US/docs/Web/CSS/image-rendering#Browser_compatibility
  */
 image-rendering: -moz-crisp-edges;
 image-rendering: -webkit-optimize-contrast;
 image-rendering: crisp-edges;
 -ms-interpolation-mode: nearest-neighbor;
 -ms-interpolation-mode: bicubic;
}

.play-pause,
.play-pause:hover,
.paused .play-pause:hover {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/play.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/play.svg);
 background-size: 67.5%;
 background-position: 40% 53%;
}

.playing .play-pause {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/pause.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/pause.svg);
 background-size: 57.6%;
 background-position: 50% 53%;
}

.sm2-volume-control {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/volume.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/volume.svg);
}

.sm2-volume-control,
.sm2-volume-shade {
 background-position: 42% 50%;
 background-size: 56%;
}

.volume-shade {
 filter: alpha(opacity=33); /* <= IE 8 */
 opacity: 0.33;
/* -webkit-filter: invert(1);*/
 background-image: url(../../image/icomoon/entypo-25px-000000/PNG/volume.png);
 background-image: none, url(../../image/icomoon/entypo-25px-000000/SVG/volume.svg);
}

.menu {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/list2.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/list2.svg);
 background-size: 58%;
 background-position: 54% 51%;
}

.previous {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/first.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/first.svg);
}

.next {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/last.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/last.svg);
}

.previous,
.next {
 background-size: 49.5%;
 background-position: 50% 50%;
}


.sm2-extra-controls .previous,
.sm2-extra-controls .next {
 backgound-size: 53%;
}

.shuffle {
 background-image: url(../../image/icomoon/entypo-25px-ffffff/PNG/shuffle.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/shuffle.svg);
 background-size: 45%;
 background-position: 50% 50%;
}

.repeat {
 background-image: url(../../image/icomoon/entypo-20px-ffffff/PNG/loop.png);
 background-image: none, url(../../image/icomoon/entypo-25px-ffffff/SVG/loop.svg);
 background-position: 50% 43%;
 background-size: 54%;
}

.sm2-extra-controls .repeat {
 background-position: 50% 45%;
}

.sm2-progress-ball .icon-overlay {
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0px;
 left: 0px;
 background: none, url(../../image/icomoon/free-25px-000000/SVG/spinner.svg);
 background-size: 72%;
 background-position: 50%;
 background-repeat: no-repeat;
 display: none; 
}

.playing.buffering .sm2-progress-ball .icon-overlay {
 display: block;
 -webkit-animation: spin 0.6s linear infinite;
 animation: spin 0.6s linear infinite;
}

@-webkit-keyframes spin {
 0% {
  -webkit-transform: rotate(0deg);
 }
 100% {
  -webkit-transform: rotate(360deg);
 }
}

@-moz-keyframes spin {
 0% {
  transform: rotate(0deg);
 }
 100% {
  transform: rotate(360deg);
 }
}

@keyframes spin {
 0% {
  transform: rotate(0deg);
 }
 100% {
  transform: rotate(360deg);
 }
}

.sm2-element ul {
 font-size: 95%;
 list-style-type: none;
}

.sm2-element ul,
.sm2-element ul li {
 margin: 0px;
 padding: 0px;
}

.bd.sm2-playlist-drawer {
 /* optional: absolute positioning */
 /* position: absolute; */
 z-index: 3;
 border-radius: 0px;
 width: 100%;
 height: 0px;
 border: none;
 background-image: none;
 display: block;
 overflow: hidden;
 transition: height 0.2s ease-in-out;
}

.sm2-bar-ui.fixed .bd.sm2-playlist-drawer,
.sm2-bar-ui.bottom .bd.sm2-playlist-drawer {
 position: absolute;
}

.sm2-bar-ui.fixed .sm2-playlist-wrapper,
.sm2-bar-ui.bottom .sm2-playlist-wrapper {
 padding-bottom: 0px;
}

.sm2-bar-ui.fixed .bd.sm2-playlist-drawer,
.sm2-bar-ui.bottom .bd.sm2-playlist-drawer {
 /* show playlist on top */
 bottom: 2.8em;
}

.sm2-bar-ui .bd.sm2-playlist-drawer {
 opacity: 0.5;
 /* redraw fix for Chrome, background color doesn't always draw when playlist drawer open. */
 transform: translateZ(0);
}

/* experimental, may not perform well. */
/*
.sm2-bar-ui .bd.sm2-playlist-drawer a {
 -webkit-filter: blur(5px);
}
*/

.sm2-bar-ui.playlist-open .bd.sm2-playlist-drawer {
 opacity: 1;
}

.sm2-bar-ui.playlist-open .bd.sm2-playlist-drawer a {
 -webkit-filter: none; /* blur(0px) was still blurred on retina displays, as of 07/2014 */
}

.sm2-bar-ui.fixed.playlist-open .bd.sm2-playlist-drawer .sm2-playlist-wrapper,
.sm2-bar-ui.bottom.playlist-open .bd.sm2-playlist-drawer .sm2-playlist-wrapper {
 /* extra padding when open */
 padding-bottom: 0.5em;
 box-shadow: none;
}

.sm2-bar-ui .bd.sm2-playlist-drawer {
 transition: all 0.2s ease-in-out;
 transition-property: transform, height, opacity, background-color, -webkit-filter;
}

.sm2-bar-ui .bd.sm2-playlist-drawer a {
 transition: -webkit-filter 0.2s ease-in-out;
}

.sm2-bar-ui .bd.sm2-playlist-drawer .sm2-inline-texture {
 /* negative offset for height of top bar, so background is seamless. */
 background-position: 0px -2.8em;
}

.sm2-box-shadow {
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 box-shadow: inset 0px 1px 6px rgba(0,0,0,0.15);
}

.sm2-playlist-wrapper {
 position: relative;
 padding: 0.5em 0.5em 0.5em 0.25em;
 background-image: none, none;
}

.sm2-playlist-wrapper ul {
 max-height: 9.25em;
 overflow: auto;
}

.sm2-playlist-wrapper ul li {
 border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sm2-playlist-wrapper ul li:nth-child(odd) {
 background-color: rgba(255,255,255,0.03);
}

.sm2-playlist-wrapper ul li a {
 display: block;
 padding: 0.5em 0.25em 0.5em 0.75em;
 margin-right: 0.5em;
 font-size: 90%;
 vertical-align: middle;
}

.sm2-playlist-wrapper ul li a.sm2-exclude {
 display: inline-block;
}

.sm2-playlist-wrapper ul li a.sm2-exclude .label {
 font-size: 95%;
 line-height: 1em;
 margin-left: 0px;
 padding: 2px 4px;
}

.sm2-playlist-wrapper ul li:hover a {
 background-color: rgba(0,0,0,0.20);
 background-image: url(../../image/black-20.png);
 background-image: none, none;
}

.sm2-bar-ui.dark-text .sm2-playlist-wrapper ul li:hover a {
 background-color: rgba(255,255,255,0.1);
 background-image: url(../../image/black-10.png);
 background-image: none, none;
}

.sm2-playlist-wrapper ul li.selected a {
 background-color: rgba(0,0,0,0.25);
 background-image: url(../../image/black-20.png);
 background-image: none, none;
}

.sm2-bar-ui.dark-text ul li.selected a {
 background-color: rgba(255,255,255,0.1);
 background-image: url(../../image/black-10.png);
 background-image: none, none; 
}

.sm2-bar-ui .disabled {
 filter: alpha(opacity=33); /* <= IE 8 */
 opacity: 0.33;
}

.sm2-bar-ui .bd .sm2-button-element.disabled:hover {
 background-color: transparent;
}

.sm2-bar-ui .active,
/*.sm2-bar-ui.playlist-open .sm2-menu,*/
.sm2-bar-ui.playlist-open .sm2-menu:hover {
 /* depressed / "on" state */
 box-shadow: inset 0px 0px 2px rgba(0,0,0,0.1);
 background-image: none;
}

.firefox-fix {
 /**
  * This exists because of a Firefox bug from 2000
  * re: nested relative / absolute elements inside table cells.
  * https://bugzilla.mozilla.org/show_bug.cgi?id=63895
  */
 position: relative;
 display: inline-block;
 width: 100%;
 height: 100%;
}

/* some custom scrollbar trickery, where supported */

.sm2-playlist-wrapper ul::-webkit-scrollbar {
 width: 10px;
}

.sm2-playlist-wrapper ul::-webkit-scrollbar-track {
 background: rgba(0,0,0,0.33);
 border-radius: 10px;
}
 
.sm2-playlist-wrapper ul::-webkit-scrollbar-thumb {
 border-radius: 10px;
 background: #fff;
}

.sm2-extra-controls {
 font-size: 0px;
 text-align: center;
}

.sm2-bar-ui .label {
 position: relative;
 display: inline-block;
 font-size: 0.7em;
 margin-left: 0.25em;
 vertical-align: top;
 background-color: rgba(0,0,0,0.25);
 border-radius: 3px;
 padding: 0px 3px;
 box-sizing: padding-box;
}

.sm2-bar-ui.dark-text .label {
 background-color: rgba(0,0,0,0.1);
 background-image: url(../../image/black-10.png);
 background-image: none, none;
}

.sm2-bar-ui .sm2-playlist-drawer .label {
 font-size: 0.8em;
 padding: 0px 3px;
}

/* --- full width stuff --- */

.sm2-bar-ui .sm2-inline-element {
 display: table-cell;
}

.sm2-bar-ui .sm2-inline-element {
 /* collapse */
 width: 1%;
}

.sm2-bar-ui .sm2-inline-status {
 /* full width */
 width: 100%;
 min-width: 100%;
 max-width: 100%;
}

.sm2-bar-ui > .bd {
 width: 100%;
}

.sm2-bar-ui .sm2-playlist-drawer {
 /* re-hide playlist */
 display: block;
 overflow: hidden;
}


/*
 NOS'ENERGIES 2016
 Pissens Sébastien - spissens@ngroup.be
*/

.list-group-item a {
    color: #000000;
    text-decoration: none;
}

.nav_active > a {
    background-color: #eeeeee;
}

#main_menu {
    position : fixed;
    top : 60px;
    left : -300px;
    width : 300px;
    height : calc(100% - 130px);
    background-color : #FFFFFF;
    z-index : 1000002;
    transition:0.5s left,1s opacity;   
}

#menu_button {
    display: none;
    position: absolute;
    top: 10px;
    left: 5px;
    cursor : pointer;
}

#menu_button img {
    width: 40px;
    height: 40px;
}

.footer-social {
    width : 80%;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    min-width: 25px;
}

#footer-nosta-logo {
    margin-bottom : 20px;
}

.jcarousel-wrapper {
    margin-top: -15px;
    margin-left : 20px;
    position: absolute;
    right : 80px;
    border: 0px solid #fff;
    /*
    (4 * width: 150px) + (3 * margin-right: 1px) = 603px
    */
    width: 603px;
    height: 60px;

}

/** Carousel **/

#jcarousel-webradios {
    position: relative;
    overflow: hidden;
}

#jcarousel-webradios  ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

#jcarousel-webradios  li {
    float: left;
    width: 90px;
    height: 60px;
    margin-right: 1px;
    cursor : pointer;
}
#jcarousel-webradios  a {
    text-decoration: none !important;
    color : #FFFFFF !important;
}

#jcarousel-webradios img {
    max-height: 60px;
}

#jcarousel-webradios .loading {
    text-align: center;
    line-height: 45px; /* Fake vertical aligning */
    color : #000000;
}

/** Carousel Controls **/
.jcarousel-control-prev:hover,.jcarousel-control-next:hover {
    text-decoration : none;
    color : #FFFFFF;
}
.jcarousel-control-prev img,
.jcarousel-control-next img {
    width: 60px;
    height: 60px;
}

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 0px;
    width: 60px;
    height: 60px;   
}

.jcarousel-control-prev {
    left: -60px;
}

.jcarousel-control-next {
    right: -60px;
}

.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .5;
    cursor: default;
    text-decoration : none;
    color : #FFFFFF;
    background: #4E443C;
}

#connect_text {
    position: absolute;
    top : 25%;
    right: 8%;
    font-size : 20px;
    color : #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    font-family: 'geomanist_regular';
}

#RotationBox_Titre {
    position : absolute;
    top : 35px;
    left : 155px;
    font-family: 'geomanist_regular';
    font-size : 14px;
    color : #000000;
}

#RotationBox_Artiste {
    position : absolute;
    top : 10px;
    left : 155px;
    font-family: 'geomanistbold';
    font-size : 14px;
    color : #000000;
}

#cover_img {
    position : absolute;
    top : 5px;
    left : 80px;
    height : 60px;
    width: 60px;
}

#play_button {
    position : absolute;
    height : 50px;
    top : 10px;
    left : 10px;
    cursor : pointer;
}

#header {
    position : relative;
    top : 0px;
    left : 0px;  
}

#logo_nosta {
    position : absolute;
    left:  0px;
    right : 0px;
    height : 60px;
    margin-left:auto;
    margin-right : auto;
    margin-top: 25px;
}

#facebook-navbar {
    position : absolute;
    top : 10px;
    left : 30px;
    width : 40px;
    height : 40px;
    margin-left:auto;
    margin-right : auto;
    margin-top: 25px;
    cursor: pointer;
}

#twitter-navbar {
    position : absolute;
    top : 10px;
    left : 80px;
    width : 40px;
    height : 40px;
    margin-left:auto;
    margin-right : auto;
    margin-top: 25px;
    cursor: pointer;
}

#google-navbar {
    position : absolute;
    top : 10px;
    left : 130px;
    width : 40px;
    height : 40px;
    margin-left:auto;
    margin-right : auto;
    margin-top: 25px;
    cursor: pointer;
}

#youtube-navbar {
    position : absolute;
    top : 10px;
    left : 180px;
    width : 40px;
    height : 40px;
    margin-left:auto;
    margin-right : auto;
    margin-top: 25px;
    cursor: pointer;
}

#connect {
    position : absolute;
    top : 15%;
    right : 2%;
    height : 45%;
    margin-left:auto;
    margin-right : auto;
    cursor: pointer;
}

.navbar-custom2 {
    background-color: #ffffff;
    color: #e1001f;
    border-radius: 0;
    border-bottom: 1px;
    height: 70px;
    border-bottom: 3px;
    border-bottom-style: solid;
    border-bottom-color: #ffffff;
    box-shadow: 1px 1px 12px #555;
}

#bottom_menu {
    position: absolute;
    bottom : 0px;
    left : 0px;
    width : 100%;
    height : 40px;
    background-color :  #ffffff;
    border-bottom : 2px solid #f34c3f;    
    text-align : center;
}

.navbar-fixed-top, .navbar-fixed-bottom {
    z-index : 1000001
}

.navbar-nav > li {

}

#nav_bottom {  
    height : 50px;
    margin-top : -5px;
}

.navbar.center .navbar-inner {
    text-align: center;
}
.navbar.center .navbar-inner .nav {
    float: none;
    display:inline-block;
}

.navbar-custom {
    background-color: #f34c3f;
    color:#ffffff;
    border-radius:0;
    border: 0px;
    height : 150px;
    box-shadow: 1px 1px 12px #555;
}

.navbar-custom .navbar-nav > li > a {
    color: #000000;
    font-size: 18px;
    margin-top : 5px;
    margin-bottom : 5px;
    padding-top : 5px;
    padding-bottom : 5px;
    margin-left : 10px;
    margin-right: 10px;
    text-transform: uppercase;
    font-family: 'geomanistbook';
}

.navbar-custom .navbar-nav > .active > a, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus {
    color: #f34c3f;
}

.navbar-custom .navbar-nav > li > a:hover, .nav > li > a:focus, .navbar-custom .navbar-nav > .nav_active > a {
    text-decoration: none;
    color: #000000;
}

.navbar-custom .navbar-brand {
    color:#ec3341;
}

#nav_right {
    position : absolute;
    width : 60px;
    height : 60px;
    top : 15px;
    right : 20px;
    cursor : pointer;
}

@media screen and (max-width: 1440px) {
    .navbar-custom .navbar-nav > li > a {
        font-size: 18px;
    }

} 
@media screen and (max-width: 1280px) {
    .navbar-custom .navbar-nav > li > a {
        font-size: 12px;
    }
    #header_emission {
        margin-top : 80px;
    }
}

@media screen and (max-width: 1024px) {
    .navbar-custom .navbar-nav > li > a {
        font-size: 10px;
    }

}

@media screen and (max-width: 970px) {
    #menu_button {
        display : block;
    }

    #facebook-navbar, #twitter-navbar, #google-navbar, #youtube-navbar,#connect_text {
        display : none;
    }

    .navbar-custom .navbar-nav > li > a {
        font-size: 8px;
    }

    .navbar.center .navbar-inner .nav {
        display : none;
    }

    #navbar_top {
        height : 60px;
    }

    #logo_nosta {
        height : 40px;
        margin-top : 10px;
    }
    #header_emission {
        margin-top : 50px;
    }
    #header_emissions {
        display : none;
    }

    #bottom_menu {
        display : none;
    }
    #connect {
        top : 20%;
        height : 70%;
        max-width: 40px;
        max-height: 40px;
    }

}


/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../../Resources/public/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}



/*
 NOS'ENERGIES 2016
 Pissens Sébastien - spissens@ngroup.be
*/


@font-face {
    font-family: 'geomanistthin';
    src: url('/fonts/geomanist-thin-webfont.eot');
    src: url('/fonts/geomanist-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/geomanist-thin-webfont.woff2') format('woff2'),
         url('/fonts/geomanist-thin-webfont.woff') format('woff'),
         url('/fonts/geomanist-thin-webfont.ttf') format('truetype'),
         url('/fonts/geomanist-thin-webfont.svg#geomanistthin') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geomanist_regular';
    src: url('/fonts/geomanist-regular-webfont.eot');
    src: url('/fonts/geomanist-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/geomanist-regular-webfont.woff2') format('woff2'),
         url('/fonts/geomanist-regular-webfont.woff') format('woff'),
         url('/fonts/geomanist-regular-webfont.ttf') format('truetype'),
         url('/fonts/geomanist-regular-webfont.svg#geomanist_regularregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geomanistmedium';
    src: url('/fonts/geomanist-medium-webfont.eot');
    src: url('/fonts/geomanist-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/geomanist-medium-webfont.woff2') format('woff2'),
         url('/fonts/geomanist-medium-webfont.woff') format('woff'),
         url('/fonts/geomanist-medium-webfont.ttf') format('truetype'),
         url('/fonts/geomanist-medium-webfont.svg#geomanistmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geomanistlight';
    src: url('/fonts/geomanist-light-webfont.eot');
    src: url('/fonts/geomanist-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/geomanist-light-webfont.woff2') format('woff2'),
         url('/fonts/geomanist-light-webfont.woff') format('woff'),
         url('/fonts/geomanist-light-webfont.ttf') format('truetype'),
         url('/fonts/geomanist-light-webfont.svg#geomanistlight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geomanistbook';
    src: url('/fonts/geomanist-book-webfont.eot');
    src: url('/fonts/geomanist-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/geomanist-book-webfont.woff2') format('woff2'),
         url('/fonts/geomanist-book-webfont.woff') format('woff'),
         url('/fonts/geomanist-book-webfont.ttf') format('truetype'),
         url('/fonts/geomanist-book-webfont.svg#geomanistbook') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geomanistbold';
    src: url('/fonts/geomanist-bold-webfont.eot');
    src: url('/fonts/geomanist-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/geomanist-bold-webfont.woff2') format('woff2'),
         url('/fonts/geomanist-bold-webfont.woff') format('woff'),
         url('/fonts/geomanist-bold-webfont.ttf') format('truetype'),
         url('/fonts/geomanist-bold-webfont.svg#geomanistbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'geomanist_regular';    
}

  /* !important is needed sometimes */
 ::-webkit-scrollbar {
    width: 12px !important;
 }

 /* Track */
::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important;
   -webkit-border-radius: 10px !important;
   border-radius: 10px !important;
 }

 /* Handle */
 ::-webkit-scrollbar-thumb {
   -webkit-border-radius: 10px !important;
   border-radius: 10px !important;
   background: #41617D !important; 
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5) !important; 

 }
 ::-webkit-scrollbar-thumb:window-inactive {
   background: #41617D !important; 
 }
 
#android_box {
    position : fixed;
    top : 0px;
    left : 0px;
    width : 100%;
    height : 60px;
    z-index: 999999999;
    background-color : #5d5d5d;
    color : #FFFFFF;
    padding-top : 5px;
    cursor : pointer;
    display : none;
}

#android_close_box {
    text-align: right;
    font-size: 20px;
}

#android_text_box {
    text-align: center;
    margin-top : 5px;
}

#android_box img {
    top : 0px;
    width : 50px;
    height : 50px;
}

.dropdown-menu > li > a {
    font-family: 'geomanistbook';
    font-size: 16px;
}

#banner_text {
    position: absolute;
    left: 250px;
    top: 300px;
}

#live_banner {
    font-size: 44px;
}

.banner_value {
    font-family: 'geomanistbold';
    color: #FFFFFF; 
    text-transform: uppercase;
}

#animateur_banner {
    font-size : 20px;
    color: #FFFFFF; 
}

#title_banner {
    font-size : 24px;
}

#play_header {
    position: absolute;
    top: 280px;
    left: 50px;
    height : 180px;
    cursor: pointer;
}

#Profil_Menu {
    position: absolute;
    top: 65px;
    right: 0px;
    background-color: #FFFFFF;
    color: #000000;
    margin-left: -80px;
    border: 1px solid #000000;
    min-width: 120px;
    text-align: center;
    display: none;
}

#account_event {
    max-width: 60px;
    max-height: 60px;
    top: 0px;
    border-radius: 20px;
    width: 100%;
    height:100%;
}

#Login_button {
    position: absolute;
    display: block;
    top: 22px;
    right: 30px;
    width: auto;
    height: 60px;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

input[type=checkbox]{
    height: 1.1em;
    width: 1.1em;
}

.text-area-lrd{
    max-width: 100%;
}

.btn-form-lrd {
    margin-top: 15px;
    color: #FFFFFF;
    padding: 5px 20px 5px 20px;
    text-transform: uppercase;
    font-size: 1.6em;
}
.home_row {
    margin-bottom: 30px;
}

.img-responsive100 {
   width : 100%;
}

.row {
    margin-left : 0px;
    margin-right : 0px;
}

#header-diagonal {
    position : relative;
    top : 0px;
    left : 0px;
    height : 450px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top : 148px;
    background-position: center;
}


.more_box {
    position: absolute;
    display: inline-block;
    right: 0px;
    top: 0px;
    height: 100px;
    width: 250px;
    text-align: center;
    cursor: pointer;
}

.more_box img {
    position: absolute;
    top: 35px;
    left: 50px;
}

.more_box div {
    position: absolute;
    top: 35px;
    left: 100px;
    font-size: 20px;
    text-align: left;
    padding-right: 10px;
    font-family: 'geomanistbold';
    color : #bbbbbb;
}

.home_title {
    position: relative;
    width : 100%;
    height : 100px;
    background-color : #f7f7f7;
    color : #000000;
    text-align : center;
    text-transform: uppercase;
    font-size : 30px;
    padding-top: 30px;
}

#Leaderboard_row {
    width: 100%;
    min-height: 150px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

#footer-content {
    margin-top : 20px;
    margin-bottom : 80px;
}

.slide_img {
    width: 100%;
    overflow: hidden;
}

#row_slide_home .col-md-4 {
    padding-right: 2px;
    padding-left: 2px;
}

#ROW_IMU {
    width: 100%;
    min-height: 350px;
    padding-top: 50px;
    background-color: #f7f7f7;
    margin-top: 10px;
}

#ROW_IMU div {
    text-align : center;
}

.footer_header {
    font-size : 16px;
    padding-bottom : 5px;
}
.glyphicon-chevron-left, .glyphicon-chevron-right {
    color : #FFFFFF;
}

#footer-box {
    background-color : #3a3a3a;
    color : #FFFFFF;
    margin-bottom : -35px;
    padding-bottom : 40px;
    padding-top : 20px;
}

#footer-box .col-md-6 a {
    text-decoration: none;
    color : #FFFFFF;
}

#ajax_loader_big {
    margin: auto;
    position:relative;
    top: 20px; left: 0; bottom: 0; right: 0;
    width : 100px;
    height: 100px;
    background-image: url('/images/spin.gif');
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position: center; 
    margin-top : 180px;
    margin-bottom : 50px;
}


.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #FFFFFF;
    cursor: default;
    background-color: #000000;
    border-color: #000000;
}

.pagination > li > a, .pagination > li > span {
    color: #000000;
    background-color: #FFFFFF;
    border-color: #000000;
}

.emissions-controls {
    position : absolute;
    bottom : 0px;
    height : 50px;
}

.emissions-controls img {
    height : 50px;
}

#jcarousel-emissions-prev {
    left : 0px;
}

#jcarousel-emissions-next {
    right : 0px;
}

.jcarousel-wrapper-emissions {
    margin-left: 0px;
    position: absolute;
    right: 0px;
    border: 0px;
    width: 100%;
    height: 50px;
}

#header_emissions {
    position : absolute;
    left : 0px;
    bottom : 0px;
    z-index: 10;
    height : 50px;
    width : 100%;
}

/** Carousel **/

jcarousel-wrapper-emissions {
    margin: 20px auto;
    position: relative;
    border: 10px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 2px #999;
    -moz-box-shadow: 0 0 2px #999;
    box-shadow: 0 0 2px #999;
}

#jcarousel-emissions {
    position: relative;
    overflow: hidden;
    width: calc(100% - 74px);
    left : 34px;
}

#jcarousel-emissions ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

#jcarousel-emissions li {
    display : none;
    width: 0px;
    float: left;
    border: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 50px;
}

.jcarousel_emission_desc {
    width : 99%;
    font-family: 'geomanistbook';
    float : right;
    height: 50px;
    color: #FFFFFF;
    font-size : 23px;
    padding-top: 10px;
    text-align: center;
}

.header_title {
    position: absolute;
    left : 80px;
    top : 130px;
    color : #FFFFFF;
    font-size: 90px;
}

.header_title img {
    width : 300px;
    margin-top: 30px;
}

#firstline {
    position: absolute;
    top : 0px;
    font-family: 'geomanist_regular';
}

#secondline {
    font-family: 'geomanistbold';
    position: absolute;
    top : 90px;
}

.contact_title {
    text-align: center;
    font-family: 'geomanistbold';
    font-size : 72px;
    color : #424242;
    margin-top : 10px;
    margin-bottom : 10px;
}

.contact_box {
    background-color : #eae9e9;
    padding-left : 15px;
    padding-right : 15px;
    padding-top : 30px;
    padding-bottom : 30px;
}

.contact_subtitle {
    margin-top : 30px;
    margin-bottom : 20px;
    text-align: center;
}

.contact_subtitle span {
    background-color : #b2831f;
    color : #FFFFFF;
    padding: 10px;
    font-family: 'geomanist_regular';
    font-size : 24px;
}

.contact_content {
    text-align: center;
}
.contact_content span {
    font-family: 'geomanist_regular';
    font-size : 18px;
}

.contact_content span a {
    color : #b2831f;
}

.contact_box .col-md-12 .row {
    padding-top : 10px;
}

.form_chbien .col-md-3 {
    padding: 30px;
    font-family: 'geomanistbook';
    font-size: 22px;
}

.form_chbien .col-md-9 {
    padding: 30px;
}

#form_chbien_box {
    margin-left : 30px;
    margin-right : 30px;
    background-color: #eae9e9;
    padding: 20px;
}

.form_chbien_row {
    margin-top : 10px;
    margin-bottom: 10px;
}

.form-cfbien-control {
    border-radius: 0px;
}

.box_cfbien {
    height: 34px;
    color: #FFFFFF;
    font-family: 'geomanistbook';
    padding-top: 6px;
    margin-bottom: 5px;
    min-width: 215px;
}
.box_cfbien label{
    font-weight: normal;
}
.box_cfbien2 {
    height: 34px;
    color: #FFFFFF;
    font-family: 'geomanistbook';
    padding-top: 6px;
    margin-bottom: 5px;
    min-width: 145px;
}
.box_cfbien2 label{
    font-weight: normal;
}
.button_chbien {
    background-image: url('/images/Envoyer-ma-chanson.png');
    width: 292px;
    height: 65px;
    border: 0;
    box-shadow:none;
    border-radius: 0px;
    margin-top: 30px;
    background-size: cover;
}

.btn-form-default{
    margin-top: 15px;
    color : #FFFFFF;
    padding: 5px 20px 5px 20px;
    text-transform: uppercase;
    font-size: 1.4em;
}

@media screen and (max-width: 1800px) {
    #play_header {
        top: 240px;
    }
    #banner_text {
        top: 260px;
    }
    .contact_title {
        font-size: 50px;
    }
}

@media screen and (max-width: 1600px) {
    #play_header {
        top: 210px;
    }
    #banner_text {
        top: 230px;
    }
    #header-diagonal {
        height: 350px;
    }
    .header_title {
        left: 70px;
        top: 90px;
    }
    .header_title img {
        width: 200px;
        margin-top: 30px;
    }
    .contact_title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1400px) { 
    #play_header {
        top : 180px;
    }
    #banner_text {
        top : 200px;
    }
    #live_banner {
        font-size: 34px;
    }
    .contact_title {
        font-size: 35px;
    }
}
@media screen and (max-width: 1280px) {
    #play_header {
        top : 210px;
        left: 50px;
        height : 180px;
    }

    #banner_text {
        display: none;
    }
    .col-md-0 {
        display : none;
    }
    #nav_block {
        width : 100%;
    }
    #header-diagonal {
        height: 300px;
    }
    .header_title {
        left: 60px;
        top: 90px;
    }
    .header_title img {
        width: 150px;
        margin-top: 15px;
    }
    #play_header {
        top: 120px;
    }
}
    
    
@media screen and (max-width: 970px) {
    #header-diagonal {
        height: 250px;
        margin-top: 30px;
    }
    .header_title {
        left: 20px;
        top: 60px;
        font-size: 60px;
    }
    #webradios_carousel {
        display : none;
    }
    
    #header-news {
        margin-top : 50px !important;
    }
    .home_title {
        font-size: 20px;
    }
    
    .emission_title_accueil {
        height: 80px;
        font-size: 20px;
        padding-top: 20px;
    }
    
    .more_emission_box {
        height: 80px;
        width: 150px;
    }
    
    .more_emission_box img {
        left: 20px;
        top: 28px;
    }
    
    .more_emission_box div {
        left: 70px;
        font-size: 12px;
    }
    
    #ROW_IMU div {
        margin-top : 10px;
        margin-bottom : 10px;
    }
    .header_title img {
        width: 100px;
        margin-top:50px;
    }
    .form_chbien .col-md-9 {
        padding: 0px;
    }
    #form_chbien_box {
        margin-left: 5px;
        margin-right : 5px;
        padding: 5px;
    }
    #Login_button {
        top : 20%;
        height : 70%;
    }

    #play_header {
        display: none;
    }
    .contact_title {
        font-size: 25px;
    }
}

@media screen and (max-width: 768px) {
    #header-diagonal {
        height: 200px;
        margin-top: 50px;
    }
    .header_title {
        left: 10px;
        top: 30px;
        font-size: 40px;
    }
    #firstline {
        top: 45px;
    }
    #secondline {
        top: 95px;
    }
    .home_title {
        text-align : left;
        padding-left : 10px;
    }
    .more_box {
        height: 80px;
        width: 110px;
    }
    .more_box img {
        left: 10px;
        top: 28px;
    }
    
    .more_box div {
        left: 50px;
        font-size: 10px;
    }
    .header_title img {
        width: 80px;
        margin-top:60px;
    }
    .button_chbien {
        width: 200px;
        height: 45px;
    }
}
@media screen and (max-width: 460px) {
    #header-diagonal {
        height: 200px;
        margin-top: 10px;
    }
    .header_title {
        left: 10px;
        top: 50px;
        font-size: 30px;
    }
    #firstline {
        top: 50px;
    }
    #secondline {
        top: 80px;
    }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 28-janv.-2016, 14:51:12
    Author     : spissens
*/

.slide_img img,.image img {
    min-width:100%;
}

.article_info_row {
    background-color : #f4f3f3;
    padding-top: 10px;
    padding-bottom: 20px;
}

.header_article {
    background-color : #f4f3f3;
    padding-top : 10px;
    padding-bottom: 10px;
}

.sup_info {
    margin-right : 10px;
}

#article_right_box {
    padding-left: 80px;
}

.date_day {
    font-family: 'geomanistbold';
    font-size: 28px;
    line-height: 26px;      
}

.date_month {
    font-family: 'geomanistbold';
    font-size: 16px;
    line-height: 18px;  
}

.home_em_logo {
    position: absolute;
    top: 7px;
    left: 12px;
}

.home_em_logo img {
    width : 60px;
    height : 60px;
}

.panel-artist {
    margin-bottom : 50px;
}

.panel-artist .panel-body {
    font-family: 'geomanist_regular';
    text-align: justify;
    background-color : #f4f3f3;
}
.panel-artist .panel-body .title_artist_box {
    font-family: 'geomanistbold';
    text-align: center;    
    margin-bottom : 10px;
    margin-top : 10px;
    font-size: 18px;
}

.panel-artist .panel-heading {
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'geomanistbold';
    text-align: center;
    font-size: 18px;
}

.cat_caption {
    position : absolute;
    top : 10px;
    left : 10px;
    background-color : rgba(240,240,240,0.8);
    color : #000000;
    font-family: 'geomanistmedium';
    padding-left : 15px;
    padding-right : 15px;
    font-size : 16px;
}

#sub_menu_articles {
    background-color: #FFFFFF;
    text-align: center;
    height: 110px;
    color: #000000;
    padding-top: 10px;
    font-family: 'geomanistbold';
    font-size: 20px;
    margin-bottom: 30px;
}

#sub_menu_articles img {
    height : 90px;
    margin-left : 5px;
    margin-right : 5px;
}

.header-line span {
    background-color: white;
    position: relative;
    top: -0.7em;
    padding-left: 25px;
    padding-right: 25px;
    text-transform: uppercase;
    font-size: 26px;
}

.header-line {
    height: 2px;
    background-color: #c2c2c2;
    text-align: center;
}

.section_header {
    width: 100%;
    height: 60px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'geomanistmedium';
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

#fiche_artiste_titre {
    text-align : center;
    width : 100%;
    margin-top : 10px;
}

#fiche_artiste_header {
    text-align: justify;
    font-family: 'geomanist_regular';
    margin-top : 10px;
}

#article_box_artist_link {
    margin-bottom : 20px;
}

#article_box_artist_link img {
    width : 150px;
    height : 150px;
    border-radius : 50%;
    margin-left : auto;
    margin-right : auto;
}

#article_box .article_bottom_text {
    margin-right : -95px;
}

#article_left_box {
   border: 1px solid #f4f3f3;
   padding-right: 0px;
    padding-left: 0px; 
}

#margin-header {
    height : 150px;
}

#header-news {
    margin-top : 150px;
    padding-top : 150px;
    height : 400px;
    text-align : center;
    font-family: 'geomanistbook';
    font-size: 60px;
    color : #FFFFFF;
    background-repeat: no-repeat;
    background-size: cover;
}

.article_social img {
    width: 25px;
    height: 25px;
    margin-left: 0px;
    margin-right: 5px;
}

.article_more {
    font-family: 'geomanistbook';
    height : 30px;
    background-color : #ffffff;
    color : #000000;
    text-align: left;
    padding-top : 5px;
    font-size: 16px;
    padding-left: 20px;
}

.article_social {
    height : 30px;
    background-color : #ffffff;
    padding-top: 7px;
    text-align: right;
}

.box_content_article {
    height : 190px;
}

.boxarticle {
    padding-left : 5px;
    padding-right : 5px;
}

#more_article_accueil {
    margin-top : 20px;
    margin-bottom : 20px;
    text-align : center;
}

#more_article_accueil a {
    color: #000000;
    font-family: 'geomanistmedium';
    font-size: 20px;
}

.share_article a:hover {
    text-decoration: none;
}

.slide-line {
    border-top :2px solid #000000;
    width : 30%;
    margin-left : auto;
    margin-right : auto;
    margin-bottom : 15px;
}

.slide-caption {
    position: relative;
    width: 90%;
    background-color: rgba(255, 255, 255, 1);
    padding: 10px;
    color: #000000;
    font-family: 'geomanistmedium';
    font-size: 18px;
    text-align : center;
    height : 70px;
    margin-top : 10px;
    margin-left : auto;
    margin-right : auto;
}

#article_header {
    height : 280px;
    padding-top : 110px;
    font-size: 35px;
    font-family: 'geomanistbold';
    color : #FFFFFF;
    text-align: center;
    background-image: url(/images/news-header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#article_box {
    margin-top : 10px;
    margin-bottom : 20px;
    border-bottom : 0px;
    margin-left: 80px;
    margin-right: 80px;
}

.article_chapeau {
    font-family: 'geomanistbold';
    font-size : 22px;
    margin-top : 20px;
    margin-bottom : 20px;
    display : block;
    text-align: justify;
}

.article_titre {
    font-family: 'geomanistbold';
    color : #565656;
    font-size : 32px;
    margin-top : 0px;
    display : block;
    background-color: #f4f3f3;
    width : 100%;
    padding-left : 25px;
    padding-right : 25px;
    padding-bottom : 10px;
    padding-top: 20px;
    margin-bottom : 0px;
}

.article_titre_box {
    padding-right: 0px;
    padding-left: 0px;
}

.article_text {
    font-family: 'geomanist_regular';
    font-size : 16px;
    padding-top : 10px;
    text-align: justify;
}

.article_date {
    font-size : 15px;
    margin: 0px;
    position:relative;
    overflow:hidden;
}

.article_date:after {
  content:'';
  display:inline-block;
  vertical-align:middle;
  margin-top:0.5em;
  margin-left: 5px;
  height:0;
  border-top: 1px solid #c6c6c6;
  width:100%;
  position:absolute;
}

.share_article {
    top: 10px;
    left: 10px;
    text-align: left;
}

.article_lovetoo {
    color: #848484;
}

#actu-header {
    width : 100%;
    position : relative;
    text-align : center;
}

#menu_articles {
    background-color: #000000;
    height : 70px;
    width : 100%;
    color : #FFFFFF;
    font-family: 'geomanistbold';
    font-size : 20px;
    text-align : center;
    padding-top : 20px;
    margin-bottom : 0px;
    border-top : 0px;
    border-bottom : 2px solid #FFFFFF;
}

.menu_selected span a {
    color : #eb1e55;
}

#menu_articles span a {
    color : #EFEFEF;
}

#menu_articles span {
    margin-left : 10px;
    margin-right : 10px;
}

#menu_articles span:hover {
    color : #FFFFFF;
}

#menu_articles .menu_selected {
    color : #FFFFFF;
    text-decoration: underline;
}

.pager {
    height : 50px;
    font-family: 'geomanistbold';
    font-size : 20px;
    text-align : center;
    padding-top : 15px;
    color: #acacac;
}
.pager span {
    cursor : pointer;
    margin-left : 5px;
    margin-right : 5px;
}

.pager span a {
    color: #acacac;
}

.pager span:hover {
    color : #eb1e55;
}


.article_desc_text {
    position: relative;
    display: table;
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    color: #000000;
    font-size: 16px;
    margin-top : 0px;
    font-family: 'geomanistbold';
    text-transform: uppercase;
    height : 70px;
    background-color: #f7f7f7;
}

.border-box {
    border:1px solid #f7f7f7;
}

.article_chapeau_text {
    position: relative;
    display: table;
    width: 100%;
    height : 80px;
    font-family: 'geomanist_regular';
    text-align: justify;
    text-justify: inter-word;
    padding-left: 20px;
    padding-right: 20px;
}

.boxhover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 8;
    transition: box-shadow 0.3s;
 }
 
 
.boxnsp {
    padding-right : 0px;
    padding-left : 0px;
}

.button_share {
    cursor: pointer;
    z-index:9;
    margin-top: 10px;
    margin-left: auto;
    margin-right : auto;
}

.article_share_facebook {
    width: 55px;
    height : 15px;
    background-image: url('/images/Like-Facebook-Facebook-ShareBlanc.png');
}

.article_share_facebook:hover {
    background-image: url('/images/Like-Facebook-Facebook-ShareRose.png');
}

.article_share_google {
    width: 59px;
    height : 14px;
    background-image: url('/images/Google-Share-Blanc.png');
}

.article_share_google:hover {
    background-image: url('/images/Google-Share-Rose.png');
}

.article_share_twitter {
    width: 54px;
    height : 13px;
    background-image: url('/images/Tweet-Tweet-Blanc.png');
}

.article_share_twitter:hover {
    background-image: url('/images/Tweet-Tweet-Rose.png');
}

#row_first_articles {
    margin-bottom : 10px;
}

@media screen and (max-width: 1600px) {
    #article_box {
        margin-left : 10px;
        margin-right : 10px;
    }
    #article_right_box {
        padding-left : 50px;
    }
}
@media screen and (max-width: 1400px) {
    #article_right_box {
        padding-left : 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 1280px) {
    .article_desc_text {
        font-size : 14px;
        height: 60px;
    }
    .article_chapeau_text {
        font-size : 14px;
    }
    .article_social img {
        width : 20px;
        height : 20px;
    }
    .article_titre {
        font-size: 26px;
    }
    .article_chapeau {
        font-size : 18px;
    }
  
    #margin-header {
        height: 50px;
    }
}

@media screen and (max-width: 970px) {
    .pagination {
        margin-top : 60px;
        margin-bottom : 20px;
    }
    #article_left_box {
        padding-right : 10px;
        padding-left : 10px;
    }
    
     .article_bottom_text {
        margin-right : 0px !important;
    }
    #sub_menu_articles {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

@media screen and (max-width: 768px) {
    .sup_info {
        display: none;
    }
    #article_header {
        font-size : 22px;
    }
    #menu_articles {
        font-size : 14px; 
    }
    #sub_menu_articles {
        font-size : 14px; 
        padding-top: 10px;
    }
    #sub_menu_articles span, #menu_articles span {
        margin-left : 10px;
        margin-right : 10px;
    }
   
    .TITLE_BIG {
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
        font-size: 25px;
        margin-left: 10px;
    }
}
/*
 NOS'ENERGIES 2016
 Pissens Sébastien - spissens@ngroup.be
*/

.selected_artiste_menu {
    text-decoration: underline;
}

#artiste_box {
    margin-top : 30px;
}

.artiste_img {
     height : 250px;
     width : auto;
     overflow: hidden;
     background-size: cover;
     background-position: center;
}

#artistes_list .row {
    margin-top : 10px;
    margin-bottom : 10px;
}

.artiste_name {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-transform: uppercase;
    color: #eb1e55;
    font-family: 'geomanistmedium';
    font-size: 16px;
    text-align : center;
}

.artiste_content {
    font-family: 'geomanist_regular';
    font-size: 16px;
    text-align: justify;
    margin-bottom: 30px;
    padding-right : 35px;
    padding-left : 35px;
}

#photo_profil_artiste {
    padding-left: 5px;
}
.artiste_photos_overflow {
    max-width : 250px;
    max-height : 250px;
    overflow: hidden;
}

.play_button_artist {
    width: 100px;
    height: 100px;
    left: 30%;
    position: absolute;
    top: 20%;
}

.track_title {
  position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-transform: uppercase;
    color: #eb1e55;
    font-family: 'geomanistmedium';
    font-size: 12px;
    text-align: center;
}

.row_artist {
    margin-bottom : 10px;
}

.width100 {
    width: 100%;
}
@media (max-width: 1600px) {
    .menu_artistes span {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}

@media (max-width: 992px) {
    .artiste_img {
        width : 100%;
        margin-bottom: 10px;
    } 
    .artiste_name {
        bottom : 5px;
    }
    .menu_artistes span {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 08-févr.-2016, 15:48:36
    Author     : spissens
*/


.social_multimedia {
    text-align : right;
    margin-top: 15px;
}

#box_podcasts {
    background-color: #f7f7f7;    
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 20px;
}

.opacity50 {
    opacity:0.5;
}

#podcasts_text_box {
    margin-top: 15px;
    font-family: 'geomanistbook';
    font-size: 16px;
    color: #000000;
    text-align: left;
}

#menu_podcasts {
    background-color: #FFFFFF;
    text-align: center;
    height: 110px;
    color: #000000;
    padding-top: 10px;
    font-family: 'geomanistbold';
    font-size: 20px;
}

#menu_podcasts img {
    height : 90px;
    margin-left : 5px;
    margin-right : 5px;
}

@media screen and (max-width: 970px) {
    #menu_podcasts {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 02-févr.-2016, 11:36:41
    Author     : spissens
*/

.video_menu {
    padding-top:18px !important;
}
.clickboxhover {
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    top: 0px;
    left: 0px;
    cursor: pointer;
    z-index: 9;
}

.video_desc_text {
    position: relative;
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    color: #000000;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'geomanistbold';
    text-transform: uppercase;
    height: 70px;
}

#list_videos_box {
    background-color: #FFFFFF;
    margin-bottom: -10px;
}
.video_accueil_row {
    margin-top : 10px;
}

#menu_videos {
    background-color: #000000;
    text-align : center;
    height : 80px;
    color : #FFFFFF;
    padding-top : 25px;
    font-family: 'geomanistbold';
    font-size: 20px;
}

#menu_videos span {
    margin-left: 20px;
    margin-right: 20px;
    cursor: pointer;
}

#menu_videos span:hover {
    text-decoration: underline;
}

#menu_videos .menu_selected {
    color : #FFFFFF;
}

#box_videos {
    padding-top : 30px;
    background-color: #f7f7f7;
    padding-bottom : 30px;
    margin-top: 20px;
}

#box_videos_home {
    margin-top : -50px;
    padding-top : 60px;
    background-color: #f7f7f7;
    padding-bottom : 30px;
}

#box_video_accueil {
    margin-bottom : 30px;
}

.jw-tab-focus:focus {
    outline : 0px !important;
}

#video_text_box {
    margin-top: 15px;
    font-family: 'geomanistbook';
    font-size: 18px;
    color: #000000;
    text-align: left;
}

#video_share_box {
    text-align: right;
}

.video_pub {
    height : 360px;
}

#menu_videos span a {
    color: #FFFFFF;
}

.video_accueil_row .col-sm-8 img {
    max-width : none;
    width : auto;
}

.box_big_box {
    overflow : hidden;
    width : 100%;
    margin-bottom : 0px;
    cursor: pointer;
    position: relative;
}

.big_preview ,.mini_preview {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    vertical-align: middle;
}

.box_big_box:hover > .big_preview,.box_mini_box:hover > .mini_preview {
    transform:scale(1.1);
    -ms-transform:scale(1.1); /* IE 9 */
    -moz-transform:scale(1.1); /* Firefox */
    -webkit-transform:scale(1.1); /* Safari and Chrome */
    -o-transform:scale(1.1); /* Opera */
     filter: brightness(50%);
    -webkit-filter: brightness(50%);
    -moz-filter: brightness(50%);
    -o-filter: brightness(50%);
    -ms-filter: brightness(50%);
}                    


.box_mini_box {
    position : relative;
    margin-top : 0px;
    margin-bottom : 0px;
    overflow : hidden;
    cursor: pointer;
}

.box_mini_box.shadow {
    box-shadow: 3px 3px 5px grey;
}


.play_big_video {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width : 125px;
    height : 125px;
}

.play_mini_video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width : 70px;
    height : 70px;
}

.boxhover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 8;
    transition: box-shadow 0.5s;
 }
 
#row_first_videos {
    margin-top : 0px;
}

.box_mini_box .video_social {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #FFFFFF;
}

.box_mini_box .video_desc_gradient {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
    background-image: -moz-linear-gradient(top, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.8) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
    background-image: -o-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
}


.box_mini_box .video_desc_text {
    position: absolute;
    bottom: -15px;
    width: 100%;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFFFFF;
    font-family: 'geomanistmedium';
    font-size: 14px;
}

.box_big_box.shadow {
    box-shadow: 3px 3px 5px grey;
}

.box_big_box .video_social {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #FFFFFF;
}

.box_big_box .video_desc_gradient {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
    background-image: -moz-linear-gradient(top, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.8) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
    background-image: -o-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.8) 100%);
}

.box_big_box .video_desc_text {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFFFFF;
    font-family: 'geomanistmedium';
    font-size: 16px;
}
@media screen and (max-width: 1480px) {
    .video_menu {
         padding-top: 8px !important;
    }
}

@media screen and (max-width: 970px) {
    .video_menu {
        padding-top:10px !important;
    }
    .play_big_video,.play_mini_video {
        height : 50px ;
        width : 50px;
        top : 30% ;
    }
    
    #big_preview {
        max-width : 100%;
    }
    .video_desc_text {
        font-size: 14px;
    }
    
}

@media screen and (max-width: 768px) {
    .video_menu {
        padding-top:5px !important;
    }
    #menu_videos {
        font-size : 14px; 
        padding-left : 5px;
        padding-right : 5px;
    }
    
    #menu_videos span {
        margin-left : 10px;
        margin-right : 10px;
    }
    .social_multimedia_home {
        display : none;
    }
    .play_big_video,.play_mini_video {
        width : 20%;
        height : auto;
        top : 50% !important;
    }
}

@media screen and (max-width: 460px) {
    .video_menu {
        padding-top:2px !important;
    }
}

@media (min-width: 768px) {
    .play_big_video,.play_mini_video {
        width : 20%;
        height : auto;
        top : 50%;
    }
    #big_preview {
        width:100%;
    }
    .mini_preview {
        width:100%;
    }
}

@media (min-width: 992px) {
    #big_preview {
        height : 345px;
    }
}

@media (min-width: 1200px) {
    #big_preview {
        height : 420px;
    }
}
#header_emission {
    min-width: 100%;
}

.seq_spacing {
    margin-bottom : 30px;
}

.emission_title_accueil span {
    margin-left: 20px;
    margin-right: 20px;
    cursor: pointer;
}

.emission_title_accueil span:hover {
    text-decoration: underline;
}

.emission_title_accueil .menu_selected {
    color : #FFFFFF;
    text-decoration: underline;
}

.emission_title_accueil span a {
    color: #FFFFFF;
}


.emission_horaire {
    position : absolute;
    top : 230px;
    font-family: 'geomanistbold';
    font-size: 35px;
}

.emission_horaire.left {
    left : 70px;
}

.emission_horaire.right {
    right : 70px;
}

.emission_animateur {
    position : absolute;
    top : 180px;
    font-size: 27px;
}
.emission_animateur.left {
    left : 70px;
}
  
.emission_animateur.right {
   right : 70px;
}

.emission_nom {
    position : absolute;
    font-family: 'geomanistbold';
    font-size: 45px;
    top : 130px;
}

.emission_nom.right {
    right : 70px;
}

.emission_nom.left {
    left : 70px;
}

.more_chronique_left {
    position: absolute;
    left : 50px;
    top : 125px;
}

.more_chronique_right {
    position: absolute;
    right : 50px;
    top : 125px;
}

.animateur_chronique {    
    position : absolute;
    top : 210px;
    color : #FFFFFF;
    text-decoration: none;
    font-size : 32px;
    font-family: 'geomanistbold';
}

.animateur_chronique.right {
    right : 250px;
}

.animateur_chronique.left {
    left : 250px;
}


.presente_chronique {
    position : absolute;
    top : 195px;
    color : #FFFFFF;
    text-decoration: none;
    font-size : 18px;
   font-family: 'geomanistbook';
}

.presente_chronique.right {
    right : 250px;
}

.presente_chronique.left {
    left : 250px;
}

.horaire_chronique {    
    position : absolute;
    top : 260px;
    color : #FFFFFF;
    text-decoration: none;
    font-size : 22px;
    font-family: 'geomanistbook';
}

.horaire_chronique.right {
    right : 250px;
}

.horaire_chronique.left {
    left : 250px;
}

.logo_chronique {
    width : 175px;
    height : 175px;
    margin-top : 110px;
}

.logo_chronique.right {
     margin-right : 30px;
}

.logo_chronique.left {
     margin-left : 30px;
}


.row_view_chronique {
    position : absolute;
    bottom : 0px;
    left : 0px;
    width : 100%;
    height : 90px;
    background-color : rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: 'geomanistbook';
    color: #FFFFFF;
    font-size: 22px;
    padding-top : 5px;
}

.row_view_chronique_text {
    position : absolute;
    top : 25px;
    font-family: 'geomanistbook';
    font-size: 24px;
    text-align: left;
}

.row_view_chronique_text.right {
    right : 70px;
}

.row_view_chronique_text.left {
    left : 70px;
}


.row_view_chronique_logo {
    position : absolute;
    top: 5px;
}
.row_view_chronique_logo.right {
    right : 330px;
}
.row_view_chronique_logo.left {
    left : 330px;
}
.row_view_chronique_logo img {
    height : 80px;
    margin-left : 7px;
    margin-right : 7px;
}
.row_view_more {
    position : absolute;
    bottom : 0px;
    left : 0px;
    width : 100%;
    height : 70px;
    background-color : rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: 'geomanistbook';
    color: #FFFFFF;
    font-size: 22px;
    padding-top : 20px;
}

.link_view_more {
    position : absolute;
}

.link_view_more.right {
    left : 0px;
}

.link_view_more.left {
    right : 0px;
}

.link_view_more a {
    text-decoration: none;
    color : #FFFFFF;
}

.link_view_more.right a {
    margin-left : 100px;
}

.link_view_more.left a {
    margin-right : 100px;
}

.view_more_button {
    position : absolute;
    height : 60px;
    width : auto;
    top : 5px;
}

.view_more_button.right {
     right : 40px;
}

.view_more_button.left {
    left : 40px;
}


#header-space {
    height : 150px;
}

.row_seqences {
    position: relative;
    height : 450px;
    margin-bottom : 10px;
    background-repeat: no-repeat;
    background-size: cover;
}
.row_seqences .col-md-4 {
    height : 450px;
    text-align: center;
}
.photo_chronique {
    height: 440px;
    width: auto;
    margin-top: 10px;
}

.photo_chroniques {
    height: 440px;
    width: auto;
    margin-top: 10px;
}

.emission_title_accueil a {
    color : #FFFFFF;
}

.emission_title_accueil {
    font-family: 'geomanistbold';
    height : 80px;
    color : #FFFFFF;
    font-size : 25px;
    text-transform: uppercase;
    text-align : center;
    padding-top : 18px;
    margin-bottom : 50px;
    border-top: 3px solid rgba(0, 0, 0, 0.2);
}

.article_emission_title {
    font-family: 'geomanistbold';
    text-transform: uppercase;
    font-size : 25px;
    margin-bottom : 20px;
}

.article_emission_chapeau {
    font-size : 18px;
    text-align: justify;
    text-justify: inter-word
}

.article_emission_more {
    font-family: 'geomanistbook';
    margin-top : 10px;
    font-size : 18px;
    text-align: right;
}

.article_emission_share {
    font-family: 'geomanistbook';
    bottom : 0px;
    margin-top : 15px;
    font-size : 16px;
    text-align: left;
}

.article_emission_share div {
    margin-bottom : 10px;
}

.article_emission_share img {
    width: 25px;
    height: 25px;
    margin-left: 0px;
    margin-right: 5px;
}

.emission_arrow {
    position : absolute;
    left : 0px;
    right : 0px;
    margin-left :auto;
    margin-right: auto;
    bottom : -27px;
    z-index:10;
}


.row_emission_accueil {
    margin-bottom : 40px;
}

.more_emission_box {
    position : absolute;
    display : inline-block;
    right : 0px;
    top : -3px;
    height : 80px;
    width : 250px;
    background-color : rgba(0, 0, 0, 0.2);
    text-align : center;
    cursor : pointer;
}

.more_emission_box img {
    position : absolute;
    top : 25px;
    left : 50px;
}

.more_emission_box div {
    position : absolute;
    top : 25px;
    left : 100px;
    font-size : 20px;
    text-align : left;
    padding-right : 10px;
    font-family: 'geomanistbold';
}

.emission_left_box {
    text-align: left;
}

.emission_right_box {
    text-align: right;
}

@media screen and (max-width: 1600px) {
    .logo_chronique.right {
        margin-right: 10px;
    }
    .logo_chronique.left {
        margin-left: 10px;
    }
    .row_view_chronique_text {
        display : none;
    }
    .photo_chronique {
        height : 315px;
        margin-top:35px;
    }
    .photo_chroniques {
        height : 315px;
        margin-top:10px;
    }
    .row_seqences {
        height : 325px;
    }
    row_view_chronique_text {
        font-size: 18px;
    }
    .row_view_chronique_text.left {
        left : 100px;
    }
    .row_view_chronique_text.right {
        right : 100px;
    }
    .emission_nom {
        font-size: 42px;
        top : 70px;
    }
    
    .emission_animateur {
        font-size: 22px;
        top : 130px;
    }
    .emission_horaire {
        font-size: 30px;
        top : 160px;
    }
    .emission_nom.left,.emission_animateur.left,.emission_horaire.left {
        left : 50px;
    }
    .row_view_chronique_logo.right {
        right: 100px;
    }
    .row_view_chronique_logo.left {
        left: 100px;
    }
    .row_view_chronique_logo img {
        width : 80px;
        height : 80px;
    }
    .logo_chronique {
        width: 140px;
        height: 140px;
        margin-top: 50px;
    }
    .presente_chronique.right,.animateur_chronique.right,.horaire_chronique.right {
        right: 190px;
    }
    .presente_chronique.left,.animateur_chronique.left,.horaire_chronique.left {
        left: 190px;
    }
    .presente_chronique {
        top: 140px;
        font-size: 14px;
    }
    .animateur_chronique {
        top: 160px;
        font-size: 22px;
    }
    .horaire_chronique {
        top: 190px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1280px) {
    .logo_chronique {
        width: 100px;
        height: 100px;
        margin-top: 80px;
    }
    .presente_chronique.right, .animateur_chronique.right, .horaire_chronique.right {
        right: 140px;
    }
    .presente_chronique.left, .animateur_chronique.left, .horaire_chronique.left {
        left: 140px;
    }
    .link_view_more {
        display: none;
    }
    .row_seqences {
        background-position: center;
    }
    .photo_chronique {
        height : 250px;
        margin-top : 50px;
    }
    .photo_chroniques {
        height : 250px;
        margin-top : 75px;
    }
}

@media screen and (max-width: 970px) {
    .row_view_more,.view_more_button,.row_view_chronique_text,.row_view_chronique_logo,.row_view_chronique {
        display: none;
    }
    .photo_chronique {
        height : 180px;
        margin-top:70px;
    }
    .photo_chroniques {
        height : 180px;
        margin-top:70px;
    }
    .row_seqences {
        height : 250px;
    }
    .emission_nom.left,.emission_animateur.left,.emission_horaire.left {
        left: 10px !important;
    }
     .emission_nom.right,.emission_animateur.right,.emission_horaire.right {
        right: 10px !important;
    }
    .emission_nom {
        font-size: 22px;
        top : 50px;
    }
    .emission_animateur {
        font-size : 18px;
        top : 100px !important;
    }
    .emission_horaire {
        top: 80px;
        font-size: 16px;
    }
    #header-space {
        height : 50px;
    }
    .emission_title_accueil {
        font-size: 18px;
    }
    
}


@media screen and (max-width: 768px) {
    .photo_chronique {
        height : 150px;
        margin-top:50px;
    }
    .photo_chroniques {
        height : 150px;
        margin-top:40px;
    }
    .row_seqences {
        height : 190px;
    }
    .emission_left_box {
        text-align: right;
    }
    .emission_right_box {
        text-align: left;
    }
    .emission_nom {
        font-size: 16px;
        top: 60px;
    }
    .emission_animateur {
        font-size : 12px;
        top: 90px;
    }
    .emission_title_accueil {
        font-size: 12px;
        padding-top: 10px;
        height: 50px;
    }
    .emission_title_accueil span {
        margin-left: 15px;
        margin-right : 15px;
    }
    .emission_horaire {
        top: 120px;
        font-size: 12px;
    }
    .logo_chronique {
        margin-top: 40px;
        width: 80px;
        height: 80px;
    }
    .presente_chronique {
        top: 100px;
        font-size: 12px;
    }
    .logo_chronique.right {
        margin-right: 0px;
    }
    .logo_chronique.left {
        margin-left: 0px;
    }
    .presente_chronique.right, .animateur_chronique.right, .horaire_chronique.right {
        right: 100px;
    }
    .presente_chronique.left, .animateur_chronique.left, .horaire_chronique.left {
        left: 100px;
    }
    .animateur_chronique {
        top: 120px;
        font-size: 16px;
    }
    .horaire_chronique {
        display: none;
    }
    .more_emission_box {
        height: 50px;
        width: 150px;
    }
    .more_emission_box img {
        left: 10px;
         top: 13px;
    }
    .more_emission_box div {
        font-size: 12px;
        top : 18px;
        left: 50px;
    }
    #playlist_box_title {
        font-size : 28px !important;
    }
    #playlist_box_artist {
         font-size: 22px !important;
    }
}
@media screen and (max-width: 460px) {
    .photo_chronique {
        height : 110px;
        margin-top:90px;
    }
    .photo_chroniques {
        height : 110px;
        margin-top:10px;
    }
    .row_seqences {
        height : 120px;
    }
    .emission_nom {
        top: 25px;
        font-size: 16px;
    }
    .emission_horaire {
        top : 65px;
    }
    .emission_animateur {
       display: none;
    }
    .emission_title_accueil {
        font-size: 14px;
        padding-top: 13px;
        height: 60px;
        text-align: left;
    }
    .emission_title_accueil span {
        margin-left: 10px;
        margin-right : 10px;
    }
    .logo_chronique {
        margin-top: 10px;
        width: 50px;
        height: 50px;
    }
    #header-diagonal .logo_chronique {
        margin-top: 80px;
    }
    #header-diagonal .presente_chronique {
        top: 120px;
    }
    #header-diagonal .animateur_chronique {
        top: 130px;
    }
    .presente_chronique {
        top: 60px;
        font-size: 8px;
    }
    .presente_chronique.right, .animateur_chronique.right, .horaire_chronique.right {
        right: 70px;
    }
    .presente_chronique.left, .animateur_chronique.left, .horaire_chronique.left {
        left: 70px;
    }
    .animateur_chronique {
        top: 75px;
        font-size: 14px;
    }
    .more_emission_box {
        height: 60px;
        width: 100px;
    }
    .more_emission_box div {
        font-size: 10px;
        left: 40px;
    }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17-févr.-2016, 15:47:09
    Author     : spissens
*/



#recherche_timeline {
    cursor: pointer;
}

.panel-playlist tr {
    cursor:pointer;
}

.panel-playlist {
    font-family: 'geomanistbold';
}

.playlist_selected {
    color: #da174a;
    font-weight: bold;
}

.playlist_selected_01808f {
    color: #01808f;
    font-weight: bold;
}

.playlist_selected_f7c00d {
    color: #f7c00d;
    font-weight: bold;
}

.playlist_selected_4bbbad {
    color: #4bbbad;
    font-weight: bold;
}

.playlist_selected_6842d5 {
    color: #6842d5;
    font-weight: bold;
}

.playlist_selected_944011 {
    color: #944011;
    font-weight: bold;
}

.playlist_selected_d9174b {
    color: #d9174b;
    font-weight: bold;
}

#playlist_box_date {
    font-family: 'geomanistbook';
    font-size: 32px;
}

#playlist_box_title {
    font-family: 'geomanistbold';
    font-size: 55px;
    text-transform: uppercase;
}

#playlist_box_artist {
    font-family: 'geomanistbook';
    font-size: 30px;

}

.panel.panel-playlist .panel-body {
    background-color: #f7f7f7;
    height : 380px;
}  

.panel.panel-playlist .panel-heading {
    background-color: #da174a;
}  

.round_thumb {
    display : inline-block;
    width : 170px;
    height : 170px;
    border-radius: 50%;
    background-size: 170px;
    background-position: center;
}

.search_li {
    height : 100px !important;
}

/** timeline box structure **/
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline-cover {
    width : 100%;
    max-width : 170px;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eee;
  left: 50%;
  margin-left: -1.5px;
}

.form_datetime {
    cursor : pointer;
}

.tldate {
  display: block;
  width: 200px;
  font-family: 'geomanistbold';
  font-size : 18px;
  color: #FFFFFF;
  margin: 0 auto;
  padding: 3px 0;
  text-align: center;
}

.tldate i {
    margin-left : 5px;
}

.timeline li {
  margin-bottom: 45px;
  position: relative;
  height : 170px;
}

.timeline li:before, .timeline li:after {
  content: " ";
  display: table;
}
.timeline li:after {
  clear: both;
}
.timeline li:before, .timeline li:after {
  content: " ";
  display: table;
}

/** timeline panels **/
.timeline li .timeline-panel {
  width: 36%;
  float: left;
  background: #fff;
  border: 1px solid #d4d4d4;
  padding: 20px;
  position: relative;
  left: 35px;
}

/** panel arrows **/
.timeline li .timeline-panel:before {
  position: absolute;
  top: 50px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.timeline li .timeline-panel:after {
  position: absolute;
  top: 51px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline li .timeline-panel.noarrow:before, .timeline li .timeline-panel.noarrow:after {
  top:0;
  right:0;
  display: none;
  border: 0;
}

.timeline li.timeline-inverted .timeline-panel {
  float: right;
  left : -30px;
}

.timeline li.timeline-inverted .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline li.timeline-inverted .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}


/** timeline circle icons **/
.timeline li .tl-circ {
  position: absolute;
  top: 0px;
  left: 50%;
  text-align: center;
  background: #FFFFFF;
  color: #fff;
  width: 170px;
  height: 170px;
  line-height: 170px;
  margin-left: -80px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: 9;
  background-position: center;
  background-size: 170px;
}


/** timeline content **/

.tl-heading h4 {
  margin: 0;
  padding-bottom : 5px;
  text-transform: uppercase;
  font-family: 'geomanistbook';
  color: #000000;
  
}

.tl-body p, .tl-body ul {
  margin-bottom: 0;
  font-family: 'geomanist_regular';
}

.tl-body > p + p {
  margin-top: 5px;
}
@media (max-width: 1200px) {
    .tl-heading p {
         font-size : 12px;
    }
    
    .tl-heading h4 {
        font-size : 14px;
    }
    .tl-body p, .tl-body ul {
        font-size : 12px;
    }
}
@media (max-width: 991px) {
  .page-header h1 { font-size: 1.8em; }
   
   .timeline_container {
      width : 100%;
      padding-left : 80px;
    }
  
  ul.timeline:before {
    left: 20px;
  }
  
  .tldate { width: 140px; }

  ul.timeline li .timeline-panel {
    width: calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
  }
   .timeline li.timeline-inverted .timeline-panel,.timeline li .timeline-panel {
       left : 5px;
   }
  ul.timeline li .tl-circ {
    top: -10px;
     left : -70px;
    margin-left: 0;

  }
  ul.timeline > li > .tldate {
    margin: 0;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}
@media (max-width: 768px) {
    
    .tl-heading p {
         font-size : 12px;
    }
    
    .tl-heading h4 {
        font-size : 14px;
    }
    .tl-body p, .tl-body ul {
        font-size : 12px;
    }
}

/*
 * NGROUP 
 * @version 04/2018
 *
 */
.required:after {
    content: " *";
    color: red;
}

/*
*
* TOOL TIP TEXT
*/
.tooltip-form {
    position: relative;
    display: inline-block;
}
.tooltip-form .tooltiptext-form {
    visibility: hidden;
    width: 250px;
    background-color: #a92630;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -50px;
    padding-left: 5px;
    padding-right: 5px;
}

.tooltip-form .tooltiptext-form::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #a92630 transparent transparent transparent;
}

.tooltip-form:hover .tooltiptext-form {
    visibility: visible;
}

.modal-content{
    background-image: url(/images/fond-login.jpg);
}

body{
    padding-right: 0 !important;
}
/* centered columns styles */
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
    vertical-align: top;
}

.modal-body {
    font-family: 'TexteArticle';
    color : #a92630;
}
.new-account {
    font-family: 'TexteArticle';
    color : #a92630;
}
.col-btn{
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
}
.row-btn{
    text-align: right;
    margin-right: 40px;
    margin-top: 15px;
}

.form-optin{
    font-size: 1.1em;  
}
.form-optin input[type=checkbox]{
    height: 18px;
    width: 18px;
}

.form-modal-button{
    background-color : #ec3342;
    background-image : none;
    border-color: #FFFFFF;
}
.modal-dialog {
    max-width : 750px;
    width : 100%;
}

.modal-header {
    padding-bottom : 5px;
}
.modal-body {
    padding-top : 5px;
}

#ModalLogin {
    overflow: no-display !important;
    z-index : 1000002 !important;
    
}

.modal-title {
    font-family: 'IntroTitre';
    color : #a92630;
    text-align: center;
}

.modal-content {
    margin-top : 100px;
}
.modal-header {
    border : 0px;
}

#form_login_custom {
    position : fixed;
    width : 100%;
    height : 100%;
    background-color : rgba(0,0,0,0.7);
    text-align : center;
    z-index : 99;
    display : none;
}
.form-signin
{
    margin-top : 20px;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}
.form-signin .form-signin-heading, .form-signin .checkbox
{
    margin-bottom: 10px;
}
.form-signin .checkbox
{
    font-weight: normal;
}
.form-signin .form-control
{
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-signin .form-control:focus
{
    z-index: 2;
}
.form-signin input[type="text"]
{
    margin-bottom: -1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.form-signin input[type="password"]
{
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.account-wall
{
    margin-top: 20px;
    padding: 40px 0px 20px 0px;
    background-color: #f7f7f7;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.login-title
{
    color: #555;
    font-size: 18px;
    font-weight: 400;
    display: block;
}
.profile-img
{
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.need-help
{
    margin-top: 10px;
}
.new-account
{
    display: block;
    margin-top: 10px;
}

#facebook_connect_button {
    width : 250px;
    margin-bottom: 15px;
    cursor: pointer;
}

#google_connect_button {
    width : 236px;
    cursor: pointer;
}

.profile-box{
    font-family: 'TexteArticle';
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .profile-img {  
       display : none;
    }
    .modal-dialog {
        padding-right : 15px;
    }
}



/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16-mars-2016, 10:23:24
    Author     : spissens
*/

#webradios_container {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFFFFF;
}

.webradio_box {
    background-color: #FFFFFF;
    text-align: center;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
}

@media screen and (max-width: 970px) {
    .webradio_box {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .webradio_box {
        height: auto;
    }
}
.webradio-playlist{
    padding: 5px;
    text-align: center;
}

.panel-playlist-webradios{
    font-family: 'geomanistbold';
}

.panel.panel-playlist-webradios .panel-body {
    background-color: #f7f7f7;
    height : 350px;
}  

.panel.panel-playlist-webradios .panel-heading {
    background-color: #da174a;
}  
.img-webradio-playlist{
    margin: auto;
    max-height: 150px;
}

.img-webradio-playlist:hover{
    border: 2px solid grey;
    cursor: pointer;
    border-radius: 15px;
}


#playlist_content {
    padding-top : 60px;
    padding-bottom : 40px;
}

#playlist_content .row {
    padding-top: 30px;
    padding-left : 5px;
    padding-right : 5px;
    padding-bottom : 15px;
    text-align: center;
}
#playlist_content .col-md-4 .row {
    padding : 5px;
}

.div-7 {
    display : inline-block;
    margin-left : 10px;
    margin-right : 10px;
    padding : 10px;
    margin-bottom : 15px;
    width: 200px;
    max-width: 200px;
    height : 350px;
    max-height : 350px;
}

.div-7.current_title {
    background-color : rgba(0, 0, 0, 0.1);
}

.div-7 img {
    width : 100%;
}

.center_cover {
    width : 170px;
    height : 170px;
}

.pl_cover {
    display : inline-block;
    width : 70px;
    height : 70px;
    vertical-align: top;
}

.pl_text_content {
    display : inline-block;
    vertical-align: top;
    width : 100%;
}

.pl_artist {
    font-family: 'geomanistbold';
    text-transform: uppercase;
    color : #000000;
    text-align : center;
    margin-top : 10px;
}

.pl_title {
    font-family: 'geomanist_regular';
    color : #000000;
    text-align : center;
    margin-top : 5px;
}
.pl_start,.pl_start_current {
    font-family: 'geomanistbold';
    text-align : center;
    margin-top: 15px;
    color : #000000;
    margin-bottom : 10px;
    font-size: 16px;
}

.pl_start_current {
    text-align:center;
    color : #000000;
    background-color : #E1001F;
}

#more_playlist_accueil a {
    color : #000000;
    font-family: 'geomanistmedium';
    font-size: 20px;
}
.show_row {
    margin-top : 15px;
}

#accueil_shop {
    padding-top : 20px;
}

.shop_desc_box .col-md-2 {
    border-left: 1px solid #8a8a8a;
}

.item_title {
   font-family: 'geomanistbold';
   font-size : 16px;
   color: #000000;
   margin-bottom:10px;
}

.item_desc {
    font-family: 'geomanist_regular';
    font-size : 14px;
    color: #8a8a8a;
}

.item_prix {
    color: #b51616;
    font-family: 'geomanistbold';
    font-size: 22px;
    line-height: 26px;
}

.item_euros {
    color: #b51616;
    font-family: 'geomanistbold';
    font-size:18px;
    line-height: 18px;
}

.shop_desc_box {
    margin-top : 10px;
    height : 120px;
}

.shop_view_box {
    margin-top: 5px;
}

.shop_view_box a {
    font-family: 'geomanistbook';
    color: #b51616;
    font-size:18px;
}

.shop_view_box img {
    margin-top : 5px;
}

.shop_item_img {
    margin-top : 15px;
    margin-bottom: 15px;
}

.shop_item_desc {
    margin-top : 15px;
    margin-bottom: 15px;
    padding-right: 50px;
    font-family: 'geomanist_regular';
    font-size:18px;
    text-align: justify;
}
.shop_item_desc_price {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'geomanistbold';
    font-size: 38px;
    color: #b51616;
}


@media screen and (max-width: 1600px) {

    .item_desc,.shop_view_box a {
        font-size : 12px; 
    }
}
.panel-photo {
    background-color: #FFFFFF;
    height:100%;
    border: 0px;
    border-radius: 0px;
    box-shadow:  none;
}

.thumbnailngroup {
  position: relative;
  max-width: 300px;
  height: 200px;
  overflow: hidden;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.thumbnailngroup img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
.thumbnailngroup img.portrait {
  width: 100%;
  height: auto;
}
.clearfix {
    clear: both;
}

.eupopup-container {
    background-color: rgba(25, 25, 25, 0.9);
    color: #efefef;
    /*padding: 5px 20px;*/
    font-size: 0.9em;
    line-height: 1em;
    text-align: center;
    display: none;
    z-index: 9999999;
}

.eupopup-container-top,
.eupopup-container-fixedtop {
    position: absolute;
    top: 0; left: 0; right: 0;
}

.eupopup-container-fixedtop {
    position: fixed;
}

.eupopup-container-bottom {
    position: fixed;
    bottom: 0; left: 0; right: 0;
}

.eupopup-container-bottomleft {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 300px;
}

.eupopup-container-bottomright {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
}

.eupopup-closebutton {
    font-size: 1.2em;
    font-weight: 100;
    line-height: 1;
    color: #a2a2a2;
    filter: alpha(opacity=20);
    position: absolute;
    font-family: helvetica, arial, verdana, sans-serif;
    top: 0; right: 0;
    padding: 5px 10px;
}
.eupopup-closebutton:hover,
.eupopup-closebutton:active {
    color: #fff;
    text-decoration: none;
}

.eupopup-head {
    font-size: 1.2em;
    font-weight: bold;
    padding: 7px;
    color: #fff;
}

.eupopup-body {
    color: #a2a2a2;
}

.eupopup-buttons {
    padding: 7px 0 5px 0;
    text-align: right;
}

.eupopup-button_1 {
    color: #f6a21d;
    font-weight: bold;
    font-size: 1.0em;
}

.eupopup-button_2 {
    color: #f6a21d;
    font-weight: normal;
    font-size: 1em;
}

.eupopup-button {
    margin: 0 10px;
}

.eupopup-button:hover,
.eupopup-button:focus {
    text-decoration: underline;
    color: #f6a21d;
}

body .eupopup-color-inverse {
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
}

body .eupopup-color-inverse .eupopup-head {
    color: #000;
}

body .eupopup-style-compact {
    text-align: center;
   /* padding: 8px 30px 7px 20px;*/
    line-height: 1.2em;
}

body .eupopup-style-compact .eupopup-head,
body .eupopup-style-compact .eupopup-body,
body .eupopup-style-compact .eupopup-buttons {
    width: 90%;
    display: block;
    padding: 2px;
    margin: 0 auto;
}

body .eupopup-style-compact .eupopup-button {
    margin: 0 5px;
}

@media screen and (max-width: 970px) {
    .eupopup-container {
        font-size: 0.7em;
    }
    .eupopup-button_1 {
        font-size: 0.9em;
    }

    .eupopup-button_2 {
        font-size: 0.9em;
    }
}