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;
}

.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;
}

.form-control-dropdown {
    width: max-content;
    min-width: 100px;
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-width {
    width: 650px;
}

.custom-table {
    width: 100%;
}

    /*    .custom-table div {
        height: 105px;
        overflow: hidden;
    }*/

    .custom-table tr:nth-child(even):not(.change-row) {
        background-color: #f2f2f2;
    }

    .custom-table tr.change-row {
        display: none;
    }

    .custom-table td, th {
        padding: 12px;
        vertical-align: top;
    }

    .custom-table textarea {
        border: none;
    }

    .custom-table tr:nth-child(even) textarea {
        background-color: #f2f2f2;
    }