.tcp-skip-nav {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
  }
  
  .tcp-app-load {
    text-align: center;
    height: 100%;
    width: 100%;
    position: absolute;
    display: table;
  }
  
  .tcp-app-load .hidden {
    display: none;
  }
  
  .tcp-app-load .tcp-app-load-child {
    vertical-align: middle;
    display: table-cell;
    width: 100%;
  }
  
  .tcp-app-load .tcp-app-loading {
    width: 100%;
  }
  
  .tcp-app-load .tcp-app-loading .brand-logo {
    width: 70%;
    height: 70%;
  }
  
  .tcp-app-load .tcp-app-load-scripts-failed,
  .tcp-app-load .tcp-app-load-failed {
    margin-top: 30px;
  }
  
  .tcp-app-load .tcp-app-load-scripts-failed .error-msg,
  .tcp-app-load .tcp-app-load-failed .error-msg {
    color: #cc0033;
    font-weight: 600;
    margin-top: -1px;
  }
  
  .tcp-app-load .tcp-app-load-scripts-failed .fa,
  .tcp-app-load .tcp-app-load-failed .fa {
    color: #cc0033;
    font-size: 25px;
    margin-right: 5px;
  }
  
  @keyframes slideDown {
    0% {
      top: 0%;
      bottom: 100%;
      opacity: 0;
    }
  
    5% {
      top: 0%;
      bottom: 0%;
    }
  
    12% {
      opacity: 1;
    }
  
    50% {
      top: 0%;
      bottom: 0%;
      opacity: 1;
    }
  
    55% {
      top: 0%;
      bottom: 100%;
    }
  
    62% {
      opacity: 0;
    }
  
    100% {
      top: 0%;
      bottom: 100%;
      opacity: 0%;
    }
  }
  
  @keyframes slideUp {
    0% {
      top: 100%;
      bottom: 0%;
      opacity: 0;
    }
  
    5% {
      top: 0%;
      bottom: 0%;
    }
  
    12% {
      opacity: 1;
    }
  
    50% {
      top: 0%;
      bottom: 0%;
    }
  
    55% {
      top: 100%;
      bottom: 0%;
      opacity: 1;
    }
  
    62% {
      opacity: 0;
    }
  
    100% {
      top: 100%;
      bottom: 0%;
    }
  }
  
  .tcp-app-load .ant-loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 100%;
    margin: 0 auto;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart {
    display: flex;
    padding: 10px;
    height: 120px;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span {
    position: relative;
    background: #eee;
    width: 8px;
    display: flex;
    margin: 4px;
    border-radius: 4px;
    height: 80px;
    top: 25px;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(even)::before {
    animation: slideUp 5s ease-out infinite;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(odd)::before {
    animation: slideDown 5s ease-out infinite;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(2)::before {
    animation-delay: 0.286s;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(3)::before {
    animation-delay: 0.572s;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(4)::before {
    animation-delay: 0.858s;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(5)::before {
    animation-delay: 1.144s;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(6)::before {
    animation-delay: 1.43s;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(7)::before {
    animation-delay: 1.716s;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(1),
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(7) {
    height: 30px;
    top: 20px;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(2),
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(6) {
    height: 60px;
    top: 10px;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(3),
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(5) {
    height: 80px;
    top: 10px;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(odd)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgb(42, 181, 202), rgb(0, 121, 194));
    border-radius: 4px;
    top: 0%;
  }
  
  .tcp-app-load .ant-loading-wrapper .motif-spinner-heart span:nth-child(even)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgb(42, 181, 202), rgb(0, 121, 194));
    border-radius: 4px;
    bottom: 0%;
  }
  
  @media (min-width: 801px) {
    .tcp-app-load .tcp-app-loading .brand-logo {
      width: 40%;
      height: 40%;
    }
  }