/* 
@font-face {
  font-family: 'SpoqaHanSansNeo-Regular';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SpoqaHanSansNeo-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
/*
@font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-Thin.otf) format('opentype');
 	font-weight: 100;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-ExtraLight.otf) format('opentype');
 	font-weight: 200;
}


 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-Light.otf) format('opentype');
 	font-weight: 300;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-Regular.otf) format('opentype');
 	font-weight: 400;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-Medium.otf) format('opentype');
 	font-weight: 500;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-SemiBold.otf) format('opentype');
 	font-weight: 600;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-Bold.otf) format('opentype');
 	font-weight: 700;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-ExtraBold.otf) format('opentype');
 	font-weight: 800;
}

 @font-face {
  font-family: 'SUIT';
 	src: url(./font/suit/SUIT-Heavy.otf) format('opentype');
 	font-weight: 900;
}*/



@font-face {
  font-family: 'paybooc';
 	src: url(../component/fonts/paybooc/paybooc-Light.otf) format('opentype');
 	font-weight: 300;
}

 @font-face {
  font-family: 'paybooc';
 	src: url(../component/fonts/paybooc/paybooc-Medium.otf) format('opentype');
 	font-weight: 400;
}


 @font-face {
  font-family: 'paybooc';
 	src: url(../component/fonts/paybooc/paybooc-Bold.otf) format('opentype');
 	font-weight: 500;
}

 @font-face {
  font-family: 'paybooc';
 	src: url(../component/fonts/paybooc/paybooc-ExtraBold.otf) format('opentype');
 	font-weight: 600;
}


*{margin: 0; padding: 0;
  font-family: 'paybooc', sans-serif;
  color: #3d3d3d;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  }
.dx-overlay-wrapper input, .dx-overlay-wrapper textarea{
	font-family: 'paybooc', sans-serif !important;
}

.dx-searchbox .dx-placeholder::before, .dx-searchbox .dx-texteditor-input {
	font-family: 'paybooc', sans-serif !important;
}

.dx-texteditor-input {
	font-family: 'paybooc', sans-serif !important;
}

.dx-texteditor.dx-state-active.dx-editor-filled,
.dx-texteditor.dx-state-active.dx-editor-outlined,
.dx-texteditor.dx-state-active.dx-editor-underlined,
.dx-texteditor.dx-state-focused.dx-editor-filled,
 .dx-texteditor.dx-state-focused.dx-editor-outlined,
.dx-texteditor.dx-state-focused.dx-editor-underlined {
 /* border-width: 2px !important;*/
}

a {
  text-decoration: none;
  color: #3d3d3d;
}
ul, li {
  list-style: none;
}

button{
  border: none;
    background: none;
    border: 1px solid #c1c1c1;
    /* padding: 10px 30px; */
    /* font-size: 18px; */
    font-size: 16px;
		cursor: pointer;
		display: inline-block;
}


h2{
  font-size: 32px;
}

.inner {
  width: 100%;
  margin: 0;
}

.subLink a{
}

.b-wrap{
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

.logo {

	height: 50px;
}
.logo img{
	width:80%;
	height: 100%;
	object-fit: contain;
}

.nav_pc{
  display: none;
}

.nav_pc li{
  position: relative;
}

#header-subdiv{
  background-color: white;
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
}
	
/*
로고 이미지
#logo{
  width: 300px; 
  height: 88px;
  padding: 16px 410px 16px 40px;
}
*/
	
/* 모바일 네비 */	
/* 햄버거 아이콘 */	

.menuBack.opacity{
	top: 0;
    position: absolute;
    width: 100%;
    height: 300%;
    background: black;
    z-index: 99;
    opacity: 0.8;
}
.hamburger-menu {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  z-index: 999;
  height: 62px;
  width: 60px;
}

.hamburger-menu.open{
	position: absolute;
	width: 56px;
	top: 0;
    align-items: center;
	left: 10px;
	display: none;
	position: fixed;
}

.hamburger-menu span {
  width: 35px;
  height: 2px;
  background-color: black;
  position: absolute;
  margin-right: 10px;
  transition: .4s ease-in-out;
}

/* 햄버거 닫혔을 때 */	
.hamburger-menu span:nth-child(1) {
  top: 15px;
}
.hamburger-menu span:nth-child(2) {
  top: 30px;
}
.hamburger-menu span:nth-child(3) {
  top: 45px;
}

/* 햄버거 열렸을 때 */	
.hamburger-menu.open span:nth-child(1) {
	background-color: #fff;
  top: 30px;
  transform: rotate(135deg);
}
.hamburger-menu.open span:nth-child(2) {
	background-color: #fff;
  opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
	background-color: #fff;
  top: 30px;
  transform: rotate(-135deg);
}


/* 메뉴 */	
#menu-container{
	
}
	

