﻿.download-information.close{
    opacity: 0;
    height: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.download-information{
    z-index: 9999;
    position: fixed;
    bottom: 25px;
    right: 275px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 250px;
    height: 100px;
    border-radius: 10px;
    background: rgba(255,255,255, 0.9);
}

.download-information-header
{
    padding: 10px 5px 10px 5px;
    margin: 0;
    border-radius: 10px 10px 0px 0px;
    cursor: move;
    height: 45px;
}

.download-information-header span{
    font-size: 15px;
}

.download-information-header-icon{
    padding-top: 2px;
    cursor: pointer;
}

.download-information-body{
    
}

.download-information-body-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
}

.download-information-body-wrap-error {
  position: absolute;
  top: 15px;
  left: 45%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
}


.download-information-body-text {
  display: inline-block;
  margin-left: 5px;
  text-transform: uppercase;
}

.download-information-body-bounceball.close,
.download-information-body-text.close{
    display: none;
}

.download-information-button{
    border-radius: 5px;
    margin-top: 15px;
}

.download-information-button.close{
    display: none;
}

.download-information-body-bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.download-information-body-bounceball:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #79c447;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: bounce 500ms alternate infinite ease;
          animation: bounce 500ms alternate infinite ease;
}

@-webkit-keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}

@keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}
