@font-face {
    font-family: 'Lovelo Black';
    src: url("../fonts/lovelo.otf") format("opentype");
}

.body-login {
    background-repeat:no-repeat;
    background-position: center center;
    background-image:url(../img/background.png);
    min-height:100%;
    background-size: cover;
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    padding: 1.4rem 1.4rem 0.5rem 1.4rem;
    background: rgba(255,255,255,0.9);
    border-radius: 1rem;
}

.content-container {
    width: 100%;
    margin-top: 1rem;
}

.label-home {
    color: #000;
}

@media screen and (max-width: 680px) {
    .content {
        width: 100%;
    }

    .content-container {
        width: 80%;
        margin-left: 10%;
    }
}

.error-message {
    background-color: #F1B3B3;
    border: 1px solid #9D0F0F;
    border-radius: 5px;
}

.ok-message {
    background-color: #D1F3B9;
    border: 1px solid #458814;
    border-radius: 5px;
}

.list-item {
    background-color: #EFF5F4;
    border: 1px solid #62A490;
    border-radius: 5px;
    padding: 2px;
}

.list-item:hover {
    background-color: #BFE0CB;
    cursor: pointer;
}

.text-forgot {
    color: #00b1d4;
    font-size: 0.9rem;
}

.text-forgot:hover {
    color: #0064aa;
}

/* The message box is shown when the user clicks on the password field */
#message-password {
    background: #dadada;
    color: #000;
    position: relative;
    padding: 0.3rem 0.6rem;
    margin-top: 1rem;
}
  
#message-password p {
    padding: 0rem 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0;
}

#message-password h6 {
    margin-bottom: 0.2rem;
}

.valid {
    color: green;
}
  
.valid:before {
    position: relative;
    left: -0.5rem;
    content: "\2713";
}
  
.invalid {
    color: red;
}
  
.invalid:before {
    position: relative;
    left: -0.5rem;
    content: "\2715";
}

#message-repeat {
    font-size: 0.9rem;
}

.navbar {
    border-bottom: 3px solid #434041;
}

#navbar-menu {
    padding: 0;
    background: linear-gradient(0deg, #ccc, white 80%) no-repeat;
}

.nav-link {
    color: #5a430f !important;
}

.lista {
    border: 1px solid #0064aa;
    border-radius: 5px;
}

.item-lista-claro {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
}

.item-lista-blanco {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.btn-confirm {
    background-color: #0064aa !important;
    color: #fff !important;
}

.btn-confirm:hover {
    background-color: #00b1d4 !important;
    color: #fff !important;
}

.seller-item {
    cursor: pointer;
}

.seller-item:hover {
    background-color: #b0cacf;
}

.calendar-item {
    cursor: pointer;
}

.calendar-item:hover {
    background-color: #b0cacf;
}

.calendar-day {
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.calendar-day:hover {
    background-color: #eee;
}

.delete-icon {
    cursor: pointer;
}



@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}