/* import common styles  */
@import url("./common.css");

#social-media {
  width: 200px;
  height: 70px;
  padding: 8px;
  border: 1px solid var(--pmk-white);
  background: linear-gradient(135deg, var(--pmk-green-light), #dff5e1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

  position: fixed;
  right: -30px;
  top: 50%;
  bottom: 0;

  transform: rotate(90deg) translateY(-50%);
  transform-origin: center;

  z-index: 8000;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(6px);

  transition: all 0.3s ease-in-out;
}

#social-media:hover {
  /* background: rgba(0, 128, 0, 0.18); */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transform: rotate(90deg) translateY(-52%);
}

#social-media .social-title {
  color: rgba(0, 0, 0, 0.647);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

#social-media ul {
  display: flex;
  gap: 8px;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 8px;
}

#social-media ul li a {
  color: rgba(0, 0, 0, 0.647);
  font-size: 1.25rem;
}

#social-media ul li a:hover {
  color: var(--pmk-green);
}

/* responsive styles:: small devices  */
@media (max-width: 767.98px) {
  #social-media {
    width: 40px;
    height: 175px;
    right: 0px;
    transform: rotate(0deg) translateY(0);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
  }
  #social-media:hover {
    transform: rotate(0deg) translateY(0);
  }

  #social-media .social-title {
    display: none;
  }

  #social-media ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 8px;
  }
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
  #social-media {
    width: 40px;
    height: 175px;
    right: 0px;
    transform: rotate(0deg) translateY(0);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
  }
  #social-media:hover {
    transform: rotate(0deg) translateY(0);
  }

  #social-media .social-title {
    display: none;
  }

  #social-media ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 8px;
  }
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}
