
  table.paleBlueRows {
  font-family: inherit;
  border: 1px solid #FFFFFF;
  /*height: 200px;*/
  text-align: center;
  margin-right: 30px;
  border-collapse: collapse;
}

tr>td:first-child {
    text-align: left;
}

table.paleBlueRows td, table.paleBlueRows th {
  border: 1px solid #FFFFFF;
}
table .header > tr >th{
  padding: 0px 12px 15px 12px;
  font-size: 16px !important;
}
table.paleBlueRows tbody td {
  font-size: 12px;
}
table.paleBlueRows tr:nth-child(even) {
  background: #ffffff;
}
table.paleBlueRows thead {
    background: #ffffff;
    border-bottom: 2px solid #111;
}
table.paleBlueRows thead th {
  font-size: 14px;
  font-weight: bold;
  color: rgb(77, 77, 77);
  text-align: center;
  border-left: 2px solid #FFFFFF;
}
table.paleBlueRows thead th:first-child {
  border-left: none;
}

table.paleBlueRows tfoot {
  font-size: 13px;
  color: #333333;
  background: #d6d5df1f;
}
table.paleBlueRows tfoot td {
  font-size: 14px;
  padding: 10px;
}
.button {
    background-color: #111;
    border: none;
    color: white;
    padding: 15px 25px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

    /*.button:hover {
        background-color: #111;
    }*/

/* inicio  de area de checkbox*/
.container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #999999;
}

.container:hover input ~ .checkmark {
    background-color: #999999;
}

.container input:checked ~ .checkmark {
    background-color: #00938e;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.docsify-tabs > button {
    cursor: pointer!important;
}

.markdown-section{
    max-width: 1000px!important;
}

