/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
*{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}


/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Style
   ========================================================================== */
html, body{
  font-family: 'Rubik';
}
.player_wrapper{
  background: #001e62;
  color: #fff;
  padding: 10px 15px;
  max-width: 600px;
  width: 100%;
  position: relative;
  border-radius: 4px;
  height: 180px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.podcast_img{
  background-size: cover;
  background-position: center center;
  height: 155px;
  width: 155px;
  min-width: 150px;
  min-height: 150px;
  margin-right: 15px;
  border-radius: 4px;
}
.podcast_main{
  width: 100%;
}
.player_wrapper{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.podcast_title{
  font-size:22px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 5px 0;
  display: block;
}

.podcast_page_link {
  color: #ffffff;
  text-decoration: none;
}

.show.date{
  text-transform: uppercase;
  font-size: 20px;
  font-family: Barlow Condensed;
}
.pause_player{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.play_pause_player svg{
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.play_pause_player svg path{
  fill:#fff;
}
.play_pause_player.active_player .pause_player{
  opacity: 1;
  visibility: visible;
}
.play_pause_player.active_player .play_player{
  opacity: 0;
  visibility: hidden;
}
.play_pause_player{
  min-width: 45px;
  min-height: 45px;
  width: 45px;
  height: 45px;
  margin-right: 9px;
  position: relative;
  border-radius: 100%;
}
.loading_player{
    -webkit-animation: shadow-pulse 1s infinite;
            animation: shadow-pulse 1s infinite;
}
.player{
  margin-top: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.player_timeline_wrapper{
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
  -webkit-flex-flow:row wrap;
      -ms-flex-flow:row wrap;
          flex-flow:row wrap;
}
.player_timeline{
  width: calc(100% - 90px);
  margin-right: 10px;
}
.logo{
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 9;
  width: 80px;
}
#seek_player{
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
#seek_player .ui-slider-range{
  position: absolute;
  background-color: #fff;
  bottom: 0;
  margin: auto;
  left: 0;
  height: 4px;
}
#seek_player:hover #seek-handle, #seek_player:active #seek-handle, #seek_player:focus #seek-handle{
  opacity: 1;
}
div#seek-handle, #seekHome-handle{
    height: 15px;
    width: 15px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 100%;
    opacity: 0;
    -webkit-transition:opacity 0.1s $cubic;
    -o-transition:opacity 0.1s $cubic;
    transition:opacity 0.1s $cubic;
    cursor: pointer;
    outline: none;
}
.volume_middle .max_svg{
  display: none;
}
.volume_more{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.flere_mellemrum {
  margin-left: 15px;
}
.flere_episoder {
  margin-left: 15px;  
}

.flere_episoder_link {
  color: #ccd2e0;
  text-decoration: none;  
}

.volume_off .max_svg, .volume_off .middle_svg{
  display: none;
}
.player_time{
  font-size: 16px;
  font-family: Barlow Condensed;
  min-width: 86px;
  text-align: right;
}
.player_time_timeline_wrapper{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.volume_more{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.volume_more svg{
  margin-right: 10px;
  cursor: pointer;
}
.volume_more span{
  font-weight: bold;
  font-size: 16px;
  color: #ccd2e0;
  cursor: pointer;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
  border-radius:4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border-radius:4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius:4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fff;
  border-radius:4px;
}

.description{
  z-index: 2;
  background: #001e62;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.description.open-desc{
  opacity: 1;
  visibility: visible;
}
.description_content{
  overflow-y: auto;
  overflow-x: hidden;
  width: calc(100% - 90px);
  height: 100%;
}
.close{
  width: 23px;
  height: 23px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  cursor: pointer;
}

.description p{
  font-size: 14;
  font-family: Barlow;
  font-weight: 400;
  line-height: 17px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
}
.description .podcast_title{
  margin-top: 0;
}

@-webkit-keyframes shadow-pulse
{
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}

@keyframes shadow-pulse
{
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}

@media (max-width: 600px){
  .podcast_img{
    display: none;
  }
}

@media (max-width: 361px){
  .flere_mellemrum{
    margin-left: 5px;
  }
  .flere_episoder{
    margin-left: 5px;
  }
}