.row-full {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    height: 100px;
    left: 50%;
    margin-bottom: 150px;
}

hr {
    border-top: 1px solid #28A745;
    width: 70%;
}

a {
    color: #000;
}

.card {
    background-color: #FFFFFF;
    padding: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.card:hover {
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
    color: black;
}

address {
    margin-bottom: 0px;
}

ul {
    list-style-type: none;
}

li {
    display: inline-block;
}

input[type="radio"][id^="cb"] {
    display: none;
}

label {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 50%;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
}

label:before {
    background-color: rgba(40, 167, 69, 0.5);
    text-align: center;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    /*   border: 1px solid grey; */
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    transition-duration: 0.4s;
    transform: scale(0);
}

label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.1s;
    transform-origin: 50% 50%;
    border-radius: 50%;
}

 :checked+label {
    /*border-color: #eee;*/
}

 :checked+label:before {
    content: "✓";
    transform: scale(1.1);
}