﻿@charset "UTF-8";
*, *:before, *:after {
    padding: 0;
    margin: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
html, body {
	width:100%;
	height: 100%;
	/* min-width: 520px; */
}
body, input, select, textarea, label {
    font-size: 13px;
	font-weight:normal;
    line-height: 1.7;
}
ul, ol, dl {
    list-style: none;
}
fieldset legend {
	display:none;
}
input, select, textarea, img, label {
    vertical-align: middle;
	font-weight: normal;
	margin: 0;
}
a{
    color:#222;
    text-decoration: none;
}
a:hover, a:active {
    color:#555;
    text-decoration: underline;
}
a.file:before {
    content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	line-height: inherit;
	vertical-align: text-bottom;
	margin-right: 4px;
}
a.file:before {
	background:url('../images/icon/file_link.png') no-repeat 0 0;
}
a.file[href$=".xls"]:before,
a.file[href$=".XLS"]:before,
a.file[href$=".xlsx"]:before,
a.file[href$=".XLSX"]:before {
	background:url('../images/icon/file_link_excel.png') no-repeat 0 0;
}
a.file[href$=".ppt"]:before,
a.file[href$=".PPT"]:before,
a.file[href$=".pptx"]:before,
a.file[href$=".PPTX"]:before {
	background:url('../images/icon/file_link_ppt.png') no-repeat 0 0;
}
a.file[href$=".7z"]:before,
a.file[href$=".7Z"]:before,
a.file[href$=".zip"]:before,
a.file[href$=".ZIP"]:before {
	background:url('../images/icon/file_link_zip.png') no-repeat 0 0;
}
a.file[href$=".pdf"]:before,
a.file[href$=".PDF"]:before {
	background:url('../images/icon/file_link_pdf.png') no-repeat 0 0;
}
a.file[href$=".png"]:before,
a.file[href$=".PNG"]:before,
a.file[href$=".gif"]:before,
a.file[href$=".GIF"]:before,
a.file[href$=".jpg"]:before,
a.file[href$=".JPG"]:before {
	background:url('../images/icon/file_link_image.png') no-repeat 0 0;
}

/* form style
---------------------------------------------------------*/
input:focus, textarea:focus, select:focus, button:focus, .form-control:focus {
	outline:0;
}
select.multiple {
	padding: 5px;
	width: auto;
	height: auto;
}
*/
input[type="checkbox"].switch,
input[type="checkbox"].custom,
input[type="radio"].custom {
	position:absolute;
	visibility:hidden;
	width:0;
	height:0;
}
input[type="checkbox"].switch + label > span {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 18px;
	line-height: 16px;
	color: #999;
	background: #ddd;
	vertical-align: middle;
	border-radius: 12px;
	cursor: pointer;
}
input[type="checkbox"].switch + label >  span:before {
	content:'';
	position: absolute;
	top: 0px;
	left: 0px;
	display: inline-block;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	transition: transform 0.2s ease-out;
}
input[type="checkbox"].switch:checked + label >  span:before {
	color: #fff;
	border: 1px solid #1979ca;
	background: #1979ca url('../images/component/input.png') no-repeat -82px -2px;
	transform: translate(22px, 0);
}
input[type="checkbox"].switch:checked + label >  span:after {
	content:'';
}
input[type="checkbox"].custom + label,
input[type="radio"].custom + label {
	display:inline-block;
	opacity:0.7;
}
input[type="checkbox"].custom:checked + label,
input[type="radio"].custom:checked + label {
	opacity:1;
}
input[type="checkbox"].custom + label:before,
input[type="radio"].custom + label:before {
	content:'';
	display:inline-block;
	vertical-align:middle;
	font-size:inherit;
	width:20px;
	height:20px;
	vertical-align:middle;
	margin-right:3px;
	background:url('../images/component/input.png') no-repeat 0 0;
	transition:opacity 0.15s ease-out;
}
input[type="checkbox"].custom:checked + label:before {
	background-position: 0px 0px;
	opacity: 1;
}
input[type="checkbox"].custom + label:before {
	background-position: -20px 0px;
	opacity: 0.2;
}
input[type="radio"].custom:checked + label:before {
	background-position:-40px 0px;
	opacity: 1;
}
input[type="radio"].custom + label:before {
	background-position: -60px 0px;
	opacity: 0.2;
}
input::-ms-reveal, /* MS IE, Edge password input eye hide */
input::-ms-clear {
	display: none;
}
.input-row {
	margin: 0;
}
.input-row li {
    display: inline;
    margin-right: 10px;
}
.input-row li:last-child {
    margin-right: 0;
}

/* layout style
---------------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
	z-index: 1010;
}
.header-container {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	z-index: 6;
}
.header-brand {
	padding-left: 20px
}
.header-brand .hamberger {
	display: none;
}
.header-brand h1 {
	font-size: 0;
	margin: 0;
}
.header-nav {
	visibility: hidden;
}
.header-nav, .header-nav ul, .header-nav ul li, .header-nav ul li a  {
	height:100%;
}
.header-nav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	margin: 0;
}
.header-nav ul li a {
	position: relative;
	display: block;
	padding: 0 15px;
	font-size: 15px;
	line-height: 50px;
	white-space: nowrap;
}
.header-nav ul li a:hover, .header-nav ul li a:active, .header-nav ul li a.active {
	color: #d80546;
	text-decoration: none;
}
.header-nav ul li a span:after {
	content:'';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: #d80546;
	transition: all 0.3s ease-out;
	opacity: 0;
	transform: scaleX(0);
	transform-origin: center;
}
.header-nav i {
	display: none;
}
.header-nav ul li a:hover span:after, .header-nav ul li a:active span:after, .header-nav ul li a.active span:after {
	opacity: 1;
	transform: scaleX(1);
}
.header-nav-icon ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	margin: 0;
}
.header-option-link {
	display: flex;
	align-items: stretch;
	height: 100%;
}
.header-option-link .header-option-link-list {
	height: 100%;
	margin: 0;
	border-left: 1px solid rgba(0, 0, 0, .1);
}
.header-option-link .header-option-link-list > li {
	margin-left: -1px;
	border: 1px solid rgba(0, 0, 0, .05);
	border-width: 0 1px;
}
.header-option-link .header-option-link-list > li:last-child {
	border-right: none;
}
.header-option-link .header-option-link-list > li:hover {
	border-color: rgba(0, 0, 0, .15);
}
.header-option-link-item {
	display: block;
	height: 100%;
	line-height: 50px;
	padding: 0 17px;
	color: #777;
	white-space: nowrap;
	border-width: 0 1px;
	transition: background-color 0.15s ease-out;
}
.header-option-link-item:hover {
	text-decoration: none;
	background: rgba(0,0,0,.05);
}
.header-option-link-item .header-favorite {
	color: #ffd200;
}
.header-option-link-item > i {
	font-size: 16px;
}
.header-option-link-item > .badge {
	margin-left: -8px;
}
.header-dropdown-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.75rem;
	padding: 5px 10px;
	margin: -0.5rem 0 0.5rem 0;
	background: #f9f9f9;
	border-bottom:1px solid #eaeaea;
	border-radius: 0.2rem 0.2rem 0 0;
}
.header-dropdown-title {
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	color: #999;
	margin: 0;
}
.header-dropdown-user-info {
	position: relative;
	width: 300px;
	padding: 10px 20px 10px 100px;
}
.header-dropdown-user-info .user-img-profile {
	position: absolute;
	top: 11px;
	left: 30px;
	width: 53px;
	height: 53px;
	overflow: hidden;
	border-radius: 50%;
}
.header-dropdown-user-info .user-name {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}
.header-dropdown-user-info .team-name {
	font-size: 12px;
	color: #888;
	margin: 3px 0 0 0;
}
.header-dropdown-user-info .user-info-links span {
	display: inline-block;
	width: 18px;
	text-align: center;
	opacity: .5;
}
.header-dropdown-user-info .user-info-links a {
	font-size: 13px;
}
.header-dropdown-footer {
	display: flex;
	align-content: center;
	justify-content: space-between;
	margin: 0.5rem 0 -0.5rem 0;
	padding: 5px 5px 5px 15px;
	border-top:1px solid #eaeaea;
	border-radius: 0 0 0.2rem 0.2rem;
}
.header-dropdown-footer .language {
	font-size: 0.75rem;
	padding: 0;
	height: auto;
	border: none;
}

.header-notice {
	background: #fff1ec;
	border-top: 1px solid #d5d5d5;
}
.header-notice-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px 10px 35px;
}
.header-notice-title {
	padding-left: 25px;
}
.header-notice-title .title {
	text-indent: 50px;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, .7);
	vertical-align: middle;
}
.header-notice-title i {
	margin: 0 6px 0 -26px;
	vertical-align: middle;
}
.header-notice-btn {
	text-align: right;
}
.header-notice-btn .btn {
	white-space: nowrap;
	color: rgba(0, 0, 0, .5);
}
.header-notice-btn .btn:hover {
	color: rgba(0, 0, 0, .7);
	border:1px solid rgba(0, 0, 0, .3);
	text-decoration: none;
}
.header-banner {
	position: relative;
	background: #fff;
	box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.15);
	z-index: 5;
}
.header-banner-container {
	display: flex;
	justify-content: flex-end; /* space-between */
	align-items: center;
	height: 40px;
	padding: 0 20px;
}
.header-banner-item {
	margin:0 10px;
}
/* Header 디자인 설정
---------------------------------------------------------*/
#header .header-nav ul li a,
#header .header-option-link-item i,
#header .header-option-link-item .user-name,
#header .header-option-link-item::after {
	color: #000;
	opacity: 0.7;
}
#header .header-nav ul li a:hover,
#header .header-nav ul li a.active,
#header .header-option-link-item:hover i,
#header .header-option-link-item:hover .user-name {
	opacity: 1;
}
#header .header-option-link .header-option-link-list > li {
	border-color: rgba(0, 0, 0, .07);
}
#header .header-option-link-item:hover {
	color: #000;
	background: rgba(0, 0, 0, .05)
}
/* End : Header 디자인 설정 ---------------------------------------------------------*/

#sidebar {
	position: fixed;
	top: 50px;
	bottom: 40px;
	left: 0;
	right: 0;
	width: 240px;
	background: #f9f9f9;
	border-right: 1px solid #dddddd;
	z-index: 2;
}
#sidebar .sidebar-title {
	padding: 0 20px;
	background: #e5e8eb;
}
#sidebar .sidebar-title .title {
	font-size: 1.25rem;
	font-weight: 400;
	height: 50px;
	line-height: 50px;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#sidebar .sidebar-title i {
	font-size: 1.625rem;
	vertical-align: middle;
	color: #000;
	opacity: 0.3;
}
#sidebar .sidebar-nav {
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 82px;
	overflow-y: auto;
}
#sidebar .sidebar-nav ul {
	margin: 0;
}
#sidebar .sidebar-nav-item {
	border-bottom: 1px solid #e9e9e9;
}
#sidebar .sidebar-nav-item:last-child {
	border-bottom: none;
}
#sidebar .sidebar-nav-item.has-open .sidebar-nav-link:hover{
	color: #777;
}
#sidebar .sidebar-nav-item.has-open .sidebar-nav-sub {
	display: block;
}
#sidebar .sidebar-nav-item.has-open .sidebar-nav-link {
	font-weight: 600;
	color: #aaa;
	background: #fff;
}
#sidebar .sidebar-nav-link {
	position: relative;
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#sidebar .sidebar-nav-link:active,
#sidebar .sidebar-nav-link.active  {
	color: #d80546;
	background: #fff;
}
#sidebar .sidebar-nav-link:hover {
	color: #d80546;
}
#sidebar .sidebar-nav-item.has-child .sidebar-nav-link {
	padding-right: 30px;
}
#sidebar .sidebar-nav-link .sidebar-nav-link-control {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	border: none;
	background: none;
	display: none;
}
#sidebar .sidebar-nav-item.has-child .sidebar-nav-link .sidebar-nav-link-control {
	display: block;
}
#sidebar .sidebar-nav-item.has-child .sidebar-nav-link-control::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 10px;
	opacity: .3;
	border-top: 5px solid transparent;
	border-left: 5px solid #000;
	border-right: 0;
	border-bottom: 5px solid transparent;
	transition: all .2s ease-out;
}
#sidebar .sidebar-nav-item.has-open .sidebar-nav-link-control::after {
	transform: rotate(90deg);
}
#sidebar .sidebar-nav-link .sidebar-nav-link-control:hover {
	background: rgba(0,0,0,.05);
}
#sidebar .sidebar-nav-link .sidebar-nav-link-control:hover::after {
	opacity: .5;
}

#sidebar .sidebar-nav-sub {
	background: #fff;
	display: none;
	transition: all .5s ease-out;
}
#sidebar .sidebar-nav-sub ul {
	padding-bottom: 10px;
}
#sidebar .sidebar-nav-sub-link {
	display: block;
	padding: 3px 20px 3px 30px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#sidebar .sidebar-nav-sub-link:hover {
	color: #d80546;
	background: #f9f9f9;
}
#sidebar .sidebar-nav-sub-link:active,
#sidebar .sidebar-nav-sub-link.active {
	color: #d80546;
}

