.image-upload>input {
    display: none;
}

.radius{
    border: 3px solid #44959B;
    border-radius: 40px;
}

.bgpowercallcolor{
    background-color: #44959B;
}

.powercallcolor{
    color: #44959B;
}

.white{
    color:white;
}

html, body {
    height: 100%;
}
      
.container-full-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}
        
.content {
    flex-grow: 1;
}
        
.footer {
    height: 60px;
    
}

.navbarPC{
    min-height:55px;
    height:55px;
    max-height:55px;
}

#flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    animation: flashAnimation 0.5s linear;
  }

@keyframes flashAnimation {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}