@charset "UTF-8";
/* The snackbar - position it at the bottom and in the middle of the screen */
*{box-sizing: border-box;}
html, body {
	height: 100%;background-color: #f0f1f6;
	margin: 0;font-family: 'Poppins', sans-serif;
}
img{max-width: 100%; height: auto;}


.info-icon-new {
    /* Style your icon as needed */
    cursor: pointer;

}
.hover-container-new {
	  position: relative;
    display: inline-block;
    border: 0px solid #aaa;
    border-radius: 100%; /* Circle shape */
    padding: 1px 5px;
    transition: background-color 0.2s; /* For a smooth background color change */
    font-size: 10px;
   
}

.info-box-new {
    display: none;
}

.hover-container-new:hover .info-box-new {
    display: block;
}

.hover-container-new:hover .info-box {
    display: block;
}




.video-container {
    display: flex;
     flex-direction: column; 
    align-items: center;     /* Vertically center */
    height: 100vh;           /* Take full viewport height */
}

video {
	border: 1px solid #aaa;
	padding:5px;
	 border-radius: 10px; 
    max-width: 100%; /* Ensure the video doesn't exceed container width */
    height: auto;    /* Maintain aspect ratio */
}

.info-container {
    position: relative;
    display: inline-block;
    border: 1px solid #aaa;
    border-radius: 100%; /* Circle shape */
    padding: 1px 5px;
    transition: background-color 0.2s; /* For a smooth background color change */
    font-size: 10px;

}

.info-box {
    display: none;
    position: absolute;
    z-index: 10;
    top: -200%; /* Positioned right below the icon */
    left: 50%;
    transform: translateX(-10%);
    padding: 10px;
    border: 1px solid #aaa;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    white-space: nowrap;/*  To prevent wrapping */
    font-size: 13px;
    /*box-sizing: border-box; 
    /*max-width: 70vw; /* Set your desired maximum width */
    /* Removed white-space: nowrap; to allow text wrapping */
    /*overflow-wrap: break-word; /* Ensure long words do not overflow the container */
    
}

.info-container:hover .info-box {
    display: block;
}

/* Optional styling for the icon */
.fas.fa-info-circle {
    font-size: 20px;
    color: #333;
    cursor: pointer;
}


#head{padding: 10px;
width: 100%;
display: block;
border: 2px solid #3d8ef7;
background-color: #3d8ef7;}
#sidemenu h1 {color: #eaeaea;
display: inline-block;
vertical-align: middle;
margin: 0;
padding: 0 0 0 5px;
font-size: 15px;
font-weight: 400;
line-height: 18px;
}
#sidemenu .logo1{
    width: 18px;
    display: inline-block;
    vertical-align: middle;
}
.topProfile {
    text-align: center;
    border-radius: 10px;
   text-transform: uppercase;
    padding: 15px 10px;
    background: #1c2135;
border-bottom: 1px solid #4b5eab;
box-shadow: 0px 1px 2px #4b5eab;
}
.AdminImg {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: block;
    margin: 20px auto 8px;
}
.adminName {
    color: #ccc;
    font-size: 14px;
    font-weight: 300;
}
.topProfile ul.socialIcon {
    padding: 10px 0;
    margin: 0;
}
.topProfile ul.socialIcon li {
    display: inline-block;
    padding: 0 4px;
}
.topProfile ul.socialIcon li a {
    color: #fff;
    font-size: 12px;
}
.topProfile ul.socialIcon li a:hover{
    color: #999;
}
.menuDescription {
    padding: 15px 10px;
}
.menuDescription i {
    padding-right: 10px;
}
.menuDescription a.menustyle {
    display: block;
    text-align: left;
    padding: 0 0 12px;
    border-bottom:1px solid #393939;
    margin: 0 0 12px;
    color: #c6c6c6;
    text-decoration: none;
}
.menuDescription a.menustyle:hover{
    color: #fff;
}
.menuDescription a.menustyle:last-child {
    border: none;
}



