* {
  padding: 0px;
  margin: 0px;
}
* {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
body {
  background-color: #e7e7e7;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;;
  padding: 0px;
  margin: 0px;
  color: #666;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 5px;
  background-color: #bbb; /* or add it to the track */
}
body::-webkit-scrollbar-thumb {
  background: #777;
}
#wrapper {
  width: 100%;
  height: auto;
  flex: 1 0 auto;
}
a {
  text-decoration: none;
  color: #555;
  transition: all 300ms;
}
a:hover {
  color: #043445;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table, th, td {
  border: 1px solid #ccc;
  padding: 5px 5px 5px 15px;
  text-align: left;
}
td{
  font-weight: 500;
}

th{
  color: #043445;
  background: #e7e7e7;
}

/************* COMMON CSS START ****************/

.center_align {
  width: 98%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
#services {
  margin-top: 80px;
  margin-bottom: 40px;
  padding-bottom: 0px;
  width: 100%;
  position: relative;
}
#services #left_services {
  width: calc(18% - 10px);
  height: auto;
  float: left;
  margin-right: 15px;
  /* position: -webkit-sticky; */
  /* position: sticky; */
  /* top: 100px; */
}
#services #right_services {
  width: calc(82% - 10px);
  height: auto;
  float: left;
}

#left_services .inner_content {
  width: calc(100% - 20px);
  /* margin: 10px; */
  /* margin-top: 10px; */
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  display: inline-block;
  background: #fff;
  border-radius: 5px;
}
#left_services .left_content {
  /* margin-bottom: 20px; */
  /* margin-top: 20px; */
}
#right_services .full_right_content {
  border-radius: 7px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 20px;
  width: calc(100% - 40px);
  /* margin-top: 10px; */
  border-radius: 5px;
  background-color: #fff;
  min-height: 195px;
}

#top_service{
  width: 100%;
  float: left;
}

.content {
  display: inline-block;
  width: calc(100% - 15px);
  padding: 10px;
  position: relative;
}

h1{
  font-size: 20px;
  float: left;
  color: #043445;
  margin-top: 0;
  margin-bottom: 8px;
}
h2{
  font-size: 20px;
  float: left;
  margin-top: 0;
  margin-bottom: 0;
}
h3{
  font-size: 16px;
  text-align: center;
  float: none;
  padding-bottom: 10px;
  color: #043445;
}

.pull_right{
  float: right;
}
.pull_left{
  float: left;
}

.dash_header {
  border-bottom: 1px solid #043445;
  display: inline-block;
  width: 100%;
}

.inner_content .btn {
  margin: 10px auto 0;
  display: inherit;
  width: -webkit-fill-available;
  border-radius: 0;
}

.p-msg{
  text-align: center;
  padding-top: 15px;
  color: #c63939;
}

.checkbox-custom, .radio-custom {
  opacity: 0;
  position: absolute;
  left: 15px;
}

.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
  width: auto;
  outline: 0;
}

.checkbox-custom-label, .radio-custom-label {
  position: relative;
}

.modal-body .checkbox-custom,
.top-header .checkbox-custom{
  width: auto;
}
.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
  content: '';
  background: #fff;
  border: 1px solid #043445;
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  padding: 4px;
  /* margin-right: 10px; */
  text-align: center;
  position: absolute;
  top: -11px;
  left: -13px;
  font-size: 11px;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  background: #043445;
  color: #fff;
}

.radio-custom + .radio-custom-label:before {
  border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  color: #fff;
  background: #043445;
}


/************* COMMON CSS END ****************/
/************* FORM CSS START ****************/

#right_services .form-control:focus{
  border-color: #043445;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(4,52,69,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(4,52,69,.6);
}

