.options-flex-container{
    display: flex;
    flex-direction: column;
}

.options-flex-container > div{
    margin: auto;
    margin-top: 10px;
    background-color: rgba(127,127,127,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    width: 100%;
    padding: 2px;

    display: flex;
    flex-direction: row;
    align-items: center;
}

.options-flex-container > div:hover{
    transition : background-color 0.3s, box-shadow 0.3s;
    -wekit-transition : background-color 0.3s, box-shadow 0.3s;
    -moz-transition : background-color 0.3s, box-shadow 0.3s;
    background-color: rgba(127,127,127,0.3);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.options-flex-container > div.options-flex-container-div-selected{
    padding: 0px;
    border: 2px solid forestgreen;
}

.options-flex-container > div img{
    height: 3em;
    padding: 8px 10px;
}

.options-flex-container > div span{
    font-size: 1.2em;
    display: block;
}

.bottom-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.button{
    font-size: 1.2em;
    width: 46%;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 10px 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.btn-red-disabled{
    background-color: rgba(255,127,127,0.2);
    color: rgb(127,127,127);
}

.btn-red-enabled{
    background-color: rgb(192,64,64);
    cursor: pointer;
}

.btn-fg-enabled{
    background-color: rgb(64,192,64);
    cursor: pointer;
}

.btn-fg-disabled{
    background-color: rgba(127,255,127,0.2);
    color: rgb(127,127,127);
}

.donate-input{
    background-color: rgba(127,127,127,0.2);
    padding: 10px;
    border: none;
    margin-top: 15px;
    margin-right: 10px;
    color: white;
    border-left: 5px solid forestgreen;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    font-size: 1.2em;
}


@media (min-width: 800px){
    .options-flex-container{
        flex-direction: row;
        justify-content: left;
        width: 100%;
    }
    .options-flex-container > div{
        margin: 10px 10px 0 0;
    }
    .bottom-menu{
        width: 50%;
    }
}
@media (min-width: 958px){
    .options-flex-container{
        width: 95%;
    }
    .options-flex-container > div{
        margin: 10px 20px 0 0;
        width: 30%;
    }
    .bottom-menu{
        width: 35%;
    }
}
@media (min-width: 1366px){
    .options-flex-container{
        width: 70%;
    }
    .bottom-menu{
        width: 20%;
    }
}