#full {
	min-height: 100%;
	width:100%;
	display: flex;
	flex-direction: row;
}

.supportb {
    display: block;
    text-align: center;
    border-radius: 12px;
    padding: 12px;
    border-top:1px solid #393939;
    border-bottom:1px solid #393939;
    margin: 9px;
    color: #575757;
    text-decoration: none;
    cursor:pointer;
    /*background-color:#ebebed;*/
}


#menu {
	visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 100px; /* Set a default minimum width */
	min-height: 100px;
	/*  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: 5px; /* Rounded borders */
	padding: 16px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	z-index: 1; /* Add a z-index if needed */
	left: 50%; /* Center the snackbar */
	bottom: 50%; /* 30px from the bottom */
}

#menu.show2 {
	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: menufadein 0.5s;
	animation: menufadein 0.5s;
}

#menu.hide {
	visibility: hidden; /* 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: menufadeout 0.5s;
	animation: menufadeout 0.5s;
}

#snackbar {
	visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 50px; /* 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: 30px 15px ; /* Rounded borders */
	padding: 10px 30px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	z-index: 1; /* Add a z-index if needed */
	right: 30px; /* Center the snackbar */
	bottom: 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 1.7s;
	animation: fadein 0.5s, fadeout 0.5s 1.7s;
}

#snackbar2 {
	visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 100px; /* Set a default minimum width */
	/* margin-left: -125px; /* Divide value of min-width by 2 */
	background-color: #4b5eab; /* Black background color */
	color: #fff; /* White text color */
	text-align: center; /* Centered text */
	border-radius: 30px 15px ; /* Rounded borders */
	padding: 10px 30px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	z-index: 1; /* Add a z-index if needed */
	right: 30px; /* Center the snackbar */
	bottom: 80px; /* 30px from the bottom */
}

#snackbar2.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;
	animation: fadein 0.5s;
}

#snackbar2.hide {
	visibility: vissible;
	/* 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: fadeout 0.5s;
	animation: fadeout 0.5s;
}

/* Animations to fade the snackbar in and out */
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {right: 0; opacity: 0;}
  to {right: 30px; opacity: 1;}
}

