@font-face {
  font-family: CircularStd-Book;
  src: url('../font-assets/CircularStd-Book.ttf');
  font-display: swap;
}

@font-face {
  font-family: CircularStd-Medium;
  src: url('../font-assets/CircularStd-Medium.ttf');
  font-display: swap;
}

@font-face {
  font-family: CircularStd-Bold;
  src: url('../font-assets/CircularStd-Bold.ttf');
  font-display: swap;
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../font-assets/Poppins-SemiBold.ttf');
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0rem;
  padding: 0rem;
  list-style-type: none;
}

body {
  line-height: 1;
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: CircularStd-Book,-apple-system,system-ui,
    BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,
    Helvetica Neue,sans-serif,Apple Color Emoji,Segoe UI Emoji,
    Segoe UI Symbol;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: var(--light1-background-color) transparent;
}
body::-webkit-scrollbar {
  display: none;
}
/* scrollbar style starts here */
@media (min-width: 415px) {
  body::-webkit-scrollbar {
    display: block;
    width: 14px;
    height: 1px;
  }
  
  body::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    background-color: var(--light1-background-color);
  }
  
  body::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
  }
  
  body::-webkit-scrollbar-track-piece:start {
    margin-top: 10px;
  }
  
  body::-webkit-scrollbar-track-piece:end {
    margin-bottom: 10px;
  }
  
  body::-webkit-scrollbar-corner {
    background-color: transparent;
  }
}
/* scrollbar style end here */

img {
  -webkit-filter: contrast(.9);
  filter: contrast(.9);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
svg {
  width: 100%;
  height: 100%;
}

/* constants */
:root {
  --mango: #F23A10;
  --new-mango: #DB3703;
  --bright-mango: #FF1300;
  --golden-mango: #FFB000;
  --golden-yellow: #FFCD47;
  --cream: #fcf5f0;
  --black: #222222;
  --deep-black: #191919;
  --charcoal: #333333;
  --dark-charcoal: #0F0F0F;
  --charcoal-black: #1A1A1A;
  --white: #ffff;
  --cool: #f5f5f7;
  --green: #07915F;
  --emerald-green: #009754;
  --silver: #878792;
  --silver-2: #707070;
  --silver-3: #4B4B4B;
  --gray-100: #F5F5F7;
  --gray-200: #D9D9D9;
  --light-gray: #DADADA;
  --dark-gray: #464342;
  --ash-gray: #A1A1A2;
  --mango-opa-1: #ff813f1a;
  --mango-opa-2: #ff813f33;
  --light1-background-color: #e5e5ea;
  --light3-background-color: #f5f5f7;
  --lavender-bliss: #F2EDF6;
  --majestic-violet: #7F33BA;
  --link-blue: #007AFF;
  
  --mobile-s: 350px;
  --mobile: 565px;
  --tablet: 768px;
  --tablet-lg: 900px;
  --desktop-s: 1024px;
  --desktop: 1366px;
  --desktop-lg: 1440px;
  --desktop-xl: 1920px;
}

button {
  font-family: CircularStd-Book;
  border: none;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  float: none;
  line-height: normal;
  background-color: transparent;
}

button:focus {
  outline: 0;
}

a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

._normal_anchor {
  text-decoration: none;
  color: var(--black);
}

._base_button {
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0px;
  transition: 0.2s all;
  box-sizing: border-box;
  cursor: pointer;
  background-color: var(--white);
  white-space: nowrap;
}
._content_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
._base_button._small_button {
  min-height: 36px;
  border-radius: 5px;
  padding: 8px 20px;
  font-family: CircularStd-Bold;
  font-size: 14px;
  line-height: normal;
  background-color: var(--white);
  color: var(--silver);
}
._base_button ._svg_container svg path {
  fill: var(--silver);
}
._base_button ._count {
  display: none;
}
._base_button._small_button.active svg path {
  fill: var(--white);
}
._base_button.active ._count {
  color: var(--white);;
}
._base_button._small_button.active {
  background-color: var(--mango);
  color: var(--white);
}
._base_button ._caption_padding {
  padding: 0 8px;
}
._base_button ._svg_container svg {
  height: 22px;
  width: 22px;
}
._base_button ._svg_container {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}
._base_button._medium_button {
  min-height: 42px;
  border-radius: 5px;
  font-family: CircularStd-Bold;
  font-size: 16px;
  line-height: normal;
  padding: 0 24px;
}
/* super tag */

._supertag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 94px;
  background-color: var(--mango);
  color: var(--white);
  height: 23px;
  border: 2px solid var(--white);
  border-radius: 60px;
  padding: 0 8px;
  z-index: 10;
}
._supertag ._supertag_content {
  font-family: CircularStd-Medium;
  font-size: 12px;
  line-height: normal;
  height: 15px;
}

