/* violet theme */
body {
    background-color: #28223F;
}

.navbar{
    background-color:#1F1A36;
    color: #ffff !important;
}

.navbar-default .navbar-brand{
    color: #ffff !important;
}

.contact{
    background-color: #231E39;
    color: #B3B8CD;
}

/* blue theme */
/* body {
    background: #64b5f6;
    text-align: center;
  }

.contact{
    background-color: #ffd54f;
    color: #37474f;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
} */

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 100px;
  }

body {
    height: 100%;    
    font-family: Arial, Helvetica, sans-serif;
}

.action-delete {
    color: red;
}
.action-edit {
    color: green;
}
.contact-list {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.contact {
    border: 1px solid;
    margin-bottom: 2rem;
    border-radius: 10px;
    align-items: center;
    max-width: 100%;
}

.fabs {
    /* position: absolute;
    margin-top: -30px;
    margin-left: 260px; */
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    transition: 1s ease-in-out;
    border-radius: 50%;
  }

  .avatar {
    margin-top: 5px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    font-size:2em;
    line-height:60px;
    color: #37474f;
    border-radius: 50%;
    background-color: #ffd54f;
    position: absolute;
    transition: 0.6s ease-in-out;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
  
  .active .avatar {
    transform: scale(2);
    margin-top: 50px;
    margin-left: -30px;
    transition: 0.6s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
  
  .active .avatar:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }

  .zmdi-account:before {
    content: '\f207';
}
@media screen and (max-width: 800px) and (min-width: 600px) {
  .sticky + .content {
    padding-top: 20px;
  } 
}