@keyframes fadein {
  from {right: 0; opacity: 0;}
  to {right: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {right: 30px; opacity: 1;}
  to {right: 0; opacity: 0;}
}

@keyframes fadeout {
  from {right: 30px; opacity: 1;}
  to {right: 0; opacity: 0;}
}

.loaderup {
	position: relative;
}

.appimg {
	width: 25px;
	height: 25px;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 7px;
}

.pending{
	font-size: 10px;
	min-width:60px;
}

.spinnerold {
	position: relative;
	width: 14px;
	height: 14px;
	margin: 0 0 0 -5px;
	padding: 10px;
	opacity: 0.5;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}
.spinner {
	position: relative;
	width: 17px;
	height: 10px;
	box-sizing: border-box;
	margin: 6px;
	border: 0px solid blue;
	border-radius: 15% 35%;
	border-left: 2px solid blue;
	border-right: 2px solid blue;
	
	opacity: 0.5;
	-webkit-animation: spin 4s linear infinite; /* Safari */
	animation: spin 4s linear infinite;
}

.loadersmallold {
	position: absolute;
	box-sizing: border-box;
	border: 4px solid #7480ad;
	border-radius: 50%;
	border-radius: 15% 35%;
	border-top: 4px solid #fff;
	width: 20px;
	height:20px;
	padding: 5px;
	margin: -0px 0px 0px -50px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
}
.loadersmall {
	position: absolute;
	box-sizing: border-box;
	

	border-radius: 10% 50%;
	
	border-left: 3px solid white;
	border-right: 3px solid white;
	
	width: 20px;
	height:15px;
	padding: 5px;
	margin: 3px 0px 0px -50px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

.loaderold {
	position: relative;
	margin: 5% auto auto auto;
	border: 11px solid #fff;
	border-radius: 50%;
	border-top: 11px solid #4b5eab;
	width: 100px;
	height: 100px;
	padding: 5%;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
}

.loader {
	position: fixed;
	
	top: calc(50% - 80px);
	left:calc(50% - 80px);
	
	
	border-radius: 5% 37%;
	
	
	border-left: 11px solid #4b5eab;
	border-right: 11px solid #4b5eab;
	width: 150px;
	height: 100px;
	padding: 0px;
	opacity:0.7;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.center {
	margin: auto;
	width: 50%;
	border: 3px solid green;
	padding: 10px;
}

#sidemenu {
	width:200px;
background-color: #1f1f1d;
float: left;
}

.menustyle {
	color: white;
	background-color: none;
	text-align: center;
	cursor: pointer;font-size: 14px;
}

.requests{
color: #666;
border-radius: 10% 0%;
text-align: left;
width:100%;
padding: 2px 5px;
font-size: 16px;
background: #f9f9f9e9;
border-top: 1px solid #4b5eab;


}

.meta{
	 position:relative;
    top:-7px;
color: #7202e1;
border-radius: 60px;
padding: 1px 3px ;

font-size: 6px;
border: 1px solid #7202e1;

}

.assoc{
	 
color: red;
border-radius: 60px;
padding: 3px 4px ;

font-size: 10px;
border: 1px solid red;

}

.username{
color: #666;
border-radius: 15px 30px;
box-shadow: 1px 1px 5px #dbdbdb;
padding: 10px 20px;
font-size: 16px;
background: #f9f9f9;
border: 1px solid #ddd;

}
.usernamenew{
color: #666;
border-radius: 10% 20%;

padding: 5px 15px;
font-size: 16px;
background: #f9f9f9;
border-top: 1px solid #4b5eab;
border-bottom: 1px solid #4b5eab;

}
.username b {
    font-weight: 500;
    font-size: 13px;
}
.user{

color: #242424;

border-radius: 15px 30px;
margin:5px;
font-size:18px;
background: #fff;
border-top: 2px solid #4b5eab;
border-bottom: 2px solid #4b5eab;
padding: 10px 15px !important;

	
}
.user a{
	
}
.user:hover{
	
	color:#556ac2;
	border-radius: 10px 20px;
	box-shadow: 0px 2px 3px #888;
	margin: 5px;
}

.tab {overflow: hidden;
width: 100%;
border: 2px solid #e6e6e6;
background-color: #fff;
margin: 15px;
border-radius: 6px;
}

.tabname {
	overflow: hidden;
width: 100%;
padding: 10px;
border: 2px solid #e6e6e6;
margin: 15px 15px 0;
background-color: #fff;
border-radius: 6px;
}

.tabname input {
	max-width: 25vmin;
	border-radius: 5px;
	border-width:0px;
	border-style: none;
	border:0;
	-webkit-appearance: none;
	padding:2px;
	box-shadow: 0px 0.5px 1px #4b5eab;
	
}
.tabname input:focus,span:focus {
	min-width: 25vmin;
	border-radius: 5px;
	border-style: solid;
	border-width:0px;
	outline:0;
	padding:2px;
	box-shadow: 0px 1px 3px #4b5eab;
	
}
input {
	
	border-style: solid;
	border-width:1px;
	border-radius:2px;
	padding:2px;
	box-shadow: 0px 0px 0px #1c2135;
	
}

 input:focus , span:focus {
	border-style: solid;
	border-width:1px;
	border-radius:2px;
	outline: none;
	padding:2px;
	box-shadow: 0px 1px 3px #1c2135;
	
}
.block1 {
    margin: 10px;
    color: #aeaeae;
}
.block1 a{
    color: #ccc;
}


.tabname span {}

.name {
	font-weight: bolder;
	margin: 10px 10px 10px 0px;
}

.tabclicked {
	background-color: #344175;
	float: left; border: none;
	border-right: 1px solid #ececec;
	outline: none;
	padding: 10px 20px;
	transition: 0.3s;
	color: white;
	font-size: 14px;
}

.tabforclick {
background-color: inherit;
float: left;border: none;
border-right: 1px solid #ececec;
outline: none;
text-decoration: none;
cursor: pointer;
padding: 10px 20px;
transition: 0.3s;
font-size: 14px; color:#333;
}
.tabforclick:hover {
	background-color:#4b5eab;
	 color:#fff;
}
.tabforclick.active {
	background-color: #ccc;
}

.tab button:not(.tabclicked) {
background-color: inherit;
float: left;border: none;
border-right: 1px solid #ececec;
outline: none;
text-decoration: none;
cursor: pointer;
padding: 10px 20px;
transition: 0.3s;
font-size: 14px; color:#333;
}

/* Change background color of buttons on hover */
.tab button:not(.tabclicked):hover {
	background-color:#4b5eab;
	 color:#fff;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
}

.dropbtngreen {
	color: white;
	cursor: pointer;
	padding: 7px;
	min-width: 25vmin !important;
	font-size: 16px;
	border: 0px solid #333;
background-color: #38964e;
	border-radius: 30px 10px;
}

.dropbtnblue {
color: #f2f2f2;
cursor: pointer;
padding: 7px;
min-width: 25vmin;
font-size: 15px;
border-radius: 30px 10px;
border: 1px solid #337ea6;
background-color: #475db5;
}

.dropbtnyellow {
	background-color: #bcc600;
	cursor: pointer;
	color: white;
	padding: 7px;
	min-width: 25vmin;
	font-size: 15px;
	border: none;
	border-radius: 30px 10px;
}

.dropbtnred {
	color: white;
	cursor: pointer;
	padding: 7px;
	min-width: 25vmin;
	font-size: 16px;
	text-align: center;
	border-radius: 30px 10px;
	border: 0px solid #333;
background-color: #c93434;
}

.dropbtnorange {
	background-color: #cc9a02;
	cursor: pointer;
	color: white;
	padding: 7px;
	min-width: 25vmin;
	font-size: 16px;
	border: none;
	border-radius: 30px 10px;
}

.dropbtnaqua {
	background-color: #14be9c;
	cursor: pointer;
	color: white;
	padding: 7px;
	min-width: 25vmin;
	font-size: 15px;
	border: none;
	border-radius: 30px 10px;
}

.dropbtngray {
	padding: 7px;
	min-width: 25vmin;
	font-size: 15px;
	cursor:pointer;
	border: none;
	border-radius: 30px 10px;
	color: #f2f2f2;
border: 0px solid #333;
background-color: #6a6a6b;
}

.reload {
cursor: pointer;
border: 0px solid #3d8ef7;
background-color:#4b5eab;
 box-shadow: 0px 2px 5px #888;
margin: 5px 10px;
font-size: 15px;
color: #f4f4f4;
padding: 8px 25px;
border-radius: 50px;
}

.reload:hover {
	background-color: #c3d4d4;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-contentoff {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content {
	display: none;
	position: absolute;
	left: 0px;
	margin: 0 0 0 0;
	background-color: #f1f1f1;
	border-radius: 20px 10px;	
	min-width: calc(100% + 13px);
	max-width: calc(100% + 13px);
	box-shadow: 0px 2px 4px 1px #777;
	z-index: 1;
}

.dropdown-content input {
	display: block;
max-width:80%;
margin: 5px; padding:5px;
box-shadow: 0px 0px 0px #888;
border: 1px solid #666;
}

.dropdown-content span {
	display: block;
	margin: 5px;color: #666;
}

.dropdown-content a {
	display: block;
	cursor:pointer;
	border-radius: 30px 10px;
	color:#666;
	padding: 4px 13px;
	text-decoration: none;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover  .dropdown-content {
	display: block;
}


.dropdown:hover .dropbtn2 {
	background-color: #3e8e41;
}

.red {
	text-transform: uppercase;
	color: red;
}
#customersmain tr:nth-child(2n+1) {
    background: #fff;
}
.green {
	text-transform: uppercase;
	color: green;
}

#customers, #customersmain, #customerlist {
	border-collapse: collapse;
	word-break: break-word;background:#eee;
	width: 100%;margin:0 15px 15px;
}


#customerlist  td {
padding: 8px;
font-size: 14px;
border: 1px solid #e6e6e6;
color: #19244f;
line-height:100%;
}

