/* Mobile */
@media screen and (max-width: 480px) {
    body {
        font-size: 12px !important;
    }

    .navbarSpacer {
        padding-top: 5rem;
    }

    .tableFont {
        font-size: 6px;
    }

    .mapContainer {
        padding-right: 10%;
        padding-left: 10%;
    }

    .appDiv {
      width: 240px; 
    }
}

/* Desktop */
@media screen and (min-width: 500px) {

    .navbarSpacer {
        padding-top: 5rem;
    }

    .container {
        padding-right: 30%;
        padding-left: 30%;
    }

    .mapContainer {
        padding-right: 10%;
        padding-left: 10%;
    }

    .tableMargin {    
        margin-left: 5%;
        margin-right: 5%;
    }

    .tableFont {
        font-size: 12px;
    }

    .dialogContainer {
        padding-right: 10%;
        padding-left: 10%;
    }

    .appDiv {
      width: 700px; 
    }

}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    list-style-position: inside;
}

.genericMargin {
    margin-top: 8px !important;
}

.genericPadding {
    padding-top: 20px;
}

.genericWidth {
  width: 90% !important;
}

.form_label {
    padding-top: 20px;
    padding-bottom: 10px;
}

.form_field {
    border: table_gray;
    color: gray;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 0px;
    cursor: pointer;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }

  .invPhoto {
    max-width: 200px;
    max-height: 200px;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}

.tableContainer {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 300px;
}

.isHidden {
    display: none !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    background-color: #f5f5f5;
}

.slidecontainer {
  width: auto; /* Width of the outside container */
}

/* The slider itself */
.sliderPrice {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.sliderPrice::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #04AA6D;
  cursor: pointer;
}

.sliderPrice::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

/* UI Experiment */

/* From Uiverse.io by andrew-demchenk0 */ 

.form {
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  padding: 20px;
  /* background: lightgrey; */
  background: #cbf3f0;
  /* background: #2ec4b6; */
  /* background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);  */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.title {
  color: var(--font-color);
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 25px;
}

.title span {
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 17px;
}

.input {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.input:focus {
  border: 2px solid var(--input-focus);
}

.login-with {
  display: flex;
  gap: 20px;
}

.button-log {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  color: var(--font-color);
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 24px;
  height: 24px;
  fill: var(--main-color);
}

.button-log:active, .button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}

.button-confirm {
  margin: auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
}

.button-confirm:hover {
  color: #fff;
  background-color: lightgrey;
  border-color: #fff;
}

.button-success {
  margin: auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: #5cb85c;
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.button-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.button-warning {
  margin: auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: #eb9316;
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.button-warning:hover {
  color: #fff;
  background-color: #c67612;
  border-color: #ad6011;
}

.button-danger {
  margin: auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: #c12e2a;
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.button-danger:hover {
  color: #fff;
  background-color: #a82824;
  border-color: #8a202b;
}

.switch {
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --bg-color-alt: #666;
  --main-color: #323232;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50px;
  height: 200px;
}

.toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-colorcolor);
  transition: 0.3s;
}

.slider:before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  left: -2px;
  bottom: 2px;
  background-color: var(--bg-color);
  box-shadow: 0 3px 0 var(--main-color);
  transition: 0.3s;
}

.toggle:checked + .slider {
  background-color: var(--input-focus);
}

.toggle:checked + .slider:before {
  transform: translateX(30px);
}

.checkmark {
  width: 30px;
  height: 30px;
  position: relative;
  top: 0;
  left: 0;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  box-shadow: 4px 4px var(--main-color);
  background-color: var(--input-out-of-focus);
  transition: all 0.3s;
}

/* Login  */

.login-container {
  margin-left: auto;
  margin-right: auto;
  width: 300px;
}

/* Dashboard */

.dashboardContainer {
    margin-right: 5%;
    margin-left: 5%;
    padding-top: 10px;
    padding-bottom: 10px; 
    /* border: #fcab64;
    border-width: 5px;
    border-style: solid; */
    --input-focus: #2d8cf0;
    --font-color: #323232;
    --font-color-sub: #666;
    --bg-color: #fff;
    --main-color: #323232;
    padding: 20px;
    /* background: lightgrey; */
    background: #cbf3f0;
    /* background: #2ec4b6; */
    /* background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(6,70,144,1) 100%);  */
    justify-content: center;
    gap: 20px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
}

/* about  */

.aboutContainer {
  margin-top: 2%;
  margin-right: 5%;
  margin-left: 5%;
  margin-bottom: auto;
  padding-top: 10px;
  padding-bottom: 10px; 
  /* border: #fcab64;
  border-width: 5px;
  border-style: solid; */
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  padding: 20px;
  /* background: lightgrey; */
  background: #cbf3f0;
  /* background: #2ec4b6; */
  /* background: rgb(238,174,202);
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(6,70,144,1) 100%);  */
  justify-content: center;
  gap: 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

/* Application  */

/* .appInput {
  width: 90%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
} */

.appInput {
  width: 90%;
  /* height: 40px; */
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.appInput::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.appInput:focus {
  border: 2px solid var(--input-focus);
}


/* Contacts */

.formbold-mb-5 {
  margin-bottom: 20px;
  margin-left: 5%;
  margin-right: 5%;
}
.formbold-pt-3 {
  padding-top: 12px;
}
.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  background: white;
}
.formbold-form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  margin-bottom: 12px;
}
.formbold-form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.formbold-form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #6a64f1;
  color: white;
  cursor: pointer;
}
.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}
.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.w-full {
  width: 100%;
}

