html,
body {
    min-height: 100%;
}

.btn.btn-light,
.content-bordered,
.btn-light.disabled {
    border: 1px solid #ced4da !important;
}

.content-bordered {
    border-radius: 5px;
}

.btn-round.btn {
    border-radius: 9999px;
}

.btn {
    color: #004996;
}

.btn.btn-light {
    color: #004996;
}

.btn:hover:not([disabled]),
textarea:focus {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(119, 148, 176, 1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(119, 148, 176, 1);
    box-shadow: 0px 0px 8px 0px rgba(119, 148, 176, 1);
}

.icon-right {
    margin-left: 5px;
}

.vdatetime-input {
    width: 100%;
}

.container,
.container-fluid {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: white;
}

.hoverable {
    cursor: pointer !important;
    z-index: 10;
}

.status-in-progress,
button.status-in-progress,
button.status-in-progress>span {
    background-color: lightgreen;
    color: green;
    border: none !important;
}

.mobile .status-in-progress {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-unstarted,
button.status-unstarted,
button.status-unstarted>span {
    background-color: #ffe3b0;
    color: orange;
    border: none !important;
}

.status-complete,
button.status-complete,
button.status-complete>span {
    background-color: grey;
    color: white;
    border: none !important;
}

[class*="status"] {
    border-radius: 5px;
    padding: 4px;
    border: none;
}

.bounce-enter-active {
    animation: bounce-in 0.5s;
}

.bounce-leave-active {
    animation: bounce-in 0.5s reverse;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.expand-enter-active {
    animation: bounce-in 0.5s;
}

.bounce-leave-active {
    animation: bounce-in 0.5s reverse;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.expand-transition {
    transition: all .3s ease;
    height: 30px;
    padding: 10px;
    background-color: #eee;
    overflow: hidden;
}

/* .expand-enter defines the starting state for entering */
/* .expand-leave defines the ending state for leaving */
.expand-enter,
.expand-leave {
    height: 0;
    padding: 0 10px;
    opacity: 0;
}

.circle {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.currentRate {
    color: #006400;
}


.vessel-name {
    color: #004996;
    font-size: 16px;
}

.title-text {
    font-weight: bold;
    color: #004996;
    font-size: 12px;
}


.nav-tabs {
    border: none !important;
}

.nav-link {
    outline: 0px transparent !important;
}

.nav-link.active {
    border: none !important;
    border-bottom: 4px solid #004996 !important;
    color: #004996 !important;
}

.nav-link:not(.active) {
    border: none !important;
    color: #608ebd !important;
}

.nav-link.disabled {
    color: #d2d2d2 !important;
}

#message-part-wrapper .chat {
    min-height: 300px;
    max-height: 600px;
}

#message-part-wrapper-mobile .chat {
    max-height: 400px;
    margin-top: 0.5rem;
}

#message-part-wrapper-mobile .chat-wrapper {
    height: 400px;
}

.inline-chat {
    height: 150px !important;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.icon-shake {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) infinite;
}

.bid-rate {
    color: #006400;
    font-weight: bold;
}

.bid-vessel-name {
    color: #004996;
    font-weight: bold;
}

.auction-activity {
    color: orange;
}