.toast_container {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

.toast_title {
    width: 100%;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.toast_horizontal_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#toast-container {
    background-color: #303131 !important;;
}

.toast-info {
    background-color: #303131 !important;;
}

#toast-container > .toast-info {
    background-image: none !important;
}

.toast_score_horizontal_row {
    width: 100%;
    justify-content: center;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    margin-bottom: auto;
    margin-top: auto;
    display: flex;
    flex-direction: row;
}

.toast_row_left_child {
    width: calc(100% / 3);
    text-align: left;
    vertical-align: top;
    align-content: center;
}

.toast_row_center_child {
    width: calc(100% / 3);
    vertical-align: top;
    position: relative;
    text-align: center;
}

.toast_row_right_child {
    width: calc(100% / 3);
    height: 100%;
    vertical-align: center;
    text-align: end;
    align-content: end;
}

.toast_team_logo {
    background: white;
    border-radius: 8px;
    padding: 4px;
    width: 5vmin;
    margin-top: auto;
    min-height: 40px;
    min-width: 40px;
    align-self: center;
    margin-right: 8px;
    height: 5vmin;
}

.toast_team_name {
    text-align: center;
    width: 100%;
    color: #EEEEEE;
    font-weight: bold;
    font-size: 1vmin;
}

.toast_goal_scored {
    color: #9ACCFA;
    font-size: xx-large;
    font-weight: bolder;
}

.toast_goal_not_scored {
    color: #EEEEEE;
    font-weight: bolder;
    font-size: xx-large;
}

.toast_seperator_scored {
    color: #EEEEEE;
    margin-left: 8px;
    margin-right: 8px;
    font-weight: bolder;
    font-size: xx-large;
}

.toast_type_label {
    text-align: center;
    margin-top: 16px;
    color: #9ACCFA;

}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

