@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

:root {
    --badge-bg-pd: rgb(231, 231, 231);
    --badge-text-pd: rgb(29, 29, 29);
}

html { height: -webkit-fill-available; }

h1,
h2,
h3,
h4,
h5,
h6 { font-family: 'Poppins', cursive; }

.main-header { background-color: #6F151F; }

.content-wrapper { background-color: #f5f4fc;min-height: calc(100vh - 227px); }

.main-sidebar { background-color: #043959; }

.scrollarea { overflow-y: auto; }

.fw-semibold { font-weight: 600; }

.lh-tight { line-height: 1.25; }

.form-user {
    margin: auto;
    margin-top: 200px;
    width: 500px;
}

.btn-primary {
    border-color: #20173d;
    border-radius: 50px;
    padding: 9px;
    color: blue;
    background: none;
}


.btn-primary:hover {
    background-color: none;
    border-color: none;
}

.btn-warning {
    border-color: #6F151F;
    border-radius: 50px;
    padding: 9px;
    color: red;
    background: none;
}
.btn-warning:hover {
    background-color: #4d0f16;
    border-color: #4d0f16;
    color: #eee;
}

.main-footer { background-color: #c3c9cd; }

.form {
    position: relative;
    float: left;
    
}

.form .fa-search{
    position: absolute;
    top: 13px;
    left: 15px;
    color: #f5f4fc;
}

.input-search {
    border-radius: 50px;
    border: none;
    padding: 4px;
    width: 100%;
    background-color:  #c00502;
    padding-left: 40px;
    padding-right: 100px;
    margin-right: 20px;
    margin: 5px;
}

.input-search::placeholder {
    font-size: 0.9em;
    color: mintcream;
}

div.divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 2px solid #e9ecef;
}

.label-product-field {
    color: #043959;
    font-family: Poppins;
}

.meu-card{
    background-color: #d0d4d6;
    border-radius: 5px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: left;
    font-size: 0.9em;
    margin-bottom: 3px;
}

.custom-table {
    border-radius: 8px;
}

.custom-table > thead {
    color: white;
    background-color:#043959;
}

.custom-tag-p{
    font-family: Poppins;
    color: #850c0b;
    padding-top: 5px;
}

.icon-svg{
    width: 35px;
    height: 35px;

}

.name-icon{
    margin-left: 5px !important;
    padding-top: 10px !important;
   
}

.badge-status {
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
}
.badge-status.status-pd {
    background-color: var(--badge-bg-pd);
    color: var(--badge-text-pd);
}

.has-cart::before {
    background-color: greenyellow;
    border-radius: 50%;
    content: "";
    height: 12px;
    position: absolute;
    top: 0;
    left: 50px;
    width: 12px;

    animation: vibration 0.5s infinite linear;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

/* Keyframes */
@keyframes vibration {
    0% { transform: translateX(0); }
    10% { transform: translateX(-1px); }
    10% { transform: translateX(1px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50% { transform: translateX(-1px); }
    60% { transform: translateX(0); }
    100% { transform: translateX(0); }
}