.compatibility {
    margin-top: 5em;
    min-width: 320px;
    font-family: "Roboto", Arial, sans-serif;
    color: #333;
    background-color: #f7f7f7;
}

.compatibility__info {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1em 0;
    display: block;
}

.index-loader-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    left: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.index-loader {
    border: 4px solid #f9f9f9; 
    border-top: 4px solid #0865C9; 
    border-bottom: 4px solid #0865C9; 
    border-right: 4px solid #0865C9; 
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }