/*does the Model container*/
.model_level_0_container {
    overflow: auto;
    height: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: textfield;
}

.model_HierarchyConatiner {
    /*	border: 1px solid red;*/
    padding-top: 10px;
    padding-bottom: 10px;
    font: bold 16px Arial, Helvetica, sans-serif;
    color: #020242;
    text-align: center; /*This centers the divs within it*/
}

.model_Hierarchy {
    display: inline-block; /*This places the div in a row*/
}

.model_HierarchyMake a, .model_HierarchyLine a, .model_HierarchyYear a {
    text-decoration: underline;
    cursor: pointer; /*Mouse becomes hand when hovering*/
    color: #020242;
}

.model_level_1_container {
    /*border: 2px solid green;*/
    position: relative;
    width: 100%;
    overflow: auto;
    display: block;
}

.model_level_2_container {
    /*Need width and margin set to center the div within*/
    /*Can be max-width but this is handled in the js file so all
    control for width is done there. JS overrides CSS. Once you make a JS
    change, CSS cannot change it, even in media queries
    Because I want these centered and I have no idea how many columns there
    could be, I had to handle resizing in javaScript for this div*/
    width: 1050px; /*Need to set to a width to get to center*/
    margin: 0 auto; /*This centers everything in it*/
    padding: 0;
    overflow: auto;
    display: block;
}

.model_main_container {
    border: 5px solid blue;
}

.model_header {
    background-color: #e0e9f5;
    text-align: center;
    font: bold 15px Arial, Helvetica, sans-serif;
    padding: 5px;
    border-radius: 10px;

}

.model_container {
    /*border: 1px solid black;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.model_Sub_container {
    align-self: flex-start;
    /*align-self: auto;*/
    margin: 10px;
    min-width: 500px;
    max-width: 500px;
    border: 2px solid #e0e9f5;
    border-radius: 10px;
    /*font: bold 12px Arial, Helvetica, sans-serif;*/
    font: bold 14px Arial, Helvetica, sans-serif;
    color: #020242;
    text-align: left;
}
.model_Sub_container a {
    text-decoration: none;
    color: #020242;
}


.model_Name {
    padding: 5px;
    border-bottom: 1px solid #e0e9f5;
    font: bold 14px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.model_Name a {
    text-decoration: none;
    color: #020242;
}

.model_Name:hover {
    background-color: #e0e9f5;
}

@media screen and (max-width: 1050px) {
    .model_container, .model_Sub_container {
        /*Have to reset the min/max setings */
        min-width: initial;
        max-width: initial;
        width: 100%;
    }

    .model_Sub_container {
        margin: 10px 0 0 0;
    }

    .model_header {
        margin-top: 10px;
    }

    .model_header_1 {
        margin: 0;
    }

}
@media screen and (max-width: 700px) {
    #mnHLSM_MenuBar_Items_ContactUs{
        display: none !important;
    }
}


