#age-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#age-popup label:hover {
    cursor: pointer
}

#age-popup #inner {
    width: 300px;
    height: auto;
    position: fixed;
    top: 25%;
    left: 50%;
    margin-left: -150px;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 5px;
    z-index: 9999;
    box-sizing: border-box;
    padding: 10px 15px;
    text-align: center;
}

#age-popup #inner .form-group {
    width: 100%;
    float: left;
    display: inline-block;
    height: auto;
}

#age-popup #inner .form-group.checkbox-group {
    width: auto;
    float: none;
    margin: 15px 0 0 0;
}

#age-popup #inner .form-group.checkbox-group > input {
    float: left;
    clear: none;
}

#age-popup #inner .form-group.checkbox-group > .checker {
    float: left;
}

#age-popup #inner .form-group.checkbox-group > label {
    float: left;
    clear: none;
    width: auto;
    display: inline-block;
    line-height: 100%;
}

#age-popup #inner .form-group.button-group {
    margin: 10px 0 0 0;
}

#age-popup #inner .form-group.button-group button {
    width: 45%;
    margin: 0 2%;
    background: #39b534;
    color: white;
    border: none;
    height: 30px;
    border-radius: 5px;
}

#age-popup #inner .form-group.button-group button:hover {
    background: #42d53c;
}

#age-popup h1 {
    font-size: 18px;
    font-weight: bold;
}

#age-popup p {
}