.form-control {
  display: block;
  height: auto;
  padding: 5px 0 5px 5px;
  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;
  outline: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

.form-group{
  width: 49.5%;
  float: left;
  margin-bottom: 15px;
}
.form_input{
  width: 70%;
  float: right;
  line-height: 30px;
  margin-bottom: 10px;
}
.form_input input,.form_input select.form-control,.form_input textarea.form-control {
  width: 90%;
  height: 19px;
}
.form_input textarea.form-control{
  height: 150px;
}
.form_lable{
  width: 130px;
  float: left;
  line-height: 30px;
  text-align: right;
  font-weight: 500;
  clear: both;
}
.error{
  background: rgba(228,33,39,1);
  color: #fff;
  padding: 5px;
  margin-bottom: 15px;
  border-radius: 4px;
  text-align: center;
  clear: both;
  font-weight: 500;
}
.success{
  background: rgba(0,166,90,1);
  color: #fff;
  padding: 5px;
  margin-bottom: 15px;
  border-radius: 4px;
  text-align: center;
  clear: both;
  font-weight: 500;
}
.error p {
  margin-bottom: 0;
}
.btn{
  display: block;
  text-align: center;
  padding: 10px;
  border: 2px solid #ccc;
  margin: 0px auto;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
  font-weight: bold;
  width: 140px;
  outline: 0;
  clear: both;
}

input:disabled{
  background: #dfdddd;
}

.add-report .form-group, .add-challan .form-group{
  width: 32.5%;
}
.add-challan .form-group{
  margin-bottom: 0;
  min-height: 45px;
}
.add-report .form_input, .add-challan .form_input {
  width: 55%;
}
.add-report  .form_lable, .add-challan  .form_lable {
  width: 145px;
}
.add-challan .multi_select {
  width: 100%;
}
.add-challan .multi_select .form_input{
    width: 85.5%;
    line-height: 20px;
}
.add-challan .multi_select .form_input select.form-control{
  width: 97%;
}
.add_more_report input[type="text"] {
  width: 45px;
  padding: 7px 5px;
  border-radius: 4px;
  border: 1px solid #aaa;
}

.add_more_report input[name^="identification_mark_"]{
  width: 125px;
}
.add_more_report input[name^="remark_"]{
  width: 90px;
}
/* kaushal chage width 90px to 64px for copy icon */
.add_more_report input[name^="desc_"]{
  width: 64px;
}
.add_more_report input[name^="visible_"]{
  width: 64px;
}
.add_more_report tr td .fa{
  margin: 0 5px;
}

.add-report .report-bottom.form-group{
  width: 50%;
}
.add-report .report-bottom.form-group .form_input{
  width: 70%;
}
.big-price{
  font-size: 18px;
  font-weight: 600;
  color: #043445;
}
#report_status ~ .select2.select2-container{
  /* width: 100%; */
  float: right;
  width: 150px !important;
}

/************* FORM CSS END ****************/



/************* HEADER CSS START ****************/

header {
  width: 100%;
  display: inline-block;
  position: fixed;
  top: 0px;
  color: #fff;
  background-color: #043445;
  box-shadow: 0px 1px 5px #043445;
  transition: all 300ms;
  padding-top: 12px;
  padding-bottom: 12px;
  z-index: 100;
}
.header_left {
  float: left;
  width: calc(25% - 10px);
}
.header_right {
  float: right;
}
#logo_text, .logo_text {
  font-family: 'Exo 2', sans-serif;
  float: left;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 25px;
  color: #fff;
}
.login #logo_text, .login .logo_text{
  line-height: 35px;
}
#logo_text img, .logo_text img{
  width: 60px;
  vertical-align: bottom;
}

.login header{
  background-color: initial;
  box-shadow: none;
  border-top: 2px solid #043445;
  background: #266e9a;
}
#account_nav {
  cursor: pointer;
  color: #fff;
  float: right;
  padding: 7px 0;
  font-weight: 500;
  font-size: 12px;
  position: relative;
}

#account_nav #dropdown_nav {
  position: absolute;
  top: 42px;
  right: 0px;
  width: 150px;
  background-color: #fff;
  padding: 10px 15px;
  display: none;
  -webkit-border-bottom-left-radius: 7px;
  -webkit-border-bottom-right-radius: 7px;
  -moz-border-radius-bottomleft: 7px;
  -moz-border-radius-bottomright: 7px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  box-shadow: 1px 5px 5px #e1e1e1;
  text-align: left;
  line-height: 21px;
  z-index: 1;
}

