/*
* Waardetest
*/

.waardetest-outer {
    width: 300px;
    height: 200px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #000;
    padding: 40px 20px 20px;
    z-index: 99999;
    transition: transform 0.6s ease-in-out;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
}
.is-closed .waardetest-close {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 9999;
    color: #000;
}
.waardetest-close a{
    color: black;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 25px;
    height: 20px;
    transform: rotate(135deg);
    transition: transform 0.5s ease-in-out;
    transform-origin: center 75%;
}

.waardetest-inner h4 {
    position: absolute;
    top: 40px;
    left: 0;
    transition: top 0.75s ease;
    color: #000;
    width: 100%;
    line-height: 30px;
}

.waardetest-inner p{
    margin-top: 40px;
}
.waardetest-outer.is-closed{
    transform: translateY(75%);
}
.is-closed .waardetest-inner h4{
    top: 10px;
}
.is-closed .waardetest-close a{
    transform: rotate(0);
}
.waardetest-outer.is-open{
    transform: translateY(0);
}