@keyframes zoom-anim{
    100%{
        filter:blur(5px);
        transform:scale(2) translate(100px,100px);
        
        opacity:0.1;

    }
}
@keyframes unzoom-anim{
    100%{
        filter:blur(0px);
        transform:scale(1);
    }
}


.unzoom{
    filter:blur(5px);
    transform:scale(3);
    animation:unzoom-anim 1s;
}
.layerzoom{
    filter:blur(5px);
    transform:scale(3);
    max-height:100%;
    max-width:100%;
    z-index:3;
    position:absolute;
}

body{

    background: #5a2d81;
    font-family:Roboto;
}
.bar{
    width:90vw;
    display:flex;
    
  
}
#first-bar-content{
    
    justify-content: space-between;
}

#first-bar{
    height: 48px;
  display: flex;
  width: 100%; 
  background-color: #F2F2F2;
  color:#61526e;

  font-family:Roboto;
  font-size:20px;
  font-weight: bold;
  justify-content: center
  
  
}
a {
    border:0;
    outline: none;
   }
#second-bar{
   
    background: #5a2d81;
    width:100%;
    height:40px;
    display: flex;
    justify-content: center
}

.n-buttons{
    outline: 0;
    display:flex;
    align-items:center;
    font-weight:bold;
    font-family:Roboto;
    font-size:13px;
    padding:0px 8px;
    color:#d3bbe7;
}
.n-buttons:hover{
    color:#b38ad6;
    cursor:pointer;
}

#left{
  display:flex;
  
  
}
#avatar-img{
    width:100%;
    height:100%;
    border:solid 1px #c7c7c7;
  border-radius: 100%;
}


#right{
  display:flex;
  justify-content: right;
  
  

}


.p-buttons{
  height: 32px;
  width: 32px;
  display:flex;
  align-content:center;
  justify-content: center;
  margin:8px;
  /*background-color: #61526e;*/
  background: white;
  transition: 1s;
  align-self: center;
  border:none;
  border-radius:100%;
}
.p-buttons:hover{
  cursor: pointer;
  
}

#create-img{
  align-self: center;
  height: 16px;
  width: 16px;
}
#my-tripzz-img{
  align-self: center;
  height: 16px;
  width: 16px;
}

#icon-href{
    display:flex;
    align-items:center;
}
#icon{
  align-self: center;
  max-height: 70%;
} 
#avatar-tripzz{
  display: flex;
  align-items: center;
 
  background-color: lightgrey;
  font-family:  Roboto,Helvetica,Arial,sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  border:solid 1px grey;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  color:white;
}



  
  #left-bar{
    display:flex;
    
    
  }
  
  
  
  
  


#name-project-input{
    background: #5a2d81;
}

.point{


  z-index: 2;
  position:absolute;
  padding:10px;
    background:linear-gradient(149deg, #0E3EDA 0%, #F473B9 42%, #FFBDE6 72%, #FFDDEE 100%);
    background-size: 1000%;
  border:#8A39E1 solid 2px;
  border-radius: 100%;
  animation:point-gradient 20s infinite;


  
}

@keyframes point-gradient{
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
.step{
    flex:1;
    padding-top:10px;
    transition: 1s;
}
#progressBar{
    display:flex;
    flex-direction: row;
    justify-content: center;
    background-color: white;
    margin-top: 10px;

    
}