@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("https://resources.egoffice4u.com/frontend/fonts/materialIcon/materialicons.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("https://resources.egoffice4u.com/frontend/fonts/materialIcon/materialiconsoutlined.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Round";
  font-style: normal;
  font-weight: 400;
  src: url("https://resources.egoffice4u.com/frontend/fonts/materialIcon/materialiconsround.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Sharp";
  font-style: normal;
  font-weight: 400;
  src: url("https://resources.egoffice4u.com/frontend/fonts/materialIcon/materialiconssharp.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Two Tone";
  font-style: normal;
  font-weight: 400;
  src: url("https://resources.egoffice4u.com/frontend/fonts/materialIcon/materialiconstwotone.woff2") format("woff2");
}
/*------------------------Font Awesome Shortcut--------------------------*/
/* --------------------------------- Default -------------------------------- */
a:hover {
  color: inherit;
}

/* --------------------------- Download Side Menu --------------------------- */
.downloadSideMenu {
  animation: fadeIn 0.25s linear;
  background: #fea827;
  box-sizing: border-box;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  box-shadow: -0.3em 0.3rem 0.5em -0.1em #2c2c2c;
  padding: 1.5rem 1.3rem 1.5rem 1.8rem;
  position: fixed;
  top: 35.5rem;
  right: 0;
  transition: all 0.15s ease-in-out;
  min-width: 57px;
  z-index: 99;
}
@media screen and (max-width: 550px) {
  .downloadSideMenu {
    top: initial !important;
    bottom: 6.5rem;
  }
}
.downloadSideMenu .iconWrap i.fa-arrow-to-bottom {
  color: #ffffff;
  font-size: 3rem;
  font-weight: normal;
}

/* -------------------------------- Animation ------------------------------- */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}