@charset "UTF-8";

html, body {
	font-family: 'Helvetica', 'Arial', 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', 'Meiryo', 'MS PGothic', sans-serif;
	height: 100%;
	overflow: hidden;
	min-width: 1300px;
	overflow-x: auto;
	position: relative;
}

.m-r-15 {
	margin-right: 15px;
}

/*hr start*/

.hr {
	display: block;
	height: 0;
	overflow: hidden;
	font-size: 0;
	border-width: 1px 0 0;
	border-top: 1px solid #E3E3E3;
	border-top-color: rgba(0, 0, 0, .11);
	width: 100%;
}

.hr-dotted {
	border-style: dotted;
}


/*hr end*/


/*Multilingual start*/

.languagepicker {
    display: inline-block;
    padding: 0;
    height: 24px;
    overflow: hidden;
    transition: all .3s ease;
    vertical-align: top;
    position: relative;
    border: 2px solid #CCCCCC;
    top: 18px;
    left: 0;
    border-radius: 6px;
}

.languagepicker .lang-des {
    width: 54px;
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
	position: relative;
	text-align: center;
}

.languagepicker:hover {
	height: 41px;
}

.languagepicker li {
	display: block;
	padding: 0px 4px;
	line-height: 18px;
	border-top: 1px solid #EEEEEE;
	border: none;
	background: #f7f6f6;
}

.languagepicker li:hover {
	background-color: #e6e6e6;
	cursor: pointer;
}

.languagepicker .fa {
	visibility: hidden;
}

.languagepicker li:first-child .fa {
    position: relative;
    bottom: -1px;
	right: 5px;
	visibility: visible;
}

.languagepicker .lang-flag {
	height: 12px;
	margin-bottom: 2px;
}


/*Multilingual end*/


/*datepicker start*/

.datepicker-dropdown {
	font-size: 14px;
}


/*datepicker end*/


/*switch start*/

.switch input:empty~span {
	width: 57px;
	border-radius: 15px;
}

.switch input:empty~span:before,
.switch input:empty~span:after {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: ' ';
	transition: all 100ms ease-in;
}

.switch input:empty~span:before,
.switch input:empty~span:after {
	border-radius: 15px;
}

.switch input:empty~span:after {
	height: 30px;
	width: 30px;
	line-height: 29px;
	margin-left: 3px;
	font-size: .9em;
	text-align: center;
	vertical-align: middle;
}

.switch input:checked~span:after {
	margin-left: 26px;
}

.switch input:empty~span:after {
	font-family: "fontAwesome";
	text-decoration: inherit;
	text-rendering: optimizeLegibility;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
}

.switch input:checked~span:after {
	content: '\f00c';
}

.switch:not(.switch--outline) input:empty~span:after {
	color: #64bd63;
	background-color: #fff;
	opacity: .4;
}

.switch:not(.switch--outline) input:checked~span:after {
	opacity: 1;
	padding-top: 1px;
	padding-left: 2px;
}

.switch > label{
	display: inline-block;
	float: left;
	padding-left: 0;	
}

/*switch end*/


/*radio,checkbox start*/

.star-disabled {
	color: #CCCCCC !important;
	pointer-events: none;
}

.star-btn:hover {
	opacity: 0.8 !important;
}

.star-radio,
.star-checkbox {
	z-index: -100 !important;
	width: 1px !important;
	height: 1px !important;
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
}

.star-radio+.lbl,
.star-checkbox+.lbl {
	position: relative;
	display: inline-block;
	margin: 0;
	line-height: 20px;
	min-height: 18px;
	min-width: 18px;
	font-weight: 400;
	cursor: pointer;
}

.star-radio:checked+.lbl::before,
.star-checkbox:checked+.lbl::before {
	display: inline-block;
	content: '\f00c';
	color: #32A3CE;
	background-color: #F5F8FC;
	border-color: #ADB8C0;
}

.star-radio:checked+.lbl::before {
	content: "\f111";
}

.star-radio.input-lg:checked+.lbl::before {
	content: "\f111";
	padding-top: 0;
}

.star-checkbox+.lbl::before,
.star-radio+.lbl::before {
	cursor: pointer;
	font-family: fontAwesome;
	font-weight: 400;
	font-size: 12px;
	color: #FFF;
	content: "\a0";
	background-color: #FAFAFA;
	border: 1px solid #C8C8C8;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
	border-radius: 0;
	display: inline-block;
	text-align: center;
	height: 16px;
	line-height: 15px;
	min-width: 16px;
	margin-right: 1px;
	position: relative;
	top: -1px;
}

