/* stylelint-disable-next-line selector-class-pattern */
.dots,
.dots-default {
  position: relative;
  background-color: #EAE5E1;
}
.dots:before,
.dots-default:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  height: 20px;
  width: 100%;
  background-image: radial-gradient(#eae5e1 48%, rgba(234, 229, 225, 0) 52%);
  background-position: calc(100% + 8px) calc(100% + 8px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.dots-tur {
  position: relative;
  background-color: #ffffff;
}
.dots-tur:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  height: 20px;
  width: 100%;
  background-image: radial-gradient(#ffffff 48%, rgba(255, 255, 255, 0) 52%);
  background-position: calc(100% + 8px) calc(100% + 8px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.dots-sport {
  position: relative;
  background-color: #FFFFFF;
}
.dots-sport:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  height: 20px;
  width: 100%;
  background-image: radial-gradient(#ffffff 48%, rgba(255, 255, 255, 0) 52%);
  background-position: calc(100% + 8px) calc(100% + 8px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  pointer-events: none;
}
/* Add more colors / combinations below */

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th,
.table td {
  text-align: left;
  font-weight: normal;
}
.table th {
  padding: 6px;
}
.table td {
  padding: 0 6px;
}
.table .bold {
  font-weight: bold;
}
.table .f-center {
  text-align: center;
}
.table .f-right {
  text-align: right;
}
.table .f-numeric {
  font-variant-numeric: tabular-nums;
}
.table-bordered tbody tr {
  border-bottom: 1px solid transparent;
}
.table-bordered td {
  padding-top: 3px;
  padding-bottom: 3px;
}
.table-col-bordered td {
  border-right: 1px solid transparent;
}
.table-col-bordered td:last-child {
  border-right: none;
}
.table-default {
  background: #ffffff;
  border: 1px solid;
  border-color: #E1DAD5 #E1DAD5 #A29D9A #E1DAD5;
}
.table-default thead tr {
  background-color: #F1EDEA;
  border-bottom: 1px solid #E1DAD5;
}
.table-default td {
  border-color: #A29D9A;
}
.table-default tfoot tr,
.table-default .table-footer {
  background-color: #F1EDEA;
}
.table-default tbody tr {
  border-color: #A29D9A;
}
.table-default tr:first-child td {
  padding-top: 6px;
}
.table-default tr:last-child td {
  padding-bottom: 6px;
}
.table-default .table-row-striped {
  background-color: #FFFFFF;
}
.table-no-shadow {
  border: 1px solid #E1DAD5;
}
.table-no-border {
  border: none;
}
.table-inverted {
  background: #363230;
  color: #ffffff;
}
.table-inverted thead tr {
  color: #A29D9A;
}
.table-inverted td {
  border-color: #4A4745;
}
.table-inverted tbody tr {
  border-color: #5e5e5e;
}
.table-inverted .table-row-striped {
  background-color: #2B2826;
}
.table-large th {
  font-weight: bold;
}
.table-large tbody tr:nth-child(odd) {
  background-color: #F1EDEA;
}
.table-large td,
.table-large th {
  padding: 12px;
}
.table-default.table-striped tr:nth-child(even) {
  background-color: #FFFFFF;
}
.table-inverted.table-striped tr:nth-child(even) {
  background-color: #2B2826;
}
.table-default.table-large,
.table-inverted.table-large {
  border: none;
}
.table-default.table-large th,
.table-inverted.table-large th {
  font-weight: bold;
}
.table-default.table-large thead tr,
.table-inverted.table-large thead tr {
  background-color: #FFFFFF;
  border: none;
}
.table-default.table-large tbody tr:nth-child(odd),
.table-inverted.table-large tbody tr:nth-child(odd) {
  background-color: transparent;
}
.table-default.table-large td,
.table-inverted.table-large td,
.table-default.table-large th,
.table-inverted.table-large th {
  padding: 12px;
}

