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;
}

.bi {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.btn-7s {
    background: linear-gradient(to right, #4292aa, #2e3d68) !important;
    border-radius: 0 40px 40px 40px !important;
}

.login-layout {
    background: #0000;
    z-index: 50;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    text-align: center;
    align-items: center;
}

.login-panel {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    max-width: 450px;
    padding: 24px 16px 8px;
}

.login-logo {
    align-items: center;
    display: flex;
    gap: 24px;
    margin: 40px auto;
    padding: 0;
    text-align: left;
}

.login-logo img {
    display: block;
    padding: 8px 0;
}

.login-title {
    color: #212225;
    display: block;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 50px;
    position: relative;
}

.login-form {
    text-align:left;
}

.login-signup-terms {
    font-size: small;
    color: #909192;
    padding: 0 8px;
}

.btn-primary {
    background-color: #4292aa;
    border-color: #4292aa;
}

.btn-primary:hover {
    background-color: #2e3d68;
    border-color: #2e3d68;
}

.cursor-pointer {
    cursor: pointer;
}

.table-title {
    position: relative;
    padding: 0.75rem;
    font-weight:600;
}

.table-item {
    border: 1px solid #dee2e6;
    border-bottom:none;
    position: relative;
    padding: 0.75rem;
}

.table-item:last-child {
    border-bottom: 1px solid #dee2e6;
}

.table-item:nth-of-type(odd) {
    /*background-color: rgba(0, 0, 0, .05);*/
}

.table-item.selected {
    background-color: cadetblue !important;
    color: #fff;
}

/*
.table-item div[class^="col-"] {
    pointer-events: none;
}
*/

.noevent {
    pointer-events: none;
    user-select: none;
}

.table-item-actions {
    display: flex;
    column-gap: 5px;
}

.input-error {
    background-color: #fcf2f2;
}

.input-error:focus {
    background-color: #fcf2f2;
}