@import url('https://fonts.googleapis.com/css2?family=BenchNine:wght@300;400;700&family=Coustard:wght@400;900&family=Open+Sans:wght@300;400;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');



body {
    margin: 0px;
    background: #fff;
}



.ui-datepicker {
  font-size: 12px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc;
}


.bodytext {
    position: relative;
    text-align:left;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    line-height: 20px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bodytext a:link,
.bodytext a:hover,
.bodytext a:visited,
.bodytext a:active
{
  color: #fff;
  text-decoration: none;
}




.bodytext_dark {
  position: relative;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #222;
  line-height: 20px;
}

.bodytext_dark a:link,
.bodytext_dark a:hover,
.bodytext_dark a:visited,
.bodytext_dark a:active
{
  color: #222;
  text-decoration: none;
}



.form_error_block {
  display: none; 
  position: relative; 
  width: 100%; 
  text-align: center; 
  font-weight: bold; 
  font-size: 13px; 
  line-height: 15px; 
  color: #d6372c; 
  margin-top: 10px; 
  margin-bottom: 0px;
  font-family: 'Poppins', sans-serif;
}




.bodytext_copyright {
  position: relative;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  line-height: 18px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bodytext_copyright a:link,
.bodytext_copyright a:hover,
.bodytext_copyright a:visited,
.bodytext_copyright a:active
{
  color: #fff;
  text-decoration: none;
}


@media screen and (min-width: 401px) {
  .bodytext_copyright { 
      font-size: 12px;
      line-height: 18px;
  }
}
@media screen and (max-width: 400px) {
  .bodytext_copyright { 
      font-size: 9px;
      line-height: 15px;
  }
}


.link_text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}




.textfield_grey {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #222;
    padding: 3px 2px 3px 2px;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-size: 15px;
    line-height: 15px;
    font-weight: normal;
    outline: none;
    box-sizing: border-box;
    margin-top: 2px;
    /* -webkit-text-fill-color: #222;
    -moz-text-fill-color: #222;
    -o-text-fill-color: #222;
    -khtml-text-fill-color: #222; */
}

.textfield_grey:active,
.textfield_grey:hover,
.textfield_grey:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}



input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}




.custom_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 8px 12px 8px 12px;
    border-radius: 2px;
    background: #d6372c;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px; 
    line-height: 16px;
    font-weight: normal;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_button:hover {
    background: #666 !important;
    color: #fff;
}


.custom_button_disabled {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 8px 12px 8px 12px;
  border-radius: 2px;
  background: #ccc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px; 
  line-height: 16px;
  font-weight: normal;
  transition: 0.3s;
  margin: 0px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}





.micro_button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 4px 4px 2px 4px;
  border-radius: 2px;
  background: #444;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; 
  line-height: 13px;
  font-weight: normal;
  transition: 0.3s;
  margin: 0px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.micro_button:hover {
  background: #888 !important;
  color: #fff;
}





