/* !GHOTHAM */

@font-face {
  font-family: 'Gotham Rounded Bold';
  src: url('./fonts/Gotham/GOTHAMROUNDEDBOLD.TTF');
}

@font-face {
  font-family: 'Gotham Rounded Book';
  src: url('./fonts/Gotham/GOTHAMROUNDEDBOOK.TTF');
}

@font-face {
  font-family: 'Gotham Rounded Regular';
  src: url('./fonts/Gotham/GOTHAMROUNDEDBOOK.TTF');
}

@font-face {
  font-family: 'Gotham Rounded Light';
  src: url('./fonts/Gotham/GOTHAMROUNDEDLIGHT.TTF');
}

@font-face {
  font-family: 'Gotham Rounded Medium';
  src: url('./fonts/Gotham/GOTHAMROUNDEDMEDIUM.TTF');
}
/* 
body {
  margin: 0;
  background: black !important;
} */


#toast {
  align-self: center;
  font-family: 'Gotham Rounded Medium';
  width: 40vw;
  height: auto;
  background-color: rgb(45, 45, 45);
  color: #fff;
  padding: 76px 16px 16px;
  border-radius: 10px;
  text-align: center;
  z-index: 200000000;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 30vh auto;
  position: relative;
}

#refreshIcon {
  color: white;
  margin: auto !important;
}

#updateAvailable {
  color: white;
  font-size: 24px;
  padding-bottom: 3%;
}

#updateAvailableDesc {
  padding: 0;
  line-height: 24px;
}

#reload {
  padding: 10px;
  color: #13b0d3;
  font-weight: bold;
  cursor: pointer;
}

#toast.show {
  visibility: visible;
  opacity: 1;
}

#circle {
  height: 80px;
  background-color: #e30000;
  width: 80px;
  position: absolute;
  border-radius: 50%;
  top: -42px;
  border: 4px solid white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#backElm {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  position: fixed;
  z-index: 1;
  -webkit-backdrop-filter: blur(4px);
}

@media screen and (max-width: 900px) {
  #toast {
    padding: 76px 30px 16px;
  }
}

@media screen and (max-width: 700px) {
  #toast {
    width: 75vw;
  }
}

@media screen and (max-width: 495px) {
  #toast {
    padding: 76px 16px 16px;
    width: 75vw;
  }
}

@media screen and (max-width: 420px) {
  #toast {
    padding: 76px 25px 16px;
    width: 75vw;
  }
}

@media screen and (max-width: 390px) {
  #toast {
    padding: 76px 20px 16px;
  }
}
