.tdn {
    text-decoration: none;
}
.tdn:hover {
    text-decoration: none;
}
.bgr {
    background-color: orange;
}
.border-top-none {
    border-top: none;
}
.tr__select-item {
    cursor: pointer;
}
.tr__select-item:hover {
    background-color: #e9ecef;
}

.center-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

  /* .control-panel */

.control-panel {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}
.control-panel__search {
  flex-grow: 1;
}

  /* .new-key-form */

.new-key-form {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.new-key-form .form-group {
    margin-bottom: 0rem;
}
@media screen and (max-width: 800px) {
  .new-key-form {
    flex-direction: column;
    align-items: flex-start;
  }
  .new-key-form div,
  .new-key-form button {
    margin-top: 0.5rem;
  }
  .new-key-form .form-group button {
    margin-top: 0rem;
  }
}

  /* main structure*/

.main {
   display: flex;
   flex-direction: column;
   height: 100%;
}
header {
    /*height: 71px;*/
}

#content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 71px;
}

footer {
  min-height: 100px;
}

/* client info table */

.client-info-row :nth-child(1) {
    width: 12%;
}
.client-info-row :nth-child(2) {
    width: 22%;
}
.client-info-row :nth-child(3) {
    width: 22%;
}
.client-info-row :nth-child(4) {
    width: 22%;
}
.client-info-row :nth-child(5) {
    width: 22%;
}

.key-item{
    font-family: monospace;
    font-size: 12pt;
    white-space: nowrap;
}

a.asc:after, a.desc:after {
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translate(0, -50%);
    display: inline-block;
    padding-left: 5px;
    width: 24px;
    height: 24px;
    align-content: center;
}

a.asc:after {
    content: url(svg/arrow-down-a-z.svg);
}

a.desc:after {
    content: url(svg/arrow-down-z-a.svg);
}

.fixed {
    position:fixed;
    top: 0;
}

.table th, .table td{
    vertical-align: middle;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
}

.form-check-label {
    padding-left: 0.5rem;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.token-field {
    padding-left: 10px;
    font-family: monospace;
    margin-bottom: 0;
}

.copy-button {
    display: inline-block;
    padding-left: 5px;
    width: 24px;
    height: 24px;
    align-content: center;
    content: url(svg/copy-normal.svg);
}

.copy-button:hover {
    content: url(svg/copy-solid.svg);
}

.tick {
    content: url(svg/check.svg);
}

.tick:hover {
    content: url(svg/check.svg);
}

.table-top-align th, .table-top-align td {
    vertical-align: unset;
}

.error-message {
    color: red;
    align-content: center;
    font-size: 10pt;
    padding-left: 15px;
}

.hidden {
    visibility: hidden;
}