:root {
    --Scrollbar: #5d5d5d;
    --Dark: #1f1f21;
    --Red: #d20202;
    --RedCard: brown;
    --TextColor: #dadada;
    --Card: #343638;
    --CardHover: #2e3031;
  }
  
  @font-face {
    font-family: "FontX";
    src: url("/static/fonts/regular.otf");
  }
  
  @font-face {
    font-family: "FontX";
    src: url("/static/fonts/bold.otf");
    font-weight: bold;
  }
  
  * {
    font-family: "FontX", sans-serif;
  }
  
  html,
  body {
    margin: 0;
  }
  
  br {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
  }
  
  p {
    margin: unset;
  }
  
  #tzofar_logo {
    position: fixed;
    height: 40px;
    display: flex;
    inset-inline-end: 20px;
    top: 20px;
    text-decoration: none;
    color: unset;
    z-index: 1;
    outline: unset;
  }
  
  html.dark-mode #tzofar_logo {
    color: var(--TextColor);
  }
  
  #tzofar_logo img {
    pointer-events: none;
    height: inherit;
  }
  
  #tzofar_logo h1 {
    margin: unset;
    align-self: center;
    padding: 0 15px;
    font-size: 22px;
    font-weight: bold;
    pointer-events: none;
  }
  
  #map {
    position: fixed !important;
    width: 100%;
    height: 100%;
  }
  
.side {
  z-index: 2;
  position: fixed;
  overflow: overlay;
    max-height: -webkit-fill-available;
    width: 350px;
    margin: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    right: 0;
  border-radius: 4.8px;
  direction: rtl;
  transition: transform 220ms ease, opacity 220ms ease;
}
  
  @keyframes expand_center {
    0% {
      clip-path: polygon(50% 100%, 50% 0, 50% 0, 50% 100%);
      -webkit-clip-path: polygon(50% 100%, 50% 0, 50% 0, 50% 100%);
    }
    100% {
      clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
      -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
    }
  }
  
#menu {
  background-color: var(--Dark);
}

#currentTime {
  display: flex;
  color: white;
  margin-bottom: 10px;
  align-items: center;
  height: 26px;
  font-variant-numeric: tabular-nums;
  padding-inline-end: 46px;
}
  
#currentTime p:first-of-type {
  font-size: 21px;
  /*width: 90px;*/
  color: var(--RedCard);
}
  
#currentTime p:last-of-type {
  font-size: 14px;
  margin: 0 5px;
}

.round-icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background-color: var(--Card);
  color: var(--TextColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 0 10px rgb(0 0 0 / 18%);
  pointer-events: auto;
  user-select: none;
  font-size: 18px;
  line-height: 1;
}

.round-icon-button:hover {
  background-color: var(--CardHover);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.round-icon-button:focus-visible {
  outline: unset;
}

#themeToggle {
  position: absolute;
  top: 18px;
  left: 25px;
  z-index: 12;
  overflow: hidden;
  pointer-events: auto;
}

html[dir="ltr"] #themeToggle {
  left: auto;
  right: 25px;
}

#themeToggle .icon-light,
#themeToggle .icon-dark,
#menuToggle .icon-open,
#menuToggle .icon-close {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease, transform 220ms ease;
}

#themeToggle svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

#themeToggle .icon-light {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

#themeToggle .icon-dark {
  opacity: 0;
  transform: rotate(-20deg) scale(0.65);
}

html.dark-mode #themeToggle .icon-light {
  opacity: 0;
  transform: rotate(20deg) scale(0.65);
}

html.dark-mode #themeToggle .icon-dark {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-edge-button {
  position: fixed;
  top: 15px;
  right: 3px;
  z-index: 7;
  width: 34px;
  height: 72px;
  border: none;
  border-radius: 0 12px 12px 0;
  background-color: var(--Dark);
  color: var(--TextColor);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 220ms ease;
  padding: 0;
  outline: unset;
}

html.alerts-active .menu-edge-button {
  background-color: #cd3634;
  transition-delay: 90ms, 90ms, 0ms;
}

html.menu-collapsed .menu-edge-button {
  background: none;
  background-color: var(--Dark);
  transition-delay: 0ms, 0ms, 0ms;
}

html.menu-collapsed.alerts-active .menu-edge-button {
  background: none;
  background-color: var(--Dark);
  transition-delay: 0ms, 0ms, 0ms;
}

