:root {
    --make_FontColor: #020242;
}

/*Starts line container*/
#man_level_0_container {
    overflow: auto;
    height: 100%;
}

/*This is for the number boxes*/
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;
}

.man_level_1_container {
    /*border: 2px solid green;*/
    position: relative;
    width: 99%;
    margin: 0 auto; /*This centers everything in it*/
    overflow: auto;
    justify-content: center;
    display: inline-block;
}

.man_level_2_container {
    width: 99%;
    margin: 0 auto; /*This centers everything in it*/
    padding: 0;
    overflow: auto;
    display: block;
}

#man_main_container {
    margin: 0 auto; /*This centers everything in it*/
    max-width: 1125px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.man_container {
    align-self: flex-start;
    margin: 10px;
    min-width: 200px;
    max-width: 200px;
    border: 2px solid #e0e9f5;
    border-radius: 10px;
    font: bold 14px Arial, Helvetica, sans-serif;
    color: var(--make_FontColor);
    text-align: center;
    cursor: pointer;

}

.man_Name {
    padding: 5px;
    background-color: #e0e9f5;
    font: bold 16px Arial, Helvetica, sans-serif;
}

.man_Name a {
    text-decoration: none;
    color: var(--make_FontColor);
}

.man_Line_Container {
    display: none;
}

.man_Line {
    margin: 5px;
    height: 25px;
    border-bottom: 1px solid #e0e9f5;
    padding-top: 5px;
}

.man_Line_Container a {
    text-decoration: none;
    color: var(--make_FontColor);
}

.man_Line:hover {
    background-color: #e0e9f5;
}
@media screen and (max-width: 700px) {
    #mnHLSM_MenuBar_Items_ContactUs{
        display: none !important;
    }
}


@media screen and (max-width: 480px) {
    .man_container {
        /*Have to reset the min/max settings */
        min-width: initial;
        max-width: initial;
        width: 93%;
    }
}