/*  */

/* rounded button */
._round_button {
  border-radius: 5px;
  -webkit-box-shadow: 0 13px 24px rgb(0 0 0 / 6%), 0 2px 6px rgb(0 0 0 / 4%), 0 0 1px rgb(0 0 0 / 4%);
  box-shadow: 0 13px 24px rgb(0 0 0 / 6%), 0 2px 6px rgb(0 0 0 / 4%), 0 0 1px rgb(0 0 0 / 4%);
}
._round_button._medium_button {
  background-color: var(--white );
  width: 36px;
  min-height: 36px;
  font-family: CircularStd-Medium;
  font-size: 14px;
  line-height: normal;
  padding: 0px;
}
._round_button ._svg_container, ._round_button .roundbutton_image {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}
._round_button .roundbutton_image img {
  height: 16px;
  width: 16px;
}
._round_button._medium_button._primary_button:hover {
  -webkit-box-shadow: 0 24px 41px rgb(0 0 0 / 4%), 0 6px 24px rgb(0 0 0 / 4%), 0 4px 8px rgb(0 0 0 / 4%), 0 0 41px rgb(0 0 0 / 8%);
  box-shadow: 0 24px 41px rgb(0 0 0 / 4%), 0 6px 24px rgb(0 0 0 / 4%), 0 4px 8px rgb(0 0 0 / 4%), 0 0 41px rgb(0 0 0 / 8%);
}

/* end of rounded button */

._disabled, ._disabled:hover {
  opacity: .45!important;
  cursor: default!important;
}
._divider {
  opacity: .2;
  height: 16px;
  background-color: #878792;
  border-left: 1px;
  border-style: solid;
  border-color: #878792;
}
._search_scope_buttons {
  display: -moz-box;
  display: flex;
  overflow-x: auto;
  margin: 10px 0px 10px 0;
  padding-right: 50px;
}
._search_scope_buttons li {
  display: -moz-box;
  display: flex;
  margin-right: 16px;
}
.user-profile-image-default {
  background-color: #fff2ec;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 130%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  color: var(--mango);
  font-family: CircularStd-Bold;
  text-transform: uppercase;
  border-radius: 50%;
}
/* input */

input[type=text] {
  font-family: CircularStd-Book;
  width: 100%;
  padding: 12px 16px;
  margin: 0;
  font-size: 18px;
  color: #222;
  border: 1px solid rgba(135,135,146,.2);
  border-radius: 16px;
  height: 56px;
}
input::placeholder {
  opacity: 0.5;
  color: var(--silver-2);
}

/* end of input */
._desktop_only {
  display: unset;
}
._mobile_only {
  display: none;
}
._d_none {
  display: none !important;
}
._invisible {
  opacity: 0 !important;
}
._full_width {
  width: 100%;
}

.flex-column-space-between {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
}
.flex-column-space-between {
  -moz-box-pack: justify;
  justify-content: space-between;
}

/* end of drop down style */
@media (max-width: 414px) {
  ._desktop_only {
    display: none !important;
  }
  ._mobile_only {
    display: unset;
  }
  input[type=text] {
    height: 48px;
    font-size: 16px;
  }
  ._base_button ._count {
    font-family: CircularStd-Medium;
    font-size: 14px;
    color: var(--black);
    padding-left: 6px;
    padding-right: 6px;
    display: block;
  }
}