html[dir="ltr"] .menu-edge-button {
  right: auto;
  left: 3px;
  border-radius: 12px 0 0 12px;
}

html[dir="ltr"] #menuToggle .icon-open,
html[dir="ltr"] #menuToggle .icon-close {
  transform: rotate(180deg) translateX(0) !important;
}

html.menu-collapsed .menu-edge-button {
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  border-radius: 12px 0 0 12px;
}

html[dir="ltr"].menu-collapsed .menu-edge-button {
  right: auto;
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

html.menu-collapsed #menu {
  transform: translateX(calc(100% + 40px));
}

html[dir="ltr"].menu-collapsed #menu {
  transform: translateX(calc(-100% - 40px));
}

html.menu-collapsed #alerts {
  transform: translateX(calc(100% + 40px));
}

html[dir="ltr"].menu-collapsed #alerts {
  transform: translateX(calc(-100% - 40px));
}

#menuToggle .icon-open,
#menuToggle .icon-close {
  font-size: 0;
}

#menuToggle svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

#menuToggle .icon-open {
  opacity: 0;
  transform: translateX(5px);
}

#menuToggle .icon-close {
  opacity: 1;
  transform: translateX(0);
}

html.menu-collapsed #menuToggle .icon-open {
  opacity: 1;
  transform: translateX(0);
}

html.menu-collapsed #menuToggle .icon-close {
  opacity: 0;
  transform: translateX(-5px);
}

html.dark-mode .leaflet-tile {
  filter: brightness(0.94) invert(1) contrast(1) hue-rotate(200deg);
}

.leaflet-tile {
  transition: filter 220ms ease;
}
  
  #alerts {
    z-index: 3;
    display: none;
    height: -webkit-fill-available;
    background-color: #cd3634;
    color: var(--TextColor);
    animation: expand_center 300ms;
    animation-fill-mode: forwards;
    box-shadow: unset;
  }
  #alerts h2 {
    margin: unset;
    margin-bottom: 15px;
    font-size: 28px;
  }
  
  #alerts .areas {
    margin: unset;
    font-size: 20px;
  }
  #alerts .areas li {
    margin-bottom: 10px;
  }
  
  #alerts .cities {
    font-size: 16px;
  }
  
  #alerts ul ul {
    margin-bottom: 30px;
  }
  
  /* For LTR Languages */
  .ltr {
    right: unset;
    left: 0;
  }
  
  /* Scrollbar */
  ::-webkit-scrollbar-thumb {
    height: 15%;
    width: 13px;
    border-radius: 8px;
    border: 4px solid transparent;
    background-clip: content-box;
    background-color: var(--Scrollbar);
    -webkit-text-size-adjust: none;
  }
  
  ::-webkit-scrollbar {
    padding-top: 30px;
    height: 15%;
    width: 13px;
    background-color: transparent;
  }
  
  .card {
    background-color: var(--Card);
    padding: 10px;
    height: fit-content;
    border-radius: 4.8px;
    margin-bottom: 15px;
    overflow-y: overlay;
    color: var(--TextColor);
  }
  
  /* Flex div */
  .flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  
  button.card:hover,
  a.card:hover,
  .focused,
  #info a:nth-child(1):hover {
    background-color: var(--CardHover);
  }
  
  #languages {
    margin-bottom: unset;
  }
  
  #languages a {
    font-size: 13px;
    width: 60px;
    padding: 8px 10px;
    text-align: center;
    text-decoration-line: unset;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #info {
    display: flex;
    justify-content: space-between;
  }
  
  #info a {
    width: -webkit-fill-available;
    text-align: center;
    font-weight: bold;
    color: var(--TextColor);
    margin: 0 2.5px;
    text-decoration-line: unset;
  }
  
  #info a:nth-child(1) {
    height: auto;
    background-color: var(--Card);
    background-image: url(https://i.imgur.com/BcdaueJ.png);
    background-size: 85px;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  #info a:nth-child(2) {
    background-color: var(--RedCard);
    font-size: 14px;
  }
  
  /* Sound Selection */
  
#soundSelect {
  background-color: var(--Card);
  margin-bottom: unset;
  padding: 0px;
  width: 30%;
  height: 20px;
}

#sound #soundSelectContainer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

#soundUploadButton {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin: 0;
  cursor: pointer;
  height: 20px;
  width: 32px;
  min-width: 32px;
  padding: 0;
  border-radius: 4.8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#soundUploadButton:hover {
  background-color: var(--CardHover);
}

