#confirmSignUpDialog .modal-dialog{
    text-align: center;
}
.ax-drop-list [role="box"] {
    min-height: 18em;
    padding: 0;
    background: white;
    border: 1px solid #aaa;
}
.ax-drop-list [role="option"] {
    display: block;
    padding: 8px 12px;
    position: relative;
    line-height: 16px;
}
.ax-drop-list  [role="option"].focused,.ax-drop-list [role="option"]:hover {
    background-color: #f2f2f7;
    color: #000;
}
.ax-select-button {
    text-align: left;
    width: 100px;
    position: relative;
    display: block;
    align-items: center;
    font-size: inherit;
    padding: 0 12px;
    padding-right: 25px;
    box-sizing: border-box;
    border: 1px solid #BABACC;
    border-radius: 8px;
    transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #fff;
    height: 30px;
}

.ax-select-button::after {
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #747487;
    content: " ";
    position: absolute;
    right: 5px;
    top: 10px;
}

.ax-select-button[aria-expanded="true"]::after {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 0;
    border-bottom: 5px solid #aaa;
    content: " ";
    position: absolute;
    right: 5px;
    top: 10px;
}

.ax-drop-list {
    border-top: 0;
    max-height: 240px;
    position: absolute;
    width: 100px;
    color: #747487;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(35,35,51,0.5);
    box-sizing: border-box;
    margin: 0;
    margin-top: 4px;
    overflow-y: auto;
    cursor: pointer;
    z-index: 2;
    padding: 0 1px;
}

.ax-list-hidden {
    display: none;
}
.zm-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #F2F2F7;
    border: 1px solid #BABACC;
    border-color: #F2F2F7;
    color: #232333;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    position: relative;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    line-height: 18px;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 8px;
}
.zm-button--primary {
    color: #fff;
    background-color: #0E71EB;
    border-color: #0E71EB;
}
.zm-button.is-plain {
    background-color: #fff;
    border-color: #BABACC;
}
.zm-button--primary.is-disabled, .zm-button--primary.is-disabled:hover, .zm-button--primary.is-disabled:focus, .zm-button--primary.is-disabled:active {
    color: #747487;
    background-color: #F2F2F7;
    border-color: #F2F2F7;
}
.zm-button.is-disabled, .zm-button.is-disabled:hover, .zm-button.is-disabled:focus {
    color: #747487;
    cursor: not-allowed;
    background-image: none;
    background-color: #F2F2F7;
    border-color: #F2F2F7;
    box-shadow: none;
    text-decoration: none;
    outline: 0;
}
.zm-button+.zm-button {
    margin-left: 10px;
}
.check-age-wrapper .form-control:focus{
    border-color: #0E71EB;
}
.check-age-wrapper .age-select {
    border-radius: 8px;
    display: inline-block;
    margin-right: 5px;
    color: #747487;
    font-size: 16px;
    width: 100px;
}
.check-age-wrapper{
    padding: 45px 34px;
}
.check-age-wrapper .title, .check-age-fail .title {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #232333;
}
.check-age-wrapper .footer-button-groups, .check-age-fail .footer-button-groups {
    margin: 30px 0;
}
.check-age-wrapper .desc {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #747487;
}
.check-age-wrapper .age-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.age-container .zm-select {
    margin-right: 5px;
    text-align: left;
}
.check-age-fail {
    padding: 90px 34px;
}
@media (max-width: 400px){
    .check-age-wrapper .age-container {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .age-container .zm-select {
        align-self: center;
        margin-top: 5px;
    }
}