.cardcontainer * {
  margin: 0px;
  padding: 0px;
}

.cardcontainer {
  width: 100%;
  height: 100%;
  min-width: 280px;

  /* Card Grid Layout */
  display: grid; 
  grid-template-columns: 1fr min(100vw, 600px) 1fr; 
  grid-template-rows: 1fr fit-content(100%) 2fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px; 
}

.card {
  /* width: 600px;
  height: 300px; */
  background-color: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  /* flex-direction: column; */

  /* Shadows */
  box-shadow: -8px 9px 24px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -8px 9px 24px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -8px 9px 24px 0px rgba(0, 0, 0, 0.75);
  animation-duration: 1s;

  /* Grid Placement */
  grid-area: 2 / 2 / 3 / 3;
}

@keyframes openForm {
  from {
    height: 300px;
  }

  to {
    height: 600px;
  }
}

.card .toolbar {
  width: 100%;
  height: 29px;
  background-color: #ffffff;
  flex-direction: row;
  border-bottom: 0.5px solid #cccccc;
}
.card .toolbar .trafficlights {
  width: 52px;
  height: 29px;
  padding-left: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.card .toolbar .trafficlight {
  width: 10px;
  height: 10px;
  background-color: #febc2e;
  border-radius: 15px;
}

.card .toolbar .trafficlight:first-child {
  background-color: #ff5e57;
}

.card .toolbar .trafficlight:last-child {
  background-color: #28c73e;
}

.card .cardbody {
  width: 100%;
  min-height: 271px;
  display: flex;
  /* flex-flow: wrap; */
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.card .cardbody .profilepic {
  width: 180px;
}

.card .cardbody .profilepic img {
  width: 100%;
  height: 100%;
}

.card .cardbody .contentcontainer {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 300px;
}

.card .cardbody .textcontainer {
  margin-bottom: 12px;
}

.card .cardbody .textcontainer h1 {
  font-size: 26px;
  font-family: MA-Body, Helvetica, sans-serif;
  font-weight: bolder;
  padding-bottom: 5px;
  padding-top: 15px;
}

.card .cardbody .textcontainer h2 {
  font-size: 15px;
  font-family: MA-Subtitle, Helvetica, sans-serif;
  font-weight: 300;
  padding-bottom: 5px;
}

.card .cardbody .textcontainer ul {
  list-style-type: none;
}
.card .cardbody .textcontainer li {
  font-size: 14px;
  font-family: MA-Body, Helvetica, sans-serif;
}

.card .cardbody btn {
  align-items: center;
  height: 28px;
  padding-left: 1rem;
  padding-right: 1rem;

  text-align: center;
  line-height: 30px;

  background-color: #0063e2;
  background-image: linear-gradient(
    rgba(255, 255, 255, 10),
    rgba(255, 255, 255, 0)
  );
  background-blend-mode: soft-light;
  color: white;
  font-weight: lighter;
  font-family: MA-Body, Helvetica, sans-serif;

  border-radius: 3px;
  border: 1px solid darken(black, 10%);
  outline: none;
  box-shadow: black 1px 1px 3px;
}

.card .cardbody btn:hover {
  background-color: #317cdf;
  transition: background-color 0.2s ease-in-out;
}

.card .cardbody btn:active {
  background-color: #589ffc;
  transition: background-color 0.1s ease-in-out;
}

.card .cardbody .contentcontainer .socials {
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.card .cardbody .contentcontainer .socials * {
  align-items: center;
}

.card .cardbody .contentcontainer .socials div {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.card .cardbody .contentcontainer .socials div:hover {
  opacity: 75%;
  transition: 0.2s ease-in-out;
}
.card .cardbody .contentcontainer .socials div:active {
  opacity: 50%;
  transition: 0s;
}

.card .cardbody .contentcontainer .socials img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.card .cardbody .contentcontainer .socials .emoji {
  font-size: 24px;
  line-height: 24px;
}

.card .cardbody .contentcontainer .socials p {
  padding-left: 10px;
  display: flex;
  font-family: MA-Subtitle, Helvetica, sans-serif;
}

.card .cardbody .contentcontainer .socials #email-button {
  font-family: MA-Button, Arial, sans-serif;
}

.card .cardbody .contentcontainer .socials .copy {
  color: #afafaf;
  font-family: MA-Subtitle, Helvetica, sans-serif;
  font-weight: lighter;
  /* display: none; */
  opacity: 0;
}