#treeview{
	padding: 10px 10px !important;
}

.dx-treeview-item{
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	font-size: 1.1rem;
    padding: 15px 15px !important;
}

.dx-treeview-item-content{
	
}
.dx-treeview-item .dx-treeview-item-content span{
	
}

.dx-treeview-toggle-item-visibility.dx-treeview-toggle-item-visibility-opened::before,
.dx-treeview-toggle-item-visibility::before {
	top: 78% !important;
    font-size: 40px;
}


#menu-container .menu-list {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	position: fixed;
	width: 80%;
  background: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  height: 100vh;
  /*background: #181818;*/
  right:0;
  border-radius: 50px 0px 0px 0px;
  display: none;
  top: 0;
}
	

.dx-treeview-node {
    padding-left: 24px !important;
}
/* 메인 메뉴 */
.accordion-toggle {
  display: flex;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: black;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.accordion-toggle a{
  color: black;
  position: relative;
  padding: 35px 35px;
}


.rightContainer {
    border-radius: 10px;
    width: 100%;
    position: relative;
    padding: 25px;
	margin-left: 10px;
}

header{
  /*order-bottom: 1px solid #ddd;*/
/*  padding: 20px 0 0 0;*/
}

.subMenu{
  position: absolute;
  background: #fff;
  line-height: 30px;
  /* padding: 8px 12px 6px 12px; */
  left: 50%;
  translate: -50%;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.06);
  z-index: 9;
  width:170px
}

.subMenu ul{
  flex-direction: column;
}

.subMenu>ul>li{
  padding: 0 !important;
  width: 100%;
  margin-right: 0 !important;
}

.subMenu a{
  display: block;
  padding: 8px 12px 6px 12px;
  font-size: 14px;
}

.subMenu a:hover{
  background: #f2f2f2
}

.dropdown {
  cursor: pointer;
}


.dropdown.closed .subMenu{
  height: 0;
 
  
}

.headerF{
	display: flex;
	justify-content: space-between;
}
#userW{
	display: flex;
    align-items: center;
}

#userW > div{
	display: flex;
	align-items: center;
}
.userName{
	font-size: 1rem;
	display: inline-block;
}

#userImg{
	width: 60px;
	border-radius: 50%;
}

#userImg> img{
	width: 100%;
}
.userName>span{
font-size: 1rem;
font-weight: 500;
}

.userW2{
	display: flex;
    flex-direction: column;
	margin-left: 10px;
}

.mobile_logout{
	border: none !important;
	font-size: 0.9rem !important;
	margin-top: 2px !important;
	padding: 0 !important;
	text-align: left !important;
}

#notice, #logout, #myPage{
    font-size: 0.9rem;
    border: none;
	border:1px solid #ddd;
	border-radius: 50px;
	padding: 8px 15px;
}

#logout, #myPage{
	margin-left: 5px;
}
/* 모바일네비 */
#m_header{
	display: none;
}

