.currency-container {
    display: flex;
    align-items: center;
    padding-left: 35px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.currency-container svg {
    height: 9px;
    width: 15px;
    margin-left: 10px;
}

.currency-list {
    max-height: 376px;
    overflow: auto;
    color: rgb(23, 36, 42);
    background: rgb(255, 255, 255) none repeat scroll 0% 0%;
    width: 100%;
    position: absolute;
    bottom: 2.5em;
    min-width: 210px;
    left: 0px;
}

.currency-symbol {padding-right: 5px;}
.currency-name {text-transform: uppercase;}
.currency-list__name {text-transform: uppercase;}

.currency-list__item {
    position: relative;
    display: flex;
    flex-direction: row;
    -moz-box-align: center;
    align-items: center;
    margin: 40px 0px;
    padding: 0px 25px;
    cursor: pointer;
}

.currency-list__item:hover {font-weight: 600;}

.currency-list__symbol {
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    transition: background 0.25s ease 0s;
    margin-right: 12px;
    font-size: 2.25em;
    line-height: 1;
    border: 2px solid rgb(71, 207, 203);
    color: rgb(71, 207, 203);
}

.currency-list__item:hover .currency-list__symbol {
    color: rgb(255, 255, 255);
    background-color: rgb(71, 207, 203);
}

.currency-list__item-checked .currency-list__symbol {
    color: rgb(255, 255, 255);
    background-color: rgb(71, 207, 203);
}

@media(min-width: 768px) {
    .footer-2 {
        justify-content: flex-start;
    }

    .currency-list {
        width: inherit;
    }
}