/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 



/* .modal-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}


.color-modal-header {
    background: #3c3c3c;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #000;
    font-style: normal;
    font-size: 20px;
    
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.5rem;
	width: 100%;
} */


.navbar-inverse {
	position: fixed;
	width: 100%;
	
}

.container-fluid {
	padding-top: 50px;
}

footer {
	height: 100px;
	padding-top: 30px;
	color: #006599;

}

footer p {
	text-align: center;
	font-weight: bold;
}	

.bt-flex {
	display: flex;
	width: 100%;	
	height: 100%;
	align-items: center;
}

#btPontuacao {
	flex-grow: 1;
	margin-right: 5px;
}

#btImpPontuacao {
	flex-grow: 1;
	margin-left: 5px;
}


.bs-callout {

    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
        border-left-color: rgb(238, 238, 238);
        border-left-width: 1px;
    border-left-width: 5px;
    border-radius: 3px;

}
.bs-callout-info {

    border-left-color: #1b809e;

}
.bs-callout-info h3 {

    color: #1b809e;/* #aa6708; */

}
.bs-callout h3 {

    margin-top: 0;
    margin-bottom: 5px;

}

.btn-radius-20 {
	border-radius: 20px !important;
	transition: .5s;
}	

