

.mask {
	background: transparent;			
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;			
}



.loader-main{
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	height: 100%;
	width: 100%;
	margin: auto;
	background-color: rgba(70, 70, 70, 0.4);	
}



.loader-inner {	
	height: 400px;
	width: 400px;
	position: relative;
	left: 50%;
	margin-left: -200px;
	top: 50%;
	margin-top: -200px;	
}


.loader-line-wrap {
	animation: 
		spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
	;
	box-sizing: border-box;
	height: 200px;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	transform-origin: 50% 100%;
	width: 400px;
}
.loader-line {
	border: 12px solid transparent;
	border-radius: 100%;
	box-sizing: border-box;
	height: 400px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 400px;
}
.loader-line-wrap:nth-child(1) { animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { animation-delay: -250ms; }


.loader-line-wrap:nth-child(1) .loader-line {
	border-color: hsl(0, 80%, 60%);
	height: 90px;
	width: 90px;
	top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
	border-color: hsl(60, 80%, 60%);
	height: 76px;
	width: 76px;
	top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
	border-color: hsl(120, 80%, 60%);
	height: 62px;
	width: 62px;
	top: 28px;
}
.loader-line-wrap:nth-child(4) .loader-line {
	border-color: hsl(180, 80%, 60%);
	height: 48px;
	width: 48px;
	top: 21px;
}
.loader-line-wrap:nth-child(5) .loader-line {
	border-color: hsl(240, 80%, 60%);
	height: 34px;
	width: 34px;
	top: 35px;
}

@keyframes spin {
	0%, 15% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}










.modal-login {		
	color: #636363;
	width: 350px;
}
.modal-login .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
}
.modal-login .modal-header {
	border-bottom: none;   
	position: relative;
	justify-content: center;
}
.modal-login h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -15px;
}
.modal-login .form-control:focus {
	border-color: #70c5c0;
}
.modal-login .form-control, .modal-login .btn {
	min-height: 40px;
	border-radius: 3px; 
}
.modal-login .close {
	position: absolute;
	top: -5px;
	right: -5px;
}	
.modal-login .modal-footer {
	background: #ecf0f1;
	border-color: #dee4e7;
	text-align: center;
	justify-content: center;
	margin: 0 -20px -20px;
	border-radius: 5px;
	font-size: 13px;
}
.modal-login .modal-footer a {
	color: #999;
}		
.modal-login .avatar {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -70px;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	z-index: 9;
	background: #60c7c1;
	padding: 15px;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-login .avatar img {
	width: 100%;
}
.modal-login.modal-dialog {
	margin-top: 80px;
}
.modal-login .btn, .modal-login .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #60c7c1 !important;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border: none;
}
.modal-login .btn:hover, .modal-login .btn:focus {
	background: #45aba6 !important;
	outline: none;
}


.trigger-btn {
	display: inline-block;
	margin: 100px auto;
}









#ModalHEP {
	margin-bottom: 5px; 
}

#ModalHEP thead {
	color: #606080;
	display:table;
	width:-webkit-fill-available;
	width:-moz-fit-content;
	table-layout:fixed;		
}

#ModalHEP thead tr {
	display: flex; 
	width: 100%; 
}

#ModalHEP thead th {
	padding: 10px 0 10px 14px;
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-color: #adadc7;
	background-color:#e7e7e7;
}


#ModalHEP thead th:first-child {
	width: 70%; 
}

#ModalHEP thead th:last-child {
	width: 30%; 
	text-align: end; 
	padding-right: 2em; 
}


#ModalHEP #ModalHEPContent {
	display:block;
	height: calc(100vh - 280px);
	overflow:auto;
}

#ModalHEP tbody tr {
	display: flex;
	width: 100%;
	table-layout:fixed;
	border-bottom-width:2px !important;
	border-color: #e1e4e7;
}

#ModalHEP tbody tr.hover-red:hover {
	background-color:  #d90b0b17 !important; 
}

#ModalHEP tbody tr.hover-rose:hover {
	background-color:  #ff60b626 !important; 
}

#ModalHEP tbody tr.hover-orange:hover {
	background-color:  #ff844a24 !important; 
}

#ModalHEP tbody tr.hover-blue:hover {
	background-color:  #5d6bf826 !important; 
}

#ModalHEP tbody tr.hover-green:hover {
	background-color:  #28a7451f !important; 
}

#ModalHEP tbody tr:hover {
	background-color:  #fff2ba7a !important; 
}

#ModalHEP tbody tr:last-child {
    border-bottom: 0px;
}

#ModalHEP tbody td:first-child {
    border-top: 2px solid #ebedf2; 
	border-bottom: 0px; 
	width: 70%
}

#ModalHEP tbody td:last-child {
    border-top: 2px solid #ebedf2; 
	border-bottom: 0px; 	
	text-align: end; 
	padding-right: 10px;
	width:30%; 
}

#ModalHEP tbody td .badge{
    margin: 0; 
	position: relative; 
	top: -10px; 
	left: 5px; 
	cursor: pointer;
}

