/* Minification failed. Returning unminified contents.
(255,7): run-time error CSS1030: Expected identifier, found ' '
 */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */

    background-color: #474e5d;

    margin-bottom: 60px;
    overflow-y: scroll;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.control-label {
    font-weight: 500;
}


/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Override the default bootstrap color for nav-tabs 
*/
/*.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
    border-color: #d45500;
    border-bottom-color: transparent;
}

.nav-tabs {
    border-top: 1px solid #d45500;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 100%;
}*/

/*input {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}*/

form .error {
    color: #ff0000
}

label.error {
    padding-left: 16px;
    margin-left: .3em;
}

ul.no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.centered {
    display: flex; /*https://stackoverflow.com/questions/5703552/how-can-i-center-text-horizontally-and-vertically-inside-a-div-block*/
    justify-content: center;
    align-items: center;
}

.move-left {
    width: auto;
    box-shadow: none;
}

.ui-autocomplete .ui-menu-item {
    /*font-size: xx-small;*/
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.box {
    /*background: #333;*/
    color: #fff;
    text-align: center;
    position: absolute;
    /*padding: 20px;*/
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

hr {
    margin-top: -5px;
}
/*footer {
    position: absolute;
    bottom: 40px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 30px;
}*/

.roundtrip-msg {
    color: green;
}


.responsive {
    max-width: 100%;
    height: auto;
}

.img-centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 5px;
    border: 1px solid #c3cfd3;
}

.mce-content-body p img {
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;
    border: 1px solid #c3cfd3;
}

.article-content {
    margin-top: 10px;
}

.article-metadata {
    margin-top: 10px;
}

#ContainerMain table {
    margin-bottom: 15px;
}

    #ContainerMain table tr td {
        padding-left: 5px;
        padding-right: 5px;
    }

#ContainerLink table {
    margin-bottom: 15px;
}

    #ContainerLink table tr td {
        padding-left: 5px;
        padding-right: 5px;
    }

#ContainerMedia p img {
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;
    border: 1px solid #c3cfd3;
}


.noborder th {
    border: none !important;
}

#tableArticleList {
    overflow: auto;
}

/**********************************BEGIN mobbile phone screens****************************/
/*@media screen and (max-device-width:320px) {

    .nav .nav-item .nav-link {
        font-size: medium;
    }
}*/
/**********************************END mobbile phone screens****************************/


/**********************************BEGIN Modal Print****************************/
/*source: https://stackoverflow.com/questions/12181760/twitter-bootstrap-print-content-of-modal-window*/
/*@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    body * {
        visibility: hidden;
    }

    #printSection, #printSection * {
        visibility: visible;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
    }
}
*/
/**********************************END  Modal Print****************************/

/**********************************BEGIN Responsive Image****************************/
#responsive {
    width: 100%;
    height: auto;
}
/**********************************END Responsive Image****************************/


/**********************************BEGIN Accordian*********************************/
/*Source: https://codepen.io/masudrana2779/pen/QWbqjvX*/
#accordion .collapsing {
    transition: height 1s ease-in-out;
}

[data-toggle="collapse"] .fa:before {
    content: "\f139";
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f13a";
}
/**********************************END Accordian*********************************/

/**********************************BEGIN Timeline*********************************/
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_timeline 
/* The actual timeline (the vertical ruler) */
* {
    box-sizing: border-box;
}

/* Set a background color */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #474e5d;
}

    /* The actual timeline (the vertical ruler) */
    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: white;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }

/* Container around content */
.timelineContainer {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

    /* The circles on the timeline */
.timelineContainer::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -16px;
}

/* The actual content */
.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timelineContainer {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timelineContainer::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
        left: 15px;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }

    /* The actual content */
    .content {
        padding: 10px 10px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        font-size: small;
    }
}
/**********************************END Timeline*********************************/
/*Move checkbox left*/
.move-left {
    width: auto;
    box-shadow: none;
}

select.form-control {
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    -ms-appearance: menulist !important;
    -o-appearance: menulist !important;
    appearance: menulist !important;
}

.hiddenRow {
    padding: 0 !important;
}

.logo {
    content: url('https://docket.myidea.law/images/Idea_Logo.svg') !important;
}

@media screen and (min-width: 768px) {
    .logo {
        content: url('https://docket.myidea.law/images/Idea_Logo_75x22.svg') !important;
    }
}

/*https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_dropdown_multilevel_css&stacked=h*/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/*https://gosnippets.com/snippets/bootstrap-4-accordion-with-chevron-up-and-down*/
.accordion-icon[aria-expanded="false"] .fa-angle-down {
    transform: rotate(0deg);
    transition: 0.5s;
}

.accordion-icon[aria-expanded="true"] .fa-angle-down {
    transform: rotate(180deg);
    transition: 0.5s;
}