#customers td, th, #customersmain td, th #customerlist th {
padding: 8px;
font-size: 14px;
border: 2px solid #e6e6e6;
color: #333;
}

#customerlist td,#customersmain td {

	border-bottom: 1px solid #a9bfcc;
}

/*#customers tr:nth-child(even){background-color: #f2f2f2;}*/

/*#customers tr:hover {background-color: #ddd;}*/
#customerlist th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
text-transform: uppercase;
color: #b4b8b8;
border-radius: 0;
border: 2px solid #393938;

margin: 15px;
}

#customers th, #customersmain th, #customerlist th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
text-transform: uppercase;
color: #333;
border-radius: 3px;
border-width: 2px;
border-style: solid;
border-color: #e6e6e6;
font-size: 15px;
background: #fff;
font-weight: 500;
}

#customerlist th {
	color:#242424;
	text-style: bold;
	border-radius: 3px;
border-width: 1px;

	border-style: solid;
	border-color: #e6e6e6;
	 
	}
	
	
	

#customershalf {
	table-layout: fixed;
	border-collapse: collapse;
	word-break: break-word;
}

#customershalf td, #customershalf th {
	border: 0px solid #ddd;
	padding: 8px;
	max-width: 23vmax;
	font-size:14px;
}

/*#customers tr:nth-child(even){background-color: #f2f2f2;}*/

