.container:first-child {
    margin-bottom: 2rem;
}

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

.image {
    height: auto;
    width: 106px;
}

img.status {
    width: 64px;
    height: 64px;
}

img.social {
    width: 32px;
    height: 32px;
}

@media (min-width: 40rem) {
    .padding-xl-lr {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}

.row {
    flex-direction: row !important;
}

.col-3 {
    width: 33.33% !important;
    max-width: 33.33% !important;
}

.col-5 {
    width: 20% !important;
    max-width: 20% !important;
}

.tank-height {
    padding: 0 !important;
    width: 280px;
    height: 280px;
    border: 1px solid;
}

.tank-height div {
    color: #000000;
    height: 100%;
    width: 100%;
    background: #0a9fe2;
}

#share-button {
    cursor: pointer;
}

#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;
}

#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;
    }
}