@import url('/css/icons.css');

:root {
  --brand: #6150FD;
  --brand-rgb: 97, 80, 253;
  --info: #3A7BFC;
  --info-rgb: 58, 123, 252;
  --success: #04CB8C;
  --success-rgb: 4, 203, 140;
  --warning: #FFD026;
  --warning-rgb: 255, 208, 38;
  --danger: #e02727;
  --danger-rgb: 224, 39, 39;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[data-mod-theme="light"]:after {
  content: "";
  display: block;
  position: fixed;
  top: -50px;
  right: 0;
  width: 600px;
  height: 620px;
  background: url('/mod_icon.svg') no-repeat;
  background-size: cover;
  opacity: 0.1;
  transform: rotate(45deg);
  z-index: -1;
  filter: blur(60px);
}

*:focus {
  outline-color: var(--brand);
}

.input {
  font-family: 'Inter';
  padding: 15px;
  font-size: 15px;
  line-height: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  width: 100%;
  display: block;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
}

.input:focus {
  outline-color: var(--brand);
}

.search-input {
  position: relative;
}

.search-input > svg {
  position: absolute;
  width: 15px;
  top: 18px;
  left: 15px;
  height: auto;
}

.search-input > svg path {
  fill: #888;
}

.search-input:has(.input:focus) > svg path {
  fill: var(--brand);
}

.search-input > .input {
  padding-left: 40px;
}

.search-input > .input:focus {
  outline: 1px solid var(--brand);
  border-color: var(--brand);
}

@media screen and (min-width: 1040px) {
  /* .container {
    padding: 0 40px 20px;
  } */
}

@media screen and (min-width: 1240px) {
  
}

@media screen and (min-width: 1440px) {
  /* .container {
    padding: 0px 0px 60px;
  } */
}