.find_filter {
    border: 1px solid #ccc;
    border-radius: 30px;
    margin-top: 10px;
    line-height: 30px;
    padding: 0 10px;
}

.find_work_div{
    line-height: 30px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 15px 0 5px;
    height: 32px;
}

.ag-grid-cell-button {
    text-align: center;
    cursor: pointer;
    margin: 5px auto;
    border-radius: 30px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid black;
    background: #222;
    color: #fff;
    letter-spacing: -1px;
}

.ag-grid-cell-button:hover {
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cell-height {
    font-size: 0.9em;
    height: 100%;
    line-height: 100%;
    margin-top: 7px;
}

.ag-grid-button-div {
    width: 100%;
    height: 100%;
}

.ag-header-cell {
    text-align: center;
    background: linear-gradient(to top, #c2dfff 0%, #e7f0fd 100%);
    /* background: linear-gradient(to top, #b4b4b4 0%, #e2e2e2 100%); */
    color: black;
}

.ag-header-cell-label {
    justify-content: center;
}
.ag-cell-value{
    text-align: center;
}

.ag-grid-cell-button-yn{
    text-align: center;
    cursor: pointer;
    margin: 5px auto;
    border-radius: 8px;
    width: 60%;
    height: calc(100% - 10px);
    border: 1px solid blue;
    background: blue;
    color: #fff;
    letter-spacing: -1px;
}

.ag-grid-cell-button-delete{
    text-align: center;
    cursor: pointer;
    margin: 5px auto;
    border-radius: 8px;
    width: 60%;
    height: calc(100% - 10px);
    border: 1px solid red;
    background: red;
    color: #fff;
    letter-spacing: -1px;
}

.ag-grid-cell-button-yn:hover {
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.ag-grid-cell-button-delete:hover {
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.checked{
    border: 1px solid rgb(100, 100, 100);
    background: rgb(100, 100, 100);
}

.ag-header-cell-menu-button{
    display: none;
}

/* 탭 메뉴 */
.tab_class{
	width: 100%;
    max-width: 960px;
	margin: 5px 5px;
}

ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.tabs li{
	background: none;
	color: gray;
	display: inline-block;
	padding: 20px 45px;
	cursor: pointer;
}

ul.tabs li.current{
	border: 3px solid #e4e148;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 5px;
    background: white;
}

.tab_content{
    overflow: auto;
    width: 100%;
    max-width: 960px;
    height: 100%;
    margin: 0 5px;
	display: none;
    vertical-align: top;
}

.current_tab{
    align-items: flex-start;
}

.gird_plus{
    margin-top: 10px;
    padding: 5px;
    margin-right: 7%;
    float: right;
    border: 1px solid green;
    background-color: green;
    color: white;
    border-radius: 8px;
    width: 10%;
    text-align: center;
    cursor: pointer;
}

.save_rows{
    border: 1px solid blue;
    background-color: blue;
}

@media screen and (max-width: 800px){
    .gird_plus{
        margin-right: 0;
    }
}