/************* HEADER CSS END ****************/
/************* INPUT EFFECT CSS START ****************/

:focus{outline: none;}
.effect-7{border: 1px solid #ccc; padding: 10px 14px; transition: 0.4s;width: -webkit-fill-available !important; border-radius: 4px;}

#login .form-group{margin-bottom: 15px;}

.effect-7 ~ .focus-border:before,
.effect-7 ~ .focus-border:after{content: ""; position: absolute; top: 0; left: 50%; width: 0; height: 1px; background-color: #043445cc; transition: 0.4s;}
.effect-7 ~ .focus-border:after{top: auto; bottom: 0;}
.effect-7 ~ .focus-border i:before,
.effect-7 ~ .focus-border i:after{content: ""; position: absolute; top: 50%; left: 0; width: 2px; height: 0; background-color: #043445cc; transition: 0.6s;}
.effect-7 ~ .focus-border i:after{left: auto; right: 0;}
.effect-7:focus ~ .focus-border:before,
.effect-7:focus ~ .focus-border:after{left: 0; width: 100%; transition: 0.4s;}
.effect-7:focus ~ .focus-border i:before,
.effect-7:focus ~ .focus-border i:after{top: 0; height: 100%; transition: 0.6s;}


/************* INPUT EFFECT CSS END ****************/


/* GENERAL BUTTON STYLING START
================================================== */

#left_services .left_content{
  z-index: 0;
}
.btn,
.btn::after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn{
  background: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
  color: #043445;
}

.btn::before,
.btn::after {
  background: #ccc;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn::after {
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}

.btn:hover{
  color: #043445;
}

.btn.active:hover {
  color: #fff;
  border: 2px solid #043445;
}

.btn:hover:after{
  height: 100%;
  width: 135%;
}

.btn.active:hover:after{
  background: #043445;
  color: #fff;
}

.btn-link {
  display: inline-block;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}
.btn-right{
  text-align: right;
}

.add-btn::before,
.add-btn::after,
.fill-btn::before,
.fill-btn::after {
  background: #043445;
}
.add-btn{
  padding: 5px 10px;
  color: #fff;
  border: 2px solid #043445;
  background: #043445;
}
.add-btn:hover{
  background: none;
  color: #fff;
}
.fill-btn{
  padding: 1.5px 15px 1px;
  width: fit-content;
  border: 2px solid #043445;
  font-weight: 500;
  margin-top: 5px;
}
.fill-btn:hover{
  color: #fff;
  background: #043445;
}


.dropdown-container{
  display: none;
  /* padding-bottom: 10px; */
  /* border-bottom: 2px solid #043445; */
}

.fa-caret-down {
  float: right;
  padding-right: 8px;
}

.dropdown-btn.btn:first-child{
  border-top: 2px solid;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.dropdown-btn.btn {
  border-top: 2px solid;
  width: -webkit-fill-available;
  border-radius: 0px;
  border-bottom: 2px solid;
  /* border-right: 0; */
  /* border-left: 0; */
  font-size: 15px;
  margin-top: 1px;
  text-transform: uppercase;
  text-align: left;
  font-weight: 500;
}

.btn.active, .dropdown-btn.btn.active{
  background: #043445;
  color: #fff;
  border: 2px solid #043445;
}

.dropdown-btn.btn.active + .dropdown-container{
  display: block;
}
.inner_content .dropdown-container .btn{
  margin: 0;
  border: 0;
  border-bottom: 1px solid #ccc;
  text-align: right;
  padding-right: 20px;
}
.inner_content .dropdown-container .btn:last-child{
  border-bottom: 1px solid  #ccc;
}
.inner_content .dropdown-container .btn.active-sub{
  background: #ccc;
  color: #043445;
}



/* GENERAL BUTTON STYLING END
================================================== */

/************* LOGIN CSS START ****************/

#login-wrapper{
  background: url('img/login-1.jpg') no-repeat top center;
  width: 100%;
  height: auto;
  flex: 1 0 auto;
  background-size: cover;
}
.login-box{
  width: 420px;
  margin: 200px auto 0;
  border: 1px solid #043445;
  padding: 25px;
  border-radius: 4px;
  background: #fff;
}
.login-box .form-control:focus{
  border: 1px solid #043445;
  outline: 0;
}
.login-box .form-group {
  width: 100%;
}
.login-box .form_lable {
  width: 18%;
  padding-right: 5px;
}
.login-box .form_input  {
  float: left;
  width: 80%;
  position: relative;
}
.login-header{
  border-bottom: 1px solid #E0E0E0;
  width: 100%;
  padding-bottom: 5px;
  text-align: center;
  margin-bottom: 20px;
  color: #043445;
}

/************* LOGIN CSS END ****************/


/************* LOGO UPLOAD START ****************/
.bgColor {
  max-width: 440px;
  height: 400px;
  background-color: #c3e8cb;
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  margin-top: 100px;
}
#targetOuter{
  position:relative;
  text-align: center;
  background-color: #F0E8E0;
  margin: 20px auto;
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.inputFile {
  background-color: #FFFFFF;
  width: 200px;
  height: 200px;
  overflow: hidden;
  opacity: 0;
  cursor:pointer;
}
.icon-choose-image {
  position: absolute;
  opacity: 0.5;
  top: 0px;
  left: 0px;
  width: 200px;
  height: 200px;
  background-image: url(photo.png);
  background-position: center;
  background-repeat: no-repeat;
}
.upload-preview {border-radius:4px;}

/************* LOGO UPLOAD END ****************/


/************* DATA TABLE CSS START ****************/
.dataTables_info, .dataTables_filter{
  display: none;
}
#pdf_table{
    width: 100% !important;
}
#pdf_table_wrapper .dt-buttons{
  float: left;
  margin-bottom: 10px;
  position: absolute;
  bottom: 1px;
}
#pdf_table_wrapper #pdf_table_filter, .dataTables_paginate{
  float: right;
  margin-bottom: 10px;
}
#pdf_table_wrapper .dt-buttons button{
  text-align: center;
  padding: 10px;
  background-color: #ccccccad;
  border: 3px solid #ccc;
  margin: 0px auto;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
  padding: 2px 15px;
  color: #043445;
  background: none;
  border: 2px solid #043445;
}
#pdf_table_wrapper .dt-buttons button:hover {
  transition: 0.2s;
  background: #043445;
  color: #fff;
}
.dataTables_paginate{
  margin-top: 5px;
}
.dataTables_paginate span .paginate_button{
  width: 25px;
  border-radius: 4px;
  padding: 5px 0px;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 0px 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 300ms;
  text-align: center;
}
.dataTables_paginate span .paginate_button.current {
  background-color: #043445;
  border: 1px solid #043445;
  color: #fff;
}
/************* DATA TABLE CSS END ****************/

