#credit-balance {
    display: flex;
    flex-direction: column;
}

.wagers-modal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    height: 200px;
    padding: 10px;
    position: absolute;
    left: 22%;
    z-index: 3;
    overflow: hidden;
    background-color: rgba(0,0,0,0.8);
    color: #e7e7e7;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #999;
    border-radius: 2px;
}

.wagers-modal .close {
    height: 0;
    position: relative;
    bottom: 10px;
    left: 3px;
    cursor: pointer;
    font-size: 10px;
    align-self: flex-end;
}

.wagers-modal h3 {
    color: #f0f8ff;
}

.wagers-modal #bet {
    font-weight: bold;
    text-align: center;
}

.wagers-modal#insuff-modal {
    justify-content: flex-start;
}

.wagers-modal#insuff-modal p {
    margin-top: 45px;
}

.wagers-modal#insuff-modal a {
    color: #7494c3;
}

