* {
    box-sizing: border-box;
    scroll-behavior: smooth !important;
    padding: 0;
    margin: 0;
}

::selection {
    background-color: #2a56e7;
    color: var(--white)
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    background: var(--black8);
    min-height: 100vh
}

li,
ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.t-90 {
    transform: rotateZ(-90deg)
}

input::placeholder,
textarea::placeholder {
    color: var(--black3);
    font-size: clamp(17px, 2.5vw, 18px);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.01em
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield
}

a {
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    cursor: pointer;
    transition: opacity .3s ease;
    display: flex
}

a:hover {
    opacity: .8
}

button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    border: 0;
    cursor: pointer;
    transition: opacity .3s ease;
    background: 0 0
}

button:hover {
    opacity: .9
}

button:active {
    opacity: .8
}

button:disabled {
    cursor: auto
}

button:disabled:hover {
    opacity: 1
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0
}

.hidden {
    display: none !important
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}


.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}