*, *:before, *:after {
  box-sizing: border-box;
}

#cmloader,#screenPopOverlay {
  background: rgba(0, 0, 0, .5);
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 99;
}
#cmloader.show_loader {
  display: flex;
}
.cm_load {
  border: 16px solid #f3f3f3; 
  border-top: 16px solid #F1C233; 
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 45%;
  left: 45%;
}
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body {
  background: #fff;
  font-size: 14px;
  line-height: 1.35;
  color: #000;
  font-family:sans-serif;
  margin: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

*:focus {
  outline: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-center {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.outer_form_wrapper {
  background: whitesmoke;
  border-radius: 5px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

h1.heading_title {
  margin: 0;
  font-weight: 500;
  background-image: linear-gradient(to right, rgb(241, 241, 9), rgb(228, 228, 91));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 50% 3px;
  display: inline-block;
}

/* .clearDataLocalStorage {
display: none;
} */
.field_group label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1rem;
}

.field_group input[type="text"],
.field_group input[type="number"]{
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.field_group:not(:last-child) {
  margin-bottom: 1rem;
}

.global_form_wrapper {
  padding-top: 30px;
}

.field_group select {
  display: block;
  width: 100%;
  padding: 0.575rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.field_group select[disabled] {
  opacity: 0.5;
}
div.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: relative;
  padding: 15px 15px;
  display: none;
}

div.error button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: no-repeat;
  border: none;
  cursor: pointer;
}

div.error button svg {
  width: 15px;
  opacity: 0.9;
  fill: #721c24;
}
div.green {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  position: relative;
  padding: 15px 15px;
  display: none;
}

div.green button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: no-repeat;
  border: none;
  cursor: pointer;
}

div.green button svg {
  width: 15px;
  opacity: 0.9;
  fill: #155724;
}
div.green img {
  width: 20px;
}
div.yellow {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  position: relative;
  padding: 15px 15px;
  display: none;
}

div.yellow button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: no-repeat;
  border: none;
  cursor: pointer;
}

div.yellow button svg {
  width: 15px;
  opacity: 0.9;
  fill: #155724;
}
div.yellow img {
  width: 20px;
}
.add_machine_wrapper {
  border: 2px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  font-size: 1.2rem;
  margin-top: 30px;
}

.add_machine_wrapper span {
  margin-right: 10px;
  opacity: 0.5;
}

.add_machine_wrapper svg {
  opacity: 0.5;
}
.accordion_wrapper {
  background-color: #cce5ff;
  position: relative;
  padding: 0;
  margin-bottom: 1rem;
  border: 1px solid #b8daff;
  border-radius: 0.25rem;
  overflow: hidden;
}

.machine_group_wrapper {
  margin-top: 20px;
}

.accordion_heading {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  align-items: center;
  font-size: 1.2rem;
}

.accordion_heading svg {
  width: 30px;
  transform: rotate(180deg);
  transition: all 200ms linear;
}
.accordion_heading.inactive svg {
  transform: rotate(0deg);
}
.accordion-content {
  background: #fff;
  padding: 0.75rem 1.25rem 1.3rem 1.25rem;
}

.loader_input_machine.disabled {
  opacity: 0.5;
  pointer-events: none;
  margin-bottom: 15px;
}
.loader_input_machine {
  margin-bottom: 15px;
}
.window_add,.shade_add {
  align-items: center;
  border: 2px dashed #ccc;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
  padding: 10px;
}
.window_add{
  margin-bottom:40px;
}
.window_add span,.shade_add span {
  margin-right: 10px;
  opacity: .5;
}
.shade_add:hover, .window_add:hover {
  background: #fafafa;
}
.add_machine_wrapper:hover {
  background: #fefefe;
}
.window_add svg,.shade_add svg {
  opacity: .5;
}
.window_add.disabled, .shade_add.disabled {
  pointer-events: none;
  opacity: 0.2;
}
.shade_add {
  margin-top: 30px;
  margin-bottom: 20px;
}
.button_wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.button_wrapper button {
  display: block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  cursor: pointer;
  width: 23%;
}

.button_wrapper button.save_it {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.button_wrapper button.delete_it,
button.delete_item{
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.button_wrapper button.delete_it:hover,
button.delete_item:hover{
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.button_wrapper button.save_it:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.window_item_wrapper,.shade_item_wrapper {
  background: #fafafa;
  border: 1px solid #aaa;
  border-radius: 5px;
  overflow: hidden;
}

.window_title,.shade_title {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px;
  font-size: 1.2rem;
  cursor: pointer;
}

.window_title svg,.shade_title svg {
  width: 30px;
  transform: rotate(180deg);
  transition: all 200ms linear;
}
.window_title.inactive svg,.shade_title.inactive svg {
  transform: rotate(0deg);
}
.window_item,.shade_item {
  background: #fff;
  padding: 15px;
}

.window_item_wrapper input,
.window_item_wrapper select,
.shade_item_wrapper input,
.shade_item_wrapper select,
.shade_item_wrapper textarea{
  background: #fafafa !important;
}
.window_item_wrapper:not(:last-child),
.shade_item_wrapper:not(:last-child) {
  margin-bottom: 20px;
}
.shade_item_wrapper:first-child {
  margin-top: 30px;
}
.field_group textarea {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #212529;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.575rem 0.75rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 100%;
  font-family: inherit;
  background: #fff;
  min-height: 120px;
}
.saved_jobs_data {
  margin-top: 40px;
  border-top: 1px dashed;
}
.accordion_wrapper table tr td:first-child {
  font-weight: bold;
  font-size: 15px;
}

.accordion_wrapper table td {
  border: 1px solid #000;
  padding: 10px;
}

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

.wrapper_inner_jobs .button_wrapper {
  background: #fff;
  padding: 14px;
  margin-top: 0px;
}

.wrapper_inner_jobs button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

button.create_ticket {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

button.create_ticket:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

button.close_ticket:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

button.close_ticket {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.wrapper_inner_jobs .accordion_wrapper {
  overflow: hidden;
}
.save-panels > div {
  padding: 15px;
}

.window_item.item_n,
.shade_item.item_n{
  border: 1px solid #000;
  padding: 0;
}

.title_window_saved,
.title_shade_saved{
  padding: 15px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  font-size: 1.2rem;
}

.title_window_saved svg,
.title_shade_saved svg{
  width: 20px;
  transform: rotate(180deg);
  transition: all 200ms linear;
}

.window_item.item_n:not(:last-child),
.shade_item.item_n:not(:last-child){
  margin-bottom: 10px;
}

.window_item.item_n table,
.shade_item.item_n table{
  background: #fafafa;
}

.window_item.item_n table td,
.shade_item.item_n table td{
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
}
.inactive.title_window_saved svg,
.inactive.title_shade_saved svg{
  transform: rotate(0deg);
}
.title_mac {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 15px;
  border: 1px solid;
  font-size: 1.1rem;
  cursor: pointer;
  overflow: hidden;
}

.title_mac svg {
  width: 30px;
  transform: rotate(180deg);
  transition: all 200ms linear;
}

.driven_data {
  display: none;
}

.save_rows_jobs:not(:last-child) {
  margin-bottom: 20px;
}

.title_mac.inactive svg {
  transform: rotate(0deg);
}
.button_wrapper.close_active button.create_ticket {
  opacity: 0.2;
  pointer-events: none;
}
.suc_cat.dis {
  display: none;
}
.button_wrapper.close_active  button.close_ticket.disabled {
  pointer-events: auto;
  opacity: 1;
}
.field_group.window_strip_size_height.dis,.field_group.window_full_tint_amount.dis, .field_group.window_stripe_amount.dis  {
  display: none;
}
.machine_status_wrapper {
  display:none;
}

.machine_status_wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.machine_status_wrapper ul li {
  position: relative;
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
  display: block;
  padding: 15px;
  margin-bottom: 5px;
}

.machine_status_wrapper ul li button {
  background: no-repeat;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
}

.machine_status_wrapper ul li button svg {
  fill: #155724;
  opacity: .9;
  width: 15px;
}
.machine_status_wrapper.active{
  display:block;
}
.close_job_button_wrapper {
  margin-top: 20px;
  text-align: center;
}

.close_job_button_wrapper button {
  color: #fff;
  background-color: #007bff;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #007bff;
  padding: 0.8rem 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  cursor: pointer;
  width: 250px;
}

.close_job_button_wrapper button:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.close_job_button_wrapper button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.rror_text {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
  /* display: none; */
  padding: 15px;
  position: relative;
  margin-bottom: -20px;
}

.rror_text button {
  background: no-repeat;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
}
.button_wrapper.active-submit button {
  pointer-events: none;
  opacity: 0.5;
}
.accordion_wrapper.disabled {
  display: none;
}
.error1 input,.error1 select,.error1 textarea {
  border-color: red !important;
}
span.required {
  color: red;
}
.rror_text button svg {
  fill: #721c24;
  opacity: .9;
  width: 15px;
}
.button_wrapper0 {
  align-items: center;
  border: 2px dashed #ccc;
  cursor: pointer;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  margin-top: 30px;
}

.button_wrapper0 button {
  border: none;
  opacity: .5;
  font-size: 1.2rem;
  display: block;
  padding: 15px 10px;
  width: 100%;
  cursor: pointer;
  background: #f5f5f5;
}

.button_wrapper0 button:hover {
  background: #fefefe;
}
.upload_attachment_item {
  border: 1px solid #ced4da;
  background: #fafafa;
  border-radius: 0.25rem;
  padding: 0.8rem 0.75rem;
  margin-bottom: 15px;
}

.attachment_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.attachment_wrap button.del {
  color: #fff;
  background-color: #dc3545;
  border: 1px solid #dc3545;
  padding: 0.5rem 0.75rem;
  font-size: 1.1rem;
  line-height: 1.2;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  cursor: pointer;
  width: 20%;
}

.attachment_wrap input[type="text"] {
  width: 30%;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #212529;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.attachment_wrap input[type="file"] {
  width: 45%;
  border: 1px solid #ccc;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  background: #fff;
}

.upload_attachment_item label {
  display: block;
  font-size: 1rem;
}
.suc_cat.dis .button_wrapper {
  justify-content: end;
}

.field_group.dis {
  display: none;
}

span.select2.select2-container.select2-container--default.select2-container--below {
  margin: 8px 0;
  line-height: 1.35;
  color: #000;
  font-family: sans-serif;
  font-weight: 400;
}

.field_group.tint_only,
.field_group.gasket_group {
  margin-top: 20px;
}

.field_group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  margin-bottom: 5px;
  margin-left: 10px;
}

.field_group.tint_only > label, 
.field_group.dealer_part > label,
.field_group.gasket_glue > label {
  display: inline;
}

.field_group input[type=number]::-webkit-outer-spin-button,
.field_group input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}