@font-face {
    font-family: fontawesome;
    src: url("../fonts/fontawesome-webfont.eot");
    src: url("../fonts/fontawesome-webfont.eot") format('embedded-opentype'),url("../fonts/fontawesome-webfont.woff") format('woff'),url("../fonts/fontawesome-webfont.ttf") format('truetype'),url("../fonts/fontawesome-webfont.svg") format('svg');
    font-weight: 400;
    font-style: normal
}


/*articles audio player page*/
body{
  margin: 0;
}
.wrapper {
  width: 100%;
  min-height: 100vh;
  background-size: cover !important;
  position: relative;
  z-index: 1;
  background: url("") no-repeat center center fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
}
.wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 171, 107, 0.8);
  left: 0;
  top: 0;
}

h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 100;
    font-size: 4em;
}

h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-weight: 300;
  font-size: 1em;
  margin-bottom: 50px;
  margin-top: -10px;
}

#player {
  position: relative;
  z-index: 2;
  width: 800px;
  height: 150px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* align-self: flex-start; */
  /* margin-left: 100px; */
}
#player img {
  position: absolute;
  left: 15px;
  top: -25px;
  border-radius: 10px;
  border: 1px solid #43A047;
}
#player .player-song {
  width: 70%;
  height: 100%;
  margin-left: 230px;
}
#player .player-song .title {
  color: #333;
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#player .player-song .artist {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
#player .player-song .timestamps {
  width: calc(100% - 15px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 5px;
}
#player .player-song .actions {
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#player .player-song .actions .next, #player .player-song .actions .prev {
  cursor: pointer;
}
#player .player-song .actions i {
  font-size: 32px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  color: #bbbbbb;
  -webkit-transition: .1s;
  transition: .1s;
}
#player .player-song .actions i:hover {
  color: #888888;
  -webkit-transition: .1s;
  transition: .1s;
}

progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: calc(100% - 15px);
  height: 6px;
  border-radius: 50px;
  margin-top: 20px;
}

progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 50px;
}

progress[value]::-webkit-progress-value {
  border-radius: 50px;
  background-color: #333DDD;
}

.play-button {
  height: 16px;
  width: 16px;
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 10px;
}
.play-button:hover .left, .play-button:hover .right {
  background-color: #888888;
}

.left {
  height: 100%;
  float: left;
  background-color: #bbbbbb;
  width: 36%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}

.triangle-1 {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.triangle-2 {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.triangle-1,
.triangle-2 {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  width: 0;
  height: 0;
  border-right: 16px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.right {
  height: 100%;
  float: right;
  width: 36%;
  background-color: #bbbbbb;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.paused .left {
  width: 50%;
}

.paused .right {
  width: 50%;
}

.paused .triangle-1 {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.paused .triangle-2 {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}


/*Playlist*/
.player-wrapper {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    flex-direction: column-reverse;
    margin-top: 40px;
}

.playlist-wrapper {
    background-color: #fff;
    position: relative;
    z-index: 9;
    padding: 20px;
    border-radius: 8px;
    width: 38%;
    margin-bottom: 20px;
    margin-top: 45px;
}

.playlist__header {
    text-align: center;
    border-bottom: 1px solid #BDBDBD;
    padding-bottom: 10px;
}

.playlist__list {
    padding-top: 10px;
    width: 100%;
    overflow-y: auto;
    max-height: 600px;
}

.playlist__item {
    display: flex;
    flex-direction: row;
    padding: 10px;
    color: #757575;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}

.playlist__item:hover {
    background-color: #E8F5E9;
}

.playlist__item-body {
    display: flex;
    flex-direction: row;
}

.playlist__item-img img {width: 100%;border-radius: 4px;}

.playlist__item-img {
    width: 80px;
    margin: 0 10px;
    border: 1px solid #9E9E9E;
    border-radius: 4px;
}

.playlist__item-no {
    align-self: center;
}

.playlist__item-author {
    font-size: 14px;
    padding-top: 10px;
}

.playlist__item-author a {
    color: #616161;
}

.playlist__item-title {
    color: #757575;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 370px;
}

.playlist__list-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #BDBDBD;
    padding-bottom: 10px;
}

.playlist__list-head > span:nth-child(1) {
    flex-grow: 1;
}
.playlist__list-head > span:nth-child(2) {
    flex-grow: 2;
}
.playlist__list-head > span:nth-child(3) {
    flex-grow: 0.2;
}
div#logo {
    z-index: 99;
    padding: 20px;
}
#logo img {
    margin: 0 auto;
    display: block;
}
#logo .button{
    display: block;
    padding: 10px;
    background: none;
    border: 1px solid #fff;
    border-radius: 5px;
    margin: 18px auto 5px auto;
    text-align: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
#logo .button > img{
    display: inline-block;
    width: 25px;
    padding: 0 10px;
    vertical-align: middle;
    padding-bottom: 2px;
}

#logo .install-text{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-top: 35px;
}