.admin_button_small {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 3px 7px 3px 7px;
  border-radius: 2px;
  background: #d6372c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; 
  line-height: 14px;
  font-weight: normal;
  transition: 0.3s;
  margin: 5px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.admin_button_small:hover {
  background: #666 !important;
  color: #fff;
}



.admin_button_small_disabled {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 3px 7px 3px 7px;
  border-radius: 2px;
  background: #ccc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; 
  line-height: 14px;
  font-weight: normal;
  margin: 5px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}




#new_nav_menu {
    display: none; 
    position: absolute; 
    top: 28px; 
    right: 0px; 
    padding: 0px;
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    background: #fff; 
    border: 1px solid #ccc;
    border-bottom: none; 
    box-shadow: 3px 3px 4px rgba(0,0,0,0.3); 
    z-index: 9999973; 
  }
  
  
  
  .new_nav_menu_item {
    display: block;
    position: relative;
    cursor: pointer;
    padding: 4px 10px 4px 10px;
    margin: 0px;
    text-align:left;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 19px;
    background: #fff;
    white-space: nowrap;
    border-bottom: 1px solid #ccc;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .new_nav_menu_item:hover {
    background: #ccc;
  }



  #nav_bar_links {
    display: block; 
    position: absolute; 
    top: 14px; 
    right: 120px; 
    color: #fff; 
    font-size: 14px; 
    line-height: 14px; 
    text-align: right;
  }


  @media screen and (min-width: 811px) {
    #nav_bar_links { 
        display: block;
    }
    #menu_about {
        display: none;
    }
    #menu_contact {
        display: none;
    }
    #menu_products {
      display: none;
    }
    #menu_templates {
      display: none;
    }
    #menu_estimate {
      display: none;
    }
    #menu_catalog {
      display: none;
    }
  }
  @media screen and (max-width: 810px) {
    #nav_bar_links { 
        display: none;
    }
    #menu_about {
        display: block;
    }
    #menu_contact {
        display: block;
    }
    #menu_products {
      display: block;
    }
    #menu_templates {
      display: block;
    }
    #menu_estimate {
      display: block;
    }
    #menu_catalog {
      display: block;
    }
  }




  .menu_link_text {
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
  }

  .menu_link_text:hover {
    color: #d6372c;
  }




  .dialog_container {
    display: flex; 
    position: absolute; 
    width: 90%; 
    top: 0px; 
    min-height: 95vh; 
    padding: 0px;
    padding-top: 20px;
    left: -20000px; 
    justify-content: center; 
    align-items: center; 
    align-content: center; 
    text-align: center; 
    z-index: 9999991;
  }


  .dialog_base {
      display: block;
      position: relative;
      font-family: 'Poppins', sans-serif;
      color: #222;
      font-size: 12px;
      line-height: 13px;
      text-align: left;
      width: 100%;
      padding: 16px 26px 20px 26px;
      box-sizing: border-box;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.7);
      min-height: 100px;
  }






