@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel&family=Zen+Dots&display=swap');

*{
    font-family: 'Cinzel', serif;
}

img#my_logo_image{
    width: 50%;
}
body {
    
    align-items: center;
    background-color: #9100b5b2;
    justify-content: center;
    height: 100%;
     margin: 140px;
     color: #fff;
     font-weight: normal;
    text-align: center;
    background-blend-mode: luminosity;
    background-image: url(svg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    
    
      
  }

   
    .form {
        background-color: #292525;
        border-radius: 20px;
        box-sizing: border-box;
        height: fit-content;
        padding: 20px;
        width: 100%;
    }
 
  .title {
    color: #eee;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    
  }
  
  .subtitle {
    color: #eee;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .input-container {
    height: 50px;
    position: relative;
    width: 100%;
  }
  
  .ic1 {
    margin-top: 40px;
    text-align: center;
  }
  
  .ic2 {
    margin-top: 30px;
  }
  
  .input {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 100%;
    outline: 0;
    padding: 4px 20px 0;
    width: 100%;
  }
  
  .cut {
    background-color: #15172b;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 76px;
  }
  
  .cut-short {
    width: 50px;
  }
  
  .input:focus ~ .cut,
  .input:not(:placeholder-shown) ~ .cut {
    transform: translateY(8px);
  }
  
  .placeholder {
    color: #65657b;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
  }
  
  .input:focus ~ .placeholder,
  .input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-30px) translateX(10px) scale(0.75);
  }
  
  .input:not(:placeholder-shown) ~ .placeholder {
    color: #808097;
  }
  
  .input:focus ~ .placeholder {
    color: #dc2f55;
  }
  
  .submit {
    background-color: #9100b5;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    margin-top: 10px;
    outline: 0;
    text-align: center;
    width: 100%;
  }
  
  
  .submit:active {
    background-color: #440853;
  }


  .result {
    display: block;
    width: 100%;
  }
  
  .result-text {
    color: white;
    font-size: 15px;
    margin: 10px;
  }

  table, th, td {
    border: solid 1px #ddd;
    border-collapse: collapse;
    padding: 2px 3px;
    text-align: center;
    color: white;
  }
  th {
    font-weight:bold;
    color: white;
  }

  textarea {
    width: inherit;
    height: inherit;
    margin-bottom: 10px;
}

  /* creating css loader */

