* {
	box-sizing: border-box;
}
select {
  background: url(arrow-down.png) no-repeat;
  background-position: right;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.badge-dark{
    position: relative;
    height: 25px;
    background-color: #343a40;
    color: #dacb3c;
    top: 5px;
    
}
.input-group-prepend span{
  height: 32px;
  width: 32px;
}

.badge-pill .form-control{
  border-radius: 50%;
}
.form-control{
  border-radius: 0%; 
  margin-right: 5px;
}

.white{color:white;}

.h4, h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.btn{
  border-radius: 1%;

}
a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.center{text-align: center;}
#i-btn {
	cursor: pointer;
}
.badge-pill.badge-dark {
    cursor: pointer;
}
.modal-content {
	background: #F6F449;
	border: 5px solid #000;
}
.modal-body p{
	margin:0px;
}
.close {
	padding: 3px 10px 10px 10px !important;
	background: #000 !important;
	color: #fff;
	opacity: 1;
}
.font100{font-size: 150px;}
.font75{font-size: 75px;}
.modal-header {
	border: 0px;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
	color: #fff;
}