@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: normal;
  src: local('Poppins'), url('/static/font/Poppins-Regular.ttf') format('ttf');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: bold;
  src: local('Poppins'), url('/static/font/Poppins-Bold.ttf') format('ttf');
}
* {
  box-sizing: border-box;
  font: 1rem 'Poppins', sans-serif;
  color: #000;
  touch-action: manipulation;
}
span,
a {
  font: inherit;
}
p {
  margin: 0;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  background: #000 url('/static/img/saoticot_2025_Marine_Duchet_illustrationbg.webp') center center / cover no-repeat;
}
body main {
  flex: 1;
  margin-top: 40px;
}
.flex_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
selectCheck {
  display: inline-block;
  width: 200px;
}
selectCheck > div.input {
  height: 30px;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  padding: 0 20px 0 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 5px;
}
selectCheck > div.input:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 10px;
  width: 10px;
  background: url(/static/img/icon/down-arrow.png) center / 100% no-repeat;
  transition: transform 0.2s ease-in-out;
}
selectCheck > div.input span {
  white-space: nowrap;
}
selectCheck > div.input span.count,
selectCheck > div.input span.all {
  display: none;
}
selectCheck:not([wrapVal]) > div.input.overflowing:not(.all) .count {
  display: inline;
}
selectCheck:not([wrapVal]) > div.input.overflowing:not(.all) span:not(.count) {
  display: none;
}
selectCheck:not([wrapVal]) > div.input.all .all {
  display: inline;
}
selectCheck:not([wrapVal]) > div.input.all .count,
selectCheck:not([wrapVal]) > div.input.all span:not(.all) {
  display: none;
}
selectCheck > div.options {
  position: absolute;
  background: #fff;
  border-radius: 0 0 5px 5px;
  z-index: 5;
  transition: clip-path 0.2s ease-in-out;
  clip-path: rect(auto auto 0 auto);
  max-height: 300px;
  overflow: scroll;
}
selectCheck input[type="text"] {
  width: calc(100% - 10px);
  margin: 5px;
  background: #e7e7e7;
}
selectCheck input[type="checkbox"] {
  pointer-events: none;
}
selectCheck option,
selectCheck optiongroup {
  width: 100%;
  display: block;
  padding: 0 5px;
  cursor: pointer;
  background: initial;
}
selectCheck optiongroup :is(option, optiongroup) {
  margin-left: 5px;
  width: calc(100% - 5px);
}
selectCheck[wrapVal] > div.input {
  flex-wrap: wrap;
  height: auto;
  padding: 5px 20px 5px 5px;
}
selectCheck.opened > div.input {
  border-bottom-left-radius: 0;
}
selectCheck.opened > div.input:after {
  transform: translateY(-50%) rotate(-180deg);
}
selectCheck.opened > div.options {
  clip-path: rect(auto auto auto auto);
}
