.modal#bonus-modal .modal-dialog {
  max-width: 300px;
  margin: auto;
}
.modal#bonus-modal .modal-dialog .modal-content {
  background: #e7ebf0;
  border-radius: 20px;
}
.modal#bonus-modal .modal-dialog .modal-content .modal-body {
  padding: 36px 31px 50px;
  position: relative;
}
.modal#bonus-modal .modal-dialog .modal-content .modal-body a.close-modal {
  position: absolute;
  right: 17px;
  top: 10px;
}
.modal#bonus-modal .modal-dialog .modal-content .modal-body a.close-modal img {
  max-width: 20px;
}

.modal#bonus-modal .modal-dialog .modal-content .modal-body .bonus-wrapper {
  text-align: center;
}

.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  > h3 {
  margin-bottom: 6px;
  text-align: center;
}

.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  > img {
  margin-bottom: 6px;
  text-align: center;
}

.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  ul.steps {
  margin-bottom: 40px;
  text-align: center;
}
.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  ul.steps
  li:not(:last-of-type) {
  margin-bottom: 20px;
}
.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  ul.steps
  li
  h3 {
  margin-bottom: 0;
}
.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  ul.steps
  li
  p {
  margin-bottom: 0;
}
.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  .btn-wrapper {
  text-align: center;
  max-width: 272px;
}
.modal#bonus-modal
  .modal-dialog
  .modal-content
  .modal-body
  .bonus-wrapper
  .btn-wrapper
  .btn-modal:not(:last-of-type) {
  margin-bottom: 26px;
}

.btn-disabled {
    background-color: gray !important;
    color: darkgray !important;
    cursor: not-allowed !important;
  }

  .btn-modal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 65px;
    padding: 6px 30px 6px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    background: #0065FF;
    border: 2px solid #0065FF;
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
  .btn-modal .transparent{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    height: 72px;
    padding: 6px 30px 6px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    background: #0065FF;
    border: 2px solid #0065FF;
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
  .btn-modal:hover {
    transition: all 0.3s ease-in-out;
    background: transparent;
    color: #0065FF;
  }
  .btn-modal.small {
    padding: 10px 15px 11px;
    height: 38px;
    font-size: 13px;
    line-height: 24px;
  }
  .btn-modal.transparent {
    background: transparent;
    border-color: #0065FF;
    color: #0065FF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .btn-modal.colored-border {
    color: #0065FF;
    text-transform: capitalize;
    border-radius: 60px;
    background: 0 0;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgb(255, 1, 2), rgba(243, 182, 0, 0.5)) border-box;
    border: 2px solid transparent;
  }
  .btn-modal.text {
    min-width: 90px;
    height: 32px;
    padding: 7px 5px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #0065FF;
  }
  .btn-modal.round {
    border-radius: 50px;
  }
  .btn-modal.shadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  }
  .btn-modal.icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-modal.gradient {
    background: rgb(219, 10, 10);
    background: linear-gradient(0deg, rgb(219, 10, 10) 0%, rgb(253, 219, 45) 100%);
    border: none;
    color: white;
  }
  .btn-modal.icon-circle {
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
  }
  .btn-modal.icon-circle i {
    font-size: 22px;
  }
  .btn-modal.pink {
    background: #E7EBF0;
    color: #ffffff;
    border-color: #E7EBF0;
  }
  .btn-modal.pink:hover {
    background: transparent;
    color: #E7EBF0;
    border-color: #E7EBF0;
  }
  span.blue {
    color: #0065FF;
  }  

.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Adjust as needed */
  margin-bottom: 20px;
}

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

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


  .disabled {
    background-color: gray;
    color: darkgray !important;
    cursor: not-allowed !important;
  }

  .icon-wrapper-loc {
    position: relative;
    display: inline-block;
}


.overlay-text {
  position: absolute; /* Position the text absolutely within the parent */
  top: 85%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center the text precisely */
  text-align: center; /* Center text horizontally */
  font-size: 7px;
  color: #0065FF;
  padding: 5px;
  border-radius: 5px;
  font-weight: 500;
  width: 110%;
}

.overlay-text2 {
  position: absolute; /* Position the text absolutely within the parent */
  top: 40%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center the text precisely */
  text-align: center; /* Center text horizontally */
  font-size: 12px;
  color: #E7EBF0;
  padding: 5px;
  border-radius: 5px;
  font-weight: 500;
}

.search-tag .active {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.27) !important;
  transform: translateY(2px);
}

.receipt-body .detail #payment-id {
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.loc-you-here {
  margin-bottom: 0;
  color: #0065FF;
  font-size: 10px;
  line-height: 18px;
}

.text-right {
  text-align: right;
}

.loc-checked {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #3EDAD8, #0065FF) border-box !important;
  border: 2px solid transparent !important;
}

.counter .disabled{
  background-color: transparent !important;
  color: darkgray !important;
  cursor: not-allowed !important;
}

.header-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
}
.back-btn {
  margin-right: 10px;
}
.download-btn {
  font-size: 1.2em;
}

.idle-charging-box {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: inset 0 4px 10px -4px gray;
  width: 175px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 20px;
  display: none;
}

.idle-charging-box p {
  margin: 0;
  color: #856404;
  font-size: 11px;
  font-family: "Montserrat";
}

.idle-charging-box span {
  margin: 0;
  color: #856404;
  font-size: 11px;
  font-family: "Montserrat";
}

.idle-charging-box strong {
  font-size: 32px;
  color: #FF9800;
  display: block;
  margin: 5px 5px;
  font-family: "Montserrat";
}

.btn-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 20px;
  padding: 15px 20px;
  color: #333;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.btn-text::before {
  content: "You are in idle charge!";
  margin-bottom: 5px;
  display: block;
  font-family: "Montserrat";
  font-size: 14px;
}

.btn-text:hover {
  background-color: white;
  color: #333;
}

.sec-charging-status .text-box {
  display: flex;
  align-items: center;
  max-width: 336px;
  margin: 30px auto 0;
}
.sec-charging-status .text-box .btn-text {
  min-width: auto;
  width: 100%;
  font-family: "Montserrat";
  font-size: 14px;
  padding: 10px;
  color: #546E7A;
}

h3.red {
  color: red;
}
