/* @font-face {
  font-family: 'Foo';
  src: url('./static/foo.ttf');
}

body {
  font-family: 'Foo';
} */

.mh-30 {
  max-height: 30vh;
}
.mr-minus-2 {
  margin-right: -0.5rem;
}
.zi-999 {
  z-index: 999 !important;
}
.w-20 {
  width: 20% !important;
}
.w-30 {
  width: 30% !important;
}
.w-70 {
  width: 70% !important;
}
.w-80 {
  width: 80% !important;
}
.w-90 {
  width: 90% !important;
}
.w-10 {
  width: 10% !important;
}
.vh-100 {
  height: 100vh !important;
}
.mh-0 {
  max-height: 0 !important;
}
.mvh-100 {
  max-height: 100vh !important;
}
.mvh-2dot5 {
  max-height: 2.5rem !important;
}
.mvh-1000 {
  max-height: 1000vh !important;
}
.rotate-90 {
  transform: rotate(90deg);
}
.rotate-minus-90 {
  transform: rotate(-90deg);
}
.mb-6 {
  margin-bottom: 4rem !important;
}
.pb-6 {
  padding-bottom: 5rem !important;
}
.pb-7 {
  padding-bottom: 6rem !important;
}
.pt-6 {
  padding-top: 5rem !important;
}
.mom-responsible-wide-container {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.mom-block {
  display: block !important;
}
.mom-right {
  right: 0 !important;
}
.mom-text-sm {
  font-size: 0.8rem;
}
.mom-text-xsm {
  font-size: 0.6rem;
}
.mom-textarea {
  border: 1px solid #ced4da;
  border-radius: 0.4rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
.mom-textarea-focus {
  color: #5a5a5a;
  background-color: #fff;
  border-color: #d0eae2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 194, 173, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(120, 194, 173, 0.25);
}
.mom-textarea-padding-horizon {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.mom-textarea-padding-bottom {
  padding-bottom: 0.375rem;
}
.mom-textarea-padding-top {
  padding-top: 0.375rem;
}
.mom-editor-panel {
  background-color: rgba(206, 212, 218, 0.15);
}
.mom-x {
  padding-right: 0.4rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: red;
  font-weight: bold;
}
.mom-fa-hover:hover {
  color: #56cc9d !important;
  cursor: pointer !important;
}
.mom-fa-hover-on-primary:hover {
  color: #adffde !important;
  cursor: pointer !important;
}
.mom-fa-hover-warning:hover {
  color: #ffce67 !important;
  cursor: pointer !important;
}
.mom-hover-frame:hover {
  cursor: pointer !important;
  border-radius: .4rem;
  box-sizing: border-box;
  box-shadow: 0 0 0 0.3rem #78C2AD;
}
.mom-hover-frame:active {
  cursor: pointer !important;
  border-radius: .4rem;
  box-sizing: border-box;
  box-shadow: 0 0 0 0.3rem #F3969A;
}
.mom-hover-frame-active {
  cursor: pointer !important;
  border-radius: .4rem;
  box-sizing: border-box;
  box-shadow: 0 0 0 0.3rem #F3969A;
}
.mom-hover-frame-bottom:hover {
  border-bottom: .2rem solid #F3969A;
  border-right: .2rem solid #F3969A;
  border-left: .2rem solid #F3969A;
  cursor: pointer !important;
}
.mom-cursor-pointer {
  cursor: pointer !important;
}
.mom-custom-input:focus {
  color: #5a5a5a;
  background-color: rgba(120, 194, 173, 0.25);
  /* background-color: #fff; */
  border-color: #d0eae2;
  outline: 0;
  /* -webkit-box-shadow: inset 0 0 0 2rem rgba(120,194,173,0.25);
  box-shadow: inset 0 0 0px 2rem rgba(120,194,173,0.25); */
  border-radius: 0.4rem;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.mom-invalid-box {
  background-color: rgba(0, 150, 136, 0.2);
  -webkit-box-shadow: 0px 0px 10px 6px rgba(0, 150, 136, 0.2);
  box-shadow: 0px 0px 10px 6px rgba(0, 150, 136, 0.2);
  border-radius: 0.5rem;
}
.mom-invalid-inner-box {
  box-shadow: inset 0px 0px 5px 5px rgba(255, 0, 0, 0.3);
  border-radius: 0.5rem;
}
.mom-opacity-true {
  opacity: 1;
}
.mom-opacity-false {
  opacity: 0;
}
.mom-bg-primary-transparent {
  background-color: rgba(120, 194, 173, 0.15);
}