.star-radio+.lbl::before {
	border-radius: 100%;
	font-size: 10px;
	text-shadow: 0 0 1px #32A3CE;
	line-height: 16px;
	height: 17px;
	min-width: 17px;
}

.star-radio.input-lg+.lbl::before {
	font-size: 14px;
	height: 24px;
	line-height: 22px;
	min-width: 24px;
	top: auto;
}

.star-checkbox.input-lg+.lbl::before {
	border-radius: 4px;
	font-size: 16px;
	height: 24px;
	line-height: 21px;
	min-width: 24px;
	top: auto;
}

.star-checkbox.disabled+.lbl::before,
.star-checkbox:disabled+.lbl::before,
.star-checkbox[disabled]+.lbl::before,
.star-radio.disabled+.lbl::before,
.star-radio:disabled+.lbl::before,
.star-radio[disabled]+.lbl::before {
	background-color: #DDD !important;
	border-color: #CCC !important;
	box-shadow: none !important;
	color: #BBB;
}


/*radio,checkbox end*/


/* header start */

.header {
	margin: 0;
	border-width: 0;
	border-radius: 0;
	box-shadow: none;
	height: 60px;
	background: #2b61a0;
	padding: 0;
	width: 100%;
	position: absolute;
	z-index: 200;
	top: 0;
}

.header .header-container {
	width: 100%;
}

.header .header-container .navbar-brand {
	display: inline-block;
	width: auto;
	height: 60px;
	padding: 0.5rem 0;
	margin-right: 0;
}

.header .header-container .navbar-brand .logo {
	height: 46px;
	width: auto;
	max-width: 158px;
	margin-left: 10px;
}

.header .header-container .header-line {
	width: 1px;
	height: 26px;
	background: #FFFFFF;
	margin-top: 17px;
}

.header .header-container .link-to-file {
    color: #FFFFFF;
    display: inline-block;
    height: 36px;
    line-height: 45px;
    padding: 0;
    margin-top: 10px;
	margin-right: 10px;
	text-decoration: none;
}

.header .header-container .link-to-file:hover {
	border-bottom: 2px solid #FFFFFF;
}

.header .header-container .link-to-file i {
	margin-right: 3px;
}

.header .star-nav>li {
	height: 60px;
	font-size: 23px;
	text-align: center;
	cursor: pointer;
}

.header .star-nav>li>a {
	padding: 0px 20px;
	color: #ffffff;
}

.header .user-info-menu-nav>li>a {
	padding: 12px 20px;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.header .user-info-menu-nav .login-user-name {
    font-size: 15px;
    position: relative;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	display: inline-block;
	padding-right: 30px;
	line-height: 40px;
	margin-right: 10px;
}

.header .star-nav .login-user-name .fa {
	font-size: 20px;
	position: absolute;
    right: 8px;
	top: 20px;
	font-weight: bold;
}

.header-container .back-img {
	height: 20px;
    margin-right: 3px;
    margin-bottom: 2px;
}

.header .star-navbar-dropdown-menu {
	margin: 0;
	border: 0;
	left: auto;
	right: -28px;
	width: 320px;
	padding-top: 0;
	line-height: 30px;
	background-color: transparent;
	top: calc(100% - 7px);
	cursor: default;
	transition: width 1s ease;
	text-align: center;
	padding-bottom: 0;
}

.header .header-container .size-limited-notice-icon {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 17px;
	display: none;
}

.header .header-container .used-size .size-percentage {
	font-size: 12px;
	white-space: nowrap;
}

.header .header-container .used-size .disk-des {
	white-space: nowrap;
	margin-right: 20px;
}

.header .header-container .used-size .progress-bar {
    font-weight: 600;
    text-shadow: 1px 1px 2px #000000;
    line-height: 1rem;
}

.header .header-container .amount-list,
.header .header-container .download-list {
	margin: 4px;
}

.header .star-navbar-dropdown-menu:after {
	content: "";
    left: auto;
    right: 50px;
    position: absolute;
    top: 11px;
    background: #fff;
    width: 10px;
    height: 10px;
    border: 1px solid #CCCCCC;
    border-width: 1px 1px 0px 0px;
    background-color: #FFF;
    transform: rotate(-45deg);
}

.header .star-navbar-dropdown-menu>div {
	margin: 16px 0;
	padding: 6px;
	background: #ffffff;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	box-shadow: 3px 3px 6px #ccc;
	border: 1px solid #CCCCCC;
}

.header .star-navbar-dropdown-menu .logout {
    width: 96%;
    margin-left: 2%;
    margin-top: 6px;
	box-shadow: none !important;
}

.header .star-navbar-dropdown-menu .dropdown-user-info .user-info-item {
	display: inline-block;
	height: 50px;
    line-height: 28px;
	font-size: 15px;
}

.header .star-navbar-dropdown-menu .dropdown-user-info .user-info-item .user-name {
	color: #9E9E9E;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	height: 28px;
}

.header .star-navbar-dropdown-menu .dropdown-user-info .user-info-item .to-user-detail {
	text-decoration: none;
}

.header .star-navbar-dropdown-menu .dropdown-user-info img {
    width: 44px;
    border-radius: 50%;
    margin-top: -145px;
    margin-right: 12px;
    margin-left: 8px;
}

.header .star-navbar-dropdown-menu .dropdown-user-info .user-info-item a {
	display: flex;
}

.header-container .company-account-size-used {
	width: auto;
}

.navbar-setting-menu {
	position: relative;
}

.navbar-setting-menu .dropdown-menu {
	display: none;
}

.navbar-setting-menu:hover .dropdown-menu {
	display: block;
}

.header .star-navbar-dropdown-menu.company-account-size-used .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: transparent;
    cursor: auto;
}

