@font-face {
    font-family: 'quicksandregular';
    src: url('../fonts/quicksand-regular-webfont.woff2') format('woff2'),
         url('../fonts/quicksand-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'open_sansregular';
    src: url('../fonts/OpenSans-Regular-webfont.eot');
    src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
img{
	max-width:100%;
	height:auto;
}
body{
	margin:0;
	padding:0;
	font-size:13px;
	font-family: 'open_sansregular';
	letter-spacing:0.5px;
}
*{
	box-sizing:border-box;
}
:root {
   --primary-color :#673ab7;
   --secondary-color : #9c27b0;
  
}
ul{
	padding:0;
	margin:0;
	list-style-type:none;
}
a{
	text-decoration:none;
}
textarea:focus, input:focus, button:focus, select:focus{
    outline:none;
}
input::-webkit-input-placeholder{
	color:#616060;
	font-size:13px;
	font-family: 'quicksandregular';
	vertical-align:middle;
}
textarea::-webkit-input-placeholder{
	 font-family: 'quicksandregular';
	 font-size:13px;
	 color:#616060;
}
.field-error {
    float: left;
    color: #F00;
    width: 100%;
}
.content {
    width: 100%;
    float: left;
    font-size: 20px;
    line-height: 28px;
    background: var(--primary-color);
}
.content.page-login {
    position: absolute;
    width: 100%;
    height: 100%;
}
.login_wrap {
	width:96%;
    max-width: 480px;	
    color: var(--primary-color);
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px 45px 25px;
    border-radius: 3px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -160px;
    margin-left: -240px;
}
.login_content_top {
    float: left;
    width: 100%;
    margin-top: 38px;
    background-size: 100%;
    margin-bottom: 20px;
}
.login_wrap h2 {
    font-size: 25px;
    float: left;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}
.login_wrap ul li {
    float: left;
    width: 100%;
}
.input_wrap {
    float: left;
    width: 100%;
    padding: 18px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.input_field.select {
    float: left;
    width: 100%;
    background: #fff;
    border: none;
    font-size: 15px;
    color: #616060;
    letter-spacing: 0.5px;
}
input.input_box {
    float: right;
    width: 90%;
    background: transparent;
    border: none;
    font-size: 15px;
    color: #616060;
    line-height: 16px;
}
.input_wrap select option{
    color: #000 !important;
}
.remember_wrap_bottom {
    float: left;
    width: 100%;
    margin: 36px 0 34px;
    font-size: 16px;
    letter-spacing: -0.5px;
}
.login_button {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.btn.login_btn {
    float: left;
    width: 100%;
    padding: 16px 0;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 1px 1px 3px #969393;
}
.btn.login_btn:hover {
    box-shadow: none;
    background: #9c27b0;
}
/*dashboard*/
.ac_wrap {
    float: left;
    width: 100%;
	font-family: 'open_sansregular';
}
.left_menu_bar ul li {
    float: left;
    width: 100%; 
	
	position:relative;
}
.left_menu_bar ul li a {
    float: left;
    width: 100%;
    font-size: 13px;
    text-align: left;
    color: #f1f0f0;
    padding: 8px 20px;
}
.menu-right{
	float:right;
}
.menu-right .fa{
	line-height:28px;
}
.left_menu_bar .close_menu{
    position: absolute;
    z-index: 9999;
    color: #FFF;
    right: 4px;
    top: 4px;
    padding: 10px;
    display: none;
}
.left_menu_bar ul li ul{
	float: left;
    position: absolute;
    left: 100%;
    z-index: 99999;
    width: 200px;
    background: var(--primary-color);
    box-shadow: 3px 2px 5px #676464;
	display:none;
}

.left_menu_bar ul li:hover ul{
	display:block;
}

.left_menu_bar ul li ul li{
	border:none;
}

.left_menu_bar {
    float: left;
    width: 18%;
    background: #fff;
    background: var(--primary-color);
    top: 0;
}
.left_menu_bar ul li.ac_logo {
    background: var(--primary-color);
    text-align: center;
	height:56px;
	border-bottom: solid 2px #FFF;
}
.left_menu_bar ul li.ac_logo a {
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
.left_menu_bar ul li.ac_logo a:hover{
   color:#fff;
   border:none;
}
.left_menu_bar ul li a .fa {
    /* font-size: 14px; */
    margin-right: 9px;
}
.left_menu_bar ul li.current-left-menu-item > a, 
.left_menu_bar ul > li:hover > a {
    background: var(--secondary-color);
    color: #ffffff;
}
.left_menu_bar ul li.ac_logo a:hover {
    background: var(--primary-color);
}
.right_content_bar {
    float: left;
    width: 82%;
}
.top_profile_bar {
    float: left;
    width: 100%;
    background: #fff;
    padding: 5px 20px;
}
.top_left {
    float: left;
    width: auto;
    padding-top: 7px;
}
.top_left .menu_icon {
    float: left;
    color: #000;
    padding: 5px 10px 5px 0;
}

.top_right {
    float: right;
}
.company_name {
    float: left;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.top_right ul li {
    float: left;
    margin-left: 10px;
    position: relative;
}
.top_right ul li a {
    float: left;
    font-size: 13px;
    color: var(--secondary-color);
	padding:8px 0;
}
.top_right ul li img {
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 50%;
    margin-right: 10px;
}
.top_right ul li a.userimg{	
	padding:8px 21px;
}
.top_right ul li:hover .userimg{
	/* background: var(--primary-color); */
	color: var(--secondary-color);
}
.top_right ul li .user_id {
    color: var(--secondary-color);
    margin-top: 5px;
    float: left;
}
.top_right ul li .topSubMenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 170px;
    background: var(--primary-color);
    z-index: 999;
    /* left: 0%; */
    display: none;
}
.top_right ul li .topSubMenu a {
    color: #fff;
    font-size: 12px;
    padding: 10px 14px 10px;
    float: left;
    width: 100%;
}
.top_right ul li .topSubMenu a:hover{
	background: var(--secondary-color);
}
.top_right ul li:hover .topSubMenu {
	display:block;
}
.top_right ul li a .fa {
    font-size: 19px;
    padding: 5px 6px;
    float: left;
}
.bottom_content {
    float: left;
    width: 100%;
    border-top: 6px solid #f1f2f2;
    background: #fff;
    padding: 20px 40px;
    min-height: 950px;
}
.bottom_left {
    float: left;
    width: 40%;
    margin-right: 5%;
}
.widget {
    float: left;
    width: 100%;
    margin-bottom: 4%;
}
.widget_top {
    float: left;
    width: 100%;
}
.heading_text {
    float: left;
    width: auto;
    font-size: 14px;
    font-weight: bold;
}
.right_btn {
    float: right;
}
.right_btn ul li {
    float: left;
    margin-left: 30px;
	font-size:15px;
}
.select_year {
    float: left;
    position: relative;
    z-index: 99;
}
.select_year select {
    -webkit-appearance: none;
    -webkit-font-smoothing: inherit;
    background:url(../images/arrow.png) right center no-repeat;
}
.year_select {
    border: 0;
    padding: 7px 24px 7px 0px;
    font-size: 13px;
    color: #5c5b5b;
}
.widget.profit_wrap ul li {
    width: 50%;
    border-right: 15px solid #fff;
    float: left;
}
.profit_box {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    background: #f0f0f0;
    padding: 15px 20px;
    margin-bottom: 15px;
    min-height: 140px;
}
.profit_box .price {
    float: left;
    width: 100%;
    font-size: 15px;
    color: #8BC34A;
    font-weight: 100;
    padding: 5px 0;
}
.profit_box .price.blue {
	color:#0e566d;
}
.profit_box .price.orange {
	color:#dc6f05;
}
.profit_box .price.pink {
	color:#ed35b7;
}
.profit_box .profit_text {
    color: #39bac6;
    float: left;
    line-height: 20px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.profit_box .loss_price {
    font-weight: bold;
    float: left;
    width: 100%;
}
.last_month_expense {
    color: #706d6d;
    font-size: 10px;
    line-height: 20px;
}
.bottom_right {
    float: right;
    width: 55%;
}
.quick_action_wrap {
    float: left;
    width: 100%;
    border: 1px solid #ccc;
	margin-bottom:30px;
}
.quick_action_wrap .widget_top {
    border-bottom: 1px solid #ccc;
    padding: 9px 30px;
}
.quick_content {
    float: left;
    width: 100%;
    /* padding: 6px 30px; */
}
.create_list {
    float: left;
    width: 60%;
    margin-top: -1px;
}
.create_list ul li {
    float: left;
    text-align: center;
    width: 33.33%;
    padding: 12px 0;
    border: 1px solid #ccc;
    border-left: none;
    border-bottom: none;
    height: 100px;
}
.create_list ul li a {
    color: #484848;
    font-size: 12px;
    font-weight: bold;
    float: left;
    width: 100%;
    margin-top: 15px;
    line-height: 12px;
}
.create_list ul li a .fa {
    color: var(--secondary-color);
    padding: 5px 0;
    font-size: 30px !important;
    width: 100%;
}
.customer_related_link {
    float: left;
    width: 28%;
    margin-left: 28px;
    margin-top: 10px;
}
.customer_related_link ul li {
    float: left;
    width: 100%;
}
.customer_related_link ul {
    height: 150px;
}
.customer_related_link ul li a {
    float: left;
    width: 100%;
    font-size: 13px;
    color: #737373;
    line-height: 22px;
}
.customer_related_link ul li a:hover {
    color: #000;
}
a.anchor_report {
    float: left;
    text-align: center;
    width: 100%;
    color: #000;
    font-weight: bold;
    font-size: 15px;
}
.pie_chart {
    float: left;
    width: 100%;
    padding: 15px;
    height: 150px;
}
.footer {
    float: left;
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 14px 20px;
    font-weight: bold;
}
.footer_left {
    float: left;
}
.footer_right {
    float: right;
}
span.time {
    float: left;
    margin-right: 10px;
}
/*customer*/
.btn_wrap {
    float: left;
    width: 100%;
    margin-bottom: 2%;
}
.left_btn {
    float: left;
	width:25%;
}
.btn_wrap .btn.add_btn {
    padding: 6px 20px;
}
.right_bar {
    float: right;
	width: 40%;
}
.right_bar .input_serach {
    float: left;
    width: 100%;
}
.right_bar .search_box {
    float: left;
    width: 75%;
    padding: 12px;
    border: 1px solid #ccc;
}
button.btn.search_btn {
    float: right;
    width: 18%;
    text-align: center;
    padding: 12px 0px;
    background: var(--primary-color);
    color: #fff;
}
.table_content {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
}
.customer_details_table, 
.customer_details_table td, 
.customer_details_table th {
    border: 1px solid #d0cbcb;
    text-align: left;
}
.customer_details_table {
    border-collapse: collapse;
    width: 100%;
	line-height:20px;
}
.customer_details_table th {
    background: #13d28d;
    color: #fff;
    font-weight: bold; 
	text-align: center;
}
.customer_details_table th, .customer_details_table td {
    padding: 2px 10px !important;
    font-size: 13px;
}
.customer_details_table .arrow {
    float: left;
    padding-top: 6px;
    width: 20%;
}
.customer_details_table tr span {
    float: right;
    width: 60%;
	font-weight:bold;
}
.customer_details_table tr span.row-inner{
	float:left;
	width:100%;
	margin:0;
	font-weight:normal;
	color:#999;
}
.customer_details_table tr:nth-child(odd) {
    background-color: #f2fcff;
}
.btn_icon {
    padding: 0 10px;
	color:#000;
}
.bottom {
    width: 70%;
}
.pagination {
    margin: 0;
    float: left;
    width: 100%;
    border: 2px solid var(--primary-color);
    border-right: none;
}
.pagination ul .disabled {
    display: none;
}
.pagination ul li {
    display: inline;
}
.pagination ul li a.active {
    background-color: var(--secondary-color);
    color: #fff;
}
.pagination ul li a {
    color: #000000;
    float: left;
    padding: 3px 13px;
    text-decoration: none;
    transition: background-color .3s;
    border-right: 1px solid #673ab7;
    font-size: 14px;
    /* border-right: none; */
}

.left_btn.bottom {
    width: auto;
    float: right;
}
button.btn.remove {
    padding: 9px 20px;
    background: var(--primary-color);
    color: #fff;
    float: right;
}
.btn_wrap .btn:hover {
    background: var(--secondary-color);
    color: #fff;
}
.btn.remove .fa {
    font-size: 16px;
}

body[class*='open-popup-']{
	position:fixed;
}
.popup_wrap {
    background: rgba(0, 0, 0, 0.58);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    z-index: 999;
}
.pop {
    height: auto;
    width: 600px;
    position: absolute;
    left: 50%;
    padding: 10px;
    background: #fff;
    top: 6%;
    margin-left: -300px;
    border-top: 8px solid #673ab7;
	margin-bottom:50px;
}
#close_button {
    color: #c1c4c6;
    font-size: 18px;
    float: right;
    width: 6%;
    left: 94%;
    margin: 0px 8px;
    background: transparent;
    position: absolute;
    padding: 0;
    top: -17px;
    border: 0;
    cursor: pointer;
}
.popup_content_wrap {
    float: left;
    width: 100%;
	padding:0 15px;
}
.popup_content_wrap h2 {
   float: left;
    width: 100%;
    text-align: center;
    font-size: 25px;
    padding-bottom: 15px;
    font-family: 'open_sansregular';
    font-weight: 100;
    letter-spacing: 2px;
    margin: 15px 0 0 0;
}
.pform {
    float: left;
    width: 100%;
}
.pform .input_wrap {
    border: none;
    padding: 0;
    margin: 0 0 15px 0;
	width:98%;
}
.pform .input_wrap.half{
	width:48%;
	margin-right:2%;
	min-height:81px;
}
.pform label{
	float: left;
	margin-bottom:5px;
    font-size: 12px;
}
.pform .input_field, .pform select {
    float: left;
    width: 100%;
    font-size: 12px;
    border: 1px solid #dcdcdc;
    padding: 12px 18px;
	height:40px;
}
.pform  input::-webkit-input-placeholder{
	color:#8f8b8b;
	font-size:13px;
	font-family: 'open_sansregular';
	line-height:16px;
	vertical-align:middle;
}
.pform .input_wrap.center {
    text-align: center;
}
.pform .input_button {
    padding: 12px 30px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 2px;
}
.pform .input_button:hover{
    background: var(--secondary-color);
}
/*setting*/
.bottom_container {
    width: 60%;
	float:left;
}
.profile_form {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}
.profile_form h3 {
       float: left;
    width: 100%;
    margin: 0 0 20px;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    line-height: 30px;
    padding-bottom: 1px;
    border-bottom: 2px solid #9c27b0;
    font-family: 'open_sansregular';
}
.profile_form ul li {
    float: left;
    width: 100%;
    margin: 0 0 8px;
}
.profile_form ul li .profile_label {
    float: left;
    width: 30%;
    font-size: 14px;
    color: #989696;
    line-height: 50px;
}
.profile_form ul li .enter {
    float: right;
    width: 70%;
    padding: 18px;
    border: 1px solid #ccc;
}
.submitter {
    float: left;
    width: 100%;
    margin-top: 20px;
}
.submitter .input_button {
    float: left;
    padding: 13px 40px;
    background: var(--primary-color);
    border: 0;
    color: #fff;
    letter-spacing: 0.5px;
    width: 100%;
    border-radius: 2px;
    font-size: 17px;
    background: var(--secondary-color);
    font-weight: bold;
    box-shadow: 1px 1px 3px #969393;
    cursor: pointer;
}
.submitter .input_button:hover {
    box-shadow: none;
    background: var(--secondary-color);
}
.profile_form.cng_pass {
    margin-top: 20px;
}
/*invoice*/
.bottom_content .btn_wrap {
    float: left;
    width: 100%;
}
.btn_wrap .left_title {
    float: left;
    width: auto;
}
.bottom_content h1 {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    line-height: 30px;
    padding-bottom: 1px;
    border-bottom: 2px solid #9c27b0;
    font-family: 'open_sansregular';
}
.bottom_content h2 {
    /* float: left; */
    text-align: center;
    font-size: 18px;
    color: var(--secondary-color);
    border-bottom: 2px solid #9c27b0;
    font-family: 'open_sansregular';
}
.btn_wrap.invoice_page .right_bar {
    float: right;
    width: auto;
}
.btn_wrap .btn {
    float: left;
    width: auto;
    margin-left: 10px;
    border: 2px solid #673ab7;
    background: #ffffff;
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 12px;
	font-weight:bolde;
}
.btn_wrap .btn.save_btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px 9px;
}
.btn_wrap .btn.back_btn {
    background: #000;
    color: #fff;
    border-color: #000;
    font-weight: bold;
}
.invoice_no_wrap {
    float: left;
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
    margin-top: 20px;
}
.invoice_no_wrap ul li {
    float: left;
    width: 31%;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--secondary-color);
    line-height: 11px;
}
.invoice_no_wrap ul li .select2-container {
    float: left;
    width: 30%;
}
.invoice_no_wrap ul.add_list li {
    width: 100%;
    margin-bottom: 5px;
}
.invoice_no_wrap ul li .same_add_checkbox {
    float: left;
    margin: 6px 4px 0px;
}
.invoice_no_wrap ul li .profile_label {
    float: left;
    width: 100%;
    font-size: 13px;
    /* font-weight: bold; */
    color: #696969;
    margin-bottom: 5px;
}
.invoice_no_wrap ul li .enter {
    float: left;
    width: 90%;
    /* margin-left: 8px; */
    padding: 12px 18px;
    font-size: 12px;
    border: 1px solid #dcdcdc;
}
.invoice_no_wrap ul li .blue_text {
    color: #e8b005;
    font-size: 10px;
    margin-left: 10px;
}
.invoice_no_wrap ul li .lable_info {
    float: right;
    padding-right: 33px;
    font-size: 10px;
    color: #0dd400;
    line-height: 18px;
}
.invoice_no_wrap ul li .edit_btn {
    float: right;
    padding-right: 33px;
    font-size: 10px;
    color: var(--primary-color);
    line-height: 28px;
}
.table_content {
    float: left;
    width: 100%;
    margin: 20px 0 10px;
    position: relative;
	font-size:13px;
}
.bottom_content a.table_bottom_text {
    float: left;
    width: 100%;
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: underline;
}
.customer_details_table.invoice {
    float: left;
    width: 100%;
}
.table_content table,
.table_content table th,
.table_content table td {
    border: 1px solid #e4e4e4;
    border-collapse: collapse;
}
.table_content table.full{
	width:100%;
}
.table_content th, .table_content td {
    padding: 2px;
    text-align: left;    
}
.table_content th {
    position: relative;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 12px;
    background-color: #f3f4f6!important;
    text-transform: capitalize;
    white-space: normal;
    padding: 4px;
    line-height: 19px;
}
/* .table_content .table-wrapper{
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    width: calc(100% - 113px);
} */

.table_content .table_wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    width: calc(100% - 113px);
}
table.main-table {
    min-width: 100%;
}
.main-table .grid_input {
    float: left;
    padding: 10px 4px;
    border: 1px solid #ccc;
    background: transparent;
    width: 100%;
    font-size: 12px;
}
table.main-table.fixed_column {
    min-width: auto;
}
.main-table .cgst {
    background: #f3f4f6;
}
.table_content .text-center {
    text-align: center;
}
.table_content .width_big .grid_input {
    width: 200px;
}
.table_content .empty--1 {
    border-right: 0!important;
}
.table_content .empty.empty--2{
	border:0 !important;
}
.table_content .text-right {
    text-align: right;
    height: 40px;
}
.fixed_column {
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: .9375rem;
    background: #f3f4f6;
}
.table_content .yellow-cell {
    background: rgba(11, 158, 202, 0.29);
    /* color: #fff !important; */
}
.table_content .serial_number {
    text-align: center;
}
.adv_seting_wrap {
    float: left;
    width: 100%;
    margin: 25px 0;
}
.adv_seting_wrap .left_select_box {
    float: left;
    width: 30%;
}
.left_select_box .profile_label {
	    float: left;
    width: 100%;
    font-size: 13px;
    /* font-weight: bold; */
    color: #696969;
    margin-bottom: 5px;
}
.left_select_box .enter {
    float: left;
    width: 90%;
    /* margin-left: 8px; */
    padding: 12px 18px;
    font-size: 12px;
    border: 1px solid #dcdcdc;
}
.adv_seting_wrap .grand-total {
    float: right;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin-top: 22px;
    width: 30%;
}
.adv_seting_wrap .item_left {
    float: left;
    font-size: 13px;
}
.adv_seting_wrap .item_right {
    float: right;
    font-weight: bold;
    color: var(--primary-color);
}
.customer_details_table.invoice th, .customer_details_table.invoice td {
    text-align: center;
    padding: 7px 12px;
}
.customer_details_table.invoice th {
    line-height: 18px;
}
.table_text_box {
    float: left;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc8c8;
	padding:3px;
}
.table_select_box {
    float: left;
    background: transparent;
	padding:3px;
	font-size:13px;
}
.invoice_no_wrap.customer_field {
    border-top: 1px solid #e2e2e2;
    padding-top: 20px;
    text-align: center;
}
.customer_field span {
    background: rgba(184, 227, 240, 0.55);
    font-size: 13px;
    padding: 8px 20px;
    width: 100;
}
.customer_field span .blue_text {
    color: #dc0d32;
    padding: 0 10px;
}
.invoice_no_wrap.bank_details h2 {
    font-size: 18px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.invoice_no_wrap.bank_details .blue_text {
    color: #dc0d32;
    padding: 0 10px;
	font-size:12px;
	font-weight:100;
}
.big_box_area {
    float: left;
    width: 100%;
}
.big_box_area .enter{
    float: left;
    width: 100%;
    /* margin-left: 8px; */
    padding: 12px 18px;
    font-size: 12px;
    border: 1px solid #dcdcdc;
	height:100px;
	resize:none;
}
.invoice_no_wrap.bank_details ul li {
    width: 48%;
    margin-right: 15px;
}
.invoice_no_wrap.bank_details ul li .enter {
    width: 100%;
}
.invoice_no_wrap.tc_wrap {
    border: 0;
}
.bottom_middle_btn {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
}
.bottom_middle_btn .btn {
    float: left;
    width: 45%;
    margin: 0 5px;
    border: 2px solid #9c27b0;
    background: #ffffff;
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 2px;
    font-size: 13px;
    line-height: 22px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 50px;
}
.bottom_middle_btn .btn:hover {
	background: var(--secondary-color);
    color: #fff;
}
.bottom_middle_btn .btn.back_btn {
    background: #000;
    border-color: #000;
	color:#fff;
}
/*purchase-invoice*/
.import_checkbox_wrap {
    float: left;
    width: 20%;
    font-size: 12px;
    margin-top: 40px;
}
.other_input_wrap {
    width: 100%;
    float: left;
}
.message{
	float:left;
	width:100%;
	font-size:10px;
}
.message.success{
	color:#093;
	margin-bottom:10px;
}
.message.error{
	color:#F00;
	margin-bottom:10px;
}

.loader{
    position:fixed;
    z-index:9999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(../images/loader.png) rgba( 0, 0, 0, 0.5 ) no-repeat center center;
}
.mtp_button {
    float: right !important;
    margin: -50px 0 20px 0;
}
.input_wrap .select2-container{
    width: 100% !important;
}

.button-primary{
    padding: 12px 30px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 2px;
}
.button-primary:hover{
    background: var(--secondary-color);
}

.selected_products {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
    border: solid 1px #dfcdff;
    overflow: hidden;
}

.selected_products thead th{
   background: #dfcdff;
   padding: 5px;
}

.selected_products tbody td{
    padding: 5px;
    border-bottom: solid 1px #cccccc3b;
}

.selected_products tbody td:first-child,
.selected_products tbody td:last-child{
    text-align: center;
}

.selected_products tbody td .input_field {
    width: 60px;
    padding: 5px;
    height: 30px;
    float: none;
    text-align: center;
}

.selected_products tbody td span{
    width: 100%;
    float: left;
    margin: 0;
    font-size: 8px;
    color: #535353;
}

.barcodes {
    float: left;
    width: 100%;
}

.barcodes li{
    float: left;
    width: 50%;
    text-align: center;
    padding: 10px;
    margin: 10px 0px;
    font-size: 13px;
}

.barcodes li .bc_pname{
    float: left;
    width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

.barcodes li .bc_img{
    float: left;
    width: 100%;
    margin-bottom: 5px;
}



.barcodes li .bc_img img{
    width: 100%;
    float: left;
    height: 30px;
}
.barcodes .bcode{
    margin-bottom: 5px;

}
.bc_sku,
.bc_price{
    float: left;
    width: 50%;
    text-align: left;
}
.bc_price{
    text-align: right;
}

@media print {
    @page {
        /* Define custom size using length units (e.g., mm, cm, in) */
        size: 100mm 25mm; /* Width 200mm, Height 100mm */
        margin:0;

    }
    body{
        margin-top: 0;
        padding: 0;
    }
    *{
        font-size: 10px;
    }
    .barcodes{
        width: 100mm;
        margin: 0;
        padding: 0;
    }
    .barcodes li{
        width: 50mm;
        height: 25mm;
        padding: 2mm;
        margin: 0;
        box-sizing: border-box;
        page-break-inside: avoid;
        font-size: 10px;
    }

    .barcodes li .bc_pname{
        margin-bottom: 3px;
        font-weight: bold;
    }

    .barcodes li .bc_img{
        margin-bottom: 3px;
    }

    .barcodes .bcode{
        margin-bottom: 3px;

    }
    .barcodes li .bc_img img{
        max-width: 90%;
    }
}
/* added */
/* .customer_details_table .btn_icon {
    font-size: 15px;
} */
/* .btn_icon.edit_products:hover::after {
    content: "Edit";
   
    position: absolute;
    top: 0px;
    color: var(--secondary-color);
    right: 100px;
    padding: 5px;
    transition: 0.3 ease;
    font-weight: 600;
    font-size: 12px;
} */
.top_right .fa.fa-chevron-down {
    float: right;
    font-size: 15px;
}

/* for the button */

.customer_details_table .btn_icon {
  /* width: 34px;
  height: 34px;
  display: flex; */
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}
.btn_icon::after {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #222;
  color: #fff;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}


.btn_icon.edit_products:hover::after { content: "Edit"; }
.btn_icon.delete_products:hover::after { content: "Delete"; }
.btn_icon.view_products:hover::after { content: "View"; }


.btn_icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.btn_icon:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

input#get_report {
    background: var(--primary-color);
    color: #fff;
    padding: 13px 20px;
    border: none;
}
  .page-template-template-stock-details .input_wrap.third {
    width: 43% !important;
}
.page-template-template-stock-details .input_wrap.third:last-child {
    width: 95% !important;
}
.page-template-template-stock-details .input_wrap.third:last-child .filterbtn {
    width: 21% !important;
    text-align: center;
    margin-left: 0;
    margin-right: 10px !important;
}
.page-template-template-stock-details .input_wrap.half .text {
    width: 51%;
}
.page-template-template-stock-details .input_wrap.half .label {
    width: 48%;
}
.page-template-template-bulk-add-product .table_content .table_wrapper {
    width: 100%;
}
.page-template-template-orders .filter_btn {
    margin-top: 15px;
}
.topSubMenu .admin-name {
    display: none;
}
.customer_details_table .action-span {
    float: left !important;
    display: flex !important;
    margin: 0;
}
.page-template-template-purchase-invoice .invoice_no_wrap ul li {
    line-height: 28px;
}
.page-template-template-create-order .table_content .table_wrapper {
    width: 100%;
}
.invoice_no_wrap.courier_details ul {
    display: flex;
    flex-wrap: wrap;
}
.hide_on_desktop.quick_action_wrap {
    display: none;
}
.page-template-template-create-invoice .invoice_no_wrap.courier_details .dimenstion
 {
width: 100%;
}
.dimenstion li{
    width: 20%;
}
.dimenstion {
    position: relative;
}
.dimenstion li:not(:last-child)::after {
   content: "×";
    font-size: 18px;
    font-weight: bold;
    bottom: 24px;
    margin-left: -20px;
    position: absolute;
}

/* Return */

.total_row {
    float: right;
    font-size: 15px;
    border: 2px solid var(--secondary-color);
    padding: 10px;
}

/* User Permissions Popup */

.permission_header,
.permission_row {
  display: grid;
  grid-template-columns: 160px repeat(4, 1fr);
  align-items: center;
  gap: 10px;
}

.permission_header {
  font-weight: 600;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.permission_row {
  padding: 15px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.perm_label {
  font-weight: 600;
}
