#download-app {
  display: none;
}

@media (max-width: 767px) {
  #download-app {
    display: block;
  }
}

.download-app {
  width: calc(100% - 32px);
  position: fixed;
  z-index: 0;
  bottom: 0;
  background: white;
  transition: 0.55s ease-in-out;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 16px;
  transform: translate(0, 100%);

  span.close-download-app {
    width: 34px;
    height: 34px;
    background: url(../images/caricon-close.svg) no-repeat 0 0;
    background-size: contain;
    position: absolute;
    top: 16px;
    margin: auto;

    [dir="ltr"] & {
      right: 16px;
    }
    [dir="rtl"] & {
      left: 16px;
    }
  }

  .icon-stars {
    display: block;
    height: 15px;
    background: url(../images/carstar.svg);
    background-size: contain;
    color: #fad800;

    [dir="ltr"] & {
      margin-right: 0;
    }
    [dir="rtl"] & {
      margin-left: 0;
      transform: scaleX(-1);
    }
  }

  .download-link img {
    display: block;
    margin: auto;
  }

  img.Gosellcar-logo {
    height: 45px;
    width: 45px;
    border-radius: 6px;

    [dir="ltr"] & {
      margin: 0 10px;
    }

    [dir="rtl"] & {
      margin-left: 10px;
    }
  }

  .Gosellcar-app-info {
    display: flex;
    justify-content: flex-start;
    margin: 6px 0;
  }

  &.active {
    transform: translate(0, 0);
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
  }
}

#download-app-appstore {
  .icon-stars {
    width: 69px; // Represents 4,6 stars in iOS app store
  }
}

#download-app-google {
  .icon-stars {
    width: 66px; // Represents 4,4 stars in Play store
  }
}

.download-app .icon-stars {
    display: block;
    height: 15px;
    background: url(../images/carstar.svg);
    background-size: contain;
    color: #fad800;
}

.download-app .Gosellcar-app-info {
    display: flex;
    justify-content: flex-start;
    margin: 6px 0;
}

.download-app img.Gosellcar-logo {
    height: 45px;
    width: 45px;
    border-radius: 6px;
}

.download-app img.Gosellcar-logo {
    margin: 0 10px;
}

.download-app {
    width: 100%;
    position: fixed;
    z-index: 200;
    bottom: 0;
    background: white;
    transition: 0.55s ease-in-out;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 16px;
    transform: translate(0, 100%);
}

.download-app.active {
    transform: translate(0, 0);
    box-shadow: 0px 0 10px rgb(0 0 0 / 80%);
}

.download-app span.close-download-app {
    width: 34px;
    height: 34px;
    background: url(../images/caricon-close.svg) no-repeat 0 0;
    background-size: contain;
    position: absolute;
    top: 16px;
    margin: auto;
}

.download-app span.close-download-app {
    right: 16px;
}