.navbar-setting-menu .dropdown-download-info .download-button {
	border-radius: 20px;
	float: right;
	margin-right: 20px;
}

.navbar-setting-menu .dropdown-download-info .download>div {
	padding: 5px 0;
	color: #404040;
	width: 100%;
	display: inline-block;
	margin: auto;
}

.navbar-setting-menu .dropdown-download-info ul {
	padding-inline-start: 0px;
}

.navbar-setting-menu .dropdown-download-info ul li {
	list-style: none;
}

.navbar-setting-menu .dropdown-download-info .download>div.download-title {
	padding: 0 20px 0;
}

.title {
	padding-top: 7px;
	padding-left: 15px;
	color: #2b61a0;
	height: 60px;
	line-height: 60px;
}

.title.list-title {
	margin-bottom: 10px;
}

.title.form-title {
	padding-left: 3%;
}

.form-title-sub {
	font-size: 20px;
}

/* header end */


/* sidebar start */

.sidebar {
	position: absolute;
	z-index: 150;
	width: 40px;
	height: calc(100% - 120px);
	background-color: #ffffff;
	border-right: 1px solid #c5c5c5;
	top: 60px;
	box-shadow: 5px 1px 8px #b2b2b2;
}

.sidebar.sidebar-w250 {
	width: 250px;
}

.sidebar.sidebar-transition {
	transition: all .3s ease;
}

.sidebar .nav-list {
	display: block;
	width: 100%;
	margin-top: 5px;
}

.sidebar .nav-list>li>a {
	display: block;
	height: 39px;
	line-height: 17px;
	padding: 10px 0 10px 39px;
	font-size: 15px;
	text-decoration: none;
	color: #404040;
	background-position: 9px center;
	background-repeat: no-repeat;
	background-size: 22px 22px;
}

.sidebar .nav-list>li:hover a {
	opacity: 0.6;
	background-color: #2b61a0;
	color: #ffffff;
}

.sidebar .nav-list>li.active a {
	opacity: 0.8;
	background-color: #2b61a0;
	color: #ffffff;
}

.sidebar .nav-list>li>a .menu-text{
	display: inline-block;
	word-break: break-all;
	width: 100%;
	overflow: hidden;
	height: 20px;
	line-height: 20px;
}

.sidebar .nav-list .nav-hr {
	padding: 5px;
}

.sidebar .nav-list .nav-hr .hr {
	border-top-color: rgba(0, 0, 0, .2);
	width: 92%;
	margin: auto;
}

.menu_nav_user {
	background-image: url(../img/menu/user.png);
}

.sidebar .nav-list>li:hover .menu_nav_user,
.sidebar .nav-list>li.active .menu_nav_user {
	background-image: url(../img/menu/user_active.png);
}

.menu_nav_group {
	background-image: url(../img/menu/group.png);
}

.sidebar .nav-list>li:hover .menu_nav_group,
.sidebar .nav-list>li.active .menu_nav_group {
	background-image: url(../img/menu/group_active.png);
}

.menu_nav_device {
	background-image: url(../img/menu/device.png);
}

