@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  h1 {
    @apply text-2xl mb-4;
  }

  h2 {
    @apply text-xl mb-4;
  }

  h3 {
    @apply text-lg mb-2;
  }
}

@layer components {
  .with-sidebar {
    @apply flex flex-row;
  }

  .with-sidebar aside {
    @apply w-1/5 px-2;
  }

  .chat-rooms-list-header-styles {
    @apply flex bg-teal-200 items-center text-slate-600 pl-3 pr-1 border border-gray-300 shadow-lg;

    @media (max-width: 1920px) {
      font-size: 1.125rem;
      line-height: 1.75rem;
      height: 3rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      font-size: 1.5rem;
      line-height: 2rem;
      height: 3.5rem;
    }
  }

  #chat_room_header {
    @apply bg-teal-200 rounded-tr-lg flex items-center text-slate-600 border border-gray-300 shadow-lg;

    @media (max-width: 1920px) {
      font-size: 1.125rem;
      line-height: 1.75rem;
      height: 3rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      font-size: 1.5rem;
      line-height: 2rem;
      height: 3.5rem;
    }
  }

  .chat-room-card {
    @apply m-1 rounded hover:bg-gray-300 active:bg-gray-400 transition duration-300;

    @media (max-width: 1920px) {
      padding: 0.75rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      padding: 1.25rem;
    }
  }

  .chat-room-card-name {
    @apply font-medium;

    @media (max-width: 1920px) {
      font-size: 1rem;
      line-height: 1.5rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }
  }

  .chat-room-card-text {
    @apply;

    @media (max-width: 1920px) {
      font-size: 0.75rem;
      line-height: 1rem;
      font-weight: 200;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      font-size: 0.875rem;
      line-height: 1.25rem;
      font-weight: 200;
    }
  }

  .chat-input-block {
    @apply border-t-2 border-gray-200;

    @media (max-width: 1920px) {
      padding-top: 0.5rem;
      padding-left: 1rem;
      padding-right: 1rem;
      max-height: 28rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      padding: 1rem;
      max-height: 28rem;
    }
  }

  .chat-message {
    @apply bg-gray-200 rounded-2xl;

    @media (max-width: 1920px) {
      border-radius: 0.5rem;
      padding: 0.3rem 0.6rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      border-radius: 1rem;
      padding: 1rem;
    }
  }

  .chat-message-info {
    @apply flex items-center justify-between pt-2;

    @media (max-width: 1920px) {
      padding-top: 0.25rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      padding-top: 0.5rem;
    }
  }

  .chat-message-text-size {
    @apply text-base;

    @media (max-width: 1920px) {
      font-size: 0.875rem;
      line-height: 1.25rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      font-size: 1rem;
      line-height: 1.5rem;
    }
  }

  .chat-message-attachments {
    @apply bg-gray-300;

    @media (max-width: 1920px) {
      border-radius: 0.5rem;
      padding: 0.5rem;
      margin: 0.2rem;
    }

    @media (min-width: 1921px) and (max-width: 2880px) {
      border-radius: 0.75rem;
      padding: 1rem;
      margin: 0.2rem;
    }
  }

  .new-chat-message-field {
    @apply form-input inline-block bg-gray-100 border-none rounded-md;

    width: 100%;
    padding: 0.75rem 2rem 0.125rem;
    border-radius: 15px;
    resize: none;
    max-height: 7.5rem;
    height: 3rem;
  }

  .new-chat-message-field {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .new-chat-message-field::-webkit-scrollbar {
    display: none;
  }

  .paperclip {
    @apply text-gray-400;
    font-size: 1.75em;
  }

  .triangle {
    margin-top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 0;
    border-bottom: 20px solid rgb(226 232 240);
    position: absolute;
  }

  .form-submit-triangle {
    position: relative;
    width: 0;
    height: 0;
    border-radius: 8px;

    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 30px solid rgb(153 246 228);
    margin-top: 0.75rem;

    &:hover {
      border-left: 30px solid rgb(94 234 212);
      margin-top: 0.75rem;
    }
  }

  .form-submit-comment-triangle {
    position: relative;
    width: 0;
    height: 0;
    border-radius: 8px;

    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 30px solid rgb(37 99 235);
    margin-top: 1rem;

    &:hover {
      border-left: 30px solid rgb(29 78 216);
      margin-top: 1rem;
    }
  }

  .stats-link {
    @apply px-3 py-2 text-xs font-medium text-center text-white rounded-lg focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800;

    border-color: #516974;
    color: #516974;
    background-color: #b6f8eb;
    transition:
      background-color 0.3s ease,
      box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .stats-link:hover {
    background-color: #5eead4;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }

  .search-result {
    @apply bg-red-100;
  }

  .with-sidebar section {
    @apply w-4/5 px-2 pt-5;
  }

  .with-sidebar aside .sticky-menu {
    @apply sticky top-0 p-4 w-full;
  }

  .sticky-menu ul {
    @apply flex flex-col overflow-hidden;
  }

  .sticky-menu a > i {
    width: 16px;
    height: 16px;
  }

  .sticky-menu li > a {
    @apply items-center flex space-x-2 p-3 text-black hover:no-underline;
  }

  .sticky-menu li > a.active {
    @apply bg-gray-100;
  }

  section:has(.devise_container) {
    @apply w-full;
  }

  .devise_container {
    @apply text-xs text-gray-900 font-light py-2 px-4;
  }

  .devise_container h2 {
    @apply text-xl mb-4;
  }

  .devise_container form {
    @apply mb-6;
  }

  .devise_container .links a {
    @apply underline;
  }

  .form-input {
    @apply block w-full px-3 py-1.5 text-base font-normal text-gray-700 bg-white bg-clip-padding border border-solid border-gray-300 rounded transition ease-in-out m-0 w-auto;
  }

  .form-submit {
    @apply px-6 py-2.5 bg-blue-600 text-white font-medium text-sm leading-tight uppercase rounded shadow-md hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .form-submit[disabled] {
    @apply cursor-not-allowed shadow-none bg-blue-300 hover:shadow-none	hover:bg-blue-300 active:shadow-none active:bg-blue-300
    transition-none;
  }

  .form-submit-lowcase {
    @apply px-6 py-2.5 bg-blue-600 text-white font-medium text-sm leading-tight rounded shadow-md hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .form-submit-green {
    @apply px-6 py-2.5 flex bg-green-600 text-white font-medium text-sm leading-tight rounded shadow-md hover:bg-green-700 hover:shadow-lg focus:bg-green-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-green-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .form-submit-red {
    @apply form-submit bg-red-600 hover:bg-red-700 focus:bg-red-700 active:bg-red-800;
  }

  .form-submit-gray {
    @apply form-submit bg-gray-600 hover:bg-gray-700 focus:bg-gray-700 active:bg-gray-800;
  }

  .form-submit-uncolored {
    @apply form-submit bg-white hover:bg-white focus:bg-white active:bg-white;
  }

  .form-submit-adv {
    @apply px-12 py-3.5 bg-blue-800 text-white font-medium text-sm leading-tight rounded-lg hover:bg-blue-900 focus:bg-blue-900 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .form-submit-copy-adv {
    @apply flex items-center px-6 py-3.5 bg-gray-100 text-sm leading-tight rounded-lg hover:bg-gray-200 focus:bg-gray-300 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-gray-300 active:shadow-lg transition duration-150 ease-in-out;
    background-image: url(/assets/copy-a71670e914636edce4c89fb7c781204edc6bca7efa112837ed8993215d2ab8ca.svg);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 30px;
  }

  .default-nav {
    @apply relative flex items-center bg-slate-50 text-gray-900 shadow-lg shadow-slate-200;
  }

  .back-link {
    @apply mt-8 text-gray-700 text-sm;
  }

  .service-issue-button {
    @apply px-6 py-2.5 bg-blue-600 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .service-issue-button[disabled] {
    @apply bg-gray-400 cursor-not-allowed;
  }

  .service-issue-button:not([disabled]) {
    @apply bg-blue-600 hover:bg-blue-700 active:bg-blue-800 shadow-lg;
  }

  .service_issue_national_currencies span.checkbox label input {
    @apply mx-2;
  }

  .gray-button {
    @apply px-6 py-2.5 bg-neutral-200 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-neutral-300
    hover:shadow-lg focus:bg-neutral-300 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-neutral-400 active:shadow-lg
    border border-neutral-300 transition duration-150 ease-in-out cursor-pointer;
    color: black;
  }

  .green-button {
    @apply w-full px-6 py-2.5 h-12 bg-[#21a038] text-white text-sm rounded-xl shadow-md hover:bg-green-700 hover:shadow-lg focus:bg-green-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-green-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .green-button-submit {
    @apply w-300 px-6 py-2.5 h-12 bg-[#21a038] text-white text-sm rounded-xl shadow-md hover:bg-green-700 hover:shadow-lg focus:bg-green-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-green-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .white-button {
    @apply py-2.5 px-6 text-center cursor-pointer hover:drop-shadow-lg bg-white rounded-xl active:drop-shadow-2xl transition duration-150 ease-in-out;
  }

  .red-button {
    @apply px-6 py-2.5 bg-red-600 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-red-700 hover:shadow-lg focus:bg-red-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-red-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .red-button[disabled] {
    @apply bg-gray-400 cursor-not-allowed;
  }

  .blue-button {
    @apply px-6 py-2.5 bg-blue-600 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-blue-700
    hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out
    cursor-pointer;
  }

  .blue-button[disabled] {
    @apply bg-gray-400 cursor-not-allowed;
  }

  .blue-button[submitted] {
    @apply bg-red-400;
  }

  .w-200 {
    width: 200px;
  }

  .green-button-payment-apply {
    @apply w-200 px-6 py-2.5 h-10 bg-[#21a038] text-white text-sm rounded shadow-md hover:bg-green-700 hover:shadow-lg focus:bg-green-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-green-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .button-submit {
    @apply px-6 h-8 bg-[#21a038] text-white text-sm rounded-xl shadow-md hover:bg-green-700 hover:shadow-lg focus:bg-green-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-green-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .badge {
    @apply text-xs inline-block py-1 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-red-600 text-white rounded;
  }

  .form-input-select {
    @apply form-select appearance-none block px-3 py-1.5 pr-10 font-normal text-gray-700 bg-white bg-clip-padding bg-no-repeat border border-solid border-gray-300 rounded transition ease-in-out m-0 focus:text-gray-700 focus:bg-white focus:border-blue-600 focus:outline-none;
  }

  .items-list-table {
    @apply min-w-full text-center;
  }

  .chat-items-list-table {
    @apply border-separate border-spacing-x-5;
  }

  .items-list-thead {
    @apply border-b;
  }

  .items-list-th {
    @apply text-xs font-medium text-gray-900 p-2;
  }

  .bordered {
    border: 1px solid black;
  }

  .items-list-tr {
    @apply border-b;
  }

  .items-list-td {
    @apply text-xs text-gray-900 font-light p-2 whitespace-nowrap;
  }

  .items-list-td-empty {
    border: none !important;
  }

  .items-list-tr-empty {
    border-bottom-width: 0px !important;
  }

  .items-list-td-national_currency {
    @apply text-xs text-gray-900 font-light p-2 whitespace-nowrap;
    font-weight: 450;
  }

  .items-list-td-link {
    @apply items-list-td text-gray-900 underline font-medium;
  }

  .items-list-td-red {
    @apply text-red-500;
  }

  .items-list-td-green {
    @apply text-green-500;
  }

  .item-card-td {
    @apply text-sm text-gray-900 font-normal px-2 py-2 whitespace-nowrap;
  }

  .item-card-td-label {
    @apply w-0 text-gray-500 font-light;
  }

  .item-card-table {
    @apply text-left w-full;
  }

  .item-card-thead {
    @apply border-b bg-gray-50;
  }

  .item-card-tr {
    @apply bg-white border-b;
  }

  tr.arbitration {
    @apply bg-red-100;
  }

  .card-wrap {
    @apply p-2 flex-1;
  }

  .item-card {
    @apply p-6 block rounded-lg shadow-xl bg-white border mb-4;
  }

  .card-head {
    @apply flex flex-row items-center mb-4 gap-10;
  }

  .card-head h1 {
    @apply inline-block text-xl mb-0;
  }

  .card-body {
    @apply my-4;
  }

  .wrap {
    @apply flex flex-wrap;
  }

  .filters-wrap {
    @apply p-2 w-full;
  }

  .chart-wrap {
    @apply p-2 w-full;
  }

  .icon-button {
    @apply border border-transparent text-center bg-blue-600 text-white font-medium text-xs leading-tight uppercase
    rounded shadow-md w-min px-3 py-2 hover:bg-blue-700 hover:shadow-lg focus:bg-blue-700 focus:shadow-lg focus:outline-none
    focus:ring-0 active:bg-blue-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .icon-button-red {
    @apply border border-transparent text-center bg-red-700 text-white font-medium text-xs leading-tight uppercase rounded shadow-md w-min px-3 py-2 hover:bg-red-700 hover:shadow-lg focus:bg-red-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-red-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .icon-button-gray {
    @apply border text-center my-5 p-2 bg-slate-50 text-gray-900 font-medium text-xs leading-tight uppercase rounded shadow-md w-min px-3 py-2 hover:bg-slate-100 hover:shadow-lg focus:bg-slate-100 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-slate-200 active:shadow-lg transition duration-150 ease-in-out;
  }

  .icon-button-green {
    @apply border border-transparent text-center bg-green-600 text-white font-medium text-xs leading-tight uppercase rounded shadow-md w-min px-3 py-2 hover:bg-green-700 hover:shadow-lg focus:bg-green-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-green-800 active:shadow-lg transition duration-150 ease-in-out;
  }

  .simple_form .input {
    @apply my-4;
  }

  .edit_client.simple_form .input {
    @apply my-0;
  }

  .simple_form input.filepond[type="submit"] {
    @apply bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 my-2 rounded;
  }

  .simple_form input.filepond[type="submit"][disabled] {
    @apply bg-gray-400 text-white font-bold py-2 px-4 my-2 rounded cursor-not-allowed;
  }

  .simple_form input[type="text"][disabled] {
    @apply cursor-not-allowed;
  }

  .simple_form .input label,
  .simple_form .input input,
  .simple_form .input select {
    @apply block my-2;
  }

  .simple_form .input input.string,
  .simple_form .input input.text,
  .simple_form .input input.numeric,
  .simple_form .input textarea.text,
  .simple_form .input input.date,
  .simple_form .input input.password,
  .simple_form .input input.datetime {
    @apply form-input;
  }

  .simple_form .advertisement_advanced_limits .input input.numeric {
    @apply w-48;
  }

  .simple_form .form-inputs .input input.dark-input {
    @apply bg-gray-50 border border-gray-900 text-gray-900 sm:text-sm rounded-lg focus:ring-gray-600 focus:border-gray-600 block w-full p-2.5 bg-gray-700 border-gray-600 placeholder-gray-400 text-white focus:ring-blue-500 focus:border-blue-500 text-white;
  }

  .simple_form .hint,
  .form_with .hint,
  .item-card .hint {
    @apply my-1 text-xs text-gray-500;
  }

  .simple_form .input select {
    @apply form-input-select;
  }

  .simple_form .input input[type="checkbox"] {
    @apply inline-block mr-2;
  }

  .simple_form .input label .form-check-label {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
  }

  .simple_form .input label abbr[title] {
    @apply text-gray-500;
    text-decoration: none;
  }

  .simple_form .input .error {
    @apply text-red-500 text-xs block;
  }

  .simple_form.filters .filters-grid {
    @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4 mb-8;
  }

  .simple_form.filters .filters-grid-3 {
    @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-3 gap-4 mb-8;
  }

  .simple_form.filters .filters-grid-3 label {
    @apply text-sm;
  }

  .simple_form.filters .filters-grid .input label abbr[title="required"] {
    @apply hidden;
  }

  .simple_form.filters .filters-grid .input,
  .simple_form.filters .filters-grid label {
    @apply my-0;
  }

  .simple_form.filters .filters-grid label {
    @apply mb-1;
  }

  .simple_form.filters .filters-grid .input input,
  .simple_form.filters .filters-grid .input select,
  .simple_form.filters .filters-grid .input textarea {
    @apply w-full max-w-full;
  }

  /* .simple_form .input input#balance_request_transaction_hash {
    @apply w-1/3;
  } */

  .multiple-select {
    @apply border divide-y w-80 mb-4 p-2 overflow-y-auto max-h-96;
  }

  .multiple-select label {
    @apply w-full;
  }

  .multiple-select label > span {
    @apply inline-block p-2;
  }

  /* .multiple-select label > input:checked, .multiple-select label > input:checked + span { */
  /*   @apply bg-blue-400; */
  /* } */

  .error_notification {
    @apply text-xs;
  }

  .toast {
    @apply shadow-lg mx-auto w-96 max-w-full text-sm pointer-events-auto bg-clip-padding rounded-lg block w-full bg-blue-600 hover:bg-blue-700 hover:shadow-xl focus:bg-blue-700 focus:shadow-xl focus:outline-none focus:ring-0 active:bg-blue-800 active:shadow-xl transition duration-150 p-1 ease-in-out;
  }

  .toast-header {
    @apply flex justify-between items-center py-2 px-3 bg-clip-padding border-blue-500 rounded-t-lg;
  }

  .arbitration .toast-header {
    @apply flex justify-between items-center py-2 px-3 bg-clip-padding border-red-500 rounded-t-lg;
  }

  .toast-header-text {
    @apply font-medium text-white flex items-center;
  }

  .toast-header-time {
    @apply flex items-center;
  }

  .toast-header-time-text {
    @apply text-white opacity-80 text-xs;
  }

  .toast-text {
    @apply p-3 rounded-b-lg break-words text-white;
  }

  .toast-text-name {
    @apply opacity-80 font-light pr-2;
  }

  .notifications-block {
    @apply fixed flex flex-col max-w-full bg-clip-padding outline-none transition duration-300 ease-in-out text-gray-700 top-2 right-2 w-auto h-auto;
  }

  .notification .toast {
    @apply bg-blue-600/95 border-blue-700 hover:bg-blue-700 focus:bg-blue-700 active:bg-blue-800 hover:opacity-100 transition duration-150 ease-in-out w-80;
  }

  .empty-list-text {
    @apply text-gray-500 text-sm mt-4;
  }

  .grey-drop-down {
    @apply w-full h-12 px-3 py-2.5 mr-3 text-sm font-medium text-left text-black bg-gray-200 rounded md:mb-0;
  }

  .grey-cardplace {
    @apply w-full h-12 px-3 py-2.5 mb-3 mr-3 text-sm font-medium text-center text-black bg-gray-200 rounded md:mb-0;
  }

  .grey-iban-cardplace {
    @apply w-full h-12 px-3 py-2.5 mb-3 mr-3 text-sm font-medium text-center text-black bg-gray-200 rounded md:mb-0;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }

  .proc-head {
    @apply flex justify-between items-center w-full mt-4;
  }

  .proc-logo {
    @apply bg-[url(/logo.svg)] bg-contain bg-no-repeat bg-center w-36 h-12 mt-0.5;
  }

  .proc-text {
    @apply text-gray-400;
  }

  .proc-amount-block {
    @apply w-full justify-start h-10 my-6;
  }

  .proc-amount-content {
    @apply text-left text-3xl font-medium;
  }

  .proc-copy-bank-card-content {
    @apply text-left flex;
  }

  .proc-shop-block {
    @apply flex justify-between w-full;
  }

  .proc-countdown-block {
    @apply flex justify-between w-full text-sm mt-2;
  }

  .proc-button-block {
    @apply flex;
  }

  .proc-shop-title {
    @apply text-gray-400 text mt-0;
  }

  .proc-shop-content {
    @apply text;
  }

  .proc-order-block {
    @apply flex justify-between w-full mb-2;
  }

  .proc-order-title {
    @apply text-gray-400 text;
  }

  .proc-order-content {
    @apply text;
  }

  .simple-form-for-payment-deposit {
    @apply flex;
  }

  .select-payment-system {
    @apply font-semibold text mb-2 mt-2;
  }

  .select-sbp-payment-system {
    @apply font-semibold text mb-2 mt-2;
  }

  .text-instruction {
    @apply text-sm mt-5 font-medium;
  }

  /* proc-card-sceomorph */

  .proc-card-sceomorph {
    @apply w-full my-2 p-6 flex flex-col rounded-2xl shadow-lg;
  }

  .proc-card-sceomorph-bank {
    @apply text-xl font-extralight text-white;
  }

  .proc-card-sceomorph-owner {
    @apply mt-2 text-lg text-white font-medium;
  }

  .proc-card-sceomorph-number {
    @apply mt-4 text-lg text-white font-medium;
  }

  /* sberbank */

  .sberbank-card {
    @apply proc-card-sceomorph bg-[#21a038];
  }

  .sberbank-card-bank {
    @apply proc-card-sceomorph-bank text-white;
  }

  .sberbank-card-owner {
    @apply proc-card-sceomorph-owner text-white;
  }

  .sberbank-card-number {
    @apply proc-card-sceomorph-number text-white;
  }

  /* tinkoff */

  .tinkoff-card {
    @apply proc-card-sceomorph bg-[#FFDD2D];
  }

  .tinkoff-card-bank {
    @apply proc-card-sceomorph-bank text-black;
  }

  .tinkoff-card-owner {
    @apply proc-card-sceomorph-owner text-black;
  }

  .tinkoff-card-number {
    @apply proc-card-sceomorph-number text-black;
  }

  /* raiffeisen */

  .raiffeisen-card {
    @apply proc-card-sceomorph bg-[#ffed00];
  }

  .raiffeisen-card-bank {
    @apply proc-card-sceomorph-bank text-black;
  }

  .raiffeisen-card-owner {
    @apply proc-card-sceomorph-owner text-black;
  }

  .raiffeisen-card-number {
    @apply proc-card-sceomorph-number text-black;
  }

  /* alfabank */

  .alfabank-card {
    @apply proc-card-sceomorph bg-[#ef3124];
  }

  .alfabank-card-bank {
    @apply proc-card-sceomorph-bank;
  }

  .alfabank-card-owner {
    @apply proc-card-sceomorph-owner;
  }

  .alfabank-card-number {
    @apply proc-card-sceomorph-number;
  }

  /* humo */

  .humo-card {
    @apply proc-card-sceomorph bg-[#244C5A];
  }

  .humo-card-owner {
    @apply proc-card-sceomorph-owner text-[#f3e399];
  }

  .humo-card-bank {
    @apply proc-card-sceomorph-bank text-[#f3e399];
  }

  .humo-card-number {
    @apply proc-card-sceomorph-number text-[#f3e399];
  }

  /* default */

  .default-bank-card {
    @apply proc-card-sceomorph bg-[#E5ECF4];
  }

  .default-card-owner {
    @apply proc-card-sceomorph-owner text-black;
  }

  .default-bank-card-bank {
    @apply proc-card-sceomorph-bank text-black;
  }

  .default-bank-card-number {
    @apply proc-card-sceomorph-number text-black;
  }

  .text-red {
    @apply text-red-500;
  }

  .block-sending-cancel-on-img-form {
    @apply flex h-5;
  }

  .font-firs {
    font-family: "TT Firs Neue", sans-serif;
  }

  .font-inter {
    font-family: "Inter", sans-serif;
  }

  .w-300 {
    width: 300px;
  }

  .w-100 {
    width: 460px;
    border: 1px solid #dedede;
  }

  .border-qr {
    border: 1px solid #dedede;
  }

  .border-1-solid {
    border: 1px solid #dedede;
  }

  .show-payment-block {
    @apply flex flex-col items-center font-firs max-w-[460px] border-qr min-h-min rounded-xl py-5 px-4 sm:px-14 md:px-20 bg-white;
  }

  .show-deposit-block {
    @apply flex flex-col gap-10 items-center font-firs max-w-fit border-1-solid rounded-xl max-w-[570px] py-5 px-4 sm:px-14 md:px-14;
  }

  .show-instruction-block {
    @apply flex flex-col items-start max-w-[570px] border-qr border-1-solid rounded-xl bg-zinc-200 py-5 px-14 gap-2;
  }

  .show-payment-chat-block {
    @apply font-firs w-96 min-w-[320px] min-h-min rounded-xl py-5 px-5 bg-white border-qr;
  }

  .show-second-block {
    @apply font-firs w-44 min-h-min bg-white;
  }

  .show-payment {
    @apply flex flex-wrap justify-center gap-4;
  }

  .please-pay-from-bank {
    @apply text-sm my-5 font-medium text-center;
  }

  .alerts-block {
    @apply text-xs text-gray-600 mt-6;
  }

  .alert-block {
    @apply text-gray-900 font-light inline-block rounded-lg shadow-md shadow-slate-100 bg-white border;
  }

  .payment-step {
    @apply mt-2;
  }

  .payment_img {
    width: 300px;
    height: 180px;
  }

  .proc-payment-waiting-img {
    @apply payment_img flex bg-[url(/spinner-loading.webp)] mt-10 bg-cover bg-center;
  }

  .proc-payment-done-img {
    @apply proc-payment-waiting-img bg-[url(/green-spinner-loading.png)];
  }

  .proc-payment-cancelled-img {
    @apply proc-payment-waiting-img bg-[url(/red-spinner-loading.png)];
  }

  .proc-payment-done-links-block {
    @apply mt-7 mb-16 text-center text-gray-400 underline;
  }

  .proc-payment-cancelled-links-block {
    @apply proc-payment-done-links-block;
  }

  .proc-payment-done-block {
    @apply mt-7 mb-12 text-center;
  }

  .proc-payment-cancelled-block {
    @apply proc-payment-done-block;
  }

  .proc-payment-waiting-block {
    @apply proc-payment-done-block;
  }

  .proc-payment-cancelled-links-dw {
    @apply text-gray-400 underline mb-1;
  }

  .uuid-payment-block {
    @apply flex justify-center text-xs text-gray-300 mt-5 mb-6;
  }

  .add-img-confirm {
    @apply my-2 text-sm font-medium;
  }

  .error-messages-in-payments-forms {
    @apply py-3;
  }

  .modal-title {
    @apply font-medium text-sm;
  }

  .modal-text {
    @apply text-sm text-xs mt-2;
  }

  .modal_button {
    @apply green-button w-1/2 h-10 text-xs px-1 pt-2 mt-4 rounded-md items-center;
  }

  .copy-card-button {
    @apply pt-3 pl-3;
  }

  .svg-button {
    @apply w-6 h-6 mt-1;
  }

  .reset-button {
    @apply px-6 py-2.5 bg-gray-100 font-medium text-sm leading-tight uppercase rounded shadow-md hover:bg-gray-300 hover:shadow-lg focus:bg-gray-300 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-gray-400 active:shadow-lg transition duration-150 ease-in-out;
  }

  .items-list-td.direction-deposit,
  .items-list-td.advertisement-status-true {
    @apply text-green-500;
  }

  .items-list-td.direction-withdrawal,
  .items-list-td.advertisement-status-false {
    @apply text-red-500;
  }

  .text-qr-instruction {
    @apply text-sm mt-2.5 font-medium leading-tight text-center;
  }

  .pxy-15 {
    padding: 15px 15px 15px 15px;
  }

  .pxy-7 {
    padding: 7px 7px 7px 7px;
  }

  .logo_img img {
    width: 100px;
    max-height: 100px;
  }

  .show-qr-block {
    @apply w-fit font-firs rounded-xl py-6 px-6 border-qr bg-white;
  }

  .show-qr {
    @apply w-fit rounded-xl justify-center pxy-15 bg-white border-qr;
  }

  .show-logo-block {
    @apply w-fit font-firs rounded-xl py-6 px-6 ml-6 border-qr;
  }

  .show-logo {
    @apply w-fit rounded-xl justify-center pxy-7 bg-white border-qr flex;
  }

  .completed-status {
    @apply text-green-500;
  }

  .cancelled-status {
    @apply text-red-500;
  }

  input[name="advertisement[card_number]"] {
    width: 320px !important;
  }

  input[name="advertisement[card_owner_name]"] {
    width: 320px !important;
  }

  input[name="advertisement[simbank_card_number]"] {
    width: 200px !important;
  }

  input[name="advertisement[payment_link]"] {
    width: 320px !important;
  }

  input[name="advertisement[comment]"] {
    width: 200px !important;
  }

  input[name="advertisement[daily_usdt_limit]"] {
    width: 320px !important;
  }

  input[name="advertisement[daily_successful_payments_limit]"] {
    width: 320px !important;
  }

  input[name="advertisement[simbank_identifier]"] {
    width: 400px !important;
  }

  .hint-red {
    color: red !important;
  }

  .show-countries-block {
    @apply w-fit font-firs rounded-xl py-3 px-3 ml-3 border-qr;
  }

  .success-notice {
    @apply text-sm text-green-600;
  }

  .select-submit-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
  }

  .select-submit-container select {
    flex: 1;
  }

  .select-submit-container input[type="submit"] {
    margin-left: 10px;
  }

  .select-locale {
    @apply mt-0.5;
  }

  .items-list-td-break-all-card {
    @apply text-xs text-gray-900 font-light p-2 break-words w-[100px] text-left;
  }

  .items-list-td-break-all-comment {
    @apply text-xs text-gray-900 font-light p-2 break-words w-[100px] text-left;
  }

  .items-list-th-text-left-card {
    @apply text-xs font-medium text-gray-900 p-2 text-left w-[135px];
  }

  .items-list-th-text-left-comment {
    @apply text-xs font-medium text-gray-900 p-2 text-left w-[100px];
  }

  .items-list-th-text-left-payments {
    @apply text-xs font-medium text-gray-900 p-2 text-left;
  }

  .items-list-td-link-flow {
    @apply items-list-td text-gray-900 underline font-medium w-[20px];
  }

  .items-list-th-link-flow {
    @apply items-list-td text-gray-900 font-medium w-[20px];
  }

  .toast.arbitration {
    @apply bg-red-600 hover:bg-red-700 focus:bg-red-700 active:bg-red-800;
    color: white;
  }

  .toast.withdrawal-timeout {
    @apply bg-red-800 hover:bg-red-900 focus:bg-red-900 active:bg-red-900;
    color: white;
  }

  .toast.deposit {
    @apply bg-green-600 hover:bg-green-700 focus:bg-green-700 active:bg-green-800;
  }

  .text-size-11 {
    font-size: 11px;
  }

  .text-size-13 {
    font-size: 13px;
  }

  .w-50 {
    width: 50px;
  }

  .toast.deposit-transferring {
    @apply hover:bg-yellow-300 focus:bg-yellow-300 active:bg-yellow-300;
    background-color: #ffee95;
    box-shadow: none;
  }

  .toast.deposit-confirming {
    @apply hover:bg-green-800 focus:bg-green-800 active:bg-green-900;
    background-color: #057a17;
    box-shadow: none;
  }

  .toast.withdrawal-transferring {
    @apply hover:bg-blue-800 focus:bg-blue-800 active:bg-blue-900;
    background-color: #0656cd;
    box-shadow: none;
  }

  .toast.withdrawal-confirming {
    @apply hover:bg-blue-300 focus:bg-blue-300 active:bg-blue-400;
    background-color: #c3dbff;
    box-shadow: none;
  }

  .toast.flow-arbitration {
    @apply bg-red-600 hover:bg-red-700 focus:bg-red-700 active:bg-red-800;
    color: white;
    background-color: #d60b0b;
    box-shadow: none;
  }

  .toast.withdrawal-confirming .text-xs,
  .toast.withdrawal-confirming .toast-header-time-text.countdown,
  .toast.deposit-transferring .text-xs,
  .toast.deposit-transferring .toast-header-time-text.countdown {
    color: black;
  }

  .toast.withdrawal-transferring .text-xs,
  .toast.withdrawal-transferring .toast-header-time-text.countdown,
  .toast.deposit-confirming .text-xs,
  .toast.deposit-confirming .toast-header-time-text.countdown {
    color: white;
  }

  .flow-table-text {
    @apply text-sm mt-5 font-medium;
  }

  .flow-item-card {
    @apply rounded-lg bg-white;
  }

  .text-green {
    color: #057a17;
  }

  .text-blue {
    color: #0656cd;
  }

  .items-list-th-mask-id {
    @apply text-xs font-medium text-gray-900 p-2 w-[30px];
  }

  .items-list-th-mask-app {
    @apply text-xs font-medium text-gray-900 p-2 w-[200px];
  }

  .items-list-th-mask-type {
    @apply text-xs font-medium text-gray-900 p-2 w-[200px];
  }

  input[type="checkbox"] {
    @apply focus:ring-0;
  }

  .simple_form .input label abbr[title="обязательно"] {
    @apply text-red-500;
  }

  .mask-input-style {
    max-width: 800px;
    height: 300px;
    resize: both;
  }

  .hidden {
    display: none;
  }

  .connected {
    color: green;
  }

  .not-connected {
    color: red;
  }

  label.required:after {
    content: " *";
    color: red;
  }

  .indigo-container {
    @apply bg-indigo-600 p-1.5 rounded-md text-white font-medium;
  }

  .green-container {
    @apply bg-green-400 p-1.5 rounded-md font-medium;
  }

  input[type="email"] {
    text-transform: lowercase;
  }

  .context-menu-item {
    @apply p-2 hover:bg-gray-200 rounded-lg hover:cursor-pointer;
  }

  option {
    white-space: normal;
  }

  .modal2 {
    @apply absolute left-0 top-0 w-full h-full bg-gray-300 opacity-70;
  }

  .toggle-switch {
    @apply relative w-11 h-6 bg-red-400 rounded-full peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:absolute after:top-0.5 after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-green-400;
  }

  .submenu-content {
    @apply absolute mt-6 shadow-xl border bg-slate-200 rounded-lg z-50;
  }

  .mt-14 {
    margin-top: 3.5rem;
  }

  .simple_form.filters .filters-grid .input.payment_filter_order {
    @apply flex space-x-2;
  }

  .simple_form.filters .filters-grid .input.payment_filter_order label {
    @apply mt-1.5;
  }

  .simple_form.payment_systems .input {
    @apply my-0;
  }

  .simple_form.payment_systems .input input {
    @apply max-w-[235px];
  }

  .simple_form.payment_systems .input input.w70 {
    @apply w-[70px];
  }

  .simple_form.payment_systems .input input.w80 {
    @apply w-[80px];
  }

  .simple_form.payment_systems .input input.w120 {
    @apply w-[120px];
  }

  .simple_form.payment_systems .input input.filled-indicate,
  .simple_form.payment_systems
    .input
    select.filled-indicate:has(option[selected]) {
    background-color: #a1ff95;
  }

  .simple_form.payment_systems .input .filled-indicate[value=""],
  .simple_form.payment_systems .input .filled-indicate:not([value]) {
    background-color: unset;
  }

  .sos-icon {
    @apply bg-red-600 rounded-md p-0.5 px-2 text-sm;
  }

  .sos-icon::before {
    content: "SOS";
  }

  .blacklist-bg {
    background-color: rgba(255, 6, 6, 0.2);
  }

  .blacklist {
    color: #ff0606 !important;
  }

  .whitelist {
    background-color: #09b100 !important;
  }

  .deposits-stat {
    background-color: rgba(9, 177, 0, 0.5);
  }

  .expected-fail-stat {
    background-color: rgba(255, 6, 6, 0.2);
  }

  .expected-ok-stat {
    background-color: rgba(9, 177, 0, 0.5);
  }

  .expected-warn-stat {
    background-color: rgba(253, 200, 21, 0.5);
  }

  .withdrawals-stat {
    background-color: rgba(255, 6, 6, 0.5);
  }

  .autocomplete-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    margin-top: -2px;
  }

  .autocomplete-item {
    padding: 5px 10px;
    cursor: pointer;
  }

  .autocomplete-item:hover {
    background: #f0f0f0;
  }

  .no-traders-found {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .action-buttons {
    display: inline-flex;
  }

  .payment-exchange-trader-input[disabled] {
    @apply opacity-80;
  }

  .select2-search__field {
    padding-bottom: 25px !important;
  }

  .payment-systems-interval {
    @apply flex items-center gap-2 p-2 rounded shadow-md bg-slate-200;
  }

  .shifted {
    left: 1.5rem !important;
  }

  .pagy {
    @apply flex space-x-1 font-semibold text-sm text-gray-500;

    a:not(.gap) {
      @apply block rounded-lg px-3 py-1 bg-gray-200 text-blue-600;

      &:hover {
        @apply bg-gray-300;
      }

      &:not([href]) {
        /* disabled links */
        @apply text-gray-300 bg-gray-100 cursor-default;
      }

      &.current {
        @apply text-white bg-gray-400;
      }
    }

    label {
      @apply inline-block whitespace-nowrap bg-gray-200 rounded-lg px-3 py-0.5;

      input {
        @apply bg-gray-100 border-none rounded-md;
      }
    }
  }
}
@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-BlackItalic-33f927d0665b3ffde999c6b769eeadd828d6cabecaefbc79bcbd2421a3af27bd.ttf) format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Black-1cacaf3174d28cc09ec4e2079bc283c095116101c8b2e5e52a9f6d042e6ac652.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Bold-e58828d43604c483f07dd7484ee8ea423b264ab60418cde478792a9b436610db.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-BoldItalic-2270dfa4f4fe240def51b5ef2aa0cb9e0c828c3885e084c6d88c658bc3041362.ttf) format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-DemiBold-7a1d2f39627158117e1ef258d13725f64e10ca567de43b8d851e1f4e18ce5998.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-DemiBoldItalic-e9547e9136008f25cef6949814b4c43cbbf25d6ad7d16d27ea228845c73324f6.ttf) format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Italic-e2333f7685e6559d8b18f4ec111c4ff36fe09a4c7433f561440fc77a2e928846.ttf) format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-ExtraBoldItalic-44fe79c44665d591812ef193558bd289754d91ab6cef8607f13299c0bb350cd5.ttf) format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-ExtraBold-6b7f4a7c64be0fba9657cb2c5922d4ee4f96ac6607ac8341a7756c6b18a6e86b.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Light-9b994cf34b360aa78c2f873b8f21a0238f6be7325f3dab0cbd813e3821f6c87b.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-ExtraLightItalic-f493bacaeaf8449d4ee369899d9d1539316a09c76b0bdb9e7f4e120799082bd9.ttf) format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-ExtraLight-e5781fce6f2ee6414b536d3b37779326586f792ae95d6b249ae00310280e6bb6.ttf) format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Medium-c42b313ac76a490aa1e7ed50135afb997e7db80d2662a29d1ca1a8f1f386cbe7.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-MediumItalic-29707a06cee5acff200e45e533c20bc1774175a3d53d4d13f3f766f36a3afca5.ttf) format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Regular-719806e8e779f839ec7078d83092eec1219b314a69e8025fe495f796c0c98246.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-Thin-111297fa98e9a784e7ff7390703e5c9cd44c68fe50445659fd86fee2e7eefdc2.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-ThinItalic-d42fd8799be0cda51b32cf792721c2d2758ea04b689063ba58420f774c62e3b7.ttf) format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url(/assets/TTFirsNeue-LightItalic-07750184a070e980c8776fb78f3128e4cfdceaca9cdc53fbdde23a3824c9348d.ttf) format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *






 */

@media (min-width:320px),
(min-width:481px),
(min-width:641px),
(min-width:961px) {
  .show-second-block {
    display: none;
  }
}

@media (min-width:1025px) {
  .show-second-block {
    display: block;
  }
}

@media (max-width:2880px) {
  .h-256 {
    height: 64rem;
  }

  .h-288 {
    height: 72rem;
  }
}

@media (max-width:1920px) {
  .h-256 {
    height: 42rem;
  }

  .h-288 {
    height: 47rem;
  }
}

.h-104 {
  height: 32rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml--325 {
  margin-left: -3.25rem;
}

.mx-6 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.menu_block {
  /*border: 1px solid grey;*/
}

.underline {
  text-decoration: underline;
}

.width-100 {
  width: 100%;
  height: 100%;
}

.width-25 {
  width: 25%;
}

.file-name {
  display: block;
}

/* .form-submit-triangle {
  position: relative;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 35px solid rgb(153 246 228);
  border-radius: 8px;
}

.form-submit-triangle:hover {
  position: relative;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 35px solid rgb(94 234 212);
  border-radius: 8px;
} */

.p-10 {
  padding: 2.12rem;
}

.p-48 {
  padding: 48px;
}

.p-5 {
  padding: 1.25rem;
}

.like-button {
  cursor: pointer;
}

.bg-black {
  background-color: #000;
}

.like-button.liked {
  color: RoyalBlue;
}

.like-button.not-liked {
  color: gray;
}

.like-button i {
  font-size: 24px;
}

.bg-light {
  background-color: #f0f0f0;
}

.bg-dark {
  background-color: #dcdcdc;
}

.text-light {
  color: #000;
}

.text-dark {
  color: #fff;
}

.attachment-image {
  width: 26rem;
  max-height: 200px;
}

button,
input[type=submit] {
  cursor: pointer;
}

#image {
  max-width: 300px;
}

#deposit_payment_system {
  float: left;
  width: 300px;
  border-radius: 4px;
  margin-top: 4px;
}

form[action="/requisites"] #deposit_payment_system {
  float: none;
}

label[for=deposit_payment_system] {
  font-style: bold;
  font-size: 14px;

  margin: 6px 0px 0px 0px;
}

#withdrawal_payment_system {
  float: left;
  width: 300px;
  border-radius: 4px;
  margin-top: 4px;
}

label[for=withdrawal_payment_system] {
  font-style: bold;
  font-size: 14px;

  margin: 6px 0px 0px 0px;
}

label[for=withdrawal_sbp_bank] {
  font-style: bold;
  font-size: 14px;

  margin: 6px 0px 0px 0px;
}

label[for=withdrawal_card_number] {
  font-style: bold;
  font-size: 14px;

  margin: 6px 0px 0px 0px;
}

.clear {
  clear: both;
}

.proc_send_summ {
  font-size: 14px;
  line-height: 14px;
  float: left;
  width: 300px;
  margin: 14px 0px 10px 0px;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.7);
  top: 0;
  left: 0;
  z-index: 100;
}

.modal.show {
  display: flex;
  justify-content: center;
}

.modal-content {
  margin-top: 10px;
  background-color: white;
  border-radius: 15px;
  width: 360px;
  color: black;
  padding: 22px 30px 16px 30px;
}

.modal-amount {
  display: flex;
  justify-content: space-between;
  margin-top: 93px;
  background-color: white;
  border-radius: 15px;
  width: 360px;
  color: black;
  padding: 10px 31px;
}

.filepond--credits {
  display: none;
}

.filepond--file-action-button.filepond--file-action-button:after {
  cursor: pointer;
}

.filepond--root {
  cursor: pointer;
}

.filepond--root .filepond--panel-root {
  background-color: #e4e4e7;
}

.filepond--root {
  height: 100%;
  width: 100%;
}

@media (min-width: 30em) {
  #withdrawal_image .filepond--item {
    width: calc(50% - 0.5em);
  }
}

@media (min-width: 50em) {
  #withdrawal_image .filepond--item {
    width: calc(33.33% - 0.5em);
  }
}

@media (min-width: 30em) {
  #new_client_comment .filepond--item {
    width: calc(50% - 0.5em);
  }
}

@media (min-width: 50em) {
  #new_client_comment .filepond--item {
    width: calc(33.33% - 0.5em);
  }
}

.simbank-comment {
  word-break: break-all;
}

.input-for-masks .input.string input,
.input-for-masks .input.text textarea,
.input-for-masks select {
  width: 400px;
}

.st-contextmenu--visible {
  display: block;
  min-width: 9.5rem;
}

.comment-textarea::-webkit-scrollbar,
#new_comment::-webkit-scrollbar,
#input_box.chat-input-block::-webkit-scrollbar,
#new_chat_message::-webkit-scrollbar,
#chat_messages::-webkit-scrollbar,
#chat_rooms::-webkit-scrollbar {
  width: 7px;
}

.comment-textarea::-webkit-scrollbar-thumb,
#new_comment::-webkit-scrollbar-thumb,
#input_box.chat-input-block::-webkit-scrollbar-thumb,
#new_chat_message::-webkit-scrollbar-thumb,
#chat_messages::-webkit-scrollbar-thumb,
#chat_rooms::-webkit-scrollbar-thumb {
  background-color: rgb(209, 213, 219);
  border-radius: 3px;
}

.comment-textarea::-webkit-scrollbar-thumb:hover,
#new_comment::-webkit-scrollbar-thumb:hover,
#input_box.chat-input-block::-webkit-scrollbar-thumb:hover,
#new_chat_message::-webkit-scrollbar-thumb:hover,
#chat_messages::-webkit-scrollbar-thumb:hover,
#chat_rooms::-webkit-scrollbar-thumb:hover {
  background-color: #a1a1a1;
}

.comment-textarea::-webkit-scrollbar-track,
#new_comment::-webkit-scrollbar-track,
#input_box.chat-input-block::-webkit-scrollbar-track,
#new_chat_message::-webkit-scrollbar-track,
#chat_messages::-webkit-scrollbar-track,
#chat_rooms::-webkit-scrollbar-track {
  background: none;
}

.comment-textarea::-moz-scrollbar,
#new_comment::-moz-scrollbar,
#input_box.chat-input-block::-moz-scrollbar,
#new_chat_message::-moz-scrollbar,
#chat_messages::-moz-scrollbar,
#chat_rooms::-moz-scrollbar {
  width: 7px;
}