.loader4 {
  margin: 0px auto;
  position: relative;
  -webkit-animation: load4 1.9s infinite linear;
  animation: load4 1.9s infinite linear;
  z-index: 99999999;
}
@-webkit-keyframes load4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}





  .loader {
    display: inline-block;
    color: #d6372c;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  }
  @-webkit-keyframes load6 {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  @keyframes load6 {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  @-webkit-keyframes round {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes round {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }




  .tile_icon {
    display: inline-block; 
    position: relative; 
    cursor: pointer; 
    width: 44px; 
    height: 44px; 
    text-align: center; 
    padding: 0px; 
    margin: 5px; 
    border: 1px solid #888; 
    border-radius: 3px;
    background-size: 80%; 
    background-repeat: no-repeat; 
    background-position: center;
  }

  .tile_icon:hover {
    border: 1px solid #fff;
  }



  .client_area {
    display: flex; 
    position: relative; 
    justify-content: center; 
    align-items: flex-start; 
    align-content: flex-start; 
    flex-flow: row wrap; 
    width: 100%; 
    height: 100%; 
    text-align: center; 
    box-sizing: border-box; 
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    line-height: 20px;
}








.select-wrapper{
  float: left;
  border-bottom: 1px solid #222;            
  background: url(pics/dropdown.png) no-repeat right center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14.4px;
  line-height: 14.4px;
  color: #000;
  cursor: pointer;
}
.select-wrapper, .select-wrapper select{
  width: 100%;
  height: 26px;
  line-height: 26px;
  color: #000;
}
.select-wrapper .holder{
  display: block;
  margin: 0 35px 0 5px;
  white-space: nowrap;            
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 999;
  color: #000;
}
.select-wrapper select{
  margin: 0;
  position: absolute;
  z-index: 2;            
  cursor: pointer;
  outline: none;
  opacity: 0;
  color: #000;
}
  



















/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 21px;
  top: 1px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #222;
  background-color: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #222;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -1px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 5px;
  top: -5px;
  left: 3px;
  border-radius: 0;
  opacity: 1;
  background-color: none;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}






.checkbox_small {
  display: inline-block; 
  position: relative;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #ccc;
  width: 14px;
  height: 14px;
  cursor: pointer;
}






  


  .client_section {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    min-height: 100px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #222;
    line-height: 20px;
  }


  .client_section_title {
    display: inline-block;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #d6372c;
    line-height: 28px;
    margin-bottom: 26px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .product_tile {
    display: inline-block;
    position: relative;
    flex-grow: 0;
    width: 150px;
    height: 170px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    line-height: 16px;
    margin: 8px;
    cursor: pointer;
    padding: 8px;
    box-sizing: border-box;
  }

  .product_tile:hover {
    border: 1px solid #aaa;
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
  }



  .product_tile_title {
    display: block;
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 0px;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .category_tile_icon {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 110px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url();
  }

  .product_tile_icon {
    display: block;
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url();
  }



  .admin_section {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0px;
    width: 100%;
    min-height: 100px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #222;
    line-height: 20px;
  }
  




  .admin_option_tile {
    display: inline-block;
    position: relative;
    flex-grow: 0;
    width: 130px;
    height: 150px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    line-height: 16px;
    margin: 8px;
    cursor: pointer;
    padding: 8px;
    box-sizing: border-box;
    z-index: 100;
  }

  .admin_option_tile:hover {
    border: 1px solid #aaa;
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
  }




  .admin_tile {
    display: inline-block;
    position: relative;
    flex-grow: 0;
    width: 130px;
    height: 150px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    line-height: 16px;
    margin: 8px;
    cursor: pointer;
    padding: 8px;
    box-sizing: border-box;
    z-index: 100;
  }

  .admin_tile:hover {
    border: 1px solid #aaa;
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
  }


  .admin_tile_title {
    display: block;
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #222;
    line-height: 14px;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .admin_tile_icon {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 90px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url();
  }





  .user_tile {
    display: inline-block;
    position: relative;
    flex-grow: 0;
    width: 280px;
    height: 50px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #222;
    line-height: 16px;
    margin: 8px;
    cursor: pointer;
    padding: 8px;
    box-sizing: border-box;
  }

  .user_tile:hover {
    border: 1px solid #aaa;
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
  }





  .invoice_tile {
    display: inline-block;
    position: relative;
    flex-grow: 0;
    width: 300px;
    height: 144px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #222;
    line-height: 16px;
    margin: 8px;
    padding: 8px;
    cursor: pointer;
    box-sizing: border-box;
  }

  .invoice_tile:hover {
    border: 1px solid #aaa;
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
  }





  .search_suggestion_text {
    display: block; 
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #666;
    line-height: 16px;
    text-align: left;
    padding: 5px;
    overflow: hidden;
    height: 22px;
    box-sizing: border-box;
    cursor: pointer;
  }

  .search_suggestion_text:hover {
    color: #222;
  }



  .custom_option_checkbox {
    position: relative;
  }




  .client_category_products_block_container {
    display: none; 
    position: relative; 
    width: 100%; 
    padding: 0px; 
    margin-top: 26px;
    min-height: 200px;
  }


  .client_category_product_info_block_container {
    display: none; 
    position: relative; 
    width: 100%; 
    padding: 0px; 
    margin-top: 26px;
    min-height: 200px;
  }



  .product_info_preview_box {
    display: inline-block; 
    position: relative; 
    top: 0px; 
    width: 100%; 
    height: 150px; 
    text-align: center; 
    overflow: hidden; 
    border: 1px solid #444; 
    background: #fff; 
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: contain; 
    padding: 0px; 
    border-radius: 3px; 
    margin-top: 10px; 
    margin-bottom: 0px; 
    cursor: pointer;
  }
  
  





.debitcard_container {
  display: block;
  position: relative;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0px;
  padding: 0px;
  z-index: 10;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.debitcard_container_inner {
  display: inline-block;
  position: relative;
  width: 90%;
  max-width: 508px;
}

.debitcard {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-top: 62%;
  transform-style: preserve-3d;
  perspective: 600px;
}

.debitcard .face {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 15px 35px rgba(0,0,0,0.5);
  border-radius: 15px;
  background: rgba(0, 0, 140, 0.3);
  background-image: linear-gradient(to right, rgba(0,0,40,0.8),rgba(0,0,140,0.2));
  transform-style: preserve-3d;
  transition: 1s;
  backface-visibility: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.debitcard:hover .face.front {
  transform: rotateY(180deg);
}

.debitcard .face.back {
  transform: rotateY(180deg);
}

.debitcard:hover .face.back {
  transform: rotateY(360deg);
}

.debitcard .face.front::before {
  content: '';
  position: absolute;
  bottom: 12%;
  right: 7.8%;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
} 

.debitcard .face.front::after {
  content: '';
  position: absolute;
  bottom: 12%;
  right: 15.7%;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
}

.debitcard .face.front .debit {
  position: absolute;
  left: 7.8%;
  top: 9.55%;
  color: #fff;
  font-weight: 500;
}

.debitcard .face.front .bank {
  position: absolute;
  right: 7.8%;
  top: 7.96%;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
}

.debitcard .face.front .chip {
  position: absolute;
  top: 25.5%;
  left: 9.8%;
  max-width: 12.6%;
}

.debitcard .face.front .number {
  position: absolute;
  bottom: 41.4%;
  left: 7.8%;
  color: #fff;
  font-weight: 500;
  letter-spacing: 6px;
  font-size: 18px;
  text-shadow: 0px 2px 1px #0005;
  font-family: 'Orbitron', sans-serif;
}

.debitcard .face.front .valid {
  position: absolute;
  bottom: 28.7%;
  left: 7.8%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 300;
  line-height: 1em;
  text-align: right;
}

.debitcard .face.front .valid span:last-child {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}

.debitcard .face.front .cardHolder {
  position: absolute;
  bottom: 12.7%;
  left: 7.8%;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2px;
}

.debitcard .face.back .blackbar {
  position: absolute;
  top: 12.7%;
  width: 100%;
  height: 19.1%;
  background: #000;
}

.debitcard .face.back .ccvtext {
  position: absolute;
  top: 38.2%;
  left: 5.9%;
}

.debitcard .face.back .ccvtext h5 {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.debitcard .face.back .whiteBar {
  position: relative;
  top: 50%;
  left: 5.9%;
  width: 72%;
  height: 12.7%;
  background: #fff;
  margin-top: 5px;
}

.debitcard .face.back .ccv {
  position: absolute;
  top: 8%;
  left: 100%;
  background: #111;
  color: #fff;
  width: 12%;
  height: 84%;
  font-weight: 600;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.debitcard .face.back .text {
  position: absolute;
  bottom: 5.6%;
  left: 5.9%;
  right: 5.9%;
  color: #fff;
  font-size: 10px;
  line-height: 1.4em;
  font-weight: 300;
  text-align: left;
}



@media screen and (min-width: 801px) {
  .debitcard_container { 
      display: block;
  }
}
@media screen and (max-width: 800px) {
  .debitcard_container { 
      display: none;
  }
}







.cart_focus {
  -webkit-animation-name: cart_focus; /* Chrome, Safari, Opera */
  animation-name: cart_focus;
  -webkit-animation-duration: 0.8s; /* Chrome, Safari, Opera */
  animation-duration: 0.8s;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transform-origin: top right;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  font-family: 'Open Sans', sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes cart_focus {
  0% {transform: scale(7.0); opacity: 0.3; filter: alpha(opacity=30); }
  100% {transform: scale(1.0); opacity: 1.0; filter: alpha(opacity=100); }
}

@keyframes cart_focus {
  0% {transform: scale(7.0); opacity: 0.3; filter: alpha(opacity=30); }
  100% {transform: scale(1.0); opacity: 1.0; filter: alpha(opacity=100); }
}






.cart_tile {
  display: block;
  position: relative;
  width: 100%;
  min-height: 50px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #222;
  line-height: 17px;
  margin-bottom: 8px;
  padding: 8px;
  box-sizing: border-box;
}

.cart_tile:hover {
  border: 1px solid #aaa;
  box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
}



.cart_tile_alt {
  display: block;
  position: relative;
  width: 100%;
  min-height: 50px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #222;
  line-height: 17px;
  margin-bottom: 8px;
  padding: 5px;
  padding-top: 50px;
  padding-bottom: 15px;
  box-sizing: border-box;
}




.job_progress_container {
  display: flex; 
  position: relative; 
  width: 100%; 
  padding: 0px; 
  flex-flow: row wrap; 
  justify-content: flex-start; 
  box-sizing: border-box;
}



.order_item_job_name {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 16px;
  color: #222;
  margin-bottom: 5px;
}



.order_item_progress_tile {
  display: inline-block;
  position: relative;
  margin: 5px;
  margin-top: 10px;
  margin-bottom: 38px;
  background-color: #ccc; 
  width: 50px; 
  height: 50px; 
  border-radius: 4px; 
  background-image: url(); 
  background-size: 80%; 
  background-position: center; 
  background-repeat: no-repeat;
}


.order_item_progress_tile_title {
  font-family: 'BenchNine', sans-serif;
  display: block; 
  position: absolute; 
  bottom: calc(100% + 3px); 
  left: 0px; 
  width: 100%; 
  text-align: center; 
  font-size: 12px; 
  line-height: 12px;
}


.order_item_progress_tile_footer {
  font-family: 'Open Sans', sans-serif;
  display: block; 
  position: absolute; 
  top: calc(100% + 3px); 
  left: 0px;
  margin-top: 2px;  
  width: 100%; 
  text-align: center; 
  color: #aaa;
  font-size: 10px; 
  line-height: 11px;
}


.order_item_progress_tile_check_mark {
  font-family: 'Open Sans', sans-serif;
  display: block; 
  position: absolute; 
  top: 0px;
  left: 2px;
  bottom: 0px; 
  right: 0px;
  font-weight: bold; 
  text-align: center; 
  color: rgba(0,160,0,0.7);
  font-size: 56px; 
  line-height: 50px;
}



.order_preview_box {
  display: inline-block; 
  position: relative; 
  box-sizing: border-box; 
  background: #83ADD7; 
  padding: 6px; 
  padding-bottom: 3px; 
  border-radius: 4px; 
  margin: 0px; 
  width: 90px;
  height: 90px; 
  margin-right: 18px; 
  margin-bottom: 6px;
}



.order_datetime {
  display: block;
  position: relative;
  text-align: center;
  color: #aaa;
  font-size: 12px;
  line-height: 13px;
  font-family: 'BenchNine', sans-serif;
}



.admin_order_job_title {
  display: block;
  position: absolute;
  bottom: calc(100% + 20px);
  left: 0px;
  width: 180px;
  box-sizing: border-box;
  color: #222;
  padding: 0px;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 16px;
}



.admin_order_client_name {
  display: block;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0px;
  width: 180px;
  box-sizing: border-box;
  color: #666;
  padding: 0px;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 13px;
  white-space: nowrap; 
  text-overflow: ellipsis; 
  overflow: hidden;
}



.admin_order_slanted_text {
  display: block; 
  position: absolute; 
  left: 15px; 
  top: -10px; 
  font-family: 'BenchNine', sans-serif;
  font-size: 12px; 
  font-weight: normal; 
  line-height: 12px; 
  text-align: left; 
  color: #aaa; 
  transform-origin: bottom left; 
  transform: rotate(-55deg);
}


.admin_order_description {
  position: relative;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 11px; 
  line-height: 12.5px; 
  font-weight: normal; 
  color: #666; 
  padding: 5px 3px 5px 3px; 
  margin: 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.admin_order_description:hover {
  cursor: pointer;
  color: #000;
}


.admin_order_greyed_check {
  display: flex; 
  position: relative;
  justify-content: center;
  align-items: center; 
  align-content: center; 
  min-height: 35px; 
  font-weight: bold; 
  font-size: 32px; 
  color: #efefef;
  cursor: pointer;
}


.admin_order_green_check {
  display: flex; 
  position: relative; 
  justify-content: center;
  align-items: center; 
  align-content: center;
  min-height: 35px; 
  font-weight: bold; 
  font-size: 32px; 
  color: #0b0;
  cursor: pointer;
}



.client_order_greyed_check {
  display: flex; 
  position: relative;
  justify-content: center;
  align-items: center; 
  align-content: center; 
  min-height: 35px; 
  font-weight: bold; 
  font-size: 32px; 
  color: #efefef;
}


.client_order_green_check {
  display: flex; 
  position: relative; 
  justify-content: center;
  align-items: center; 
  align-content: center;
  min-height: 35px; 
  font-weight: bold; 
  font-size: 32px; 
  color: #0b0;
}


#map_container {
  display: inline-block;
  width: 700px;
  height: 400px;
  border: 1px solid #ccc;
}


@media screen and (min-width: 401px) {
  #map_container { 
    height: 400px;
  }
}
@media screen and (max-width: 400px) {
  #map_container { 
    height: 250px;
  }
}



.terms_container {
  display: inline-block;
  position: relative;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  text-align: left;
  text-align: justify;
  column-count: 2; 
  column-gap: 20px;
  column-rule: 1px solid #efefef;
  box-sizing: border-box;
  padding: 3px;
}

@media screen and (min-width: 651px) {
  .terms_container { 
  column-count: 2;
  }
}
@media screen and (max-width: 650px) {
  .terms_container { 
  column-count: 1;
  }
}



.bulktext {
  display: block; 
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 19px; 
  padding: 10px; 
  background: #efefef; 
  color: #d6372c; 
  border: 1px solid #222; 
  font-weight: bold; 
  text-align: center; 
  margin-top: 8px; 
  margin-bottom: 8px; 
  border-radius: 6px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (min-width: 651px) {
  .bulktext { 
    font-size: 17px;
    line-height: 19px; 
  }
}
@media screen and (max-width: 650px) {
  .bulktext { 
    font-size: 14px;
    line-height: 15px; 
  }
}


.bulk_key {
  display: block; 
  position: absolute; 
  width: 100%; 
  top: calc(100% + 8px);
  padding: 0px; 
  /* margin-top: 3px;  */
  text-align: center; 
  font-size: 10px; 
  line-height: 10px; 
  font-weight: normal;
  font-family: 'Poppins', sans-serif;
  color: #d6372c; 
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.tvboard_title {
  position: relative;
  font-family: 'Poppins', sans-serif;
  text-align: center; 
  font-weight: bold; 
  font-size: 28px; 
  line-height: 36px; 
  border-left: 2px solid #fff; 
  border-right: 2px solid #fff; 
  box-sizing: border-box; 
  padding: 5px;
  color: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.tvboard_inner {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0px;
  text-align: left;
}



.tvboard_job_title {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: #222;
  padding: 0px;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 14px;
  white-space: nowrap; 
  text-overflow: ellipsis; 
  overflow: hidden;
}



.tvboard_client_name {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: #666;
  padding: 0px;
  text-align:left;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 13px;
  white-space: nowrap; 
  text-overflow: ellipsis; 
  overflow: hidden;
}




.about_flex_box {
  display: inline-block; 
  position: relative; 
  text-align: left; 
  width: calc(50% - 20px); 
  padding: 0px; 
  box-sizing: border-box; 
  margin: 10px;
  color: #222;
}

.about_flex_box a:link,
.about_flex_box a:hover,
.about_flex_box a:visited,
.about_flex_box a:active
{
  color: #222;
  text-decoration: none;
}

@media screen and (min-width: 801px) {
  .about_flex_box { 
    width: calc(50% - 20px); 
  }
}
@media screen and (max-width: 800px) {
  .about_flex_box { 
    width: 100%;
  }
}




.templates_flex_box {
  display: inline-block; 
  position: relative; 
  text-align: left; 
  min-width: 280px; 
  padding: 0px; 
  box-sizing: border-box; 
  margin: 10px;
  color: #222;
}

.templates_flex_box a:link,
.templates_flex_box a:hover,
.templates_flex_box a:visited,
.templates_flex_box a:active
{
  color: #222;
  text-decoration: none;
}





.invoice_detail_preview {
  display: inline-block;
  position: relative;
  width: 180px;
  flex-grow: 0;
  padding: 0px;
  margin: 0px;
  margin-right: 5px;
  margin-bottom: 10px;
  text-align: left;
}

.invoice_detail_container {
  display: inline-block;
  position: relative;
  width: calc(100% - 190px);
  flex-grow: 0;
  padding: 0px;
  margin: 0px;
  margin-left: 5px;
  text-align: left;
  font-size: 15px;
  line-height: 17px;
}

@media screen and (min-width: 501px) {
  .invoice_detail_preview { 
    width: 180px;
    margin-right: 5px;
    text-align: left;
    flex-grow: 0;
  }
  .invoice_detail_container {
    width: calc(100% - 190px);
    flex-grow: 0;
    margin: 0px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 500px) {
  .invoice_detail_preview { 
    width: 100%;
    margin-right: 0px;
    text-align: center;
    flex-grow: 1;
  }
  .invoice_detail_container {
    width: 100%;
    flex-grow: 1;
    margin: 0px;
    margin-left: 0px;
  }
}




