.stats-3.custombox {
    width: 100%;
}
.box1 {
    line-height: 1.6;
    background: #1C1E21;
    width: 80px;
    padding: 20px 10px;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin: 30px auto;
    color: #fff !important;
} 
.pro-details {
    display: grid;
    gap: 5px 15px;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-evenly;
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
}
.pro-details.list2 {
    /* grid-template-columns: repeat(5, 1fr); */
    margin-bottom: 10px;
    border-bottom: solid 1px #c3c3c3;
    padding-bottom: 20px;
}
.pro-details.list2:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 10px;
}
input[type=checkbox], input[type=radio] {
    margin-right: 4px;
}
.sold-btn {
    display: flex;
    justify-content: end;
}
.details-list label {
    margin: 0;
}
.pglogo { width: 100%; text-align:center;}
.pglogo img { max-width:250px; display:inline-block; padding-top: 20px}
.login_bg {
	color: #333333;
    background-color: #fff;
	/*background:  url("../img/login-bg.png") repeat-x scroll 0 0 #272727;*/	
  /* background: rgb(85,89,96);
background: -moz-linear-gradient(90deg, rgba(85,89,96,1) 0%, rgba(41,44,50,1) 50%, rgba(28,30,33,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(85,89,96,1) 0%, rgba(41,44,50,1) 50%, rgba(28,30,33,1) 100%);
background: linear-gradient(90deg, rgba(85,89,96,1) 0%, rgba(41,44,50,1) 50%, rgba(28,30,33,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#555960",endColorstr="#1c1e21",GradientType=1); */
}
.brand_name {
	background-color: #ff0000;
	color: #fff !important;
	line-height: 1.8;
	padding: 0 15px;
	position: relative;
	top: 6%;
	left: 15px;
	font-weight: 600;
	font-size: 22px;
}
.sub a {
    background: url(../img/submit.png) no-repeat;
    background-color: #ff0000;
    text-indent: -500px;
    height: 80px;
    width: 80px;
    background-position: center;
    background-size: 80%;
    border: none;

}
.bg-login { background:url(../img/bg-login-form.jpg) no-repeat; background-position: left bottom; background-size: 100%;}
.login-page .form-holder .form {
    background: transparent;
}
.login-page .form-holder {
    width: 80% ;
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(34, 34, 34, 0.15);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 24px 20px -20px, rgba(0, 0, 0, 0.3) 0px 30px 10px -30px;
    border-radius: 10px;
}
.login_bg .form-control {
    background: #fff;
    border: none;
    box-shadow: none;
    padding: 6px 12px;
    line-height: 1;
    height: 36px;
    font-size: 14px ; color: #ff0000;
}
.login_bg .login-page .form-holder .content div[class*="col-"] {
    float: left;
}
.login-page .form-holder div.inp {
    padding-right: 8px;
}
.filterable .filters input[disabled] {
    background-color: transparent;
    border: none;
    cursor: auto;
    box-shadow: none;
    padding: 0;
    height: auto;
}
.filterable .filters input[disabled]::-webkit-input-placeholder {
    color: #333;
}
.filterable .filters input[disabled]::-moz-placeholder {
    color: #333;
}
.filterable .filters input[disabled]:-ms-input-placeholder {
    color: #333;
}
.btn-xs {
    font-size: 14px;
    padding: 3px 15px;
    line-height: 1.5;
    border-radius: 3px;
}
button.btn.btn-filter {
    margin-top: 20px;
    
}
/*Fun begins*/
.tab_container { 
    position: relative;
}

.tab_container input, .tab_container section {
  clear: both;
  padding-top: 10px;
  display: none;
}

.tab_container label {
  font-weight: 700;
  font-size: 18px;
  display: block;
  float: left;
  width: 20%;
  padding: 1.5em;
  color: #757575;
  cursor: pointer;
  text-decoration: none;
  text-align: center; 
  border-bottom: solid 1px #484848;
}
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding: 20px; 
  color: #999; 
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.7s ease-in-out;
  -moz-animation: fadeInScale 0.7s ease-in-out;
  animation: fadeInScale 0.7s ease-in-out;
}
.tab_container .tab-content h3  {
  text-align: center;
}

