@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: black;
}

/* color variables */
:root {
    /* --primary-color: 67, 98, 255; */
    --primary-color: 29, 228, 95;
    --secondary-color: 25, 207, 85;
    --gray: 51, 51, 51;
    --dead-white: 231, 233, 234;
    --secondary-gray: 20, 20, 20;
    --third-gray: 102, 102, 102;
    --light-gray: 170, 170, 170;
}

.full-container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    padding: 1rem;
}

.full-wrapper {
    width: 100%;
    height: calc(100vh - 2rem);
    position: relative;
    display: flex;
    align-items: center;
}

#login-img-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 6rem;
    top: 2rem;
    left: 2rem;
}

#login-form-logo {
    width: 18rem;
    margin-bottom: 3rem !important;
}

#login-img {
    width: 100%;
    height: calc(100vh - 2rem);
    object-fit: cover;
    display: flex;
    align-items: center;
    border-radius: 15px;
}

.login-form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lg-title {
    color: rgba(var(--dead-white), 1);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.md-title {
    color: rgba(var(--dead-white), 1);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

#login-form {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.md-input {
    display: grid;
    text-align: left;
    margin-bottom: 1rem;
}

.md-input input:disabled {
    opacity: .6;
    background: rgba(var(--gray), .2);
    cursor: not-allowed;
    transition: .2s ease-in-out;
}

.md-input label {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(var(--gray), .6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.md-input input {
    background: rgba(var(--dead-white), .1);
    padding: 1rem 1.5rem;
    border: 0;
    border-radius: 15px;
    font-weight: 500;
    font-size: .9rem;
    color: rgba(var(--dead-white), 1);
}


.md-input input[autocompleted] {
    background: rgba(var(--dead-white), 1) !important;
    background-color: rgba(var(--dead-white), 1) !important;
    animation-name: unset !important;
    /* -webkit-background-clip: unset !important; */
    box-shadow: unset !important;
    -webkit-box-shadow: unset !important;
}


.md-input input::placeholder {
    color: rgba(var(--dead-white), 0.4);
    font-size: .9rem;
}

.md-input input:focus {
    /* outline: 2px solid rgba(var(--gray), .3); */
    outline: none !important;
}

.custom-btn {
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    transition: .2s ease-in-out;
}

.small-btn {
    border-radius: 7px;
    padding: .5rem 1rem;
    font-size: 14px !important;
    text-transform: none;
    font-weight: 500;
}

.app-header-content .small-btn {
    width: auto;
}

.custom-btn:disabled {
    background: rgba(var(--gray), 1) !important;
    color: rgba(var(--dead-white), 1) !important;
    cursor: not-allowed !important;
    opacity: .4;
}

.blue-btn:disabled:hover {
    background: rgba(var(--gray), 1) !important;
    color: rgba(var(--dead-white), 1) !important;
    cursor: not-allowed !important;
    opacity: .6;
}

.blue-btn {
    color: rgba(var(--dead-white), 1);
    font-size: 1rem;
    background: rgba(var(--primary-color), 1);
}

.blue-btn:hover {
    background: rgba(var(--secondary-color), 1);
    transition: .2s ease-in-out;
}

.black-btn {
    color: rgba(var(--dead-white), 1);
    font-size: 1rem;
    background: black;
}

.black-btn:hover {
    background: rgba(var(--gray), .8);
    transition: .2s ease-in-out;
}

.white-btn {
    color: black;
    font-size: 1rem;
    background: rgba(var(--dead-white), 1);
    font-weight: 700 !important;
}

.white-btn:hover {
    opacity: .8;
    transition: .2s ease-in-out;
}

.blue-btn {
    color: rgba(var(--dead-white), 1);
    font-size: 1rem;
    background: rgba(var(--primary-color), 1);
}

.blue-btn:hover {
    background: rgba(var(--secondary-color), 1);
    transition: .2s ease-in-out;
}

.btn-icon-img {
    width: 1rem;
    height: 1rem;
    top: -1px !important;
}

.right-btn-icon {
    margin-left: .5rem;
    position: relative;
    top: 1px;
}

.left-btn-icon {
    margin-right: .5rem;
    position: relative;
    top: 1px;
}

#app {
    width: 100%;
    height: 100%;
    /* padding-top: 3rem; */
    /* padding-bottom: 3rem; */
    /* justify-content: center;
    display: flex;
    align-items: center; */
    /* min-height: calc(100vh - 2rem); */
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
}

#app .app-header {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    z-index: +99;
    position: relative;
    position: fixed;
    top: 0;
    border-bottom: 1px solid rgba(var(--dead-white), .2);
}


.filter-remove-btn:disabled {
    cursor: not-allowed;
    opacity: .6;
}

#app .app-header #header-img {
    width: 10rem;
    height: auto;
}

.fit-button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

#audio-recording-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4%;
    z-index: 10;
    /* background: var(--mdb-body-bg); */
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0rem 2rem;
    padding-right: 1rem;
    border-radius: 0;
    height: 90%;
    margin-left: 4rem;
}

#audio-preview-overlay {
    display: flex;
    position: absolute;
    left: 3.5rem;
    /* transform: translateX(-50%); */
    top: 0.25rem;
    width: 100%;
}


#audio-preview-overlay .plyr {
    width: 75%;
}

#audio-preview-overlay .plyr__controls {
    background: none !important;
}

.plyr--audio .plyr__controls {
    border-radius: 20px !important;
}

.plyr--full-ui input[type=range] {
    color: rgba(var(--primary-color), 1) !important;
}

.plyr__control--overlaid {
    background: rgba(var(--primary-color), .8) !important;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    background: rgba(var(--primary-color), 1) !important;
}

.plyr__control.plyr__tab-focus {
    box-shadow: 0 0 0 5px rgba(var(--primary-color), .5) !important;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
    background: rgba(var(--primary-color), 1) !important;
}

.plyr--audio .plyr__control:focus-visible,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded=true] {
    background: rgba(var(--primary-color), 1) !important;
}

.plyr__control svg {
    fill: rgba(var(--dead-white), 1) !important;
}

.chats-box-messages .plyr__control svg {
    fill: rgba(var(--gray), 1) !important;
}

.plyr--audio .plyr__controls {
    color: rgba(var(--dead-white), 1) !important;
}

.chats-box-messages .plyr__controls {
    color: rgba(var(--gray), 1) !important;
}

.chats-box-messages .plyr--audio .plyr__control:hover svg {
    fill: rgba(var(--dead-white), 1) !important;
}

/* 
.audio-bars {
    display: flex;
    align-items: flex-end;
    height: 30px;
} */

.audio-bar {
    /* width: 3px;
    margin: 0 1px;
    border-radius: 2px;
    transition: height 0.2s; */
}

