a {text-decoration:none;}
a:link {color:#000;}
a:visited {color:#000;}
a:hover {color:#533;}
a:active {color:#000;}

input.nodisplay {
  display: none;
}

input[type="radio"]+label img {
  vertical-align:top;
  border: 3px solid #fff;
}
input[type="radio"]:checked+label img{
  border: 3px solid red;
}

div.page-header{
  border-style:none none solid none;
  border-width:thin;
  margin-bottom:0.5em;
  padding:0.5em;
  font-weight:bold;
  font-size:larger;
}
div.page-body{
  margin:0.5em;
}
div.stat-box{
  width:3em;
  text-align:center;
  border-width:thin;
  border-style:solid;
  display:inline-block;
  background-color:#eee;
  font-weight:bold;
  padding:0 0.2em;
}
div.border-block{
  border-width:thin;
  border-style:solid;
  padding:0.5em;
  display:inline-block;
}
div.gr-box{
  background-color:#f0f0f0;
  padding:1em;
  margin:1em 0;
  border-radius:16px;
}
.c-button {
  color: #fff;
  font-weight: bold;
  font-size: medium;
  background: #4676d7;
  min-width: 80px;
  min-height: 30px;
  text-align: center;
  border: 1px solid #4676d7;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  transition: .3s;
}

.c-button::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  right: -60px;
  z-index: -1;
  border-right: 60px solid transparent;
  border-bottom: 60px solid #050ab1;
  transform: translateX(-100%);
  transition: transform ease .3s;
}
.c-button:hover {
  color: #fff;
}
.c-button:hover::before {
  transform: translateX(0);
}

hr.or-hr {
    border: none;
    border-top: 3px double #333;
    color: #333;
    overflow: visible;
    text-align: center;
    height: 5px;
}

hr.or-hr::after {
    background: #fff;
    content: 'or';
    padding: 0 4px;
    position: relative;
    top: -13px;
}

.wbr{
word-break: keep-all;
overflow-wrap: break-word;
}

.form-label{
margin-bottom:2px;
}


/*------------------------------------
- COLOR primary
------------------------------------*/
.alert-primary {
    color: #7f5105;
    background-color: #fdebce;
    border-color: #fce3ba;
}

.alert-primary hr {
    border-top-color: #fbd9a1;
}

.alert-primary .alert-link {
    color: #4e3203;
}

.badge-primary {
    color: #212529;
    background-color: #f59d0a;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #212529;
    background-color: #c47d08;
}

.bg-primary {
    background-color: #f59d0a !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #c47d08 !important;
}

.border-primary {
    border-color: #f59d0a !important;
}

.btn-primary {
    color: #fff !important;
    background-color: #f59d0a;
    border-color: #f59d0a;
}

.btn-primary:hover {
    color: #fff !important;
    background-color: #d28708;
    border-color: #c47d08;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 157, 10, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #c4c4c4;
    background-color: #f59d0a;
    border-color: #f59d0a;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #c4c4c4;
    background-color: #c47d08;
    border-color: #b57407;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 157, 10, 0.5);
}

.btn-outline-primary {
    color: #f59d0a;
    background-color: transparent;
    border-color: #f59d0a;
}

.btn-outline-primary:hover {
    color: #212529;
    background-color: #f59d0a;
    border-color: #f59d0a;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 157, 10, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #f59d0a;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #212529;
    background-color: #f59d0a;
    border-color: #f59d0a;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 157, 10, 0.5);
}

.list-group-item-primary {
    color: #7f5105;
    background-color: #fce3ba;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #7f5105;
    background-color: #fbd9a1;
}

.list-group-item-primary.list-group-item-action.active {
    color: #212529;
    background-color: #7f5105;
    border-color: #7f5105;
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #fce3ba;
}

.table-hover .table-primary:hover {
    background-color: #fbd9a1;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #fbd9a1;
}

.text-primary {
    color: #f59d0a !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #c47d08 !important;
}