/**/
/* defaults */
/**/
.sky-form,
.sky-form .label {
	color:#333;
	text-align:left;
	padding:0;
	font-size:14px;
	font-weight:300;
}
.radio+.radio, 
.checkbox+.checkbox {
	margin-top:12px;
	display:inline;
}
.sky-form.boxed {
	border:rgba(0,0,0,0.1) 1px solid;
}
.sky-form header {
	margin:0;
	background: #F5F5F5;
	background-color: transparent;
	background: -webkit-linear-gradient(top, white 1%, #f9f9f9 98%) repeat scroll 0 0 transparent;
	background: linear-gradient(to bottom, white 1%, #f9f9f9 98%) repeat scroll 0 0 transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-bottom:rgba(0,0,0,0.07) 1px solid;
	padding:15px 20px;
	font-size:20px;
	font-weight:400;
}
.sky-form.boxed fieldset {
	padding:15px;
}
.sky-form label.captcha>img {
	position:absolute;
	right:0; top:3px; right:2px;
}

.sky-form fieldset {
	display: block;	
	padding: 5px 20px 5px;
}
.sky-form fieldset + fieldset {
	border-top: 0px solid rgba(0,0,0,.1);
}

.sky-form section,
.sky-form .section {
	padding:0;
	margin-bottom: 20px;
}
.sky-form footer {
	margin:0 15px 10px 15px;;
	border-top: rgba(0,0,0,0.03) 1px solid;
}
.sky-form footer:after {
	content: '';
	display: table;
	clear: both;
}

.sky-form .label {
	display: block;
	margin-bottom: 6px;
	line-height: 19px;
}
.sky-form .label.col {
	margin: 0;
	padding-top: 10px;
}
.sky-form .note {
	margin-top: 6px;
	padding: 0 1px;
	font-size: 12px;
	line-height: 15px;
	color: rgba(0,0,0,0.5);
	font-weight:400;
}
.sky-form .input,
.sky-form .select,
.sky-form .textarea,
.sky-form .radio,
.sky-form .checkbox,
.sky-form .toggle,
.sky-form .button {
	position: relative;
	display: block;
}
.sky-form .input input,
.sky-form .label ,
.sky-form .select select,
.sky-form .textarea textarea {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	height: 28px;
	padding: 2px;
	outline: none;
	border-width: 2px;
	border-style: solid;
	border-radius: 0;
	background: #fff;
	font: 15px/19px 'Open Sans', Helvetica, Arial, georgia;
	color: #404040;
	appearance: normal;
	-moz-appearance: none;
	-webkit-appearance: none;
	 
}
.sky-form .label 
{
	padding-left:0px;
	padding-right:1px;
	padding-top:4px;
	text-align:left;
	vertical-align:middle;
	border:0px solid #000;
	font-family:Helvetica;
    margin-top: 3px;
    font-weight: 600;
	color: black;
    font-size: 14px;
}





.sky-form .col {
	float: left;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/**/
/* file inputs */
/**/
.sky-form .input-file .button {
	position: absolute;
	top: 4px;
	right: 4px;
	float: none;
	height: 31px;
	margin: 0;
	padding: 0 20px;
	font-size: 13px;
	line-height: 31px;
}
.sky-form .input-file .button:hover {
	box-shadow: none;
}
.sky-form .input-file .button input {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	font-size: 30px;
	cursor: pointer;
	opacity: 0;
}


/**/
/* selects */
/**/
.sky-form .select i {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 5px;
	height: 11px;
	background: #fff;
	box-shadow: 0 0 0 12px #fff;
}
.sky-form .select i:after,
.sky-form .select i:before {
	content: '';
	position: absolute;
	right: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.sky-form .select i:after {
	bottom: 0;
	border-top: 4px solid #404040;
}
.sky-form .select i:before {
	top: 0;
	border-bottom: 4px solid #404040;
}
.sky-form .select-multiple select {
	height: auto;
}


/**/
/* textareas */
/**/
.sky-form .textarea textarea {
	height: auto;
	resize: none;
}
.sky-form .textarea-resizable textarea {
	resize: vertical;	
}
.sky-form .textarea-expandable textarea {
	height: 39px;
}
.sky-form .textarea-expandable textarea:focus {
	height: auto;
}


/**/
/* radios and checkboxes */
/**/
.sky-form .radio,
.sky-form .checkbox {
	margin-bottom: 14px;
	padding-left: 27px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
	margin-top:6px;
	display:inline;
}
.sky-form .radio:last-child,
.sky-form .checkbox:last-child {
	margin-bottom: 0;
}
.sky-form .radio input,
.sky-form .checkbox input {
	position: absolute;
	left: -9999px;
}
.sky-form .radio i,
.sky-form .checkbox i {
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	width: 19px;
	height: 19px;
	outline: none;
	border-width: 2px;
	border-style: solid;
	background: #fff;
}
.sky-form .radio i {
	border-radius: 50%;
}
.sky-form .radio input + i:after,
.sky-form .checkbox input + i:after {
	position: absolute;
	opacity: 0;
	transition: opacity 0.1s;
	-o-transition: opacity 0.1s;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}
.sky-form .radio input + i:after {
	content: '';
	top: 5px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}
.sky-form .checkbox input + i:after {
	content: '\f00c';
	top: 0;
	left: -1px;
	width: 15px;
	height: 15px;
	font: normal 12px/16px FontAwesome;
	text-align: center;
}
.sky-form .radio input:checked + i:after,
.sky-form .checkbox input:checked + i:after {
	opacity: 1;
}
.sky-form .inline-group {
	margin: 0 -30px -4px 0;
}
.sky-form .inline-group:after {
	content: '';
	display: table;
	clear: both;
}
.sky-form .inline-group .radio,
.sky-form .inline-group .checkbox {
	float: left;
	margin-right: 30px;
}
.sky-form .inline-group .radio:last-child,
.sky-form .inline-group .checkbox:last-child {
	margin-bottom: 4px;
}


/**/
/* toggles */
/**/
.sky-form .toggle {
	margin-bottom: 4px;
	padding-right: 61px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.sky-form .toggle:last-child {
	margin-bottom: 0;
}
.sky-form .toggle input {
	position: absolute;
	left: -9999px;
}
.sky-form .toggle i {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	display: block;
	width: 49px;
	height: 22px;
	border-width: 2px;
	border-style: solid;
	border-radius: 12px;
	background: #fff;
}
.sky-form .toggle i:after {
	content: 'OFF';
	position: absolute;
	top: 2px;
	right: 8px;
	left: 8px;
	font-style: normal;
	font-size: 9px;
	line-height: 13px;
	font-weight: 700;
	text-align: left;
	color: #5f5f5f;
}
.sky-form .toggle i:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 4px;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	opacity: 1;
	transition: right 0.2s;
	-o-transition: right 0.2s;
	-ms-transition: right 0.2s;
	-moz-transition: right 0.2s;
	-webkit-transition: right 0.2s;
}
.sky-form .toggle input:checked + i:after {
	content: 'ON';
	text-align: right;
}
.sky-form .toggle input:checked + i:before {
	right: 33px;
}


/**/
/* ratings */
/**/
.sky-form .rating {
	margin-bottom: 4px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
}
.sky-form .rating:last-child {
	margin-bottom: 0;
}
.sky-form .rating input {
	position: absolute;
	left: -9999px;
}
.sky-form .rating label {
	display: block;
	float: right;
	height: 17px;
	margin-top: 5px;
	padding: 0 2px;
	font-size: 17px;
	line-height: 17px;
	cursor: pointer;
}


/**/
/* buttons */
/**/
/*
.sky-form .button {
	float: right;
	height: 35px;
	overflow: hidden;
	margin: 10px 0 0 20px;
	outline: none;
	border: 0;
	font: 300 15px/39px 'Open Sans', Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}
.sky-form .btn {
	height: 35px;
	margin: 10px 0 0 10px;
}
.sky-form .btn:hover {
	margin-bottom:0;
}
.sky-form .input-group-btn .btn {
	margin:0;
}
*/
/**/
/* tooltips */
/**/
.sky-form .tooltip {
	position: absolute;
	z-index: 1;
	left: -9999px;
	padding: 2px 8px 3px;
	font-size: 11px;
	line-height: 16px;
	font-weight: 400;
	background: rgba(0,0,0,0.9);
	color: #fff;
	opacity: 0;
	transition: margin 0.3s, opacity 0.3s;
	-o-transition: margin 0.3s, opacity 0.3s;
	-ms-transition: margin 0.3s, opacity 0.3s;
	-moz-transition: margin 0.3s, opacity 0.3s;
	-webkit-transition: margin 0.3s, opacity 0.3s;
}
.sky-form .tooltip:after {
	content: '';
	position: absolute;
}
.sky-form .input input:focus + .tooltip,
.sky-form .textarea textarea:focus + .tooltip {
	opacity: 1;	
}

.sky-form .tooltip-top-right {
	bottom: 100%;
	margin-bottom: 15px;
}
.sky-form .tooltip-top-right:after {
	top: 100%;
	right: 16px;	
	border-top: 4px solid rgba(0,0,0,0.9);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-top-right,
.sky-form .textarea textarea:focus + .tooltip-top-right {
	right: 0;
	left: auto;
	margin-bottom: 5px;
}

.sky-form .tooltip-top-left {
	bottom: 100%;
	margin-bottom: 15px;
}
.sky-form .tooltip-top-left:after {
	top: 100%;
	left: 16px;
	border-top: 4px solid rgba(0,0,0,0.9);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-top-left,
.sky-form .textarea textarea:focus + .tooltip-top-left {
	right: auto;
	left: 0;
	margin-bottom: 5px;
}

.sky-form .tooltip-right {
	top: 9px;
	white-space: nowrap;
	margin-left: 15px;
}
.sky-form .tooltip-right:after {
	top: 6px;
	right: 100%;
	border-top: 4px solid transparent;
	border-right: 4px solid rgba(0,0,0,0.9);
	border-bottom: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-right,
.sky-form .textarea textarea:focus + .tooltip-right {
	left: 100%;
	margin-left: 5px;
}

.sky-form .tooltip-left {
	top: 9px;
	white-space: nowrap;
	margin-right: 15px;
}
.sky-form .tooltip-left:after {
	top: 6px;
	left: 100%;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid rgba(0,0,0,0.9);
}
.sky-form .input input:focus + .tooltip-left,
.sky-form .textarea textarea:focus + .tooltip-left {
	right: 100%;
	left: auto;
	margin-right: 5px;
}

.sky-form .tooltip-bottom-right {
	top: 100%;
	margin-top: 15px;
}
.sky-form .tooltip-bottom-right:after {
	bottom: 100%;
	right: 16px;	
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.9);
	border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-bottom-right,
.sky-form .textarea textarea:focus + .tooltip-bottom-right {
	right: 0;
	left: auto;
	margin-top: 5px;
}

.sky-form .tooltip-bottom-left {
	top: 100%;
	margin-top: 15px;
}
.sky-form .tooltip-bottom-left:after {
	bottom: 100%;
	left: 16px;
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.9);
	border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-bottom-left,
.sky-form .textarea textarea:focus + .tooltip-bottom-left {
	right: auto;
	left: 0;
	margin-top: 5px;
}


/**/
/* normal state */
/**/
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea,
.sky-form .radio i,
.sky-form .checkbox i,
.sky-form .toggle i,
.sky-form .icon-append,
.sky-form .icon-prepend {
	border-color: #e5e5e5;
	transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}
.sky-form .toggle i:before {
	background-color: #2da5da;	
}
.sky-form .rating label {
	color: #ccc;
	transition: color 0.3s;
	-o-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-webkit-transition: color 0.3s;
}
.sky-form .button {
	background-color: #2da5da;
	opacity: 0.8;
	transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}
.sky-form .button.button-secondary {
	background-color: #b3b3b3;
}
.sky-form .icon-append,
.sky-form .icon-prepend {
	color: #ccc;
}
.sky-form .icon-prepend {
	left: 5px;
	padding-right: 3px;
	border-right-width: 1px;
	border-right-style: solid;
}
.sky-form .icon-append {
	right: 5px;
	padding-left: 3px;
	border-left-width: 1px;
	border-left-style: solid;
}
.sky-form .icon-append, .sky-form .icon-prepend {
	position: absolute;
	top: 5px;
	width: 29px;
	height: 29px;
	font-size: 15px;
	line-height: 29px;
	text-align: center;
}
.sky-form .input .icon-prepend + input, 
.sky-form .textarea .icon-prepend + textarea {
	padding-left: 46px;
}
.sky-form .input .icon-prepend + .icon-append + input, 
.sky-form .textarea .icon-prepend + .icon-append + textarea {
	padding-left: 46px;
}

/**/
/* hover state */
/**/
.sky-form .input:hover input,
.sky-form .select:hover select,
.sky-form .textarea:hover textarea,
.sky-form .radio:hover i,
.sky-form .checkbox:hover i,
.sky-form .toggle:hover i {
	border-color: #c6c6c6;
}
.sky-form .rating input + label:hover,
.sky-form .rating input + label:hover ~ label {
	color: #2da5da;
}
.sky-form .button:hover {
	opacity: 1;
}


/**/
/* focus state */
/**/
.sky-form .input input:focus,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .radio input:focus + i,
.sky-form .checkbox input:focus + i,
.sky-form .toggle input:focus + i {
	border-color: #c6c6c6;
}


/**/
/* checked state */
/**/
.sky-form .radio input + i:after {
	background-color: #2da5da;	
}
.sky-form .checkbox input + i:after {
	color: #2da5da;
}
.sky-form .radio input:checked + i,
.sky-form .checkbox input:checked + i,
.sky-form .toggle input:checked + i {
	border-color: #2da5da;	
}
.sky-form .rating input:checked ~ label {
	color: #2da5da;	
}


/**/
/* error state */
/**/
.sky-form .state-error input,
.sky-form .state-error select,
.sky-form .state-error textarea,
.sky-form .radio.state-error i,
.sky-form .checkbox.state-error i,
.sky-form .toggle.state-error i {
	background: #fff0f0;
}
.sky-form .state-error select + i {
	background: #fff0f0;
	box-shadow: 0 0 0 12px #fff0f0;
}
.sky-form .toggle.state-error input:checked + i {
	background: #fff0f0;
}
.sky-form .note-error {
	color:#fff;
	padding:3px;
	display:inline-block;
	background-color: #ee9393;
}


/**/
/* success state */
/**/
.sky-form .state-success input,
.sky-form .state-success select,
.sky-form .state-success textarea,
.sky-form .radio.state-success i,
.sky-form .checkbox.state-success i,
.sky-form .toggle.state-success i {
	background: #f0fff0;
}
.sky-form .state-success select + i {
	background: #f0fff0;
	box-shadow: 0 0 0 12px #f0fff0;
}
.sky-form .toggle.state-success input:checked + i {
	background: #f0fff0;
}
.sky-form .note-success {
	color:#fff;
	padding:3px;
	display:inline-block;
	background-color: #6fb679;
}


/**/
/* disabled state */
/**/
.sky-form .input.state-disabled input,
.sky-form .select.state-disabled,
.sky-form .textarea.state-disabled,
.sky-form .radio.state-disabled,
.sky-form .checkbox.state-disabled,
.sky-form .toggle.state-disabled,
.sky-form .button.state-disabled {
	cursor: default;
	opacity: 0.5;
}
.sky-form .input.state-disabled:hover input,
.sky-form .select.state-disabled:hover select,
.sky-form .textarea.state-disabled:hover textarea,
.sky-form .radio.state-disabled:hover i,
.sky-form .checkbox.state-disabled:hover i,
.sky-form .toggle.state-disabled:hover i {
	border-color: #e5e5e5;
}



/* sj - css - 19-03-2025 */




/* Welcome Text */
.navbar-brand1 {
    font-size: 2rem;
    font-weight: bold;
	color: #b31d7a !important;
    padding-left: 10%;
    font-family: Georgia, serif;

    
}

/* Company Name Animation */

/* Fade In from Left */

/* Gradient Animated Text Effect */
.bg_move {
	background: repeating-radial-gradient(circle at 100% 100%, 
		rgba(0, 119, 204, 0.8) 4%, rgba(0, 191, 255, 0.8) 8%, 
		rgba(51, 204, 51, 0.8) 8%, rgba(51, 204, 51, 0.8) 12%, 
		rgba(255, 102, 0, 0.8) 12%, rgba(255, 102, 0, 0.8) 16%, 
		rgba(255, 0, 51, 0.8) 16%, rgba(255, 0, 51, 0.8) 20%);
	background-size: 250px 250px;
	background-position: 0 0;
	animation: stripes 3s linear infinite;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-family: Georgia, serif;
	font-style: italic;
	text-transform: uppercase;
	text-align: center;
	font-size: 50px;
	font-weight: bold;
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  }
  
  /* Moving Gradient Animation */
  @keyframes stripes {
	100% {
	  background-position: 250px 0, 250px 0, 100px 0;
	}
  }
  
  
  /* Responsive for Smaller Screens */
  @media only screen and (max-width: 900px) {
	.bg_move {
	  font-size: 2.5rem;
	}
  }
  
  @media only screen and (max-width: 500px) {
	.bg_move {
	  font-size: 2rem;
	}
  }
	  



  /* save reset cancel */


  .btn-success{

    background-color: rgb(5 150 105) !important;
    color: white !important;
    border-radius: 4px ;
    /* padding: 8px 13px 8px 14px; */
    height: 32px !important;
    min-width: 65px !important;
	border: none !important;
	
  }



 .btn-success:hover{
	
	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 1px 0 0 #059669, 0 2px 0 0 #047857, 0 3px 0 0 #065f46, 0 4px 0 0 #064e3b, 0 4px 8px 0 rgba(5, 150, 105, 0.5);
  } 

  .btn-warning{

    background: linear-gradient(to right, rgb(49 46 129), rgb(88 28 135), rgb(88 28 135)) !important;
	color: white !important;
    border-radius: 4px ;
	height: 32px !important;
    min-width: 65px !important;
	border: none !important;
  }

  .btn-warning:hover{

	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 1px 0 0 #312e81, 0 2px 0 0 #1e1b4b, 0 3px 0 0 #0f172a, 0 4px 0 0 #020617, 0 4px 8px 0 rgba(49, 46, 129, 0.5);

  }

  .btn-default {

	background: linear-gradient(to bottom right, rgb(244 114 182), rgb(248 113 113));
	color: white !important;
    border-radius: 4px ;
	height: 32px !important;
    min-width: 65px !important;
	border: none !important;
  }


  .btn-default:hover{

	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4), 0 1px 0 0 #f472b6, 0 2px 0 0 #f43f5e, 0 3px 0 0 #e11d48, 0 4px 0 0 #be123c, 0 4px 8px 0 rgba(244, 114, 182, 0.5);
  }


  /* login page */


  .sj_login{
	background: linear-gradient(130deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
  
   background-size: cover;
    display: flex
;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }


  .sj_lg_ic .icon-prepend{

	color: #6b0505 !important; 
	border-color: #59c09d !important;
  }

.sj_lg_ic .form-control{

  border-color: #0ea38e !important;
}


.btn-login {

    width: 100px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E86E84), to(#FFB6D3)) !important;
    background-image: -moz-linear-gradient(top left 90deg, #E86E84 0%, #FFB6D3 100%) !important;
    background-image: linear-gradient(top left 90deg, #E86E84 0%, #FFB6D3 100%) !important;
    border-radius: 30px;
    border: 1px solid #D66685;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5) !important;

}

.btn-login:hover {
    background-color: #FFB6D3 !important; /* Lighter pink on hover */
    border-color: #d8bc46;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .4), 
                inset 0 1px 0 rgba(255, 255, 255, .6) !important;
}


/* search page  */


#searchField,
#statusid,
#searchValue,
#searchfor,
#searchby,
#from_date,
#to_date,
#tax_typeid,
#finid,
#customer_id,
#service_date,
#netamt,
#email_id,
#subject,
#narration,
#total,
#received,
#balance,
#staxamt,
#freight,
#roundoff,
#cess_amount,
#ref_no,
#address,
#s_reportby,
#contact_no,
#date_range,
#companyid,
#categoryid,

#accgroupid,
#cat_companyid {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

#is_active{

	margin-top: 9px;
}



.sj_add_cus{
	margin-bottom: 8px;
background: #cf1d6e;
color: whitesmoke;
font-size: 16px;
font-weight: 800;
width: 43px;
border: #7c1c93;
}


/* sj 10-04 */

.ui-jqgrid .ui-jqgrid-htable th {
    height: 35px !important;
    padding: 0 2px 0 2px;
}


.responsive-table thead th{

	
    background-color: #36454F !important;
}