/* Font Link  */

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap");
/*
========================
GLOBAL CSS START
========================
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  color: #333333;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
button {
  background-color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:visited,
a:hover,
a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  color: var(--selection-color);
  background: var(--selection-bg);
}

::-webkit-selection {
  color: var(--selection-color);
  background: var(--selection-bg);
}

::-moz-selection {
  color: var(--selection-color);
  background: var(--selection-bg);
}

.search-main-content .hidden {
  display: none;
}

.suggestions-box {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  margin-top: 8px;
  background-color: var(--selection-color);
  padding-top: 4px;
  padding-bottom: 4px;
}

.suggestions-box li {
  padding: 14px 16px;
  color: var(--text-secondary, #525252);
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.16px;
  cursor: pointer;
  transition: 0.3s;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.suggestions-box li a {
    display: block;
    width: 100%;
}

.suggestions-box li mark {
  overflow: hidden;
  color: var(--Text-text-helper);
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  background-color: unset;
  padding: unset;
}

.suggestions-box li:hover {
  color: #525252;
  font-weight: 500;
  background: #f2f4f8;
}

.header-searchbar .suggestions-box {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

.search-button-s {
  padding: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--Brand-Purple-60);
  color: #fff;
  border: 1px solid var(--Brand-Purple-60);
  transition: 0.3s;
}

.search-button-s:hover {
  background: transparent;
  color: var(--Brand-Purple-60);
}

.search-button-s:hover svg path {
  fill: var(--Brand-Purple-60);
}

.single-tab-card h4 {
  color: var(--text-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  letter-spacing: 0.32px;
}

.single-tab-card h2 {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}

.tags-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  flex-wrap: wrap;
}

.tags-box span,
.more-tags span {
  padding: 4px 8px;
  color: var(--text-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  letter-spacing: 0.32px;
  border-radius: 12px;
}

.tags-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  height: 24px;
  margin-top: auto;
}
.more-tags {
  position: relative;
  cursor: pointer;
  display: inline-block;
  color: var(--text-text-primary);
  font-size: 12px;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.32px;
}

.tags-tooltip {
  display: flex;
  align-items: start;
  gap: 6px;
  margin-top: auto;
  flex-wrap: wrap;
  border-radius: 6px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  background: white;
  padding: 8px 10px;
  white-space: nowrap;
  z-index: 100;
  width: auto;
  max-width: none;
}

.tags-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
}

@keyframes lab_top_up {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}

@keyframes pluse_animate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}

.action-btn {
  display: flex;
  align-items: center;
  padding: 15px 16px;
  gap: 20px;
  border-radius: 47px;
  background: var(--Brand-Purple-60);
  color: #fff;
  border: 1px solid var(--Brand-Purple-60);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.571%;
  letter-spacing: 0.16px;
}

.action-btn:hover {
  background: #fff;
  color: var(--Brand-Purple-60);
}
.action-btn:hover svg path {
  fill: var(--Brand-Purple-60);
}

.action-btn-wrapper {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 644px) {
  .action-btn {
    justify-content: center;
  }
}

@media screen and (min-width: 645px) and (max-width: 800px) {
  .action-btn {
    justify-content: center;
  }
}

@media screen and (min-width: 801px) {
.more-tags:hover .tags-tooltip {
  display: flex;
}

.suggestions-box li {
  padding: 7px 16px;
  font-size: 14px;
}
.suggestions-box li mark {
  font-size: 14px;
}

.action-btn {
 transition: 0.3s;
}

a {
  transition: 0.2s all ease;
  cursor: pointer;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;

}
}