/*#customers tr:hover {background-color: #ddd;}*/
#customershalf th {
	padding-top: 6px;
	padding-bottom: 6px;
	text-align: left;
	background-color: #a6e1b8;
	text-transform: uppercase;
	color: #000024;
	opacity: 0.7;
	border-radius: 3px;
	box-shadow: 0px 1px 3px #888;
}

.overswitch {
	position: absolute;
	display: inline;
	margin: 0 0 0 10px;
	
	text-align: right;
	
}

.overswitch,.switcs{
	position: relative;
flex: auto;
flex-wrap: wrap;
height:100%;


}

.switchline{
	width:86%;
	height:1px;
	background-color: #ccc;
	margin-left:7%;
	
}

.myswitch {
	display: inline-flex;
	flex-direction: row;
	align-content: flex-start;
	align-items: center;
	
	flex-wrap: wrap;
	
	width:95%;
	margin: 10px 10px 10px 10px;color: #333;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height:25px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:#d7d7d7;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left:10px;
	bottom: 4px;
	background-color: #fbfbfb;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50%;
}

input:checked+.slider {
	background-color:#2d47ad;
}

input:checked+.slider:before {
	background-color: white;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.userclick {
	text-decoration: none;
	color: #279fe7;
	cursor: pointer;
}

.userclick:link {
	text-decoration: none;
	color: #0066ff;
	cursor: pointer;
}

.userclick:visited {
	text-decoration: none;
	color: #0066ff;
	cursor: pointer;
}

.userclick:hover {
	text-decoration: underline;
	color: #0066ff;
	cursor: pointer;
}

.userclick:active {
	text-decoration: underline;
	color: #0066ff;
	cursor: pointer;
}


.main-block{
	
	position: relative;
min-width: auto;
flex: auto;
flex-wrap: wrap;
	
margin:10px;	
	
}
.bubswi, .bubble2{
	
position: relative;
flex:auto;
text-align: left;
padding: 10px 10px 10px;
margin: 10px;
border: 2px solid #ababab;
background-color: #fcfcfc;
border-radius: 1px;
color: #333;
}



.bubble, .bubble2 {
	
position: relative;
min-width: auto;
flex: auto;
flex-wrap: wrap;
text-align: left;
padding: 10px 20px 20px;
margin: 2%;
border: 2px solid #e6e6e6;
background-color: #fff;
border-radius: 12px;
color: #333;
}
.bubble2{
	padding: 10px 10px;
	margin:15px;
/*max-width:95%;/******/
	/*margin: 2% 8% 2% 2%;*/
	display: inline-flex;
	overflow-x:hidden;
	flex-direction: row;
	align-content: center;
	justify-content:space-evenly;
	flex-wrap: wrap;
}
@media (max-width:960px) {
	.bubble2{padding: 10px 1%;
	margin: 1%;
	}
}

#main {
	width: 100%;
	display: flex;
	overflow-x:scroll;
	flex-direction: row;
	align-content: flex-start;
	justify-content:flex-start;
	flex-wrap: wrap;
}

