@charset "utf-8";
@import "base.css";
@import "header.css";
@import "aside.css";
@import "pageHandBook.css";
@import "biz.css";

.showCell {
  background: white;
  border-right: 1px solid #e2e2e2 !important;
  border-bottom: 1px solid #e2e2e2 !important;
}

#top{
	position: fixed;
    /* right: 30px; */
    bottom: 30px;
    width: 48px;
    height: 48px;
    border: 1px solid #999;
    border-radius: 100%;
    display: none;
    cursor: pointer;
    box-sizing: border-box;
    background-color: white;
}

@media (max-width: 1400px) {
  #top{
    right: 0px;
  }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  #top{
    margin-left: 93%;
  }
}

@media (min-width: 1601px) and (max-width: 1800px) {
  #top{
    margin-left: 88%;
  }
}

@media (min-width: 1801px){
  #top{
    margin-left: 84%;
  }
}

.top-action{
	display: block !important;
}
/**
	메인화면
**/

.mainResour {
	width: 100%;
	height: 100%;
	background: #F4F4F4;
}

.main-welcome {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.main-welcome h3 {
	color: #F88E00;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 10px;
}

.main-welcome p {
	font-size: 13px;
	text-align: center;
}

ul.menu-intro {
    margin: 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: stretch;
    border-radius: 6px;
    background: var(--white-color);
}

ul.menu-intro li {
	width: 295px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

ul.menu-intro li div {
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

ul.menu-intro li img {
	display: inline-block;
	padding-bottom: 20px;
}

ul.menu-intro li a{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

ul.menu-intro li p {
	padding: 0 25px;
	font-size: 13px;
	line-height: 20px;
	word-break: keep-all;
}

ul.menu-intro li:nth-child(2) div,{
	border-left: 1px solid #E8E8E8;
	border-right: 1px solid #E8E8E8;
}

ul.menu-intro li p span {
	color:#F88E00;
	display: block;
}


/**
	경로
**/
.process {
  padding: 13px 0;
}
.process > span {
  display: inline-block;
  padding-right: 5px;
  color: #707070a8;
  height: 17px;
}
.arrow {
  position: relative;
  width: 12px;
}
.arrow:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 0;
  height: 0;
  border: 6px solid #a1a1a1;
  border-color: transparent transparent transparent #a1a1a1;
}

/**
	타이틀 박스
**/
.title-box {
  background-color: #f3f3f3;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.title-box > div {
	display: flex;
	align-items: center;
}

.title-box > div > span {
  font-size: 22px;
  font-weight: bold;
  color: #707070;
  margin-left: 10px;
}

/**
    footer
**/

.footer-inner {
  clear: both;
  margin-top: 50px !important;
  /* border-top: 1px solid var(--blue-color-50); */
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 230px;
  margin-right: 40px;
}

.footer-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-info p {
  letter-spacing: -0.05em;
  color: #63707c;
  font-size: 13px;
}

.grid-title{
	display: flex;
	flex-direction: row;
	margin: 10px 0;
	flex: 0 0 100%;
	justify-content: space-between;
}

.grid-title p{
	background: green;
	color: white;
	padding: 10px;
	border-radius: 5px;
}

.noRow {
	margin-top: 40px;
}

.btn {
display: inline-block;
font-weight: 400;
color: #fff;
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: gray;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* 2022-04-05 우리관리 추가요청 사항 */
@media print {
	.wrap { 
	display:none;
	}
}

.message-box{
	border: 1px solid #eee;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 1px 1px rgb(0 0 0 / 10%);
}

p#message{
	margin-bottom: 10px;
	font-weight: bold;
}

p#message-sub{
	margin-bottom: 10px;
	font-weight: bold;
}

.d-inline-flex{
	display: inline-flex;
}
.d-inline-flex svg{
	margin-top: 2px;
}


.mt-1{
	margin-top: 1rem;
}

.text-center{
	text-align: center;
}

.bg-selected{
	background-color: rgba(136, 208, 172, 0.3) !important;
}

.bg-noChoose{
	background-color: rgba(66,66,66, 0.3) !important;
}


.m-pointer {
	cursor: pointer;
}

.site-txt{
	font-size: 14px;
    color: #ccc;
    margin-bottom: 0.5rem;
    text-align: center;
    word-break: keep-all;
}

.hover-shadow:hover {
	box-shadow: 2px 2px rgb(127 127 127 / 30%);
}


.ag-header-cell.rowspan-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
}
.ag-header-cell.rowspan-header::after {
    content: "" !important;
    flex-grow: 1 !important;
}

.grid-custom-btn {
    background: #f0f0f0;
    border: 1px solid #a1a1a1;
    padding: 2px 7px;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 10px;
}
.ag-theme-balham .ag-ltr .ag-cell {
    border-right: solid #d9dcde !important;
    border-right-width: 1px !important;
}

.ag-theme-balham .ag-layout-auto-height .ag-center-cols-clipper, .ag-theme-balham .ag-layout-auto-height .ag-center-cols-container, .ag-theme-balham .ag-layout-print .ag-center-cols-clipper, .ag-theme-balham .ag-layout-print .ag-center-cols-container {
    min-height: 28px !important;
}
.ag-theme-balham .ag-row-selected {
    background-color: rgba(136, 208, 172, 0.2) !important;
    background-color: var(--ag-selected-row-background-color, rgba(136, 208, 172, 0.2)) !important;
}
.ag-cell input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
}