#soundUploadButton svg {
  width: 16px;
  height: 16px;
  display: block;
}

#soundTest, #earlyWarningSoundTest {
  background-color: var(--RedCard);
  border: unset;
  margin: unset;
  cursor: pointer;
  height: 20px;
  padding: 0px 10px;
  padding-right: 22px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJ3aGl0ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjQgMjQiPiA8Zz4gPHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIvPiA8cGF0aCBkPSJNNy43NTIgNS40MzlsMTAuNTA4IDYuMTNhLjUuNSAwIDAgMSAwIC44NjNsLTEwLjUwOCA2LjEzQS41LjUgMCAwIDEgNyAxOC4xMjhWNS44NzFhLjUuNSAwIDAgMSAuNzUyLS40MzJ6Ii8+IDwvZz4gPC9zdmc+");
  background-position: right 4px center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}
  
#soundTest.playing {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJ3aGl0ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjQgMjQiPiA8Zz4gPHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIvPiA8cGF0aCBkPSJNNiA3djEwYTEgMSAwIDAgMCAxIDFoMTBhMSAxIDAgMCAwIDEtMVY3YTEgMSAwIDAgMC0xLTFIN2ExIDEgMCAwIDAtMSAxeiIvPiA8L2c+IDwvc3ZnPg==");
}

#reading {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#reading .description {
  font-size: 14px;
  padding: unset;
}

#earlyWarningSoundRow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

#sound label,
#earlyWarningSoundRow label {
  font-size: 14px;
  color: var(--TextColor);
  opacity: 0.8;
}

#earlyWarningSoundSelect {
  background-color: var(--Card);
  margin-bottom: unset;
  padding: 0px;
  margin-left: 2px;
  width: 30%;
  height: 20px;
}

