body {
	padding: 4px;
}
h4 {
    /*font-weight: bold;*/
    text-transform: uppercase;
    color: #0c5280;
    margin: 0px !important;
}
.required {}
.required::before {
    color: #FF0000;
    margin-right: 5px;
    font-family: "Arial"; font-weight: bold; content: "*";
    /*font-family: "Glyphicons Halflings"; font-weight: normal; content: "\2a";*/
}
.form-group {
    margin-bottom: 4px;
}
.box-with-bg {
    background-color: #e4f4f4;
    padding: 15px 25px;
    border-radius: 4px;
    position: relative;
}
.box-link {
    cursor: pointer;
    display: block;
}
.box-link:hover {
    background-color: #f0f0e1;
}

#carregando {
    position: absolute;
    top: 0px;
    height: 20px;
    text-align: center;
    width: 100%;
    /*left:50%;*/
    top:50%;
    /*margin-left:-110px;*/
    margin-top:-20px;
	
}

/**
 * 
 */
@media (min-width: 900px) {
    .pagina {
        max-width: 920px;
    }
}
@media (min-width: 770px) {
    #brand-pagina {
        display: none;
    }
}
@media (max-width: 770px) {
    #title-escola {
        /*display: none;*/
    }
    #tab-pagina {
        display: none;
    }
}

.row {
    margin: 0px;
    padding: 0px;
}
.panel-heading {
    font-weight: bold;
}
.panel-green {
    border-color: #0c5280;
}
.panel-green>.panel-heading {
    color: #FFF;
    background-color: #0c5280;
    border-color: #0c5280;
}
.navbar-brand {}
.navbar-brand img {
    height: 40px;
    margin-top: -10px;
}
.navbar-default {
    /*background-color: #FFF;*/
}
.form-control {
    text-transform: uppercase;
}
.btn-primary {
    background-color: #0c5280 !important;
    border-color: #0c5280 !important;
}
.btn-primary:hover, .btn-primary:focus { background-color: #0c5280 !important; }
.btn-primary:active, .btn-primary.active { background-color: #0c5280 !important; border-color: #245580; }
.btn-primary.disabled, .btn-primary:disabled, .btn-primary[disabled] { background-color: #0c5280 !important; }
a { color: #0c5280 !important; }
a:hover { color: #0c5280 !important; }
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #0c5280;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff !important;
  cursor: default;
  background-color: #0c5280;
  border-color: #0c5280;
}

.table tbody tr:hover {
    background-color: #f5f5f5;
}

#logo {
    padding-top: 10px;
    padding-bottom: 10px;
}
#logo img {
    margin-left: auto;
    margin-right: auto;
}

.text-white {
    color: #FFF !important;
}

.with-errors {
    font-size: 10px;
}

.mb-1 {
    margin-bottom: 10px;
}




.customRadio input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.customRadio input[type="radio"]+label {
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
    margin-right: 20px;
}

.customRadio input[type="radio"]+label:before {
    content: '';
    background: #fff;
    border: 2px solid #0c5280;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.customRadio input[type="radio"]+label:after {
    content: '';
    background: #0c5280;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0;
    transform: scale(2);
    transition: transform 0.3s linear, opacity 0.3s linear;
}

.customRadio input[type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}