#audio-timer {
    font-size: .85rem;
    color: rgba(var(--dead-white), 1);
    font-weight: 600;
    margin-left: -1rem;
    margin-right: -1rem;
}

.app-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#app-header-profile-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 1rem;
    outline: 2px solid rgba(var(--gray), .3);
}

#audio-bars {
    width: 100%;
    display: flex;
    align-items: flex-end;
    height: 40px;
    background: transparent;
    padding: 0 8px;
    gap: 1px;
    /* espaço entre barras */
    margin-right: 0;
}

.audio-bar {
    flex: 1 1 0%;
    width: 2px;
    border-radius: 2px;
    background: rgba(var(--dead-white), .6);
    transition: height 0.1s;
    max-height: 2.5rem;
}

.app-box {
    width: 100%;
    height: auto;
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(var(--dead-white), 1);
}

.app-box-blue {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

.app-box-black {
    background: rgba(var(--gray), 1);
    color: rgba(var(--dead-white), 1);
}

.app-box-none {
    background: transparent;
    color: rgba(var(--gray), 1);
    padding: 0;
}

/* #app-box-tasks {
    height: 55.5vh;
    padding-bottom: 5rem;
} */

#app-box-nextask {
    width: 100%;
    /* min-height: 0rem; */
    display: flex;
    align-items: center;
    justify-content: start;
    /* padding: 0 !important; */
    height: auto;
    padding: 2rem 2rem;
}

#app-box-inputask {
    min-height: 8rem;
}

/* #app-box-resumetask {
    min-height: 10rem;
    height: 55.5vh;
} */

#app-box-tasks,
#app-box-resumetask {
    height: auto;
    min-height: 55.5vh;
}

.app-rows .row {
    display: flex;
    align-items: stretch;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



.app-input-top {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    position: relative;
}

#app-record-btn {
    height: 57px;
    width: 57px;
    margin-right: .5rem;
    display: inline-block;
}

#app-record-btn i {
    font-size: 1.5rem;
}

.app-inputtask {
    display: grid;
    width: 100% !important;
}

.box-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(var(--gray), 1);
}

.icon-box {
    height: 57px;
    width: 57px;
    border-radius: 15px;
    background: rgba(var(--dead-white), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(var(--gray), 1);
    margin-right: 1rem;
    min-width: 57px;
    min-height: 57px;
}

.app-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(var(--dead-white), 1);
}

.mid-opacity {
    opacity: .6;
}

.app-label-icon {
    position: relative;
    top: 1.5px;
    margin-right: .25rem;
    font-size: 1rem;
}

.white-txt {
    color: rgba(var(--dead-white), 1) !important;
}

.task-period {
    margin-bottom: 1.5rem;
}

.task-period-header {
    background: none;
    border: none;
    font-size: .875rem;
    font-weight: 600 !important;
    text-align: left;
    width: 100%;
    padding: 0.5rem 1rem;
    cursor: pointer;
    /* text-transform: uppercase; */
    background: rgba(var(--gray), 1);
    border-radius: 7px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.2s ease-in-out;
    color: rgba(var(--dead-white), 1);
    margin-bottom: .5rem;
}

.task-period-header:hover {
    color: rgba(var(--dead-white), 1);
    background: rgba(var(--primary-color), 1);
    transition: 0.2s ease-in-out;
}

.task-period-header i {
    opacity: .6;
    transition: transform 0.2s ease;
}

.task-period-header i.open {
    transform: rotate(180deg);
    opacity: .6;
}

.task-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

.task-list.active {
    max-height: 1000px;
    /* Um valor suficientemente grande para conter todos os itens */
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    border: 0;
    border-radius: 7px;
    margin-bottom: 0.5rem;
    transition: 0.2s ease-in-out;
    background-color: transparent;
    cursor: pointer;
    padding-right: 1rem;
    transition: .2s ease-in-out;
}

.task-item:hover {
    background-color: rgba(var(--gray), 0.1);
    border-radius: 7px;
    transition: 0.2s ease-in-out;

}

.task-period-header.disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.task-period-header:hover.disabled {
    background: rgba(var(--gray), .4) !important;
    color: rgba(var(--dead-white), 1) !important;
    cursor: not-allowed !important;
}

.task-title {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.task-tag {
    font-size: 10px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: white;
    background-color: rgba(var(--primary-color), 1);
    font-weight: 600;
    text-transform: uppercase;
    transition: .2s ease-in-out;
}

.reminder-tag {
    font-size: 10px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: white;
    background-color: rgba(var(--primary-color), 1);
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 1rem;
    transition: .2s ease-in-out;
}

.reminder-item.active .reminder-tag {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    font-weight: 700 !important;
    transition: .2s ease-in-out;
}

.task-time {
    margin-left: 1rem;
    font-size: 14px;
    font-weight: 600;
}

.task-count {
    margin-left: 0;
    opacity: .6;
}

#chat-message::-webkit-scrollbar {
    display: none;
}

#chat-message {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.task-item.selected {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

.task-item.selected .task-tag {
    color: rgba(var(--gray), 1);
    background: rgba(var(--dead-white), 1);
    font-weight: 700 !important;
    transition: .2s ease-in-out;
}

.app-resume-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

#current-time-label {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 0;
}

/* Container do checkbox */
.custom-checkbox {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    /* margin-right: 8px; */
    transition: .2s ease-in-out;
    width: fit-content;
    /* top: 3px; */
    left: -1rem;
    align-items: center;
    justify-content: center;
}

/* Esconder o checkbox padrão do navegador */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* O "span" que será a caixinha customizada */
.custom-checkbox .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(var(--gray), .3);
    background-color: white;
    border-radius: 5px;
    transition: border 0s, .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-item.selected .custom-checkbox .checkmark {
    border: 2px solid rgba(var(--gray), .2);
}

/* Efeito de hover, se desejar */
.custom-checkbox:hover .checkmark {
    /* border-color: #999; */
    opacity: .8;
    transition: .2s ease-in-out;
}

/* Quando o checkbox está marcado, mudar a cor de fundo do checkmark */
.custom-checkbox input[type="checkbox"]:checked~.checkmark {
    background-color: rgba(var(--primary-color), 1);
    /* Exemplo: azul do Google */
    border-color: rgba(var(--primary-color), 1);
}

.task-item.selected .custom-checkbox input[type="checkbox"]:checked~.checkmark {
    background-color: rgba(var(--dead-white), 1);
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.task-item.selected .custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
    border-color: rgba(var(--gray), 1);
    transition: .2s ease-in-out;
}

/* Para exibir um ícone "tick" dentro do checkmark */
.custom-checkbox .checkmark::after {
    content: "";
    position: relative;
    display: none;
    /* left: 5px; */
    top: -1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Mostrar o "tick" quando estiver checado */
.custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
    display: block;
}

