
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html
{
  height:100%;
  width:100%;
}
body{    
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8em;
    background: linear-gradient(to right bottom, #ffffff, #fff);
}



.form-top{
  margin-top: 0px;
}
.panel{
  box-shadow: 0 1px 6px 0 rgba(0,0,0,.12), 0 1px 6px 0 rgba(0,0,0,.12);
  border-radius: 0px;
    border: 0;
}
@-moz-document url-prefix() {
    .form-control{
      height: auto;
    }
}
.panel-primary{
  background-color: #2c3e50;
  color: #fff;
}
.panel-primary>.panel-heading {
    color: #fff;
    font-size: 20px;
    background-color: #2c3e50;
    border-color: #2c3e50;
}
.btn-warning{
  background-color: transparent;
  border-color: #bdc3c7;
}

input.option-input.checkbox {
    border-radius: 50%;
}

.head_a h2 {
    line-height: 2.231;
    font-weight: 700;
    font-size: 35px;
    color: #ffffff;
    background: #ef86a4;
    margin-left: -15px;
    margin-bottom: 15px;
    padding-left: 19px;
}
h5 {
    padding-left: 53px;
    width: 100%;
    margin-top: -19px;
    font-weight: bold;
}

$primary-color: #fff;
$accent-color: #009688;

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8em;
    background: linear-gradient(to right bottom, #ffffff, #fff);

}

.btn-danger {
    background-image: -webkit-linear-gradient(top,#d9534f 0,#ea0600 100%);
    background-image: -o-linear-gradient(top,#d9534f 0,#c12e2a 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));
    background-image: linear-gradient(to bottom,#ff0700 0,#610603 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #b92c28;
    padding-bottom: 11px;
    padding-top: 7px;
    font-size: 29px;
    font-weight: bold;
}

.list {
	flex: 0 0 20rem;
}

.list__item {
	position: relative;
	&:hover > .label {
		color: $accent-color;
		&::before {
			border: 0.5rem solid $accent-color;
			margin-right: 2rem;
		}
	}
}

.radio-btn {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	&:checked + .label {
		color: $accent-color;
		&::before {
			margin-right: 2rem;
			border: 0.5rem solid $accent-color;
			background: $primary-color;
		}
	}
}

.label {
	display: flex;
	align-items: center;
	padding: 0.75rem 0;
	color: $primary-color;
	font-size: 1.25rem;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.25s linear;
}

.label::before {
	display: inline-block;
	content: "";
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.625rem;
	border: 0.5rem solid $primary-color;
	border-radius: 50%;
	transition: all 0.25s linear;
}


.tt  {
   width: 105%;
    margin-bottom: 5px;
    font-weight: bold;
    background: #e2e2e2;

    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}



@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.75;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 13.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
  background: #e50600;
}
.option-input:checked::before {
  height: 40px;
  width: 40px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 40px;
}
label {

    width: 100%;
}

.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #e50600;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

span.t3 {
    width: 80%;
    float: left;
    margin: 2%;
}
.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}