.sidebar .nav-list>li:hover .menu_nav_device,
.sidebar .nav-list>li.active .menu_nav_device {
	background-image: url(../img/menu/device_active.png);
}

.menu_nav_folder {
	background-image: url(../img/menu/folder.png);
}

.sidebar .nav-list>li:hover .menu_nav_folder,
.sidebar .nav-list>li.active .menu_nav_folder {
	background-image: url(../img/menu/folder_active.png);
}

.menu_nav_docusign {
	background-image: url(../img/menu/docusign.png);
}

.sidebar .nav-list>li:hover .menu_nav_docusign,
.sidebar .nav-list>li.active .menu_nav_docusign {
	background-image: url(../img/menu/docusign_active.png);
}

.menu_nav_ip {
	background-image: url(../img/menu/ip.png);
}

.sidebar .nav-list>li:hover .menu_nav_ip,
.sidebar .nav-list>li.active .menu_nav_ip {
	background-image: url(../img/menu/ip_active.png);
}

.menu_nav_password {
	background-image: url(../img/menu/password.png);
}

.sidebar .nav-list>li:hover .menu_nav_password,
.sidebar .nav-list>li.active .menu_nav_password {
	background-image: url(../img/menu/password_active.png);
}

.menu_nav_server {
	background-image: url(../img/menu/server.png);
}

.sidebar .nav-list>li:hover .menu_nav_server,
.sidebar .nav-list>li.active .menu_nav_server {
	background-image: url(../img/menu/server_active.png);
}

.menu_nav_session {
	background-image: url(../img/menu/session.png);
}

.sidebar .nav-list>li:hover .menu_nav_session,
.sidebar .nav-list>li.active .menu_nav_session {
	background-image: url(../img/menu/session_active.png);
}

.menu_nav_log {
	background-image: url(../img/menu/log.png);
}

.sidebar .nav-list>li:hover .menu_nav_log,
.sidebar .nav-list>li.active .menu_nav_log {
	background-image: url(../img/menu/log_active.png);
}

.menu_nav_amount {
	background-image: url(../img/menu/disk_size.png);
}

.sidebar .nav-list>li:hover .menu_nav_amount,
.sidebar .nav-list>li.active .menu_nav_amount {
	background-image: url(../img/menu/disk_size_active.png);
}

.menu_nav_download {
	background-image: url(../img/menu/download_size.png);
}

.sidebar .nav-list>li:hover .menu_nav_download,
.sidebar .nav-list>li.active .menu_nav_download {
	background-image: url(../img/menu/download_size_active.png);
}

.menu_nav_mailTemplate {
	background-image: url(../img/menu/mail.png);
}

.sidebar .nav-list>li:hover .menu_nav_mailTemplate,
.sidebar .nav-list>li.active .menu_nav_mailTemplate {
	background-image: url(../img/menu/mail_active.png);
}

/* sidebar end */


/* stat-viewer start */

.stat-viewer {
	margin-left: 40px;
	margin-top: 60px;
	position: relative;
	width: calc(100% - 40px);
	height: calc(100% - 120px);
	overflow: auto;
	overflow-x: hidden;
}

.stat-viewer .star-grid-wrap {
	width: calc(100% - 30px);
	margin: auto;
}

.stat-viewer .ui-jqgrid {
	border: none;
}

#log_grid tr.ui-row-ltr td:nth-child(4) {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* stat-viewer end */


/*form start*/