#earlyWarningSoundTest.playing {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJ3aGl0ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjQgMjQiPiA8Zz4gPHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIvPiA8cGF0aCBkPSJNNiA3djEwYTEgMSAwIDAgMCAxIDFoMTBhMSAxIDAgMCAwIDEtMVY3YTEgMSAwIDAgMC0xLTFIN2ExIDEgMCAwIDAtMSAxeiIvPiA8L2c+IDwvc3ZnPg==");
}
  
  /* Cities Selection */
  
  #selection button {
    border: unset;
    display: flex;
    margin: unset;
    min-width: fit-content;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-bottom: unset;
  }
  
  #selection .item button {
    padding: 3px;
    width: 22px;
  }
  
  #selection .item p {
    font-size: 14px;
    margin: 0 5px;
  }
  
  #selection .item {
    height: fit-content;
    width: fit-content;
    padding: 5px;
    margin-left: 4px;
    margin-bottom: 5px;
    align-items: center;
    display: inline-flex;
  }

  #silentAlerts {
    width: fit-content;
    text-align: center;
    margin-top: 6px;
    margin-right: auto;
    margin-left: auto;
    background-color: #262626;
    padding: 10px;
    height: fit-content;
    border-radius: 4.8px;
    margin-bottom: 15px;
    overflow-y: overlay;
    user-select: none;
    color: #c4c4c4;
  }

  .disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  #silentAlerts #shouldShowSilentAlerts {
    width: min-content;
  }

  #silentAlerts label {
    font-size: 15px;
  }

  #silentAlerts .description {
    padding: unset;
    padding-top: 6px;
  }
  
  #selection #selected {
    height: 100px;
    overflow-y: overlay;
  }
  
  #selection input {
    border: none;
    margin-bottom: unset;
    width: -webkit-fill-available;
    margin-right: 5px;
    background-image: url("https://i.imgur.com/PAAxJRM.png");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: left center;
    background-origin: content-box;
  }
  
  #autocomplete {
    position: absolute;
    z-index: 5;
    margin-top: 40px;
    margin-right: 80px;
    width: 260px;
    max-height: 100px;
    overflow: auto;
    border-radius: 4.8px;
    background-color: var(--Card);
  }

  html[dir="ltr"] #autocomplete {
    margin-right: unset !important;
    margin-left: 80px !important;
  }
  
  #autocomplete button {
    display: unset;
    width: -webkit-fill-available;
    text-align: unset;
  }
  
  #autocomplete button p:first-of-type {
    font-weight: bold;
  }
  
  .description {
    font-size: 14px;
    padding: 5px 30px;
  }
  
  label {
    font-weight: bold;
  }
  
  /* History */
  
  #history {
    height: 300px;
    display: initial;
  }
  
  #history h4 {
    height: fit-content;
    background-color: var(--RedCard);
    color: var(--TextColor);
    padding: 8px;
    border-radius: 4.8px 4.8px 0 0;
    margin: unset;
  }

  #history #historicalButton {
    background-color: #dadada;
    border-radius: 7px;
    color: #a52a2a;
    text-decoration: unset;
    font-size: 13px;
    padding: 3px 6px;
    transition: 0.2s;
  }

  #history #historicalButton:hover {
    background-color: #dbacac;
  }
  
  #history .card {
    padding: 5px 13px;
    padding-left: 1px;
    border-radius: 0 0 4.8px 4.8px;
    height: inherit;
    color: var(--Dark);
    overflow: auto;
  }

  html[dir="ltr"] #history .card {
    padding-left: 5px;
    padding-right: 1px;
  }

  html.dark-mode #history .card {
    background-color: var(--Card);
    color: var(--Dark);
  }
  
  .history_item {
    display: flex;
    background-color: #fdfdfd;
    border-radius: 7px;
    overflow: auto;
    max-width: 490px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    transition: background-color 220ms ease, color 220ms ease;
  }

  html.dark-mode .history_item {
    background-color: #1c1c1c;
  }
  
  .history_item:not(:last-of-type) {
    margin-bottom: 5px;
  }
  
  /* Data div */
  .history_item div:first-of-type {
    padding: 8px;
    width: -webkit-fill-available;
  }
  
  /* Threats icons div */
  .history_item div:last-of-type {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    background-color: #d50f02;
    width: 45px;
    align-items: center;
    justify-content: center;
  }
  
  .history_item div:last-of-type.drill {
    background-color: #3d5af1 !important;
  }
  
  .drill_text {
    color: #3d5af1;
    font-weight: 600;
  }
  
  /* Threats icon */
  .history_item img {
    width: 20px;
    margin: 10px 0;
  }
  
  .history_item img[threat="0"] {
    width: 21px;
    margin: unset;
    padding: 8px 0;
  }
  .history_item img[threat="2"] {
    width: 23px;
  }
  .history_item p {
    margin: unset;
  }
  
  /* History item - Date */
  .history_item .date {
    font-size: 10.5px;
    color: rgb(228, 0, 0);
    margin: 5px 0;
    transition: color 220ms ease;
  }
  
  /* History item - Areas */
  .history_item .areas {
    font-size: 15px;
    color: rgb(15, 15, 15);
    transition: color 220ms ease;
  }

  html.dark-mode .history_item .areas {
    color: #ececec;
  }
  
  /* History item - Cities */
  .history_item .cities {
    font-size: 13px;
    margin-top: 5px;
    color: rgb(56, 56, 56);
    transition: color 220ms ease;
  }

  html.dark-mode .history_item .cities,
  html.dark-mode .history_item_instruction .cities {
    color: #dddddd;
  }
  
  /* History item - On Hover */
  .history_item:hover {
    background-color: #f7f6f6;
  }

html.dark-mode .history_item:hover {
    background-color: #252525;
  }