.btn-loader {
    width: 1rem !important;
    height: 1rem !important;
    position: relative;
    margin-right: .5rem;
    display: inline-flex;
    top: 2px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-icon {
    opacity: .6;
    animation: rotate 1s linear infinite;
}

#logout-btn {
    min-width: 150px;
    text-transform: uppercase;
}

#notifications-login {
    position: absolute;
    top: 1rem;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: +999;
    max-width: 600px;
}

.notification-success {
    background: rgba(var(--dead-white)) !important;
    color: rgba(var(--gray), 1) !important;
    outline: 1px solid rgba(var(--dead-white), .1) !important;
}

#notifications-app {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: +9999999;
    width: 90%;
    max-width: 600px;
}

.notification-error {
    background: rgb(250, 62, 62) !important;
}

.notification {
    opacity: 0;
    transform: translateY(-20px);
    margin-bottom: .5rem;
    background: rgba(var(--gray), 1);
    border-radius: 7px;
    border-radius: 7px;
    padding: .5rem 1rem;
    font-size: 14px !important;
    text-transform: none;
    font-weight: 500;
    color: rgba(var(--dead-white), 1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.bordered-btn {
    border: 2px solid rgba(var(--gray), .3);
}

.filter-btn-count {
    background: rgba(var(--primary-color), 1);
    border-radius: 7px;
    border: 0;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--dead-white), 1);
    font-weight: 600;
    font-size: 12px;
    margin-left: .5rem;
    position: relative;
    top: 0px;
    min-width: 21px;
    width: max-content;
}

.btn-icon-left {
    position: relative;
    top: 1px;
    margin-right: .5rem;
    font-weight: 700;
}

/* #app-filter-btn */

#app-filter-dropdown {
    display: none;
}

.app-filter.active {
    display: block !important;
    position: absolute;
    z-index: +99;
    transition: .2s ease-in-out;
    background: rgba(var(--gray), 1);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    animation: 0.2s ease-in-out;
    margin-top: .5rem;
}

#app-filter-btn-icon {
    transition: .2s ease-in-out;
}

.app-rows {
    transition: .2s ease-in-out;
    height: 100vh;
    overflow: hidden;
}


.disabled-box {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .2 !important;
    transition: .2s ease-in-out;
}

.filter-header .custom-btn:disabled {
    opacity: 1 !important;
}

.focus-option {
    background: red !important;
}

#filter-create-input input {
    height: 40px !important;
    width: 100%;
    background: rgba(var(--dead-white), .1) !important;
    color: rgba(var(--dead-white), 1) !important;
    border-radius: 5px;
    font-size: 14px;
    padding: .5rem 1rem;
    display: inline-flex;
    text-transform: capitalize;
}

#filter-create-input input::placeholder {
    color: rgba(var(--dead-white), .6);
    font-weight: 400;
    font-size: 14px;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

#filter-create-btn {
    margin-left: .5rem;
}

#app-filter-btn:focus {
    border: 2px solid rgba(var(--gray), .3);
    outline: none !important;
}

.filter-item {
    background: transparent;
    padding: .3rem 1rem;
    border-radius: 5px;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    transition: .2s ease-in-out;
}

.filter-item:hover {
    background: rgba(var(--dead-white), .1);
}

.filter-label {
    margin-left: .5rem;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.filter-content {
    overflow-y: auto;
    max-height: 12rem;
}

/* scrollbar low opacity and thin */
.filter-content::-webkit-scrollbar {
    width: 5px;
}

.filter-content::-webkit-scrollbar-thumb {
    background: rgba(var(--dead-white), .2);
    border-radius: 10px;
}

.filter-content::-webkit-scrollbar-track {
    background: transparent;
}

.filter-item.active {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

.filter-item .custom-checkbox {
    top: 0;
    left: 0;
}

.filter-remove-btn {
    margin-left: auto;
    /* background: none; */
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 0;
    background-color: rgba(var(--dead-white), .3);
    color: rgba(var(--dead-white), 1);
    border-radius: 5px;
    transition: border 0s, .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    font-size: .875rem;
}

.filter-remove-btn:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.filter-item.active .custom-checkbox input[type="checkbox"]:checked~.checkmark {
    background: rgba(var(--dead-white), 1) !important;
    border-color: rgba(var(--dead-white), .1) !important;
    color: rgba(var(--gray), 1) !important;
    transition: .2s ease-in-out;
}

.filter-item.active .custom-checkbox .checkmark::after {
    border-color: rgba(var(--gray), 1) !important;
    transition: .2s ease-in-out;
}

#app-input-task {
    width: 100%;
}



#waveform-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
    background-color: none;
    /* Fundo branco */
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    display: none;
    margin-top: 0 !important;
    height: 57px;
}

#waveform-container.show {
    opacity: 1;
    display: block;
}

/* Estilo para a waveform */
#waveform {
    width: 100%;
    height: 57px;
    border-radius: 12px;
    background-color: transparent;
    /* Tornar o fundo do canvas transparente */
}

/* Reprodutor de áudio */
#audio-output {
    width: 100%;
    max-width: 600px;
    margin-top: 10px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Opcional: Adicionar animação ao botão de gravação */
.custom-btn.black-btn.active {
    background-color: rgba(var(--primary-color), 1);
    /* Cor azul quando ativo */
    color: #ffffff;
    transition: background-color 0.2s ease;
}

/* .custom-btn.black-btn.active i {
    animation: pulse 1s infinite;
} */

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulseLoading {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}


#audio-time {
    margin-left: .5rem;
    font-weight: 600;
    font-size: 14px;
    color: rgba(var(--gray), 1);
    display: none;
}

.loading-filters {
    display: none;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trash-icon-loading {
    margin-right: 0 !important;
    position: relative;
    top: -1px;
}



/* Contêiner de lembretes */
#reminders-list-container {
    max-height: 33.5vh;
    overflow-y: auto;
    scrollbar-width: none;
    padding: 0;
    border-radius: 7px;
    margin-top: 2rem;
}

#reminders-list-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/* Estilo do item de lembrete */
.reminder-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    border: 0;
    border-radius: 7px;
    margin-bottom: 0.5rem;
    transition: 0.2s ease-in-out;
    background-color: transparent;
    cursor: pointer;
    padding-right: 1rem;
    transition: .2s ease-in-out;
}

.reminder-item:hover {
    background-color: rgba(var(--dead-white), 0.1);
    border-radius: 7px;
    transition: 0.2s ease-in-out;
}

.reminder-item .custom-checkbox {
    margin-right: 0.5rem;
}