.container-fluid .form-group {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.form-group .badge {
	padding: 2px 8px;
    height: 20px;
    line-height: 17px;
    border-radius: 0;
    margin-right: 5px;
    background: #F44336;
    color: #FFFFFF;
    float: left;
}

.form-group label .star-form-text{
	display: inline-block;
	width: calc(100% - 76px);
	line-height: 20px;
}

.star-lang-en .form-group label .star-form-text{
	width: calc(100% - 80px);
}

.form-group .badge-hidden {
	visibility: hidden;
}

.form-group .star-num-input {
	width: 50px;
}

.invalid-feedback {
	display: block;
	color: #ff5454;
	white-space: nowrap;
}
.notice-des {
	display: block;
	width: 100%;
	margin-top: 3px;
	font-size: 80%;
	color: #797878;
	white-space: nowrap;
}

.star-btn-cancle {
	background-color: #ffffff;
	color: #2b61a0;
	margin: 20px 40px;
	border-radius: 33px;
	width: auto;
	min-width: 120px;
	border: 1px solid #2b61a0;
	box-shadow: none !important;
}

.star-btn-cancle:hover {
	background: #e5f0fd;
}

.star-btn-danger {
	background-color: #e46e65;
	color: #FFFFFF;
	margin: 20px 40px;
	border-radius: 33px;
	width: auto;
	min-width: 120px;
	box-shadow: none !important;
}

.container-fluid .btn-delete {
	background-color: #e46e65;
	color: #FFFFFF;
	margin-right: 5%;
	border-radius: 33px;
	width: auto;
	min-width: 120px;
	margin-top: 20px;
	margin-bottom: 20px;
	box-shadow: none !important;
}

.star-btn-agree {
	background-color: #2b61a0;
	color: #FFFFFF;
	border-radius: 33px;
	width: auto;
	min-width: 120px;
	box-shadow: none !important;
}

.star-btn-confirm,
.dropdown-time .confirm,
.download-link-container .confirm {
	background-color: #2b61a0;
	color: #FFFFFF;
	border-radius: 33px;
	width: auto;
	min-width: 120px;
	margin: 20px 40px;
	box-shadow: none !important;
}

.star-btn-agree:hover,
.star-btn-confirm:hover,
.star-btn-operate:hover,
.star-btn-import:hover,
.star-btn-danger:hover {
	opacity: 0.7;
}

.star-btn-confirm.kill-btn {
	width: 80px;
	min-width: 80px;
	margin: 0;
	padding: 0;
	border-radius: 5px;
	box-shadow: none !important;
}

.radio-check {
	display: flex;
	margin-top: -3px;
}

.radio-check label {
	margin-right: 15px;
}


/*form end*/


/*search start*/

.detail-search-content {
	display: none;
	position: relative;
}

.detail-search-content .form-group {
	display: flex;
	align-items: center;
	margin-top: 10px;
	word-break: keep-all;
}

.detail-search-content .form-group label {
	word-break: inherit;
}

.detail-search,
.detail-search-confirm,
.log-download,
.log-more,
.server-upload-icon-btn,
.server-upload-cert-btn,
.server-upload-metadata-btn,
.server-download-metadata-btn,
.server-download-idp-metadata-btn,
.server-download-idp-cert-btn,
.ad-ldap-setting,
.navbar-setting-menu .dropdown-download-info .download-button,
.device-user-id .user-id-select-btn,
.docusign-connect-keys-add-btn,
.copy-url-btn,
.device-user-sreach-button {
	background: #2b61a0;
	color: #FFFFFF;
	box-shadow: none !important;
}

.server-upload-icon-btn,
.server-upload-cert-btn,
.server-upload-metadata-btn,
.server-download-metadata-btn,
.server-download-idp-metadata-btn,
.server-download-idp-cert-btn,
.ad-ldap-setting,
.docusign-connect-keys-add-btn,
.copy-url-btn,
.device-user-id .user-id-select-btn {
	background: #03a9f4;
}

.detail-search i {
	margin-left: 5px;
}

.detail-search:hover,
.detail-search-confirm:hover,
.log-download:hover,
.log-more:hover,
.server-upload-icon-btn:hover,
.server-upload-cert-btn:hover,
.server-download-metadata-btn:hover,
.server-download-idp-metadata-btn:hover,
.server-download-idp-cert-btn:hover,
.server-upload-metadata-btn:hover,
.ad-ldap-setting:hover,
.navbar-setting-menu .dropdown-download-info .download-button:hover,
.device-user-id .user-id-select-btn:hover,
.docusign-connect-keys-add-btn:hover,
.copy-url-btn:hover,
.device-user-sreach-button:hover {
	opacity: 0.7;
}

.detail-search {
	margin-left: 10px;
	padding: 4px 14px;
	margin-top: 15px;
}

.star-btn-search-more {
	padding: 4px 5px 4px 14px;
}
.star-btn-search-more i.fa {
	font-size: 18px;
	margin-right: 5px;
	margin-left: 5px;
	position: relative;
	top: 1px;
	transition: all 0.5s;
}

.star-btn-search-more i.fa.star-active {
	transform: rotate(180deg);
}

/*search end*/


/*operate start*/
.operate-button {
	position: relative;
}

.operate-button .operate-list>div {
	height: 60px;
}

.operate-button .operate-list a {
	height: 60px;
	line-height: 60px;
	padding: 0 10px;
	display: inline-block;
	min-width: 120px;
	color: #2b61a0;
	text-align: center;
}

.operate-button .operate-list a.star-grid-refresh {
	min-width: 60px;
	color: #7db561;
}

.operate-button .operate-list a:hover {
	text-decoration: none;
	background-color: #F2F2F2;
	color: #2B61A0;
	cursor: pointer;
}

.operate-button .operate-list a.star-grid-refresh:hover {
	text-decoration: none;
	background-color: #F2F2F2;
	color: #7db561;
	cursor: pointer;
}

.operate-button .operate-list .form-control {
	line-height: 1;
	height: 31px;
	margin-top: 15px;
	padding-right: 28px;
	width: 200px;
}

.operate-list .fa {
	font-size: 22px;
	margin-right: 12px;
}

.operate-button .operate-list a.star-grid-refresh .fa {
	margin-right: 0;
	font-size: 20px;
}

.operate-button .operate-list .search-input-empty {
	top: 17px;
    position: absolute;
    right: -6px;
    font-size: 18px;
    padding: 4px;
    cursor: pointer;
	color: #bdbdbd;
	display: none;
}

/*operate end*/


/*datepicker start*/

.datepicker-dropdown {
	font-size: 14px;
	box-shadow: 5px 5px 10px #e7f0f7;
}


/*datepicker end*/


/*table options start*/

.search-grid-line {
	height: 1px;
	width: 100%;
	background: #C5C5C5;
}

.ui-jqgrid .ui-pg-button .green {
	float: none;
	display: inline-block;
	margin: 16px 6px;
	color: #7db561;
}

.ui-jqgrid .ui-pg-button .green:active {
	border: none;
}

.ui-inline-del {
	display: none;
}

.ui-inline-edit {
	text-align: center;
	color: #2b61a0;
}

.ui-jqgrid-actions {
	cursor: pointer;
}

.ui-pg-div .ui-icon:hover {}

.ui-pg-button:hover {
	background-color: transparent !important;
}

.ui-pg-button:focus {
	outline: none;
}

/*table options end*/

/*footer start*/

.footer {
	height: 60px;
	line-height: 60px;
	width: 100%;
	background-color: #dadada;
	color: #777777;
	font-size: 15px;
	position: absolute;
	bottom: 0;
	z-index: 200;
}

.footer .float-left {
	padding-left: 30px;
}

.footer .float-right {
	margin-right: 30px;
}

.footer .float-right>a {
	margin-right: 10px;
	text-decoration: none;
	color: #777777;
}

.footer .float-right>a:hover {
	color: #525151;
}


/*footer end*/

/*toastr start*/

#toast-container {
	position: fixed;
	z-index: 999;
	pointer-events: none;
}

