
a{
    color: #000000;
    text-decoration: none;
}
#footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: calc(var(--padding) * 2);
    align-items: center;
}

.footer-columns{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;

}
.footer-col{
    width: 24.8%;
    max-width: 24.8%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.footer-title{
    padding-left: var(--padding);
    margin-bottom: 0.75rem;
}

.footer-element{
    padding-left: var(--padding);
    padding-bottom: 0.20rem;
    font-size: var(--font-size-small);
    width: fit-content;
}

.footer-button{
    cursor: pointer;
    text-underline-offset: var(--underline-offset);
}

.footer-element:hover{
    text-decoration-line: underline;
}
.footer-email:hover{
    text-decoration: none;
}
.footer-email:hover a{
    text-decoration-line: underline;
}

#credits{

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: var(--font-size-extra-small);
    width: var(--padded-width);
    padding: var(--padding);

}
#credits-left{
    display: flex;
    flex-direction: column;
    height: fit-content;
}

#copyright{
    margin-bottom: 0.25rem;
}

#credits-right{
    display: flex;
    flex-direction: column;
    height: fit-content;
}
#footer-currency{
    display: none;
}


#credits-right .language-dropdown{
	flex-direction: column-reverse;
}
#credits-right .language-dropdown.open {
	.main-arrow{
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
        }
}



@media only screen and (max-width: 1025px) {
    #footer {
        width: 100%;
        max-width: 100%;
    }
    .footer-columns{
        width: 100%;
        flex-direction: column;
        align-content: start;
    }
    .footer-col{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    .footer-title{
        font-size: var(--font-size-small);
    }
    #credits{
        width: var(--padded-width);
    }

    #credits-right .language-dropdown{
	    flex-direction: column-reverse;
    }
    #credits-right .language-dropdown.open {
	.main-arrow{
		transform: rotate(90deg);                                            -webkit-transform: rotate(90deg);
	}
}
}
