@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;
}

/* color variables */
:root {
    --primary-color: 242, 49, 50;
    --green: 23, 207, 118;
    --secondary-color: 214, 41, 42;
    --gray: 51, 51, 51;
    --dead-white: 231, 233, 234;
    --secondary-gray: 20, 20, 20;
    --third-gray: 102, 102, 102;
    --yellow: 255, 177, 51;
    --dark-gray: 24, 24, 27;
}

.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: 3rem;
    left: 3rem;
}

#login-form-logo {
    width: 10rem;
}

#login-img,
#register-img {
    width: 100%;
    height: calc(100vh - 2rem);
    object-fit: cover;
    display: flex;
    align-items: center;
    border-radius: 40px;
}

#register-img::after {
    /* gradient */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--primary-color), 1) 0%, rgba(var(--secondary-color), 1) 100%);
    opacity: .8;
    border-radius: 40px;
}

.login-form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    text-align: left;

}

.login-form-wrapper .login-form-container {
    margin: 0 auto;
    width: 80%;
    max-width: 690px;
}

.lg-title {
    color: rgba(var(--gray), 1);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.md-title {
    color: rgba(var(--gray), 1);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
}

#login-form,
#register-form {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#register-form label {
    display: none;
}

.md-input {
    display: grid;
    text-align: left;
    margin-bottom: 1rem;
}

.md-input input:disabled,
.md-input textarea:disabled {
    opacity: .6;
    background: rgba(var(--gray), .4);
    cursor: not-allowed;
    transition: .3s 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,
.md-input textarea {
    background: rgba(var(--dead-white), 1);
    padding: 1rem 1.5rem;
    border: 0;
    border-radius: 15px;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(var(--gray), 1);
    resize: none;
    width: 100%;
}

.md-input input[autocompleted],
.md-input textarea[autocompleted] {
    background: rgba(var(--dead-white), 1) !important;
    background-color: rgba(var(--dead-white), 1) !important;
    animation-name: unset !important;
    box-shadow: unset !important;
    -webkit-box-shadow: unset !important;
}

.md-input input::placeholder,
.md-input textarea::placeholder {
    color: rgba(var(--gray), 0.4);
    font-size: 1rem;
}

.md-input input:focus,
.md-input textarea:focus {
    outline: 2px solid rgba(var(--gray), .3);
}

.custom-btn {
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.small-btn {
    border-radius: 7px;
    padding: .5rem 1rem;
    font-size: 14px !important;
    text-transform: none;
    font-weight: 500;
    border: 0;
    transition: .3s ease-in-out;
}

.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;
}

.primary-btn:disabled:hover {
    background: rgba(var(--gray), 1) !important;
    color: rgba(var(--dead-white), 1) !important;
    cursor: not-allowed !important;
    opacity: .6;
}

.primary-btn {
    color: rgba(var(--dead-white), 1);
    font-size: 1rem;
    background: rgba(var(--primary-color), 1);
}

.primary-btn:hover {
    background: rgba(var(--secondary-color), 1);
    transition: .3s ease-in-out;
}

.gray-btn {
    color: rgba(var(--gray), 1);
    background: rgba(var(--dead-white), 1);
    font-weight: 600 !important;
    transition: .3s ease-in-out;
}

.gray-btn:hover {
    background: rgba(var(--gray), .2);
    color: rgba(var(--gray), 1);
    transition: .3s ease-in-out;
}


.black-btn {
    color: rgba(var(--dead-white), 1);
    font-size: 1rem;
    background: rgba(var(--gray), 1);
}

.black-btn:hover {
    background: rgba(var(--gray), .8);
    transition: .3s ease-in-out;
}

.white-btn {
    color: rgba(var(--gray), 1);
    font-size: 1rem;
    background: rgba(var(--dead-white), 1);
    font-weight: 700 !important;
}

.white-btn:hover {
    opacity: .8;
    transition: .3s 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: .3s 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 15vw;
}

#app .app-header {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    z-index: +99;
    position: relative;
}


.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;
}

.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);
}

.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.3s 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.3s ease-in-out;
}

.task-period-header i {
    opacity: .6;
    transition: transform 0.3s 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.3s 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.3s ease-in-out;
    background-color: transparent;
    cursor: pointer;
    padding-right: 1rem;
    transition: .3s ease-in-out;
}

.task-item:hover {
    background-color: rgba(var(--gray), 0.1);
    border-radius: 7px;
    transition: 0.3s 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: .3s 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: .3s ease-in-out;
}

.reminder-item.active .reminder-tag {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--gray), 1);
    font-weight: 700 !important;
    transition: .3s ease-in-out;
}

.task-time {
    margin-left: 1rem;
    font-size: 14px;
    font-weight: 600;
}

.task-count {
    margin-left: 0;
    opacity: .6;
}

#task-list-container {
    max-height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    height: 42vh;
    /* margin-top: 1rem; */
}

#task-list-container::-webkit-scrollbar {
    width: 0;
    /* Remove a largura da barra no Webkit */
    background: transparent;
    /* Torna a scrollbar invisível */
}

#task-list-container::-webkit-scrollbar-thumb {
    background: transparent;
    /* Remove o thumb (parte rolável) */
}

#task-list-container::-webkit-scrollbar-track {
    background: transparent;
    /* Remove o track (fundo da barra) */
}

