.marketing {
    margin-bottom: 1.5rem;
    text-align: center;
}

.divider{
    height:3rem;
}

.cookie{
	width: calc(100vw - 2rem);
    position: fixed;
    bottom: 1rem;
    left:1.2rem;
    background-color: #7064fc;
    opacity:0.95;
    border-radius:1rem;

    padding:1rem;
    z-index:9;
}

.cookie #text{
    font-weight:bold;
	float: left;
    color: rgb(241, 241, 241);
    position:relative;
    top:50%;
    transform: translateY(-50%);
}
.cookie #text a{
    color: rgb(241, 241, 241);
}

.cookie #close{
    font-weight:bold;
    color: rgb(241, 241, 241);
    position:relative;
    float:right;
    top:50%;
    transform: translateY(-50%);
}

.cookie .accept {
    background-color: #40CC79;
    color: #fff !important;
    border-radius: 32px;
    padding: 3px 23px;
    font-size: 19px;

}
.cookie .accept:hover {
	background-color: #30b867;
}

.fadeout {
    animation: fadeOut 1s forwards;
  }
  @keyframes fadeOut {
    0% {
      opacity: 0.95;
    }
    100% {
      opacity: 0;
    }
  }

  @media only screen and (max-width: 768px) {
    .chart {
        display:none;
    }
  }