.comment-textarea::-moz-scrollbar-thumb,
#new_comment::-moz-scrollbar-thumb,
#input_box.chat-input-block::-moz-scrollbar-thumb,
#new_chat_message::-moz-scrollbar-thumb,
#chat_messages::-moz-scrollbar-thumb,
#chat_rooms::-moz-scrollbar-thumb {
  background-color: rgb(209, 213, 219);
  border-radius: 3px;
}

.comment-textarea::-moz-scrollbar-thumb:hover,
#new_comment::-moz-scrollbar-thumb:hover,
#input_box.chat-input-block::-moz-scrollbar-thumb:hover,
#new_chat_message::-moz-scrollbar-thumb:hover,
#chat_messages::-moz-scrollbar-thumb:hover,
#chat_rooms::-moz-scrollbar-thumb:hover {
  background-color: #a1a1a1;
}

.comment-textarea::-moz-scrollbar-track,
#new_comment::-moz-scrollbar-track,
#input_box.chat-input-block::-moz-scrollbar-track,
#new_chat_message::-moz-scrollbar-track,
#chat_messages::-moz-scrollbar-track,
#chat_rooms::-moz-scrollbar-track {
  background: none;
}

.comment-textarea::-ms-scrollbar,
#new_comment::-ms-scrollbar,
#input_box.chat-input-block::-ms-scrollbar,
#new_chat_message::-ms-scrollbar,
#chat_messages::-ms-scrollbar,
#chat_rooms::-ms-scrollbar {
  width: 7px;
}

