/*# sourceMappingURL=src/components/Page/Page.css.map */
.floating-button-component {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 68px;
  height: 68px;
  -webkit-animation-name: scaleRotateIn;
          animation-name: scaleRotateIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.floating-button-component:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 0 4px rgba(0,0,0,0.14), 0 4px 4px rgba(0,0,0,0.28);
}
.floating-button-component:hover i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.floating-button-component i {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: all 0.35s;
}
@-webkit-keyframes scaleRotateIn {
  0% {
    -webkit-transform: rotate(10deg) scale(0);
            transform: rotate(10deg) scale(0);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.4);
            transform: rotate(45deg) scale(1.4);
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}
@keyframes scaleRotateIn {
  0% {
    -webkit-transform: rotate(10deg) scale(0);
            transform: rotate(10deg) scale(0);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.4);
            transform: rotate(45deg) scale(1.4);
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}
/*# sourceMappingURL=src/components/FloatingButton/FloatingButton.css.map */
.checkbox-component {
  margin-left: 2px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
}
.checkbox-component.style-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.checkbox-component:hover i:after {
  opacity: 0.3;
}
.checkbox-component:hover input[type="checkbox"]:checked + i {
  background-color: #097c7c;
}
.checkbox-component label {
  display: flex;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}
.checkbox-component label input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}
.checkbox-component label input[type="checkbox"]:checked + i {
  background-color: #0cacab;
  border-color: #0cacab;
}
.checkbox-component label input[type="checkbox"]:checked + i:after {
  border-color: #fff;
  opacity: 1;
}
.checkbox-component label i {
  border-radius: 2px;
  background-color: #fff;
  align-self: center;
  margin-right: 5px;
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 1px solid #000;
  position: relative;
  transition: all 0.35s ease;
}
.checkbox-component label i:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  transition: all 0.2s;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  content: ' ';
  border: 2px solid #333;
  border-top: 0;
  border-left: 0;
}
.checkbox-component label span {
  font-size: 16px;
  line-height: 21px;
}
/*# sourceMappingURL=src/components/Checkbox/Checkbox.css.map */