.titleWrap {
	/*padding: 65px 0;*/
/*	text-align: center;*/
	/*border-bottom: 1px solid #ddd;*/
/*	background: url("/resources/img/bg-visual-02.jpg") no-repeat;
	background: linear-gradient(#f9efea, #e5e9f6);
	background: #edf0f2;*/
/*	background: #edf0f2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;*/
	background: linear-gradient(#f9efea, #e5e9f6);
	background: url("/resources/img/back.jpg") no-repeat;
	overflow: hidden;
    position: relative;
    width: 100%;
    height: 175px;
    letter-spacing: -1px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    background-size: cover;
	border-radius: 20px 50px 20px 50px;
	width: 295px;

}


.flexWrap{
	display: flex;
	flex-direction: column;
	
}

#title {
	color: #fff;
    padding: 49px 0 0 0;
    line-height: 110%;
    font-size: 1.8rem;
    font-weight: 500;
	
}

.titleWrap p {
    letter-spacing: 0;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
	font-size: 0.9rem;
}

#title:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin: 14px auto 14px;
	transform: rotate(45deg);
	background: #ffbd14;
}

#noBackTit{
	margin-bottom: 10px;
}
.pageTitleWrap {
    display: block;
    position: relative;
    padding-bottom: 10em;
}

.pageTitleWrap{
    border-radius: 2.5em 0 0 0;
    background: linear-gradient(90deg, rgba(0, 122, 183, 0.05) 0%, rgb(229 230 255) 100%);
    z-index: -1;
	position: relative;
    left: 25rem;
}

#background{
	overflow: hidden;
}
h3{
	padding-bottom: 8px;
	    border-bottom: 1px solid #ddd;
}

h3 strong {
    display: block;
    position: relative;
    font-size: 1.5em;
    line-height: 1.3em;
    color: #222;
	font-weight: 600;
}

.count , .name{
	font-size: 0.9rem;
	/* line-height: 1.3em; */
	color: #222;
	font-weight: 400;
}

.name{
	color: #474be6;
	font-weight: 500;
}

#subtitle{
	margin-top: 13px;
    font-size: 17px;
}

/*#title::after {
	content: "";
	position: absolute;
	bottom: 4px;
	content: "";
	position: absolute;
	right: -10px;
	width: 7px;
	height: 7px;
	background: #4549e6;
}*/

.tit {
	font-size: 1.2rem;
	
	position: relative;
	font-weight: 500;
	display: block;
}

.listWrap {
	/*	background: #f4f4f4;*/
	/*border: 1px solid #ddd;
    padding: 10px;*/
	
}

.listTit {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 22px 22px 0 22px;
}

.w500{
	font-weight: 500;
}

.dx-button[title="새로고침"] {
    border: 1px solid #959595 !important;
    border-radius: 50%;
}
/* 탭메뉴 */
.tabcont {
  display: none;
}

.tabcont.active {
  display: block;
}

#tab1, #tab2, #tab3, #tab4, .tab{
  margin-bottom: 60px;
}




  .subBanner{
  position: relative;
}
 .subBanner-container {
  width: 100%;
  background-image: url('../img/title.jpg');
  background-repeat: repeat-x;
  background-position: center center;
  position: relative;
  height: 210px;
  background-size: cover;
  filter: brightness(0.6);
  display: flex;
  align-items: center;
} 

.subBanner h3 {
  padding-top: 15px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  position: relative;
  transform: translateY(-50%);
    position: absolute;
    z-index: 9;
    width: 100%;
    top: 50%;
}

.subBanner h3::before {
  content: '';
  width: 35px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-19px);
}

.lnb {
  width: 100%;
  height: 50px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #bebebe;
}
.moreViewContent {
    display: block;
    margin-top: 10px !important;
    height: 300px;
    overflow-y: scroll;
}
.listContent {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    margin: 8px 0;
}
.lnbList {
  display: flex;
}
.moreViewTit {
    font-size: 1.1rem;
}
.listTit {
    font-weight: 500;
}
.listDate {
    /* margin-left: auto; */
    color: #474be6;
    font-size: 0.8rem;
}

.lnbList li a {
  display: block;
  line-height: 49px;
  text-align: center;
  border-left: 1px solid #bebebe;
  font-size: 16px;
  font-weight: 500;
}

