﻿.widgetsParent {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

.widget {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 400px;
}

.widget__header {
    display: flex;
    align-items: center;
    color: var(--fontColor1);
}

.widget__content {
    padding: 10px 0;
}

.widget__content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.widget__content ul li {
    list-style: none;
    width: 100%;
    border-bottom: 2px solid var(--fontColor1);
}

.widget__content ul li a {
    text-decoration: none;
    padding: 10px 5px;
    color: var(--fontColor1);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    transition: .3s;
}

.widget__content ul li a:hover {
    background-color: var(--backgroundColor2);
    color: var(--fontColor2);
}

.widget__footer {
    display: flex;
    align-items: ce;
}

.widget__footer a {
    color: var(--corLogo);
    text-decoration: underline 1px solid transparent;
    transition: .3s;
}

.widget__footer a:hover {
    text-decoration: underline 1px solid var(--corLogo);
}

@media (max-width: 968px) {
    .widget {
        min-width: 200px;
        flex: 1;
    }
}
