#profile-head {
    padding: 1em;
    background-color: rgb(44, 44, 44);
}

#space {
    height: 100px;
    width: 100%;
    background-color: blueviolet;
    margin-top: 1em;
    border-radius: 10px 10px 0px 0px;
}

#profile-head .logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 100px;
    border: solid 2px blueviolet;
    margin-right: 1em;
}


#menu {
    border-left: solid 1px rgb(57, 57, 57);
    border-bottom: solid 1px rgb(57, 57, 57);
    border-right: solid 1px rgb(57, 57, 57);
    display: flex;
}

#menu button {
    padding: 1em 2em;
    text-decoration: none;
    border: none;
    background-color: #0000;
}
#menu button:hover {
    background-color: #383838;
}

#menu button.active {
    background-color: rgb(0, 115, 255);
}

#line_historic {
    display: flex;
    flex-direction: column;
}

#line_historic ul#times {
    display: flex;
    flex-direction: column;
}

#line_historic ul#times li {
    width: 100%;
    height: 60px;
    color: white;
    display: flex;
    padding: 10px;
}

#line_historic ul#times li p {
    text-align: center;
    border: solid 1px #eee;
    padding: 10px;
    margin: 0;
    width: 15%;
}
#line_historic ul#times li .bar {
    height: 100%;
    width: 85%;
    background-color: #383838;
    display: flex;
}
#line_historic ul#times li .bar span {
    background-color: blueviolet;
    height: 100%;
    display: flex;
}

.file-upload {
    background-color: #ffffff;
    width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
  }
  
  .file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
  }
  
  .file-upload-content {
    display: none;
    text-align: center;
  }
  
  .file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
  }
  
  .image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed #1FB264;
    position: relative;
  }
  
  .image-dropping,
  .image-upload-wrap:hover {
    background-color: #1FB264;
    border: 4px dashed #ffffff;
  }
  
  .image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
  }
  
  .drag-text {
    text-align: center;
  }
  
  .drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
  }
  
  .file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
  }
  
  .remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
  }
  
  .remove-image:active {
    border: 0;
    transition: all .2s ease;
  }