.live-chat {
   position: fixed;
   bottom: 50px;
   right: 5px;
   z-index: 9999;
   line-height: normal;
   text-align: center;
   cursor: pointer;
   background: #fff;
   border-radius: 8px;
   padding: 5px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.live-chat a {
   border-radius: 100%;
   width: 40px;
   height: 40px;
}

.live-chat a img {
   width: 40px;
   height: 40px;
}

.entry-summary img{
   width: 100%;
   height: auto;
}

.skeleton-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.skeleton-image {
  width: 100%;
  background: #e0e0e0;
  border-radius: 8px;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-text {
  width: 100%;
  height: 20px;
  background: #e0e0e0;
  border-radius: 4px;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-text.short {
  width: 60%;
}


@keyframes shimmer {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.skeleton-image,
.skeleton-text {
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f5f5f5 50%,
    #e0e0e0 75%
  );
  background-size: 200% 100%;
}
.min-height-230{
  min-height: 230px;
}
.w-full{
  width: 100%;
}
.top-0{
  top: 0;
} 
.bottom-0{
  bottom: 0;
}
.left-0{
  left: 0;
}
.right-0{
  right: 0;
}
.entry-summary{
  white-space: pre-line;
}
.entry-summary img{
  max-width: 100%;
}
.mobile-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 4px 16px;
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, .2);
}
@media (min-width:768px){
  .live-chat {
    bottom: 20px;
    right: 20px;
  }
  .mobile-nav {
    display: none;
  }
}
.mobile-nav a{
  text-align: center;
  line-height: 16px;
}
.mobile-nav a div:first-child{
  margin-bottom: 6px;
  font-size: 20px;
}
.mobile-nav a.active{
  font-weight: bold;
}
.mobile-nav a.active div:before{
  font-weight: bold;
}
.header.is-sticky {
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, .2);
}
.w-auto {
  width: auto;
}

.header-marquee {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 36px;
  overflow: hidden;
  background: var(--color-blue-1);
  color: #fff;
}

.header-marquee__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: header-marquee-scroll 30s linear infinite;
}

.header-marquee__item {
  flex-shrink: 0;
  padding: 0 40px;
  font-size: 14px;
  line-height: 36px;
  white-space: nowrap;
}

.header.header--with-marquee {
  top: 36px;
}

.header-margin--with-marquee {
  margin-top: 126px;
}

@media (max-width: 767px) {
  .header-margin--with-marquee {
    margin-top: 116px;
  }
}

@keyframes header-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.contact-map-embed iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}