@import 'zuck.css';

#showStories{
  cursor: pointer;
  position: fixed;
  right: 0;
  z-index: 13;
  width: 5%;
  max-width: 100px;
  color: white;
  background: linear-gradient(#fc9e4a, #d63996, #8630cf);
  padding: 5px 0 0px 0px;
  text-align: center;
  top: 15%;
  border-radius: 100px 0 0 100px;
}

#showStories #_icoPlus img {
  width: 90%;
}


#showStories:hover #stories{
  transform: translateX(0%);
  opacity: 1;
}

#stories{
  position: fixed;
  top:0;
  right: 0%;
  height: 100vh;
  background: rgba(246,241,65,.95);
  transition: all .5s;
  transform: translateX(100%);
  overflow: scroll;
  padding: 1% 1% 5%;
  opacity: 0;
}

#stories:hover{
  transform: translateX(0%);
}
 

.storiesWrapper {
  padding: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.disclaimer {
  display: block;
  text-decoration: none !important;
  color: #333;
  line-height: 1.5em;
  background: #ffffd2;
  border-radius: 3px;
  margin: 12px 12px 0;
  padding: 12px 12px 12px 74px;
  font-size: 13px;
  max-width: 500px;
  overflow: hidden;
  min-height: 50px;
}
.disclaimer img {
  float: left;
  margin-right: 12px;
  width: 50px;
  position: absolute;
  margin-left: -62px;
}
.disclaimer a {
  color: inherit !important;
  border: 0;
}
.disclaimer p {
  margin: 0;
}
.disclaimer p + p {
  margin-top: 1.25em;
}

.skin {
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  font-size: 16px;
  padding: 12px;
  color: #fff;
  background: #333;
}
.skin select {
  background: #fff;
  font-size: inherit;
  text-transform: none;
  max-width: 30%;
}


@media (min-width: 524px) {
  .disclaimer {
    margin: 12px auto;
  }
}


@media (max-width: 1025px) {

  #showStories{
    width: 70px;
    padding: 5px 3px 0;
    top: 20%;
    border-radius: 100%;
    right: 5px;
  }

  #stories{
    padding: 1% 1% 25%;
  }

  .stories.carousel .story {
    margin: 5px;
  }

}

@media (max-width: 599px){
  .info, .name, .time, .profilePhoto{
    display: none !important;
  }
  #showStories{
    width: 70px;
    padding: 5px 0px 0 0px;
    top: 80%;
    border-radius: 100% 0 0 100%;
    right: 0;
  }
}