.jssocials-share-link { 
  border-radius: 50%; 
}
#article-sharing-btns .jssocials-share-link { border-radius: 0% !important; }
#article-sharing-btns .jssocials-share-link {
    background: none !important;
    color: #fff !important;
    border: 1px solid;
}
.jssocials-shares {
    font-size: 12px;
    float: right;
}

.email-form-slider {
    position: fixed;
    bottom: 0;
    width: 100%;
    /* height: 100px; */
    z-index: 99;
    background: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #43a047;
    will-change: transform;
    transform: translateY(100%);
    transition: transform 0.23s ease;
}

.email-form-slider__text {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
}

.email-form-slider__form {
    margin: 10px 10px 10px 0;
}

.email-form-slider__form > input[type="text"] {
    width: 50%;
    height: 47px;
    font-size: 20px;
    text-indent: 4px;
    outline: none;
    border: 3px solid #43A047;
    font-family: 'Roboto', sans-serif;
}

.email-form-slider__form > input[type="button"] {
    background: #43A047;
    border: none;
    /* height: 40px; */
    color: #fff;
    font-size: 20px;
    padding: 12px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}
.email-form-slider__overlay {
    font-family: 'Roboto', sans-serif;
    font-size: 27px;
    position: absolute;
    width: 100%;
    background: #fff;
    height: 100%;
    opacity: 0.9;
    vertical-align: middle;
    display: none;
}
.twitter-follow-button {
    display: none;
    position: fixed !important;
    bottom: 17px;
    left: 45%;
    text-align: center;
}
#close-email-wrapper {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 99;
    bottom: 100px;
    font-size: 25px;
    font-weight: 100;
    cursor: pointer;
}

.addthis-sharing{
    z-index: 99;
    text-align: center;
    margin: 50px;
    display: none;
}
.addthis-sharing__text{
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;
}



@media only screen 
  and (max-device-width: 1024px){
    .playlist-wrapper{
      width: 65%;
    }
    .twitter-follow-button {
      left: 45%;
    }
}

@media only screen 
  and (max-device-width: 768px){
    #logo #install-button{
      width: 97%;
    }
    #logo img{
      width: 100%;
    }
    #player{
      width: 98%;
    }
    #player img{
      width: 30%;
      height: auto;
      max-width: 205px;
    }
    #player .player-song {
      margin-left: 37%;
    }
    .playlist-wrapper{
      width: 75%;
    }
    .jssocials-shares {
      position: relative;
      right: 5px;
    }
    .twitter-follow-button {
      left: 40%;
    }
}
@media only screen 
  and (max-device-width: 575px){
    .playlist-wrapper{
      width: 90%;
    }
    #player img{
      display: none;
    }
    #player .player-song{
      margin-left: 0;
      width: 100%;
      padding: 10px;
    }
    .playlist__item-title{
      width: 280px;
      white-space: normal;
      height: 42px;
    }
    .twitter-follow-button {
    left: 36%;
    bottom: 25px;
    }
}
@media only screen 
  and (max-device-width: 425px){
    .playlist__list-head > span:nth-child(1){
      display: none;
    }
    .playlist__item{
      padding-left: 0;
    }
    .playlist__item-no {
      display: none;
    }
    .playlist__item-img{
      margin-left: 0;
    }
    .playlist__item-title{
      width: 225px;
    }
    .twitter-follow-button {
    left: 33%;
    bottom: 30px;    }
}



/*Authors connect page*/
.button--connect {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 24px;
    padding: 15px 25px;
    border-radius: 35px;
    box-shadow: 3px 3px 6px 0px #ddd;
    color: #757575;
    cursor: pointer;
}

.authorsConnect-wrapper {
  width: 100%;
  min-height: 100vh;
  background-size: cover !important;
  position: relative;
  z-index: 1;
  background: url("") no-repeat center center fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
}

.install-text--authorsConnect{
    color: #000;
    max-width: 620px;
}


