:root {
    --primary: #69ab55;
    --secondary: #fff;

    --dark-grey: #171717;
    --grey: #1f1f1f;
    --light-grey: #333333;

    --red: #c43e3e;
    --light-red: #e15454;

    --primary-font: Atyp;
    --primary-font-color: #e1e1e1;
    --grey-font-color: #737373;
    --dark-font-color: #1e1e1e;



    --bg: #111111;



    --border-primary: 1px solid var(--primary);

    --border-secondary: 1px solid var(--secondary);

    --border-grey: 1px solid var(--border-grey-color);
    --border-grey-color: #333333;

    --border-light-grey: 1px solid var(--border-light-grey-color);
    --border-light-grey-color: #505050;

    --border-light: 1px solid var(--border-light-color);
    --border-light-color: #efefef;

    --border-red: 1px solid var(--border-red-color);
    --border-red-color: var(--light-red);



    --h1: 30px;
    --h2: 20px;

    --big: 15px;
    --p: 13px;
    --small: 11px;
    --label: 10px;



    --primary-shadow: 0px 8px 12px 0px rgba(105, 171, 85, 0.35);
    --grey-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.05);
    --red-shadow: 0px 8px 12px 0px rgb(197 51 51 / 35%);



    --primary-transition: 0.5s cubic-bezier(0.41, 0.01, 0.01, 1.01);
}

@font-face {
    font-family: Atyp;
    src: url(/fonts/ATYPDISPLAY-THIN.TTF);
    font-weight: 300;
}

@font-face {
    font-family: Atyp;
    src: url(/fonts/ATYPDISPLAY-REGULAR.TTF);
    font-weight: 400;
}

@font-face {
    font-family: Atyp;
    src: url(/fonts/ATYPDISPLAY-MEDIUM.TTF);
    font-weight: 500;
}

@font-face {
    font-family: Atyp;
    src: url(/fonts/ATYPDISPLAY-SEMIBOLD.TTF);
    font-weight: 600;
}

@font-face {
    font-family: Atyp;
    src: url(/fonts/ATYPDISPLAY-BOLD.TTF);
    font-weight: 700;
}



body {
    /* padding-top: 25px; */
    font-family: var(--primary-font);
    font-weight: 500;
    color: var(--primary-font-color);
    min-width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--bg);
}

*, :before, :after {
    transition: var(--primary-transition);
}

h1 {
    font-size: var(--h1);
    font-weight: 600;
    margin: 0;
}

h2 {
    font-size: var(--h2);
    font-weight: 600;
    margin: 0;
}

big {
    font-size: var(--big);
    margin: 0;
}

p, a {
    font-size: var(--p);
    margin: 0;
}

a {
    text-decoration: none;
}

small, .small {
    font-size: var(--small);
}

/* body:has(.auth, .in-card) {
    overflow: hidden;
}

body > section:first-child {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
} */

div, section {
    position: relative;
}

svg, img, video {
    max-width: 100%;
    height: auto;
}

.loader {
    position: absolute;
    bottom: 0%;
    width: 100%;
    height: 100%;
    left: 0;
    background: var(--dark-grey);
    z-index: 99;
}

.loader.on {
    animation: loaderOn 0.5s ease-out forwards;
}

.loader.off {
    animation: loaderOff 0.35s ease-in forwards;
}

@keyframes loaderOn {
    from {bottom: -100%}
    to {bottom: 0%}
}

@keyframes loaderOff {
    from {bottom: 0%}
    to {bottom: 100%}
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.link {
    color: var(--secondary);
    text-decoration: underline;
    cursor: pointer;
}

.link.grey {
    color: var(--grey-font-color);
}

.interval {
    height: 60px;
    width: 100%;
}

.interval.small {
    height: 30px;
}

.spacer {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--grey-font-color);
}

.spacer:before, .spacer:after {
    content: "";
    position: relative;
    display: flex;
    width: -webkit-fill-available;
    height: 1px;
    background: var(--border-grey-color);
}

.grey {
    color: var(--grey-font-color);
}

.white {
    color: #fff;
}

.btns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    border-radius: 90px;
    font-weight: 500;
    font-size: var(--p);
    padding: 14px 38px;
    cursor: pointer;
    width: fit-content;
}

.btn.primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn.primary:hover {
    background: #fff;
    color: var(--primary-font-color);
    border-color: var(--border-grey-color);
}

.btn.secondary {
    background: var(--secondary);
    color: var(--dark-font-color);
    border: 1px solid var(--secondary);
}

.btn.secondary:hover {
    background: var(--grey);
    color: var(--primary-font-color);
    border-color: var(--border-grey-color);
}

