.mobile-html.inner-link-style-normal {
	min-height: 68px !important;
}

.w-h1 {
	font-size: 26px!important;
	text-align: center;
}


.w-search-trigger {
	display: inline-flex;
	padding: 5px 26px;
	border-radius: 10px;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: 1px solid #ccc;
}

@media (max-width: 767px) {
	.w-search-trigger {
	display: inline-flex;
	padding: 5px 10px;
	border-radius: 10px;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: 1px solid #ccc;
}
}


.w-search-trigger:hover {
 border: 1px solid #168a87;
        }

.w-search-trigger img {
width: 20px;
height: 20px;
margin-left: 10px;
        }


.w-search-trigger span {
font-size: 15px;
color: #333;
        }

@media (max-width: 767px) {
	.w-search-trigger span {
	font-size: 12px;
	color: #333;
	        }
}

        

.w-search-trigger img {
  display: block;
}

.w-search-modal {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  max-height: 0;
  z-index: 999;
  display: flex;
  background: rgba(202, 210, 223, 0.5);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: top 0.4s ease, max-height 0.8s ease-in-out;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.w-search-modal.w-active {
  top: 0;
  max-height: 90vh;
  overflow-y: auto;
  transition: top 0.4s ease, max-height 0.8s ease-in-out;
}

.w-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-close-btn img {
  display: block;
  width: 100%;
  height: 100%;
}


@media (max-width: 767px) {
  div.w-search-container1 {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  padding: 0 0 50px 0!important;
  transition: all 0.3s ease;
}
}

@media (max-width: 767px) {
  p.w-h1 {
 	margin-block-end: 0;
}
}

@media (max-width: 767px) {
	.w-search-container {
	  position: relative;
	  width: 100%;
	  max-width: 550px;
	  margin: 10px auto!important;
	}
}


div.w-search-container1 {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  padding: 50px 0 50px 0;
  transition: all 0.3s ease;
}

.w-search-container1 p {
  margin-top: 30px;
  font-size: 20px;
  color: #333;
}

.w-search-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 30px auto;
}

.w-search-box {
  width: 100%;
  max-width: 550px;
  padding: 15px 45px 15px 20px;
  font-size: 15px;
  border: 2px solid #007bff;
  border-radius: 30px;
  outline: none;
  background-color: #fff;
  display: block;
}

.w-search-box:focus {
  border-color: #0056b3;
}

.w-search-icon-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  line-height: 1;
  width: 20px;
  height: 20px;
}

.w-search-icon-btn img {
  display: block;
  width: 100%;
  height: 100%;
}

.w-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: 100%;
}

.w-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 123, 255, 0.1);
  border-left-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.w-loading p {
  color: #666;
  font-size: 16px;
}

.w-error {
  color: #e74c3c;
  text-align: center;
  padding: 20px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 10px;
  margin: 20px 0;
  font-size: 16px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#w-search-results {
  width: 100%;
  transition: all 0.3s ease-out;
}

#w-search-results > * {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

#w-search-results > *:nth-child(1) { animation-delay: 0.1s; }
#w-search-results > *:nth-child(2) { animation-delay: 0.2s; }
#w-search-results > *:nth-child(3) { animation-delay: 0.3s; }
#w-search-results > *:nth-child(4) { animation-delay: 0.4s; }
#w-search-results > *:nth-child(5) { animation-delay: 0.5s; }

#w-search-results > .w-no-results-container { animation-delay: 0.2s; }

.w-search-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.w-result-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  padding: 15px;
  width: 100%;
  max-width: 550px;
}

.w-result-item-link {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.w-result-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.w-result-title {
  margin: 0 0 8px 0;
  font-weight: 500;
  font-size: 18px;
  color: #333;
}

.w-result-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.w-no-results {
  font-size: 20px;
  color: #888;
  text-align: center;
}

.w-no-results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 550px;
  margin: 20px auto;
}

.w-contact-info {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: center;
}

a.w-contact-info {
  color: #168a87;
  font-size: 20px;
  margin-bottom: 30px;
  text-decoration: none;
  font-weight: 500;
}

.w-contact-info a:hover {
  text-decoration: underline;
}

.w-view-all-btn:hover {
  background-color: #ff6900;
  color: white;
}

.w-view-all-btn {
  display: inline-block;
  background-color: #168a87;
  color: white;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .w-search-container1 p {
    font-size: 20px;
  }
  
  .w-result-item {
    padding: 10px;
  }
  
  .w-result-item img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  
  .w-result-title {
    font-size: 16px;
  }
  
  .w-result-item p {
    font-size: 13px;
  }
  
  .w-close-btn {
    top: 20px;
    right: 20px;
  }
}
