@keyframes pulse_opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.viuna-search-2-popup {
  max-width: 1000px;
  width: calc(100% - 20px);
  max-height: 600px;
  height: calc(100% - 60px);
  z-index: 101;
}
.viuna-search-2-popup .inner-box {
  overflow: hidden;
}
.viuna-search-2-popup .section-title {
  height: 30px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--viuna-color-main);
}
.viuna-search-2-popup .section-title svg {
  fill: var(--viuna-color-white-gray);
}
.viuna-search-2-popup .content-box {
  gap: 30px;
}
.viuna-search-2-popup .content-box .col-content {
  width: 60%;
}
.viuna-search-2-popup .content-box .col-suggests {
  width: 40%;
}
.viuna-search-2-popup .search-form .controls {
  position: relative;
}
.viuna-search-2-popup .search-form .search-field {
  height: 44px;
  width: 100%;
  padding: 0 20px 0 46px;
  font-size: 13px;
  background: var(--viuna-color-white-dark-light);
  border-radius: var(--viuna-border-radius-box);
}
.viuna-search-2-popup .search-form .search-btn {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
}
.viuna-search-2-popup .search-form .search-btn svg {
  width: 20px;
}
.viuna-search-2-popup .keywords {
  margin-top: 15px;
}
.viuna-search-2-popup .keywords b {
  margin-top: 5px;
  font-size: 12px;
  white-space: nowrap;
}
.viuna-search-2-popup .keywords li {
  padding: 5px 15px;
  font-size: 12px;
  background: var(--viuna-color-white-dark-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.viuna-search-2-popup .keywords li:hover {
  background: var(--viuna-color-main);
  color: white;
}
.viuna-search-2-popup .thumb-posts {
  grid-template-columns: repeat(3, 1fr);
  overflow: auto;
}
.viuna-search-2-popup .thumb-posts .post-item {
  position: relative;
}
.viuna-search-2-popup .thumb-posts .post-item .image-holder {
  padding: 10px;
  background: white;
  border: 1px solid var(--viuna-color-white-dark-light);
  border-radius: var(--viuna-border-radius-box);
  box-shadow: var(--viuna-shadow-box);
  overflow: hidden;
}
.viuna-search-2-popup .thumb-posts .post-item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: var(--viuna-border-radius-box);
}
.viuna-search-2-popup .thumb-posts .post-item .title {
  margin: 10px 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.viuna-search-2-popup .result-box {
  grid-template-columns: 2fr 1fr;
  margin-top: 30px;
}
.viuna-search-2-popup .result-box.has-not-category {
  grid-template-columns: 1fr;
}
.viuna-search-2-popup .posts-result {
  position: relative;
}
.viuna-search-2-popup .posts-result .results-items {
  overflow: auto;
  height: 280px;
}
.viuna-search-2-popup .posts-result .results-items .item-place {
  animation: pulse_opacity 1s linear infinite;
}
.viuna-search-2-popup .posts-result .results-items .item-place span {
  background: #ddd;
  border-radius: var(--viuna-border-radius-box-3);
}
.viuna-search-2-popup .posts-result .results-items .item-place .title-place {
  height: 25px;
}
.viuna-search-2-popup .posts-result .results-items .item-place .price-place {
  height: 12px;
  width: 100px;
}
.viuna-search-2-popup .posts-result .results-items .title {
  position: relative;
  padding-right: 12px;
  font-size: 13px;
  color: var(--viuna-color-dark);
  transition: ala 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.viuna-search-2-popup .posts-result .results-items .title:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--viuna-color-main);
  border-radius: 50px;
}
.viuna-search-2-popup .posts-result .results-items .price-holder {
  display: flex;
  align-items: flex-end;
  font-size: 13px;
}
.viuna-search-2-popup .posts-result .results-items .price-holder b {
  font-weight: normal;
  margin-left: 5px;
}
.viuna-search-2-popup .posts-result .results-items a {
  padding: 5px;
}
.viuna-search-2-popup .posts-result .results-items a:hover .title {
  color: var(--viuna-color-main);
}
.viuna-search-2-popup .posts-result .see-all-results {
  padding: 10px 40px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid var(--viuna-color-white-gray-light);
  border-radius: var(--viuna-border-radius-box-3);
}
.viuna-search-2-popup .posts-result .see-all-results svg {
  width: 20px;
  height: 20px;
  fill: var(--viuna-color-white-gray-light-dark);
  transition: all 0.2s;
}
.viuna-search-2-popup .posts-result .see-all-results:hover {
  color: var(--viuna-color-main);
}
.viuna-search-2-popup .posts-result .see-all-results:hover svg {
  fill: var(--viuna-color-main);
}
.viuna-search-2-popup .categories-result {
  position: relative;
}
.viuna-search-2-popup .categories-items a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid var(--viuna-color-white-gray-light);
  border-radius: var(--viuna-border-radius-box-3);
}
.viuna-search-2-popup .categories-items a svg {
  width: 20px;
  height: 20px;
  fill: var(--viuna-color-white-gray-light-dark);
  transition: all 0.2s;
}
.viuna-search-2-popup .categories-items a:hover {
  color: var(--viuna-color-main);
}
.viuna-search-2-popup .categories-items a:hover svg {
  fill: var(--viuna-color-main);
}
.viuna-search-2-popup .categories-items .placer {
  margin-bottom: 10px;
  height: 40px;
  background: #ddd;
  border-radius: var(--viuna-border-radius-box-3);
  animation: pulse_opacity 1s linear infinite;
}
.viuna-search-2-popup p.results-items, .viuna-search-2-popup p.categories-items {
  width: 100%;
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  color: var(--viuna-color-dark-lighter);
}
.viuna-search-2-popup .suggested-posts-place {
  grid-template-columns: 1fr 1fr 1fr;
}
.viuna-search-2-popup .suggested-posts-place .item-place {
  animation: pulse_opacity 1s linear infinite;
}
.viuna-search-2-popup .suggested-posts-place .item-place span {
  background: #ddd;
  border-radius: var(--viuna-border-radius-box-3);
}
.viuna-search-2-popup .suggested-posts-place .item-place .image-place {
  height: 100px;
}
.viuna-search-2-popup .suggested-posts-place .item-place .title-place {
  height: 10px;
}