.btn.grey {
    border: var(--border-grey);
    background: var(--grey);
}

.btn.grey:hover {
    border: var(--border-secondary);
    background: var(--secondary);
    color: var(--dark-font-color);
}

.btn.small {
    font-size: var(--small);
    padding: 12px 22px;
}

.btn.icon {
    width: 48px;
    height: 48px;
    padding: 15px;
    border: var(--border-secondary);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.icon img {
    filter: grayscale(1) brightness(0);
}

.btn.icon:hover {
    background: var(--grey);
    border-color: var(--border-grey-color);
}

.btn.icon:hover img {
    filter: grayscale(1) brightness(9);
}

.btn.full-width {
    width: -webkit-fill-available;
}

.card {
    border-radius: 20px;
    padding: 20px 20px;
    font-size: var(--p);
    border: var(--border-grey);
    box-shadow: var(--grey-shadow);
    margin-bottom: 15px;
    background: var(--grey);
    color: var(--primary-font-color);
}

.card.red {
    color: #fff;
    border: var(--border-red);
    box-shadow: var(--red-shadow);
    background: var(--red);
}

.row > .card {
    margin-left: 12px;
    width: calc(100% - 24px);
}

.full-screen {
    height: 100vh;
}

.in-card:has(.bottom.full-height) .top {
    height: 115px;
    min-height: 115px;
}

.in-card:has(.bottom.full-height) .bottom {
    height: 100%;
    box-shadow: var(--grey-shadow);
}

.auth, .in-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth .top, .in-card .top {
    height: -webkit-fill-available;
    background-size: cover;
    background-position: center;
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth .bottom, .in-card .bottom {
    padding: 35px 20px;
    padding-bottom: 90px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -25px;
    background: var(--dark-grey);
    border-top: var(--border-grey);
}

.auth .logo {
    display: flex;
    width: 100px;
    height: 100px;
}

#welcome video {
    position: absolute;
    left: 0;
    bottom: -20vh;
    width: 100%;
    height: auto;
}

.title-with-icon {
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: center;
    justify-content: left;
    text-align: left;
}

.title-with-icon:has(small) h2 {
    margin-top: 5px;
}

.back {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: var(--secondary);
    border: var(--border-secondary);
    border-radius: 90px;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back:hover {
    background: var(--grey);
    border-color: var(--border-grey-color);
}

.back img {
    filter: contrast(0) brightness(0);
}

.back:hover img {
    filter: contrast(0) brightness(9);
}

form {
    width: 100%;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 15px;
}

.input-wrapper.small {
    margin-bottom: 10px;
}

select.small {
    padding: 10px 16px;
}

#users .items-wrapper .item .input-wrapper.small {
    margin-bottom: 0;
}

#users .items-wrapper .item {
    padding-right: 10px;
}

textarea {
    border: var(--border-grey);
    background: var(--grey);
    border-radius: 15px;
    padding: 14px 25px;
    font-size: var(--p);
    height: 105px;
    color: var(--primary-font-color);
}

input:not([type=checkbox]), select {
    border: var(--border-secondary);
    border-radius: 90px;
    padding: 14px 24px;
    font-size: var(--p);
    background: var(--secondary);
    color: var(--dark-font-color);
}

select::picker(select) {
    background-color: var(--grey);
}

input:not([type=checkbox])::placeholder, select::placeholder {
    color: var(--dark-font-color);
}

label {
    font-size: var(--label);
    margin-left: 20px;
    margin-bottom: -8px;
    padding-left: 5px;
    padding-right: 5px;
    width: fit-content;
    z-index: 1;
    color: var(--grey-font-color);
}

input:not([type=checkbox]):focus-visible, select:focus-visible, textarea:focus-visible {
    border: var(--border-secondary);
    outline: none;
    color: var(--secondary);
    background: var(--dark-grey);
}

input:not([type=checkbox]):focus-visible::placeholder, select:focus-visible::placeholder {
    color: var(--primary-font-color);
}

.input-wrapper:has(input:focus-visible, select:focus-visible) label {
    transform: translateY(-10px);
    opacity: 0;
}

.input-icon {
    width: 17px;
    position: absolute;
    right: 40px;
    bottom: 16px;
    filter: grayscale(1);
}

.input-wrapper:has(input:focus-visible, select:focus-visible) .input-icon {
    opacity: 1;
    filter: grayscale(0) brightness(9);
}

input:-webkit-autofill, input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}

input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px var(--dark-grey) inset;
}

.in-spacer {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 5px;
    align-items: center;
}

.row.in-spacer {
    margin-left: 35px;
    width: calc(100% - 70px);
    padding-left: 0;
    padding-right: 0;
}