.reminder-item .reminder-title {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.task-item .task-delete-btn {
    margin-left: auto;
    /* background: none; */
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 0;
    background-color: rgba(var(--gray), .2);
    color: rgba(var(--gray), .6);
    border-radius: 5px;
    transition: border 0s, .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    font-size: .875rem;
    margin-left: 1rem;
}

.task-item .task-delete-btn:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.reminder-item .reminder-delete-btn {
    margin-left: auto;
    /* background: none; */
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 0;
    background-color: rgba(var(--dead-white), .3);
    color: rgba(var(--dead-white), 1);
    border-radius: 5px;
    transition: border 0s, .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    font-size: .875rem;
}

.reminder-item .reminder-delete-btn:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.reminder-item.active {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

.reminder-item.active .custom-checkbox input[type="checkbox"]:checked~.checkmark {
    background-color: rgba(var(--dead-white), 1) !important;
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.reminder-item.active .custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
    border-color: rgba(var(--gray), 1) !important;
    transition: .2s ease-in-out;
}

#reminders-list-container hr {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(var(--dead-white), .2);
    margin-bottom: .5rem;
    margin-top: .5rem;
}

.theme-toggle {
    display: flex;
    gap: 0;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    margin-right: 1rem;
}

.theme-btn {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.theme-toggle button i {
    font-size: 1.25rem;
}

.no-bg-btn {
    background: transparent;
    color: rgba(var(--dead-white), 1);
    border: 2px solid rgba(var(--dead-white), .3);
    transition: .2s ease-in-out;
}

.no-bg-btn:hover {
    background: rgba(var(--dead-white), .1);
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

.shine-text {
    display: inline-flex;
    position: relative;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(var(--dead-white), 0.6) 0%, rgba(var(--dead-white), 0.6) 40%, rgba(var(--dead-white), 1) 50%, rgba(var(--dead-white), 0.6) 60%, rgba(var(--dead-white), 0.6) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 8s linear infinite;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

@keyframes shine {
    0% {
        background-position: 250% 0;
    }

    100% {
        background-position: -250% 0;
    }
}



.theme-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

.theme-btn.active {
    background-color: rgba(var(--primary-color), 1) !important;
    color: rgba(var(--dead-white), 1) !important;
}

.app-header-theme {
    display: inline-flex;
    position: relative;
    top: 5px;
}

#styled-input {
    width: 100% !important;
    background: rgba(var(--dead-white), 1);
    padding: 1rem 1.5rem !important;
    border: 0 !important;
    border-radius: 15px;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(var(--gray), 1);
    white-space: normal !important;
}

.input-time-label {
    color: rgba(var(--primary-color), 1);
    background: rgba(var(--primary-color), .4);
    padding: .1rem .5rem;
    border-radius: 7px;
    font-weight: 600;
    white-space: nowrap;
    /* width: fit-content; */
    position: relative;
    margin-left: .1rem;
    margin-right: .1rem;
    font-size: 14px;
}

.place-holder {
    color: rgba(var(--gray), 0.4) !important;
    font-size: 1rem !important;
}

#styled-input:focus {
    outline: 2px solid rgba(var(--gray), .3);
}


/* Dark Mode */

body.dark-mode {
    background: rgba(31, 31, 31, 1);
    color: rgba(var(--dead-white), 1);
}

body.dark-mode .theme-btn {
    background: rgba(var(--gray), 1);
    color: rgba(var(--dead-white), 1);
}

body.dark-mode .theme-btn:hover {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

body.dark-mode .md-input input {
    background: rgba(var(--gray), 1);
    color: rgba(var(--dead-white), 1);
}

body.dark-mode .task-item .task-delete-btn {
    background-color: rgba(var(--dead-white), .2);
    color: rgba(var(--dead-white), .6);
}

body.dark-mode .md-input input::placeholder {
    color: rgba(var(--dead-white), .6);
}

body.dark-mode .black-btn {
    background: rgba(var(--dead-white), 1) !important;
    color: rgba(var(--gray), 1) !important;
    font-weight: 600;
}

body.dark-mode .white-btn {
    background: rgba(var(--gray), 1) !important;
    color: rgba(var(--dead-white), 1) !important;
    font-weight: 600 !important;
}

body.dark-mode #app-box-tasks {
    background: rgba(var(--gray), 1);
}

body.dark-mode .box-title {
    color: rgba(var(--dead-white), 1);
}

body.dark-mode .task-item:hover {
    background-color: rgba(var(--dead-white), 0.1);
    border-radius: 7px;
    transition: 0.2s ease-in-out;

}

body.dark-mode .task-period-header {
    background: rgba(var(--dead-white), .1);
}

body.dark-mode #app-box-resumetask {
    background: rgba(var(--dead-white), .2);
}

body.dark-mode #audio-time {
    color: rgba(var(--dead-white), 1);
}

body.dark-mode #reminder-editor .transparent-input .task-input-title {
    color: rgba(var(--dead-white), 1);
}

body.dark-mode #reminder-editor .transparent-input .task-input-desc {
    color: rgba(var(--dead-white), 1);
}

body.dark-mode #reminder-editor .close-task {
    color: rgba(var(--dead-white), 1) !important;
}

body.dark-mode #reminder-editor .task-info-btn {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
}

body.dark-mode #reminder-editor .task-info-val {
    background: rgba(var(--dead-white), .1);
}

.tippy-tooltip.task-desc-theme {
    background-color: rgba(var(--dead-white), .2);
    color: rgba(var(--gray), 1);
    border-radius: 15px;
    padding: .5rem 1rem;
    font-size: 10px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(var(--gray), .2);
    -webkit-backdrop-filter: blur(8px);
}

#loading-screen {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    z-index: +100;
    transition: .2s ease-in-out;
    overflow: hidden;
}

#loading-screen img {
    width: 15rem;
    height: auto;
    animation: pulse 2s infinite;
}

#loading-screen video {
    width: 20rem;
    height: auto;
    /* animation: pulseLoading 3s infinite; */
}

#header-logo {
    margin-right: auto;
    width: 7rem;
    margin-left: 1.5rem;
    position: relative;
    /* top: -3px; */
}

.app-task-editor {
    background: transparent;
    width: 100%;
    min-height: 25rem;
    height: auto;
    display: none;
    position: relative;
}

.app-task-editor .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.save-editor-btn {
    display: none;
    transition: .2s ease-in-out;
}

.loading-tasks-wrapper {
    width: 100% !important;
    min-height: 20rem !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

.close-task {
    background: none !important;
    color: rgba(var(--dead-white), 1) !important;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: .2s ease-in-out;
    border: 0;
    opacity: .2;
}

.close-task:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.app-task-editor .task-title {
    font-size: 30px;
    font-weight: 600;
    color: rgba(var(--dead-white), 1);
}

.app-task-editor .task-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--dead-white), .6);
    margin-bottom: 1rem;
    max-width: 70%;
    line-height: 1.5rem;
}