.toast-top-right {
	top: 67px;
	right: 45%;
	margin: auto;
}

#toast-container>div {
	width: 500px;
}


/*toastr end*/


/*list jqgrid start*/

.norecords {
	left: 50%;
	transform: translate(-50%, 0);
	position: absolute;
	margin-top: 250px;
}

/*list jqgrid end*/

/* list pager icon start */

.ui-pg-table>tbody>tr>.ui-pg-button>.ui-icon {
	background-color: #abbac3;
	color: #fff;
}

.ui-pg-table>tbody>tr>.ui-pg-button>.ui-icon:hover {
	border-color: #699ab5;
	color: #fff;
}

.ui-pg-table > tbody > tr > .ui-pg-button.ui-state-disabled > .ui-icon:hover {
	border-color: #ddd;
    color: #b0b0b0;
}

.ui-jqgrid .ui-pg-table td {
    font-weight: normal;
    vertical-align: middle;
    padding: 1px;
}
	
/* list pager icon end */

.bootstrap-duallistbox-container.star-disabled {
	pointer-events: none;
}

.bootstrap-duallistbox-container.star-disabled select,
.bootstrap-duallistbox-container.star-disabled button {
	background: #CCCCCC  !important;
}

.sync-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
	text-align: center;
	color: #FFFFFF;
}

.sync-loading .fa-pulse {
	margin-bottom: 2%;
}

.sync-loading .sync-des {
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
}

.duallist-box {
	position: relative;
}

.duallist-box .duallist-box-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	z-index: 150;
}

.duallist-box .star-loading {
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.duallist-box .duallist-box-loading img {
	width: 50px;
}	

/* modal start */

.star-modal-dialog {
	max-width: 60%;
	min-width: 800px;
}

#formUserInfoModal .star-modal-dialog,
#formConsultModal .star-modal-dialog,
#planChangeModal .star-modal-dialog {
	min-width: 950px;
}