.row.in-spacer > div {
    padding: 0;
}

.fake-checkbox {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    color: var(--grey-font-color);
    cursor: pointer;
}

.fake-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.fake-checkbox:has(input:checked) .checkbox {
    background: var(--secondary);
}

.fake-checkbox .checkbox {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.fake-checkbox .checkbox img {
    opacity: 0;
    filter: contrast(0) brightness(0);
}

.fake-checkbox:has(input:checked) .checkbox img {
    opacity: 1;
}

.multisteps .step {
    overflow: hidden;
}

.multisteps .step:not(.active) {
    height: 0;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
}

.multisteps-controls .col-12 {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.full-screen:not(:has(> .top)) .bottom {
    height: -webkit-fill-available;
}

header {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 95px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 55px;
    height: 55px;
    display: none;
}

.avatar {
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: right;
    gap: 15px;
}

.avatar .icon {
    width: 60px;
    background: var(--grey);
    height: 60px;
    border-radius: 20px;
    box-shadow: var(--grey-shadow);
    display: flex;
    align-items: end;
    justify-content: center;
}

.avatar .icon img {
    border-radius: 20px;
}

.avatar .text {
    display: flex;
    flex-direction: column;
    color: var(--primary-font-color);
}

.avatar .text .link {
    color: var(--secondary);
}





.navbar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: var(--border-grey);
    background-color: var(--dark-grey);
}

.navbar a {
    color: var(--primary-font-color);
}

.navbar .item, .navbar .expand-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.navbar .item:hover .icon, .navbar .item.active .icon {
    transform: translateY(-20px);
    filter: none;
    background: var(--grey);
    border-color: var(--border-grey-color);
}

.navbar .item:before {
    content: "";
    position: absolute;
    left: -0.3px;
    top: -7px;
    width: 100%;
    height: 0px;
    background-image: url(/img/utility/Navbar-Overlay.svg);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.navbar .item:hover:before, .navbar .item.active:before {
    height: 29px;
}

.navbar .expand-menu {
    margin-top: -31px;
    z-index: 2;
}

.navbar .item .icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: var(--border-grey);
    border-color: transparent;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: -16px;
    margin-top: -12px;
}

.navbar .item .icon img {
    filter: grayscale(1) brightness(9);
}

.navbar .left, .navbar .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.navbar .expand-menu .icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: var(--border-grey);
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.navbar .overlay {
    position: absolute;
    left: 20px;
    top: -3px;
    width: 100px;
}




.fake-select {
    border: var(--border-grey);
    border-radius: 90px;
    padding: 14px 25px;
    font-size: var(--p);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 160px;
}

.fake-select.single .selected-option {
    background: transparent;
    color: var(--dark-font-color);
    box-shadow: none;
    padding: 0;
    font-weight: 400;
}

.fake-select.single:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 12px;
    height: 12px;
    background-image: url(/img/icons/DropDown-Arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.input-wrapper.small .fake-select {
    padding: 12px 20px;
}

.fake-select.active {
    border-color: var(--primary);
    color: var(--primary);
}

.input-wrapper:has(.fake-select.active) label {
    transform: translateY(-10px);
    opacity: 0;
}

.fake-select.round {
    border-radius: 20px;
}

.selected-option {
    font-size: var(--small);
    padding: 4px 12px;
    background: var(--primary);
    width: fit-content;
    border-radius: 90px;
    box-shadow: var(--primary-shadow);
    color: #fff;
    margin-bottom: -2.5px;
    margin-top: -2.5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.remove-option {
    width: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.options {
    position: absolute;
    transition: top 0s, left 0s;
    padding: 0;
    background: #fff;
    box-shadow: var(--grey-shadow);
    border-radius: 20px;
    border: var(--border-grey);
    margin-top: 10px;
    max-height: 0px;
    overflow-y: scroll;
}

.options.on {
    animation: optionsOn var(--primary-transition) forwards;
}

.options.off {
    animation: optionsOff var(--primary-transition) forwards;
}

@keyframes optionsOn {
    from {max-height: 0px}
    to {max-height: 160px}
}

@keyframes optionsOff {
    from {max-height: 160px}
    to {max-height: 0px}
}

.option {
    padding: 10px 20px;
}

.option:not(:last-child) {
    border-bottom: var(--border-grey);
}

/* width */
::-webkit-scrollbar {
    width: 0px;
    border-radius: 90px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--light-grey); 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--border-light-grey-color); 
    border-radius: 90px;
}

.items-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    margin: 0;
}

.items-wrapper .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--grey);
    border-radius: 15px;
    box-shadow: var(--grey-shadow);
    border: var(--border-grey);
    padding: 5px 25px;
    min-height: 60px;
}

