:root {
    --primary: #2563EB;
    --secondary: #00ABBD;
    --tertiary: #72F2EB;
    --success: #0099DD;
    --info: #A1C7E0;
    --warning: #FF9933;
    --danger: #E3371E;
    --bs-primary-border-subtle: red;
    --input-focus-border-color: red;
    --navHeigth: 4rem;
    --bg-color: #f9f9f9;
    --bg-bar-color: #fff;
    --text-color: #202020;
    --text-sweet-color: #808080;
    --border-color: #ebe8e8;
    --navbar-link-color: #cecece;
    --text-light-color: #fff;
    --dropdown-link-color: #282828;
}

.dark-mode:root {
    --bg-color: #282828;
    --bg-bar-color: #202020;
    --text-color: #f9f9f9;
    --border-color: #303030;
    --text-sweet-color: #808080;
    --dropdown-link-color: #cecece;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.login-content{
    width: 340px;
}

.inputs{
    margin: 10px 0;
}

h1, h2{
    font-size: 1.8em;
}

.border-style{
    border-bottom: 1px solid var(--border-color);
}

#app{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
}

.dropdown-item i{
    margin: 5px;
    min-width: 30px;
}

.toast {
    position: fixed;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
}

.table-head{
    padding: 8px 0;
}

.avatar{
    width: 40px;
    height: 40px;
}

.avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.miniatura2{
    width: 80px;
    height: 80px;
}

.miniatura{
    width: 40px;
    height: 40px;
}

.miniatura img, .miniatura2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.dropdown li{
    padding: 3px 0;
}

.modal.fade .modal-dialog {
    transform: scale(.95);
    transition: opacity .2s ease, transform .2s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.toast{
    z-index: 2000;
    background-color: transparent;
    border: none;
}

.toast-body{
    font-size: 1.1em;
    font-weight: 500;
}

#listProducts, #ElistProducts{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}

.list-group-item:hover{
    cursor: pointer;
    background-color: var(--border-color)
}

.badge{
    cursor: pointer;
}

.rounded{
    border-radius: 24px !important;
}

.feature-card{
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.step-number{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: .9rem;
    font-weight: 700;
    color: #d1d5db;
}

.icon-box{
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(25,135,84,.12);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-card h5{
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p{
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.card-title, .card-text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar .nav-link{
    transition: all 0.2s ease;
    color: var(--text-sweet-color);
}

.nav-link:hover{
    color: var(--text-color);
}

.modal-content{
    background-color: var(--bg-color);
}

.btn-primary{
    --bs-btn-bg: #2563EB;
    --bs-btn-border-color: #2563EB;
    --bs-btn-hover-bg: #1f53c4;
    --bs-btn-hover-border-color: #1f53c4;
}

.dropdown-item:active{
    background-color: #2563EB !important;
}

.btn-primary:hover, .btn-primary:active{
    background-color: #1f53c4 !important;
    border-color: #1f53c4 !important;
}

.form-control:focus{
    border-color: #2563EB !important;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #202020;
    -webkit-box-shadow: 0 0 0 1000px var(--bg-bar-color) inset;
    border-color: #2563EB;
}

@media (max-width: 992px){

    .img-format{
        display: none;
    }

}

@media (max-width: 768px){
    .centralizar{
        text-align: center;
    }
}

