/* Metadata Header */
.metadata-header {
  display: flex;
  padding: 0 0 24px 0;
  align-items: center;
  border-bottom: 1px solid #BEC0CD;
  margin-bottom: 48px;
}

.metadata-header .eyebrow-text {
  width: calc(100% - 82px);
  margin-bottom: 0;
}

.metadata-share-container {
  padding-left: 8px;
  position: relative;
  transition: all 0.3s ease;
}

/* Share Button */
a.meta-share-btn {
  font-family: 'Peak Sans';
  font-size: 16px;
  line-height: 24px;
  color: #000A3C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Share Menu */
.share-menu-container {
  width: 245px;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px 3px #00000026;
  height: auto;
  padding-block: 0;
}

.share-menu-container .share-menu-item a {
  padding: 16px;
  gap: 8px;
  align-items: center;
  display: flex;
  text-decoration: none;
  color: #000A3C;
  min-height: 52px;
}

.share-menu-container .share-menu-item .smenu-icon {
  display: flex;
  width: 16px;
  height: 16px;
}

.share-menu-item .smenu-icon svg {
  width: 100%;
  height: 100%;
}



.share-menu-container .share-menu-item .smenu-txt {
  font-family: "Peak Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  width: calc(100% - 24px);
  text-wrap: wrap;
  white-space: normal;
}

.share-menu-container .share-menu-item:first-child {
  border-bottom: 1px solid #E8E9ED;
}

.metadata-share-container.dropdown-toggle::after{
  display: none;
}


.share-menu-container.dropdown-menu.show {
  transform: translate3d(0, 40px, 0) !important;
}


/* Toast Notification */


.pr-toast {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
  padding: 12px 16px;
  background-color: #000A3C;
}


.toast.show {
  opacity: 1;
}

.toast-message {
  display: block;
  font-family: 'Peak Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.toast-close {
  cursor: pointer;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}



/* Responsive */

@media (min-width:1025px){
  .share-menu-container .share-menu-item:hover a,
.share-menu-container .share-menu-item:hover svg path {
  color: #0064FF;
  fill: currentColor;
}
}


@media (max-width: 767px) {
  .eyebrow-text.metaHeaderMobile {
    flex-direction: column;
    align-items: flex-start !important;
    display: inline-flex !important;
  }
  .metadata-header .metaHeaderDesktop {
    display: none;
  }
  .share-menu-container.dropdown-menu.show {
    transform: translate3d(0, 50px, 0) !important;
  }
}

@media (min-width: 768px) {
  .metadata-header .metaHeaderMobile {
    display: none;
  }
}

@media (max-width: 1024px) {
  .metadata-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  a.meta-share-btn {
    gap: 8px;
  }
}

