.card-header {
    /* background-color: #f1f1f1!important; */
    background-color: black!important;
}

.navbar-burger {
    width: 4.125rem;
    height: 4.125rem;
}

.card-header-title {
    color: #fff!important;
}

.icon {
    width: 3.125rem;
    height: 3.125rem;
}

.icon img {
    max-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
}

.container {
    padding: 16px;
    margin-top: 16px!important;
}

.flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
}

.text-center {
    text-align: center;
}

form {
    margin-top: 16px;
    margin-bottom: 16px;
}

.form-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button {
    width: 100%;
}

input {
    font-size: 16px;
    padding: 8px 16px;
}

.pokemon__image_wrapper {
    width: 100px;
    height: 100px;
}

.pokemon__image {
    width: 100%;
    height: 100%;
}

.characteristics__image {
    float: left;
    margin-right: 16px;
    width: 50px;
}

.characteristics__large_text {
    font-size: 18px;
}

.header__tag {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    border-radius: 4px;
}

.hoverable_list {
    list-style: none!important;
    margin: 0!important;
    padding: 0!important;
}

.hoverable_list li {
    padding: 16px;
    border-bottom: 1px solid #ddd;
    margin-top: 0!important;
}

.hoverable_list li:hover {
    background-color: #f5f5f5;
}

.no-padding {
    padding: 0!important;
}

.friend__image {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.online {
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    margin: 5px;
}

.offline {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin: 5px;
}

.friend_name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 2px solid #f3f3f3!important;
    /* Light grey */
    border-top: 2px solid black!important;
    /* Blue */
}

#otismom {
    max-width: 150px;
}

.about-me-wrapper * {
    padding: 16px;
}

@media screen and (min-width: 500px) {
    .button {
        width: auto;
    }
    input {
        width: 80%!important;
        margin-right: 10px;
    }
    .form-flex {
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .button {
        width: auto;
    }
    input {
        width: 40%!important;
        margin-right: 10px;
    }
    .form-flex {
        flex-direction: row;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        width: 90%;
        margin: auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 870px) {
    .pokemon__image_wrapper {
        width: 80px;
        height: 80px;
    }
}