

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }

  
  .card {
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    height: 300px;
    margin: 1rem;
    position: relative;
    width: 300px;
  }
  
  .card-1 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  }
  
  .card-1:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }
  
  .card-2 {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  }
  
  .card-3 {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }
  
  .card-4 {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }
  
  .card-5 {
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  }
  

  input[type=text], select, textarea,input[type=email],input[type=tel] {
    width: 100%; 
    padding: 7px; 
    border: 1px solid #ccc; 
    border-radius: 4px;
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px; 
    resize: vertical ;
  }

  select{
    clear: both;
  }


  .hidden_form {
    opacity: 0;
    transition: opacity 0.5s ease-in;
  }

  .show-me {
      opacity: 1;
      transition: opacity 0.5s ease-in;
  }

  input[type=text].input-lg{
    padding: 15px; 
  }

  input[type=text].clear{
    width: auto;
  }

  @keyframes fadeIn {
    99% {
      visibility: hidden;
    }
    100% {
      visibility: visible;
    }
  }

  .page-bottom{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%; 
    z-index: 10000;
  }

  ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  ul li{
    display:inline-block;
    clear: both;
    padding: 10px;
    border-radius: 30px;
    margin-bottom: 5px;
    font-family: Helvetica, Arial, sans-serif;
  }
  

   
  ul li{
    display:inline-block;
    clear: both;
    padding: 10px;
    border-radius: 30px;
    margin-bottom: 5px;
    font-family: Helvetica, Arial, sans-serif;
  }

 

  .him{
    background: #eee;
    color: black;
    float: left;
    max-width: 50%;
  }
  
  .me{
    float: right;
    background: #0084ff;
    color: #fff;
    max-width: 50%;
  }
  
  .smaller{
    display:inline-block;
    clear: both;
    padding: 7px;
    border-radius: 2px;
    margin-bottom: 5px;
    font-family: Helvetica, Arial, sans-serif;
    max-width: 55%;
  }

  .him + .me{
    border-bottom-right-radius: 5px;
  }
  
  .me + .me{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  .me:last-of-type {
    border-bottom-right-radius: 30px;
  }

  .screen{
    background-color: #fff;
    height: 400px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
  }

  .conversation{
    height: calc(100% - 50px);
    overflow: auto;
    padding: 20px;
    padding-bottom: 0;
  }

  .biggerborder{
    background-color: cornflowerblue;
  }


  textarea,input[type='text'].colored{
    color: white;
    resize: none ;
  }

  textarea,input[type='text'].colored::placeholder{
    color: white;
  }

  .hide_box{
    opacity: 1;
    transition: all 1s linear;
  }

  .hide_box,.start{
    opacity: 0;
  }

  .lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 8px;
    border: 4px solid rgb(17, 46, 206);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgb(17, 46, 206) transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  