#task-icon-btn,
#reminder-icon-btn {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
    border-radius: 15px;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: .2s ease-in-out;
    border: 0;
}

#task-icon-btn:hover,
#reminder-icon-btn:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.transparent-input .task-input-title {
    background: transparent;
    font-size: 30px;
    text-decoration: none !important;
    font-weight: 600;
    color: rgba(var(--dead-white), 1);
    padding: 0 !important;
    transition: .2s ease-in-out;
    padding: 0;
    border: 0;
    resize: none;
    overflow-y: auto;
    scrollbar-width: none;
    line-height: 2rem;
}

#reminder-editor .close-task {
    color: rgba(var(--gray), 1) !important;
}

#reminder-editor .task-info-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 7px;
    background: rgba(var(--gray), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 0;
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

#reminder-editor .task-info-btn:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

#task-editor .task-info-btn {
    transition: .2s ease-in-out;
}

#task-editor .task-info-btn:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

#reminder-editor .task-info-val {
    margin-right: auto;
    margin-left: 1rem;
    font-size: 14px;
    background: rgba(var(--gray), .1);
    height: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-radius: 7px;
    font-weight: 600;
}

#reminder-editor .transparent-input .task-input-title {
    color: rgba(var(--gray), 1);
    font-weight: 600;
}

#reminder-editor .transparent-input .task-input-desc {
    color: rgba(var(--gray), 1);
    font-weight: 500;
}

.transparent-input .task-input-title::webkit-scrollbar {
    width: 0;
    /* Hide scrollbar in Webkit browsers */
    background: transparent;
}

.transparent-input .task-input-title::webkit-scrollbar-thumb {
    background: transparent;
}

.transparent-input .task-input-title::webkit-scrollbar-track {
    background: transparent;
}

.transparent-input .task-input-desc {
    background: transparent;
    font-size: 16px;
    text-decoration: none !important;
    font-weight: 400;
    color: rgba(var(--dead-white), .6);
    padding: 0 !important;
    transition: .2s ease-in-out;
    padding: 0;
    border: 0;
    max-width: 80%;
    line-height: 1.5rem;
    resize: none;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
}

.transparent-input .task-input-desc::-webkit-scrollbar {
    width: 0;
    /* Hide scrollbar in Webkit browsers */
    background: transparent;
}

.transparent-input .task-input-desc::-webkit-scrollbar-thumb {
    background: transparent;
}

.transparent-input .task-input-desc::-webkit-scrollbar-track {
    background: transparent;
}

.transparent-input .task-input-desc::placeholder {
    background: transparent;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--dead-white), .3);
}

.transparent-input .task-input-desc:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.transparent-input .task-input-desc:focus {
    opacity: 1;
    outline: none;
    border: 0;
}

.transparent-input .task-input-title::placeholder {
    background: transparent;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    color: rgba(var(--dead-white), .3);
}

.transparent-input .task-input-title:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.transparent-input .task-input-title:focus {
    opacity: 1;
    outline: none;
    border: 0;
}

.task-infos-wrapper {
    margin-top: 2rem;
}

.task-infos-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-infos-wrapper ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 7px;
    margin-bottom: .5rem;
    transition: .2s ease-in-out;
}

.task-info-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 7px;
    background: rgba(var(--dead-white), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 0;
    color: rgba(var(--gray), 1);
}

.task-info-val {
    margin-right: auto;
    margin-left: 1rem;
    font-size: 14px;
    background: rgba(var(--dead-white), .1);
    height: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-radius: 7px;
    font-weight: 500;
}

#login-form-container {
    min-width: 450px;
    max-width: 600px;
}

/* para dispositivos móveis */
@media (max-width: 768px) {
    #login-form-container {
        min-width: 100%;
    }
}

#login-form-container video {
    width: 65%;
    filter: hue-rotate(288deg) saturate(1.3) brightness(1.1);
    max-width: 20rem;
}

.app-header {
    padding: 1rem 2rem;
}

.app-header video {
    width: 5rem;
    height: auto;
    filter: hue-rotate(288deg) saturate(1.3) brightness(1.1);
    /* margin-left: auto; */
    transition: .2s ease-in-out;
}

.app-header video:hover {
    transform: scale(1.15);
    transition: .2s ease-in-out;
    cursor: pointer;
}

#open-nav-btn {
    background: none;
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(var(--dead-white), .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: rgba(var(--dead-white));
    font-size: 1.25rem;
    transition: .2s ease-in-out;
}

#open-nav-btn:hover {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

#reset-session-btn {
    background: none;
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(var(--dead-white), .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: rgba(var(--dead-white));
    font-size: 1.25rem;
    transition: .2s ease-in-out;
    margin-left: .5rem;
    margin-right: .5rem;
}

#reset-session-btn:hover {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

#open-calendar-btn {
    background: none;
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(var(--dead-white), .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: rgba(var(--dead-white));
    font-size: 1.25rem;
    transition: .2s ease-in-out;
    margin-right: 0;
    margin-left: .5rem;
}

#open-calendar-btn:hover {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

#toggle-sounds-btn {
    background: none;
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(var(--dead-white), .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: rgba(var(--dead-white));
    font-size: 1.25rem;
    transition: .2s ease-in-out;
    margin-left: auto;
    margin-right: 0;
}

#toggle-sounds-btn:hover {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

.model-tag {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(var(--dead-white), 1);
    margin-left: 0.5rem;
    padding: .3rem .5rem;
    background: rgba(var(--dead-white), .2);
    border-radius: 5px;
}

/* chat */

.chats-box-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* <--- este é essencial para ocupar tudo */
    min-height: 0;
    /* previne overflow em flexbox */
    padding: 2rem 1rem;
    padding-top: 7rem;
    position: relative;
    max-height: 100vh;
    padding-bottom: 1rem;
}

.chats-box-bottom {
    height: auto;
    position: relative;
    width: 100%;
    /* background: red; */
}

.chats-box-messages {
    flex: 1 1 0%;
    overflow-y: auto;
    min-height: 0;
    margin-bottom: 1rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    position: relative;
    /* padding-top: 6rem; */
    max-height: 100%;
    padding-bottom: .5rem;
    /* IE and Edge */
}

.chats-box-messages::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.custom-input {
    border: 2px solid rgba(var(--gray), .2) !important;
    color: rgba(var(--dead-white), 1) !important;
    font-size: .9rem !important;
    margin-top: 0 !important;
    font-weight: 400 !important;
}

.custom-input::placeholder {
    color: rgba(var(--dead-white), .4) !important;
    font-size: .9rem !important;
    font-weight: 400 !important;
}

.chats-box-bottom .custom-input {
    padding-right: 8rem !important;
    padding-left: 7.5rem !important;
}

.chats-box-bottom #send-message-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
    width: auto;
    height: 2.5rem;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: .2s ease-in-out;
    font-size: 1.2rem;
    padding: 0 .6rem;
}

