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;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table-header-title{
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items:center;
}

.table-header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

::backdrop {
    background-image: linear-gradient(125deg, rgba(123,185,62,0.75) 60%, rgba(2,0,36,0.75) 95%);
}

.nested-table{
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 5% !important;
}
.nested-table .accordion-body {
    transition: 0.2s;
/*    transform: translateY(0);*/
    padding: 0;
    /*    height: 100%;*/
}

.hide {
    display: none;
    opacity: 0;
    /*    visibility: hidden;*/
    height: 0px;
/*    transform: translateY(-100%);*/
/*    transition: 0;*/
}