.lnbList li a:last-child{
  border-right:1px solid #bebebe
}

.lnbList li.active a {
  height: 50px;
  background-color: #fff;
}

.contTop {
  padding: 60px 0 50px 0;
  position: relative;
}
.breadcrumb {
  margin-bottom: 15px;
}

.breadcrumb span {
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  color: #3d3d3d;
  position: relative;
}

.breadcrumb span:nth-child(2)::before, .breadcrumb span:nth-child(3)::before {
  display: inline-block;
  content: '>';
  font-size: 15px;
  color: #3d3d3d;
  margin: 0 15px;
}

.contTop h4 {
  font-size: 35px;
  font-weight: bold;
}

footer{
	/*margin-top: 45px;*/
	border-top: 1px solid #ddd;
	background:#f8f8f8;
  padding: 36px 0;
  color:  #3d3d3d;
  font-size: 14px;
  line-height: 23px;
}

#footerLogo{
	width: 155px;
}


footer>div>div{
	display: flex;
}
.copyright{
  display: flex;
  align-items: center;
  gap: 15px;
}

.footerLogo {
  margin-bottom: 10px;
  font-size: 23px;
  color: #3d3d3d;
  display: block;
}

.footerInfo{
  margin-left: 25px;
}

#nav-icon3{
    display: none;
  }

  .nav_pc{
/*    display: block;
	border-top: 1px solid #ddd;
    padding: 20px 0;
	border-bottom: 1px solid #ddd;*/
	display: block;
    position: relative;
    background: #fff;
    height: 3.5em;
    box-shadow: 5px 0px 15px 0px rgba(0, 0, 0, 0.03);
    padding: 0 1em;
	display: flex;
	align-items: center;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-size: 1.05rem;
   
  }

  .nav_pc ul{
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
	
    /*justify-content: end;*/
  }


  .nav_pc ul li{
    text-align: center;
	font-weight: 500;
	
	/*background: url("/resources/img/line.jpg") no-repeat 0 50%;*/
	margin-right:60px
	
}

.nav_pc ul li:first-child{
	background: none;
}

  

  .nav_pc>ul>li>a{
    display: block;
    padding-bottom: 2px;
    font-size: 16px;
    position: relative;
   
}

.nav_pc a:hover{

}

  .b-wrap{
    box-sizing: border-box;
	margin: 10px 0;
}
  .inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
  }

  .inner1100{
	max-width: 1050px;
	margin: 0 auto;
    position: relative;
  }


  .logo {
    
}


.searchForm{
	display: inline-block;
    position: relative;
    /* width: 100%; */
    height: 40px;
    padding: 0 20px !important;
    /*border: 3px solid #474be6;*/
    background: #fff;
    /* font-size: 0; */
    line-height: 0;
    vertical-align: top;
	width: 340px;
	border-radius: 9px;
}

.subTitWrap{
	margin: 0 !important;
	padding:0 !important;
	border: none !important;

}

#selectBtn{
	border-radius: 35px;
	    /* width: 90px; */
	    /* position: relative; */
	    /* left: -45px; */
	    /* background: linear-gradient(0.25turn, rgba(16, 185, 209, 1) 0%, rgb(71 75 230)); */
	    padding: 3px 2px;
	    border: none;
	    /* width: 100px; */
	    background: #474be6;
	    border-radius: 9px;
		margin-left: 5px;
}

.searchForm .dx-texteditor-input {
	padding: 0 !important;
	font-family: 'paybooc', sans-serif !important;
	font-size: 1rem;
}

.searchForm .dx-placeholder {
	font-size: 1rem;
}
.searchForm .dx-placeholder::before {
    padding: 7px 9px 8px 0 !important;
}

