/*
The footer credits part stylesheet
*/

.ft_credits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.ft_credits p {
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}
.ft_credits img {
    width: 60px;
    padding: .5rem 0;
}
.ft_flag {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 48px;
    width: 50px;
    position: relative;
}
.ft_credits svg {
    width: 50px;
    height: 25px;
    position: absolute;
}
.ft_credits svg:first-child {
    top: 0;
}
.ft_credits svg:last-child {
    bottom: 0;
}