  .demo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(247,187,151, .4) 30%, rgba(221,94,137, 1) 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: inset 0px 15px 17px -12px rgb(0 0 0 / 26%), inset 0px -15px 16px -12px rgb(0 0 0 / 26%);
}
  }
  .demo__header {
    //height: 6rem;
    //background: #002942;
  }
  .demo__content {
    /*overflow: hidden;*/
    margin-bottom: 50px;
    padding-top: 4.5rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .demo__card-cont {
    position: relative;
    width: 320px;
    height: 465px;
    margin: 0 auto 20px;
  }
  .demo__card {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  .demo__card.reset {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
  .demo__card.reset .demo__card__choice {
    transition: opacity 0.3s;
    opacity: 0 !important;
  }
  .demo__card.inactive {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .demo__card.to-left {
    -webkit-transform: translateX(-30rem) rotate(-30deg) !important;
            transform: translateX(-30rem) rotate(-30deg) !important;
  }
  .demo__card.to-right {
    -webkit-transform: translate(30rem) rotate(30deg) !important;
            transform: translate(30rem) rotate(30deg) !important;
  }
  .demo__card.below {
    z-index: 1;
  }
  .demo__card__top {
    border-radius: 10px;
    height: 97%;
    box-shadow: 0px 8px 31px -17px #000;
  }
  .demo__card__top.purple {
    background-image: url('../images/portraits/small/galleri/JoelS/bild-2.jpg');
    background-size: cover;
  }
  .demo__card__top.indigo {
    background-image: url('../images/portraits/small/galleri/RobinS/DSCF2019.jpg');
    background-size: cover;
  }
  .demo__card__top.blue {
    background-image: url('../images/portraits/small/galleri/PeterA/small.jpg');
    background-size: cover;
  }


  .demo__card__bottom{
      position: absolute;
      bottom: 10px;
      width: 90%;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
  }

  .demo__card__bottom h4{
    margin-top: 6px;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 1px;
  }

  .demo__card__img {
    overflow: hidden;
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 0.5rem solid #ffffff;
    background-image: url("//s3-us-west-2.amazonaws.com/s.cdpn.io/142996/profile/profile-512_5.jpg");
    background-size: cover;
  }
  .demo__card__name {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
  }
  .demo__card__we {
    text-align: center;
    font-size: 2.2rem;
    line-height: 11.5rem;
  }
  .demo__card__choice {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .demo__card__choice:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/TinderfotografenLogo/6.TF_Symbol_White.png');
    background-size: cover;
    width: 100px;
    height: 100px;

  }
  .demo__card__choice:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -2rem;
  }
  .demo__card__choice.m--reject {
    background: linear-gradient(225deg, #ff8642, #f84e6d 80%, #f84e6d);
  }
  .demo__card__choice.m--like {
    background: linear-gradient(225deg, #ff8642, #f84e6d 80%, #f84e6d);
  }
  .demo__card__choice.m--like:after {
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
  }
  .demo__card__drag {
    z-index: 5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .demo__tip {
    text-align: center;
    font-size: 2.2rem;
  }


  .dotted-nav{
      width: 25%;
      height: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex; 
      align-items: center;
      position: absolute;
      justify-content: space-around;
      opacity: 0;
      z-index: 99;
  }

  .dots{
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 50%;
    display: inline-block;
    background: rgba(255, 134, 66, .5);  
    transition: all 250ms ease;
  }

  .active-dots{
    background: rgba(248, 78, 109, 1);
    width: 25px;
    height: 25px;
  }
/*
  @media screen and (max-width: 980px){

    .demo__card__top.purple{
      background-image: url(../images/portraits/small/DSCF9202.jpg);
    }

    .demo__card__top.indigo{
      background-image: url(../images/portraits/small/DSC_8452.jpg);
    }

    .demo__card__top.blue{
      background-image: url(../images/portraits/small/DSCF5956.jpg);
    }

    .dotted-nav{
      opacity: 1;
    }

  }
  */