﻿.ellipsis {
    max-width: 100px;
    width: 80px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.sidebar {
    background-color: #444 !important;
    background-image: none;
}

    .sidebar .nav-item a {
        color: #fff2cc;
    }

    .sidebar .nav-item .btn-link {
        color: #fff2cc;
    }

.navbar-dark .navbar-nav .nav-link {
    color: #fff2cc;
}

.yel_col {
    color: #fff2cc;
}

.sidebar .nav-item:first-of-type {
    padding-top: 0rem;
}

.file-upload {
    font-family: Verdana;
    font-size: 12px
}

/* Removes "No File Chosen" in File Input Control */
input[type='file'] {
    color: transparent;
}

.modal-header {
    background-color: #444;
    color: #fff2cc;
    padding: 1.3rem 2rem;
}

/*.main {
    flex-grow: 1;
    overflow-y: auto;
    background: linear-gradient(rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 80%);
    padding: 1.5rem !important;
}*/

.btn-dark {
    color: #fff;
    background-color: #6c6a6a;
    border-color: #6c6a6a;
}

    .btn-dark:hover {
        color: #fff;
        background-color: #444;
        border-color: #1e1e1e
    }

    .btn-dark.focus, .btn-dark:focus {
        color: #fff;
        background-color: #444;
        border-color: #1e1e1e;
        box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
    }

    .btn-dark.disabled, .btn-dark:disabled {
        color: #fff;
        background-color: #6c6a6a;
        border-color: #6c6a6a
    }

    .btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
        color: #fff;
        background-color: #1e1e1e;
        border-color: #171a1d
    }

        .btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
        }

.btn-outline-dark {
    color: #6c6a6a;
    border-color: #6c6a6a
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #6c6a6a;
        border-color: #6c6a6a
    }

    .btn-outline-dark.focus, .btn-outline-dark:focus {
        box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
    }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        color: #6c6a6a;
        background-color: transparent
    }

    .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark.dropdown-toggle {
        color: #fff;
        background-color: #6c6a6a;
        border-color: #6c6a6a
    }

        .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
        }

.btn-dg {
    color: #fff;
    background-color: #5a5622;
    border-color: #5a5622;
}

    .btn-dg:hover {
        color: #fff;
        background-color: #48441B;
        border-color: #48441B
    }

    .btn-dg.focus, .btn-dg:focus {
        color: #fff;
        background-color: #48441B;
        border-color: #48441B;
        box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
    }

.guideLink_li {
    list-style: none;
}

.guideLink_div {
    height: 100%;
}

.guideLink_a {
    color: #5a5622;
    background-color: #f3f7f8;
    border-radius: 0.3rem;
    padding: 3rem 2rem 2rem;
    width: 100%;
    height: 100%;
    display: block;
}

    .guideLink_a:hover {
        text-decoration: none;
    }

        .guideLink_a:hover h1 {
            text-decoration: underline;
        }

.guideLink_title {
    font-weight: bold;
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
}

.guideLink_img {
    max-width: 100%;
    margin: 0 auto;
}

.guideLink_text {
    color: black;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 22rem;
    text-decoration: none;
}

.et_pb_text {
    /*    color: #5b646f;*/
    line-height: 1.8em;
    color: #444;
}

.title-color {
    /*    color: #595959 !important;*/
    color: #444 !important;
}

.wholeBody {
    background-image: url('../images/homepage-bg.svg');
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: left top;
}

.bg-darkGreen {
    background-color: #444;
    color: #5a5622;
}

.footer {
    flex-shrink: 0;
    background-color: #f4f4f4;
}

.btn:active,
.btn:focus,
.btn:focus:active {
    background-image: none;
    outline: 0;
    box-shadow: none;
}

.rowSelected {
    background-color: #fff2cc !important;
}

/* Spinning in Access For Doctor Page*/
.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.article-table {
    table-layout: fixed;
    width: 100%;
    font-size: 0.9rem;
}

    .article-table tr {
        cursor: pointer;
    }

    .article-table td {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

        .article-table td:hover {
            overflow: visible;
            white-space: normal;
            -ms-word-break: break-all;
            word-break: break-all;
            /* Non standard for webkit*/
            word-break: break-word;
            -webkit-hyphens: auto;
            -moz-hyphens: auto;
            hyphens: auto;
            max-width: 400%;
            width: 400%;
            z-index: 1; /* stack above subsequent cells */
        }

.modal-xlarge {
    width: 90%;
    max-width: 1800px;
}

.examination-container {
    display: flex;
    flex-direction: column;
}

.examination-image-container {
    height: 100%;
    background: #ccc;
    padding: 10px;
    display: flex;
    border-radius: 5px;
}

.examination-image {
    margin: auto;
}