.comment-textarea::-ms-scrollbar-thumb,
#new_comment::-ms-scrollbar-thumb,
#input_box.chat-input-block::-ms-scrollbar-thumb,
#new_chat_message::-ms-scrollbar-thumb,
#chat_messages::-ms-scrollbar-thumb,
#chat_rooms::-ms-scrollbar-thumb {
  background-color: rgb(209, 213, 219);
  border-radius: 3px;
}

.comment-textarea::-ms-scrollbar-thumb:hover,
#new_comment::-ms-scrollbar-thumb:hover,
#input_box.chat-input-block::-ms-scrollbar-thumb:hover,
#new_chat_message::-ms-scrollbar-thumb:hover,
#chat_messages::-ms-scrollbar-thumb:hover,
#chat_rooms::-ms-scrollbar-thumb:hover {
  background-color: #a1a1a1;
}

.comment-textarea::-ms-scrollbar-track,
#new_comment::-ms-scrollbar-track,
#input_box.chat-input-block::-ms-scrollbar-track,
#new_chat_message::-ms-scrollbar-track,
#chat_messages::-ms-scrollbar-track,
#chat_rooms::-ms-scrollbar-track {
  background: none;
}

.spinner-loader {
  width: 21px;
  padding: 1px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m:
    conic-gradient(#0000 10%, #000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn)
  }
}