.formbold-file-input input {
  opacity: 0;
  position: absolute;
  /* width: 100%;
  height: 100%; */
}

.formbold-file-input label {
  position: relative;
  border: 1px dashed #e0e0e0;
  border-radius: 6px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
}
.formbold-drop-file {
  display: block;
  font-weight: 600;
  color: #07074d;
  font-size: 20px;
  margin-bottom: 8px;
}

.formbold-or {
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}
.formbold-browse {
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  display: inline-block;
  padding: 8px 28px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.formbold-file-list {
  border-radius: 6px;
  background: #f5f7fb;
  padding: 16px 32px;
}

.formbold-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.formbold-file-item button {
  color: #07074d;
  border: none;
  background: transparent;
  cursor: pointer;
}

.formbold-file-name {
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  padding-right: 12px;
}
.formbold-progress-bar {
  margin-top: 20px;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 8px;
  background: #e2e5ef;
}

.formbold-progress {
  position: absolute;
  width: 75%;
  height: 100%;
  left: 0;
  top: 0;
  background: #6a64f1;
  border-radius: 8px;
}

@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}

/* Checkout */

#addItemDialog {
  width: 90% !important;
}

#checkoutBtnDiv {
  padding-top: 20px;
}

.checkoutBtn {
  height: 50px !important;
  width: 250px !important;
}

.addItemDiv {
  animation-name: addItemAnimation;
  animation-duration: 1s;
}

@keyframes addItemAnimation {
  0%   {background-color: red;}
  25%  {background-color: red;}
  50%  {background-color: red}
  100% {background-color: white;}
}

/* Transactions  */

.table-cell {
  padding-left: 5%; 
}

/* Two Way SMS */

.twsmsBox {
  width: 90% !important;
  text-align: center;
  
}

.messageDiv {
  display: inline-flex;
  border: black;
}

.messageRow {
    font-size: 32px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  } 

/* Keypad */

/* * {  
  margin: 0;  
  padding: 0;  
  }   */
  /* body {  
  font: 71%/1.5 Verdana, Sans-Serif;  
  background: #eee;  
  }  


  #keyboardContainer{  
  margin: 10px 100px 100px 100px;  
  height: 200px;  
  }   

  #keyboard {  
  margin: 0;  
  padding: 0;  
  list-style: none;  
  }  
      #keyboard li {  
      float: left;  
      margin: 0 5px 5px 0;  
      width: 60px;  
      height: 60px;  
      font-size: 24px;
      line-height: 60px;  
      text-align: center;  
      background: #fff;  
      border: 1px solid #f9f9f9;  
      border-radius: 5px;  
      }  
          .capslock, .tab, .left-shift, .clearl, .switch {  
          clear: left;  
          }  
              #keyboard .tab, #keyboard .delete {  
              width: 70px;  
              }  
              #keyboard .capslock {  
              width: 80px;  
              }  
              #keyboard .return {  
              width: 90px;  
              }  
              #keyboard .left-shift{  
              width: 70px;  
              }  
  
              #keyboard .switch {
              width: 90px;
              }
              #keyboard .rightright-shift {  
              width: 109px;  
              }  
          .lastitem {  
          margin-right: 0;  
          }  
          .uppercase {  
          text-transform: uppercase;  
          }  
          #keyboard .space {  
          float: left;
          width: 556px;  
          }  
          #keyboard .switch, #keyboard .space, #keyboard .return{
          font-size: 16px;
          }
          .on {  
          display: none;  
          }  
          #keyboard li:hover {  
          position: relative;  
          top: 1px;  
          left: 1px;  
          border-color: #e5e5e5;  
          cursor: pointer;  
          }
  
/* Discount Keypad  */

#keyboardDiscountContainer{  
  margin: 10px 100px 100px 100px;  
  height: 200px;  
}   
  
#keyboardDiscount {  
  margin: 0;  
  padding: 0;  
  list-style: none;  
}  
      #keyboardDiscount li {  
      float: left;  
      margin: 0 5px 5px 0;  
      width: 60px;  
      height: 60px;  
      font-size: 24px;
      line-height: 60px;  
      text-align: center;  
      background: #fff;  
      border: 1px solid #f9f9f9;  
      border-radius: 5px;  
      }  
          .capslock, .tab, .left-shift, .clearl, .switch {  
          clear: left;  
          }  
              #keyboardDiscount .tab, #keyboard .delete {  
              width: 70px;  
              }  
              #keyboardDiscount .capslock {  
              width: 80px;  
              }  
              #keyboardDiscount .return {  
              width: 90px;  
              }  
              #keyboardDiscount .left-shift{  
              width: 70px;  
              }  
  
              #keyboardDiscount .switch {
              width: 90px;
              }
              #keyboardDiscount .rightright-shift {  
              width: 109px;  
              }  
          .lastitem {  
          margin-right: 0;  
          }  
          .uppercase {  
          text-transform: uppercase;  
          }  
          #keyboardDiscount .space {  
          float: left;
          width: 556px;  
          }  
          #keyboardDiscount .switch, #keyboardDiscount .space, #keyboardDiscount .return{
          font-size: 16px;
          }
          .on {  
          display: none;  
          }  
          #keyboardDiscount li:hover {  
          position: relative;  
          top: 1px;  
          left: 1px;  
          border-color: #e5e5e5;  
          cursor: pointer;  
          }