html, body {
    padding: 0px;
    margin: 0px;
}

.ga-footer {
    background-color: #000;
    color: white;
    padding: 10px 20px;
   /* padding: 25px 20px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px 40px;
}

.btnCookies{
    cursor: pointer !important;
}

.ga-footer a {
    transition: all 0.3s ease;
}

.ga-footer a:hover {
    opacity: 0.75;
}

.ga-footer .ga-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 35px;
}

.ga-footer .ga-footer-legal a.ga-footer-link{
    font-family: Arial, Helvetica, sans-serif !important;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.ga-footer .ga-footer-icons {
    display: flex;
    justify-content: center;
    gap: 10px 35px;
}

.ga-footer .ga-footer-icons a.ga-footer-icon{
    display: block;
}

.ga-footer .ga-footer-icons a.ga-footer-icon img{
    height: 20px;
}

@media (max-width: 451px) {
    .ga-footer .ga-footer-icons {
        width: 100%;
    }
}