@charset "utf-8";
.blog_twoside{
    display:flex;
    justify-content:space-between;
}

.blog_table{
    width:100%;
    border-width: 0;
}
  
.blog_table td{
    line-height: 2em;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}
  
.blog_table tr:nth-child(odd){
    background-color: #eeeeee;
}
  
.blog_table tr:nth-child(even){
    background-color: #e0e0e0;
}

.blog_editor{
    z-index:999;
    position: fixed;
    top: 100%;
    padding: 10px;
    text-align: center;
    left: 0;
    width:100%;
    background-color: lightgray;
    transform:translate(0,-100%);
    display: flex;
    justify-content: space-between;
}

.blog_editor2{
    padding: 10px;
    text-align: center;
    left: 0;
    width:100%;
    background-color: lightgray;
    display: flex;
    justify-content: space-between;
}

.blog_editor_wrap{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog_footer{
    position: fixed;
    top:100%;
    left:0;
    width:100%;
    background-color: lightgray;
    transform: translate(0,-100%);
    text-align:center;
    padding: 10px;
}

textarea{
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    resize: none;
    flex:1;
}

.file_btn{
    z-index: 999;
    position: fixed;
    top:50%;
    left:100%;
    transform: translate(-100%,-50%);
}

.column-flex{
    display:flex;
    flex-direction:column;
}

.half-with-border{
    width:48%;
    margin:1%
}

img { max-width: 100%; height: auto; width: auto; width: auto; }