.search_section{
  margin-top: 10px;
  /* background: #ccc; */
  display: inline-block;
  width: calc(100% - 15px);
  padding: 8px;
  border-radius: 4px;
}

.search_section .form_input{
  float: right;
  position: relative;
  width: 40%;
  margin-bottom: 0;
}
.search_section .form_input input{
  padding-left: 10px;
}
.search_section .fa-search, .search_section .fa-arrow-right{
  position: absolute;
  right: 0;
  top: 0;
  background: #043445;
  cursor: pointer;
  width: 35px;
  height: 31px;
  vertical-align: initial;
  line-height: 29px;
  text-align: center;
  color: #fff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}


.edit-link, .delete-link{
  color: #2a67a0;
  font-weight: 500;
  text-decoration: underline;
}
.delete-link{
  color: #c63939;
}

.select2-container .select2-selection--single{
  height: 31px;
  border: 1px solid #ccc;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333;
  line-height: 31px;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #dbdbdb;
}

.form-background-left,.form-background-right{
  background: #e7e7e7;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #ccc;
  border-right: 0;
}
.form-background-right{
  border-left: 0;
}

#pdf_table thead th:last-child{
  width: 90px !important;
}
/* kaushal add payment css  start*/
.add_payment {
  height: auto !important;
}
/* kaushal add payment css  end*/
.add_more_report{
  clear: both;
  margin-bottom: 25px;
  margin-top: 0;
  display: inline-block;
  height: 200px;
  width: 100%;
  overflow: auto;
  border: 1px solid #043445;
}

