@charset "UTF-8";

.element__wrapper {
    margin: 10px auto;
    display: block;
    width: 100%;
    color: #000;
    text-decoration: none;
}

@media screen and (min-width: 480px) {
    .element__wrapper {
        margin: 16px auto;
    }
}

.element__wrapper:first-of-type {
    margin-top: 0;
}

.element__wrapper:last-of-type {
    margin-bottom: 0;
}

.element__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    background-color: var(--theme-color);
}

@media screen and (min-width: 480px) {
    .element__top {
        border-radius: 5px 5px 0 0;
    }
}

a.element__top {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #fff;
}

a.element__top i.fa-circle-info::before {
    display: inline-block;
    text-decoration-line: none;
}

.element__bottom {
    padding: 10px;
}

@media screen and (min-width: 480px) {
    .element__bottom {
        border: 2px dotted var(--theme-color);
        border-top: none;
        border-radius: 0 0 5px 5px;
    }
}
