.accept-my-cookie {
    box-sizing: border-box;
    background-color: #000000;
    padding: 15px 30px;
    color: #fff;
    font-size: 1em;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    animation-duration: 0.8s;
    animation-name: slideUp;
    z-index: 9999;
    line-height: 1.5em;
    width: 100%;
    float: none;
    clear: both;
}

.accept-my-cookie .link-accept {
    background-color: #fcc000; /* SolarWorld yellow */
    text-transform: uppercase;
    color: #000;
    font-size: 1em;
    font-weight: bold;
    padding: 3px 10px;
    cursor: pointer;
    display: block;
    line-height: 1.5em;
    text-align: center;
}

.accept-my-cookie .info-text {
    line-height: 1.5em;
    padding: 3px 0px 3px 0px;
}

.accept-my-cookie .link-more-info {
    color: #fcc000; /* SolarWorld yellow */
    text-decoration: none;
    transition: color 200ms ease 0s;
}

@media (min-width: 768px) {
    .accept-my-cookie .info-text {
        float: left;
        width: calc(100% - 210px);
        padding: 3px 10px 3px 0px;
        margin: 0;
    }



    .accept-my-cookie .link-accept {
        width: 180px;
        float: right;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(66px);
    }
    100% {
        transform: translateY(0px);
    }
}