﻿/*@charset "UTF-8";*/

/* 사이드바 전체를 설정하는곳 */
.sidenav_gojung {
    height: 88.5vh;
    width: 250px;
    position: absolute;
    z-index: 1;
    top: 64px;
    left: 0px;
    background-color: #f1f1f1;
    overflow-x: hidden;
    /*overflow-y: auto;*/
    overflow-y: hidden;
    margin: 1px;
}


   /* 마우스이동시 색상등 변경하는곳*/ 
    .sidenav_gojung a:hover {
        background-color: #d5d3d3;
        text-decoration:none;
    }
/*상단부 홈 아이콘 설정부분*/
.top-home a {
    background-color: #04AA;
    overflow: auto;
    float: left;
    width: 100%;
    height: 40px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
    
}

/*영업,생산등 변경하는곳 하는곳*/
.sidenav button {
    display: block;
    outline: none;
    font-size: 16px;
    background-color: #f1f1f1;
    border: none;
    text-align: left;
    height: 25px;
    width: 100%;
    font-size: 15px;
    font-weight: 800;
    color: blue;
    cursor: default;
    margin-top: 4px;
    margin-bottom: 0px;
    padding-left: 20px;
    border: 1px solid green; /*주석처리할것*/
}


/*마우스 이동시 버튼포커스*/ 
    .sidenav button:focus {
        /*background-color: red;*/
        outline: none;
    }

.dropdown-btn {
    color:blue;
}

/* 마우스이동시 색상등 변경하는곳*/
    .dropdown-btn span:hover {
        background-color: #ffcc80;
        /*color: #00ff21;*/
        text-decoration: none;
    } 
/*프로그램실행 하단 변경하는곳*/
.dropdown-container a {
    display: block;
    outline: none;
    height: 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f1f1f1;
    color: blue;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
}

ul, #myUL {
    list-style-type: none;
}

#myUL {
    margin: 0;
    padding: 0;
}

.caret {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.caret::before {
    content: "\25B6";
    color: blue;
    display: inline-block;
    margin-right: 6px;
    margin-left: 20px;
    /*font-weight: 100;*/
}


.caret-down::before {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg); 
    transform: rotate(90deg);
}

.nested {
    display: none;
}

.active {
    display: block
}






