article {
  margin-bottom: 0;
}

.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.submit-form > input {
  float: right;
  padding: 0 3vw 0 3vw;
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}

.contacts li {
  padding: 0.5rem;
}

@media only screen and (min-width: 1404px) {
  .contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }
  .contacts li {
    padding: 0;
  }
}

.like-widget span {
  margin: 0 5px;
  font-size: 16px;
  font-family: "Helvetica", "Arial", sans-serif;
}

.like-widget > .like-heart > svg {
  cursor: pointer;
  fill: rgb(150, 0, 0);
}

.like-widget > .like-heart > svg:hover {
  fill: rgb(255, 28, 28);
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

div p a {
  text-decoration: none;
  color: rgb(140, 140, 140);
}

@media only screen and (min-width: 1000px) {
  .bordered {
    border-color: midnightblue;
    border-style: solid;
    border-width: 20px;
    padding: 2em;
    border-radius: 10px;
  }

  .animatedShadow {
    transition-timing-function: ease-in-out;
    transition: box-shadow 0.5s;
  }
  .animatedShadow:hover {
    box-shadow: 0 55px 50px 0 rgba(0, 0, 0, 0.2),
      0 30px 30px 0 rgba(0, 0, 0, 0.19);
  }
}

li > a > svg {
  width: 20px;
  height: 20px;
  vertical-align: top;
}

.contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about > p {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.chars {
  vertical-align: text-top;
  min-height: 20px;
  text-decoration: none;
  color: #ccc;
  font-size: 36px;
  text-align: center;
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times,
    Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort;
}

.timeline > li > ul > li:nth-last-child(1) {
  display: block;
}

.timeline > li > ul > li .project-container {
  display: block;
  background-color: black;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.5s linear;
  transform: skewX(-15deg);
  width: 350px;
}

@media only screen and (max-width: 770px) {
  .project-container {
    width: fit-content !important;
  }
}

.timeline > li > ul > li > div > a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s linear;
}

.timeline > li > ul > li > div > p {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.timeline > li > ul > li > div > p > a {
  text-transform: uppercase;
  color: white;
  background-color: rgba(153, 0, 255, 0.517);
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: scale 0.5s;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.19);
}

.timeline > li > ul > li > div > p > a:hover {
  scale: 1.2;
}

.labs-content {
  display: block;
  transition: all 0.35s;
}
.labs-content:not(.show) {
  display: none;
}

.avatar {
  border-radius: 15px;
  margin-bottom: 0.3em;
}

.warning {
  border-color: red !important;
}

.hintJs {
  position: fixed;
  top: 0;
  left: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: larger;
}

.transitioned {
  transition: all 0.5s;
}

.hiddenHintJs {
  position: fixed;
  top: 1rem;
  left: 1rem;
  color: #ffffff;
  padding: 1rem 1.5rem;
}

.hint-container {
  padding: 1rem;
}

.progress-to-hide {
  height: 0.5rem;
  position: absolute;
  top: 0;
}

.withToolTip {
  position: relative;
}

.messageAlert {
  z-index: 1030;
  margin: 0;
  position: absolute;
  display: none;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.closeButton {
  position: absolute;
  display: block;
  background: transparent;
  top: 0;
  right: 10px;
  color: darkred;
  font-size: 110%;
  transition: all 0.1s;
}

.closeButton:hover {
  cursor: pointer;
  transform: scale(1.1);
}

form[name="opportunityOffer"] input[type="submit"]:disabled {
  background-color: #ccc;
  color: black !important;
  border: solid 1px #ccc;
}
