.popover{
    background: #fff;
    max-width: 18rem;
    padding: 1.5rem;
    color: #000;
}
.popover__header {
    margin-bottom: .5rem;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    
}
.popover__header img{
    margin-right: 0.6rem;
    max-width: 2rem;
}
.popover__header span{
    margin-right: .5rem;
}
.popover__header i{margin-right:.5rem;font-weight:100;font-size:1.5rem;color:#444;}
.popover__content{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.popover__content--desc{
    font-size:1.6rem;
    font-weight:400;
    text-align: left;
}
#page_end section .popover__content--desc p{
    font-size: 14px;
    line-height: 21px;
}
.popover__content--img{
    flex:1;
    text-align: right;
    flex-basis: 8rem;
}
.popover__content--img img{
    margin-top: 2px;
    max-width: 3rem;
}
.popover__content strong{
    font-size: 14px;
}.popover__content strong span{display:inline-block;min-width:.75rem}
.popover--hightlight{
    font-size: 14px;
    font-weight: bold;
}
.block__download-number{
    position: fixed;
    bottom: -160px;
    box-shadow: 1px 5px 10px #8787871f;
    z-index: 2147483640;
}

.popver-close{
    position: absolute;
    right: 12px;
    top: 12px;
    width: 10px;
    height: 10px;
    opacity: 0.8;
    cursor: pointer;
    display: block;
}
.popver-close:hover {
  opacity: 1;
}
.popver-close:before, .popver-close:after {
    position: absolute;
    content: ' ';
    height: 14px;
    width: 1px;
    background-color: #000;
}
.popver-close:before {
  transform: rotate(45deg);
}
.popver-close:after {
  transform: rotate(-45deg);
}


.animate-move-up{
    animation-name: moveup;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.animate-move-down{
    animation-name: movedown;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes moveup{
    0% {bottom: -160px;}
    50% {bottom: 24px;}
    70% {bottom: 24px;}
    100% {bottom: 21px;}
}

@keyframes movedown{
    0% {bottom: 21px;}
    100% {bottom: -160px;}
}

.popover--icon {
    max-width: 1.5rem;
    margin-right: 1rem;
}