
.icon {
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
}

.card-content {
  border: 1px solid #CCC;
  border-radius: 5px;
  padding-bottom: 20px;
  text-align: center;
  background-color: #fff;
}
.card-content * {
  cursor: pointer;
}
.card-wrapper {
  position: relative;
  float: left;

}
.c-card {
  opacity: 0;
}
.c-card ~ .card-content {
  transition: all 500ms ease-out;
}
.card-header {
  text-align: center;
  color: #162a71;
  font-weight: 500;
  margin-bottom: 20px;
  height: 100px;
  position: relative;
}
.card-header a{
  color: #656565;
  font-weight: normal;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.c-card ~ .card-content .card-header {
  transition: all 100ms ease-out;
}


.c-card ~ .card-content:hover {
  border: 1px solid #c7c7c7;
}
.card-content:hover .card-header {
  background-color: #c7c7c7;
}

.c-card:checked ~ .card-content {
  border: 1px solid #5fb0ff;
}
.c-card:checked ~ .card-content .card-header{
    background-color: #5fb0ff;
    color: #fff;
}

.c-card:checked ~ .card-content .card-header a{
    color: #fff;
}
.radio_lbl {
  display: block;
  position: relative;
  margin-bottom: 0 !important;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 5px;
  margin-left: 5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ababab;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.card-content:hover .checkmark {
  background-color: #eee;
}


/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.c-card:checked ~ .card-content .checkmark:after {
  display: block;
}


/* Style the indicator (dot/circle) */
.radio_lbl .checkmark:after {
 	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #5fb0ff;
}