.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: .3s 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;
}

label[for="register-terms"],
label[for="remember-me"] {
    position: relative;
    top: -4px;
    left: 0;
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: rgba(var(--gray));
    font-weight: 500;
    display: inline-block !important;
}

label[for="register-terms"] a,
label[for="remember-me"] a {
    color: rgba(var(--primary-color), 1);
}

.input-with-icon {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}

.input-with-icon input {
    width: 100%;
    padding-left: 3rem;
}

.input-with-icon i {
    position: absolute;
    left: 1.15rem;
    font-size: 1.25rem;
    color: rgba(var(--gray), .4);

}

/* Container do checkbox */
.custom-checkbox {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    /* margin-right: 8px; */
    transition: .3s ease-in-out;
    width: fit-content;
    /* top: 3px; */
    /* left: -1rem; */
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* 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;
    top: -2px !important;
    left: -2px !important;
    border: 2px solid rgba(var(--gray), .3);
    background-color: white;
    border-radius: 5px;
    transition: border 0s, .3s 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: .3s 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: .3s ease-in-out;
}

.task-item.selected .custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
    border-color: rgba(var(--gray), 1);
    transition: .3s ease-in-out;
}

/* Para exibir um ícone "tick" dentro do checkmark */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    top: 45%;
    left: 50%;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) 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 {
    animation: rotate 1s linear infinite;
}

#logout-btn {
    min-width: 150px;
    text-transform: uppercase;
}

#notifications-login {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

#notifications-app {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.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);
    font-weight: 600;
    transition: .3s ease-in-out;
}

.bordered-btn:hover {
    background: rgba(var(--gray), .2);
    transition: .3s ease-in-out;
}

.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: .3s ease-in-out;
    background: rgba(var(--gray), 1);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    animation: 0.3s ease-in-out;
    margin-top: .5rem;
}

#app-filter-btn-icon {
    transition: .3s ease-in-out;
}

.app-rows {
    transition: .3s ease-in-out;
}


.disabled-box {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .2 !important;
    transition: .3s 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;
}

#register-form .md-input {
    margin-bottom: 0;
}

#register-form {
    margin-bottom: 0 !important;
}

.password-strength-container {
    position: absolute;
    width: 90%;
    /* margin: 0 auto; */
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

#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: .3s 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, .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    font-size: .875rem;
}

.filter-remove-btn:hover {
    opacity: .6;
    transition: .3s 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: .3s ease-in-out;
}

.filter-item.active .custom-checkbox .checkmark::after {
    border-color: rgba(var(--gray), 1) !important;
    transition: .3s 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.3s 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);
    }
}

#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.3s ease-in-out;
    background-color: transparent;
    cursor: pointer;
    padding-right: 1rem;
    transition: .3s ease-in-out;
}

.reminder-item:hover {
    background-color: rgba(var(--dead-white), 0.1);
    border-radius: 7px;
    transition: 0.3s 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, .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    font-size: .875rem;
    margin-left: 1rem;
}

.task-item .task-delete-btn:hover {
    opacity: .6;
    transition: .3s 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, .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    font-size: .875rem;
}

.reminder-item .reminder-delete-btn:hover {
    opacity: .6;
    transition: .3s 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: .3s ease-in-out;
}

.reminder-item.active .custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
    border-color: rgba(var(--gray), 1) !important;
    transition: .3s 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.3s, color 0.3s;
}

.theme-toggle button i {
    font-size: 1.25rem;
}

.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.3s 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: rgba(var(--primary-color), 1);
    z-index: +100;
    transition: .3s ease-in-out;
}

#loading-screen img {
    width: 20rem;
    height: auto;
    animation: pulse 2s infinite;
}

.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: .3s 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: .3s ease-in-out;
    border: 0;
    opacity: .2;
}

.close-task:hover {
    opacity: .6;
    transition: .3s 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: .3s ease-in-out;
    border: 0;
}

#task-icon-btn:hover,
#reminder-icon-btn:hover {
    opacity: .6;
    transition: .3s 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: .3s 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: .3s ease-in-out;
}

#reminder-editor .task-info-btn:hover {
    opacity: .6;
    transition: .3s ease-in-out;
}

#task-editor .task-info-btn {
    transition: .3s ease-in-out;
}

#task-editor .task-info-btn:hover {
    opacity: .6;
    transition: .3s 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: .3s 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: .3s 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: .3s 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: .3s 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-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    color: rgba(var(--dead-white), 1);
    z-index: +1;
    padding: 2rem;
    padding-right: 0;
    margin-bottom: 2rem;
}

.login-img-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.login-img-overlay p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: .6;
    max-width: 80%;
}

/* custom input checkbox */
.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 8px;
    transition: .3s ease-in-out;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(var(--gray), .3);
    background-color: white;
    border-radius: 5px;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(var(--primary-color), 1);
    border-radius: 5px;
    display: none;
}

.custom-checkbox input[type="checkbox"]:checked~.checkmark {
    display: block;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
    display: block;
}

.delete-invoice-btn:hover,
.edit-invoice-btn:hover {
    background: rgba(var(--dead-white), .2);
    transition: .3s ease-in-out;
}

#invoice-options-list li {
    display: grid;
}