#anim-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

@keyframes C1 {
  0% {
    left: 10%; }
  50% {
    left: 5%; }
  100% {
    left: 10%; } }
  #anim-background .cloud1 {
    width: 120px;
    height: 50px;
    background-image: url(/cloud.svg);
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 400px;
    left: 30%;
    animation-name: C1;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out; }

@keyframes C2 {
  0% {
    left: 30%; }
  50% {
    left: 45%; }
  100% {
    left: 30%; } }
  #anim-background .cloud2 {
    width: 170px;
    height: 55px;
    background-image: url(/doublecloud.svg);
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 80%;
    animation-name: C2;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out; }

@keyframes C3 {
  0% {
    left: -100px; }
  100% {
    left: 110%; } }
  #anim-background .cloud3 {
    width: 170px;
    height: 60px;
    background-image: url(/cloud.svg);
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 60px;
    left: -100px;
    animation-name: C3;
    animation-duration: 80s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: -1; }

@keyframes C4 {
  0% {
    left: 90%; }
  100% {
    left: -90px; } }
  #anim-background .cloud4 {
    width: 180px;
    height: 65px;
    background-image: url(/cloud.svg);
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 500px;
    left: 0px;
    animation-name: C4;
    animation-duration: 120s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }

.mathOps-container {
  display: inline-block; }
  .mathOps-container .mathOpts-selected-btn {
    width: 30px;
    height: 28px;
    background-color: #7aa966;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
    border-radius: 2px; }

.mathOps-btn-container {
  display: flex;
  flex-direction: column;
  background-color: #7aa966;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 2px; }
  .mathOps-btn-container .mathOps-btn {
    width: 30px;
    height: 28px;
    background-color: #7aa966;
    cursor: pointer; }
    .mathOps-btn-container .mathOps-btn.active {
      background-color: #8abe74;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
      border-radius: 2px; }

.mathOps-btn-add {
  background: url(/sum.svg) center no-repeat; }

.mathOps-btn-subtract {
  background: url(/minus.svg) center no-repeat; }

.mathOps-btn-multiply {
  background: url(/multiply.svg) center no-repeat; }

.mathOps-btn-divide {
  background: url(/divide.svg) center no-repeat; }

.cp-input-container {
  display: flex;
  width: 100%;
  height: 28px;
  margin: 10px 0; }
  .cp-input-container .cp-math-ops {
    margin-right: 12px; }
  .cp-input-container .cp-input {
    display: flex;
    flex: 1; }
    .cp-input-container .cp-input .cp-input-price-icon-btn {
      display: grid;
      place-content: center;
      height: 29px;
      width: 29px;
      background-color: #5e1cb5;
      cursor: pointer;
      color: #fff;
      border-radius: 2px 0 0 2px;
      font-weight: 600; }

.expandable-row-container {
  background-color: #f9f9f9;
  border-left: 6px solid #5e1cb5;
  padding: 25px 0px; }
  .expandable-row-container .expandable-row-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
    margin-left: 25px; }
  .expandable-row-container .expandable-row-body {
    width: 100%;
    display: flex; }
    .expandable-row-container .expandable-row-body .expandable-component {
      padding: 0 15px;
      border-left: 1px solid #e1e1e1; }
      .expandable-row-container .expandable-row-body .expandable-component:first-child {
        border-left: none; }
      .expandable-row-container .expandable-row-body .expandable-component.rowDatatable {
        flex: 1;
        overflow-x: auto; }
      .expandable-row-container .expandable-row-body .expandable-component .info-container .info-title {
        height: 30px;
        font-weight: 600;
        font-size: 14px;
        line-height: 18px; }
      .expandable-row-container .expandable-row-body .expandable-component .info-container .info-data {
        font-size: 14px;
        line-height: 24px; }
      .expandable-row-container .expandable-row-body .expandable-component .form-container .form-title-wrapper {
        padding-left: 10px;
        height: 30px;
        font-weight: 600;
        font-size: 14px;
        line-height: 18px; }
  .expandable-row-container .expandable-action-buttons {
    display: flex;
    justify-content: flex-end;
    padding: 10px 24px; }
    .expandable-row-container .expandable-action-buttons .btn {
      margin-left: 20px; }

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 408px);
  grid-gap: 28px;
  justify-content: center; }


.multi-input-add {
  height: 15px;
  font-size: 14px;
  line-height: 14px;
  color: #5e1cb5;
  cursor: pointer; }

.multi-input-delete {
  cursor: pointer;
  margin-top: 1.1rem; }

.validation-error {
  color: #D34A46; }

.hawk-component-screen-lite {
  width: 100%; }

.components-container-lite {
  width: 100%;
  padding: 20px;
  overflow-y: auto;
  margin-bottom: 40px; }
  .components-container-lite-action {
    padding-left: 15px; }


/*# sourceMappingURL=38.ec51c07dbbece1ebcef6.css.map*/