.bubbleswitch {
position: relative;
min-width: auto;
flex: auto;
flex-wrap: wrap;
text-align: left;
padding: 10px 40px 10px 10px;
margin: 2%;
color: #333;
border: 2px solid #e6e6e6;
background-color: #fff;
border-radius: 12px;
}



/*** TDS Start ***/
#customerlist {
    border: 0px solid #393938;
    background-color: #eee !important;
    border-radius: 6px;
    
    margin: 15px;
}
.LogIn-block {justify-content: center;display: flex;
width: 100%;
heigth:100%;
}
.LogIn-block .bubblecenter {
    margin-top: 50px;
}


.bubblecenter {
	
position: relative;
text-align: center;
border-radius: 20px;
padding: 20px 25px;
width: 400px;
border: 2px solid #e6e6e6;
background-color: #fff;
}
.bubblecenter h2 {
    margin:0 0 20px;
    padding: 0;
    border-bottom: 1px dashed #ccc;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color:#4b5eab;
}
.bubblecenter input {
	
justify-content: center;
	}
.bubblecenter input {
    width: 100%;
    display: block;
    border: 1px solid #666;
    margin: 0 0 15px;
    height: 40px;
    padding: 5px 15px;
}
.bubblecenter input {
width: 100%;
display: block;
border: 1px solid #444;
margin: 0 0 15px;
height: 45px;
padding: 5px 15px;
border-radius: 3px;
font-size: 16px;
color: #000;
background: #f0f1f6;
}
.dropbtnwhite {
    background-color:#374480;
    color: #fff;
    padding: 10px 50px;
    box-shadow: 0px 2px 5px #888;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    letter-spacing: 1px;
    cursor: pointer;
}
.dropbtnupdate {
	border-radius: 30px 20px;
	 border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  
  border-right: 0px solid green;
   border-left: 0px solid green;
 
    background-color:#374480;
    color: #fff;
    padding: 2px 3px;
    box-shadow: 0px 2px 5px #888;
    font-size: 8px;
   
    letter-spacing: 1px;
    cursor: pointer;
}
.dropbtnwhite:hover{background-color:#344175;}
.tab button {
    font-family: 'Poppins', sans-serif;
}
.bubble input:not(.checkbox),.bubble2 input:not(.checkbox) {width: 250px;

margin: 5px 0;
padding: 5px;
font-size: 15px;
color: #000;
border: 1px solid #333;
background-color: #f0f1f6;
border-radius: 2px;
}
.tabname #search {
    max-width: 250px !important;
height: 36px;
padding: 5px 10px;
border-radius: 20px;
font-size: 15px;
background: none;
color: #333 !important;
border: 1px solid #569;
box-shadow: 1px 1px 0px #67b;
}
#customers tr:nth-child(2n-1), #customersmain:nth-child(2n-1), #customerlist tr:nth-child(2n-1) {
    background:#fff;
}
#customerlist th p {
    margin: 0;
}
#head .lt-block {
    float: left;
}
#head .rt-block {
    float: right;
}
.clear {
    clear: both;
}
#head .rt-block ul {
    margin: 0;
    padding: 0;
}
#head .rt-block ul li {
    display: inline-block;
    padding: 0 8px;position: relative;
    vertical-align: middle;
}
#head .rt-block ul li i {
    color:#fff;
    font-size: 20px;
    cursor: pointer;
}
#head .rt-block ul li .AdminImg1 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
#head .lt-block input {
    width: 250px;
