html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: url('../images/home_bg.jpeg');
    background-repeat: no-repeat, repeat;
}


#loading-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
.error-message {
    color: red;
    font-size: 14px;
}
.ancColor {
    color: #ffffff;
}

.selectedDT {
    color: greenyellow;
}

.origDest {
    border: 1px solid #e1e1e1;
    cursor: pointer;
}

.selected {
    background-color: rgb(251 209 2 / 45%);
}

.dbColor {
    background-color: rgb(255, 204, 203) !important;
}