#sidebar .sidebar-guide {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
}
#sidebar .sidebar-guide .btn {
	padding: 10px 0;
}
#sidebar .sidebar-control {
	position: absolute;
	top: 0;
	right: -30px;
	width: 30px;
	height: 50px;
	background: #ccc;
}
#sidebar .sidebar-control .btn {
	width: 100%;
	height: 100%;
	background: #d0d4d9;
	border-radius: 0 !important;
}
#sidebar .sidebar-control .btn:hover {
	background: #dadde1;
}

/* Sidebar Secondary */
.main-container .page-header {
	min-height: 50px;
	position: fixed;
	top: 50px;
	left: 240px;
	right: 0;
	border-bottom: 1px solid #dee2e6;
	z-index: 2
}
#sidebar-secondary {
	position: fixed;
	left: 240px; 
	width: 340px;
	border-right: 1px solid #dee2e6;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.sidebar-secondary-control {
	position:absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}
.btn-sidebar-secondary-show,
.btn-sidebar-secondary-hide {	
	border: 1px solid #dee2e6;
	border-left-width: 0;
	background: #f9f9f9;
	width: 20px;
	height: 40px;
}
.btn-sidebar-secondary-hide {
	background: #fff;
}
#sidebar-secondary .search-block {
	border-radius: 0;
}
#sidebar-secondary .approval-list {
	flex: auto;
	overflow-y: auto;
}
#sidebar-secondary .search-in-result {
	flex: auto;
}
.data-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: auto;
}
/* End : Sidebar Secondary */

#content {
	/*position: relative;*/
	top: 50px;
	padding-left:240px;
	padding-bottom: 41px;
	background: #fff;
	z-index: 1;
}
#content.content-col-one {
	padding-left: 0;
}
#content.content-col-one .main-container {
	min-width: 1200px;
}
#content.content-col-one .btn-sidebar-show,
#content.content-col-one .btn-sidebar-hide {
	display: none;
}
.main {
	width: 100%;
}
.page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f6f7f8;
	height: 50px;
	padding: 0 20px 0 40px;
}
.page-header-sticky {
	position: fixed;
	width: 100%;
	box-shadow: 1px 5px 3px 0px #00000030;
	z-index: 5;
}
.page-title {
	font-size: 1rem;
	font-weight:700;
	color: #666;
	margin: 0 auto 0 0;
}
.btn-sidebar-show {
	display:none;
}
.page-body {
	padding: 30px;
}
.section-title {
	margin-top: 30px;
	margin-bottom: 10px;
}
.section-title:first-child {
	margin-top: 0;
}
.section-title .title {
	font-size: 1.0625rem;
	font-weight: 600;
}
.search-block {
	background: #f6f7f8;
	padding:  15px 20px 10px;
	margin-bottom: 30px;
	border-radius: 0.25rem;
}
/*
.search-block form {
	display:flex;
	justify-content: space-between;
}
*/
.search-block legend {
	display: none;
}
.search-block table th {
	font-weight: 400;
	padding: 5px 5px 5px 25px;
}
.search-block table th:first-child {
	padding-left: 0;
}
.search-block table td {
	padding: 5px;
}
.search-block .search-date {
	border: 0;
	border-bottom: 1px solid #999;
	background: transparent;
	padding: 0 0 0 20px;
	width: 100px;
	cursor: pointer;
}
.search-block .search-date:hover,
.search-block .search-date:focus {
	border: 0;
	border-bottom: 1px solid #000;
}
.search-block .search-btn-block {
	padding: 5px 0;
	display: flex;
	align-items: flex-end;
}

#footer {
    position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background:#fff;
	/*box-shadow: 0 -1px 0 0 rgba(0,0,0,.1);*/
	border-top: 1px solid #dddddd;
	z-index: 3;
}
.footer-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	padding: 0 20px;
}
.footer-cs dl {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 0;
}
.footer-cs dl dt,
.footer-cs dl dd {
	font-size: 12px;
	white-space: nowrap;
	margin: 0;
}
.footer-cs dl dt {
	margin: 0 7px 0 30px;
}
.footer-cs dl dt:first-child {
	margin-left: 0;
}
.footer-right {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.footer-region {
	margin: 0 20px 0 auto;
}
.footer-region .btn-link {
	color: #555;
}
.footer-region .btn-link:hover {
	color: #111;
}
.footer-region select {
	padding: 0;
	border: none;
	font-size: 0.75rem;
}

.go-top {
	position: fixed;
	bottom: 55px;
	right: 15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: #d80546;
	display: none;
	border-radius: 50%;
	text-align: center;
	font-size: 0.6875rem;
	color: #fff;
	z-index: 4;
}
.go-top:hover {
	background: #111;
	text-decoration: none;
	color: #fff;
}

/* s:Design custom
---------------------------------------------------------*/
.btn-primary.disabled, .btn-primary:disabled {
	color: #fff;
	background-color: #f478a0;
	border-color: #f478a0;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #9c0134;
	border-color: #9c0134;
}

.btn-outline-primary {
	color: #d80546;
	border-color: #d80546;
}
.btn-outline-primary:hover {
	color: #fff;
	background-color: #d80546;
	border-color: #d80546;
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
	color: #f478a0;
	background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #d80546;
	border-color: #d80546;
}
/* e:Design custom */

/* Table
---------------------------------------------------------*/
.table-detail th {
	background: #f5f5f5;
	color: #495057;
}
.table-md th,
.table-md td {
	padding: 0.5rem;
}
.table-borderless-wrap {
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
	padding: 10px;
}
.table-count th {
	background: #434e5a;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;;
}
.table-count td {
	background: #f6f7f8;
	text-align: center;
	font-size: 20px;
	border: 1px solid #fff;;
}
.table-count th.table-count-other {
	background: #74454e;
}
.table-count td.table-count-other {
	background: #faf5f6;
}
.table-scroll-thead table,
.table-scroll-tbody table {
	margin: 0;
}
.table-scroll-thead thead th {
	border-bottom-width: 1px;
}
.table-scroll-tbody {
	background: #f9f9f9;
	overflow:auto;
}
.table-scroll-tbody tr {
	background: #fff;
}
.table-scroll-tbody.line-5 {
	height: 196px !important;
}
.table-scroll-tbody.line-10 {
	height: 392px !important;
}
@keyframes movein {
    from { position: relative; left:20px; opacity:0; }
    to { position: relative; left:0; opacity:1; }
}

@keyframes movein-left {
    from { position: relative; left:20px; opacity:0; }
    to { position: relative; left:0; opacity:1; }
}

.ani-delay01 { opacity:0; animation: movein 0.5s 0s ease-out forwards; }

/* Common Style
---------------------------------------------------------*/
.red {
	color:#dc3545 !important;
}
.Lnodisplay {
	display: none;
}
input.Lfake,
input.Lfake:focus {
	border: none;
	background: transparent !important;
}
.scrollable-block {
	max-height: 340px;
	overflow: auto;
}
.form-label-group {
	margin-bottom: 10px;
}
.tab-block {
	margin: 20px 0 ;
}
.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	z-index: 3000;
	background: rgba(0, 0, 0, .7);
}
.loading-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.vmcb-spin {
	animation: vmcb-spin 1s infinite linear
}
@keyframes vmcb-spin {
	0% {transform:rotate(0deg)}
	100%{transform:rotate(359deg)}
}
.dropdown-w-auto {
	min-width: auto !important;
}
.badge-notify {
	width: 8px;
	height: 8px;
	font-size: 0;
	border-radius: 50%;
	display: inline-block !important;
}
.badge-gray {
	background: #ccc;
}
.table-action-group {
	background: #e9ecef;
	padding: 10px;
}
.page-btn-block {
	margin: 2rem 0;
	padding-top: 1rem;
	text-align: right;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.input-group-date {
	width: 120px !important;
	cursor: pointer;
}
.input-group-name {
	width: 120px !important;
}
ul.disc, ol.disc, dl.disc {
	list-style-type: disc;
	text-indent: 0;
	margin-left: 16px;
}
ul.icon, ol.icon, dl.icon {
	text-indent: 0;
	margin-left: 16px;
}
ul.icon > li, ol.icon > li, dl.icon > li {
	text-indent: -8px;
	margin-top:5px;
}
ul.icon > li:first-child, ol.icon > li:first-child, dl.icon > li:first-child {
	margin-top:0;
}
.close-light:hover,
.close-light {
	color: #fff;
	text-shadow: 0 1px 0 #000;
}
.section-bordered {
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
}
textarea.vertical {
	resize: vertical;
}
:disabled.form-control, [readonly].form-control {
    pointer-events: none;
}
/* File Uploader */
.file-uploader {
	border: 1px solid #dedede;
}
.file-uploader img {
	vertical-align: middle;
}
.file-uploader button {
	border: none;
	margin: 0;
	padding: 0;
	outline: 0;
	background: none;
}
.file-uploader-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #dedede;
	background: #f8f8f8;
}
.file-uploader-filter {
	display: flex;
	align-items: center;
}
.file-uploader-limited,
.file-uploader-trash,
.file-upload-info {
	position: relative;
}
.file-uploader-header button {
	font-size: 12px;
	color: rgba(0, 0, 0, .6);
	height: 100%;
	padding: 10px;
	background: none;
}
.file-uploader-header button:hover {
	color: rgba(0, 0, 0, .9);
	background: rgba(0, 0, 0, .05);
}
.file-uploader-header button:active,
.file-uploader-header button.active {
	color: rgba(0, 0, 0, 1);
	background: rgba(0, 0, 0, .1);
}
.file-uploader-badge {
	font-size: 80%;
	color: #fff;
	font-weight: bold;
	padding: 1px 5px;
	border-radius: 10px;
	background: rgba(0, 0, 0, .4);
}
.file-uploader-popover {
	position: absolute;
	top: 40px;
	left: 0px;
	background: #fff;
	border: 1px solid #000;
	box-shadow: 2px 4px 4px rgba(0, 0, 0, .3);
	min-width: 200px;
	z-index: 10000;
}
.file-uploader-popover ul {
	margin: 0;
}
.file-uploader-popover-header {
	display: none;
	font-weight: bold;
	background: #eee;
	padding: 3px 10px;
	white-space: nowrap;
}
.file-uploader-popover-body {
	padding: 5px 10px;
}
.file-upload-info .file-uploader-popover {
	right: 0;
	left: auto;
}
.file-uploader-list {
	margin: 0;
	padding: 0;
	min-height: 150px;
}
.file-uploader-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 30px;
	padding: 0 10px;
}
.file-uploader-list-item:hover {
	background: #f2f6fb;
}
.file-uploader-list-item.file-uploader-list-del {
	background: #fbe8ee;
}
.file-uploader-list-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.file-uploader-data-size {
	margin-right: 10px;
}
.file-uploader-progress {
	width: 100px;
	margin-right: 10px;
	background: rgba(0, 0, 0, .15);
	border-radius: 2px;
	overflow: hidden;
}
.file-uploader-progress-bar {
	background: #0078ff;
	height: 4px;
}
.file-uploader-progress-total {
	width: 100%;
	background: rgba(0, 0, 0, .1);
	overflow: hidden;
}
.file-uploader-progress-total-bar {
	background: #0fa200;
	height: 2px;
}
.file-uploader-footer {
	border-top: 1px solid #dedede;
	background: #f8f8f8;
}
.file-uploader-total-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #000;
	padding: 5px 10px;
}
/* // File Uploader */

.file-input-div {
	position:relative;
	overflow:hidden;
}
.file-input-hidden {
	position:absolute;
	right:0px;
	top:0px;
	opacity:0;
	filter: alpha(opacity=0);
	-ms-filter: alpha(opacity=0);
	cursor:pointer;
	height:30px;
}
.modal-content {
	border-radius: 0.4rem;
}

/* Page Style
---------------------------------------------------------*/
/* Page : Login */

#login-header {
	position: absolute;
	top: 7px;
	right: 15px;
	display: flex;
	justify-content: right;
	z-index: 1;
}
#login-header .login-links {
	align-self: center;
}
#login-header .login-links .login-links-item {
	margin-right: 20px;
}
#login-header .login-links .login-links-item:last-child {
	margin-right: 0;
}
#login-header .login-language {
	margin-left: 30px;
	align-self: center;
}
#login-header .login-language select {
	font-size: 13px;
	padding: 0;
	height: auto;
	border: none;
	background: none;
}
/* Font-color : light, dark
#login-header.login-links-light .login-links-item {
	color: rgba(255, 255, 255, .8);
}
#login-header.login-links-light .login-links-item:hover {
	color: rgba(255, 255, 255, 1);
}
#login-header.login-links-light .login-language > button {
	color: rgba(255, 255, 255, .8);
}
#login-header.login-links-light .login-language > button:hover {
	color: rgba(255, 255, 255, 1);
}
#login-header.login-links-dark .login-links-item {
	color: rgba(0, 0, 0, .6);
}
#login-header.login-links-dark .login-links-item:hover {
	color: rgba(0, 0, 0, 8);
}
#login-header.login-links-dark .login-language > button {
	color: rgba(0, 0, 0, .6);
}
#login-header.login-links-dark .login-language > button:hover {
	color: rgba(0, 0, 0, 8);
}
*/
#login-header .login-links-item, #login-header .login-language > button {
	color: #000;
	opacity: 0.8;
}
#login-header .login-links-item:hover, #login-header .login-language > button:hover {
	color: #000;
	opacity: 1;
}

