@import url("https://use.typekit.net/tyb5pvq.css");


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "forma-djr-micro", sans-serif;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6, p, li {
    user-select: none;
}

li {
    list-style: none;
}

a {
    all: unset;
}

input {
    background-color: transparent;
    border: none;
    outline: none;
}

input:focus {
    outline: none;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

body {
    display: flex;
    background-color: var(--dark-1);
}

#app {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: auto;
    scrollbar-width: thin;
}

:root {
    --dark-1: #0C0C10;
    --dark-2: #090A0D;
    --dark-3: #12161E;
    --dark-4: #050507;

    --white: #FFFFFF;
    --white-1: #E1DFF1;
    --white-2: #BFBDE0;
    --white-3: #9E9EAF;
    --white-4: #5b6c88;

    --border-1: #1e1d33;

    --btn-border-1: #2B2B3D;
    --btn-color-1: #100F15;

    --light-1: #1B7DC1;
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.modal-list-enter-active,
.modal-list-leave-active {
    transition: all .15s ease-in;
}

.modal-list-enter-from,
.modal-list-leave-to {
    transform: scale(.95);
    opacity: 0;
    pointer-events: auto;
}

.scroll-thin {
    scrollbar-width: thin;
}

.family-card-animator {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    gap: 5px;
    flex-shrink: 0;
}

.product-card-animator {
    width: 100%;
    height: auto;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    position: relative;
}






.family-card-enter-active,
.family-card-leave-active {
    transition: all .15s ease-in;
}

.family-card-enter-from,
.family-card-leave-to {
    opacity: 0;
    transform: scale(.95);
}





.product-card-enter-active,
.product-card-leave-active {
    transition: all .15s ease-in;
}

.product-card-enter-from,
.product-card-leave-to {
    opacity: 0;
    transform: scale(.95);
}





.modal-load-effector-enter-active,
.modal-load-effector-leave-active {
    transition: all .2s ease-in;
}

.modal-load-effector-enter-from,
.modal-load-effector-leave-to {
    opacity: 0;
}





.search-warnings-enter-active,
.search-warnings-leave-active {
    transition: all .15s ease-in;
}

.search-warnings-enter-from,
.search-warnings-leave-to {
    opacity: 0;
}





.category-effector-enter-active,
.category-effector-leave-active {
    transition: transform .15s ease-in,
    opacity .3s ease-in;
}

.category-effector-enter-from,
.category-effector-leave-to {
    opacity: 0;
    transform: translateX(-100%);
}




.category-page-enter-active,
.category-page-leave-active {
    transition: transform .15s ease-in,
    opacity .3s ease-in;
}

.category-page-enter-from,
.category-page-leave-to {
    opacity: 0;
}

.category-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.FormInput {
    width: 350px;
    height: 50px;
}

.marquee {
    position: relative;
    width: auto;
    flex-shrink: 0;
}