height: 34px;
border: 1px solid #fff;
margin-left: 5px;
font-size: 16px;
padding: 5px 12px;
border-radius: 30px;
background: no-repeat;
color:#fff;
}
#head .rt-block ul li ul {
    position: absolute;
    background: #fff;
    right: 0;
    width: 150px;
    border-radius: 10px;
    display: none;
}
#head .rt-block ul li:hover ul{ display: block !important;}
#head .rt-block ul li ul li {
    display: block;
    padding: 6px 10px;
    border-bottom: 1px solid #ccc;
}
#head .rt-block ul li ul li:last-child{ border: none; }
#head .rt-block ul li ul li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
}
.bubbleswitch h3 {
    color: #333;
    margin-top: 0;
    font-weight: 500;
}
.bubble h2 {
    color: #333;
    font-weight: 500;
    margin-top: 0;
}
.bubble h3 {
    color: #333;
    font-weight: 400;
}
.bubble p {
    color: #333;
}

@media only screen and (max-width: 1023px){
.tabclicked{padding:10px; font-size: 12px;}
.tab button:not(.tabclicked) {padding:10px; font-size: 12px;}
}

@media only screen and (max-width: 800px){
#sidemenu {width:40px;transition: 0.2s;overflow-x: hidden;	}
.topProfile {padding: 10px 5px; }
.loader{
	top: calc(35% - 80px);
	left:calc(50% - 80px);}
#sidemenu .menustyle {font-size: 0;}
#sidemenu .menustyle i{font-size: 12px;}
#sidemenu .logo1 {margin: 0 auto; display: block;}
#sidemenu h1{font-size: 10px; writing-mode: tb-rl; margin: 5px 0px 0px -10px; }
.adminName{font-size: 0;}
.AdminImg {height: 30px; width: 30px;}

.menuDescription {padding: 15px 5px;}
.menuDescription i {padding-right: 10px;}
.menuDescription a.menustyle {text-align: center;}

#sidemenuold:hover h1{font-size:12px;}
#sidemenuold:hover .menustyle {font-size:9px;}
#sidemenuold:hover {width: 100px;}
#sidemenuold:hover .AdminImg {height:50px; width:50px;}
#sidemenuold:hover .adminName{font-size:12px;}
#sidemenuold:hover .menuDescription a.menustyle {text-align: left;}
}

@media only screen and (max-width: 767px){
.bubblecenter{ width: 92%;}
.tabclicked {width: 25%;}
.tab button:not(.tabclicked) {width: 25%;}
#customers td, th, #customersmain td, th #customerlist td, th {padding: 5px; font-size: 12px;}
.username {margin-bottom: 10px;}
#head .lt-block input {width: 200px;}
.customerlist2 th, .customerlist2 td {display: block; padding: 10px !important;}
}

@media only screen and (max-width: 500px){
.tabclicked {width: 50%;}
.tab button:not(.tabclicked) {width: 50%;}
.bubble input {width: 100%;}
.dropbtnred {font-size: 15px;}
#head .lt-block {float: none;}
#head .lt-block input {width: 96%;}
#head .rt-block {float: none; text-align: center; padding-top: 10px;}
}
/*** TDS End ***/