#selectBtn span{
	color: #fff;
	font-size: 1rem;
}
/*돋보기*/
/*.dx-texteditor-container {
	overflow: unset !important;
}
.dx-toolbar-item-content > .dx-texteditor{
	border-radius: 30px !important;
}

.dx-searchbox .dx-placeholder::before, .dx-searchbox .dx-texteditor-input {
    padding-left: 16px !important;
}

.dx-searchbox .dx-icon-search {
	background: #474be6 !important;
	border-radius: 50% !important;
	right:-1px !important;
	display: flex !important;
    align-items: center !important;
    justify-content: center !important;
	
}

.dx-searchbox .dx-icon-search{
	margin-top: -19px !important;
    width: 38px !important;
    height: 38px !important;
}

.dx-searchbox .dx-icon-search::before {
    color: #fff !important;
}

.dx-searchbox .dx-icon-search {
	font-size: 19px !important;
}

.dx-texteditor-buttons-container{
	display: none !important;
}
.dx-texteditor.dx-state-active.dx-editor-filled,
.dx-texteditor.dx-state-active.dx-editor-outlined,
.dx-texteditor.dx-state-active.dx-editor-underlined,
.dx-texteditor.dx-state-focused.dx-editor-filled,
.dx-texteditor.dx-state-focused.dx-editor-outlined,
.dx-texteditor.dx-state-focused.dx-editor-underlined {
  border-color: #474be6 !important;
  border-width: 2px;

}

.dx-treelist-rowsview .dx-treelist-empty-space {
	display: none !important;
}*/

#scList .dx-searchbox .dx-placeholder::before, .dx-searchbox .dx-texteditor-input,
#repList .dx-searchbox .dx-placeholder::before, .dx-searchbox .dx-texteditor-input {
    padding: 10px 10px 10px 34px;
}

.dx-searchbox .dx-placeholder::before, .dx-searchbox .dx-texteditor-input {
   font-size: 15px;
}


#scList .dx-texteditor.dx-editor-outlined, #repList .dx-texteditor.dx-editor-outlined{
	border-radius: 15px !important;
	border:none !important;
	background-color: #f8f8f8 !important;
}

#scList .dx-treelist-header-panel .dx-toolbar, #repList .dx-datagrid-header-panel .dx-toolbar{
	margin-bottom: 0 !important;
	padding-left: 22px;

}

#repList .dx-treelist-header-panel .dx-toolbar, #repList .dx-datagrid-header-panel .dx-toolbar{
	padding: 0 22px;
}

#scList .dx-treelist-rowsview.dx-treelist-nowrap .dx-treelist-table .dx-treelist-cell-expandable .dx-treelist-text-content,
#repList .dx-treelist-rowsview.dx-treelist-nowrap .dx-treelist-table .dx-treelist-cell-expandable .dx-treelist-text-content {
 
}

.dx-treelist-header-panel{

}

.dx-treelist-headers {
	
}


.dx-treelist-rowsview.dx-treelist-nowrap .dx-treelist-table .dx-datagrid-cell-expandable .dx-datagrid-text-content{
	font-size: 1rem;
}

.dx-selection{
	/*border-left:4px solid #4549e6 !important;*/
	background: #ECF4FF !important;
}

.dx-popup-wrapper .dx-calendar .dx-calendar-caption-button,
.dx-calendar-navigator-previous-month.dx-button, .dx-calendar-navigator-previous-view.dx-button,
.dx-calendar-navigator-next-month.dx-button, .dx-calendar-navigator-next-view.dx-button{
 	border: none !important;
}

.dx-calendar-cell.dx-calendar-selected-date, .dx-calendar-cell.dx-calendar-selected-date.dx-calendar-today {
	box-shadow: unset !important;
	background-color: #4549e6 !important;
	
}

.dx-calendar-cell.dx-calendar-today{
	background-color: #f4f4f4 !important;
}
.dx-calendar-cell {
	font-size: unset !important;
}

.dx-calendar-cell.dx-calendar-selected-date.dx-calendar-contoured-date, .dx-calendar-cell.dx-calendar-selected-date.dx-calendar-today.dx-calendar-contoured-date span,
.dx-calendar-cell.dx-calendar-selected-date.dx-calendar-contoured-date span
{
	color: #fff !important;
}

.dx-calendar-cell.dx-calendar-other-view{
    color: rgba(0, 0, 0, .38) !important;
}