#loading {
    width: 2rem;
    height: 2rem;
    border: 5px solid #f3f3f3;
    border-top: 6px solid #9100b5b2;
    border-radius: 100%;
    margin: auto;
    visibility: hidden;
    display: contents;
    animation: spin 1s infinite linear;
}
#loading.display {
    visibility: visible;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



 /* Sliding Squares Loading Spinner */

      .container {
        
        background: #292525;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 0;
        visibility: hidden;
      }
      .container.display  {
        height: 100%;
        visibility: visible;
        margin-top: 30px;
      }
    
     
      .loadingspinner {
        --square: 26px;
        --offset: 30px;
    
        --duration: 2.4s;
        --delay: 0.2s;
        --timing-function: ease-in-out;
    
        --in-duration: 0.4s;
        --in-delay: 0.1s;
        --in-timing-function: ease-out;
    
        width: calc( 3 * var(--offset) + var(--square));
        height: calc( 2 * var(--offset) + var(--square));
        padding: 0px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        margin-bottom: 30px;
        position: relative;
      }
    
      .loadingspinner div {
        display: inline-block;
        background: #9100b5b2;
        /*background: var(--text-color);*/
        /*box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);*/
        border: none;
        border-radius: 2px;
        width: var(--square);
        height: var(--square);
        position: absolute;
        padding: 0px;
        margin: 0px;
        font-size: 6pt;
        color: black;
      }
    
      .loadingspinner #square1 {
        left: calc( 0 * var(--offset) );
        top:  calc( 0 * var(--offset) );
        animation: square1 var(--duration) var(--delay) var(--timing-function) infinite,
                   squarefadein var(--in-duration) calc(1 * var(--in-delay)) var(--in-timing-function) both;
      }
    
      .loadingspinner #square2 {
        left: calc( 0 * var(--offset) );
        top:  calc( 1 * var(--offset) );
        animation: square2 var(--duration) var(--delay) var(--timing-function) infinite,
                  squarefadein var(--in-duration) calc(1 * var(--in-delay)) var(--in-timing-function) both;
      }
      
      .loadingspinner #square3 {
        left: calc( 1 * var(--offset) );
        top:  calc( 1 * var(--offset) );
        animation: square3 var(--duration) var(--delay) var(--timing-function) infinite,
                   squarefadein var(--in-duration) calc(2 * var(--in-delay)) var(--in-timing-function) both;
      }
    
      .loadingspinner #square4 {
        left: calc( 2 * var(--offset) );
        top:  calc( 1 * var(--offset) );
        animation: square4 var(--duration) var(--delay) var(--timing-function) infinite,
                   squarefadein var(--in-duration) calc(3 * var(--in-delay)) var(--in-timing-function) both;
      }
    
      .loadingspinner #square5 {
        left: calc( 3 * var(--offset) );
        top:  calc( 1 * var(--offset) );
        animation: square5 var(--duration) var(--delay) var(--timing-function) infinite,
                   squarefadein var(--in-duration) calc(4 * var(--in-delay)) var(--in-timing-function) both;
      }
    
      @keyframes square1 {
        0%      {left: calc( 0 * var(--offset) ); top: calc( 0 * var(--offset) ); }
        8.333%  {left: calc( 0 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        100%    {left: calc( 0 * var(--offset) ); top: calc( 1 * var(--offset) ); }
      }
    
      @keyframes square2 {
        0%      {left: calc( 0 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        8.333%  {left: calc( 0 * var(--offset) ); top: calc( 2 * var(--offset) ); }
        16.67%  {left: calc( 1 * var(--offset) ); top: calc( 2 * var(--offset) ); }
        25.00%  {left: calc( 1 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        83.33%  {left: calc( 1 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        91.67%  {left: calc( 1 * var(--offset) ); top: calc( 0 * var(--offset) ); }
        100%    {left: calc( 0 * var(--offset) ); top: calc( 0 * var(--offset) ); }
      }
    
      @keyframes square3 {
        0%,100% {left: calc( 1 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        16.67%  {left: calc( 1 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        25.00%  {left: calc( 1 * var(--offset) ); top: calc( 0 * var(--offset) ); }
        33.33%  {left: calc( 2 * var(--offset) ); top: calc( 0 * var(--offset) ); }
        41.67%  {left: calc( 2 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        66.67%  {left: calc( 2 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        75.00%  {left: calc( 2 * var(--offset) ); top: calc( 2 * var(--offset) ); }
        83.33%  {left: calc( 1 * var(--offset) ); top: calc( 2 * var(--offset) ); }
        91.67%  {left: calc( 1 * var(--offset) ); top: calc( 1 * var(--offset) ); }
      }
    
      @keyframes square4 {
        0%      {left: calc( 2 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        33.33%  {left: calc( 2 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        41.67%  {left: calc( 2 * var(--offset) ); top: calc( 2 * var(--offset) ); }
        50.00%  {left: calc( 3 * var(--offset) ); top: calc( 2 * var(--offset) ); }
        58.33%  {left: calc( 3 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        100%    {left: calc( 3 * var(--offset) ); top: calc( 1 * var(--offset) ); }
      }
    
      @keyframes square5 {
        0%      {left: calc( 3 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        50.00%  {left: calc( 3 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        58.33%  {left: calc( 3 * var(--offset) ); top: calc( 0 * var(--offset) ); }
        66.67%  {left: calc( 2 * var(--offset) ); top: calc( 0 * var(--offset) ); }
        75.00%  {left: calc( 2 * var(--offset) ); top: calc( 1 * var(--offset) ); }
        100%    {left: calc( 2 * var(--offset) ); top: calc( 1 * var(--offset) ); }
      }
    
      @keyframes squarefadein {
        0%      {transform: scale(0.75); opacity: 0.0;}
        100%    {transform: scale(1.0); opacity: 1.0;}
      }


      label.radio.questions{
        font-size: large;


}


.glow-on-hover {
    width: 220px;
    height: 50px;
    margin-top: 20px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #8d197a, #b50097b2, #ff00c8, #d124fcb2, #ca9bd6b2, #4a1158b2, #7a00ff, #ff00c8, #9100b5b2);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

#err-table .tabulator-row.tabulator-selectable.tabulator-row-odd {
  background-color: red !important;
  font-weight: bold;
 
}
 .tabulator .tabulator-tableholder{
  background-color: red !important;
}

.tabulator-row .tabulator-cell{
  overflow: visible !important;
}

textarea#urls {
  resize: none;
}