.chats-box-bottom #add-emoji-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 0;
    transition: .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(var(--dead-white), 1);
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(var(--dead-white), .2);
    border-radius: 7px;
}

.chats-box-bottom button:focus {
    outline: none;
}

.chats-box-bottom #add-emoji-btn:hover {
    background: rgba(var(--dead-white), .1);
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

.chats-box-bottom #record-audio-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 0;
    transition: .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(var(--dead-white), 1);
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(var(--dead-white), .2);
    border-radius: 7px;
}

.chats-box-bottom #record-audio-btn:hover {
    background: rgba(var(--dead-white), .1);
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

/*  */
.chats-box-bottom #att-file-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 0;
    transition: .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(var(--dead-white), 1);
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(var(--dead-white), .2);
    border-radius: 7px;
}

.chats-box-bottom #att-file-btn i {
    /* rotacionar */
    transform: rotate(270deg);
}

.chats-box-bottom #att-file-btn:hover {
    background: rgba(var(--dead-white), .1);
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}


/*  */
.chats-box-bottom #send-message-btn:hover {
    background: rgba(var(--secondary-color), 1);
    transition: .2s ease-in-out;
}

.chats-box-input {
    display: flex;
    align-items: end;
}

#chat-message {
    max-height: 7rem;
    overflow-y: auto;
}

.shortcut-send {
    font-size: .6rem;
    color: rgba(var(--dead-white));
    background: rgba(var(--dead-white), .3);
    border-radius: 7px;
    padding: .2rem .5rem;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

#send-message-btn i {
    position: relative;
    /* top: -1px; */
    /* margin-right: .2rem; */
}

#emoji-container {
    /* display: none; */
    position: absolute;
    /* max-width: 1rem !important; */
    /* scale: .7; */
    right: 0;
    bottom: 107%;
    z-index: +9;
}

/* <em-emoji-picker> */
em-emoji-picker {
    border: 2px solid rgba(var(--gray), .2) !important;

}

.custom-input {
    width: 100%;
    padding: 1rem;
    background: rgba(var(--dead-white), .15);
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    resize: none;
    font-weight: 400;
    color: rgba(var(--dead-white));
    border: 1px solid rgba(var(--dead-white), .2);
}

.custom-input::placeholder {
    font-weight: 500;
    color: rgba(var(--dead-white), .6);
}

.custom-input:active,
.custom-input:focus {
    outline: none;
}

.ai-message .message-box {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: .9rem;
    background: rgba(var(--gray));
    color: rgba(var(--dead-white));
    font-weight: 400;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 80%;
}

.user-message .message-box {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: .9rem;
    background: white;
    color: rgba(var(--gray));
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 90%;
}

.user-message {
    width: 100%;
    display: flex;
    justify-content: end;
}

.ai-message {
    display: flex;
}

.ai-message img {
    margin-right: .5rem;
}

.user-message img {
    margin-left: .5rem;
    border: 2px solid rgba(var(--gray), .2);
}

.message img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    transition: .2s ease-in-out;
}

.message img:hover {
    cursor: pointer;
    scale: 1.1;
}

.file-preview-bar {
    display: flex;
    gap: 2px;
    padding: 8px 0 4px 0;
    min-height: 40px;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    top: -3.5rem;
}

.file-preview-thumb {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
    /* border: 2px solid rgba(var(--gray), .15); */
    background: rgba(var(--gray), .07);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .15s;
}

.file-preview-thumb:hover {
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    border-color: rgba(var(--secondary-color), .25);
}

.file-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .15s;
}

.file-preview-thumb img:hover {
    opacity: 0.6;
    transition: opacity .15s;
}

.file-preview-thumb .file-remove-btn {
    position: absolute;
    top: -7px;
    right: -7px;
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--primary-color), 1);
    border-radius: 50%;
    border: 1.5px solid #eee;
    width: 18px;
    height: 18px;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 1px 2px #0001;
    transition: background .15s, color .15s;
}

.file-preview-thumb .file-remove-btn:hover {
    background: #ffe5e5;
    color: rgba(var(--primary-color), 1);
}

.chat-message {
    padding: 1rem;
    border-radius: 20px;
    margin-bottom: .5rem;
    max-width: 70%;
    position: relative;
    word-break: break-word;
    font-size: .9rem;
    width: fit-content;
    line-height: 1.4;
    background: rgba(var(--gray), .07);
    color: rgba(var(--gray), 1);
}

.chat-message p {
    margin-bottom: 0;
}

.chat-message .bx-check:before {
    font-size: 1rem;
    top: -1px;
    position: relative;
}

.enterprise-message {
    margin-left: auto;
    text-align: left;
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
}

.lead-message {
    margin-right: auto;
    text-align: left;
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    font-weight: 500;
}

.chat-message .message-time {
    font-size: .7rem;
    color: rgba(var(--dead-white), .6);
    margin-bottom: 0;
    font-weight: 500;
    width: fit-content;
    min-width: fit-content;
}

.lead-message .message-time {
    color: rgba(var(--gray), .6);
    margin-right: auto;
    font-weight: 500;
    ;
}

.message-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem;
}

.message-sended {
    font-size: .7rem;
    color: rgba(var(--dead-white), .6);
    margin-bottom: 0;
    font-weight: 500;
    width: fit-content;
    margin-right: .5rem;
}

.chat-images-grid {
    display: grid;
    gap: 3px;
    margin-bottom: 6px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.images-count-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.images-count-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.images-count-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.6fr;
}

.images-count-4,
.images-count-5,
.images-count-6,
.images-count-7,
.images-count-8,
.images-count-9,
.images-count-10 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.lead-option-label {
    min-width: fit-content;
}

.chat-images-grid .image-cell {
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    background: #eee;
    border-radius: 16px;
    min-height: 8rem;
}

.images-count-1 .image-cell {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    height: fit-content;
}

.images-count-2 .image-cell {
    height: 140px;
}

.enterprise-message .message-time {
    margin-left: auto;
}

.images-count-3 .image-cell:nth-child(1),
.images-count-3 .image-cell:nth-child(2) {
    height: 110px;
}

.images-count-3 .image-cell:nth-child(3) {
    grid-column: 1 / span 2;
    height: 80px;
}

.images-count-4 .image-cell {
    height: 90px;
}

.chat-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: filter .2s;
}

.chat-images-grid img:hover {
    filter: brightness(.8);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(33, 33, 33);
    padding: 1.5rem;
    border-radius: 40px;
    width: 40rem;
    max-width: 90%;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(8px);
    outline: 2px solid rgba(var(--dead-white), .25);
}

.lg-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 40px;
    /* width: 30rem; */
    min-width: 60vw;
    max-width: 90%;
    height: 80vh;
}

