.profilePicContainer {
  flex-shrink: 0;
  flex-grow: 0;
}

.profilePicContainer {
  position: relative;
  height: 80px;
  width: 80px;
  border: 1px solid var(--text-color);
  box-sizing: border-box;
  border-radius: 7px;
  overflow: hidden;
  background-color: rgba(255, 255, 224, .2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  margin: 0 auto 17px;
}

input.uploadPic {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  padding: 100% 100% 0 0;
  z-index: 10;
  box-sizing: border-box;
  cursor: pointer;
}

input:hover~label.click_drop {
  opacity: 1;
}

label.click_drop.delete p {
  margin: 1px 0;
  font-size: inherit;
}

label.click_drop {
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 80px;
  font-size: 13px;
  box-sizing: border-box;
  background-color: var(--navbar-bkgrnd);
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 5px 0;
  font-weight: 300;
}

label.click_drop p:not(:last-of-type) {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

label.click_drop.disable {
  opacity: 0 !important;
}

@media screen and (max-width: 500px) {

  /* 
  .profilePicContainer {
    height: 16vw;
    width: 16vw;
    border: .2vw solid var(--text-color);
    border-radius: 1.4vw;
    margin: 0 auto 3.4vw;
  }

  input.uploadPic {
    position: absolute;
    top: -.2vw;
    left: -.2vw;
  }

  label.click_drop.delete p {
    margin: .2vw 0;
  }

  label.click_drop {
    height: 3.2vw;
    width: 3.2vw;
    font-size: 2.6vw;
    padding: 1vw 0;
  }

  label.click_drop p:not(:last-of-type) {
    font-size: 3.6vw;
  } */


  .profilePicContainer {
    height: 16vw;
    width: 16vw;
    border: .2vw solid var(--text-color);
    border-radius: 1.4vw;
    margin: 0 auto 3.4vw;
  }

  input.uploadPic {
    position: absolute;
    top: -.2vw;
    left: -.2vw;
  }

  label.click_drop.delete p {
    margin: .2vw 0;
  }

  label.click_drop {
    height: 16vw;
    width: 16vw;
    font-size: 2.6vw;
    padding: 1vw 0;
  }

  label.click_drop p:not(:last-of-type) {
    font-size: 3.6vw;
  }

}

@media screen and (max-width: 320) {
  .hide320 {
    display: none;
  }
}