/* Makes the way the boxes are sized more intuitive */
* {box-sizing:border-box}

/* Insert Sofia Sans Font */
@font-face {
    font-family: 'Sofia Sans';
    src: url('files/fonts/Sofia_Sans_Condensed/SofiaSansCondensed-VariableFont_wght.ttf') format('truetype');
}



body {
    font-weight: bold;
  
    text-align: center;
    justify-content: center;
  
    font-family:'Sofia Sans', Times New Roman;
}


iframe.navbar{
    width: 100%;
    height: 70px;  
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #c3111100;
    border-style: none;
}



.manuals_flex{
    position: fixed;
    top: 70px;
    left: 0;

    height: calc(100% - 70px);
    width: 100%;
    background-color: #4b4b4b;

    display: flex;
    flex-flow: row;
    flex: 0 1 auto;
    }
    
    /* inital load -> js */
    .manualsleft_navbar_0{
        flex: 1 1 auto;
            /* 
            The above is shorthand for:
            flex-grow: 1,
            flex-shrink: 1,
            flex-basis: auto
            */
        width: 20%;
        height: 97%;

        padding-left: 1.5%;
        padding-top: 1.5%;
        padding-bottom: 10px;
        padding-right: 0px; 

        

        background-color: #001eff00;

        text-align: center;

        font-size: 225%;
    }


    .manualsleft_controls{
        height: 50px;

        background-color: #626262;
        width: 100%;

        /* top left, top right, bottom right, bottom left */
        border-radius: 25px 25px 0px 0px;

        display: flex;
        flex-direction: row;
        }

        button.autoindex_menu_backward,
        button.autoindex_menu_home_gt1200,
        button.autoindex_menu_home_lt1200,
        button.autoindex_menu_forward{
            font-family:'Sofia Sans', Times New Roman;
            color: white;
            background-color: #04aa6d00;
            font-size: 100%; 
            border-style: none;
            border-radius: 15px;
            text-decoration: none;
            font-weight: bolder;
            width: 33%;
        }

        button.autoindex_menu_home_gt1200{
            padding-top: 10px;
            width: 34%;
        }

        button.autoindex_menu_home_lt1200{
            display: none;
        }

        button.autoindex_menu_backward{
            -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
        }  

        button.autoindex_menu_forward:hover,
        button.autoindex_menu_backward:hover,
        button.autoindex_menu_home_gt1200:hover,
        button.autoindex_menu_home_lt1200:hover{
            background-color: #7ACBF5;
            color: white;
    }


    .manualsleft_menu_0,
    .manualsleft_options_0{
        height: calc(100% - 50px - 50px);
        width: 100%;

        padding-right: 5px;

        background-color: #626262;

        overflow-y: scroll;
        overflow-x: hidden;
        }

        .manualsleft_menu_0{
            display: block;

            /* top left, top right, bottom right, bottom left */
            border-radius: 0px 0px 5px 0px;
        }
        .manualsleft_options_0{
            display: none;

            /* top left, top right, bottom right, bottom left */
            border-radius: 0px 0px 0px 25px;
        }

        .iframezoom{
            display: block;
        }

        a.autoindex_menu_link{
            color: white;
            font-size: 100%; 
            text-decoration: none;
            font-weight: bold;
        }
        a.autoindex_menu_link:hover{
            color: #7ACBF5;
        }


        button.iframe_menu_options{
            font-family:'Sofia Sans', Times New Roman;
            color: white;
            background-color: #04aa6d00;
            font-size: 100%; 
            border-style: none;
            border-radius: 15px;
            font-weight: bold;
        }
        button.iframe_menu_options:hover{
            color: #EAACB8;
            cursor: pointer;
        }
        #iframe_menu_options_standard{
            color: #7ACBF5;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        #iframe_menu_options_standard:hover{
            color: #EAACB8;
    }


    .collapsiblemanuals{
        font-family:'Sofia Sans', Times New Roman; 
        font-size: 75%;
        color: white;
        text-align: center;
        margin: 5px;
        border-radius: 25px;
      
        background-color: #A5A5A5;
        cursor: pointer;
        padding: 18px;
        width: 98%;
        border: none;
        text-align: left;
        }

        .collapsiblemanuals:after {
          content: '\2228';
          color: white;
          float: right;
          margin-left: 5px;
        }
      
        .activemanuals:after {
          content: "\2227";
        }
      
        .contentmanuals {
          font-family:'Sofia Sans', Times New Roman;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.2s ease-out;
          background-color: #c3ff0000;
          border: none;
          font-size: 70%;
    }


    .manualsleft_selector{
        height: 65px;

        width: 100%;

        background-color: rgba(131, 255, 8, 0);

        overflow: hidden;

        font-size: 70%;

        display: flex;
        flex-direction: row;
        }

        .manualsleft_selector_left_0,
        .manualsleft_selector_right_0{
            flex: 50%;
            width: 50%;
            background-color: #626262;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            /* top left, top right, bottom right, bottom left */
            border-radius: 0px 0px 10px 10px;
        }
        .manualsleft_selector_right_0{
            background-color: #62626200;
        }

        .manualsleft_selector_left_0:hover,
        .manualsleft_selector_right_0:hover{
            background-color: #626262;
        }


        button.selectorbutton_left_0,
        button.selectorbutton_right_0{
        font-family:'Sofia Sans', Times New Roman;
        border-style: none;
        font-size: 100%;
        font-weight: bold;
        color: white;
        cursor: pointer;
        background-color: #001eff00;

        width: 100%;
        height: 100%;
        }
        button.selectorbutton_left_0:hover,        
        button.selectorbutton_right_0:hover{
        color: #7ACBF5;
    }


    #manualsleft_menu_0::-webkit-scrollbar,
    #manualsleft_options_0::-webkit-scrollbar{
        width: 12px;
    }
    #manualsleft_menu_0::-webkit-scrollbar-track,
    #manualsleft_options_0::-webkit-scrollbar-track{
        border-radius: 8px;
        background-color: #a5a5a53b;
    }
    #manualsleft_menu_0::-webkit-scrollbar-thumb, 
    #manualsleft_options_0::-webkit-scrollbar-thumb{
        border-radius: 8px;
        background-color: #D2D2D23b;
    }


    /* inital load -> js */
    .manualsright_iframe_0{
        flex: 1 1 auto;
            /* 
            The above is shorthand for:
            flex-grow: 1,
            flex-shrink: 1,
            flex-basis: auto
            */
        width: 80%;
        height: 100%;
        background-color: #c3ff0000;
    }
    iframe.iframestyle{
            width: 97%;
            height: 97%;
            background-color: #ebd9dd;

            zoom: 1.0;

            margin: 2%;

            margin-top: 1.5%;
            margin-bottom: 1.5%;
            margin-right: 2%;
            margin-left: 1%;

            border-radius: 15px;

            border: none;
    }




/* < 1080P */
@media (max-width: 1200px){
    .manualsleft_navbar_0{
        width: 25%;
    }

    .manualsright_iframe_0{
        width: 75%;
    }
}
