/* --------- general --------------- */

body {
	background-color: white;
	color: black;
	font-size: 1rem;
}


/* --------- link ------------------ */

a {
	color: black;
	text-decoration: none;
}

/* Keep menu items to the right when collapsing */
 .nav-item {
    text-align: right !important;
}


a.nav-link {
	color: white;
}

a.nav-link:hover {
	text-decoration: underline;	
}

a._email {
	color: blue;
	text-decoration: underline;	
}

a._email:hover {
	color: #c22627;
}

/* bootstrap disabled doesn't keep right! */
a._linkDisabled {
	color: #e6e6e6 !important;
}   
 
 /* bootstrap disabled doesn't keep right! */  
a._linkDisabled:hover  {
	text-decoration: none;
} 


/* --------- styling --------------- */

._navbar_color {
  	background: linear-gradient(90deg, white, #f7d4d4, #c22627, #c22627);
  	box-shadow: 3px 3px 10px #8f8d8d;
}

._tip {
	font-size: smaller;
	font-style: italic;
}

 ._legendBorder{
  	border-color: #666666 !important;
  
}


/* --------- button ---------------- */

.btn {
	box-shadow: none !important;
}

.btn.focus {
	outline: none;
	box-shadow: none;
}


/* --------- list ------------------ */

li.nav-item {
	color: white;
}

ul._circle {
	list-style-image: none;
	list-style-type: circle;
}

ul._square {
	list-style-image: none;
	list-style-type: square;
}

ul._none {
	list-style-image: none;
	list-style-type: none;
}

ul._crochet {
	list-style-image: url("../img/crochet.gif");
}

ul._crochet > li {
	padding-top: 15px;
}


/* --------- form ------------------ */

.form-control:focus, .form-select:focus {
  	border-color: #808080;
  	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px #b3b3b3;
}

input[type=radio]:checked:after {
    width: 18px;
    height: 18px;
    border-radius: 16px;
    top: -3px;
    left: -2px;
    position: relative;
    background-color: darkgrey;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
    box-shadow: 3px 3px 8px #8f8d8d;
}

input[type=radio]:focus {
    border-color: #808080;
  	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #b3b3b3;
}

input[type=number] {
	border-color: #dcdcdc;
    border-width: 1px;  
    border-style: solid;	
  	border-radius: 4px;	
  	padding-left: 12px;
}

input[type=number]:focus {
    border-color: #808080;
    border-width: 1px;
  	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px #b3b3b3;
  	outline: 0 none;
}

/* --------- badge ------------------ */

.badge-new {
  display: inline-block;
  background: #fff59d;
  color: #090800;
  font-size: 1.2rem;
  font-weight: 600;
  /*text-transform: uppercase;*/
  padding: 6px 14px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.25);
  /*animation: pulse 1.6s infinite;*/
}

@keyframes pulse {
  0%   { box-shadow: 2px 3px 6px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,245,157,0.6); }
  70%  { box-shadow: 2px 3px 6px rgba(0,0,0,0.25), 0 0 0 6px rgba(255,245,157,0); }
  100% { box-shadow: 2px 3px 6px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,245,157,0); }
}