html * {
   font-family: sans-serif !important;
}	
	.download-link span {
      color: #fff;
      vertical-align: middle;
      font-weight: bold;
      font-size: 20px;
    }

    .download-link {
      text-decoration: none;
    }

    /* Style the button that is used to open and close the collapsible content */
    .collapsible {
      background-color: DodgerBlue;
      color: #fff;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
    }

    .collapsible-android {
      background-color: #A4C639;
      color: #fff;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
    }
	
    .collapsible-huawei {
      background-color: #ED1C24;
      color: #fff;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
    }

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active,
    .collapsible:hover,
    .collapsible-android:hover {
      /*background-color: #ccc;*/
      border-radius: 5px;
    }

    /* Style the collapsible content. Note: hidden by default */
    .content {
      padding: 0 18px;
      display: none;
      overflow: hidden;
      background-color: #f1f1f1;
    }

    /* Style buttons */
    .btn {
      background-color: #007aff;
      border: none;
      color: white;
      padding: 12px 30px;
      cursor: pointer;
      font-size: 20px;
    }

    .btn-android {
      background-color: #A4C639;
      border: none;
      color: white;
      padding: 12px 30px;
      cursor: pointer;
      font-size: 20px;
    }

    .btn-huawei {
      background-color: #ED1C24;
      border: none;
      color: white;
      padding: 12px 30px;
      cursor: pointer;
      font-size: 20px;
    }

    /* Darker background on mouse-over */
    .btn:hover {
      background-color: RoyalBlue;
    }