.payment-levels-warning {
  background-color: rgb(185 28 28);
  padding: 1rem;
  margin: 7px
}

.payment-levels-warning {
  color: #ffffff;
}

.bg-transparent {
  background-color: rgba(0, 0, 0, 0.5);
}

.comment-textarea[disabled] {
  color: gray;
  background-color: transparent;
  border: 1px solid gray;
  border-radius: 5px;
}

.comment-textarea {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 5px;
}

.info-link {
  color: #007bc2;
  background-color: #e5fdff;
  padding: 12px 38px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.info-link:hover {
  color: #0056b3;
  background-color: #99c2ff;
}

.info-links {
  display: flex;
  margin-top: 2rem;
}

.scrollable-container {
  max-height: 900px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 0;
}

.fixed-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  z-index: 2;
  border-bottom: 1px solid #ddd;
}

.scrollable-container::-webkit-scrollbar {
  width: 8px;
}

.scrollable-container::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 4px;
}

.scrollable-container::-webkit-scrollbar-track {
  background-color: #f8f9fa;
}

.buy-type {
  background-color: rgb(22, 101, 52);
  color: white;
  padding: 5px;
  border-radius: 4px;
}

.sell-type {
  background-color: rgb(153, 27, 27);
  color: white;
  padding: 5px;
  border-radius: 4px;
}

.italic {
  font-style: italic;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}

.tooltip-icon {
  font-size: 16px;
}

.tooltip-text {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(191, 190, 190, 0.85);
  color: black;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  z-index: 100;
  text-align: left;
}

.tooltip-text.top-right {
  bottom: 20px;
  left: 160px;
}

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

.tooltip-text span {
  display: block;
  margin-bottom: 5px;
}

.text-wrap {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cursor-not-allowed-important {
  cursor: not-allowed !important;
}

.w-full-important {
  width: 100% !important;
}

.copy-button {
  width: 20px;
  img{
    width: 15px;
  }
}

.ignore_cancelled_payments {
  position: absolute;
  bottom: 15px;
  margin-left: 0 !important;
}

.highlight-new {
  animation: highlight-new 1s ease-out;
}

@keyframes highlight-new {
  0% {
    background-color: #057A17;
    transform: scale(1.02);
  }
  100% {
    background-color: transparent;
    transform: scale(1);
  }
}

.highlight-changed {
  animation: highlight-changed 1s ease-out;
}

@keyframes highlight-changed {
  0% {
    background-color: #FFEE95;
  }
  100% {
    background-color: transparent;
  }
}

.fade-in {
  animation: fade-in 0.5s ease-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */





@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot);
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot?#iefix) format('embedded-opentype'), url(/assets/fontawesome-webfont-fa79d127baca4558a0b973f5f514b90fc5ef43314c41095f5cb285ffaa0a4029.woff2) format('woff2'), url(/assets/fontawesome-webfont-c9a0a23a23a3f6f7165cba218b40483a0b1750d92b49c40842f1d8f566f5f421.woff) format('woff'), url(/assets/fontawesome-webfont-2794b002e3568f5abce8991e2431ca79e0ce84a08ea1268884b4e097b62762a6.ttf) format('truetype'), url(/assets/fontawesome-webfont-67c6c8e9ffb0fcd7c7c64eaff12a298abf5b54a54b54f0e6c4c49161dba62d6d.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/*!
 * FilePond 4.30.4
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */

/* eslint-disable */
.filepond--assistant{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--browser.filepond--browser{position:absolute;margin:0;padding:0;left:1em;top:1.75em;width:calc(100% - 2em);opacity:0;font-size:0}.filepond--data{position:absolute;width:0;height:0;padding:0;margin:0;border:none;visibility:hidden;pointer-events:none;contain:strict}.filepond--drip{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;opacity:.1;pointer-events:none;border-radius:.5em;background:rgba(0,0,0,.01)}.filepond--drip-blob{-webkit-transform-origin:center center;transform-origin:center center;width:8em;height:8em;margin-left:-4em;margin-top:-4em;background:#292625;border-radius:50%}.filepond--drip-blob,.filepond--drop-label{position:absolute;top:0;left:0;will-change:transform,opacity}.filepond--drop-label{right:0;margin:0;color:#4f4f4f;display:flex;justify-content:center;align-items:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;text-align:center;line-height:1.5}.filepond--label-action{text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;cursor:pointer}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{font-size:1em;width:1.625em;height:1.625em;font-family:inherit;line-height:inherit;margin:0;padding:0;border:none;outline:none;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{position:absolute;left:-.75em;right:-.75em;top:-.75em;bottom:-.75em;content:""}.filepond--file-action-button{cursor:auto;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.5);background-image:none;box-shadow:0 0 0 0 hsla(0,0%,100%,0);transition:box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{color:hsla(0,0%,100%,.5);background-color:rgba(0,0,0,.25)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{border:none;line-height:inherit;background:transparent;font-family:inherit;color:inherit;outline:none;padding:0;margin:0 0 0 .25em;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{position:static;display:flex;flex-direction:column;align-items:flex-start;flex:1;margin:0 .5em 0 0;min-width:0;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{position:static;display:flex;flex-direction:column;align-items:flex-end;flex-grow:0;flex-shrink:0;margin:0;min-width:2.25em;text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;margin:0;padding:0;min-width:0;height:100%}.filepond--file-wrapper.filepond--file-wrapper>legend{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file{position:static;display:flex;height:100%;align-items:flex-start;padding:.5625em;color:#fff;border-radius:.5em}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:"";position:absolute;left:0;top:0;right:0;bottom:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{position:absolute;top:0;left:0;right:0;z-index:1;padding:0;margin:.25em;will-change:transform,opacity}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{transition:box-shadow .125s ease-in-out;box-shadow:0 0 0 transparent}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;transition:background-color .25s}.filepond--list-scroller{position:absolute;top:0;left:0;right:0;margin:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{overflow-y:scroll;overflow-x:hidden;-webkit-overflow-scrolling:touch;-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent)}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:99999px;border:.3125em solid transparent;background-clip:content-box}.filepond--list.filepond--list{position:absolute;top:0;margin:0;padding:0;list-style-type:none;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;height:100%;max-width:none;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{bottom:0;height:auto;display:flex;justify-content:center;align-items:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{overflow:hidden;height:100%;margin-top:0;margin-bottom:0}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{left:0;right:0;height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{border-radius:.5em;background-color:#f1f0ef}.filepond--panel{position:absolute;left:0;top:0;right:0;margin:0;height:100%!important;pointer-events:none}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:transparent!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{position:absolute;left:0;top:0;right:0;margin:0;padding:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important;border-bottom:none!important}.filepond--panel-top:after{content:"";position:absolute;height:2px;left:0;right:0;bottom:-1px;background-color:inherit}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0)}.filepond--panel-bottom{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top:none!important}.filepond--panel-bottom:before{content:"";position:absolute;height:2px;left:0;right:0;top:-1px;background-color:inherit}.filepond--panel-center{height:100px!important;border-top:none!important;border-bottom:none!important;border-radius:0!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{position:static;width:1.25em;height:1.25em;color:#fff;margin:0;pointer-events:none;will-change:transform,opacity}.filepond--progress-indicator svg{width:100%;height:100%;vertical-align:top;transform-box:fill-box}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{box-sizing:border-box;position:relative;margin-bottom:1em;font-size:1rem;line-height:normal;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:450;text-align:left;text-rendering:optimizeLegibility;direction:ltr;contain:layout style size}.filepond--root *{box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{position:absolute;right:0;opacity:.175;line-height:.85;font-size:11px;color:inherit;text-decoration:none;z-index:3;bottom:-14px}.filepond--root .filepond--credits[style]{top:0;bottom:auto;margin-top:14px}
/*!
 * FilePondPluginImagePreview 4.6.11
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */

/* eslint-disable */
.filepond--image-preview-markup {
  position: absolute;
  left: 0;
  top: 0
}

.filepond--image-preview-wrapper {
  z-index: 2
}

.filepond--image-preview-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 5rem;
  max-height: 7rem;
  margin: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.filepond--image-preview-overlay svg {
  width: 100%;
  height: auto;
  color: inherit;
  max-height: inherit
}

.filepond--image-preview-overlay-idle {
  mix-blend-mode: multiply;
  color: rgba(40, 40, 40, .85)
}

.filepond--image-preview-overlay-success {
  mix-blend-mode: normal;
  color: #369763
}

.filepond--image-preview-overlay-failure {
  mix-blend-mode: normal;
  color: #c44e47
}

@supports (-webkit-marquee-repetition:infinite) and ((-o-object-fit:fill) or (object-fit:fill)) {
  .filepond--image-preview-overlay-idle {
    mix-blend-mode: normal
  }
}

.filepond--image-preview-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  border-radius: .45em;
  overflow: hidden;
  background: rgba(0, 0, 0, .01)
}

.filepond--image-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: #d9d9d9;
  will-change: transform, opacity
}

.filepond--image-clip {
  position: relative;
  overflow: hidden;
  margin: 0 auto
}

.filepond--image-clip[data-transparency-indicator=grid] canvas,
.filepond--image-clip[data-transparency-indicator=grid] img {
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%23eee'%3E%3Cpath d='M0 0h50v50H0M50 50h50v50H50'/%3E%3C/svg%3E");
  background-size: 1.25em 1.25em
}

.filepond--image-bitmap,
.filepond--image-vector {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform
}

.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview-wrapper {
  border-radius: 0
}

.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}

.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-wrapper {
  border-radius: 99999rem
}

.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-overlay {
  top: auto;
  bottom: 0;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1)
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
  margin-bottom: .325em
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
  left: calc(50% - 3em)
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
  right: calc(50% - 3em)
}

.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
  margin-bottom: .5125em
}

.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
  margin-top: 0;
  margin-bottom: .1875em;
  margin-left: .1875em
}
