:where([class^="ri-"])::before { content: "\f3c2"; }
input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
position: relative;
width: 50px;
height: 26px;
background-color: #e5e7eb;
border-radius: 50px;
cursor: pointer;
transition: background-color 0.3s;
}
input[type="checkbox"]::before {
content: "";
position: absolute;
width: 22px;
height: 22px;
border-radius: 50%;
top: 2px;
left: 2px;
background-color: white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
transition: transform 0.3s;
}
input[type="checkbox"]:checked {
background-color: #0044CC;
}
input[type="checkbox"]:checked::before {
transform: translateX(24px);
}
.news-option {
opacity: 0;
height: 0;
overflow: hidden;
transition: all 0.3s ease;
}
.news-option.active {
opacity: 1;
height: auto;
margin-top: 1rem;
}
.chrome-badge {
transition: transform 0.2s;
}
.chrome-badge:hover {
transform: scale(1.05);
}

.mx-auto {
    margin: unset;
}

footer,
.description {
    width: 100%!important;
    margin: unset
}

.flex-mobile {

    @media only screen and (max-width: 1158px) {
        margin: 0 50px!important;
    }
    @media only screen and (max-width: 1024px) {
        flex-direction: column!important;
        padding-top: 0!important;
    }
}

.mobile-img {
    @media only screen and (max-width: 768px) {
        width: 500px;
    }

    @media only screen and (max-width: 540px) {
        width: 100%!important;
    }
}

.footer-links {
    @media only screen and (max-width: 540px) {
        flex-direction: column!important;
        align-items: center!important;
    }
}