.tab_container [id^="tab"]:checked + label {
  background: #fff;
  box-shadow: inset 0 3px #ff0000;
}

.tab_container [id^="tab"]:checked + label .fa {
  color: #ff0000;
}

label .fa {
  font-size: 1.3em;
  margin: 0 0.4em 0 0;
}

/*Media query*/
@media only screen and (max-width: 930px) {
  label span {
    font-size: 14px;
  }
  label .fa {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  label span {
    display: none;
  }

  label .fa {
    font-size: 16px;
  }

  .tab_container {
    width: 98%;
  }
}

/*Content Animation*/
@keyframes fadeInScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.job-order-btn a { 
    float: right;
}
.add-form .form-group {
    flex: 0 0 33.33%;
}
.add-form .form-control {
    width: 100%;
}
.vehicle-list li {
    flex: 0 0 33.33%;
    width: 33.33%;
    list-style: circle;
}
.vehicle-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.vehicle-list li p {
    font-size: 14px;
    color: #dedede;
}
.vehicle-list li p b { 
    color: #fff;
}
.vehicle-list li.carimage {
    flex: 0 0 100%;
    width: 100%;
}
.vehicle-list li.carimage img {
    max-width: 350px;
    border-radius: 8px;
    border: solid 2px #fff;
}
.actions-btns p {
    display: inline-block;
    margin: 0px;
}
.work-detail .table td {
    color: #dee2e6;
    font-size: 12px;
    vertical-align: middle;
    border-right: solid 1px #343a40;
}
.work-detail .table td:last-child, .work-detail .table th:last-child{
    border-right: none;
}
.form-control-sm::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 12px;
}
.form-control-sm::-moz-placeholder { /* Firefox 19+ */
  font-size: 12px;
}
.form-control-sm:-ms-input-placeholder { /* IE 10+ */
  font-size: 12px;
}
.form-control-sm:-moz-placeholder { /* Firefox 18- */
  font-size: 12px;
}


@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
@media (min-width: 992px) {
  .modal-lg, .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-body .block {
  border: solid 1px #343a40;
}
.vehicle-list.list2 li {
  flex: 0 0 25%;
  width: 25%;
}


/* invoice popup */
.invoice {
    background: #fff;
    padding: 20px
}

.invoice-company {
    font-size: 20px;
    color: #2d3035;
}

.invoice-header {
    margin: 0 -20px;
    background: #f0f3f4;
    padding: 20px
}

.invoice-date,
.invoice-from,
.invoice-to {
    display: table-cell;
    width: 1%
}

.invoice-from,
.invoice-to {
    padding-right: 20px
}

.invoice-date .date,
.invoice-from strong,
.invoice-to strong {
    font-size: 16px;
    font-weight: 600
    color: #2d3035;
}
.invoice address {
  color: #000;
}
.invoice-date {
    text-align: right;
    padding-left: 20px; color: #000;
}

.invoice-price { 
    display: table;
    width: 100%;
    border-top: solid 1px;
}
.invoice-content .table  tbody tr:nth-of-type(odd) {
    background-color: #fff; color: #000;
}
.invoice span, .invoice p, .invoice, .invoice table td  {
  color: #000 !important;
}
.invoice .table thead th { 
    color: #fff;
}
.invoice-price .invoice-price-left,
.invoice-price .invoice-price-right {
    display: table-cell;
    padding: 20px 20px 20px 0px;
    font-size: 20px;
    font-weight: 600;
    width: 75%;
    position: relative;
    /*vertical-align: middle*/
}

.invoice-price .invoice-price-left .sub-price {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px
}

.invoice-price small {
    font-size: 12px;
    font-weight: 400;
    display: block; color: #2d3035;
}
.invoice-price span, .invoice-footer span, .invoice-footer p {
  color: #000;
} 
.invoice-price .invoice-price-row {
    display: table;
    float: left
}

.invoice-price .invoice-price-right {
    width: 25%; 
    color: #000;
    font-size: 28px;
    text-align: left;
    vertical-align: bottom;
    font-weight: 300
}

.invoice-price .invoice-price-right small {
    display: block; 
}

.invoice-footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
}

