﻿.questionnaire-node .custom-attributes .date-input-mask .date-input-mask-fields input
{
    width: auto;
}

/***Floating CTA***/

.floating-cta {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999;
}

  .floating-cta a {
    display: flex;
    height: 70px;
    width: 70px;
    font-size: 11px;
    line-height: 12px;
    background: var(--theme-3);
    border-radius: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: 500;
    gap: 3px;
    position: relative;
    transition: all 0.4s ease-out;
  }

    .floating-cta a i {
      font-size: 20px;
    }

    .floating-cta a .fa-plus {
      background: var(--theme-3);
      font-size: 12px;
      padding: 2px;
      position: absolute;
      top: 18px;
      left: 16px;
      border-radius: 100%;
    }

    .floating-cta a:hover {
      background: var(--theme);
    }
