.mtxt {
  text-align: center;
  color: #bbb;
}

.mtxt.mtxt-success {
  color: #1e9eae !important;
}

.mtxt.mtxt-danger {
  color: #ce2216 !important;
}

.mtxt.mtxt-warning {
  color: #d88200 !important;
}

.mtxt.mtxt-bold {
  font-weight: 500;
}

.mbtn {
  border: none;
  width: 152px;
  height: 40px;
  margin: auto;
  margin-top: 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Muli-SemiBold";
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.mbtn[disabled], .mbtn.disabled {
  opacity: 0.5;
}

.mbtn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.mbtn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.mbtn.mbtn-small {
  width: 40px;
}

.mbtn.mbtn-sm {
  width: 6rem;
  height: 2rem;
  margin: auto;
  margin-top: 25px;
  font-size: 0.65rem !important;
}

.mbtn.mbtn-default {
  background: #ddd;
  color: #222;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-default:before, .mbtn.mbtn-default.selected {
  background: #bbb;
}

.mbtn.mbtn-default.mbtn-outline {
  border: 1px solid #bbb;
  background: transparent;
  color: #bbb;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-default.mbtn-outline:before, .mbtn.mbtn-default.mbtn-outline.selected {
  background: #bbb3;
}

.mbtn.mbtn-success {
  background: #1e9eae;
  color: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-success:before, .mbtn.mbtn-success.selected {
  background: #0e7a88;
}

.mbtn.mbtn-success.mbtn-outline {
  border: 1px solid #1e9eae;
  background: transparent;
  color: #1e9eae;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-success.mbtn-outline:before, .mbtn.mbtn-success.mbtn-outline.selected {
  background: #0e7a8822;
}

.mbtn.mbtn-warning {
  background: #d88200;
  color: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-warning:before, .mbtn.mbtn-warning.selected {
  background: #ac6b09;
}

.mbtn.mbtn-warning.mbtn-outline {
  border: 1px solid #d88200;
  background: transparent;
  color: #d88200;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-warning.mbtn-outline:before, .mbtn.mbtn-warning.mbtn-outline.selected {
  background: #ac6b0922;
}

.mbtn.mbtn-danger {
  background: #026c76;
  color: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-danger:before, .mbtn.mbtn-danger.selected {
  background: #1e9eae;
}

.mbtn.mbtn-danger.mbtn-outline {
  border: 1px solid #ae3c33;
  background: transparent;
  color: #ae3c33;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn.mbtn-danger.mbtn-outline:before, .mbtn.mbtn-danger.mbtn-outline.selected {
  background: #ce221622;
}

.mbtn.mbtn-group {
  width: auto;
}

.mbtn.mbtn-group span {
  border-radius: 0 !important;
}

.mbtn-fa {
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.mbtn-fa[disabled], .mbtn-fa.disabled {
  opacity: 0.5;
}

.mbtn-fa.mbtn-default i {
  color: #ddd;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn-fa.mbtn-default:hover i {
  color: #bbb;
}

.mbtn-fa.mbtn-default :last-child {
  color: #222 !important;
}

.mbtn-fa.mbtn-success i {
  color: #1e9eae;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn-fa.mbtn-success:hover i {
  color: #0e7a88;
}

.mbtn-fa.mbtn-success :last-child {
  color: #fff !important;
}

.mbtn-fa.mbtn-warning i {
  color: #d88200;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn-fa.mbtn-warning:hover i {
  color: #ac6b09;
}

.mbtn-fa.mbtn-warning :last-child {
  color: #fff !important;
}

.mbtn-fa.mbtn-danger i {
  color: #ae3c33;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mbtn-fa.mbtn-danger:hover i {
  color: #ce2216;
}

.mbtn-fa.mbtn-danger :last-child {
  color: #fff !important;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 0;
  border: 1px solid #888;
  width: 50%;
  /* Could be more or less, depending on screen size */
  min-width: 850px;
  margin-top: 75px !important;
  position: relative;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.modal-content h2 {
  text-transform: uppercase;
  font-size: 25px !important;
  font-family: "Muli-Bold";
  text-align: center;
  margin-bottom: 32px !important;
  color: #1e9eae;
  letter-spacing: 1.25px !important;
  margin: 10px;
}

.modal-content h3 {
  padding-top: 20px;
  text-transform: uppercase;
  font-size: 15px !important;
  font-family: "Muli-Bold";
  text-align: center;
  margin-bottom: 32px !important;
  color: #1e9eae;
  letter-spacing: 2px !important;
}

.modal-content .error-message {
  font-weight: bold;
  margin-top: 20px;
  color: #ce2216;
  font-size: 13px;
  width: 100%;
  position: absolute;
  text-align: left;
}

/* Modal Content/Box */
.modal-danger .modal-content {
  background-color: #ae3c33;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 0;
  border: none !important;
  width: 30%;
  /* Could be more or less, depending on screen size */
  margin-top: 75px !important;
  position: relative;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  color: #fff;
}

.modal-danger .modal-content .modal-header, .modal-danger .modal-content .modal-footer {
  border: none;
}

.modal-danger .modal-content h2 {
  text-transform: uppercase;
  font-size: 25px;
  font-family: "Muli-Bold";
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: 1.25px;
  margin: 10px;
}

.modal-danger .modal-content h3 {
  padding-top: 20px;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Muli-Bold";
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: 2px;
}

.modal-danger .modal-content .error-message {
  font-weight: bold;
  margin-top: 20px;
  color: #ce2216;
  font-size: 13px;
  width: 100%;
  position: absolute;
  text-align: left;
}

/* The Close Button */
.close {
  color: #444;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Modal Header */
.modal-header {
  padding: 2px 16px;
  border-bottom: 1px solid #eee;
}

.modal-header .fa-times {
  position: absolute;
  top: 5px;
  right: 3px;
}

/* Modal Body */
.modal-body {
  padding: 2px 16px;
}

/* Modal Footer */
.modal-footer {
  padding: 2px 16px;
  border-top: 1px solid #eee;
  display: flow-root;
}

.modal-footer .mbtn {
  margin: 10px 5px;
  float: right;
}

.modal-lg {
  width: 80% !important;
}

.modal-md {
  width: 65% !important;
}

.pointer {
  cursor: pointer !important;
}

.bold {
  font-weight: bold !important;
}
/*# sourceMappingURL=mstyle.css.map */