#ModalHEP .table th, .table td {
	padding: 14px 0 14px 0px;
	border-top-width:0 !important;
}

#ModalHEP .list-arrow p {
	padding: 5px 12px 0px 12px; 
	color: #212529 !important;
}

#ModalHEP .list-arrow li span {
	font-size: 0.85rem; 
	font-weight: 400;
}

#ModalHEP .list-arrow span {
	font-size: 13px; 
	font-weight: 500;
}









.msg-main{
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	height: 100%;
	width: 100%;
	margin: auto;
	background-color: rgba(70, 70, 70, 0.7);	
}



.msg-inner {	
	height: 400px;
	width: 360px;
	position: relative;
	left: 50%;
	margin-left: -180px;
	top: 50%;
	margin-top: -200px;	
}








  
.new-message-box {
    margin: 15px 0;
    padding-left: 20px;
    margin-bottom: 25px!important;
}

.new-message-box p{
    font-size: 1.15em;
    font-weight: 600;
}

.info-tab {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
    top: 8px;
}

.info-tab {
    float: left;
    margin-left: -23px;
}

.info-tab i::before {
    width: 24px;
    height: 24px;
    box-shadow: inset 12px 0 13px rgba(0,0,0,0.5);
}

.info-tab i::after {
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom-color: #fff;
    border-left-color: #fff;
    bottom: -18px;
}

.info-tab i::before, .info-tab i::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -17px;
    transform: rotateX(60deg);
}

.note-box, .warning-box, .tip-box-success, .tip-box-danger, .tip-box-warning, .tip-box-info, .tip-box-alert {
    padding: 12px 8px 3px 26px;
}


/***Success****/

.new-message-box-success {
    background: #eeeeee;
    padding: 3px;
    margin: 10px 0;
}

.tip-icon-success {
    background: #8BC34A;//500
}

.tip-box-success {
    color: #33691E;//900
    background: #DCEDC8;//100
}

.tip-icon-success::before {
    font-size: 25px;
    content:"\f00c";
    top: 8px;
    left: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: white;
}

.tip-icon-success i::before {
    background: #8BC34A;//500
}


/*******Danger*******/
.new-message-box-danger {
    background: #eeeeee;
    padding: 3px;
    margin: 10px 0;
}

.tip-icon-danger {
    background: #f44336;//500
}

.tip-box-danger {
    color: #b71c1c;//900
    background: #FFCCBC;//100
}

.tip-icon-danger::before {
    font-size: 25px;
    content:"\f00d";
    top: 8px;
    left: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: white;
}

.tip-icon-danger i::before {
    background: #f44336;//500
}

/*******warning*******/
.new-message-box-warning {
    background: #eeeeee;
    padding: 3px;
    margin: 10px 0;
}

.tip-icon-warning {
    background: #FFEB3B;//500
}

.tip-box-warning {
    color: #212121;//900
    background: #FFF9C4;//100
}

.tip-icon-warning::before {
    font-size: 25px;
    content:"\f071";
    top: 8px;
    left: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: #212121;
}

.tip-icon-warning i::before {
    background: #FFEB3B;//500
}

/*******info*******/
.new-message-box-info {
    background: #eeeeee;
    padding: 3px;
    margin: 10px 0;
}

.tip-box-info {
    color: #01579B;//900
    background: #B3E5FC;//100
}

.tip-icon-info {
    background: #03A9F4;//500
}

.tip-icon-info::before {
    font-size: 25px;
    content:"\f129";
    top: 8px;
    left: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: white
}

.tip-icon-info i::before {
    background: #03A9F4;//500
}


/*******info*******/
.new-message-box-alert {
    background: #FF6F00;
    padding: 3px;
    margin: 10px 0;
}

.tip-box-alert {
    color: #212121;//900
    background: #FFF8E1;//100
}

.tip-icon-alert {
    background: #FF6F00;//500
}

.tip-icon-alert::before {
    font-size: 25px;
    content:"\f06a";
    top: 8px;
    left: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: white
}

.tip-icon-alert i::before {
    background: #FF6F00;
}




.cc-pc-head-title-text {
  font-size: 24px !important;
}


.cc-cp-foot-byline {
  opacity: 0 !important;
}


.cc-cp-foot-save {
  background-color: #5fb759 !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-size: 13px !important;
  border: none !important;
  outline: none !important;
  transition: all 0.3s ease 0s !important;
}

.cc-nb-okagree {
  background-color: #5fb759 !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-size: 13px !important;
  border: none !important;
  outline: none !important;
  transition: all 0.3s ease 0s !important;
}

.cc-nb-reject {
  color: #343a40 !important;
  background-color: #fff !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-size: 13px !important;
  border: none !important;
  outline: none !important;
  transition: all 0.3s ease 0s !important;
}

.cc-nb-changep {
  color: #5fb759 !important;
  background-color: #fff !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-size: 13px !important;
  border: none !important;
  outline: none !important;
  transition: all 0.3s ease 0s !important;
}

