body::-webkit-scrollbar {
    width: 0.8em;}
body::-webkit-scrollbar-track {
    background-color: transparent;
  }
body::-webkit-scrollbar-thumb {
    background-color:#142134;
    border-radius:30px;}

/* for borders */
.nav-div{
  border:solid 0px pink;
}

html{
    /* background-color: #070617; */
    background-color: #04000B;
    color:#fff;
}
body{
    padding:0px;
    margin:0px;
}
.sofia{
    font-family: 'Sofia-Pro', sans-serif;
}
nav{
    position: relative;
    width:95%;
    display:flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    border-bottom:1px solid grey;
    padding: 5px 10px;
    margin:2px auto;
}
.nav-div{
  width:47%;
  padding: 5px 10px;
  display:flex;
  gap: 15px;
}
#left-nav-div{
  justify-content: flex-start;
}
#right-nav-div{
  justify-content: space-around;
}
#right-nav-div > div{
  display: flex;
  align-items: center;
  gap:15px;
  border:solid 0px green;
}
#right-nav-div > div:last-child{
  gap:10px;
}

#app-icon{
  font-size:25px;
  font-weight: bold;
  text-decoration: none;
  color:#66FCF1;
  overflow: hidden;
  white-space: nowrap;
}
#app-icon-div{
  width: 0%;
  /* background-color: pink; */
  overflow: hidden;
  animation: expandWidth 4s ease-in forwards;
}
@keyframes expandWidth {
    0% { width: 0;}
    100% {width: 100%;}
}
@-webkit-keyframes expandWidth {
  0% { width: 0;}
  100% {width: 100%;}
}

#app-icon:hover{
  color:pink;
}


.nav-href{
    font-family: 'Sofia-Pro', sans-serif;
    color:#dadada;
    text-decoration: none;
}
.nav-href:hover{
    cursor:pointer;
    text-decoration:underline;
}
.auth-btn{
    padding:6px 20px;
    color:#000;
    background-color: #66FCF1;
    border-radius: 25%;
    border:none;
}
.auth-btn:hover{
    box-shadow: 0px 0px 3px #66FCF1;
    cursor:pointer;
    opacity: 0.9;
}

p{
    color:#fff;
    opacity: 0.8;
    animation:p forwards 7s;
}
@-webkit-keyframes p{
    from{opacity:0;}
    to{opacity:1;}
  }
@keyframes p{
    from{opacity:0;}
    to{opacity:1;}
  }



/* ........................for notifications................. */
.notification_div{
    top:50px;
    z-index: 9999;
    position: fixed;
    right: 0;
    margin-right:20px;
    background:transparent;
    color:white;
    border:solid 0px grey;
    border-radius:11px;
    padding:6px;
    text-align:right;
    font-size:18px;
  }
  
  .notification{
    position:relative;
    background-image:linear-gradient(to right,#333,teal);
    padding:5px 15px;
    border:solid 1px #171717;
    display:inline-block;
    border-radius:7px;
    animation-name:noted;
    animation-duration: 0.8s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
  }
  
  @-webkit-keyframes noted{
    from{left:-100px;color:transparent;opacity:0.5;}
    to{left:0px;color:white;opacity:1;}
  }
  @keyframes noted{
    from{left:-100px;color:transparent;opacity:0.5;}
    to{left:0px;color:white;opacity:1;}
  }
  
  #close{
    position:relative;
    color:white;
    border:solid 1px grey;
    background:transparent;
    display:inline-block;
    padding:3px 8px;
    border-radius:50%;
    font-weight:bold;
    cursor:pointer;
  
    animation-name:noted2;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
  }
  
  @-webkit-keyframes noted2{
    from{left:100px;color:transparent;opacity:0.5;}
    to{left:0px;color:white;opacity:1;}
  }
  @keyframes noted2{
    from{left:100px;color:transparent;opacity:0.5;}
    to{left:0px;color:white;opacity:1;}
  }
  
  #close:hover{
    color:red;
    border-color:red;
    background:#171717;
  }

/* ................................notification ended..................... */

#toolTipDiv{
  display: none;
  position: absolute;
  background-color: #2e7787;
  /* #05beb2; */
  color:#fff;
  padding:4px 8px;
  border-radius: 3px;
  z-index: 99999;
  box-shadow: 0 0 50px 15px #000;
  font-family: monospace
}


.btn{
  background-color: #66FCF1;
  border:none;
  padding:3px 7px;
  color:#070617;
  border-radius: 3px;
}
.btn:hover{
  box-shadow: 0px 0px 3px #66FCF1;
  cursor:pointer;
  opacity: 0.9;
}

.pointer{
  cursor: pointer;
}
.pointer:hover{
  opacity: 0.9;
}


/* .................for alert div................... */

.dynamic-div{
    position: relative;
    background-color:#d93b3b;
    color:#dadada;
    width:90%;
    border-radius: 3px;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:4px 10px;
    margin:1px auto;
    overflow: hidden;
    font-family: arial;
    font-size: 13px;
    animation: alert 1s ease;
    
}
@keyframes alert {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes alert {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}



/* .................cool color change for text................... */
.animate-charcter{
  background-image: linear-gradient(
    -225deg,
    #66FCF1 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 8s linear infinite;
}

@keyframes textclip {
  to {background-position: 200% center;}
}


/* .................vibration effect for an icon................... */
.vibration{
  animation: vibration 0.3s infinite;
}

@keyframes vibration {
  0% {transform: translateX(0);}
  25% {transform: translateX(-1px);}
  50% {transform: translateX(1px);}
  75% {transform: translateX(-1px);}
  100% {transform: translateX(0);}
}
@-webkit-keyframes vibration {
  0% {transform: translateX(0);}
  25% {transform: translateX(-1px);}
  50% {transform: translateX(1px);}
  75% {transform: translateX(-1px);}
  100% {transform: translateX(0);}
}





/*......................................................for mobile...................................................*/



@media only screen and (max-width: 700px) {
nav{
    width:93%;
    padding: 5px;
}
.nav-div{
  width:95%;
  padding: 5px 5px;
  display:block;
}
#right-nav-div > div{
  display: block;
  width: 100%;
  margin: 5px auto;

}
#auth-btns-div{
  position: relative;
  text-align: right;
  top:10px;
}

}