.banner-image-container {
    width: 300px;
    text-align: center;
    position: relative;
}

.banner-image-container>div {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
    -webkit-animation-name: costable;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-name: costable;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.banner-image-container img {
    max-width: 100%;
}

@keyframes costable {
    0% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@-webkit-keyframes costable {
    0% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

.co-table {
    margin-bottom: 1rem;
    width: 100%;
    font-size: 14px;
}

.co-table tr td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}