

body{
    overflow-x: hidden !important;
    background-repeat: repeat;
    background-size: auto;
    background-image: url('/img/bg.jpg') ;
}

@media print {
    @page {
        margin-top: 0;
        margin-bottom: 0;
    }
    body {
        padding-top: 72px;
        padding-bottom: 72px ;
    }
}

/* IDs */
#footer{
    position: relative;
    bottom: 0px;
}

#copyright{
    font-size: 10px;
}   

#top-banner{
    word-break: break-all;
}

#banner-text{
    height: max-content;
    margin: 10px 10px;
}


/* Classes */
.card{
    width: 18rem;
    height: 100%;
    margin: 10px 0 auto 10px; 
    float: none;
}

/* tags */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Safari */
    margin: 0;
}


/* loading */
.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.733);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: #1c36cc;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    to {
      transform: rotate(360deg);
    }
}