<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset styles */

.field {
    --uiFieldPlaceholderColor: var(--fieldPlaceholderColor, #ffffff);
  }
  
  .field__input {
    background-color: transparent;
    border-radius: 0;
    border: none;
  
    -webkit-appearance: none;
    -moz-appearance: none;
  
    font-family: inherit;
    font-size: 1em;
  }

  .field__input:disabled {
    color: #999;
  }
  
  .field__input:focus::-webkit-input-placeholder {
    color: var(--uiFieldPlaceholderColor);
  }
  
  .field__input:focus::-moz-placeholder {
    color: var(--uiFieldPlaceholderColor);
    opacity: 1;
  }
  
  /* Core styles */
  
  .custom-field {
    display: inline-block;
  }
  
  .custom-field__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }
  
  .custom-field__input:focus {
    outline: none;
  }
  
  /* Presentation styles */
  
  /* custom-field */
  
  .custom-field {
    --uiFieldHeight: var(--fieldHeight, 40px);
    --uiFieldBorderWidth: var(--fieldBorderWidth, 2px);
    --uiFieldBorderColor: var(--fieldBorderColor);
    --uiFieldInputColor: var(--fieldInputColor, #ffffff);
    --uiFieldLabelColor: var(--fieldLabelColor, #ffffff);
  
    --uiFieldFontSize: var(--fieldFontSize, 1em);
    --uiFieldHintFontSize: var(--fieldHintFontSize, 1em);
  
    --uiFieldPaddingRight: var(--fieldPaddingRight, 15px);
    --uiFieldPaddingBottom: var(--fieldPaddingBottom, 15px);
    --uiFieldPaddingLeft: var(--fieldPaddingLeft, 15px);
  
    position: relative;
    box-sizing: border-box;
    font-size: var(--uiFieldFontSize);
    padding-top: 1.5em;
  }
  
  .custom-field__input {
    height: var(--uiFieldHeight);
    padding: 0 var(--uiFieldPaddingRight) 0 var(--uiFieldPaddingLeft);
    border-bottom: var(--uiFieldBorderWidth) solid var(--uiFieldBorderColor);
    color: var(--uiFieldInputColor);
  }
  
  .custom-field__input::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  
  .custom-field__input::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  
  .custom-field__input:not(:placeholder-shown)
    ~ .custom-field__label-wrap
    .custom-field__label {
    opacity: 0;
    bottom: var(--uiFieldPaddingBottom);
  }
  
  .custom-field__input:focus::-webkit-input-placeholder {
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  .custom-field__input:focus::-moz-placeholder {
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  .custom-field__label-wrap {
    box-sizing: border-box;
    width: 100%;
    height: var(--uiFieldHeight);
  
    pointer-events: none;
    cursor: text;
  
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .custom-field__label {
    position: absolute;
    color: var(--uiFieldLabelColor);
    left: var(--uiFieldPaddingLeft);
    bottom: calc(50% - 0.5em);
  
    line-height: 1;
    font-size: var(--uiFieldHintFontSize);
  
    pointer-events: none;
    transition: bottom 0.2s cubic-bezier(0.9, -0.15, 0.1, 1.15),
      opacity 0.2s ease-out;
    will-change: bottom, opacity;
  }
  
  .custom-field__input:focus ~ .custom-field__label-wrap .custom-field__label {
    opacity: 1;
    bottom: var(--uiFieldHeight);
  }
  
  /* custom-field_static */
  
  .custom-field_static .custom-field__input {
    transition: border-color 0.2s ease-out;
    will-change: border-color;
  }
  
  .custom-field_static .custom-field__input:focus {
    border-color: var(--fieldBorderColorActive);
  }
  
  /* custom-field_animated */
  
  .custom-field_animated .custom-field__label-wrap::after {
    content: "";
    box-sizing: border-box;
    width: 0;
    height: var(--uiFieldBorderWidth);
    background-color: var(--fieldBorderColorActive);
  
    position: absolute;
    bottom: 0;
    left: 0;
  
    will-change: width;
    transition: width 0.285s ease-out;
  }
  
  .custom-field_animated
    .custom-field__input:focus
    ~ .custom-field__label-wrap::after {
    width: 100%;
  }
  
  /* custom-field_bordered */
  
  .custom-field_bordered {
    padding-top: 1.5em;
  }
  
  .custom-field_bordered .custom-field__label-wrap::after {
    content: "";
    box-sizing: border-box;
    width: 100%;
    height: 0;
  
    opacity: 0;
    border: var(--uiFieldBorderWidth) solid var(--fieldBorderColorActive);
  
    position: absolute;
    bottom: 0;
    left: 0;
  
    will-change: opacity, height;
    transition: height 0.2s ease-out, opacity 0.2s ease-out;
  }
  
  .custom-field_bordered
    .custom-field__input:focus
    ~ .custom-field__label-wrap::after {
    height: 100%;
    opacity: 1;
  }
  
  .custom-field_bordered
    .custom-field__input:focus
    ~ .custom-field__label-wrap
    .custom-field__label {
    bottom: calc(var(--uiFieldHeight) + 0.5em);
  }
  
  /* Settings */
  
  .field {
    --fieldBorderColor: #ffffff;
    --fieldBorderColorActive: #014F66;
    --fieldPlaceholderColor: #ffffff;
  }
  
  /* Custom Select */
  
  .select {
      display: inline-block;
      color: rgba(77, 79, 92, 0.5);
      height: 35px;
      width: 200px;
      max-width: 200px;
      margin-top: 5px;
      margin-left: 10px;
      padding-left: 10px;
      border: 1px solid #E9E9F0;
      border-radius: 5px;
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      background-image: url(../images/icon_dropdown_arrow.png);
      background-repeat: no-repeat;
      background-position: center right 10px;
  }
  
  .select::-ms-expand {
      display: none;
  }
  
  .select:hover {
      border-color: #888;
  }
  
  .select:focus {
      background-image: url(../images/icon_dropdown_arrow.png);
      background-repeat: no-repeat;
    background-position: center right 10px;
  
    border-color: #aaa;
      box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
      box-shadow: 0 0 0 3px -moz-mac-focusring;
      color: #222;
      outline: none;
  }</pre></body></html>