/*-------------------------------------------------------------------------------------------------------------------
   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: #333; }
   
   ::-webkit-scrollbar {
      height: 5px;
      width: 5px;
   }

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

   ::-webkit-scrollbar-thumb {
      background: #002A75;
      border-radius: 0;
      border: none;
   }

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

   body {
      background: #FFF;
      color: #333;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 400;
      overflow-y: hidden;
      /* overscroll-behavior-y: contain; */
      width: 100%;
   }
   
   h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1;
      margin: 0;
   }

   input, select { background: transparent; }

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

   #cnt-monitor {
      background: #2D2A2C;
      color: #FFF;
   }

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

   #cnt-rotate, #cnt-rotate .cnt-number {
      transform: rotateX(180deg);
   }

   #dissmisaling {
      background: rgb(255, 255, 255);
      left: 0;
      top: 0;
      z-index: 99999;
   }

   #left, #right, .place {
      min-width: 130px;
      width: 130px;
   }

   #mask {
      background: linear-gradient(rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 70%);
      bottom: -50px;
      height: 30px;
      left: 0;
      position: absolute;
      width: 100%;
      transform: rotateX(180deg);
      z-index: 999;
   }

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

   #modal > div {
      border-radius: 20px 20px 0 0;
   }

   #modal .photo > img, .monitor-view .photo > img {
      border: 3px solid #F1B20D;
      border-radius: 50%;
      height: 70px;
      object-fit: cover;
      width: 70px;
   }

   #monitor #left, #monitor #right, #monitor .place {
      min-width: auto;
      width: auto;
   }

   #monitor .car {
      background: url('../img/img_car-alt.png') center center no-repeat;
      height: 114px !important;
      min-width: 225px !important;
      width: 225px !important;
      z-index: 99;
   }

   #monitor .cnt-number {
      border-radius: 50%;
      height: 45px;
      width: 45px;
   }

   #monitor > .cnt-zebra {
      border-bottom: 0px;
      border-left: 5px solid #FFF;
      border-right: 5px solid #FFF;
      border-top: 0px;
      padding-bottom: 0px;
      padding-left: 5px;
      padding-right: 5px;
      padding-top: 0px;
   }

   #monitor .line {
      align-items: center;
      display: flex;
      justify-content: flex-start;
   }

   #monitor .line > span:nth-child(1) {
      margin-top: 0px;
      margin-right: 20px;
   }

   #monitor .line > span {
      background: #F1B20D;
      display: flex;
      height: 10px;
      margin-bottom:0px;
      margin-left: 20px;
      width: 55px;
   }

   #monitor .marks {
      background: #F1B20D;
      height: 110px;
      min-height: 110px;
      min-width: 5px !important;
      width: 8px !important;
   }

   #monitor.overflow {
      overflow-x: scroll;
      overflow-y: hidden !important;
      padding-top: 7px;
   }

   #monitor .zebra {
      height: 25px !important;
      width: 55px !important;
   }

   #nav, .field {
      border-radius: 30px;
      height: 60px;
   }

   #nav { width: fit-content; }

   #otp > input {
      background-color: #F9F9F9;
      border-color: #F9F9F9;
      border-radius: 10px;
      color: #333;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      height: 40px;
      text-align: center;
      transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
      width: 40px;
      -webkit-transition: none;
   }

   #otp > input:focus {
      background-color: #DFEEFF;
      border-color: #DFEEFF;
      color: #333;
      outline: 0;
      transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
   }

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

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

   .btn-1 {
      background: #002A75;
      color: #FFF;
      border-radius: 30px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      height: 60px;
   }

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

   .btn-3 {
      background: #002A75;
      color: #FFF;
      height: 40px;
      width: 40px;
   }

   .car {
      background: url('../img/img_car.png') center center no-repeat;
      height: 178px;
      width: 90px;
      z-index: 99;
   }

   .cnt-number {
      border-radius: 15px;
      height: 30px;
   }

   .cnt-zebra {
      border-bottom: 5px solid #F9F9F9;
      border-top: 5px solid #F9F9F9;
      padding-bottom: 5px;
      padding-top: 5px;
   }

   .line > span:nth-child(1) { margin-top: 20px; }

   .line > span {
      background: #F1B20D;
      display: flex;
      height: 55px;
      margin-bottom: 20px;
      width: 10px;
   }

   .marks > div:nth-child(1), .marks > div:nth-child(3) {
      background: #F1B20D;
      height: 20px;
      min-width: 8px !important;
      width: 8px !important;
   }

   .marks > div:nth-child(2) {
      background: #F1B20D;
      height: 8px;
   }

   .monitor-view .photo > img {
      height: 100px !important;
      width: 100px !important;
   }

   .more-photo {
      align-items: center;
      background: #F1B20D;
      border-radius: 50%;
      display: flex;
      color: #FFF;
      flex-direction: center;
      font-size: 1.25rem;
      height: 30px;
      justify-content: center;
      margin-left: -15px;
      width: 30px;
      z-index: 3;
   }

   .overflow {
      overflow-y: scroll;
      padding-right: 7px;
   }

   .photo img:nth-child(2), .photo img:nth-child(3), .photo img:nth-child(4), 
   .photo img:nth-child(5), .photo img:nth-child(6), .photo img:nth-child(7) {
      margin-left: -50px;
      z-index: 2;
   }
   
   .title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
   }

   .zebra {
      background: #F9F9F9;
      height: 55px;
      width: 25px;
   }

/*-------------------------------------------------------------------------------------------------------------------
   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: #002A75 !important; }
   .blue-c { color: #002A75 !important; }
   .yellow-b { background: #F1B20D !important; }
   .yellow-c { color: #F1B20D !important; }

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

   /* Solo, solín, solito. */   

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

   @media screen and (min-width: 768px) {
      #cnt-login {
         margin: 0 auto !important;
         max-width: 40% !important;
         min-width: 40% !important;
         width: 40% !important;
      }
   }