.mb-3, .my-3 {
    margin-bottom: 0.40rem!important;
}
.check_box
{
	width: 20px;
    height: 20px;
}
.label_sty
{
	font-size: 10px;
}
.input-group-text
{
	width: 40px;	
}
.help-block {
	color: #920a12;
	font-weight: bold;
}
.req-button
{
	background-color: #2ab934;
	width: 100%;
	height: 50px;
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: Lato;
	font-size: inherit;	
}
.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #434c56;
    background-color: rgba(247,249,250,.5);
    background-clip: padding-box;
    border: 1px solid #ccd2d9;
    border-radius: 4px;
    outline: 0;
}
*, :after, :before {
    box-sizing: border-box;
}

.link{
    padding: 15px 30px;
    margin: 10px;
    display: inline-block;
    color: #000;
    background: #ffce54;
  text-decoration: none;
}

.link:hover{
    text-decoration: none;
    color: #000;
}

/*====================*/
/* BUZZ OUT
/*====================*/

@keyframes buzz-out-on-hover {
  0% { transform: translate(2px, 2px) rotate(2deg); }
  10% { transform: translate(-2px, -2px) rotate(-2deg); }
  20% { transform: translate(2px, 2px) rotate(2deg); }
  30% { transform: translate(-2px, -2px) rotate(-2deg); }
  40% { transform: translate(0px, 0px) rotate(0deg); }
  50% { transform: translate(0px, 0px) rotate(0deg); }
  60% { transform: translate(0px, 0px) rotate(0deg); }
  70% { transform: translate(0px, 0px) rotate(0deg); }
  80% { transform: translate(0px, 0px) rotate(0deg); }
  90% { transform: translate(0px, 0px) rotate(0deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}
.buzz-out-on-hover {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz-out-on-hover {
  -webkit-animation-name: buzz-out-on-hover;
  animation-name: buzz-out-on-hover;
  -webkit-animation-duration: 1.00s;
  animation-duration: 1.00s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-box-shadow: 2px -1px 9px -3px rgba(0,0,0,0.51); 
  box-shadow: 2px -1px 9px -3px rgba(0,0,0,0.51);
  font-family: sans-serif;  
}

input:checked + .slider {
  background-color: #2ab934;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
}

.on
{
  display: none;
}

.on, .off
{
  color: white;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
}

input:checked+ .slider .on
{display: block;}

input:checked + .slider .off
{
	display: none;
}
.bg_form
{
	color: rgb(122,122,122);
	border-radius: 4px;
	background-color: #fcfcfc;
	padding: 10px;
	border: 1px solid #eaeaea;	
}