.invoice-note {
    color: #999;
    margin-top: 40px;
    font-size: 85%
}

.invoice>div:not(.invoice-footer) {
    margin-bottom: 20px
}

.btn.btn-white, .btn.btn-white.disabled, .btn.btn-white.disabled:focus, .btn.btn-white.disabled:hover, .btn.btn-white[disabled], .btn.btn-white[disabled]:focus, .btn.btn-white[disabled]:hover {
    color: #2d353c;
    background: #fff;
    border-color: #d9dfe3;
}
.company {
    max-width: 120px;
}
.invoice-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table-invoice  th {
    background-color: #282b2f;
}
.invoice-price-right .form-control-label {
    color: #000;
    font-weight: 600;
    font-size: 12px;
    display: block;
}
.sub-price .radio-template::after {
    top: 9px;
    width: 10px;
    height: 10px;
}
.sub-price .radio-template::before { 
    border: solid 1px #333;
}
.sub-price  .radio-template {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    position: relative;
    top: 2px;
}
.sub-price  .radio-template::before {
    border-radius: 50%;
    -webkit-transform: translate(-1px, 1px);
    transform: translate(-1px, 1px);
}
.sub-price .radio-template + label {
    margin-left: 20px;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0px;
}
.sub-price .text-inverse {
    margin-bottom: 15px;
}
.invoice-popup .invoice-price .sub-price small {
    font-size: 16px;
}
.invoice-popup .invoice-price .text-inverse {
    margin-bottom: 0px;
}
.invoice-popup .invoice-price-right p {
    font-size: 14px;
    margin: 0;
}
.invoice-popup .invoice-price-right p b {
  font-weight: 600; margin-right: 5px;
}
.invoice-popup .invoice-price-right li { 
    line-height: 1;
}
.modal-open .modal.invoice .modal-title {
    color: #fff;
}
.vieworder .modal-content {
    background: #2D3035;
}
.modal-footer { 
    border-top: 1px solid #3d4148;
}
.modal-header { 
    border-bottom: 1px solid #3d4148; 
}
.box-part .title {
    margin-bottom: 0;
}
.box-part {
    border: solid 1px #565656;
    border-radius: 4px;
    padding: 25px 10px 20px;
}
.box-part img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
}
.box-part .title h6 {
    margin: 5px; color: #fff;
}
.worker-img {
  position: relative; margin-bottom: 15px;
}
.worker-img .badge {
    position: absolute;
    top: -10px;
    right: auto;
    color: #fff;
}
.wk-bx {
    display: block;
}
.wk-bx:hover {
  text-decoration: none;
  background: #1c1e21;
}
#todays-job td a.btn {
    font-size: 12px;
}
#todays-job td input {
    width: 100px;
    display: inline-block;
    margin-left: 10px;
}
.worker-img1 img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.wkr-tp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filters th {
    padding-top: 0;
    padding-left: 0; padding-bottom: 0;
}
.panel-title {
    font-size: 1.01rem;
    color: #ffffff;
    margin: 0;
}

/* White background pae content */
.white-bg {
    /*background: #fff;*/
}
/*.white-bg .title,*/ .white-bg .form-control-label, .white-bg .block .title strong:first-child {
    color: #1c1e21;
}
.white-bg .block { 
    background: #fbfbfb;
    color: #1c1e21;  
}
.white-bg .form-control { 
    border: 1px solid #e4e4e4; 
    color: #1c1e21; 
}
.white-bg .work-detail .table td {
    color: #1c1e21; 
    border-color: #e4e4e4;
}
.white-bg .table thead th {
    border: none;
    background-color: #282b2f;
    color: #fff;
}
.white-bg .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
    color: #1c1e21; 
}
.white-bg footer .block {
    background: #2d3035;
    color: #ffffff;
}
.white-bg .btn-outline-secondary { 
    border-color: #e4e4e4;
}
.field-icon {
    float: right;
    margin-right: 9px;
    margin-top: -27px;
    position: relative;
    color: grey;
    font-size: 120%;
}
nav#sidebar li li a.active {
    background: #474a51;
}