.add_more_report::-webkit-scrollbar, #pdf_table_wrapper::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  background-color: #bbb; /* or add it to the track */
}
.add_more_report::-webkit-scrollbar-thumb {
  background: rgba(4,52,69,.7);
}
#pdf_table_wrapper::-webkit-scrollbar-thumb {
  background: #777;
}
.add_more_report table, .add_more_report th, .add_more_report td {
  padding: 5px 2px;
  text-align: center;
}
.add_more_report table a{
  font-weight: 600;
}

.fa-plus, .fa-times{
  padding: 3px 5px;
  background: #78ac01;
  border-radius: 50%;
  color: #fff;
  line-height: 13px;
  margin: 0 10px
}
.fa-times{
  background: #c63939;
}
.add-report .form_input textarea.form-control {
  height: 80px;
}

.reports .search_section .form_input{
  width: 25%;
}
.reports table{
  font-size: 12px;
  padding: 5px 5px 5px 5px;
}
.reports #pdf_table_wrapper .dt-buttons{
  bottom: 70px;
  margin-bottom: 0
}
.btn-inline{
  margin-top: 10px;
  text-align: center;
}
.btn-inline .btn{
  display: inline-block;
  margin-top: 15px;
}
.customer_drop{
  visibility: hidden;
}

.dashboard .form-group{
  width: calc(20% - 0px);
  margin-bottom: 0;
  text-align: center;
}
.dashboard .form_input{
  width: 100%;
}
#accounting-year .select2-container{
  width: calc(100% - 20px) !important;
}
.dashboard .select2-container--default .select2-selection--single{
  border: 1px solid #043445;
}
.dashboard  .select2-container--default .select2-selection--single .select2-selection__rendered{
  color: #043445;
  font-weight: 600;
}
.dash_header .search_section{
  margin: 0;
  padding: 0;
  padding-right: 10px;
  width: auto;
}
.dash_header .search_section .form_input{
  width: 100%;
}

.envelope .dash_header .pull_right{
  position: relative;
}
.envelope .dash_header .pull_right .radio-custom-label{
  font-weight: 500;
  color: #043445;
}
.option_1 {
  float: left;
}
.option_1:first-child {
  margin-right: 30px;
}
.envelope .dash_header .pull_right .radio-custom + .radio-custom-label:before{
  top: -1px;
  left: -23px;
}
.filmsize-print .fill-btn, .observation-print .fill-btn {
  padding: 10px 15px;
  width: 150px;
  font-size: 17px;
  margin: 15px;
}
.form_lable.long-text{
  line-height: 16px;
}

#search-company, #search-data {
  font-size: 13px;
}

.dropdown-container, .dropdown-btn{
  border-right: 2px solid #043445;
  border-left: 2px solid #043445;
}

.inner_content .btn:last-child{
  border-bottom: 2px solid #043445 !important;
}
#pdf_table_wrapper{
  overflow: auto;
}

.icon_dash{
  float: right;
  cursor: pointer;
  display: none;
}
.bar1, .bar2, .bar3 {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 6px;
  transition: 0.4s;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  transform: rotate(-45deg) translate(-5px, 6px);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}