.md-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 40px;
    /* width: 30rem; */
    min-width: 60vw;
    max-width: 70%;
    height: 90vh;
}

.inner-modal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-left {
    width: 60%;
    padding: 2rem;
    padding-left: 3rem;
}

.inner-left .modal-content {
    width: 95%;
}

.inner-right {
    width: 40%;
    height: 100%;
    background: rgba(var(--dead-white));
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 4rem 2rem;
}

.inner-right h2 {
    font-weight: 700;
    color: rgba(var(--dead-white));
    line-height: 100%;
    font-size: 35px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border: 0;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(var(--dead-white), 1);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(var(--dead-white), .6);
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 2rem;
    transition: .2s ease-in-out;
}

.modal-close:hover {
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}


.modal-content {
    display: flex;
    flex-direction: column;
    background: none;
}

.modal .custom-input {
    border: 0 !important;
}

#custom-text::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/* For Firefox */
#custom-text {
    scrollbar-width: none;
}

/* For IE and Edge */
#custom-text {
    -ms-overflow-style: none;
}

#navbar {
    background-color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 5.5rem;
    height: calc(100% - 5.8rem);
    transform: none;
    transition: width 0.3s ease, transform 0.3s ease;
    border-right: 1px solid rgba(var(--dead-white), .2);
}

#navbar.open {
    width: 100%;
    transform: translateX(0);
    border-right: 0;
}

#navbar .nav-btn-text {
    display: none;
}


#navbar.open .nav-btn-text {
    display: block;
}

#navbar.open .navbar-content .nav-btn i {
    margin-right: 1rem !important;
}

.navbar-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-content .nav-btn i {
    margin-right: 0 !important;
}


.navbar-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    max-width: 600px;
    /* height: 100%; */
    max-height: 100%;
    overflow-y: auto;
    /* Esconde a scrollbar em navegadores Webkit */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.navbar-content ul::-webkit-scrollbar {
    display: none;
}

.navbar-content .nav-btn {
    width: 100%;
    height: 100%;
    background: rgba(var(--dead-white), .1);
    color: rgba(var(--dead-white), 1);
    font-size: .9rem;
    padding: .75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out, color .2s ease-in-out;
    border: 0;
    font-weight: 500;
    text-transform: uppercase;
}

#extension-view-details hr {
    border: 1px solid rgba(var(--dead-white), .4);
    opacity: .3;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#extension-view-details .md-input label {
    color: rgba(var(--light-gray), 1);
    font-size: .75rem;
    font-weight: 600;
}

.navbar-content .nav-btn i {
    margin-right: 1rem;
    font-size: 1rem;
    color: rgba(var(--dead-white), .6);
    position: relative;
    top: -1px;
}

.navbar-content .nav-btn:hover {
    background: rgba(var(--dead-white), .2);
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out, color .2s ease-in-out;
}

.navbar-content .nav-btn.active {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    cursor: default;
    /* pointer-events: none; */
    font-weight: 600;
}

#credits-btn {
    width: fit-content;
    margin-left: auto;
    background: none;
    color: rgba(var(--dead-white)) !important;
    font-weight: 500 !important;
}

#credits-btn:hover {
    background: rgba(var(--dead-white), .1) !important;
    opacity: 1 !important;
}

#credits-btn:hover img {
    /* troca a src */
    content: url('../img/credit_selected.svg');
}

#credits-btn img {
    width: 1rem;
    height: 1rem;
    object-fit: cover;
    margin-right: .5rem;
    top: -1px;
    position: relative;
    transition: .2s ease-in-out;
    content: url('../img/credit.svg');
}

#download-btn {
    width: fit-content;
    margin-left: 1rem;
}

.ai-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(var(--dead-white), .2);
    color: rgba(var(--dead-white), 1);
    padding: .25rem .5rem;
    border-radius: 5px;
    font-size: .75rem;
    font-weight: 500;
}

.category-agent-tag {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.navbar-content .nav-btn.active i {
    color: black;
}

.nav-divider {
    color: rgba(var(--light-gray), .6);
    text-transform: uppercase;
    font-size: .8rem;
    /* margin: 0 auto; */
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-weight: 600;
}

.page {
    height: 100%;
    padding: 2rem;
    padding-top: 7.5rem;
    position: relative;
    max-height: 100vh;
    padding-bottom: 2rem;
    width: calc(100% - 5.5rem);
    /* right: 0; */
    /* position: relative; */
    float: right;
}

.back-icon-inner i {
    font-size: .8rem !important;
    position: relative;
    top: -1px;
    opacity: .6;
    margin-right: .25rem;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-size: 1.1rem;
    color: rgba(var(--light-gray), .8);
    font-weight: 500;
}

.extension-card {
    background: rgba(var(--dead-white), .1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    transition: .2s ease-in-out;
}

.extension-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 1rem;
    object-fit: cover;
}

.extension-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-right: 1rem;
    object-fit: cover;
    transition: .2s ease-in-out;
}

#extension-view-details {
    position: relative;
    height: calc(100% - 1rem);
}

#details-extension-name {
    font-size: 1.2rem;
    color: rgba(var(--dead-white), 1);
    font-weight: 600;
    margin-bottom: .2rem;
}

#details-toggle-extension-btn {
    width: fit-content;
}

#details-extension-description {
    font-size: .85rem;
    color: rgba(var(--light-gray), .8);
    font-weight: 400;
}


.action-btn {
    background: none;
    width: fit-content;
    height: 2rem;
    border: 2px solid rgba(var(--dead-white), .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: rgba(var(--dead-white));
    font-size: 1.25rem;
    transition: .2s ease-in-out;
    padding: 0;
    min-width: 2rem;
    font-size: .9rem;
    font-weight: 500;
}

#back-to-extensions-btn {
    padding: .25rem .5rem;
}

.large-action-btn {
    padding: .25rem .5rem;

}

#extension-view-info {
    overflow-y: auto;
    max-height: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

#extension-view-info::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.action-btn:hover {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

.action-btn:hover i {
    color: rgba(var(--gray), 1);
    transition: .2s ease-in-out;
}

.action-btn i {
    font-size: 1.25rem;
    color: rgba(var(--dead-white), 1);
}


.extension-info {
    margin-right: auto;
    margin-left: .5rem;
    margin-top: 2px;
}


.extension-info p {
    margin: 0;
    font-size: .85rem;
    color: rgba(var(--dead-white), .6);
    font-weight: 400;
}

.extension-info h3 {
    margin: 0;
    font-size: 1rem;
    color: rgba(var(--dead-white), 1);
    font-weight: 500;
    margin-bottom: .1rem;
}

