/*-------------------------------------------------------------------------------------------------------------------
   IMPORTS.
-------------------------------------------------------------------------------------------------------------------*/

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

/*-------------------------------------------------------------------------------------------------------------------
   OVERALL.
-------------------------------------------------------------------------------------------------------------------*/

   * {
      border: 0;
      box-sizing: border-box;
      margin: 0;
      outline: none;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
   }

   a {
      color: inherit;
      text-decoration: none;
   }

   img {
      display: block;
      pointer-events: none;
   }

   p { margin: 0; }
   textarea { resize: none; }
   ul li { list-style: none; }

   /* ::placeholder { color: #999; } */

   ::-webkit-scrollbar {
      height: 0px;
      width: 0px;
   }

   ::-webkit-scrollbar-track {
      background: #EEEEEE;
      border-radius: 0;
      border: none;
   }

   ::-webkit-scrollbar-thumb {
      background: #0000DB;
      border-radius: 0;
      border: none;
   }

/*-------------------------------------------------------------------------------------------------------------------
   HTML.
-------------------------------------------------------------------------------------------------------------------*/

   body {
      background: #151A24;
      color: #FFF;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      width: 100%;
   }
   
   h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1;
      margin: 0;
   }

   input, select { background: #F9F9F9; }

/*-------------------------------------------------------------------------------------------------------------------
   ID'S.
-------------------------------------------------------------------------------------------------------------------*/

   #cnt-preloader {
      align-items: center;
      background: #151A24;
      display: inline-flex;
      height: 100vh;
      justify-content: center;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10000;
   }

   #cnt-services > div {
      width: calc(100% - 20px);
   }

   #modal {
      background: rgba(0, 0, 0, .5);
      left: 0;
      top: 0;
      z-index: 9999;
   }

   #modal > div {
      border-radius: 20px 20px 0 0;
      max-height: 80vh;
      overflow-y: scroll;
   }

   #nav {
      border-radius: 30px;
      height: 60px;
      width: fit-content;
   }

   #preloader {
      align-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
   }

   #ticket {
      border-radius: 0 0 10px 10px;
      border-top: 2px solid #CCC;
      margin-top: -26px;
      width: 80%;
   }
   
   #topbar { border-bottom: 2px solid #252B32; }
   #topbar img { width: 35px; }