#footer{
  position: fixed;
  bottom: 0;
  background: rgba(4,52,69,.7);
  width: 100%;
  color: #fff;
  padding: 4px;
  font-weight: 400;
  z-index: 99;
}
#footer a{
  color: #fff;
  font-weight: 500;
}
.dashboard .form_lable{
  width: 100%;
  text-align: left;
  color: #043445;
  padding: 0 11px;
}
.copy_address{
  font-size: 13px;
  cursor: pointer;
  font-weight: 200;
  padding-left: 20px;
  position: absolute;
}
.paginate_button{
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #043445;
}
.paginate_button.disabled{
  opacity: 0.5;
  cursor: default;
}
.dpt-extra{
  display: inline-block;
  border: 1px solid #ccc;
  padding-top: 10px;
  margin-bottom: 8px;
  background: #ccc;
  border-radius: 5px;
  width: 100%;
}
.min-height{
  min-height: 30px;
}

.reports .dash_header .pull_right{
  position: relative;
  font-weight: 500;
  color: #043445;
  text-transform: uppercase;
}
.reports .dash_header .checkbox-custom + .checkbox-custom-label:before{
  top: -1px;
  left: -23px;
  border-radius: 50%;
}
.reports .dash_header .checkbox-custom + .checkbox-custom-label{
  margin-right: 30px;
}


/* #Media Queries
================================================== */
@media only screen and (min-width: 1200px)  and (max-width: 1300px){

  #services #left_services{
    width: calc(22% - 10px);
  }
  #services #right_services{
    width: calc(78% - 10px);
  }
  .dashboard .form-group {
    width: calc(25% - 0px);
  }
  .search_section .form_input{
    width: 50%;
  }
  .form_input {
    width: 66%;
  }
  #targetOuter{
    margin-top: 25px;
  }
  /* kaushal change css for NDT Reports form fileds alignment 24/12/2019 */
  .add-report .form_lable {
    width: 138px;
    /* text-align: left; */
  }
  .add-report .form_input, .add-report .report-bottom.form-group .form_input {
    width: 53%;
  }

}
@media only screen and (min-width:992px) and (max-width: 1200px) {

  #services #left_services{
    width: calc(25% - 10px);
  }
  #services #right_services{
    width: calc(75% - 10px);
  }
  .dashboard .form-group {
    width: calc(33.33% - 0px);
  }
  .search_section .form_input{
    width: 70%;
  }

}

@media only screen and (max-width: 1200px) {
  .form_lable, .add-report .form_lable {
    width: 100%;
    text-align: left;
  }
  .form_input, .add-report .form_input, .add-report .report-bottom.form-group .form_input{
    width: 100%;
    margin-bottom: 5px;
  }
}

