@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: #000;
}

body{
    margin:0;
    padding:0;
    background-color: rgba(255, 255, 255, 1);
}


.skeleton{
    background: linear-gradient(90deg, #eeeeee 25%, #dddddd 50%, #eeeeee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer{
    0%{
        background-position: -200% 0;
    }
    100%{
        background-position: 200% 0;
    }
}

#app-content{
    visibility: hidden;
}

/*-------------Home Logado------------------*/

.profile-placeholder{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #78767B;
}

.background-grey{
    background-color: #EDEDED;
}

@media (max-width:1024px){
    .header-right{
        gap: 10px;
    }

    .header-right .input-search{
        width: 180px;
    }

    .sub-header{
        width: 100%;
        padding-left: 50px;
        text-align: center;
        height: auto;
    }
}

@media(max-width:768px){
    header{
        margin-top: 20px;
    }

    .header-left{
        padding: 0px 0px 0px 0px;
    }

    .header-right{
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .header-right .input-search{
        padding-left:50px;
    }

    .header-login{
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .sub-header{
        margin-top: 50px;
        padding: 15px;
        text-align: center;
    }
}

@media (max-width:600px){
    header{
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }

    .header-left{
        padding: 0;
        margin-bottom: 15px;
    }

    .header-right{
        flex-direction: column;
        width: auto;
        gap: 10px;
        padding: 0;
    }

    .search-container{
        width: 100%;
    }

    .header-right .input-search{
        width: 100%;
        box-sizing: border-box;
    }

    .header-login{
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .sub-header{
        margin-top: 125px;
        padding: 15px;
        text-align: center;
    }

    .sub-header h2{
        font-size: 1rem;
        margin: 0 auto;
    }

    .sub-header p{
        font-size: 1rem;
        margin: 0 auto;
    }

}