@media screen and (max-width: 1024px) {
  .viuna-search-2-popup {
    max-width: 880px;
  }
}
@media screen and (max-width: 880px) {
  .viuna-search-2-popup {
    max-width: 768px;
  }
  .viuna-search-2-popup .posts-result .results-items {
    height: auto;
    overflow: unset;
  }
  .viuna-search-2-popup .content-box {
    flex-direction: column;
    height: 500px;
    overflow: auto;
  }
  .viuna-search-2-popup .content-box .col-content, .viuna-search-2-popup .content-box .col-suggests {
    width: 100%;
  }
  .viuna-search-2-popup .thumb-posts {
    grid-template-columns: repeat(5, 1fr);
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .viuna-search-2-popup {
    max-width: 500px;
  }
  .viuna-search-2-popup .keywords {
    flex-direction: column;
  }
  .viuna-search-2-popup .result-box {
    grid-template-columns: 1fr;
  }
  .viuna-search-2-popup .thumb-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .viuna-search-2-popup {
    max-width: 360px;
  }
  .viuna-search-2-popup .thumb-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
.viuna-search-form-2-fake {
  position: relative;
  width: 100%;
}
.viuna-search-form-2-fake .input-text {
  height: 44px;
  width: 100%;
  padding: 0 20px 0 46px;
  font-size: 13px;
  background: var(--viuna-color-white-dark-light);
  border-radius: var(--viuna-border-radius-box);
}
.viuna-search-form-2-fake span {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
}
.viuna-search-form-2-fake span svg {
  width: 20px;
}
/*# sourceMappingURL=maps/viuna-search-2.css.map */