.login-wrapper {
	display: table;
	padding: 40px 0 70px;
	background: #f5f5f5;
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.login-inner {
	display: table-cell;
	vertical-align: middle;
}
.login-wrapper .login-content {
	padding: 0 40px;
	margin: 0 auto;
}
.login-wrapper .login-content-lg {
	width: 700px !important;
}
.login-wrapper .login-content-xl {
	width: 1000px !important;
}
.login-wrapper .login-content-lg .content-block, .login-wrapper .login-content-xl .content-block {
	width: auto !important;
}
.login-wrapper .login-brand {
	margin: 0 0 30px;
	text-align: center;
	font-size: 0;
}
.login-wrapper.box .login-content {
	display: flex;
	justify-content: center;
	padding: 0;
}
.login-wrapper.box .content-block {
	width: 500px;
	padding: 40px;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 1rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.login-wrapper.box .login-content {
	padding: 0;
}
.login-wrapper.box .login-content .login-input {
	border-width: 0 0 1px 0 !important;
	border-radius: 0;
}
.login-input-container {
	position: relative;
	margin: 0 0 10px !important;
}
.login-input {
	color: #202124;
	font-size: 24px;
	height: auto !important;
	padding: 24px 0 4px;
	z-index: 2;
	background: transparent;
	width: 100%;
	outline: none;
	border: none;
	border-bottom: 1px solid #c2c2c2;
}
.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
	transition: background-color 2147483647s ease-in-out 0s;
}
.login-label {
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 26px;
	font-weight: 300;
	color:#ababab;
	z-index: 1;
	transition: all 0.15s ease-in-out;
	overflow: hidden;
	white-space: nowrap;
	text-overflow:ellipsis;
	display: inline-block;
	width: 100%;
}
.login-input::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #000;
}
.login-input:focus + .login-label,
.login-input:valid + .login-label {
	top: 8px;
	font-size: 13px;
}
.login-label-info {
	font-size: 14px;
	display: none;
}
.login-input:focus + .login-label .login-label-info,
.login-input:valid + .login-label .login-label-info {
	display: inline-block;
}


.login-wrapper.box .login-visual-content {
	margin: 0 auto;
	padding: 0;
}
.login-wrapper.box .content-visual {
	width: 500px;
	background-color: #fff;
	background-size: initial;
	background-repeat: no-repeat;
	background-position: center top;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.login-wrapper .login-banner {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.login-wrapper .login-banner-item {
	align-self: center;
	margin: 0 5px;
}
/* Page : 필수 프로그램 설치안내 */
.login-wrapper .login-sw-down-condition {
	background: #f9f9f9 url("../images/login/sw_download_bg.png") no-repeat center top;
	margin-top: 20px;
	padding:50px 20px 30px;
	text-align:center;
	min-height:214px;
}
.modal .pw-reset li  {
	border-top: 1px solid #999;
	padding-top: 30px;
}
.modal .pw-reset li:first-child  {
	border-top: 0;
	padding-top: 0;
}
.login-program-install {
	text-align: center;
	padding: 22px 0;
	border-bottom: 1px solid #ddd;
	background: rgb(233, 233, 233);
	position: relative;
}

#input-viewtype-login {
	position: absolute;
	right: 5px;
	bottom: 10px;
	display: none;
	cursor: pointer;
}
.login-input:valid + label + #input-viewtype-login,
.login-input:focus + label + #input-viewtype-login {
	display: block !important;
}
.login-input-container .capslock-notice {
	font-size: 13px;
	font-weight:normal;
	padding: 6px 8px; margin:0;
	position: absolute;
	right: 0;
	bottom: 10px;
	display: none;
}
#input-viewtype {
	position: absolute;
	right: 10px;
	top: 9px;
	display: none;
	cursor: pointer;
}
input:valid + #input-viewtype,
input:focus + #input-viewtype {
	display: block !important;
}
.input-viewtype-text .fa-eye-slash {
	display: none;
}
.input-viewtype-password .fa-eye {
	display: none;
}
.login-hero-zone {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	width: 450px;
	height: 360px;
	z-index: 1;
}
.login-hero-zone.position-left {
	margin-left: -780px; 
}
.login-hero-zone.position-right {
	margin-left: 360px; 
}

/* 서약서 : 서명 */
.signature {
	position: relative;
	height: 140px;
}
.signature .signature-clear {
	position: absolute;
	bottom: 5px;
	right: 5px;
}
.sign-step {
	display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
	border-bottom: 1px solid #dee2e6;
}
.sign-step-item {
    border-bottom-color: #000;
    color: #777;
	margin-bottom: -1px;
	padding: 1rem;
	font-size: 1rem;
	font-weight: bold;
}
.sign-step-item.active {
	color: #000;
    border-bottom: 2px solid #000;
}

/* Page Style : Management */
.cloud-pc-img {
	width: 160px;
	height: 111px;
	margin-right: 40px;
	padding: 25px 10px 0;
	text-align: center;
	background: url("../images/mgmt_pc.png") no-repeat left top;
}

/* Page Style : Admin */
.opinion-block {
	background: #e9ecef;
	margin-top: 1rem;
	padding: 5px;
	border: 1px solid #dee2e6;
}
.opinion-title {
	font-size:13px;
	font-weight: bold;
	color:#495057;
	padding: 3px 0 0 3px;
}

/* Page Style : Board */
.table-board th, .table-board td {
	padding: 0.5rem;
}
.table-board th {
	border-top-color: #888;
}
.table-board .table-board-title {
	color: #555;
	font-size: 14px;
}
.table-notice-active {
	background: rgba(0, 0, 0, .05);
}
.table-notice-active td a{
	color: #d80546;
	font-weight: 700;
}
.notice-view-header .notice-view-title {
	font-size: 20px;
	font-weight: bolder;
	border-bottom: 1px solid #888;
	padding-bottom: 15px;
	word-break: break-all;
}
.notice-view-content {
	border: 1px solid #eee;
	border-radius: 0.25rem;
	padding: 25px;
	word-break: break-all;
}
.bord-view-list {
	margin: 30px 0;
	border-top: 1px solid #eee;
}
.bord-view-list ul {
	margin: 0;
}
.border-view-list-item {
	display: flex;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	word-break: break-all;
}
.notice-view-list-badge {
	font-weight: bold;
	flex: 0 0 70px;
}
.notice-view-list-title {
	margin-left: 20px;
}
.board-faq-search-wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.board-faq-search {
	position: relative;
	width: 450px;
	border-bottom: 1px solid #555;
	margin: auto;
}
.board-faq-search input[type=text] {
	display: inline;
	border: none;
	padding-left: 5px;
	padding-right: 35px;
}
.board-faq-search .board-faq-search-btn {
	position: absolute;
	top: 50%;
	right: 5px;
	font-size: 24px;
	color: #333;
	transform: translateY(-50%);
}

/* Page Style : Board Write */
.board-write-content {
	border: 1px solid #eee;
	border-radius: 0.25rem;
	padding: 20px;
}
.board-file-list {
	background: #e5eaec;
	padding: 10px;
	margin: 20px 0;
	border-radius: 0.25rem;
}
.board-file-list ul {
	margin: 0;
}
.board-file-list-item {
	display: flex;
	justify-content: space-between;
	padding: 1px 5px 1px 10px;
	transition: background-color .15s ease-out;
}
.board-file-list-item:hover {
	background-color: rgba(255, 255, 255, .5)
}
.progress.board-file {
	width: 100px;
	height: 5px;
	background-color: #fff;
}


/* Page Style : Error Page */
.error-wrapper {
	position: relative;
	min-width: 1000px;
	min-height: 100%;
	background: #eee;
	padding: 70px 0 0 100px;
	overflow: auto;
}
.error-container {
	position: relative;
	max-width: 800px;
	margin: 100px 0 100px 80px;
	z-index: 2;
}
.error-title {
	font-size: 2rem;
	color: #222;
	margin-top: 20px;
}
.error-description {
	font-size: 1rem;
	margin-bottom:20px;
}
.error-textbox {
	margin: 20px 0;
	padding: 30px;
	background: rgba(255, 255, 255, .95);
}
.error-btn-block {
	margin: 20px 0;
}
.error-img {
	position: absolute;
	right: 50px;
	bottom: 0;
	z-index: 1;
}

/* Page Style : 접속 */
.connect-block .connect-container,
.connect-app-block .app-container,
.connect-download-block .download-container,
.connect-faq-block .faq-container,
.connect-chatbot-block .connect-chatbot-container,
.connect-faq-notice-block .faq-notice-container,
.connect-service-link .service-link-container {
	max-width: 1000px;
	margin: 0 auto;
}
.connect-block {
	position: relative;
	/*overflow: hidden;*/
	padding: 35px 0 10px;
}
.connect-block .connect-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 270px;
	background-size: cover;
	background-position: top center;
}
.connect-block .faq-search {
	position: relative;
	width: 460px;
	margin: 0 auto;
}
.connect-block .faq-search label {
	position: absolute;
	left: 0;
	bottom: 2px;
	font-size: 30px;
	font-weight: 600;
}
.connect-block .faq-search input[type=text] {
	font-size: 20px;
	width: 100%;
	height: 42px;
	background: transparent;
	border-bottom-style: solid;
	border-width: 0 0 1px 0;
	padding: 0 40px 8px 75px;
}
.connect-block .faq-search .btn {
	position: absolute;
	right: 0;
	bottom: 10px;
	font-size: 22px;
}
/* FAQ 폰트컬러 설정 */
.connect-block .faq-search label,
.connect-block .faq-search input[type=text],
.connect-block .faq-search .btn {
	color: #000;
}

.connect-block .faq-search input[type=text]::-webkit-input-placeholder { /* Edge */
	color: #000;
	opacity: 0.6;
}
.connect-block .faq-search input[type=text]:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #000;
	opacity: 0.6;
}
.connect-block .faq-search input[type=text]::placeholder {
	color: #000;
	opacity: 0.6;
}
.connect-block .faq-search input[type=text] {
	border-bottom-color: #000;
}

