.consent-parent {
    position: relative;
}

.consent-wrapper {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: 100%;
    background: #4D9BCA;
    /* padding: 15px; */
    border-radius: 5px;
    box-shadow: 1px 7px 14px -5px rgb(0 0 0 / 15%);
    text-align: center;
    z-index: 999;
}

.consent-wrapper.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #FCBA7F;
}

.consent-wrapper img {
    max-width: 90px;
}

.consent-content header {
    font-size: 25px;
    font-weight: 600;
}

.consent-content {
    margin-top: 10px;
}

.consent-content p {
    padding-left: 15%;
    padding-right: 15%;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 5px 0 20px 0;
    text-align: left;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .consent-content p {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.consent-content p a {
    color: #daedb2 ;
}

.consent-content p a:hover {
    color: #bbca99;
}