body {
    background: #aaa !important;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
}

.jumbotron {
    padding: 2em;
}
#convert {
    display: block;
}

.result {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.icon-result {
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 5px;
    justify-content: space-evenly;
    align-items: center;
    height: 90px;
    scroll-margin-block: 0;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;

    .icon-result-title {
        overflow: hidden;
        font-size: 11px;
    }

    .icon-result-image {
        img {
            width: 35px;
            height: 35px;
        }
    }
}

.icon-result:hover {
    background-color: #eee;
}

.result {
    .card {
        min-width: 300px;
        flex: 1;

        .icon-image {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding-top: 20px;

            svg {
                max-height: 150px;
                padding: 20px;
            }
        }
    }
}

.select2-results__options {
    display: grid;
    height: auto;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}
.select2-results__option {
    padding: 0;
}
.select2-results__option .select2-results__option--highlighted {
    background-color: #eee;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eee;
    color: black;

}
.select2-container--default .select2-results >.select2-results__options {
    max-height: 50vh;
}
.select2-selection.select2-selection--single {
    height: 60px;
    font-size: 44px;
    text-align: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 58px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 13px 9px 0 9px;
    height: 0;
    left: -47%;
    margin-left: 0;
    margin-top: 0px;
    position: absolute;
    top: 100%;
    width: 0;
}

.select2-search--dropdown .select2-search__field {
    font-size: 26px;
    text-align: center;
    padding: 5px 0;
    margin: 10px 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 9px 13px 9px;
}