/* Page Style : 접속 : Cloud PC */
.connect-block .connect-container {
	position: relative;
	margin-top: 30px;
	margin-bottom: 20px;
}
.connect-block .connect {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
}
.connect-block .connect.align-top {
	padding-bottom: 20px;
	align-items: flex-start !important;
}
.connect-block .connect.align-top .cpc-info {
	margin-top: 3px !important;
}
.connect-block .cpc-info {
	background: white;
	min-height: 325px;
	width: 400px;
	border-radius: 20px;
	padding-bottom: 5px;
	overflow: hidden;
}
.connect-block .cpc-info .cpc-name-wrap {
	position: relative;
	border-bottom: 1px solid #dee2e6;
}
.connect-block .cpc-info .cpc-name {
	font-size: 18px;
	display: block;
	padding: 15px 25px 15px 25px;
	text-decoration: none;
	transition: background-color .15s ease-out;
}
.connect-block .cpc-info .cpc-name:hover,
.connect-block .cpc-info .show .cpc-name {
	background: #edf0f6;
}
.connect-block .cpc-info .cpc-name::after {
	position: absolute;
	top: 50%;
	right: 20px;
	left: auto;
	transform: translateY(-50%);
}
.connect-block .cpc-info .cpc-name-list {
	border: none;
	border-radius: 0;
	width: 100%;
	margin: 1px 0 0 0;
	overflow-y: auto;
	overflow-x: hidden;
}
.connect-block .cpc-info .cpc-name-list .dropdown-item {
	padding: 10px 15px 10px 25px ;
}
.connect-block .cpc-info .cpc-name span,
.connect-block .cpc-info .cpc-name-list .dropdown-item span {
	vertical-align: middle;
}
.connect-block .cpc-info .cpc-name.cpc-name-one {
	cursor: defalut;
}
.connect-block .cpc-info .cpc-name.cpc-name-one:hover {
	background: #fff;
}
.connect-block .cpc-info .master-name {
	position: relative;
	padding: 10px 10px 10px 20px;
	background: #edf0f6;
}
/*.connect-block .cpc-info .master-name::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: -6px;
	left: 10px;
	border-style: solid;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: #fff;
	border-left-color: #fff;
	border-width:5px;
	transform: rotate(-45deg);
	box-shadow: 0px 1px 0px 0px rgb(0, 0, 0, 0.3);
}*/
.connect-block .cpc-info .cpc-auto-shutdown {
	padding: 0 15px 13px;
}
.connect-block .cpc-info .cpc-spec {
	padding: 0 20px;
	margin: 15px 0;
}
.connect-block .cpc-info .cpc-spec table {
	width: 100%;
}
.connect-block .cpc-info .cpc-spec table th {
	font-size: 12px;
	font-weight: 700;
	color: #a6a6a6;
}
.connect-block .cpc-info .cpc-spec table td {
	font-size: 14px;
	padding: 3px 0;
}
.connect-block .cpc-info .cpc-spec table .spec-num {
	font-size: 24px;
}
.connect-block .cpc-info .cpc-spec .cpc-spec-sku {
	padding: 0 10px;
}
.connect-block .cpc-info .cpc-spec .cpc-spec-sku .sku-info-wrap {
	width: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius:5px;
	padding: 5px 0 0 0;
	margin: 0 5px;
}
.connect-block .cpc-info .cpc-spec .cpc-spec-sku .sku-info-wrap caption {
	padding: 0;
	text-align: center;
	background: #edf0f6;
	color: #303030;
	font-weight: bold;
	font-size: 12px;
	margin-top: 5px;
}
.connect-block .cpc-info .cpc-spec .cpc-spec-sku .sku-info-wrap caption .sku-title {
	color: #bb4f4f;
}
.connect-block .cpc-info .cpc-os {
	display: flex;
	justify-content: space-between;
	padding: 13px 15px 13px 20px;
	background: #edf0f6;
}
.connect-block .cpc-control {
	width: 514px;
	min-height: 385px;
	background: url("../images/connect_cpc.png") no-repeat left top;
	padding-top: 12px;
}
.connect-block .cpc-control .cpc-connect-wrap {
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	width: 472px;
	height: 265px;
	margin: 0 auto;
}
.connect-block .cpc-control .cpc-connect {
	position: relative;
	width: 100%;
	text-align: center;
	border-radius: 5px 5px 0 0;
}
.connect-block .cpc-control .cpc-connect .cpc-feedback {
	font-size: 16px;
	color: #fff;
	padding: 0 30px;
	margin: 0;
	max-height: 265px;
	overflow-y: auto;
}
.connect-block .cpc-control .cpc-connect .btn-group {
	margin-top: 20px;
}
.connect-block .cpc-control .cpc-option {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 472px;
	height: 39px;
	padding: 0 0 0 10px;
	margin: 0 auto 0;
}
.connect-block .cpc-control .cpc-option .cpc-self-check {
	height: 100%;
}
.connect-block .cpc-control .cpc-option .cpc-self-check.show .dropdown-toggle,
.connect-block .cpc-control .cpc-option .cpc-self-check .dropdown-toggle:hover {
	background: #dee1e4;
}
.nudging {
	position: relative;
	background: url('../images/nudging_level.png') 0 0 no-repeat;
	height: 83px;
	border-radius: 10px;
	overflow: hidden;
}
.nudging.level-01 {
	background-position: 0px 0px;
}
.nudging.level-02 {
	background-position: 0px -83px;
}
.nudging.level-03 {
	background-position: 0px -166px;
}
.nudging.level-04 {
	background-position: 0px -249px;
}
.nudging.level-05 {
	background-position: 0px -332px;
}
.nudging-level {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 0px;
	height: 0px;
	text-indent: -9999px;
}
.nudging.level-01 .nudging-level {
	left: 50px;
}
.nudging.level-02 .nudging-level {
	left: 188px;
}
.nudging.level-03 .nudging-level {
	left: 356px;
}
.nudging.level-04 .nudging-level {
	left: 510px;
}
.nudging.level-05 .nudging-level {
	left: 705px;
}
.nudging-data {
	position: absolute;
	top: 0px;
}
.nudging.level-01 .nudging-data {
	left: 80px;
}
.nudging.level-02 .nudging-data {
	left: 220px;
}
.nudging.level-03 .nudging-data {
	left: 390px;
}
.nudging.level-04 .nudging-data {
	left: 550px;
}
.nudging.level-05 .nudging-data {
	left: 760px;
}

