/* ------------
        LOADING
        --------------- */
#overLoading {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
}

#overLoading img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -16px 0 0 -16px;
}

/* ------------
        MODAL
        --------------- */

.modal-title {
  font-size: 22px;
  text-transform: uppercase;
  color: #3b579d;
}

.bootbox.modal.fade {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  z-index: 99999;
}

.modal-content {
  border-radius: 0 !important;
}

.modal-open {
  overflow: auto !important;
}

.modal-footer,
.modal-header {
  border-top: 0 none;
  border-bottom: 0 none;
}

.modal-footer > button {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 16px;
}

.modal-header button.close {
  font-weight: 700;
  color: #3b579d;
  font-size: 24px;
  margin-top: 10px;
  text-transform: uppercase;
  line-height: 16px !important;
  opacity: 1 !important;
}


/* ------------
        RADIO / CHECKBOXES
        --------------- */

.radioBoxContainer input[type=radio],
.checkBoxContainer input[type=checkbox]
{
  display: none;
}

.radioBoxContainer span:before,
.checkBoxContainer span:before
{
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -2px;
  vertical-align: middle;
  background-color: #F5F5F5;
}

.radioBoxContainer span:after
{
  border-radius: 15px;
}

.radioBoxContainer input[type=radio]:checked + span:before,
.checkBoxContainer input[type=checkbox]:checked + span:before
{
  content: "\2713";
  font-size: 24px;
  color: #3b579d;
  text-align: center;
  line-height: 12px;
}