/* @media only screen and (min-width: 960px) and (max-width: 991px) { */
@media only screen and (max-width: 991px) {
  #services #left_services{
    width: calc(100% - 0px);
    display: none;
    height: 94%;
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 57px;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }
  #services #right_services{
    width: calc(100% - 0px);
  }
  .dropdown-container {
    display: block;
  }
  .icon_dash{
    display: block;
  }
  #left_services .inner_content{
    width: calc(100% - 0px);
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 16px;
  }
  .dashboard .form-group {
    width: calc(33.33% - 0px);
  }
  .search_section .form_input{
    width: 50%;
  }
  .dashboard .form_lable{
    text-align: center;
  }
}
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
  .search_section .form_input{
    width: 415px;
  }
  #pdf_table_wrapper .dt-buttons{
    bottom: 38px;
  }
  .fill-btn{
    position: relative;
    top: 10px;
  }
  .reports #pdf_table_wrapper .dt-buttons {
    bottom: 76px;
  }
}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  #services {
    margin-top: 70px;
  }
  .header_left {
    float: left;
    width: calc(33% - 10px);
  }
  .dashboard .form-group{
    width: 50%;
  }
  #right_services .full_right_content{
    width: calc(100% - 10px);
    padding: 5px;
  }
  .center_align {
    width: 95%;
  }
  #pdf_table_wrapper .dt-buttons {
    bottom: -9px;
  }
  .reports #pdf_table_wrapper .dt-buttons {
    bottom: 33px;
  }
  .reports .search_section .form_input {
    width: 50%;
    margin-bottom: 5px;
  }
  .dash_header .search_section{
    width: 96%;
    margin-top: 5px;
  }
  .add-report .form-group {
    width: 49.5%;
  }
  .form_lable{
    line-height: 25px;
  }
  .dashboard .form_lable{
    text-align: left;
  }
  .login .header_left{
    width: 100%;
  }
  #logo_text, .logo_text{
    font-size: 14px;
    line-height: 34px;
    padding: 0 0 0 5px;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .login-box {
    width: 420px;
    margin: 120px auto 0;
  }
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
  .header_left{
    width: 128px;
  }
  #logo_text, .logo_text{
    font-size: 14px;
    line-height: 34px;
    padding: 0 0 0 5px;
  }
  #account_nav{
    padding: 9px 0;
  }
  header{
    padding-top: 8px;
    padding-bottom: 8px;
  }
  #services {
    margin-top: 60px;
  }
  h1.pull_left{
    text-align: center;
    float: none;
  }
  #report_status ~ .select2.select2-container {
    width: 96% !important;
    float: none;
    /* margin: 0 4px; */
  }
  .form-group,.dashboard .form-group {
    width: 100%;
    margin-bottom: 0;
  }
  .add-report .form-group {
    width: 100%;
    margin-bottom: 0;
  }
  .form_lable.long-text{
    line-height: 25px;
  }
  .form_input input, .form_input select.form-control, .form_input textarea.form-control {
    width: 96%;
  }
  .search_section .form_input{
    width: 100%;
  }
  .pull_right {
    text-align: center;
    float: none;
    margin-bottom: 5px;
  }
  .fill-btn{
    left: 33%;
  }
  .btn-inline .fill-btn{
    left: 0;
  }
  .reports #pdf_table_wrapper .dt-buttons {
    bottom: 67px;
  }
  .btn-inline {
    margin-top: 25px;
  }
  .btn-inline .btn {
    margin-top: 5px;
    width: 35%;
  }
  #services #left_services{
    top: 48px;
    height: 95%;
  }
  .reports .search_section .form_input {
    width: 46%;
    padding: 0 5px;
  }
  .search_section .form_input input {
    padding-left: 5px;
    font-size: 11px;
  }
  #search-company, #search-data {
    font-size: 12px;
  }
  .search_section{
    width: calc(100% - 0px);
    padding: 0px;
  }
  .center_align {
    width: 98%;
  }
  .dashboard .select2-container, .dashboard #accounting-year .select2-container {
    width: calc(100% - 5px) !important;
  }
  .login-box{
    width: 90%;
    margin: 100px auto 0;
    padding: 0;
  }
  .login-box form{
    padding: 10px;
  }
  .login-box .form_input{
    width: 100%;
  }

}

.add-challan .add_more_report #inner_report_content select{
  width:  100%;
}
.add-challan .add_more_report #inner_report_content .select2-container{
  width : 200px !important;
}
.add-challan .inner_data{
  clear: both;
  padding-top: 30px;
}
.add-challan .add_more_report input[type="text"]{
  width: auto;
  margin: 0 auto;
}

#main_challan_preview { margin-bottom: 25px; margin-top: 25px;}
#main_challan_preview th {text-align: center; }
#main_challan_preview span {width: 100px; display: inline-block;}
#main_challan_preview table { margin: 0 auto 25px; }
#main_challan_preview .title {text-align: center; float: none; margin-bottom: 0; }

.select2-container--default .select2-results__option[aria-selected=true]{
  display: none;
}


#trip_minimum_report_content .select2-container{
  width: 200px !important;
}

td.red_report{
  color: red;
  font-weight: 900;
}
td.green_report{
  color: green;
  font-weight: 900;
}
/* kaushal css for payment module 17/12/2019*/
#inner_payment_content input[type="number"] {
    width: 68px;
    margin: 0 10px;
}
.add_payment input[type="text"] {
  width: 130px !important;
}
.payment_date {
  width: 105px;
}
/* kaushal add css for margin top in club report button */
.add-club-btn {
  margin-top: 30px;
}
/* kaushal add css for form input select2 25/12/2019 */
.form_input .select2 {
  width: 95% !important;
  line-height: 20px !important;
}