/* Page Style : 접속 : Multi View */
.connect-cloudpc {
	position: relative;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px !important;
}
/*
.connect-multi-box {
	padding: 50px 0 55px;
	background:#f7f7f7;
	border:1px solid #dfdfdf;
	min-height: 300px;
	overflow: hidden;
}
*/
.connect-multi-box {
	padding: 20px 0 55px;
	min-height: 300px;
	overflow: hidden;
}
.connect-multi-item {
	margin: 0 20px;
	padding-bottom: 10px;
}
.connect-multi-pc {
	position: relative;
	width: 410px;
	min-height: 350px;
	padding: 50px 20px 40px;
	border: 1px solid #e0e0e0;
	background: #fff;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
	border-radius: 0.25rem;
}
.connect-multi-monitor {
	background: url(../images/connect_cpc_multi.png) center center no-repeat;
	width: 320px;
	height: 218px;
	margin: 0 auto;
	padding: 2px;
}
.connect-multi-monitor.ok {
	background: url(../images/connect_cpc_multi_ok.png) center center no-repeat;
}
.connect-multi-monitor.alert {
	background: url(../images/connect_cpc_multi_alert.png) center center no-repeat;
}
.connect-multi-monitor.info {
	background: url(../images/connect_cpc_multi_info.png) center center no-repeat;
}
.connect-multi-monitor-wrapper {
	overflow-y: auto;
	height: 170px;
	display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
}
.connect-multi-feedback {
	font-size: 1rem;
}
.connect-multi-cpc-type {
	position: absolute;
	top: 5px;
	left: 5px;
}
.connect-multi-box .btn-screen {
	color: #555;
	border-color: rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 255.1);
}
.connect-multi-box .btn-screen:hover {
	color: #222;
	border-color: rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 255.1);
}
.connect-multi-box .btn-multi-info {
	position: absolute;
	right: -1px;
	top: -1px;
}
.connect-multi-box .carousel-indicators {
	margin-bottom: -30px;
}
.connect-multi-box .carousel-item ul {
	margin-bottom: 0;
}
.connect-multi-box .carousel-inner {
	overflow: visible;
}
.connect-multi-box .carousel-control-prev,
.connect-multi-box .carousel-control-next {
	border: none;
	background: transparent;
	width: auto;
	padding: 0 20px;
	top: 50%;
	bottom: auto;
}
.connect-multi-box .carousel-control-prev-icon,
.connect-multi-box .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, .5);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 15px;
}
.carousel-indicators li {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .15);
	border: none;
	opacity: 1;
}
.carousel-indicators li.active {
	background: rgba(0, 0, 0, .6);
}
/* Page Style : 접속 : Content View */
.connect-cloudpc-contents {
	position: relative;
	max-width: 1000px;
	min-height: 500px;
	margin: 30px auto;
	display: flex;
	justify-content: space-between;	
}
.contents-left {
	width: 510px;
	max-height: 550px;
	background: #fff;
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: relative;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.contents-cpc-no-data {
	flex: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contents-cpc-container {
	flex: auto;
    display: flex;
    align-items: center;
	background: #f5f5f5;
	border-radius: 16px 16px 0 0;
}
.contents-cpc {	
	flex: auto;
	display: flex;
}
.contents-cpc-view {
	padding: 30px 30px 20px;
}
.contents-cpc .cpc-control {
    width: 450px;
    min-height: 298px;
    background: url(../images/connect_cpc_contents.png) no-repeat left top;
    padding-top: 6px;
}
.contents-cpc .cpc-control .cpc-connect-wrap {
    width: 436px;
    height: 259px;
    margin: 0 auto;
}
.contents-cpc .cpc-control .cpc-connect .cpc-feedback {
    max-height: 259px;
}
.contents-left .carousel-control-prev,
.contents-left .carousel-control-next {
	border: none;
	background: transparent;
	width: auto;
	top: 50%;
	bottom: auto;
	border: 5px solid #f5f5f5;
    border-radius: 50%;
}
.contents-left .carousel-control-prev {
	transform: translate(-50%, -100%);
}
.contents-left .carousel-control-next {
	transform: translate(50%, -100%);
}
.contents-left .carousel-control-prev-icon,
.contents-left .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, .5);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 15px;
}
.contents-cpc-info {
	margin: 20px 10px 30px;
	text-align: center;
}
.contents-cpc-list-container {
	background: #000;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
	border-radius: 16px;
	display: none;
}
.contents-cpc-title {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
	height: 60px;
	line-height: 50px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 80px 0 30px;
}
.contents-cpc-list {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
	overflow: auto;
}
.contents-cpc-item.selected {
	background: url("../images/connect_icon_check.png") no-repeat 30px 12px;
}
.contents-cpc-item-link {
	display: block;
	padding: 4px 0 4px 50px;
	color: #fff;
	font-size: 16px;
	opacity: .7;
	transition: all .3s;
}
.contents-cpc-item-link:hover,
.contents-cpc-item-link:focus {
	padding-left: 53px;
	color: #fff;
	opacity: 1;
	text-decoration: none;
	background: rgba(255, 255, 255, .15);
}
.contents-cpc-item-link:active {
	background: rgba(255, 255, 255, .3);
}
.contents-cpc-list-close {
	position: absolute;
	right: 18px;
	top: 18px;
	border: none;
	background: transparent;
	opacity: 0.5;
}
.contents-cpc-list-close:hover {
	opacity: 0.8;
}
.contents-pcmizer .pcmizer-cloud-bar {
	margin: 0 auto 20px;
}
.contents-right {
	width: 460px;
}
.contents-welcome {
	background: #fff;
	border-radius: 16px;
	padding: 20px 84px 20px 20px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.contents-welcome::after {
	content: "";
	display: block;
	height: 4px;
	background: #fd312e;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}
.welcome-text {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
    margin-top: 6px;
}
.contents-welcome .contents-welcome-img {
	position: absolute;
	top: 24px;
	right: 20px;
}
.contents-event {
	background: #fff;
	border-radius: 16px;
	padding: 24px 30px;
	margin-top: 30px;
	background-repeat: no-repeat;
	background-position: right bottom;
	min-height: 140px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.contents-event.pcmizer-on {
	min-height: 165px;
}
.event-title {
	font-size: 16px;
	font-weight: bolder;
	color: #d982ef;
	margin-top:10px;
}
.event-text {	
	margin-top:10px;
}
.event-title,
.event-text {	
	padding-right: 80px;
}
.contents-nudge {
	background: #fff;
	border-radius: 16px;
	padding: 24px 30px;
	margin-top: 30px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.nudge-info {
	display: flex;
}
.nudge-level-info {
	flex: auto;
	margin-left: 20px;
	padding-top: 4px;
}
.nudge-level {
	display: flex;
	justify-content: space-between;
	padding-bottom: 4px;
}
.nudge-level-number {
	font-size: 18px;
	font-weight: bold;
	color: #7cc884;
	line-height: 1.2;
}
.nudge-progress {
	height: 10px;
	border-radius: 5px;
	background: #e6e6e6;
	position: relative;
}
.nudge-progress-bar {
	height: 10px;
	border-radius: 5px;
	background: #7cc884;
	width: 0%;
	transition: width .7s;
}
.nudge-progress-bar:hover {
	width: 60%;
}
.nudge-progress-tooltip {
	color: #fff;
	background: #7cc884;
	padding: 0px 4px;
	border-radius: 4px;
	top: -30px;
	font-size: 12px;
	white-space: nowrap;
	position: absolute;
    left: 0%;
    transform: translateX(-50%);
	transition: left .7s;
	animation: fadeout .5s ease 2s forwards;
}
@keyframes fadeout {
    0%{opacity: 1;}
    100%{opacity: 0;}
}
.nudge-level:hover + .nudge-progress .nudge-progress-tooltip,
.nudge-progress:hover .nudge-progress-tooltip {
	animation: fadein .5s ease forwards;
}
.nudge-progress-tooltip::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background: #7cc884;
	position: absolute;
	bottom: -4px;
	left: 50%;
    transform: rotate(-45deg) translate(-50%,-50%);
}
.nudge-info-detail {
	margin-top: 16px;
}
.nudge-info-detail-list {
	margin-bottom: 0;
}
.nudge-info-detail-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.nudge-info-detail-number {
	font-size: 16px;
	font-weight: bold;
	color: #7cc884;
	line-height: 0;
}
.nudge-tip {
	margin-top: 16px;
}
.nudge-tip-badge {
	font-size: 10px;
	font-weight: bolder;
	color: #ff4800;
	border: 1px solid #ff4800;	
	border-radius: 20px;
	padding: 1px 6px;
	margin-right: 4px;
	line-height: 0;
}
/* Page Style : 접속 : loading */
.connect-block .cpc-check {
	display: flex;
	justify-content: center;
	margin: 230px 0 120PX;
	background: #fff;
	padding-bottom: 30px;
}
.connect-block .cpc-check-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-items: center;
}
.connect-block .cpc-check-icon-wrap {
	background: #fff;
	padding: 30px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	transform:translateY(-50%);
	text-align: center;
}
.connect-block .cpc-check-icon {
	display: block;
	width: 60px;
	height: 60px;
}
.connect-block i.cpc-check-icon {
	font-size: 60px;
	width: auto;
	height: auto;
}
.connect-block .cpc-check-feedback {
	font-size: 16px;
	margin: -35px 0 20px 0;
}
/* Page Style : 접속 : Cloud Disk */
.connect-block .disk-info {
	background: white;
	height: 365px;
	width: 400px;
	border-radius: 20px;
	margin-left: 50px;
	overflow: hidden;
}
.connect-block .disk-info .disk-title {
	position: relative;
	font-size: 18px;
	display: block;
	padding: 15px 20px 15px 25px;
	text-decoration: none;
	border-bottom: 1px solid #dee2e6;
}
.connect-block .disk-info .disk-list {
	max-height: 285px;
	overflow-y: auto;
	overflow-x: hidden;
}
.connect-block .disk-info .disk-list ul {
	margin: 0;
	padding-top: 10px;
}
.connect-block .disk-info .disk-list .disk-list-item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 9px  20px 9px 25px;
	transition: background-color .15s ease-out;
}
.connect-block .disk-info .disk-list .disk-list-item:hover {
	background: #f8f9fa;
}
.connect-block .disk-control {
	position: relative;
	width: 404px;
	height: 381px;
	background: url("../images/connect_disk.png") no-repeat left top;
	margin-right: 40px;
}
.connect-block .disk-control .disk-connect-wrap {
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	width: 370px;
	height: 280px;
	margin: 10px auto 0;
}
.connect-block .disk-control .disk-connect {
	position: relative;
	width: 100%;
	text-align: center;
	overflow-y: auto;
}
.connect-block .disk-control .disk-connect .disk-feedback {
	font-size: 16px;
	padding: 0 30px;
	margin-bottom: 30px;
}
.connect-block .disk-control .disk-animated {
	position: absolute;
	right: 42px;
	bottom: 48px;
	animation: disk-blink .5s infinite ease-in-out;
}
@keyframes disk-blink {
	0%, 100% { opacity: 0; }
	20% { opacity: 1; }
	40% { opacity: 0; }
	50% { opacity: 1; }
}
/* Page Style : 접속 : background */
.connect-background-full .connect-background {
	bottom: -17px;
	height: auto;
}
.connect-background-full .cpc-check {
    margin: 100px 0;
    padding-bottom: 30px;
}
.connect-background-full .cpc-check-inner {
	position: relative;
}
.connect-background-full .cpc-check-icon-wrap {
    transform: translateY(0%);
}
.connect-background-full .cpc-check-feedback {
	font-size: 18px;
	margin: 20px 0 30px;
}
.cpc-check-list {
	background: #fff;
	padding: 1rem 1.2rem;
	margin-bottom: 30px;
	min-width: 400px;
}
.cpc-check-list li {
	display: flex;
	justify-content: space-between;
	padding: 2px 0;
}
#modal-quick-guide .modal-content {
	overflow: hidden;
}
#modal-quick-guide .carousel-indicators {
	bottom: 16px;
}
#modal-quick-guide .carousel-item img {
	width: 100%;
}
/* Page Style : 접속 : Tranzfile */
.connect-block .tranz-info {
	width: 580px;
	height: 350px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
}
.connect-block .tranz-info .alert-light {
	border: none;
	background-color: transparent;
}
.connect-block .tranz-control {
	position: relative;
	width: 400px;
	height: 350px;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
}
.connect-block .tranz-control .tranz-connect-wrap {
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	width: 380px;
	height: 330px;
	margin: 10px auto 0;
	background: #4b515b;
	border-radius: 10px;
}
.connect-block .tranz-control .tranz-connect {
	position: relative;
	width: 100%;
	text-align: center;
	overflow-y: auto;
}
.connect-block .tranz-control .tranz-connect .tranz-feedback {
	font-size: 16px;
	padding: 0 30px;
	margin-bottom: 30px;
	color: #fff;
}
/* Page Style : 접속 : App */
.app-background {
	height: 270px;
	background-image: url("../images/custom/app_bg.jpg");
	background-position: top center;
}
.connect-app-block {
	background: #fff;
	margin: 40px 0;
}
.connect-app-block .app-list {
	border: 1px solid rgba(0, 0, 0, 0.125);
	margin-top: 10px;
	padding: 10px;
}
.connect-app-block .app-list ul,
.connect-app-block .app-list dl {
	margin: 0;
}
.connect-app-block .app-list li {
	cursor: pointer;
	transition: background-color .2s ease-out;
}
.connect-app-block .app-list li:hover {
	background: #f8f9fa;
}
.connect-app-block .app-list li a {
	display: block;
	text-decoration: none;
}
.connect-app-block .app-list .app-title {
	font-weight: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.connect-app-block .app-list .app-desc {
	display: none;
}
/* view-large */
.connect-app-block .app-list.view-large ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	padding: 5px 0;
}
.connect-app-block .app-list.view-large li {
	width: 112px;
	margin: 5px;
	padding: 5px;
	text-align: center;
}
.connect-app-block .app-list.view-large li a {
	padding-top: 8px;
}
.connect-app-block .app-list.view-large dl {
	margin: 0;
}
.connect-app-block .app-list.view-large .app-icon {
	width: 64px;
	height: 64px;
}
.connect-app-block .app-list.view-large .app-title {
	margin-top: 5px;
}
/* view-default */
.connect-app-block .app-list.view-default ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
}
.connect-app-block .app-list.view-default li {
	width: 87px;
	margin: 5px;
	padding: 5px;
	text-align: center;
}
.connect-app-block .app-list.view-default li a {
	padding-top: 8px;
}
.connect-app-block .app-list.view-default dl {
	margin: 0;
}
.connect-app-block .app-list.view-default .app-icon {
	width: 32px;
	height: 32px;
}
.connect-app-block .app-list.view-default .app-title {
	margin-top: 5px;
}
/* view-list */
.connect-app-block .app-list.view-list ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.connect-app-block .app-list.view-list ul li {
	width: 25%;
	padding: 5px 10px;
}
.connect-app-block .app-list.view-list ul li a {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.connect-app-block .app-list.view-list dl {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.connect-app-block .app-list.view-list .app-icon {
	width: 16px;
	height: 16px;
}
.connect-app-block .app-list.view-list .app-title {
	padding-left: 10px;
}
/* view-desc */
.connect-app-block .app-list.view-desc ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.connect-app-block .app-list.view-desc ul li {
	width: 100%;
	padding: 5px 10px;
}
.connect-app-block .app-list.view-desc ul li a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.connect-app-block .app-list.view-desc .app-icon {
	margin-top: 4px;
	width: 16px;
	height: 16px;
}
.connect-app-block .app-list.view-desc dl {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
}
.connect-app-block .app-list.view-desc .app-title {
	flex: 0 0 150px;
	padding-left: 10px;
}
.connect-app-block .app-list.view-desc .app-desc {
	display: block;
	padding-left: 10px;
	margin: 0;
}
/* Page Style : 접속 : 프로그램 설치하기 */
.connect-download-block {
	text-align: center;
	padding: 40px 20px;
	margin: 40px 0;
	background: #edf0f6;
}

/* Page Style : 접속 : Chatbot */
.connect-chatbot-block {
	margin: 40px 0
}
.connect-chatbot-block .connect-chatbot-header {
	display: flex;
	align-items: flex-end;
    justify-content: space-between;
	margin-bottom: 16px;
}
.connect-chatbot-block .connect-chatbot-header .connect-chatbot-title {
	font-weight: bold;
	padding-right: 41px;
	margin-bottom: 0;
	background: url(../images/connect_icon_chat.png) no-repeat right center;
}
.connect-chatbot-block .connect-chatbot-contents {
	border: 1px solid #e4e5e5;
	border-radius: 0.5rem;
	padding: 10px 20px 10px 20px;
	margin-bottom: 16px;
	height: 300px;
	overflow-y: scroll;
}
.connect-chatbot-block .chatbot-message-a,
.connect-chatbot-block .chatbot-message-q {
	font-size: 14px;
}
.connect-chatbot-block .chatbot-message-a {
	padding: 12px 10px 12px 39px;	
	margin-bottom: 10px;
	background: url(../images/connect_icon_chatbot.png) no-repeat left 10px;
}
.connect-chatbot-block .chatbot-message-q {
	display: flex;
    justify-content: flex-end;
	margin-bottom: 16px;
}
.connect-chatbot-block .chatbot-message-q-content {
	color: #fff;
	padding: 12px 49px 12px 20px;
	max-width: 90%;
	border-radius: 12px 12px 0 12px;
	background: #7e7c77 url(../images/connect_icon_user.png) no-repeat right 10px;
}
.connect-chatbot-input {
	position: relative;
}
.connect-chatbot-input .form-control {
	background: #f7f8fa;
	border-color: #f7f8fa;
	border-radius: 8px;
	padding: 20px 20px 20px 16px;
}
.connect-chatbot-input .connect-chatbot-send {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border: none;
	font-size: 20px;
	background: transparent;
	opacity: 0.2;
}
.connect-chatbot-input .connect-chatbot-send:hover {
	opacity: 0.6;
}

/* Page Style : 접속 : FAQ */

.connect-faq-block .faq-search {
	position: relative;
	width: 460px;
	margin: 0 auto 30px;
}
.connect-faq-block .faq-search label {
	position: absolute;
	left: 0;
	top: -9px;
	font-size: 30px;
	font-weight: 600;
}
.connect-faq-block .faq-search input[type=text] {
	font-size: 20px;
	width: 100%;
	height: 42px;
	background: transparent;
	border-bottom-style: solid;
	border-width: 0 0 1px 0;
	padding: 0 40px 8px 75px;
}
.connect-faq-block .faq-search .btn {
	position: absolute;
	right: 0;
	top: 1px;
	font-size: 22px;
}
/* FAQ 폰트컬러 설정 */
.connect-faq-block .faq-search label,
.connect-faq-block .faq-search input[type=text],
.connect-faq-block .faq-search .btn {
	color: #000;
}

.connect-faq-block .faq-search input[type=text]::-webkit-input-placeholder { /* Edge */
	color: #000;
	opacity: 0.6;
}
.connect-faq-block .faq-search input[type=text]:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #000;
	opacity: 0.6;
}
.connect-faq-block .faq-search input[type=text]::placeholder {
	color: #000;
	opacity: 0.6;
}
.connect-faq-block .faq-search input[type=text] {
	border-bottom-color: #000;
}
.connect-faq-block .faq-more {
	position: absolute;
	top:8px;
	left: 750px;
}

.connect-faq-block {
	margin: 40px 0;
}
.connect-faq-block .accordion.faq-list .card-header {
	display: flex;
	flex-direction: column;
	padding: 15px 20px;
	background: #fff;
	cursor: pointer;
}
.connect-faq-block .accordion.faq-list .card-body {
	padding: 15px 20px 25px;
	background: #f9f9f9;
	border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.connect-faq-block .accordion.faq-list .category-wrap  {
	margin-bottom: 5px;
}
.connect-faq-block .accordion.faq-list .category-wrap .category {
	font-size: 11px;
	color: #aaa;
	padding: 1px 4px;
	border: 1px solid #ddd;
	border-radius: 3px;
	cursor: default;
}
.connect-faq-block .accordion.faq-list .faq-title-wrap{
	padding-left: 30px;
}
.connect-faq-block .accordion.faq-list .faq-title-wrap .badge-q  {
	color: #d80546;
	margin-right: 5px;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 700;
}
.connect-faq-block .accordion.faq-list .faq-title-wrap .faq-title  {
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
	text-indent: -24px;
}
.connect-faq-block .accordion.faq-list .card-header:hover .faq-title-wrap .faq-title  {
	color: #666;
}
.connect-faq-block .accordion.faq-list .faq-answer-wrap .badge-a  {
	color: #4ea1ff;
	float: left;
	margin: -2px 0 0 6px;
	font-size: 16px;
	font-weight: 700;
}
.connect-faq-block .accordion.faq-list .faq-answer-wrap .faq-answer  {
	font-size: 14px;
	margin-left: 30px;
}
.connect-faq-block .accordion.faq-list .faq-file  {
	padding: 8px 10px;
	margin-top: 15px;
	background: #f1f1f1;
	border: 1px solid #f1f1f1;
	transition: background-color .15s ease-out;
}
.connect-faq-block .accordion.faq-list .faq-file:hover  {
	background: #fff;
}
.connect-faq-block .accordion.faq-list .faq-file a {
	margin-right: 20px;
	display: inline-block;
}
/* Page Style : 접속 : FAQ + Notice */
.connect-faq-notice-block {
	margin: 40px 0;
}
.connect-faq-notice-block .faq-notice-container .faq,
.connect-faq-notice-block .faq-notice-container .notice {
	width: 47%;
}
.connect-faq-notice-block .notice-title {
	position: relative;
	padding-right: 80px;
}
.connect-faq-notice-block .notice-date {
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0.5;
}
/* Page Style : 접속 : 서비스가이드 */
.connect-service-link {
	margin: 40px 0;
	/* 디자인 수정안 (배경컬러)
	margin: 30px 0 0;
	padding: 30px 0;
	background: #f9f9f9;
	*/
}
.connect-service-link .service-link-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.connect-service-link .service-link-item {
	width: 33%;
	margin: 0 5px;
	text-align: center;
	border: 1px solid #ccc;
	padding: 30px 10px;
	text-decoration: none;
}
.connect-service-link .service-link-item i {
	color: #ccc;
	font-size: 24px;
	vertical-align: middle;
}
.connect-service-link .service-link-item:hover i {
	color: #999;
}
/* Page Style : 접속 : 서비스가이드 Floating */
.floating-right-block {
	position: fixed;
	top: 170px;
	left: 50%;
	width: 90px;
	margin-left: 530px;
	z-index: 4;
	display: flex;
	flex-direction: column;
    align-items: center;
}
.connect-service-link-floating .service-link-item {
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	margin: 10px 0;
	word-wrap: break-word;
	overflow: hidden;
	transition: background-color 0.2s ease-in-out;
	line-height: 1.3;
}
.connect-service-link-floating .service-link-item:hover {
	text-decoration: none;
	color: #000;
	background: #ddd;
	border-color: #fff;
}
.connect-service-link-floating .service-link-item i {
	display: block;
	opacity: 0.5;
	font-size: 30px;
	line-height: 60px;
	transition: all 0.3s ease-in-out;
}
.connect-service-link-floating .service-link-item:hover i {
	transform: translateY(-100%);
}
.connect-service-link-floating .service-link-item span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	font-size: 12px;
	text-align: center;
	word-break: keep-all;
	transition: all 0.3s ease-in-out;
}
.connect-service-link-floating .service-link-item:hover span {
	transform: translateY(-100%);
}
.connect-service-link-floating.ko-kr .service-link-item span {
	font-size: 11px;
	letter-spacing: -1px;
}
.connect-service-link-floating.en-us .service-link-item span {
	font-size: 11px;
}
.connect-service-link-floating.zh-cn .service-link-item span {
	white-space: pre-line;
	word-break: break-all;
	font-size: 13px;
}
.connect-service-link-floating.ja-jp .service-link-item span {
	white-space: pre-line;
	word-break: break-all;
	font-size: 12px;
}
.connect-service-link-floating.vi-vn .service-link-item span {
	font-size: 12px;
}

/* Page Style : 접속 : 서비스가이드 Floating 2 */
.connect-service-link-floating2 {
	position: fixed;
	right: 14px;
	bottom: 85px;
	transition: all 0.2s ease-in-out;
	z-index: 4;
}
.connect-service-link-floating2 .service-link-item2 {
	display: block;
	width: 32px;
	height: 32px;
	text-align: center;
	background: #999;
	border: 1px solid #999;
	border-radius: 50%;
	margin-bottom: 7px;
	word-wrap: break-word;
	letter-spacing: -1px;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}
.connect-service-link-floating2 .service-link-item2:hover {
	text-decoration: none;
	background: #fff;
	border-color: #ccc;
	transform: scale(1.3);
	transform-origin: center center;
}
.connect-service-link-floating2 .service-link-item2 i {
	color: #fff;
	font-size: 15px;
	line-height: 31px;
}
.connect-service-link-floating2 .service-link-item2:hover i {
	color: #aaa;
}
.connect-service-link-floating2 .service-link-item2 span {
	display: none;
}

/* Page Style : 접속 : Floating Banner Right */
#carouselBannerRight {
	width: 90px;
	padding-bottom: 36px;
	margin: 10px 0 0;
}
#carouselBannerRight .carousel-indicators li {
	width: 10px;
	height: 10px;
}
#modal-banner-right .modal-header {
	background: url(../images/promotion_header_bg.png) center top no-repeat;
}
#modal-banner-right .modal-title {
	color: #714db3;
}
.event-counter {
	background: #49a902 url(../images/connect_bnr_event_bg.png) no-repeat -10px 16px;
	width: 100%;
	height: 60px;
	color: #fff;
	text-align: center;
	padding: 10px 0 10px 20px;
	margin-top: -36px;
	line-height: 19px;
}
.event-counter-number {
	color: #fcff00;
	font-size: 16px;
	font-weight: bold;
}
.event-counter-end {
	background: #000;
	width: 100%;
	height: 40px;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	margin-top: -36px;
}/*
.event-info {
	position: relative;
	display: flex;
	background: #f0ece4;
	padding: 1rem 1.2rem;
	border-radius: 4px;
	margin-top: 0.5rem;
}
*/

