@import url('https://fonts.googleapis.com/css?family=Rajdhani');

#header {
  color: #a760e9;
  font-size: 30px;
  display: grid;
  grid-template-columns: 30% 20% 15%;
  justify-content: space-around;
}
.error {
  border: 2px solid red;
}
#calContainer {
  font-weight: 600;
}
#weekdays {
  text-align: center;
  color: #247BA0;
}
#calendar {
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(7,14%);
  justify-content: center;
}
.day {
  width: 135px;
  padding: 5px;
  height: 170px;
  cursor: pointer;
  box-sizing: border-box;
  background-color: #2c3034;
  margin: 5px;
  box-shadow: 0px 0px 3px #a760e9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  transition: 0.5s;
}
.day:hover {
  background-color: rgb(71, 0, 137);
  scale: 1.1;
  transition: 0.5s;
}

.day + .currentDay {
  color:rgba(100, 180, 250);
  box-shadow: 2px 2px 5px rgba(100, 180, 250);
}
.event {
  font-weight: 400;
  font-size: 10px;
  padding: 1.5px;
  background-image: linear-gradient(270deg,#a760e9,rgb(71, 0, 137), rgba(0,0,0,0.8));
  color: white;
  border-radius: 5px;
  max-height: 55px;
  overflow: hidden;
  white-space: nowrap;
}
.event:hover {
  background-image: linear-gradient(270deg,rgba(100, 180, 250),rgb(71, 0, 137), rgba(0,0,0,1));
}
.padding {
  cursor: default !important;
  background-color: #2c3034 !important;
  box-shadow: none !important;
}
#newEventModal, #deleteEventModal {
  z-index: 20;
  padding: 25px;
  background-color: #a760e9;
  box-shadow: 0px 0px 20px black;
  border-radius: 20px;
  width: 65%;
  top: 5%;
  height: 90%;
  left: 17%;
  position: absolute;
  animation: fadeIn 0.5s;
}
#updateEventModal {
  z-index: 20;
  background-color: #a760e9;
  box-shadow: 0px 0px 20px black;
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  animation: fadeIn 0.5s;
  top: 3%;
  left: 3%;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