.star-modal-alert {
	width: 650px;
}

.star-modal-dialog .modal-header {
    padding: 20px 55px 15px 50px;
}

.star-modal-dialog .modal-body {
    padding: 10px;
}

.star-modal-dialog .modal-body .btn{
    margin: 0 15px 0 0;
}

.star-modal-dialog .close {
	position: absolute;
    right: 16px;
    top: 16px;
}

.star-modal-dialog .star-btn-danger {
	background-color: #e46e65;
	color: #FFFFFF;
	border-radius: 33px;
	width: auto;
	min-width: 120px;
	box-shadow: none !important;
}

.star-modal-dialog .star-btn-cancle,
.star-modal-dialog .star-btn-confirm,
.star-modal-dialog .star-btn-danger {
	margin-top: 0;
	margin-bottom: 0;
}

.star-modal-dialog .star-btn-cancle.modal-form-btn,
.star-modal-dialog .star-btn-confirm.modal-form-btn {
	margin-top: 20px;
	margin-bottom: 10px;
}

.star-modal-dialog .star-btn-danger:hover {
	opacity: 0.7;
}

.star-modal-dialog .consult-des {
	font-size: 13px;
	width: 70%;
	margin: auto;
	border: 1px dotted #ccc;
	padding: 1%;
	margin-top: 10px;
}

.star-modal-dialog .consult-des div:first-child {
	margin-bottom: 10px;
}

.container-fluid .form-group {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.star-modal-dialog .user-info-edit-modal-body {
	max-height: 800px;
	overflow-y: auto;
	position: relative;
}

.star-modal-dialog .user-info-edit-modal-body .google-input-content,
.star-modal-dialog .user-info-edit-modal-body .smart-device-setting {
	display: none;
}

.smart-device-setting {
	display: none;
	max-width: 800px;
	margin: auto;
}

.smart-device-setting .file-options-title th {
	border: none;
	background: #eef5fa;
}

.smart-device-setting .file-options-content-title th {
	width: 150px !important;
	background: #eae9e9;
}

.smart-device-setting .folder-content-title th {
	background: #eae9e9;
}

.smart-device-setting th {
	font-size: 14px !important;
	font-weight: inherit;
}

.star-modal-dialog .user-info-edit-modal-body .smart-device-setting tbody td {
	vertical-align: inherit;
}

.star-modal-dialog .user-info-edit-modal-body .smart-device-setting tbody label {
	margin-bottom: 0;
}

.star-modal-dialog .regulation-dialog-des {
	height: 50px;
	background: #d9edf7;
	line-height: 50px;
	padding-left: 20px;
	color: #2b61a0;
}

.star-modal-dialog .regulation {
	margin: 2%;
	overflow: auto;
	max-height: 600px;
}

.star-modal-dialog .regulation-modal-footer {
	background-color: #eff3f8;
}

.star-modal-dialog .close:focus {
	outline: none;
}

/* modal end */

.star-input-tips {
	position: relative;
	display: inline-block;
	padding: 0;
}

.star-input-tips-text {
	position: absolute;
	left: calc(100% - -15px);
	background: #f4f3f3;
	font-size: 13px;
	text-align: left;
	border: 1px solid #CCCCCC;
	z-index: 100;
	padding: 10px;
	width: 300px;
	color: #666666;
	display: none;
	top: 0;
}

.star-input-tips-text.search-input-tips {
	display: none;
	margin-top: 60px;
	left: -90px;
}

.star-input-tips-text ul {
	padding: 0 0 0 18px;
	margin: 0;
}

.operate-button .operate-list>div .star-input-tips-text {
	line-height: normal;
}

.star-input-tips-text:after {
	content: "";
	left: -6px;
	position: absolute;
	top: 15px;
	background: #f4f3f3;
	width: 10px;
	height: 10px;
	border: 1px solid #CCCCCC;
	border-width: 1px 1px 0px 0px;
	transform: rotate(225deg);
}

.star-input-tips-text.search-input-tips:after {
	left: 240px;
	top: -6px;
	border-width: 0px 1px 1px 0px;
}

.star-input-tips input:focus + .star-input-tips-text {
	display: block;
}

.password-policy-form {
	min-width: 1600px;
}

.password-policy-form label {
	min-width: 420px;
}

.user-info-edit-modal-body .star-input-tips-text,
#formConsultModal .star-input-tips-text,
#planChangeModal .star-input-tips-text {
	width: 256px;
}

