@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  background-color: #d3d3d3;
  transition: background-color 1s cubic-bezier(1, 0, 0.5, 1);
}
body.dark {
  background-color: #0d112d;
  /*   background-color: #32383e;
 */
}

/* #2B3566 0D112D */

table {
  transition: all 1s cubic-bezier(1, 0, 0.5, 1);
}

#searchbargroup {
  height: 46px;
}

#searchbar {
  height: 46px;
  font-size: 1.2rem;
}

.logo {
  position: relative;
  transition: all .4s;

  /* margin-left: 40px; */
}

.res {
  height: 45px;
  background-color: #fff;
  border: 1px solid #888;
  /* position: absolute; */
  /* display: none; */
  transform: translateY(-145px);
  display: none;
}

#searchbar:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.35);
}

.navbar {
  background-color: #7f53ac;
  background-image: linear-gradient(315deg, #7f53ac 0%, #647dee 74%);
  height: 80px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 11;
  display: flex;
  justify-content: space-between;
  transition: box-shadow 1s;
}
.navbar.dark {
  box-shadow: 0px 5px 15px rgb(0, 0, 0);
}

.menu{
  /* display: inline; */
  position: absolute;
  z-index: 50;
  /* border: 1px solid #fff; */
  width: 40px;
  height: 40px;
  height: 80px;
  border-radius: 50%;
  transform: translate(-20px,0px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.menu .menu-circle{
  width: 22px;
  height: 22px;
}

.menu .bar{
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-top: 5px;
  border-radius: 10px;
  transition: all .2s;
  transform-origin: center;
}


.menu.open{
  transform: translate(10px,19px);
  height: 40px;
}

.menu.open ~ .navbar > .logo{
  transform: translateX(40px);
}

.menu.open:hover{
  background-color: #7a8fec;
}

.menu.open .bar{
  /* transform: translateY(-4px); */
  margin-top: 7px;
}

.menu.open .bar:first-child{
  transform: translateY(4px) rotate(135deg) ;
}

.menu.open .bar:nth-child(2){
  opacity: 0;
}

.menu.open .bar:last-child{
  transform: translateY(-14px) rotate(-135deg) ;
}

.menu:hover .bar{
  margin-top: 7px;
  transform: translateY(-4px);
}





.row > div {
  /* border: 1px black solid;
  height: 80vh; */
}

/* .table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  
} */

.table-hover td,
.table-hover th {
  border: none;
}

.toggle-wrapper {
  /* width: 30px; */
  /* height: 100%; */
  width: 75px;

  /* background-color: red; */
  position: relative;
  transform: scale(0.65, 0.65);
  display: flex;
  align-items: center;
}

nav > div {
  /* border: 1px solid black; */
}

.table tbody tr:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.table.table-dark tbody tr:hover {
  box-shadow: 0px 0px 15px rgba(70, 102, 255, 0.8);
}

.table-hover tbody tr {
  border: none;
  /* transition: all .1s; */
}

.table-wrapper {
  max-height: 500px;
  min-width: 100%;
  /* border: 1px solid black; */
  overflow: auto;
}

.nightmodespan {
  user-select: none;
}

#table-header {
  /* background-color: #7f53ac; */
  background-image: linear-gradient(40deg, #45cafc, #303f9f);
  border: none;
  color: white;
  width: 90%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  display: block;
  user-select: none;
  /*   background-image: linear-gradient(315deg, #7f53ac 0%, #647dee 74%);
 */
}

.nav-title {
  font-size: 1.4rem;
  color: white;
  font-family: "Roboto", sans-serif;
  padding: 15px;
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  cursor: default;
  user-select: none;
  z-index: 2;
  transition-delay: 0.3s;
}

.logo:hover > .nav-title {
  background-color: #7f53ac;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  transition-delay: 0s;
}

.logo:hover > #version {
  transform: translateY(40px);
  opacity: 100;
  /* transition: all 0.3s ease-in; */
}

#version {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  color: white;
  background-color: #899cee;
  padding: 5px 15px;
  position: absolute;
  left: 24px;
  z-index: -1;
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  transition-delay: 0.1s;
  text-decoration: none;
  opacity: 0;
  cursor: pointer;
}

#table-header:hover {
  background: linear-gradient(40deg, #45cafc, #303f9f);
  background-size: 150% 150%;

  -webkit-animation: AnimationName 2s ease infinite;
  -moz-animation: AnimationName 2s ease infinite;
  animation: AnimationName 2s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.progress {
  position: absolute;
  width: 100%;
  height: 3px;
}

.progress-bar {
  /* animation: progress 3s cubic-bezier(0.77, 0, 0.175, 1); */
}

@-webkit-keyframes progress {
  0% {

    width: 0%;
  }

  100% {
    width: 100%;
  }
}

#general-alert {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}