/*-------------------------------------------------------------------------------------------------------------------
   GENERAL CLASSES.
-------------------------------------------------------------------------------------------------------------------*/

   .btn-1, .btn-3, .btn-4 {
      border-radius: 10px;
      color: #222;
      font-size: 18px;
      font-weight: 700;
      height: 50px;
      padding: 20px;
   }

   .btn-2 {
      height: 50px;
      width: 50px;
   }

   .btn-3 {
      border-radius: 50%;
      height: 40px;
      margin-left: -20px;
      width: 40px;
   }

   .btn-4 {
      font-size: 16px;
      height: 35px;
      padding: 10px;
   }

   .btn-5 {
      border-radius: 10px;
      height: 100px !important;
      min-height: 100px !important;
      min-width: 100px !important;
      width: 100px !important;
   }

   .btn-5.active {
      background: #FFFF3C !important;
      color: #444 !important;
   }

   .btn-5 > span:nth-child(2){ font-size: 0.8rem; }

   .cnt-phtos {
      overflow-x: auto;
      white-space: nowrap;
   }

   .cnt-phtos > a > span {
      height: 80px;
      max-height: 80px;
      max-width: 100px;
      min-height: 80px;
      min-width: 100px;
      width: 100px;
   }

   .cnt-phtos > a > span > img {
      border-radius: 10px;
      height: 100%;
      object-fit: cover;
      width: 100%;
   }
   
   .cnt-reports {
      border-radius: 10px;
      max-height: 215px !important;
      min-width: 350px !important;
      overflow: auto;
      width: 350px !important;
   }

   .detail-img {
      height: 100px;
      max-width: 100px;
      width: 100px;
   }

   .detail-img > img {
      border-radius: 100%;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }

   .done {
      text-decoration:line-through;
      color: #999;
   }

   .field-1 {
      background: #252A32; 
      border-radius: 10px;
   }

   .field-1 > input, .field-1 > input::placeholder {
      color: #FFF !important;
      background: none;
   }

   .field-2 { border-bottom: 1px solid #EEE; }

   .field-2 input, .field-2 input::placeholder, .field-2 select,
   .field-3 input, .field-3 input::placeholder, .field-3 select { 
      background: #FFF;
      color: #222 !important;
   }

   .field-3 { border: none; }

   .file-box-btn {
      align-items: center;
      background-color: #FFFF3C;
      border: 2px solid;
      border-color: #FFFF3C;
      border-radius: 10px;
      color: #222;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      font-weight: 700;
      justify-content: center;
      line-height: 26px;
      min-height: 40px;
      min-width: 40px;
      padding: 5px;
      text-align: center;
      transition: all 0.3s ease;
      width: 40px;
   }

   .file-box-close {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      cursor: pointer;
      height: 20px;
      line-height: 20px;
      position: absolute;
      right: 10px;
      text-align: center;
      top: 10px;
      width: 20px;
      z-index: 1;
   }

   .file-box-close:after {
      color: white;
      content: "✖";
      font-size: 14px;
   }

   .file-box-img {
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      border-radius: 10px;
      position: relative;
      padding-bottom: 100%;
   }

   .file-box-img-box {
      margin-right: 5px;
      height: 40px;
      width: 40px;
   }

   .file-box-input {
      height: 0.1px;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      width: 0.1px;
      z-index: -1;
   }

   .frm-detail input, .frm-detail input::placeholder, .frm-detail select {
      background: transparent !important;
      color: #FFF !important;
   }

   .garage-img {
      height: 50px;
      max-width: 70px;
      width: 70px;
   }

   .garage-img > img {
      border-radius: 10px;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }

   .layout { border-radius: 25px 25px 0 0; }

   .lnk-1 {
      color: #FFFF3C;
      font-weight: 700;
   }

   .notification-quote {
      left: 0;
      top: 0;
   }

   .overflow { overflow-y: auto; }

   .rpt-quote {
      height: 30px;
   }

   .service-approved {
      background: #4242E8;
      color: #FFF !important;
   }

   .service-pending {
      background: #f3f39a;
   }

   .service-pending input {
      color: #444 !important;
   }

   .slot {
      background: #30353F;
      border-radius: 5px;
      display: flex;
      height: 10px;
   }

   .table, .tbl-1 {
      border-collapse: collapse;
      border-spacing: 0;
   }

   .table td, .tbl-1 td {
      vertical-align: middle;
   }
   
   .table tr {
      height: 30px;
   }

   .table tr td:first-child {
      padding-left: 10px;
      padding-right: 0;
   }

   .table tr td:last-child {
      padding-left: 0;
      padding-right: 10px;
   }

   .table select {
      background: none;
   }

   .table .value {
      background: none;
      width: 75px;
   }

   .tbl-1 tr {
      border-bottom: 1px solid #30353F;
      border-top: 1px solid #30353F;
   }

   .tbl-1 tr:first-child {
      border-top: none;
   }

   .tbl-1 tr:last-child {
      border-bottom: none;
   }

   .title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
   }

/*-------------------------------------------------------------------------------------------------------------------
   COLOR CLASSES.
-------------------------------------------------------------------------------------------------------------------*/

   .black-dark-b { background: #222 !important; }
   .black-dark-c { color: #222 !important; }
   .black-light-b { background: #444 !important; }
   .black-light-c { color: #444 !important; }
   .gray-dark-b { background: #999 !important; }
   .gray-dark-c { color: #999 !important; }
   .gray-light-b { background: #CCC !important; }
   .gray-light-c { color: #CCC !important; }
   .white-dark-b { background: #F9F9F9 !important; }
   .white-dark-c { color: #F9F9F9 !important; }
   .white-light-b { background: #FFF !important; }
   .white-light-c { color: #FFF !important; }
   
   .blue-b { background: #0000DB !important; }
   .blue-c { color: #0000DB !important; }
   .yellow-b { background: #FFFF3C !important; }
   .yellow-c { color: #FFFF3C !important; }
   
   .dark-b { background: #151A24 !important; }
   .dark-c { color: #151A24 !important; }
   .light-b { background: #30353F !important; }
   .light-c { color: #30353F !important; }
   .medium-b { background: #22272F !important; }
   .medium-c { color: #22272F !important; }

/*-------------------------------------------------------------------------------------------------------------------
   LIBS.
-------------------------------------------------------------------------------------------------------------------*/

   /* Selectize. */   
   .selectize-control, .selectize-control > * {
      background: none !important;
   }

   .selectize-input {
      padding: 10px 0;
   }

   .selectize-dropdown {
      border: 1px solid #30353F;
   }
   
   .selectize-dropdown .option {
      border-bottom: 1px solid #30353F;
      padding: 10px;
   }

/*-------------------------------------------------------------------------------------------------------------------
   RWD.
-------------------------------------------------------------------------------------------------------------------*/

   @media screen and (max-width: 768px) {
   }