.theme-primary-color {
    background-color: #A21B2E !important;
    color: white !important;
  }
  .theme-primary-color-dark {
    background-color: #d40733 !important;
  }
  .theme-secondary-color {
    background-color: white !important;
  }
  .theme-font-color {
    color: #2D2D2D !important;
  }
  .theme-border-primary-color {
    border-color: #A21B2E !important;
  }
  .menu-theme .main.item {
    background-color: #A21B2E !important;
    color: white !important;
  }
  .menu-theme .main.item:hover,
  .menu-theme .main.item.active {
    background-color: #d40733 !important;
    color: white !important;
  }
  body {
    color: #2D2D2D !important;
  }
  /* 
      Themed radio button
  */
  .radio:not(.ui) {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
  }
  .radio:not(.ui):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
  }
  .radio:not(.ui):after {
    content: '';
    width: 12px;
    height: 12px;
    background: #A21B2E;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .radio:not(.ui):not(.checked):after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }
  tr {
    display: table-row;
  }
  td {
    padding: 8px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #ddd;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ddd;
  }
  table.striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
  }
  