.txt_black{color:#000;}
.font_16{font-size:16px;}
.font_12{font-size:12px;}

button{
  padding: 8px 20px;
  border:none;
  background: #0b2a97;
  color: #fff;
  border-radius: 10px;
}
button:hover{
  background: #082073;
}

input, select{
  padding: 8px 20px;
  border: 1px solid #f0f1f5;
  border-radius: 10px;
}
select{color: #7e7e7e;}

#side_menu{
  position: fixed;
  left:0;
  top:0;
  width:250px;
  height: 100%;
  background: #fff;
  box-shadow: 0px 10px 10px rgba(120, 130, 140, 0.13);
  z-index: 3;
  padding-top: 95px;
  padding-left: 40px;
  transition: .2s;
}
.side_user{margin-bottom: 20px;}
.side_user a{font-size: 32px; margin-right: 20px;}

.tog_menu{
  display: block;
  transition: .2s;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.tog_menu:hover{
  color: #0b2a97;
}
.tog_menu.active{
  background: #0b2a971a;
  border-radius: 10px 0 0 10px;
  color: #0b2a97;
  position: relative;
}
.tog_menu.active::after{
  content:"";
  position: absolute;
  top: 0;
  right:0;
  width: 6px;
  height: 100%;
  background: #0b2a97;
  border-radius: 3px;
}
.sub_menu li{
  padding: 8px 42px;
}
li.active a{
  color: #0b2a97;
}

.side_btn_wrap{position: relative; cursor: pointer;}
.side_btn{
  background: #0b2a97;
  color: #fff;
  padding: 15px 20px;
  width: 60px;
  text-align: center;
  border-radius: 10px;
  display: none;
}
.side_btn.active{
  display: block;
}
.sub_hover_menu{
  padding: 10px; background: #fff;
  position: absolute;
  left: 100%;
  top:0;
  width: 190px;
  display: none;
  border-radius: 6px;
  box-shadow: 0px 0px 4px #eeeeee;
}
.sub_hover_menu li{
  padding: 10px;
}

.side_btn_wrap:hover .sub_hover_menu{
  display: block;
}

.side_logo_wrap{
  position: fixed;
  top:20px;
  left: 30px;
  z-index: 4;
  transition: .2s;
}
.logo_img{height: 45px;}
.logo_text{width: 120px;}
.logo_text.active{display: none;}

.header{
  position: fixed;
  width: calc(100% - 250px);
  top:0;
  right:0;
  background: #fff;
  padding: 20px 30px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .2s;
}
.header_btn_wrap{display: flex; align-items: center;}
.header_btn_wrap a{font-size: 32px; color:#0b2a97; margin-right: 30px;}
.header_btn_wrap span{color: #000; font-size: 28px; font-weight:bold;}

.header_log_wrap{display: flex; align-items: center; flex-wrap: wrap;}
.header_log_wrap a{font-size: 32px; margin-right: 30px; }

.info_change_bg_wrap{
  display: none;
}
.info_change_bg{
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}
.info_change_wrap{
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
}

.info_change_title{
  display: flex;
  justify-content: space-between;
  padding: 16px 30px;
  border-bottom: 1px solid #eee;
  color:#3d4465;
}
.info_change_content{
  padding:38px;
}
.info_input_wrap{
  display: flex;
  align-items: center;
  margin-bottom:16px;
}
.info_input_left{
  width: 30%;
}
.info_input_wrap .input_wrap input{
  padding: 8px 20px;
  border: 1px solid #f0f1f5;
  width: 100%;
  border-radius: 10px;
}
.info_change_btn{
  padding: 30px;
  border-top:1px solid #eee;
  text-align: right;
}
.info_change_btn button.cancle_btn{
  padding: 10px 20px;
  border:none;
  background: #fff3f7;
  color: #f94687;
  border-radius: 10px;
}
.info_change_btn button.cancle_btn:hover{
  background: #f94687;
  color: #fff;
}
#side_menu.active{
  width: 80px;
  padding-left: 10px;
  box-shadow: 0px 100px 10px rgba(120, 130, 140, 0.13);
}
#wrapper.active{
  padding-left: 110px;
}
.side_logo_wrap.active{
  left:15px;
}

.header.active{
  width: calc(100% - 80px);
  padding-left:100px;
}



.space_wrap{
  background: #fff;
  margin-bottom: 30px;
  position: relative;
  border-radius: 1.25rem;
  box-shadow: 0px 12px 23px 0px rgba(160, 44, 250, 0.04);
  padding: 20px;
}

.search_form input, .search_form select{margin-bottom: 4px;}
.search_form a{
  display: inline-block;
  padding: 7px 20px;
  border: 2px solid #c8c8c8;
  color: #696969;
  border-radius: 10px;
  margin-bottom: 4px;
}
.search_form a.color_link{
  border-color: #00105c;
  background: #00105c;
  color: #fff;
}

.table_space{
  width:100%;
  background: #fff;
  margin-bottom: 30px;
  position: relative;
  border-radius: 1.25rem;
  box-shadow: 0px 12px 23px 0px rgba(160, 44, 250, 0.04);
  padding: 20px;
  overflow-x: auto;
}

.link_btn{
  display: inline-block;
  padding: 7px 20px;
  border: 2px solid #0b2a97;
  background: #0b2a97;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 4px;
}
.link_btn:hover{
  color:#fff;
  border: 2px solid #00105c;
  background: #00105c;
}

.header_log_wrap .header_btb{
  display: inline-block;
  padding: 7px 20px;
  border: 2px solid #c8c8c8;
  color: #696969;
  border-radius: 10px;
  font-size: 14px;
}
.header_log_wrap .header_btb.color{
  color:#fff;
  border: 2px solid #00105c;
  background: #00105c;
}

@media (max-width: 900px){
  .info_input_wrap{display: block;}
  .info_input_left{width: 40%;}

  .side_logo_wrap{left: 15px;}
  .logo_text{display: none;}
  .header{padding-left: 30px; width: 100%;}
  .header.active{
    width: 100%;
    padding-left: 30px;
  }
  .header span{display: none;}
  .txt_logo{display: none;}
  .header_log_wrap {
    justify-content: flex-end;
  }
  .header_log_wrap a{
    margin-right: 4px;
  }
  .header_log_wrap .header_btb{
    padding: 2px 6px;
  }
  .header_log_wrap a:last-of-type{margin-right:0;}

  .header_log_wrap_txt{display: none;}
  #wrapper{
    padding: 20px;
    padding-top: 137px;
  }
  #wrapper.active{
    padding-left: 20px;
    padding-top: 137px;
  }
  #side_menu{
    top: 114px;
    height: calc(100% - 85px);
    padding-top: 10px;
  }
  #side_menu.active{
    width: 0px;
    padding:0;
  }
  .side_btn.active{
    display: none;
  }
}