/*
.table-borderless-wrap {
	position: relative;
}
.event-info {
	position: absolute;
	top: 78px;
	right: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	background: #f0ece4;
	padding: 1rem 1.2rem;
	border-radius: 4px;
}*/
.page-body {
	position: relative;
}
.event-info {
	position: absolute;
    right: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    background: #f0ece4;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    margin-top: -117px;
}
.event-info-count {
	background: url(../images/event_count_bg.png) no-repeat 20px 10px;
	min-height: 60px;
	padding: 0 60px 0 110px;
	margin-right: 40px;
	border-right: rgba(0, 0, 0, 0.1) 1px solid;
	font-weight: bold;
	line-height: 1;
	min-width: 350px;
}
.event-info-count-title {
	color: #87754f;
	display: block;
	margin: 10px 0 8px;
}
.event-info-number {
	font-size: 30px;
	font-weight: bold;
	color: #ff7e00;
}
.event-info-text {
	
}
.event-info-title {
	font-size: 18px;
	font-weight: bold;
}
.event-info-desc {
	margin: 4px 0 0 0;
	color: #87754f;
	line-height: 1.6;
}
.event-info .event-info-close {
	position: absolute;
	right: 8px;
	top: 8px;
	border: none;
	opacity: 0.5;
}
.event-info .event-info-close:hover {
	opacity: 0.8;
}

/* Page Style : Management : 서비스신청 */
.application-icon-wrap {
	width: 40px;
	text-align: center;
}
.disk-author-list .list {
	display:inline-block;
	width:49%;
}
.disk-author-list .list.add {
	float:left;
}
.disk-author-list .list.del {
	float:right;
}
.disk-author-list .list .title {
	text-align:center;
	padding:10px 10px;
	background:#f1f1f1;
	margin: 0;
	font-size: 14px;
}
.disk-author-list .list.add .title {
	background:#cfe5ff;
	border:1px solid #bcdaff;
	color:#144187;

}
.disk-author-list .list.del .title {
	background:#f5d7da;
	border:1px solid #f1c6cb;
	color:#6d1b22;
}
.disk-author-list .list.add ul {
	border:1px solid #bcdaff;
	border-width:0 1px 1px 1px;
	margin: 0;
}
.disk-author-list .list.del ul {
	border:1px solid #f1c6cb;
	border-width:0 1px 1px 1px;
	margin: 0;
}
.disk-author-list .list ul {
	overflow: auto;
}
.disk-author-list .list ul.scroll {
	height: 300px;
}
.disk-author-list .list ul li {
	padding: 3px 10px;
	height: 24px;
	white-space: nowrap;
}
.disk-author-list .list.disable .title {
	background: #f5f5f5;
	border: 1px solid #ddd;
	color: #bbb;
}
.disk-author-list .list.disable ul {
	border: 1px solid #ddd;
	border-width: 0 1px 1px 1px;
}
/* 셔틀 ui */
.tree-menu-wrap {
	border: 1px solid #ddd;
}
.tree-menu-wrap .search-block {
	margin: 0;
}
.tree-menu-wrap .tree-menu {
	overflow: auto;
}
.shuttle-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.shuttle-left, .shuttle-right {
	width: 100%;
}
.shuttle-right .shuttle-control {
	display: flex;
}
.shuttle-right .shuttle-control .shuttle-list-wrap {
	width: 100%;
}
.shuttle-list-wrap {
	border: 1px solid #ddd;
}
.shuttle-list-wrap .shuttle-title {
	font-weight: bolder;
	text-align: center;
	padding: 5px 10px;
	background: #f6f7f8;
	border-bottom: 1px solid #ddd;
}
.shuttle-list-wrap .shuttle-tag {
	padding: 6px 10px;
	color: #fff;
	background: #5c6c7c;
}
.shuttle-list-wrap .shuttle-list {
	height: 100px;
	overflow: auto
}
.shuttle-list-wrap .shuttle-list.em-color {
	background: #fff3cd;
}
.shuttle-list-wrap .shuttle-list ul {
	display: table;
	min-width: 100%;
	margin: 0;
}
.shuttle-list-wrap .shuttle-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.shuttle-list-wrap .shuttle-list li.shuttle-list-disabled {
	background: #ddd;
	opacity: 0.7;
}
.shuttle-list-wrap .shuttle-list li.shuttle-list-selected {
	background: #bee5eb;
}
.shuttle-list-wrap .shuttle-list li .shuttle-list-left {
	white-space: nowrap;
	margin-right: auto;
}
.shuttle-list-wrap .shuttle-list li .shuttle-list-right {
	margin-left: 5px;
}
.shuttle-send-left-right {
	position: relative;
	margin: 0 15px;
	text-align: center;
	align-self: center;
}
.shuttle-send-btn-left,
.shuttle-send-btn-right {
	margin: 5px 0;
}
.shuttle-send-up-down {
	margin: 10px 0;
	text-align: center;
}
.shuttle-move-up-down {
	margin-left: 10px;
	text-align: center;
	align-self: center;
}
.shuttle-move-up-down .shuttle-move-btn-up {
	margin: 5px 0;
}
.drag-drop-grap-list {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #FFFFFF;
	padding: 14px 20px 16px;
	border: 1px dashed #000000;
	border-radius: 4px;
	max-width: 400px;
	z-index: 10000;
}
.drag-drop-grap-list li {
	text-align: left;
}

.LblockTree {border:1px solid #ddd; background:url("../images/tree_loading.gif") no-repeat center center; margin:0 0 10px 0;}
.LblockTree a {text-decoration:none;}
.LblockTree a:link, .LblockTree a:visited {color:#646656;}
.LblockTree.noLoading {background:none;}
.LblockTree > ul {display:none;}

/* /셔틀 ui */

/* Page Style : Admin : 환경설정관리 */
.config-login {
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, .5);
}
.config-login-box {
	width:700px;
	text-align:center;
	background: #f5f5f5;
	padding: 20px;
	margin: 20px auto;
}
.config-select {
	font-size: 13px;
	color: rgba(0, 0, 0, .6);
	border: 1px dashed rgba(0, 0, 0, .2);
	background: transparent;
	padding: 5px 10px;
}
.config-select:hover {
	color: rgba(0, 0, 0, .8);
	border: 1px solid rgba(0, 0, 0, .4);
	background: rgba(0, 0, 0, .05);
}
.config-select.active {
	color: #d80546;
	font-weight: bold;
	background: #f8d7da;
	border: 1px solid #d80546;
}
.config-select-block {
	display: block;
	width: 100%;
}
.btn-color-palette {
	position: relative;
	float:left;
	width:10%;
	height:30px;
	border-width: 0;
	border-radius: 0;
}
.btn-color-palette::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #fff;
	opacity: 0;
	background: transparent;
}
.btn-color-palette:hover::after {
	opacity: 1;
}

/* Page Style : Admin : 환경설정관리 */
.process-text-guide {
	background: #f9f9f9;
	padding: 20px 20px;
}
.process-text-guide .process-text-guide-section {
	font-weight:bold;
	border: 1px dashed rgba(0, 0, 0, .2);
	background: transparent;
	padding: 5px 10px;
	margin: 15px 0;
	color: rgba(0, 0, 0, .6);
	text-align: center;
}
.process-text-guide .process-text-guide-section:first-child {
	margin-top:0;
}
.process-text-guide .process-text-guide-section:last-child {
	margin-bottom:0;
}

/* Popup : Window popup
---------------------------------------------------------*/
#main.popup {

}
#main.popup nav {
	display: none;
}
#main.popup .page-header {
	padding: 0 15px 0 20px;
	background: #343a40;
}
#main.popup .page-header .page-title {
	font-size: 20px;
	font-weight: normal;
	color: #fff;
}
#main.popup .page-header .close {
	margin-top: -8px;
}
/* main-notice */
.pop-notice-wrap {
	margin: -30px;
}
.pop-notice-title {
	padding: 15px 20px;
	background: #f5f5f5;
	border-bottom: 1px solid #ddd;
}
.pop-notice-content {
	overflow: auto;
	height: 460px;
	padding: 20px;
}

