﻿.footer
{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: auto;
}
.footer-left, .footer-right
{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    width: 100%;
    border: none;
}
.footer .footer-left-bg
{
    background: #303030;
    width: 50%;
    display: flex;
    justify-content: end;
}
.footer .footer-right-bg
{
    background: #2d2d2d;
    width: 50%;
    display: flex;
    justify-content: start;
}
.footer .content
{
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #d9d9d9;
    padding: 20px 30px;
}
.footer .footer-right .content
{
    justify-content: space-between;
}
.footer .content span
{
    font-size: 16px;
}
.footer .content span.header
{
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}
.footer-link
{
    font-weight: bold;
    text-decoration: none;
    color: #d9d9d9!important;
}
.footer-link:hover
{
    text-decoration: underline;
    cursor: pointer;
}
.footer .content .info-element
{
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.social-icons
{
    display: flex;
    flex-direction: row;
}
.uo-icons
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.uo-icons .uo-icon
{
    color: #d9d9d9!important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #444;
    margin: 20px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: all .3s ease;
}
.uo-icons .uo-icon span
{
    font-size: 16px;
    width: 160px;
    display: flex;
}
.uo-icons .uo-icon i svg
{
    fill: #d9d9d9;
}
.uo-icons .uo-icon i, .uo-icons .uo-icon span
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
}
.uo-icons .uo-icon:hover
{
    cursor: pointer;
    background-color: #fff;
    color: #18191a!important;
}
.uo-icons .uo-icon:hover svg
{
    fill: #18191a;
}
.copyright-text
{
    margin: 0 20px;
    display: flex;
    flex-direction: column;
}
.copyright-text span
{
    font-size: 12px;
}
@media only screen and (max-width: 1250px)
{
    .uo-icons .uo-icon
    {
        width: 100%;
    }
}
@media only screen and (max-width: 670px)
{
    .footer
    {
        flex-direction: column;
    }
    .footer .footer-left-bg, .footer .footer-right-bg
    {
        width: 100%;
    }
    .footer .content
    {
        padding: 10px;
    }
}