.fh-cookie-location {
    display: block;
}

.fh-cookie-country {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 18px;

    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
}

.fh-cookie-location-text {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
}

.fh-cookie-location-text a {
    color: inherit;
    text-decoration: underline;
}

.fh-cookie-location-divider {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.35);
    margin: 28px 0;
}


/*
 * Keep our custom section consistent with
 * Complianz's own desktop content width.
 */
@media (min-width: 769px) {

    .cmplz-cookiebanner .fh-cookie-location {
        width: calc(var(--cmplz_banner_width) - 42px);
    }

}


/*
 * Country loading spinner.
 */
.fh-country-spinner {
    display: inline-block;

    width: 18px;
    height: 18px;

    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: currentColor;
    border-radius: 50%;

    animation: fh-country-spin 0.7s linear infinite;
}

.fh-country-loading-text {
    font-size: 16px;
}

@keyframes fh-country-spin {

    to {
        transform: rotate(360deg);
    }

}

@media (max-width: 768px) {
    #cmplz-cookiebanner-container .cmplz-cookiebanner {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        padding: 15px 20px;
    }
}