/*Additional CSS*/
button.badge {
  border-color: transparent;
}

button.borderless-btn {
  background-color: transparent;
  border-color: transparent;
}

.card {
  cursor: pointer;
}

.card.card-coverage {
  align-items: center;
  border-radius: 0.5rem;
  border: solid 2px #eee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
}

.card.card-coverage .svg-secondary {
  height: 30px;
  margin-right: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: 30px;
}

.card.card-coverage .svg-danger {
  margin-top: -3px;
  width: 20px;
}

.card.card-coverage.active {
  border: 2px solid #f96e10;
}

.card.select-card {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.card.select-card img {
  height: 30px;
  margin-bottom: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: 50px;
}

.card.select-card h6, .card.select-card .h6 {
  font-size: 0.85rem;
  line-height: 0.85rem;
  margin-bottom: 0;
}

.card.select-card.active {
  border: 2px solid #f96e10;
}

.loading-animation {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  z-index: 9999;
}

.loading-bg {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 999;
    overflow-y: hidden;
    position: fixed;
}

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

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

.text-red {
  color: #dc3545 !important;
}

.text-orange {
  color: #ffcd85 !important;
}

.text-yellow {
  color: #e6e600 !important;
}

.text-violet {
  color: #e3b7eb !important;
}

.text-l-green {
  color: #d2f5b0 !important;
}

.text-grey {
  color: #c9ccc4 !important;
}

.text-d-grey {
 color: #343a40 !important;
}

.text-blue {
 color: #c2dfff !important;
}

.text-brown {
  color: #ac7339 !important;
}

.text-pink {
  color: #ffb3cc !important;
}

.text-green {
  color: #009900 !important;
}

.text-black {
  color: #000000 !important;
}

.page-wrapper {
  min-height: 100vh;
}

@media (min-width: 768px) {
  .page-wrapper {
    margin: 0 auto;
  }
}
.page-wrapper .title {
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  #app .container,
  #app .container-fluid {
    max-width: 768px !important;
  }
}
