/* CSS toast message*/
/*Start*/
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1051; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  top: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;} 
  to {top: 30px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 30px; opacity: 1;} 
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}
/*End CSS toast message*/


/*start modal popup */
/* The Modal (background) */
.mark_modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1050;
	/* Sit on top */
	padding-top: 20px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}
.mark_modal h2
{
	display: block;
    font-size: 15px;
    margin-block-start: 0.23em;
    margin-block-end: 0.23em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
/* Modal Content */
.mark_modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 80%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}
/* The Close Button */

.mark_modal_close {
	color: white;
	float: right;
	font-size: 15px;
	font-weight: bold;
}
.mark_modal_close:hover,
.mark_modal_close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
.mark_modal-header {
    padding: 2px 16px;
    background-color: var(--pri-bg-color);
    color: white;
}
.mark_modal-body {
	padding: 2px 16px;
}

/*.modal-footer { padding: 2px 8px; background-color: #5cb85c; color: white; }*/
/*end modal popup */


/* Draggable File Upload */
.fileblock{
	/*width:75px;
	height:75px;*/
	padding:5px 10px;
	margin:4px;
	word-break: break-word;
	text-overflow:clip;
	display:inline;
}

.dropContainer{
    font-size: 1em;
	background-color: #b9b9b9;
    position: relative;
    min-height: 100px;
    padding: 15px;
    outline: 2px dashed #888888;
	outline-offset: -10px;
	-webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
	transition: outline-offset .15s ease-in-out, background-color .15s linear;

}
.pdf, .xlsx, .docx, .pptx, .mp4, .zip, .jpg, .jpeg, .png, .bmp, .gif
{
	height:50px;
	width:50px;
}
.pdf{
	background: url('../img/pdf.png') no-repeat;
    background-size: 100%;
}

.xlsx{
	background: url('../img/excel.png') no-repeat;
    background-size: 100%;
}

.docx{
	background: url('../img/docs.png') no-repeat;
    background-size: 100%;
}

.pptx{
	background: url('../img/pptx.png') no-repeat;
    background-size: 100%;
}

.mp4{
	background: url('../img/mp4.png') no-repeat;
    background-size: 100%;
}
.zip{
	background: url('../img/zip.png') no-repeat;
    background-size: 100%;
}
.jpg,.jpeg,.png,.bmp,.gif{
	background: url('../img/imgfile.png') no-repeat;
    background-size: 100%;
}
/* Draggable File Upload */

/* Loader */
.abkkoverlay
{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;    
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 1051;
}
.abkkoverlay .close{    
	float: right;
    margin-right: 30px;
    margin-top: 40px;
}
/* Loader */

/* stylish radio/checkbox button */
.switch{
	position:relative;
	display:inline-block;
	width:48px;
	height:24px
}
.switch input{
	opacity:0;
	width:0;
	height:0;
}

.slider{
	position:absolute;
	cursor:pointer;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#ccc;
	-webkit-transition:.4s;
	transition:.4s;
}

.slider:before{
	position:absolute;
	content:"";
	height:16px;
	width:16px;
	left:3px;
	bottom:4px;
	background-color:#fff;
	-webkit-transition:.4s;
	transition:.4s;
}

input:checked+.slider{
	background-color:#2196f3
}

input:focus+.slider{
	box-shadow:0 0 1px #2196f3
}

input:checked+.slider:before{
	-webkit-transform:translateX(26px);
	-ms-transform:translateX(26px);
	transform:translateX(26px);
}

.slider.round{
	border-radius:34px
}

.slider.round:before{
	border-radius:50%
}


/* stylish radio/checkbox button */

/* overwrite jquery ui css */
.ui-widget-header{
	border: none !important;
    background: #fff !important;
}
#tabs{
	border: none !important;
}
#tabs li{
	border-color:var(--pri-bg-color) !important;
}
#tabs li a{
	color:var(--pri-bg-color) !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover{
	border-color:var(--pri-bg-color) !important;
}
/* overwrite jquery ui css */

/* date range highlight */
.dp-highlight .ui-state-default {
	background: #484 !important;
	color: #FFF !important;
}
/* date range highlight */

/* bottom right notification */
.notification_container{	
    position: fixed;
	right:0px;
	bottom:-500px;
    width: 300px;
    border: 1px solid #d2d2d2;
    padding: 0.31em 0.72em;
    box-shadow: 0px 3px 18px 0px #dddddd;
    -webkit-box-shadow: 0px 3px 18px 0px #dddddd;
    -moz-box-shadow: 0px 3px 18px 0px #dddddd;
	background:#fff;
	display:none !important;
}
.notification_container td {
	padding:6px 4px;
}
.notification_container tr {
	border-bottom:1px solid #d0d0d0;
	cursor:pointer;
}
.notification_number {
    width: 50px;
    height: 50px;
    background: var(--pri-bg-color);
	color:#fff;
    vertical-align: text-bottom;
    border-radius: 50%;
    padding-top: 7px;
	font-size:1.5em;
	text-align:center;
}
/* bottom right notification */

/*css for new loader*/

.logo_splash {
    width: 192px;
    height: auto;
}

.loader_backgound {
    fill: #949494;
}

.loader_color {
    fill: var(--pri-bg-color);
}

.loader_svg {
    width: 96px !important;
    height: auto;
}
/*css end for new loader*/
