* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --white: #ffff;
  --font_family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font_family);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  margin: 0;
  background: var(--white);
}
button,
ul li,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-family: inherit !important;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.soppiya_ts_container {
  max-width: 1448px;
  width: 100%;
  padding: 0px 16px;
  margin: 0 auto;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
main {
  margin-top: 64px;
}
/* @_______ start filter_______@ */
.soppiya_ts_filter_item {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 10px;
}
.soppiya_ts_checkbox {
  display: flex;
}
.soppiya_ts_checkbox input[type="checkbox"] {
  border: 1px solid #6b7177;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.soppiya_ts_label_wrapper {
  display: flex;
}
.soppiya_ts_label_wrapper label {
  font-size: 14px;
  font-weight: 450;
  line-height: 22px;
  color: #42474c;
}
/* @_______ end filter_______@ */
/* @_______ start button styles_______@ */
.soppiya_primary_btn,
.soppiya_outline_btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 550;
  line-height: 24px;
  text-decoration: none;
  padding: 0px 20px;
  border-radius: 40px;
}
.soppiya_outline_btn {
  background-color: transparent;
  border: 1px solid #d6d3d1;
  color: #212326;
}

/* @_______ end button styles_______@ */
@media (min-width: 768px) {
  main {
    margin-top: 84px;
  }
  /* @_______ start button styles_______@ */
  .soppiya_primary_btn,
  .soppiya_outline_btn {
    height: 50px;
    font-size: 16px;
    line-height: 26px;
    padding: 0px 26px;
  }
  /* @_______ end button styles_______@ */
}
@media (min-width: 1024px) {
  a,
  button {
    cursor: pointer;
  }
}