html.dark-mode #tzofar_msg {
  background-color: #15202c !important;
  color: #d7e6f7 !important;
}

  /* Instruction history item */
  .history_item_instruction .cities {
    font-size: 13px;
    color: rgb(56, 56, 56);
    margin-top: 5px;
    line-height: 1.4;
    transition: color 220ms ease;
  }

  .history_item_pinned {
    border: 1.5px solid #A50000;
    box-shadow: 0 0 4px rgba(165,0,0,0.18);
  }

  .history_pin_icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    vertical-align: -1px;
    color: #A50000;
    flex: 0 0 14px;
  }

  .history_pin_icon svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor;
  }

  /* mobile view */
  @media only screen and (max-width: 600px) {
    .side {
      position: absolute;
      width: -webkit-fill-available;
      height: 30% !important;
      padding: 20px 10px;
      bottom: 0px;
    }

   .side {
      z-index: auto !important;
    }

    #languages {
      gap: 6px;
    }

    #languages a {
      font-size: 10px;
      width: 100%;
    }

    #themeToggle {
      top: 10px;
      left: 10px;
    }

    .mobile-history {
      display: flex !important;
      position: fixed;
      width: fit-content;
      z-index: 100;
      background-color: #1f1f21;
      margin: 5px 15px;
      padding: 5px 5px 5px 10px;
      top: 15px;
      border-radius: 10px;
      gap: 6px;
      box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    }

    .mobile-history .icon {
      width: 18px;
    }

    .mobile-history .icon svg path {
      stroke: var(--RedCard);
      fill: var(--RedCard);
    }

    .mobile-history .text {
      margin: auto;
      color: #f2f2f2;
      font-weight: 300;
      font-size: 14px;
    }

    #history {
      display: none;
      top: 62px;
      width: 92%;
      right: 15px;
      height: 45vh !important;
      margin: auto;
      left: 15px;
      position: fixed;
      z-index: 5 !important;
    }

    #history .card {
      padding-right: 5px;
      padding-left: 5px;
    }

    .side-minimize {
      display: none;
    }

    #menuToggle {
      display: none;
    }

    html.menu-collapsed #menu {
      transform: none;
    }

    #notifications {
      display: none;
    }
  
    #tzofar_logo {
      height: 30px;
    }
  
    #tzofar_logo h1 {
      font-size: 18px;
      padding: 0 11px;
    }
  
    label,
    #history h4 {
      font-size: 16px;
    }
  
    #selection input,
    #selection button,
    #selected p,
    #info a {
      font-size: 14px !important;
    }
  
    #currentTime {
      margin-bottom: 5px;
    }
  
    #currentTime p:first-of-type {
      font-size: 20px;
    }
  
    #currentTime p:last-of-type {
      font-size: 12px;
    }
  
    #alerts h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }
  
    #alerts .areas {
      font-size: 16px;
    }
  
    #alerts .cities {
      font-size: 12px;
    }
  
    ul.cities {
      list-style-type: none;
      padding: 0 15px;
    }
  
    ul.cities li:not(:last-child):after {
      content: ", ";
    }
  
    ul.cities li {
      display: contents;
    }
  
    #alerts ul ul {
      margin-bottom: 15px;
    }
  
    /* Hide in mobile */
    #selection {
      display: none !important;
    }
  }
  
  #alerts .cities {
    margin-top: 3px;
    display: flex;
    align-items: stretch;
    flex-flow: wrap;
    gap: 5px;
  }
  
  #alerts .city {
    cursor: pointer;
    color: white;
    text-align: center;
    background: #ae2624;
    padding: 1px 11px;
    border-radius: 10px;
    font-size: 17px;
  }
  
  #alerts .area {
    margin-bottom: 10px;
    color: white;
  }
  
  #alerts h4 {
    margin: 0;
  }
  
  #alerts .areas {
    margin-bottom: 15px;
  }
  
  #alerts .city:hover {
    background: #6e1816;
  }
  
  @keyframes blink {
    from,
    to {
      /* opacity: 0; */
      background-color: rgba(174, 38, 36, 1);
    }
  
    50% {
      /* opacity: 1; */
      background-color: rgb(228, 0, 0);
    }
  }
  
  .blink {
    animation: blink 0.9s ease 0s infinite;
    animation-iteration-count: 2;
  }
  

.side-minimize{
    z-index: 6;
    position: fixed;
    overflow: overlay;
    max-height: -webkit-fill-available;
    width: 350px;
    margin: 15px;
    padding: 25px;
    right: 0;
    border-radius: 4.8px;
    direction: rtl;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
}

html.menu-collapsed .side-minimize {
    transform: translateX(calc(100% + 40px));
    opacity: 0;
}

html[dir="ltr"].menu-collapsed .side-minimize {
    transform: translateX(calc(-100% - 40px));
}

.minimize{
    z-index: 99; 
    cursor: pointer; 
    position: absolute; 
    top: 7px; 
    left: 10px; 
    width: 35px;
    pointer-events: auto;
}

.mobile-history{
    display: none;
}

.mobile-history.open .open-svg{
    display: block;
}
.mobile-history.open .close-svg{
    display: none;
}
.mobile-history.close .close-svg{
    display: block;
}
.mobile-history.close .open-svg{
    display: none;
}

.toastify {
  cursor: unset !important;
}

.toast-close {
  position: absolute;
  margin: 10px;
  top: 0;
  left: 0;
}

html[dir="ltr"] .toast-close {
  right: 0;
  left: unset;
}