ng-hide {
  display: none;
}

.bold {
  font-weight: bold;
}

.floatLeft,
.float-left {
  float: left;
}

.floatRight,
.float-right {
  float: right;
}

.img-responsive {
  margin: auto;
}

.md-margin-top {
  margin-top: 15px;
}

.flipped {
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}

/* COLOR */

.fulcro-green {
  color: #009c69;
}

.fulcro-light-green {
  color: #84d8ae;
}

.fulcro-strong-blue {
  color: #001e3d;
}

.fulcro-blue {
  color: #195da3;
}

.fulcro-light-blue {
  color: #6693c1;
}

.fulcro-extralight-blue {
  color: #ccdbea;
}

.fulcro-grey {
  color: grey;
}

.fulcro-dark-grey {
  color: darkgrey;
}

.fulcro-light-grey {
  color: lightgrey;
}

.fulcro-red {
  color: #eb2020;
}

.fulcro-light-orange {
  color: #ebd001;
}

.fulcro-orange {
  color: #eb9601;
}

.fulcro-dark-orange {
  color: #eb6301;
}

.fulcro-white {
  color: #ffffff;
}

.fulcro-white-bg {
  background-color: #ffffff;
}

/* END COLOR */

/* BUTTONS */

.clearer-button {
  outline: none;
  border: none;
  background: none;
  padding: 0;
}

.iconButton {
  background: none;
  border: none;
  outline: none;
}

.btn-round {
  border-radius: 25px !important;
  padding: 2px 7px;
  font-weight: bold;
}

.btn-round-image {
  border-radius: 50% !important;
  padding: 2px 6px;
  margin-top: -1px;
  font-weight: bold;
}

.fulcro-btn-primary {
  color: var(--fulcro-blue-9);
  border-color: var(--fulcro-blue-9);
  background-color: white;
}
.fulcro-btn-primary:hover,
.fulcro-btn-primary:active,
.fulcro-btn-primary:focus {
  color: white;
  text-decoration: none;
  border-color: var(--fulcro-blue-9);
  background-color: var(--fulcro-blue-9);
}

.fulcro-btn-danger {
  color: #eb2020;
  border-color: #eb2020;
  background-color: white;
}
.fulcro-btn-danger:hover,
.fulcro-btn-danger:active,
.fulcro-btn-danger:focus {
  color: white;
  text-decoration: none;
  border-color: #eb2020;
  background-color: #eb2020;
}

.fulcro-btn-success {
  color: #009c69;
  border-color: #009c69;
  background-color: white;
}
.fulcro-btn-success:hover,
.fulcro-btn-success:active,
.fulcro-btn-success:focus {
  color: white;
  text-decoration: none;
  border-color: #009c69;
  background-color: #009c69;
}

.fulcro-btn-alert {
  color: #eb9601;
  border-color: #eb9601;
  background-color: white;
}
.fulcro-btn-alert:hover,
.fulcro-btn-alert:active,
.fulcro-btn-alert:focus {
  color: white;
  text-decoration: none;
  border-color: #eb9601;
  background-color: #eb9601;
}

.btn-date {
  margin-right: 0 !important;
}

.input-group-xs .input-group-btn button {
  height: 22px;
}

.first-btn-right {
  margin-right: 0 !important;
}

/* END BUTTONS */

/** ALERT **/

.alert-success {
  background-color: #009c69 !important;
}

.alert-danger {
  background-color: #eb2020 !important;
}

/** END ALERT **/

/** ARROWS **/

.btn-arrow-right,
.btn-arrow-left {
  position: relative;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}
.btn-arrow-right {
  padding-left: 36px;
  margin-right: 12px;
}
.btn-arrow-left {
  padding-right: 36px;
  margin-left: 12px;
}
.btn-arrow-right:before,
.btn-arrow-right:after,
.btn-arrow-left:before,
.btn-arrow-left:after {
  /* make two squares (before and after), looking similar to the button */
  content: "";
  position: absolute;
  top: 4px; /* move it down because of rounded corners */
  width: 24px; /* same as height */
  height: 24px; /* button_outer_height / sqrt(2) */
  background: inherit; /* use parent background */
  border: inherit; /* use parent border */
  border-left-color: transparent; /* hide left border */
  border-bottom-color: transparent; /* hide bottom border */
  /*     border-radius: 0px 4px 0px 0px; round arrow corner, the shorthand property doesn't accept "inherit" so it is set to 4px */
  /*     -webkit-border-radius: 0px 4px 0px 0px; */
  /*     -moz-border-radius: 0px 4px 0px 0px; */
}
.btn-arrow-right:before,
.btn-arrow-right:after {
  transform: rotate(45deg); /* rotate right arrow squares 45 deg to point right */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.btn-arrow-left:before,
.btn-arrow-left:after {
  transform: rotate(225deg); /* rotate left arrow squares 225 deg to point left */
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
}
.btn-arrow-right:before,
.btn-arrow-left:before {
  /* align the "before" square to the left */
  left: -12px;
}
.btn-arrow-right:after,
.btn-arrow-left:after {
  /* align the "after" square to the right */
  right: -12px;
}
.btn-arrow-right:after,
.btn-arrow-left:before {
  /* bring arrow pointers to front */
  z-index: 1;
}
.btn-arrow-right:before,
.btn-arrow-left:after {
  /* hide arrow tails background */
  background: white;
}

/** END ARROWS **/