#eventTitleInput {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 25px;
  border-radius: 3px;
  outline: none;
  border: none;
  box-shadow: 0px 0px 3px gray;
}
#modalBackDrop {
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 104%;
  height: 100%;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
  border-radius: 10px;
  margin-right: -10px;
}
#navLinkColor {
  text-decoration: none;
  color: white;
}
#col-grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
  column-gap: 10px;
  justify-content: center;
}
#uList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#searchDropdown {
  position: absolute;
  background-image: linear-gradient(180deg,rgb(121, 50, 187), black);
  z-index: 11;
  margin-top: 12px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
}
#searchContainer {
  box-sizing: border-box;
  position: relative;
}
.sBarW {
  border-radius: 20px;
}
#sResults {
  display: grid;
  margin: 5px;
}
#sUListBtn {
  display: grid;
  grid-template-columns: auto auto auto;
}
#sUListBtn button {
  font-size: 21px;
}
#gDUListBtn {
  display: grid;
  grid-template-columns: auto;
  width: 70%;
  margin: auto;
  margin-top: 10px;
  gap: 5px;
}
#sRUListBtn {
  display: grid;
  grid-template-columns: auto auto auto;
  margin-top: 10px;
  gap: 5px;
}
::placeholder {
  padding-left: 10px;
}
.uListLink {
  cursor: pointer;
  color: rgba(100, 180, 250);
  font-weight: 600;
  text-decoration: underline;
}
.uListSteamContainer {
  background-color: black;
  padding: 5px;
  border-radius: 10px;
  color: white;
}
.uListGameCountBg {
  background-image: linear-gradient(180deg, rgba(100, 180, 250) 0%, #a760e9 99%);
  border-radius: 10px;
  padding-left: 7px;
  padding-right: 7px;
  text-shadow: 1px 1px 1px black;
}
#gameD-grid-container {
  display: grid;
  grid-template-columns: auto 15% auto auto;
  column-gap: 50px;
  padding-top: 20px;
  padding-left: 20px;
}
.gameDInfoBorder {
  background-image: linear-gradient(90deg,black,rgb(71, 0, 137), black);
  box-shadow: 0px 0px 10px black;
  color: white;
  border-radius: 10px;
  padding: 5px;
}
.gameDInfoLink {
  cursor: pointer;
  color: rgba(100, 180, 250);
  font-weight: 600;
  text-decoration: underline;
}
.gameDCaro {
  background-image: linear-gradient(180deg, #a760e9, black);
  width: 900px;
  margin: auto;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  margin-top: 10px;
}
.gameOuterBorder {
  padding: 10px;
  background-image: linear-gradient(180deg, #a760e9,rgb(71, 0, 137), rgba(0,0,0,1), black);
  box-shadow: 0px 0px 10px black;
  border-radius: 20px;
}
.gameCover {
  position: relative;
  top: 0;
  left: 0;
  padding-top: 0px;
}
.gameCoverName {
  position: absolute;
  color: white;
  background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1), black);
  bottom: 0;
  width: 100%;
  text-align: center;
}
.gameCoverImg {
  position: relative;
  cursor: pointer;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.gameDetailsGames {
  display: flex;
  overflow-x: auto;
  width: 900px;
  gap: 20px;
  padding: 20px;
}
.gameDetailsSite {
  padding-left: 10px;
  text-shadow: 1px 1px black;
  font-size: 18px;
  font-weight: 700;
  color:white;
}
.iScale {
  scale:"1.5"
}
.similarGames {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  cursor: pointer;
  margin-top: 20px;
}
.testing {
  font-family: 'Rajdhani', sans-serif;
}
.standinBg {
  position: absolute;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  z-index:-2;
  background-image: linear-gradient(to top,rgba(0,0,0,1),rgba(0,0,0,0.1),rgba(0,0,0,0)),url("/calendarBackground.jpeg")
}
.item {
  align-items: center;
  color: #FFF;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.disabled-page {
  color: #808e9b;
}

.active {
  border: solid 1px #a760e9;
  border-radius: 40px;
  color: black;
}
.activePage {
  border: solid 1px black;
  border-radius: 40px;
  color: black;
}
.next {
  border-left: solid 1px #808e9b;
  font-size: 20px;
  height: 60px;
  position: absolute;
  right: 0;
  width: 10%;
}
.next a {
  text-decoration: none;
  color: white;
  scale: 1.5;
}
.pagination {
  align-items: center;
  background-color: #a760e9;
  box-shadow: black 3px 3px 10px;
  flex-direction: row;
  height: 60px;
  justify-content: center;
  position: relative;
  width: 100%;
  border-radius: 30px;
  scale: 0.7;
}

.pagination-page {
  font-weight: 700;
  font-size: 20px;
}

.previous {
  border-right: solid 1px #808e9b;
  font-size: 20px;
  height: 60px;
  left: 0;
  position: absolute;
  width: 10%;
}
.previous a {
  text-decoration: none;
  color: white;
  scale: 1.5;
}
.fadeIn {
  opacity: 1;
  transition: opacity 0.5s;
}
.fadeOut {
  opacity: 0;
  transition: opacity 0.5s;
}
.boxTitle {
  font-size: 26px;
  color: white;
  text-shadow: 2px 2px 2px black;
  font-weight: 600;
}
.ratingTitle {
  font-size: 40px;
  font-weight: 600;
  filter: drop-shadow(2px 2px rgb(71, 0, 137));
  background-image: linear-gradient(45deg, #a760e9, rgba(100, 180, 250));
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.wheelTitles {
  color: white;
  text-shadow: 2px 2px 2px black;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background-image: linear-gradient(180deg, rgba(100, 180, 250) 0%, #a760e9 99%);
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
  border-radius: 100px;
}
.homeSepLine {
  border-radius: 10px;
  width: 80px;
  height: 3px;
  margin-left: 2px;
  margin-bottom: 10px;
}
.steamSepLine {
  border-radius: 10px;
  width: 100%;
  height: 3px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.sUListBg {
  background-image: linear-gradient(270deg,#a760e9,rgb(71, 0, 137), rgba(0,0,0,0.8));
  padding: 5px;
  border-radius: 10px;
  color: white;
  text-shadow: 1px 1px 1px black;
  width: 17vw;
}
.sUListItem {
  transition: 0.5s;
}
.sUListItem:hover {
  background-image: linear-gradient(270deg,rgba(100, 180, 250),rgb(71, 0, 137), rgba(0,0,0,1));
  scale: 1.1;
  transition: 0.5s;
  border-radius: 10px;
}
.sResultItem {
  background-image: linear-gradient(180deg, rgb(71, 0, 137), black);
  color: white;
  padding: 10px;
  border-radius: 20px;
}
.sFilterName {
  border-radius: 10px;
  padding: 5px;
  background-image: linear-gradient(270deg,#a760e9,rgb(71, 0, 137), rgba(0,0,0,0.8));
  color: white;
  cursor: pointer;
}
.sFilterName:hover {
  background-image: linear-gradient(270deg,rgba(100, 180, 250),rgb(71, 0, 137), rgba(0,0,0,1));
}
.sFilterNameCurr {
  border-radius: 10px;
  padding: 5px;
  background-image: linear-gradient(270deg,rgba(100, 180, 250),rgb(71, 0, 137), rgba(0,0,0,1));
  color: white;
  cursor: pointer;
}
.uListGame {
  background-color: black;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  max-height: 435px;
}
.uListGame:hover {
  background-image: linear-gradient(180deg,rgba(100, 180, 250),rgb(71, 0, 137), rgba(0,0,0,1));
}
.thirdPartyBanner {
  color: white;
  z-index: 5;
  position: absolute;
  top: -20px;
  font-size: 14px;
  padding-right: 5px;
  padding-left: 2px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 2px 2px 5px rgba(167, 96, 233,1);
}
html, body {
  overflow: hidden;
}