.navbar {
    display: none
}
h2{
    color: #fff ;
    padding: 4px 0 ;
    margin: 0 ;
    font-size: 22px;
}
.bold{
    font-weight: bold;
}
label.control-label {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #090A0B;
    margin-bottom: 8px;
}
.button {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    height: 50px;
    padding: 8px 24px;
    border-radius: 50px;
    background-color: #36395a;
    box-shadow: 0 4px 11px 0 rgb(37 44 97 / 15%), 0 1px 3px 0 rgb(93 100 148 / 20%);
    transition: all .2s ease-out;
    transition-property: background-color,border-color,color,box-shadow,filter;
}
.button:hover {
    box-shadow: 0 8px 22px 0 rgb(37 44 97 / 15%), 0 4px 6px 0 rgb(93 100 148 / 20%);
    background-color: #298891;
}
.buttonAddUser {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    height: 50px;
    padding: 8px 24px;
    border-radius: 50px;
    background-color: #0d1117;
    box-shadow: 0 4px 11px 0 rgb(37 44 97 / 15%), 0 1px 3px 0 rgb(93 100 148 / 20%);
    transition: all .2s ease-out;
    transition-property: background-color,border-color,color,box-shadow,filter;

}
.buttonAddUser:hover{
    box-shadow: 0 8px 22px 0 rgb(37 44 97 / 15%), 0 4px 6px 0 rgb(93 100 148 / 20%);
    background-color: #298891;
}
.button.btn-navigation{
    background-color: #002c58;
}
.button.btn-navigation:hover{
    background-color: #443ECF;
}
.buttonStep {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-weight: 1000;
    border: 1px solid transparent;
    border-radius: 2px;
    height: 36px;
    line-height: 34px;
    font-size: 14px;
    color: #ffffff;
    background-color: #007c89;
    transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    padding: 0 18px;

}
.buttonStep:hover {
    color: #ffffff;
    background-color: #443ECF;
}
.buttonStep:first-child {
    border-radius: 10px 0 0 10px;
}
.box-azul{
    background: #0B1B2E;
    padding: 8px 16px;
    color: #fff;
    margin: 1rem 0;
    border-radius: 12px;
}
.aspNetDisabled{
    display: inline-block;
    outline: none;
    font-weight: 1000;
    border: 1px solid transparent;
    height: 36px;
    line-height: 34px;
    font-size: 14px;
    background: #CFD4DE;
    color: #6E7A86;
    border: 1px solid #CFD4DE;
    padding: 0 18px;
}
#MainContent_Step3Btn {
    border-radius: 0 10px 10px 0;
}


.content-register {
    margin: 1rem 0;
    padding: 1.5rem 0;
    background-color: #ffffff;
    border-radius: 12px;
    width: 630px;
    min-height: 600px;
}
.content-register input.form-control, .content-register select {
    border-radius: 100px;
}
.chosen-select tr {
    width: 49%;
    float: left;
    margin: 2px 0;
    background: #007D85;
    border-radius: 30px;
    margin-right: 2px;
    height: 37px
}

.chosen-select tr td  {
    margin: 2px;
    padding: 9px 13px 0 2px !important;
    color: #fff;
    font-size: 12px;
}
.chosen-select tr td input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 0 5px;
    margin-left: 10px;
    margin-right: 10px;
    
}
.chosen-select tr td label:before {
    content: '';
    background-color: #000;
    border: 2px solid #000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 10px;
    border-radius: 30px;
}
.chosen-select tr td input:checked + label:after {
    content: '';
    display: block;
    position: relative;
    top: -16px;
    left: 16px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.chosen-select tr td input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .content-register{
        width: 100%;
    }
    .buttonStep{
        width: 32% !important;
    }
}