/* Popup : Smart popup
---------------------------------------------------------*/
#main.s-popup {

}
#main.s-popup nav {
	display: none;
}
#main.s-popup .page-header {
	padding: 1rem 1rem;
	background: #fff;
	border-bottom: 1px solid #ccc;
}
#main.s-popup .page-header .page-title {
	font-size: 20px;
	font-weight: 500;
}
#main.s-popup .page-body {
	padding: 30px;
}
#main.s-popup .page-header .close {
	display: none;
}
#main.s-popup .page-header-dark {
	background: #343a40;
}
#main.s-popup .page-header-dark .page-title {
	color: #fff;
}
#main.s-popup .modal-content {
	border: none !important;
}
#main.s-popup .modal-header-dark {
	border-radius: 0 !important;
}
/* Popup : Smart popup : promotion
---------------------------------------------------------*/
#main.s-popup .page-header.page-header-promotion {
	padding: 3rem !important;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 97px;
	background: #fff url(../images/promotion_header_bg.png) center top no-repeat;
	background-size: cover;
}
#main.s-popup .page-header.page-header-promotion .page-title {
	color: #714db3;
	font-weight: bold;
}
#main.s-popup .page-body.page-body-promotion {
	padding: 3rem !important;
	position: fixed;
	top: 97px;
	right: 0;
	left: 0;
	bottom: 64px;
	overflow-y: auto;
}
#main.s-popup .modal-footer {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	height: 64px;
	background: #fff;
}

/* Bootstrap custom
---------------------------------------------------------*/
input, textarea, select, .btn,
.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: none !important;
}
.form-control:focus {
	color: #495057;
	background-color: #fff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control-xs {
	height: calc(1.5em + 0.2rem + 2px);
	padding: 0.13rem 0.25rem;
	font-size: 0.75rem;
	line-height: 1.5;
}
.custom-checkbox .custom-control-label::before {
	box-shadow: none !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
	box-shadow: none;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
	border-color: #888;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
	color: #fff;
	background: #ddd;
	border-color: #ccc;
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
	color: #fff;
	background: #ccc;
	border-color: #bbb;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(0, 0, 0, 0.1);
}

.custom-btn-select .btn {
	padding: 4px 16px !important;
	border-radius: 20px !important;
	border: 1px dashed #888;
	color: #555;
}
.custom-btn-select .btn:hover {
	color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #d80546;
}
.nav-border {
	border-bottom: 1px solid #dee2e6;
  }

.nav-border .nav-item {
	margin-bottom: -1px;
}

.nav-border .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}

.nav-border .nav-link:hover {
	border-bottom: 2px solid #d80546;
}

.nav-border .nav-link.disabled {
	color: #6c757d;
	background-color: transparent;
	border-color: transparent;
}

.nav-border .nav-link.active,
.nav-border .nav-item.show .nav-link {
	color: #495057;
	background-color: #fff;
	border-bottom: 2px solid #d80546;
}