.show-extension-btn {
    background: none;
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(var(--dead-white), .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: rgba(var(--dead-white));
    font-size: 1.25rem !important;
    transition: .2s ease-in-out;
    padding: 0;
}

.show-extension-btn:hover {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

.ios-checkbox {
    display: none;
}

.extensions-subpage,
.library-subpage {
    display: none;
}


.ios-checkbox-label {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 22px;
    background-color: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    outline: 2px solid rgba(var(--dead-white), .3);
    /* top: .5rem; */
}

/* Círculo deslizante */
.ios-checkbox-label::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

/* Quando o checkbox está marcado */
.ios-checkbox:checked+.ios-checkbox-label {
    background-color: rgba(var(--primary-color));
    outline: 2px solid rgba(var(--dead-white), .001);
    /* Verde iOS */
}

/* Move o círculo para a direita quando ativado */
.ios-checkbox:checked+.ios-checkbox-label::before {
    transform: translate(18px, -50%);
}

.knowledge-library-card {
    background: rgba(var(--dead-white), .1);
    border-radius: 10px;
    padding: 1rem;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    margin-bottom: 1rem;
    transition: .2s ease-in-out;
}

.knowledge-message-inner {
    background: rgba(var(--dead-white), .1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    transition: .2s ease-in-out;
    width: 100%;
    border: 1px solid rgba(var(--dead-white), .1);
}

.knowledge-info {
    color: rgba(var(--light-gray), .8);
    font-size: .9rem;
    font-weight: 500;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.knowledge-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.knowledge-message-inner .enterprise-message {
    min-width: 50% !important;
    max-width: 100% !important;
    margin-bottom: 0;
}

#library .row {
    overflow-y: auto;
    max-height: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

#library .row::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.library-subpages-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.library-subpages-btns .selected {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    border: 2px solid rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
    font-weight: 600;
}

.library-subpages-btns .selected i {
    color: rgba(var(--gray), 1);
}

.library-doc-content h2 {
    font-size: 1.2rem;
    color: rgba(var(--dead-white), 1);
    font-weight: 600;
    margin-bottom: .5rem;
}

.library-doc-content p {
    font-size: .85rem;
    color: rgba(var(--light-gray), .8);
    font-weight: 400;
    margin-top: 0;
}

textarea {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

textarea::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

#knowledge-textarea {
    border: 1px solid rgba(var(--dead-white), .1) !important;
}

.status-message {
    color: rgba(var(--dead-white)) !important;
    background: rgba(var(--dead-white), .1) !important;
    font-weight: 500 !important;
}

.regular-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.app-header {
    min-height: 93px;
}

.action-title {
    font-size: .9rem;
    color: rgba(var(--dead-white), 1);
    font-weight: 500;
    margin-bottom: 0;
    margin-right: .5rem;
}

.action-subtitle {
    color: rgba(var(--light-gray), .8);
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: .15rem;
}

#quickactions-header-text {
    margin-left: 1rem;
    margin-right: auto;
}

#quickations-btns {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;

}

.quickactions-btns {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 5px;
}

#close-quickaction-btn {
    margin-left: .5rem;
    border: 0;
    background: none;
    color: rgba(var(--dead-white), .6);
    font-size: 1.5rem;
    transition: .2s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#category-quickaction-btn {
    background: rgba(var(--primary-color)) !important;
    color: rgba(var(--dead-white), 1) !important;
    border: 0 !important;
    transition: .2s ease-in-out !important;
}


#category-quickaction-btn:hover {
    background: rgba(var(--secondary-color), 1) !important;
    color: rgba(var(--dead-white), 1) !important;
    transition: .2s ease-in-out !important;
}

#category-quickaction-btn:hover i {
    color: rgba(var(--dead-white), 1) !important;
}

#close-quickaction-btn:hover {
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}

#rest-screen {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.rest-time {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(var(--dead-white), 1);
    margin-bottom: 0;
}

.rest-screen-weather {
    background: rgba(var(--dead-white), .1);
    color: rgba(var(--dead-white), 1);
    border-radius: 40px;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    display: none;
}

.weather-text {
    color: rgba(var(--dead-white), 1);
    font-size: 1.1rem;
    font-weight: 600;
}

.city-name {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(var(--light-gray), .8);
    margin-bottom: 0;
}

.temperature {
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(var(--dead-white), 1);
    margin-right: 1rem;
}

#rest-screen-content {
    width: 90%;
    max-width: 600px;
}

#weather-text {
    margin-right: auto;
}

.rest-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(var(--light-gray), 1);
    margin-bottom: 0;
    margin-top: -.5rem;
}

#rest-screen video {
    max-width: 9rem;
    height: auto;
    margin-bottom: 0 !important;
    margin-right: 0;
    margin-left: auto;
}

.rest-screen-content {
    /* width: 100%; */
    display: flex;
    align-items: center;
    margin-right: auto;
    /* justify-content: center; */
}

.rest-screen-header {
    display: flex;
}

#home-container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-container video {
    width: 15rem;
    height: auto;
    pointer-events: none;
}

#ascii {
    color: rgba(var(--dead-white), 1);
}

#ascii-subtitle {
    color: rgba(var(--dead-white), .6);
    font-size: .8rem;
    font-weight: 500;
    margin-top: .5rem;
}

#home-description {
    margin-top: 2rem;
    /* color: rgba(var(--light-gray)); */
    font-weight: 500;
    margin-bottom: 0;
}

#home-container .row {
    max-width: 600px;
}

/* responsive */

@media (max-width: 768px) {
    #home-container .row {
        scale: .8;
    }
}

#home-container * {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.content-image {
    width: 100%;
    border-radius: 20px;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.content-card:hover .content-image {
    scale: .8;
    transition: .2s ease-in-out;
    filter: blur(8px);
    opacity: .4;
}

.content-card:hover .category-agent-tag {
    opacity: 0;
    transition: opacity .1s ease-in-out;

}

.content-card .category-agent-tag {
    transition: opacity .1s ease-in-out;
    opacity: 1;
    font-size: .7rem;
    width: max-content;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    padding: .5rem 1rem;
}

.ai-tag {
    opacity: 1;
    transition: opacity .2s;
    z-index: 22;
}

.content-card:hover .ai-tag {
    opacity: 0;
}

.content-backdrop {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 0;
}

.content-overlay::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .9) 60%);
}

.content-overlay {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    scale: 1;
}

.content-card-hovered {
    scale: .9;
    opacity: .8;
    transition: .2s ease-in-out;
}

.content-info {
    position: absolute;
    bottom: 1rem;
    padding: 1rem;
    padding-bottom: 0;
    z-index: +2;
}

.content-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(var(--dead-white), 1);
    margin-bottom: 0;
}

.content-info p {
    font-size: .8rem;
    color: rgba(var(--light-gray), .8);
    font-weight: 500;
    margin-top: .2rem;
}

.content-info span {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(var(--dead-white), .6);
    margin-top: 0;
}