@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
::-webkit-scrollbar-button {
  width: 6px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgb(39.0728476821, 40.3973509934, 60.9271523179);
}

::-webkit-resizer {
  width: 4px;
  height: 0px;
}

::-webkit-scrollbar {
  width: 4px;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
}

.flex1 {
  flex: 1;
}

body {
  width: 100%;
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

.ui.popup {
  position: fixed;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.ui.popup > div {
  background-color: #fff;
  position: relative;
  margin-bottom: 10px;
  max-width: 300px;
  color: rgb(39.0728476821, 40.3973509934, 60.9271523179);
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  transition: 0.5s;
}
.ui.popup > div > p {
  padding: 10px;
  margin-right: 10px;
}
.ui.popup > div > canvas {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  border: none;
  outline: none;
  resize: none;
  background: none;
  text-decoration: none;
}
.ui.popup > div.success {
  background-color: #6DC23E;
  color: #fff;
}
.ui.popup > div.error {
  background-color: #F2714F;
  color: white;
}

.ui.select > span {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 13px;
}
.ui.select > span::after {
  content: "\e90d";
  font-family: "icomoon" !important;
  margin-left: 3px;
}
.ui.select > span:hover {
  color: #6DC23E;
}
.ui.select > p {
  position: absolute;
  overflow: auto;
  border-radius: 3px;
  box-shadow: 0px 0px 10px #3B3D5C;
  display: none;
}
.ui.select > p > a {
  background-color: #fff;
  display: block;
  padding: 14px 20px;
  font-size: 12px;
  color: #3B3D5C;
  text-decoration: none;
  border-bottom: 1px solid rgba(59, 61, 92, 0.2);
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ui.select > p > a:hover {
  background-color: rgb(222.7086092715, 223.4105960265, 234.2913907285);
}
.ui.select > p > a:last-child {
  border: none;
}
.ui.select > p > a.selected {
  background-color: rgb(226.2598425197, 242.9921259843, 217.0078740157);
}
.ui.select > p::before {
  content: "";
  border: 3px solid transparent;
  border-bottom: 3px solid #fff;
  display: block;
  margin: 0px auto;
  width: 1px;
  height: 1px;
}
.ui.select.open > span::after {
  rotate: 180deg;
}
.ui.select.open > p {
  display: block;
}/*# sourceMappingURL=ui.css.map */