.items-wrapper .item:has(.actions) {
    padding-right: 5px;
}

.items-wrapper .item.in-row .info {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.items-wrapper .item.in-row .info small {
    margin-bottom: 0;
}

.items-wrapper .item:has(.tag) {
    padding: 10px 25px;
    border-radius: 20px;
}

.items-wrapper .item.round {
    border-radius: 20px;
}

.items-wrapper .item .info {
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: left;
}

.items-wrapper .item:has(select) .info {
    max-width: 40%;
}

.items-wrapper .item .info .tag {
    margin-bottom: 1px;
}

.items-wrapper .item small {
    margin-bottom: 0;
    line-height: 0.8;
    word-break: break-all;
}

.items-wrapper .item:has(.tag) small {
    margin-bottom: 0px;
}

.title-with-icon .text {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    text-align: left;
}

.popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #fff;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 35px 20px;
    padding-top: 0;
    padding-bottom: 0;
}

.popup.active {
    padding: 35px 20px;
    padding-bottom: 90px;
}

.chat-wrapper {
    width: 100%;
    border-radius: 25px;
    border: var(--border-grey);
    height: 53vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    width: fit-content;
    max-width: 95%;
    padding: 14px 22px;
    background: var(--grey);
    border: var(--border-grey);
    border-radius: 15px;
    box-shadow: var(--grey-shadow);
    text-align: left;
}

.message label {
    position: absolute;
    margin: 0;
    top: -8px;
    left: 17px;
}

.message.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--primary-shadow);
}

.message.secondary {
    background: var(--secondary);
    color: var(--dark-font-color);
    border-color: var(--secondary);
}

.message.you {
    align-self: flex-end;
}

.scroll-container {
    width: -webkit-fill-available;
}

.scroll-container.scroll {
    /* padding-right: 10px; */
    overflow: scroll;
    overflow-x: hidden;
    padding-bottom: 155px;
}

.tags {
    width: 100%;
}

.tag {
    padding: 2px 10px;
    border-radius: 90px;
    background: var(--grey);
    border: var(--border-grey);
    margin-right: 5px;
    width: fit-content;
    color: var(---grey-font-color);
}

.tag.primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.tag.secondary {
    background: var(--secondary);
    color: var(--dark-font-color);
    border-color: var(--secondary);
}

.edit-form {
    padding-bottom: 5px;
    padding-top: 5px;
}

.expand-menu {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.expand-menu img {
    filter: grayscale(1) brightness(9);
}

.file-input .btn.icon {
    position: absolute;
    right: 15px;
    top: 15px;
}

.input-wrapper.file-input {
    overflow: hidden;
    border-radius: 25px;
    background: var(--primary);
}

.file-input input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.popup-btn {
    position: fixed;
    bottom: -110px;
    width: calc(100% - 45px);
}

.popup-btn.active {
    bottom: 110px;
}






section > .white, .auth .bottom.white, .in-card .bottom.white {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark-font-color);
}

.auth .bottom.white {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark-font-color);
}

.white .items-wrapper .item {
    background: var(--secondary);
    border: var(--border-light);
}

.white .btn.icon {
    border: var(--border-light);
}

.white select {
    border: var(--border-light);
}

.white .tag {
    background: var(--secondary);
    border: var(--border-light);
}

.white .tag.secondary {
    background: var(--grey);
    border-color: var(--grey);
    color: var(--primary-font-color);
}

.white .back {
    border: var(--border-light);
}

.white .chat-wrapper {
    border: var(--border-light);
}

.white .message {
    background: var(--secondary);
    border: var(--border-light);
}

.white .message.secondary {
    background: var(--grey);
    border-color: var(--grey);
    color: var(--primary-font-color);
}

.white textarea {
    background: var(--secondary);
    border: var(--border-light);
    color: var(--dark-font-color);
}

.white .btn.secondary {
    background: var(--grey);
    border-color: var(--grey);
    color: var(--secondary);
}

.white .btn.secondary:hover {
    background: var(--secondary);
    color: var(--dark-font-color);
}

.white .btn.grey {
    background: var(--secondary);
    border: var(--border-light);
    box-shadow: var(--grey-shadow);
}

.white .btn.grey:hover {
    background: var(--grey);
    border-color: var(--grey);
    color: var(--primary-font-color);
    box-shadow: none;
}

.white input:not([type=checkbox]), select {
    border: var(--border-light);
    box-shadow: var(--grey-shadow);
}

