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

.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:  
    #333;
}
.popver-close:before {
  transform: rotate(45deg);
  left: 3px;
}
.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: 30px;}
}

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