/*.dx-state-active, .dx-state-focused{
	background: #fff !important;
}*/

#repList .dx-datagrid-headers, #scList .dx-treelist-headers{
	margin-top: 10px !important;
}
.red{
	color: red;
	font-size: 13px;
    font-weight: 400;
}

div[aria-label="저장"]>div,div[aria-label="등록"]>div{
	background-color: #4549e6 !important;
	border:1px solid #4549e6
}
div[aria-label="저장"] span,div[aria-label="등록"] span{
	color:#fff 
	
}

div[aria-label="닫기"]>div{
	border:1px solid #4549e6
}

div[aria-label="닫기"] span{
	color:#4549e6 

}

.dx-overlay-shader {
    pointer-events: auto;
    background-color: rgb(96 96 96 / 80%) !important;
}

.boxS{
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	border-radius: 20px 50px 20px 20px;
	overflow: hidden;
}

table{
/*	border-collapse: separate !important;
	border-spacing: 0px 10px !important;*/
}

#scList tbody td[role="columnheader"],
#repList tbody td[role="columnheader"]{
	border-bottom: 0 !important;
	padding-left: 22px !important;
}
td{
	
}
/*td:first-child,
th:first-child{
	border-radius: 10px 0 0 10px; 
}

td:last-child,
th:last-child{
	border-radius:  0 10px 10px 0; 
}
*/

#scList tbody td:first-child,
#repList tbody td:first-child {
   padding: 15px 0px 15px 22px !important;
}

#scList tbody td:last-child,
#repList tbody td:last-child {
	padding: 15px 22px 15px 0px !important;
}
.dx-treelist-headers, #repList .dx-datagrid-headers{
	border-radius: 10px;
    /*background: #00a66a;*/
	/*border: 2px solid #f17b27 !important;*/
	border:none !important;
    padding-right: 0px;
}

.dx-sort{
	color: #474be6 !important;
}

.dx-command-edit{
	text-align: right !important;
}
#scList, #repList {
	margin-top: 15px !important;
}

#scList .dx-header-row .dx-text-content-alignment-left{
	color: #474be6 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

#repList .dx-header-row > td > .dx-datagrid-text-content{
	color: #474be6 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

.dx-treelist-rowsview .dx-treelist-table-fixed .dx-treelist-icon-container{
	display: none;
}

.notificationButton{
	margin-left: auto;
	border: none !important;
}
.notificationButton path{

}

.notificationButton span{
	border-radius: 50%;
    background: red;
    color: #fff;
    padding: 5px;
    font-weight: 500;
    font-size: 10px;
    position: relative;
    top: -10px;
    left: -10px;
}

.notificationButton svg {
	width: 25px !important;
	height: 25px !important;
	position: relative !important;
	top: 2px !important;
}

.fa-phone path{
	color: #fff;
}




@media screen and (max-width: 767px) {
	html{
		font-size: 14px;
	}
  /** Mobile */
  #pc_header{
	display: none;
  }
  #m_header{
	display: block;
	left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
  }
  
  .header_flex{
	display: flex;
	align-items: center;
  }
  
  #goLogin{
	width: 30px;
	height: 30px;
	cursor: pointer;
	margin-right: 10px;
  }
  
  #goLogin a{
	width: 100%;
	display: block;
  }
  
  #goLogin img{
	width: 100%;
  }
  .userName>span {
	font-size: 1.2rem;
  }
  #userW{
	margin-top: 10px;
	padding: 0 14px;
	border-bottom: 1px solid #ddd;
	    padding: 18px 14px;
  }
  footer{
	padding: 20px 10px 10px 10px;
  }
  
  footer>div>div{
	    flex-direction: column;
	    align-items: center;
  }
  .copyright{
	flex-direction: column;
  }
  
  #footerLogo {
      width: 130px;
  }
  
  .footerInfo{
	font-size: 0.9rem;
	margin-left: 0;
	margin-top: 20px;
	text-align: center;
  }
  

