body {
  margin: 0;
  line-height: normal;
}

.popup-overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
}

.floatting-button {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: var(--color-gold);
  margin: 0 !important;
  position: fixed;
  right: 10px;
  bottom: 74px;
  border-radius: var(--br-80xl);
  width: 62px;
  height: 62px;
  flex-direction: row;
  justify-content: center;
  z-index: 1;
}

.bottom-nav {
  margin: 0 !important;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: var(--color-black);
  width: 100%;
  height: 62px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--padding-5xl);
  box-sizing: border-box;
  z-index: 2;
}

.logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  align-self: stretch;
  background-color: var(--color-black);
  height: 97px;
  justify-content: space-between;
  padding: var(--padding-lg) var(--padding-4xl);
  box-sizing: border-box;
}

.top-menu {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.top-menu {
  justify-content: center;
  gap: var(--gap-xs);
}
.mail {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: transparent;
  position: relative;
  width: 24px;
  height: 24px;
}
.mail-icon {
  position: absolute;
  height: 66.67%;
  width: 83.33%;
  top: 16.67%;
  right: 8.33%;
  bottom: 16.67%;
  left: 8.33%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}
.notification-wrapper {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  gap: var(--gap-5xs);
}
.notifications-icon {
  height: 100%;
  width: 100%;
}
.notifications {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.notifications-counter {
  margin: 0 !important;
  position: absolute;
  top: -6px;
  left: 10px;
  border-radius: var(--br-21xl);
  background-color: var(--color-gold);
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.counter-number {
  position: relative;
  font-size: var(--font-size-4xs);
  line-height: 150%;
  font-family: var(--font-garet);
  color: var(--color-black);
  text-align: left;
}
.ins-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.help-icon {
  position: absolute;
  height: 83.33%;
  width: 83.33%;
  top: 8.33%;
  right: 8.33%;
  bottom: 8.33%;
  left: 8.33%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.select-wrapper {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  height: 45px;
  border-color: #c8c8c8;
  border-radius: 8px;
  padding: 13px 16px 0;
}

.logo-wrapper {
  text-align: center;
}

:root {
  /* fonts */
  --font-garet: Garet;

  /* font sizes */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-4xs: 9px;
  --font-size-3xs: 10px;
  --font-size-2xs: 11px;

  /* Colors */
  --color-white: #fff;
  --color-black: #000;
  --color-gold: #fcec4f;
  --color-silver: #c8c8c8;
  --color-darkgray: #95989a;
  --color-whitesmoke: #f2f2f2;
  --color-palegoldenrod: #fff9b4;
  --color-lightgreen: #c4fdbb;
  --color-wheat: #fae0b9;
  --color-gainsboro: #e6e6e6;

  /* Gaps */
  --gap-5xs: 8px;
  --gap-9xl: 28px;
  --gap-3xl: 22px;
  --gap-base: 16px;
  --gap-xs: 12px;
  --gap-5xl: 24px;
  --gap-37xl: 56px;
  --gap-9xs: 4px;
  --gap-4xs: 9px;

  /* Paddings */
  --padding-7xs: 6px;
  --padding-3xs: 10px;
  --padding-4xl: 23px;
  --padding-mid: 17px;
  --padding-sm: 14px;
  --padding-lg: 18px;
  --padding-2xs: 11px;
  --padding-11xs: 2px;
  --padding-9xl: 28px;
  --padding-5xs: 8px;
  --padding-base: 16px;
  --padding-17xl: 36px;
  --padding-5xl: 24px;

  /* Border radiuses */
  --br-5xs: 8px;
  --br-80xl: 99px;
  --br-101xl: 120px;
  --br-21xl: 40px;
}