.white .link {
    color: var(--grey);
}

.white .spacer:before, .white .spacer:after {
    background: var(--border-light-color);
}

.white .input-wrapper.small .fake-select {
    border: var(--border-light);
    box-shadow: var(--grey-shadow);
}

body:has(.white) .options {
    border: var(--border-light);
}

body:has(.white) .options {
    color: var(--dark-font-color);
}

body:has(.white) .option:not(:last-child) {
    border-bottom: var(--border-light);
}

body:has(.white) .navbar {
    background: var(--secondary);
    border-color: var(--border-light-color);
}

.navbar-mask {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    mask-image: url(/img/utility/Navbar-Overlay-Mask.svg);
    mask-repeat: no-repeat;
    mask-size: 300px 100%;
    mask-position: var(--notch-x) top;
}

body:has(.white) .navbar .item .icon img {
    filter: grayscale(1) brightness(0);
}

body:has(.white) .navbar a {
    color: var(--dark-font-color);
}

body:has(.white) .navbar .item:hover .icon, body:has(.white) .navbar .item.active .icon {
    background: var(--secondary);
    border-color: var(--border-light-color);
}

body:has(.white) .navbar .item:hover .icon img, body:has(.in-card .bottom.white) .navbar .item.active .icon img {
    filter: grayscale(1) brightness(0);
}

body:has(.bottom.white) .navbar .item:before {
    background-image: url(/img/utility/Navbar-Overlay-W.svg);
}



@media only screen and (min-width: 726px) {
    :root {
        --h2: 35px;
        --big: 20px;
    }

    body {
        max-height: fit-content;
        height: fit-content;
        min-height: 100vh;
        overflow-y: scroll;
    }

    .auth {
        align-items: center;
        justify-content: center;
    }

    .auth .top {
        display: none;
    }

    .auth .bottom {
        border-radius: 25px;
        padding-bottom: 35px;
        width: 700px;
        box-shadow: var(--grey-shadow);
        z-index: 2;
        border: var(--border-grey);
    }

    #welcome {
        flex-direction: row;
    }

    #welcome .top {
        display: flex;
        position: absolute;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center 50%;
    }

    #welcome .top video {
        display: none;
    }

    #welcome .bottom h2 {
        margin-bottom: 10px;
    }

    .logo {
        display: flex;
        margin-left: 7px;
    }

    .expand-menu {
        display: none;
    }

    .full-screen.in-card {
        padding-left: 110px;
        padding-bottom: 85px;
        padding-right: 15px;
        height: fit-content;
        min-height: 100vh;
        justify-content: flex-start;
    }

    .in-card:has(.bottom.full-height) .bottom {
        border-radius: 25px;
        height: fit-content;
        min-height: 78vh;
        border: var(--border-grey);
    }



    .navbar {
        width: fit-content;
        bottom: inherit;
        top: 100px;
        left: 15px;
        flex-direction: column;
        height: fit-content;
        background: transparent !important;
        border: none;
        gap: 15px;
    }

    .navbar .left, .navbar .right {
        width: 100%;
    }

    .navbar .item {
        position: relative;
    }

    .navbar .item .icon {
        background: var(--grey);
        width: 70px;
        height: 70px;
        padding: 22px;
        margin: 0;
        z-index: 1;
        border-color: var(--border-grey-color);
    }

    .navbar .item p {
        position: absolute;
        left: 0;
        top: 0;
        height: 70px;
        background: var(--grey);
        padding-left: 90px;
        border-radius: 90px;
        display: flex;
        align-items: center;
        justify-content: left;
        font-size: var(--big);
        color: #fff;
        padding-right: 45px;
        border: var(--border-grey);
        border-left: none;
        overflow: hidden;
    }

    .navbar .item:hover .icon, .navbar .item.active .icon, .navbar .item:hover p, .navbar .item.active p {
        transform: none;
        background: var(--secondary);
        border-color: var(--secondary);
        color: var(--dark-font-color);
    }

    body:has(.white) .navbar .item .icon img {
        filter: grayscale(1) brightness(9);
    }

    .navbar .item:hover .icon img, .navbar .item.active .icon img {
        filter: grayscale(1) brightness(0);
    }

    .navbar .item:before {
        display: none;
    }

    .items-wrapper .col-lg-6 {
        width: calc(50% - 8px);
    }

    .input-wrapper.col-lg-2 {
        width: 15%;
    }

    .popup-btn.active {
        width: fit-content;
        left: 135px;
        bottom: 16vh;
    }

    .items-wrapper .item small {
        line-height: 1;
    }

    .scroll-container.scroll {
        overflow: visible;
        padding: 0;
    }
}