.star-grid-wrap .progress-bar {
	text-shadow: 1px 1px 2px #000000;
}

::-ms-reveal {
	display: none;
}

::-ms-clear {
	display: none;
}

.ui-jqgrid .ui-jqgrid-view {
	border-left: 1px solid #E1E1E1;
	border-right: 1px solid #E1E1E1;
}

.ui-jqgrid .ui-jqgrid-btable {
	border-left: 0;
}

.ui-jqgrid-hdiv .ui-jqgrid-htable {
	position: relative;
	left: -1px;
}

.group-refresh-btn {
    background-color: #03a9f4;
    color: #FFFFFF;
    position: absolute;
    right: 50px;
    top: 24px;
    box-shadow: none !important;
}

.group-refresh-btn i:hover {
	transform: none;
}

.group-refresh-btn:hover {
	opacity: 0.7;
}

.bootstrap-duallistbox-container table tr.tr-selected {
    background: #c0defb !important;
}

.duallist-box .group-filter-wrap {
	position: relative;
}

.duallist-box .group-filter-wrap input {
	padding-right: 26px;
}

.duallist-box .group-filter-wrap .fa.filter-clear {
	top: 3px;
    position: absolute;
    right: 4px;
    font-size: 18px;
    padding: 4px;
    cursor: pointer;
    color: #bdbdbd;
	display: none;
}

div.device-user-id {
	position: relative;
}

.device-user-id .user-id-select-btn {
	position: absolute;
	top: 4px;
	left: 52%;
}

#deviceUserListModal .device-user-sreach {
	text-align: right;
	margin-bottom: 10px;
}

#deviceUserListModal .device-user-sreach > div {
	position: relative;
	display: inline-block;
}

#deviceUserListModal .device-user-sreach .device-user-sreach-input {
	width: 380px;
	height: 32px;
	display: inline-block;
	padding-right: 26px;
}

.device-user-sreach .search-input-empty {
	position: absolute;
	top: 7px;
	right: 8px;
	cursor: pointer;
    color: #bdbdbd;
	display: none;
}

#deviceUserListModal .star-modal-dialog {
	max-width: 800px;
}

.device-use-flag-checkbox,
.device-stauts-flag-checkbox {
	display: none;
}

.input-daterange input {
	min-width: 110px;
}

.storage-size-show {
	height: 40px !important;
	margin-top: 10px;
	margin-left: 10px;
	color: #ffffff;
}

.storage-size-show.my-folder-storage,
.storage-size-show.public-folder-storage {
	background: #6FB3E0;
}

.storage-size-show.recycle-storage {
	background: #999;
}

.storage-size-show .icon-content {
	line-height: 40px;
	width: 40px;
	text-align: center;
}

.storage-size-show .icon-content i {
	margin-right: 0;
	margin-top: 8px;
}

.storage-size-show .storage-content div {
	height: 20px;
	line-height: 20px;
	font-size: 13px;
	margin: 0 14px 0 0;
}

.storage-size-show .storage-content div:first-child {
	font-weight: 800;
}

.export-import-button-show {
	width: 100%;
	height: 5%;
	float: left;
	margin-left: 250px;
	margin-top: -65px;
}

.export-import-button-show .float-left:first-of-type {
	margin-left: 50px;
}

.send-mail-filter-btn {
	background-color: #03a9f4;
	color: #FFFFFF;
	margin: auto;
	box-shadow: none!important;
}

.chatwork-btn-link.btn-primary{
	background-color: #007BC1;
	border-color: #007BC1;
}

#chatwork_flag .chatwork-btn-link.btn-danger{
	margin: 0 0 0 20px;
	background-color: #F03748;
	border-color: #F03748;
}

.chatwork-btn-link{
	width: 130px;
	border-radius: 0.75rem;
}

.chatwork-link-tooltip-icon{
	display: inline-block;
}

.chatwork-link-tooltip-icon .fa-question-circle{
	cursor: pointer;
	color: #2b61a0;
}

.chatwork-link-tooltip.tooltip-inner{
	background-color: #ced4da;
	color: #000;
	font-size: 13px;
	min-width: 266px;
	text-align: left;
	border: 1px solid #CCCCCC;
	opacity: 1;
}

.chatwork-link-tooltip-area.tooltip .arrow::before {
	border-top-color: #ced4da;
	border-bottom-color: #ced4da;
}

#chatworkUnlinkModal.modal{
	z-index: 1052;
}
