body {
  /*     font-family: 'Texta', sans-serif; */
}

a:hover {
  color: #ffc439;
}

.content-wrapper {
  background-color: #fbfbfb;
}

.content-wrapper .bottom {
  margin-bottom: 30px;
}

.form-control,
input,
select,
button {
  border-radius: 3px;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #e2e2e2;
}

/*=====*/
/* BOX */
/*=====*/

.box {
  border-top-color: #008a57 !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  background: #f5f5f5;
}

.box-header {
  background: #008a57;
  color: white;
}

.box-header h4 {
  padding-left: 15px;
  /* margin: 5px 0; */
}

.box-header-title {
  text-transform: capitalize;
}

.box-header-title > i {
  margin-right: 10px;
}

/*=============*/
/* INPUT GROUP */
/*=============*/

.input-group-first {
  border-radius: 3px 0px 0px 3px;
}
.input-group-center {
  border-radius: 0px !important;
}
.input-group-last {
  border-radius: 0px 3px 3px 0px !important;
}

/** CHECKBOX **/

.roundCheckbox {
  position: relative;
  height: 100%;
  white-space: nowrap;
}

.roundCheckbox label.chkLabel {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.roundCheckbox label.chkLabel:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  width: 9px;
}

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}

.roundCheckbox input[type="checkbox"] {
  visibility: hidden;
}

.roundCheckbox input[type="checkbox"]:checked + label {
  background-color: #008a57;
  border-color: #008a57;
}

.roundCheckbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.roundCheckbox label.chkText {
  padding-left: 10px;
  cursor: pointer;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roundCheckbox[disabled],
fieldset[disabled] .roundCheckbox {
  cursor: not-allowed;
}
.chkLabel[disabled],
fieldset[disabled] .chkLabel,
.chkText[disabled],
fieldset[disabled] .chkText {
  cursor: not-allowed;
}

.chkLabel[disabled],
fieldset[disabled] .chkLabel {
  background-color: #eee;
  opacity: 1;
}

.roundCheckbox label.chkText {
  margin-top: 1px;
}

/** END CHECKBOX **/
