.mint-share-widget {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.msw-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msw-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f3d57;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.msw-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.msw-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  background-color: #0f3d57 !important;
  line-height: 1;
}
.msw-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.msw-btn i {
  font-size: 15px;
}
.msw-facebook {
  background: #1877f2;
}
.msw-twitter {
  background: #1da1f2;
}
.msw-whatsapp {
  background: #25d366;
}
.msw-linkedin {
  background: #0a66c2;
}
.msw-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.msw-copy {
  background: #0f3d57;
}
@media (max-width: 600px) {
  .msw-btn span {
    display: none;
  }
  .msw-btn {
    padding: 10px 13px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .msw-btn i {
    font-size: 16px;
  }
  .msw-buttons {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .msw-copy-label {
    display: none;
  }
  .msw-copy.copied .msw-copy-label {
    display: inline;
    font-size: 11px;
  }
}
@media (max-width: 380px) {
  .msw-btn {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}
