.fc--form {
  display: flex;
  flex-direction:column
;
}

.fc--form__controls {
  flex: 1 1 auto;
}

.fc--form__actions {
  flex: 0 0 auto;
}
.fc--form-controls-wrapper {
  display:flex;
  align-items:center;
  flex-direction:row
;
  gap: 16px;
}
.fc--align-left-horizontally,
.fc--align-top-vertically {
  justify-content:start;
}
.fc--align-center-horizontally,
.fc--align-center-vertically {
  justify-content:center;
}
.fc--align-right-horizontally,
.fc--align-bottom-vertically {
  justify-content:end;
}
.fc--control-button {font-family:Arial, Helvetica, sans-serif !important;font-size:14px;font-weight:regular;padding: 16px 48px 16px 48px;
border-radius: 20px 20px 20px 20px;
  width: 100%;
  width: auto;box-sizing: content-box;

  box-sizing: border-box;
  overflow: auto;
  
}
.fc--submit-button {            margin: calc(0px - 2px);;
  background-color:#f0475c;
  color:#FFFFFF;border:none;}
.fc--submit-button:hover{            margin: calc(0px - 2px);;
  background-color: #c01d32;
  color:#FFFFFF;border:none;}
.fc--cancel-button{
  background-color: ;
  color:#047970;border:none;}
.fc--cancel-button:hover{
  background-color: #065B54;
  color:#FFFFFF;border:none;}
@media screen and (max-width: 480px) {
 .fc--form-controls-wrapper {
   flex-direction: column-reverse;
 }
 .fc--control-button {
    width: 100%;
    box-sizing: border-box;
 }
}

.fc--loading-basic-wrapper .fc--loading__svg circle {
    stroke-linecap: round;
}

.fc--loading__svg{    
  display: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font: inherit;
  box-sizing: border-box;
  fill: transparent;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 690ms;
  animation-duration: 690ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  width: 14px;
}

.fc--loading__svg circle {
    stroke-width: 15;
    stroke-linecap: butt;
    stroke-dasharray: 240;
}

.fc--loading__stroke {
    stroke: #FFFFFF;
    stroke-dashoffset: 40;
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

    .fc--form * {
      box-sizing: border-box;
    }
    div,
    p,
    a,
    li,
    td {
      -webkit-text-size-adjust: none;
      -ms-text-size-adjust: none;
    }

    p {
      margin: 0;
    }

    #outlook a {
      padding: 0;
    }

    .fc--form {font-family:Arial, Helvetica, sans-serif;background-color:#ffffff;
max-width: 640px;box-sizing: content-box;

      box-sizing: border-box;
      padding: 20px 20px 20px 20px;
      margin: auto;
      overflow-wrap: break-word;
    }

    @media screen and (max-width: 480px) {
      .fc--form {
        padding-top: min(24px, 20px);
        padding-bottom: min(24px, 20px);
        padding-left: min(24px, 20px);
        padding-right: min(24px, 20px);
        display: grid !important;
      }
    }

    .fc--form h1,
    .fc--form h2,
    .fc--form h3,
    .fc--form h4,
    .fc--form h5,
    .fc--form h6 {    font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #ffffff;    }

    .fc--heading-1 {  font-family: Arial, Helvetica, sans-serif;
font-weight: bold;font-size: 40px;
color: #ffffff;    }

    .fc--heading-2 {  font-family: Arial, Helvetica, sans-serif;
font-weight: bold;font-size: 32px;
color: #ffffff;    }

    .fc--heading-3 {  font-family: Arial, Helvetica, sans-serif;
font-weight: bold;font-size: 28px;
color: #ffffff;    }

    .fc--heading-4 {  font-family: Arial, Helvetica, sans-serif;
font-weight: bold;font-size: 24px;
color: #ffffff;    }

    .fc--heading-5 {  font-family: Arial, Helvetica, sans-serif;
font-weight: bold;font-size: 20px;
color: #ffffff;    }

    .fc--heading-6 {  font-family: Arial, Helvetica, sans-serif;
font-weight: bold;font-size: 16px;
color: #ffffff;    }

    .fc--columns {
      display: grid;
      row-gap: 1rem;
    }

    .fc--column-content {
      width: auto;
    }

    .fc--columns-1 {
      grid-template-columns: repeat(1, minmax(100%, 1fr));
    }

    .fc--columns-2 {
      grid-template-columns: repeat(2, minmax(50%, 1fr));
    }

    .fc--columns-3 {
      grid-template-columns: repeat(3, minmax(33.333%, 1fr));
    }

    @media screen and (max-width: 480px) {
      .form-wrapper {
        min-width: 360px;
      }
      .fc--columns-2,
      .fc--columns-3 {
        grid-template-columns: repeat(1, minmax(100%, 1fr));
      }
    }

    .fc--section {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(0, 1fr);
    }
    .fc--layout-2-col {
      grid-template-columns: repeat(2, 1fr);
    }
    .fc--layout-2-col-4-8 {
      grid-template-columns: 1fr 2fr;
    }
    .fc--layout-2-col-8-4 {
      grid-template-columns: 2fr 1fr;
    }
    .fc--layout-3-col {
      grid-template-columns: repeat(3, 1fr);
    }
    .fc--layout-3-col-6-3-3 {
      grid-template-columns: 2fr 1fr 1fr;
    }
    .fc--layout-3-col-3-6-3 {
      grid-template-columns: 1fr 2fr 1fr;
    }
    .fc--layout-3-col-3-3-6 {
      grid-template-columns: 1fr 1fr 2fr;
    }
    .fc--layout-4-col {
      grid-template-columns: repeat(4, 1fr);
    }

    @font-face {
        font-family: 'Twemoji Country Flags';
        unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
        src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');
    }

    @media screen and (max-width: 480px) {
      .fc--section {
        display: flex;
        flex-direction: column;
      }
    }

    @media screen and (max-width: 480px) {
      .fc--block, .fc--section {
        padding-right: 0 !important;
        padding-left: 0 !important;
      }

      .fc--block__element {
         padding-right:16px !important;
         padding-left: 16px !important;
       }
    }

    .fc--block-label-wrapper {
      display: flex;
      width: 100%;
    }

    .fc--block-label {
      color: #ffffff;
      margin-bottom: 5px;
      font-size: 12px;
      font-weight:regular;
      letter-spacing: 0.32px;
      display: inline-block;
      vertical-align: baseline;
      line-height: 14px;
      min-height: 1rem;
    }

    .fc--tooltip {
      margin-left: 0.5rem;
      position: relative;
      display: inline-block;
      cursor: pointer;
    }
     .fc--tooltip svg path {
      fill: #5A5D77;
    }

    .fc--tooltip .fc--tooltip-text {
      visibility: hidden;
      box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%);
      width: max-content;
      max-width: 18rem;
      background: #f3f3f4;
      padding: 1rem;
      border-radius: 0.125rem;
      word-wrap: break-word;
      color: #ffffff;
      text-align: left;
      position: absolute;
      z-index: 1;
      right: -167px;
      margin-top: 0.5rem;
      left: 45px;
      margin-left: -60px;
      opacity: 1;
      top: 15px;
      font-size: 14px;
    }

    .fc--tooltip .fc--tooltip-text::after {
      content: "";
      position: absolute;
      margin-top: 0.5rem;
      bottom: 100%;
      left: 23px;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent #f3f3f4 transparent;
    }

    .fc--tooltip:hover .fc--tooltip-text {
      visibility: visible;
      opacity: 1;
    }

    .fc--toggle-wrapper {
      display: flex;
      align-items: start;
      padding: 2px;     }

     .fc--toggle-switch-wrapper {
       height: 14px;
       display: flex;
       align-items: center;
    }

    .fc--toggle-switch {
      position: relative;
      display: inline-block;
      min-width: 3rem;
      height: 1.5rem;
    }

    .fc--toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .fc--toggle-icon {
      position: absolute;
      left: 0.625rem;
      width: 0.75rem;
      height: 0.75rem;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 10;
    }

    .fc--toggle-slider {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #898B9E;
      -webkit-transition: transform 70ms cubic-bezier(0.2, 0, 1, 0.9), -webkit-transform 70ms cubic-bezier(0.2, 0, 1, 0.9);
      transition: transform 70ms cubic-bezier(0.2, 0, 1, 0.9), -webkit-transform 70ms cubic-bezier(0.2, 0, 1, 0.9);
      box-shadow: 0 0 0 1px transparent, 0 0 0 3px transparent;    }

    .fc--toggle-slider:before {
      position: absolute;
      content: "";
      height: 1.125rem;
      width: 1.125rem;
      left: 0.1875rem;
      bottom: 0.1875rem;
      background-color: #FFFFFF;
      -webkit-transition: transform 70ms cubic-bezier(0.2, 0, 1, 0.9), -webkit-transform 70ms cubic-bezier(0.2, 0, 1, 0.9);
      transition: transform 70ms cubic-bezier(0.2, 0, 1, 0.9), -webkit-transform 70ms cubic-bezier(0.2, 0, 1, 0.9);
    }

    .fc--toggle-switch:focus .fc--toggle-slider {  outline-color:#29AB87;
  outline-width:1px;
  outline-style: solid;    }

    input:checked+.fc--toggle-slider {
      background-color: #29AB87;
    }

    input:focus+.fc--toggle-slider {
      box-shadow: 0 0 1px #29ab87;
    }

    input:checked+.fc--toggle-slider:before {
      -webkit-transform: translateX(1.5rem);
      -ms-transform: translateX(1.5rem);
      transform: translateX(1.5rem);
    }

    input:disabled+.fc--toggle-slider {
      background-color: #E6E7E9;
      border-color: #B6B6BC;
    }

    .fc--toggle-slider.fc--round {  border-radius: 12px 12px 12px 12px;    }

    .fc--toggle-slider.fc--round:before {
      border-radius: 50%;
    }

    .fc--toggle-text {
      position: relative;
      margin-left: 0.5rem;
      overflow: auto;
      word-break: break-word;font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#ffffff;
line-height: 14px; 
letter-spacing: 0.16px;
    }

    .fc--disclaimer-text {
      margin-top: 0.5rem;
      background-color: #F3F3F4;
      padding: 12px 16px 12px 16px;
    }

    .fc--input {  background-color: #F3F3F4;      padding: 12px 16px 12px 16px;min-height: 14px;border: none;
  border-radius: 0px 0px 0px 0px;  font-weight: regular; 
  font-size: 12px;
  color: #000000;font-family:Arial, Helvetica, sans-serif;      width: 100%;     }

    .fc--input::placeholder {  color: #B8B9C5;    }

    .fc--input:focus {  outline-color:#29AB87;
  outline-width:1px;
  outline-style: solid;    }

    .fc--input:disabled {
      background: #E6E7E9;
      border-color: #E9E9E9;
      color: #B6B6BC;
    }

    .fc--control-invalid .fc--input,
    .fc--control-invalid .fc--dropdown__field,
    .fc--control-invalid .fc--checkbox-indicator,
    .fc--control-invalid .fc--radio-indicator,
    .fc--control-invalid .fc--toggle-slider {
      outline: 2px solid #f0475c !important;
      outline-offset: -2px;
    }

    .fc--control-invalid .fc--checkbox-indicator:hover {
      box-shadow: 0 0 2px 0 #f0475c;
    }

    .fc--control-invalid svg {
      fill: #f0475c !important;
      position: relative;
    }
    .fc--block-text-input-icon-wrapper {
      display: flex;
      position: absolute;
      top: 0.75rem;
      right: 1rem;
    }
    
    .fc--control-errors {
      display: block;
      overflow: visible;
      max-height: 12.5rem;
      background-color: #f0475c;
	  color: #ffffff;
      font-family: 'National 2', sans-serif;
      font-size: .75rem;
      font-weight: 400;
      letter-spacing: .32px;
    }
    .fc--control-error {
      color: inherit;
      padding: 0.3rem 0rem 0rem 0rem;
    }

    .fc--block-text-input-wrapper {
      position: relative;
      display: flex;
      width: 100%;
      height: 100%;
    }

    .fc--block-text-input-icon {
      fill: transparent;
      position: relative;
    }

    .fc--checkbox {
      display: block;
      position: relative;
      padding-left: 30px;
      padding-right: 1rem;
      padding-top: 2px;
      margin-bottom: 0;
      margin-left: 5px;font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#ffffff;
line-height: 14px; 
letter-spacing: 0.16px;
    }

    .fc--checkbox input {
      position: absolute;
      z-index: -1;
      opacity: 0;
    }

    .fc--checkbox-indicator, .fc--sms-checkbox-indicator {
      position: absolute;
      top: 2px;
      left: 0;
      height: 16px;
      width: 16px;
      background: #FFFFFF;    border-width: 2px;
    border-style: solid;
    border-color: #5A5D77;
  border-radius: 0px 0px 0px 0px;    }
    .fc--checkbox:hover .fc--checkbox-indicator, .fc--checkbox:hover .fc--sms-checkbox-indicator {
      box-shadow: 0px 0px 2px 0px;
    }
    .fc--checkbox-indicator:focus, .fc--sms-checkbox-indicator:focus {  outline-color:#29AB87;
  outline-width:1px;
  outline-style: solid;    }

    .fc--checkbox input:checked~.fc--checkbox-indicator, .fc--checkbox input:checked~.fc--sms-checkbox-indicator {
      background: #5A5D77;
      border-color: #5A5D77;
    }

    .fc--checkbox input:disabled~.fc--checkbox-indicator, .fc--checkbox input:disabled~.fc--sms-checkbox-indicator {
      background: #B6B6BC;
      opacity: 0.6;
      border-color: #ffffff;
    }

    .fc--checkbox-indicator:after, .fc--sms-checkbox-indicator:after {
      box-sizing: unset;
      content: '';
      position: absolute;
      display: none;
    }

    .fc--checkbox input:checked~.fc--checkbox-indicator:after, .fc--checkbox input:checked~.fc--sms-checkbox-indicator:after {
      display: block;
    }

    .fc--checkbox-label .fc--checkbox-indicator:after, .fc--checkbox-label .fc--sms-checkbox-indicator:after {
      left: 5px;
      top: 1px;
      width: 3px;
      height: 8px;
      border: solid #ffffff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .fc--checkbox-label input:disabled~.fc--checkbox-indicator:after, .fc--checkbox-label input:disabled~.fc--sms-checkbox-indicator:after {
      border-color: #7b7b7b;
    }

    .fc--checkbox-label.fc--checkbox-select-all, .fc--toggle-switch-wrapper.fc--toggle-select-all  {
      margin-bottom: 16px;
    }

    .fc--checkbox-value {font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#ffffff;
line-height: 14px; 
letter-spacing: 0.16px;
      word-break: break-word;
    }

    .fc--radio input[type=radio] {
      visibility: hidden;
      pointer-events: none;
      position: absolute;
    }
    .fc--radio.fc--radio-label {
      align-items: baseline;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      margin-left: 5px;
      margin-bottom: 0;
      padding-right: 1rem;
    }
    .fc--radio-indicator {
      background: #FFFFFF;
      border-radius: 50%;    border-width: 2px;
    border-style: solid;
    border-color: #5A5D77;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      height: 1rem;
      justify-content: center;
      justify-self: start;
      position: relative;
      width: 1rem;
      min-width: 1rem;
    }
    .fc--radio-value {
      margin-left: 14px;font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#ffffff;
line-height: 14px; 
letter-spacing: 0.16px;
      word-break: break-word;
      white-space: break-spaces;
    }
    .fc--radio:hover .fc--radio-indicator {
      box-shadow: 0px 0px 2px 0px;
    }

    .fc--radio input:disabled ~ .fc--radio-indicator {
      background: #B6B6BC;
      opacity: 0.6;
      border-color: #ffffff;
    }
    .fc--radio input ~ .fc--radio-indicator::before {
      align-self: center;
      border-radius: 50%;
      content: '';

      height: 0.5rem;
      justify-self: center;
      width: 0.5rem;
    }
    .fc--radio input:checked ~ .fc--radio-indicator::before {
      background: #5A5D77;
    }
    .fc--radio input:checked ~ .fc--radio-indicator {
      border-color: #5A5D77;
    }

    .fc--radio-indicator:focus {  outline-color:#29AB87;
  outline-width:1px;
  outline-style: solid;    }

    .fc--radio,
    .fc--checkbox {     }

    .fc--dropdown {  font-weight: regular; 
  font-size: 12px;
  color: #ffffff;font-family:Arial, Helvetica, sans-serif;       position: relative;
    }

    .fc--dropdown > select {
      visibility: hidden;
      position: absolute;
    }

    .fc--dropdown__field-value {
      text-overflow: ellipsis;
      overflow: hidden;
      flex: 0 1 auto;
    }

    .fc--dropdown__field > img, .fc--phone-dropdown__field > img {
      flex: 0 1 auto;
      transition: transform 70ms linear;
      height: 12px;
    }

    .fc--dropdown__menu {
      display: none;
      box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      list-style: none;
      padding: 0;
      margin: 0;
      overflow-y: auto;
      max-height: 15rem;
    }
    .fc--phone-dropdown__menu--list{
        list-style: none;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 20rem;
    }
    .fc--dropdown__field,
    .fc--phone-dropdown__field,
    .fc--dropdown__menu-item {
      outline: 2px solid transparent;
      width: 100%;
      cursor: pointer;
    }

    .fc--dropdown__field,
    .fc--phone-dropdown__field {  background-color: #F3F3F4;  font-weight: regular; 
  font-size: 12px;
  color: #ffffff;font-family:Arial, Helvetica, sans-serif;min-height: 14px;     }
    .fc--dropdown__menu-item, .fc--phone-search {
        background-color: #F3F3F4;
    }
    .fc--dropdown__menu-item {
        font-size: 14px;
        color: #ffffff;
        min-height: 16px;
        box-sizing: content-box;
    }

    .fc--dropdown__menu-item:hover {
      background: #E7E8EC;
    }

    .fc--dropdown__menu-item-disabled {
      cursor: not-allowed;
      color: #b6b6bc;
    }

    .fc--dropdown__field, .fc--phone-dropdown__field {  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;border: none;
  border-radius: 0px 0px 0px 0px;      padding: 12px 16px 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .fc--dropdown__menu-item {
        padding: 12px 16px;
    }

    .fc--dropdown__field:focus,
    .fc--phone-dropdown__field:focus,
    .fc--phone-default__item:focus,
    .fc--dropdown__menu-item:focus {  outline-color:#29AB87;
  outline-width:1px;
  outline-style: solid;    }

    .fc--dropdown__menu-divider {
      margin-left:16px;
      margin-right:16px;
      background-color:#DCDCDC;
      height: 1px;
      opacity: 0.5;
      margin-top: 0;
      margin-bottom: 0;
    }

    .fc--dropdown__menu-divider:first-child,
    .fc--dropdown__menu-divider:last-child {
      display: none;
    }
    .fc--dropdown__menu.fc__dropdown-up{
        top: 0;
        transform: translateY(-100%);
    }
    .fc--dropdown__menu.fc__dropdown-down{
        top: 100%;
        transform: none;
    }

    .fc--dropdown--open {
      z-index: 1;
    }

    .fc--dropdown--open > .fc--dropdown__field > img,
    .fc--dropdown--open > .fc--phone-dropdown__field > img {
      transform: rotate(180deg);
    }

    .fc--dropdown--open .fc--dropdown__menu, .fc--dropdown--open .fc--phone-search {
      display: block;
    }

    .fc--date-wrapper {
      display:flex;
      position:relative;
    }

    .fc--date-wrapper div:nth-child(2) {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
    }

    .fc--date-wrapper div:nth-child(1) {
      width: 100%;
      display: flex;
    }

    .fc--date-wrapper label {
      position: absolute;
      display: flex;
      right: 0;
      margin-top: 12px;
      margin-right: 16px;     }

    .fc--date-wrapper img {
      height: 12px;
    }

    .fc--date-wrapper input.fc--date-picker-default-value {
      position: absolute;
      opacity: 0;
      top: 0;
      margin-top: -12px;
      right: -16px;
      z-index: 1;
      width: calc(16px + 12px);
      min-width: 12px;
      padding-left: 0;
    }

    .fc--date-wrapper input.fc--text-default-value {  text-overflow: ellipsis;
  padding-right: calc(16px + 12px);    }

    .fc--date-wrapper input.fc--date-picker-default-value::-webkit-calendar-picker-indicator {
      position: absolute;
      top: -150%;
      left: -150%;
      width: 300%;
      height: 300%;
      cursor: pointer;
    }

    .fc--number-input-wrapper {
      position: relative;
      width: 100%;
      display: flex;
    }

    .fc--number-input-wrapper input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .fc--number-input-wrapper input[type=number] {
      -moz-appearance: textfield;
      font-family:Arial, Helvetica, sans-serif;  text-overflow: ellipsis;
  padding-right: calc(16px + 12px);    }

    .fc--number-input-wrapper .fc--number__controls {
      position: absolute;
      right: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-right: 16px;
      height: 100%;     }

    .fc--number-input-wrapper .fc--number__control-btn {
      cursor: pointer;
      background:none;
      border: 0;
      display: flex;
      position:relative;
    }

    .fc--number-input-wrapper .fc--number__control-btn img {
      height: calc(12px / 4);
      position: relative;
    }

    .fc--number-input-wrapper button.fc--arrow-up {
      padding-top: 12px;
    }

    .fc--number-input-wrapper button.fc--arrow-down {
       padding-bottom: 12px;
    }

    .fc--number-input-wrapper .fc--arrow-up img {
      top: 50%;
    }

    .fc--number-input-wrapper .fc--arrow-down img {
      top: -50%;
    }

    .fc--html {
      pointer-events: none;
    }

    .fc--html img {
      max-width: 100%;
    }

    .fc--html a {
      pointer-events:auto;
      text-decoration: none;
    }

    @media screen and (max-width: 480px) {
      .displayNone {
        display: none !important;
      }
      .show-on-mobile {
        display: block !important;
      }

      .hide-on-mobile {
        display: none !important;
      }

      .layout-body .hide-on-desktop {
        display: block !important;
      }
    }

    @media screen and (min-width: 480px) {
      .show-on-mobile {
        display: none !important;
      }

      .hide-on-mobile {
        display: block !important;
      }

      .layout-body .hide-on-desktop {
        display: none !important;
      }
    }

    .fc--no-options-warning {
      color: #ffffff;
      letter-spacing: 0.32px;
      line-height: 1rem;
      font-size: 0.75rem;
      font-style: italic;
    }

    .fc--toast__container {
      left: 50%;
      transform: translateX(-50%);
      position: absolute;
      width: 100%;
      min-width: 18rem;
      max-width: 38rem;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .fc--block-error {
      border: 1px solid #f0475c;
    }
    .fc--recaptcha{
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        border-radius: 3px;
        padding: 8px 10px;
        background: #FAFAFA;
        color: #000000;
        border: 1px solid #d3d3d3;
        display: flex;
    }
    .fc--recaptcha.normal {
        width: 302px;
        align-items: center;
        justify-content: space-between;
    }
    .fc--recaptcha.compact{
        width: 158px;
    }

    .fc--recaptcha.dark {
        background: #222;
        border: 1px solid #525252;
        color: #FFFFFF;
    }
    .fc--recaptcha-body{
        display: flex;
        align-items: center;
    }
    .fc--recaptcha-body.compact{
        margin: 20px 0;
    }
    .fc--recaptcha-text{
        font-weight: 500;
        font-size: 14px;
    }

    .fc--recaptcha-checkbox{
        width: 28px;
        height: 28px;
        background: #FFFFFF;
        border: 2px solid #C1C1C1;
        border-radius: 2px;
        margin-right: 12px;
    }
    .fc--recaptcha-privacy-image{
        display: block;
        margin: 0 auto 5px;
    }

    .fc--recaptcha-privacy-image.compact{
        width: 24px;
        height: 24px;
        margin: 0 2px 0 0;
    }
    .fc--recaptcha-privacy-block.compact{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fc--recaptcha-privacy-text{
        padding-top: 3px;
        margin: 0;
        font-size: 8px;
        color: #555;
        line-height: 8px;
        text-align: center;
    }
    .fc--recaptcha-privacy-block-text{
        margin: 0;
        font-size: 10px;
        color: #555;
        line-height: 10px;
        text-align: center;
    }
    .fc--recaptcha-privacy-text.dark, .fc--recaptcha-privacy-block-text.dark{
        color: #f5f5f5;
    }

    .fc--recaptcha-error {
      display: none;
      background-color: #f0475c;
	  color: #ffffff;
      line-height: 1rem;
      font-size: 0.75rem;
      margin-top: 0.375rem;
    }

    .fc--recaptcha-mock {
      pointer-events: none;
    }
    .fc--input--wrap {
        flex: 1;
        height: 100%;
    }
    .fc--input--wrap input{
        min-height: 40px;
    }

    .fc--phone-element {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px;
    }

    .fc--phone-dropdown {
        min-height: 44px;
        min-width: 120px;
        height: 100%;
    }

    .fc--phone-default__item{
        min-height: 44px;
        display: flex;
        margin-right: 4px;
        min-width: 105px;
        background-color: #F3F3F4;
        padding: 10px 14px;
    }
    .fc--phone-dropdown__item {
        display: flex;
        align-items: center;
        position: relative;
        overflow: visible;
    }
    .fc--dropdown__menu-item--active{
        background: #e7e8ec;
    }
    .fc--dropdown__menu-item--active:hover{
        background: #d9dae0;
    }
    .fc--phone-dropdown__flag {
        font-family: "Twemoji Country Flags";
        height: 24px;
        font-size: 28px;
        line-height: 100%;
        margin-right: 8px;
        position: absolute;
    }
    .fc--phone-dropdown__number{  font-weight: regular; 
  font-size: 12px;
  color: #ffffff;font-family:Arial, Helvetica, sans-serif;        padding-left: 40px;
    }
    .fc--phone-dropdown__field {
         height: 100%;
         min-height: 40px;
    }
    .fc--phone-dropdown__menu{
        max-height: 23rem;
    }

    .fc--phone-search{
        padding: 4px 8px 0 8px;
    }
    .fc--phone-search__input {
        border: none;
        font-size: 14px;
        width: 100%;
        padding: 10px 10px 10px 32px;
        background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 10px center;
        background-size: 14px 14px;
    }

    .fc--phone-search__input:focus {
        outline: 2px solid #29ab87;
        outline-offset: -2px;
    }
    .fc--phone-search__input::placeholder {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.16px;
        color: #B8B9C5;
    }

     div.fc--phone-default__item{  background-color: #F3F3F4;border: none;
  border-radius: 0px 0px 0px 0px;         min-height: 40px;
         height: 100%;
         padding: 12px 16px 12px 16px;
         position: relative;
    }

    .fc--phone-dropdown__menu-divider{
        margin-top: 5px;
        margin-left:16px;
        margin-right:16px;
        background-color:#DCDCDC;
        height: 1px;
        opacity: 0.5;
        margin-bottom: 0;
    }
    .fc--phone-dropdown__menu-no-items{
        margin: 0;
        padding: 8px 6px;
        line-height: 18px;
        letter-spacing: 0.16px;
    }

    .fc--phone--input{
      display: none;
    }

    .fc--cookie-disclaimer {
      box-sizing: border-box;
      padding: 24px 64px;
      background: #ffffff;
      bottom: 0;
      position: fixed;
      font-family: 'National 2', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 18px;
      box-shadow: 0px -1px 4px #b6b6bb;
      width: 100%;
      word-break: break-word;
      display: none;
    }

    .fc--cookie-button {
      text-align: center;
      letter-spacing: 0.16px;
      padding: 16px 32px;
      box-sizing: border-box;
      overflow: auto;
      border: none;
      
    }

    .fc--cookie-button--disabled {
      background-color: #B6B6BC;
      color: #85868F;
      pointer-events:none;
    }

    .fc--cookie-button--enabled {
      background-color: #046961;
      color: #FFFFFF;
      cursor: pointer;
    }

    .fc--cookie-checkbox {
      margin: 32px 0 16px 0;
    }

    .fc--cookie-checkbox input:checked~.fc--checkbox-indicator {
      background: #5A5D77;
      border-color: #5A5D77;
    }

    .fc--cookie-checkbox input:disabled~.fc--checkbox-indicator {
      background: #B6B6BC;
      border-color: #ffffff;
    }

    .fc--cookie-checkbox-indicator {
      background: #FFFFFF;
      border-radius: inherit;
      border: 1px solid #5A5D77;
    }

    .fc--cookie-checkbox-indicator:focus {
      outline: #29AB87 solid 1;
    }

    .fc--cookie-link {
      color: #047970;
      text-decoration: none;
      cursor: pointer;
    }

    .fc--no-event:active {
        pointer-events: none;
    }

    .fc--block-visible {
        border: 1px dashed #B8B9C5;
        position: relative;
    }

    .fc--block-visible:after {
        content: '';
        background:url(https://content-eu-1.content-cms.com/e7dc6871-4793-4459-be41-766c568b186d//acoustic/form/images/visibility-icon.svg);
        background-size: 16px 16px;
        position: absolute;
        width: 16px;
        height: 16px;
        margin-left: -8px;
        top: 40%;
        left: 0;
    }

    .fc--block-hidden {
        visibility: hidden;
        height: 0;
    }

    .fc--consent-checkbox {
      margin-top: 16px;
      margin-bottom: 16px;
    }

    .fc--consent-checkbox-label {
      margin-left: 0;
    }

    .fc--consent-group-toggle-label {
      display: flex;
      align-items: center;
      min-width: 2.8rem;
      height: 1.75rem;
      cursor: pointer;

      img {
        /*top: 8%;*/
        left: 0.45rem;
        transform: translateY(-95%);
      }

      @media screen and (max-width: 480px) {
        min-width: 2.5rem;
        input:checked+.fc--toggle-slider:before {
            transform: translateX(1.15rem) !important;
        }
      }
    }

    .fc--consent-group-table-cell-data {
      align-content: flex-end !important;
      display: table-cell; 
      .fc--checkbox.fc--checkbox-label.fc--checkbox-value {
        @media screen and (max-width: 480px) {
          left: 8px;
        }
      }
    }

    .fc--consent-group-table-cell-label {
      font-size: .875rem;
      font-weight: 400;
      letter-spacing: .16px;
      display: table-cell;
      padding: 0rem 0rem 0rem 0.8rem;
      text-align: left;
      vertical-align: middle;
    }
    .fc--block-consent-element {
      display: flex;
      @media screen and (max-width: 480px) {
          overflow: auto;
      }
    }

    .fc--consent-group-table {
      border-collapse: collapse;
      border-spacing: 0;
      width: 100%;

      th {
        font-size: 0.75rem;
        text-align: left;
        
        text-transform: capitalize;

        @media screen and (max-width: 480px) {
          font-size: 0.6rem;
        }
      }
      th,td {
            align-content: center;
            white-space: nowrap;
            padding-left: 0.8rem;
      }
      tr {
          height: 1.8rem;
      }

      hr {
        margin: 0rem !important;
        width: 100%;
        height: 1px;
        background: #e7e8ec;
      }
      tbody {
        tr {
          td:nth-child(4) {
            div.fc--checkbox-indicator {
              @media screen and (max-width: 480px) {
                left: -23px;
              }
            }
          }
        }
        tr:last-of-type {
          border: none !important;
        }
      }

      .fc--toggle-slider:before {
        bottom: 0.1rem;
        height: 1rem;
        width: 1rem;
      }
      .fc--checkbox-indicator {
        top: -20px;
        @media screen and (max-width: 480px) {
          left: -10px;
        }
      }

      .fc--checkbox-value {
        font-size: 0.75rem;
        position: absolute;
        top: -19px;
        @media screen and (max-width: 480px) {
          font-size: 0.6rem;
          padding: 0rem 0.8rem 0rem 0.8rem;
          left: -4px;
        }
      }

      .fc--toggle-text { 
        font-size: 0.75rem;
        padding: 0 0 0.5rem;
        @media screen and (max-width: 480px) {
          font-size: 0.6rem;
        }
      }
    }
    
    .fc--consent-group-toggle {
      top: -1px;
      bottom: 10px;
    }
    .fc--consent-group-table-head {
      font-weight: 600;
      th:first-of-type {
        white-space: normal;
        max-width: 2rem;
        padding: 0rem 0rem 0rem 0.8rem;
      }
      td:nth-child(4) {
        label.fc--checkbox.fc--checkbox-label {
          span.fc--checkbox-value {
            @media screen and (max-width: 480px) {
              left: -16px;
            }
          }
          div.fc--checkbox-indicator {
            @media screen and (max-width: 480px) {
              left: -23px;
            }
          }
        }
      }
    } 
    .fc--consent-block-tool-tip {
      padding: 0.4rem 0rem;
      width: fit-content;
    }