.dropdown-toggle.arrow-none::after {
	display: none;
}
.dropdown-menu {
	font-size: 0.8125rem;
}
.dropdown-item {
	padding: 0.2rem 0.9375rem ;
}
.dropdown-item.active, .dropdown-item:active {
	color: #222;
	text-decoration: none;
	background-color: #edf1f5;
}
.btn-gray {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #ddd;
}
.btn-gray:hover {
	color: #212529;
	background-color: #fff;
	border-color: #ccc;
}
.btn-gray.disabled, .btn-gray:disabled {
	color: #212529;
	background-color: #fff;
	border-color: #eee;
}
.btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active,
  .show > .btn-gray.dropdown-toggle {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #ccc;
}
.btn-light {
	color: #212529;
	background-color: #fff;
	border-color: #ddd;
}
.btn-light:hover {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #ccc;
}
.btn-light.disabled, .btn-light:disabled {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #eee;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  .show > .btn-light.dropdown-toggle {
	color: #212529;
	background-color: #dae0e5;
	border-color: #ccc;
}
.btn-primary.disabled, .btn-primary:disabled, .btn-primary.disabled:hover {
	color: #fff !important;
	background-color: #ccc !important;
	border-color: #bbb !important;
}
.btn-lg, .btn-group-lg > .btn {
	font-size: 1.125rem;
}
.btn-sm, .btn-group-sm > .btn {
	font-size: 0.875rem;
}
.btn-xs, .btn-group-xs > .btn {
	font-size: 0.75rem;
	padding: 0.13rem 0.35rem;
}
.btn-link {
	font-weight: 400;
	color: #007bff;
	text-decoration: none;
}
.btn-link:hover {
	color: #0056b3;
	text-decoration: underline;
}
.btn-transparent {
	padding: 0;
	border: none;
	background: transparent;
}
.btn-connect {
	color: #fff;
	background-color: #11a2ef;
	border-color: #11a2ef;
}
.btn-connect:hover {
	color: #fff;
	background-color: #108fd3;
	border-color: #0c81c0;
}
.btn-connect-tranzfile {
	color: #fff;
	background-color: #57c3d0;
	border-color: #57c3d0;
}
.btn-connect-tranzfile:hover {
	color: #fff;
	background-color: #3aa4b1;
	border-color: #3aa4b1;
}
.btn-screen {
	color: rgba(255, 255, 255, 0.6);
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.2);
	padding: 0.5rem 0.8rem 0.5rem 1rem;
}
.btn-screen:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.1);
}
.btn-power {
	color: #fff;
	background-color: #6b9e0b;
	border-color: #4f7e06;
}
.btn-power:hover {
	color: #fff;
	background-color: #5d8f09;
	border-color: #4f7e06;
}
.btn-logoff {
	color: #fff;
	background-color: #d75229;
	border-color: #c54a25;
}
.btn-logoff:hover {
	color: #fff;
	background-color: #c54a25;
	border-color: #b8431f;
}
.badge-dedicated {
	font-size: inherit;
	font-weight: 600;
	padding: 5px;
	color: #fff;
	/*background: #11a2ef;*/
	background: #aaa;
}
.badge-shared {
	font-size: inherit;
	font-weight: 600;
	padding: 5px;
	color: #fff;
	/*background: #50b043;*/
	background: #aaa;
}
.breadcrumb {
	margin-bottom: 0;
	padding: 0;
	background: none;
}
.page-link {
	color: #888;
	background-color: #fff;
	border: 1px solid #dee2e6;
}
.page-link:hover {
	color: #555;
	background-color: #e9ecef;
	border-color: #dee2e6;
}
.page-link:active, .page-link:focus {
	box-shadow: none;
}
.page-item.active .page-link {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
	box-shadow: none;
}
.page-item.disabled .page-link {
	color: #ccc;
	background-color: #fff;
	border-color: #dee2e6;
}
small, .small {
	font-size:80%;
}
.modal-title {
	font-size: 20px;
}
.modal-body {
	padding: 30px
}
.modal-header-dark {
	background: #343a40;
	border-color: #454d55;
}
.modal-header-dark .modal-title {
	color: #fff;
}
.modal-header-dark .close {
	color: #fff !important;
	text-shadow: 0 1px 0 #000;
}
.table-hover tbody tr:hover {
	background: rgba(0, 0, 0, .05);
}
.table-danger-light,
.table-danger-light > th,
.table-danger-light > td {
  background-color: #ffe4e6;
}
.accordion > .card {
	margin-top: -1px;
}
.accordion > .card:first-of-type {
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion > .card:last-of-type {

}
.accordion > .card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.modal-backdrop {
	width: 100%;
	height: 100%;
}
.tooltip-inner {
	max-width:400px;
	border: 1px solid #000 !important;
}

/* Chatbot
-------------------------------------------------------------------------- */
/* Chatbot : header */
.chatbot-header {
	display: block;
	align-self: center;
	padding: 5px 10px;
	overflow: hidden;
}
/* Chatbot : header */
.chatbot-wrap {
	position: fixed;
	right: 10px;
	top: 110px;
	width: 57px;
	height: 58px;
	z-index: 9999;
}
.chatbot {
	display: block;

}
.chatbot-info {
	position:fixed;
	right:80px;
	top:105px;
	width: 0;
	max-width: 390px;
	opacity:0;
	background:#42474b;
	color:#fff;
	overflow:hidden;
	border-radius:10px;
	transition: all 0.2s ease-in-out;
}
.chatbot-info span {
	display: block;
	padding:8px 14px;
}
.chatbot-info:after {
	position:absolute;
	top: 50%;
	right: -5px;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #42474b;
	transform: translateY(-50%) rotate(-45deg);
}
.chatbot-wrap:hover .chatbot-info {
	width: auto;
	opacity: 1;
	overflow: visible;
}
.chatbot-close {
	position: absolute;
	right: -3px;
	top: -3px;
	display: block;
	width: 19px;
	height: 19px;
	text-indent: -9999px;
	overflow:hidden;
	background: url(../images/custom/chatbot_close.png) 0 0 no-repeat;
}
.chatbot-close:hover {
	background-position: 0 -19px;
}
/* Chatbot : login */
.chatbot-wrap.login {
	top: 50px;
}
.chatbot-wrap.login .chatbot-info {
	top: 48px;
	bottom: auto;
}
/* Chatbot : bottom */
.chatbot-wrap.bottom {
	top: auto !important;
	bottom: 48px !important;
}
.chatbot-wrap.bottom .chatbot-info {
	top: auto !important;
	bottom:50px !important;
}
.connect-service-link-floating2.chatbot-bottom {
	bottom: 145px !important;
}
.go-top.chatbot-bottom {
	bottom: 115px !important;
}

/* PCmizer : Local header */
.pcmizer-local {
	position: relative;
	margin: 0 20px 0 0;
	align-self: center;	
}
.pcmizer-local-btn {	
	display: block;
	width: 40px;
	height: 40px;
	text-indent: -9999px;
	background: url("../images/pcmizer/local_pc.png") center center no-repeat;
	border-radius: 50%;
	border: none;
}
.pcmizer-local-status {	
	position: absolute;
	top: 0;
	right: -10px;
	display: block;
	width: 21px;
	height: 21px;
	text-indent: -9999px;
	background: url("../images/pcmizer/local_badge.png") 0 0 no-repeat;
	overflow: hidden;
}
.pcmizer-local-normal {
	background-position: 0px 0px;
}
.pcmizer-local-warning {
	background-position: -21px 0px;
}
.pcmizer-local-danger {
	background-position: -42px 0px;
}
.pcmizer-cloud {
	position: relative;
	margin: 0 15px 0 0;
	align-self: center;	
}
.pcmizer-cloud-btn {	
	display: block;
	width: 31px;
	height: 31px;
	text-indent: -9999px;
	background: url("../images/pcmizer/cloud_pc.png") center center no-repeat;
	border-radius: 50%;
	border: none;
}
.pcmizer-cloud-status {	
	position: absolute;
	top: 0;
	right: -10px;
	display: block;
	width: 17px;
	height: 17px;
	text-indent: -9999px;
	background: url("../images/pcmizer/cloud_badge.png") 0 0 no-repeat;
	overflow: hidden;
}
.pcmizer-cloud-normal {
	background-position: 0px 0px;
}
.pcmizer-cloud-warning {
	background-position: -17px 0px;
}
.pcmizer-cloud-danger {
	background-position: -34px 0px;
}
.pcmizer-local-btn, .pcmizer-cloud-btn, .pcmizer-float {
	background-color: #3e444f !important;
}
.pcmizer-local-btn:hover, .pcmizer-cloud-btn:hover, .pcmizer-float:hover {
	background-color: #2c608d !important;
}
.pcmizer-trend-warning {
	background-color: #f59803 !important;
}
.pcmizer-trend-warning:hover {
	background-color: #f5a803 !important;
}
.pcmizer-trend-danger {
	background-color: #be0008 !important;
}
.pcmizer-trend-danger:hover {
	background-color: #d8000b !important;
}
.pcmizer-loading, .pcmizer-loading:hover {
	background-color: #3e444f !important;
	opacity: 0.2;
}
.pcmizer-local-btn.pcmizer-trend-warning,
.pcmizer-local-btn.pcmizer-trend-danger {
    background-image: url(../images/pcmizer/local_pc_white.png) !important;
}
.pcmizer-cloud-btn.pcmizer-trend-warning,
.pcmizer-cloud-btn.pcmizer-trend-danger {
    background-image: url(../images/pcmizer/cloud_pc_white.png) !important;
}
.pcmizer-float.pcmizer-trend-warning .pcmizer-local-icon,
.pcmizer-float.pcmizer-trend-danger .pcmizer-local-icon {
	background: url(../images/pcmizer/local_pc_float_white.png) center center no-repeat !important;
}
.pcmizer-float {
	border: none !important;
}
.pcmizer-float .pcmizer-local-icon {
	background: url(../images/pcmizer/local_pc_float.png) center center no-repeat;
}
.pcmizer-float span {
	color: #fff !important;
	letter-spacing: 0 !important;
}
.pcmizer-float .pcmizer-local-status {
	top: 10px;
	right: 10px;
}
.pcmizer-cloud-bar { 
	display: flex;
	align-items: center;
	position: relative;
	margin: 90px auto 20px;
	padding-left:5px;
	border-radius: 18px;
	height: 32px;
	width: 466px;
	background: #222;
}
.pcmizer-cloud-bar-status {
	display: block;
	width: 22px;
	height: 22px;
	background: url(../images/pcmizer/cloud_bar_badge.png) -44px 0px no-repeat;
	margin-right: 8px;
}
.pcmizer-cloud-bar.normal .pcmizer-cloud-bar-status {
	background-position: 0px 0px;
}
.pcmizer-cloud-bar.warning .pcmizer-cloud-bar-status {
	background-position: -22px 0px;
}
.pcmizer-cloud-bar.danger .pcmizer-cloud-bar-status {
	background-position: -44px 0px;
}
.pcmizer-cloud-bar.trend.warning .pcmizer-cloud-bar-status,
.pcmizer-cloud-bar.trend.danger .pcmizer-cloud-bar-status {
	background-position: -66px 0px;
}
.pcmizer-cloud-bar-status-title {
	margin-right: 12px;
	font-weight: bold;
}
.pcmizer-cloud-bar.normal .pcmizer-cloud-bar-status-title {color: #22b269; }
.pcmizer-cloud-bar.warning .pcmizer-cloud-bar-status-title { color: #ffb53e; }
.pcmizer-cloud-bar.danger .pcmizer-cloud-bar-status-title { color: #f63954; }
.pcmizer-cloud-bar.trend.warning { background: #ffb53e; }
.pcmizer-cloud-bar.trend.danger { background: #f63954; }
.pcmizer-cloud-bar.trend.warning .pcmizer-cloud-bar-status-title { color: #680000; }
.pcmizer-cloud-bar.trend.warning .pcmizer-cloud-bar-status-desc { color: #680000; }
.pcmizer-cloud-bar.trend.danger .pcmizer-cloud-bar-status-title { color: #fff; }
.pcmizer-cloud-bar-status-desc {
	color: #fff;
}
.pcmizer-cloud-bar-button {
	margin-left: auto; width: 54px; height: 54px; border-radius: 50%; border: #222 4px solid; cursor: pointer; background-color: #fff; overflow: hidden;
}
.pcmizer-cloud-bar-button:hover {
	transition: border-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s, border-left-color 0.15s linear 0.3s; transform-origin: left
}
.pcmizer-cloud-bar.normal .pcmizer-cloud-bar-button:hover { border-color: #22b269; }
.pcmizer-cloud-bar.warning .pcmizer-cloud-bar-button:hover { border-color: #ffb53e; }
.pcmizer-cloud-bar.danger .pcmizer-cloud-bar-button:hover { border-color: #f63954; }
.pcmizer-cloud-bar-badge {
	position: absolute; top: -21px; right: 1px;
}
.pcmizer-cloud-bar-mouse {
	position: absolute; bottom: -16px; right: -6px;
}
.pcmizer-cloud-bar-mouse-effect {
	position: absolute; bottom: -7px; right: 4px;
}
.pcmizer-bar-loading {
	opacity: 0.3;
}
.pcmizer-bar-loading::before {
	content: "Loading...";
	display: inline-block;
	color: #fff;
	opacity: 1;
	margin-left: 12px;
}
.pcmizer-bar-loading .pcmizer-cloud-bar-button {	
	cursor: auto;
}
.pcmizer-bar-loading .pcmizer-cloud-bar-button:hover {	
	border-color: #222 !important;
}
.pcmizer-bar-loading .pcmizer-cloud-bar-status,
.pcmizer-bar-loading .pcmizer-cloud-bar-status-title,
.pcmizer-bar-loading .pcmizer-cloud-bar-status-desc,
.pcmizer-bar-loading .pcmizer-cloud-bar-mouse,
.pcmizer-bar-loading .pcmizer-cloud-bar-mouse-effect {
	display: none;
}

/* PCmizer Modal */
.pcmizer-status {
	padding: 20px 20px;
	background: #dcdcdc;
	text-align: center;
}
.pcmizer-type-local {
	background: url(../images/pcmizer/icon_local.png) no-repeat left center;
	padding-left: 38px;
	color: #3e444f;
	font-size: 0.875rem;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
}
.pcmizer-type-cloud {
	background: url(../images/pcmizer/icon_cloud.png) no-repeat left center;
	padding-left: 38px;
	color: #3e444f;
	font-size: 0.875rem;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
}
.pcmizer-trend-badge {
	position: absolute;
    top: -12px;
    left: 100%;
    margin-left: -8px;
    border-radius: 50%;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
}
.pcmizer-status-list-wrap {
	background: #DCDCDC;
	margin: -20px -20px 20px;
	padding: 0 20px 20px;
}
.pcmizer-status-list {
	display: flex;
	justify-content: center;
}
.pcmizer-status-list li {
	position: relative;
	width: 100%;
	background: #fff;
	border-radius: 5px;
	margin: 0 5px;
	padding: 15px 5px 35px;
	text-align: center;
	overflow: hidden;
}
.pcmizer-status-list li span {
	display: block;
	font-size: 0.8125rem;
}
.pcmizer-status-title {
	color: #a5a5a5;
	line-height: initial;
}
.pcmizer-status-title::before {
	content: '';
	display: block;
	width: 27px;
	height: 20px;
	background: url('../images/pcmizer/icon_category.png') 0 0 no-repeat;
	margin: 0 auto 6px;
}
.pcmizer-status-title.SYSTEM::before {
	background-position: 0px 0px;
}
.pcmizer-status-title.NETWORK::before {
	background-position: -27px 0px;
}
.pcmizer-status-title.VIEWER::before {
	background-position: -54px 0px;
}
.pcmizer-status-title.DC::before {
	background-position: -81px 0px;
}
.pcmizer-status-condition {	
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	font-weight: bold;
	color: #fff;
	height: 24px;
	line-height: 24px;
	margin-top: 10px;
	background: #999;
}
.pcmizer-status-normal .pcmizer-status-condition {
	background: #03bd58;
}
.pcmizer-status-warnning .pcmizer-status-condition {
	background: #ffc700;
}
.pcmizer-status-danger .pcmizer-status-condition {
	background: #ff5a50;
}
.pcmizer-status-disabled .pcmizer-status-condition {
	background: #eee;
	color: #8f9499;
	font-weight: normal;
}
.pcmizer-status-detail {
	padding: 20px;
}
.pcmizer-table-wrap {
	padding: 10px 14px;
	border: 1px solid #dee2e6;
	border-radius: 5px;
}
.pcmizer-table {
	width: 100%;
}
.pcmizer-table td {
	padding: 5px 3px;
	line-height: initial;
}
.pcmizer-table-status {	
	display: block;
	width: 17px;
	height: 17px;
	text-indent: -9999px;
	background: url("../images/pcmizer/cloud_badge.png") 0 0 no-repeat;
	overflow: hidden;
	margin-top: 1px;
}
.pcmizer-table-status.normal {
	background-position: 0px 0px;
}
.pcmizer-table-status.warning {
	background-position: -17px 0px;
}
.pcmizer-table-status.danger {
	background-position: -34px 0px;
}
.pcmizer-table-status.disabled {
	background-position: -51px 0px;
}
.pcmizer-detail-btn:first-child {
	margin-left: 0 !important;
}
.pcmizer-detail-btn {
	opacity: 0.3;
	margin-left: 4px;
}
.pcmizer-detail-btn:hover {
	opacity: 0.7;
}
.pcmizer-detail-btn.excute {
	opacity: 0.5 !important;
}
.pcmizer-detail-btn.excute:hover {
	opacity: 1 !important;
}
.btn-pcmizer-img {
	margin-top: -3px;
}
.btn-pcmizer-excute {
	background-color: #105aa6;
	color: #fff;
}
.btn-pcmizer-excute:hover {
	background-color: #0078ff;
	color: #fff;
}
.alert .btn-pcmizer-excute {
	padding: .1rem .3rem;
	font-size: .6785rem;
	line-height: 1.5;
	border-radius: .2rem;
}
.alert .btn-pcmizer-excute:hover {
	background-color: #105aa6;
}
.alert .btn-pcmizer-excute .btn-pcmizer-img {
	width: 10px;
	height: 10px;
}

/* PCmizer : Trend */
.pcmizer-condition {
	border: 1px solid #e8ecf1;
	border-radius: 0.25rem;
	overflow: hidden;
	margin-bottom: 1.25rem;
}
.pcmizer-condition.normal .alert-danger,
.pcmizer-condition.normal .alert-warning,
.pcmizer-condition.disabled .alert-danger,
.pcmizer-condition.disabled .alert-warning {
	display: none;
}
.pcmizer-condition.danger .alert-warning {
	display: none;
}
.pcmizer-condition.warning .alert-danger {
	display: none;
}
.pcmizer-condition.danger {
	border-color: #ff5a50;
}
.pcmizer-condition.danger .pcmizer-condition-header,
.pcmizer-condition.danger .pcmizer-condition-header a {
	background: #ff5a50;
	color: #fff;
}
.pcmizer-condition.warning {
	border-color: #ffb53e;
}
.pcmizer-condition.warning .pcmizer-condition-header,
.pcmizer-condition.warning .pcmizer-condition-header a {
	background: #ffb53e;
	color: #fff;
}
.pcmizer-condition.disabled .pcmizer-condition-header,
.pcmizer-condition.disabled .pcmizer-condition-header a {
	background: #fbfcfd;
	color: #b1b1b1;
}
.pcmizer-condition.disabled .text-danger,
.pcmizer-condition.disabled .text-warning,
.pcmizer-condition.disabled .text-success,
.pcmizer-condition.disabled .pcmizer-condition-body {
	color: #b2b2b2 !important;
}
.pcmizer-condition-header {
	display: flex;
	align-items: center;
	padding: 1rem 1.125rem;
	background: #eff3f8;
}
.pcmizer-condition-header .title {
	font-size: 1rem;
	font-weight: bold;
}
.pcmizer-condition-header .btn-graph {
	margin-left: auto;
	position: relative;
	display: inline-block;
	padding-right: 14px;
}

.pcmizer-condition-header .btn-graph::after {
	transform: rotate(-225deg);
	position: absolute;
	right: 0;
	top: 9px;
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border: 2px solid #555;
	transform: rotate(-225deg);
	transform-origin: center;
	border-width: 0 0 2px 2px;
}
.pcmizer-condition-header .btn-graph.collapsed::after {
	top: 4px;
	transform: rotate(-45deg);
}
.pcmizer-condition.danger .pcmizer-condition-header .btn-graph::after,
.pcmizer-condition.warning .pcmizer-condition-header .btn-graph::after {
	border-color: #fff;
}
.pcmizer-condition.danger .pcmizer-table-status,
.pcmizer-condition.warning .pcmizer-table-status {
	background-image: url(../images/pcmizer/cloud_badge_white.png);
}
.pcmizer-condition-body {
	padding: 1.25rem;
}
.pcmizer-chart {
	padding: 0.625rem;
	border-bottom: 1px solid #e8ecf1;
}

/* None Responsive
---------------------------------------------------------*/
#header, .header-notice, .header-banner, #content  {
	/* min-width: 1200px; */
}
.header-container, .header-notice-container, .header-banner-container, .footer-container {
	/* margin: auto; */
}
.main-container {
	min-width: 960px;
}


/* Responsive
---------------------------------------------------------*/
.header-nav.responsive a {
	position: relative;
	display: block;
}
.header-nav.responsive i {
	font-size: 24px;
	display: inline;
}
.header-nav.responsive ul li a {
	padding: 0 10px;
	font-size: 20px;
}
.header-nav.responsive ul li a span {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 70%);
	background: rgba(0, 0, 0, .7);
	padding: 3px 10px 5px;
	border-radius: 20px;
	color: #fff;
	font-size: 12px;
	line-height: normal;
	opacity: 0;
}
.header-nav.responsive ul li a:hover span {
	display:block;
	transform: translate(-50%, 100%);
	opacity: 1;
	transition: all .2s ease-out;
}
.header-nav.responsive ul li a span::after {
	display: none;
}
@media (max-width: 1200px) {
	.floating-right-block {
		right: 0px;
		left: auto;
		margin-left: 0;
	}

}
@media (max-width: 992px) {
	.header-option-link-item {
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media (max-width: 768px) {
	.header-option-link-item {
		padding-left: 8px;
		padding-right: 8px;
	}
	.header-option-link-item.dropdown-toggle::after {
		margin-left: -3px;
	}
	.header-option-link-item .user-name {
		display: none;
	}
	.header-option-link .header-option-link-list > li {
		border: none;
	}
}
@media (max-width: 576px) {

}


/* Scrollbar for chrome style ---------------------
*::-webkit-scrollbar {width: 5px; height: 5px;}
*::-webkit-scrollbar-thumb {
background-color: rgba(120, 120, 120, 0.2);
border-radius:10px;
}
*/