@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}


a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    background-image: url(../assets/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 60px;
    background-attachment:fixed;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color:white;
    line-height: 60px; /* Vertically center the text there */
}

/*mine*/
.title {
    text-align: center;
    font-size: 2rem;
    padding:5px;
}

.header {
    font-size: 1.5rem;
    padding: 5px;
}


.main-button {
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background: #22a7f0;
    transition: 0.5s;
    height:50px;
    width:auto;
}

    .main-button:hover {
        background: #2574a9;
    }

    .main-button:active {
        background: #22a7f0;
    }

.help-button:hover {
    color: #22a7f0 !important;
}

.status {
    padding: 10px;
    border: 5px none none;
    border-radius: 30px;
}

.status-color-none {
    background-color: rgba(191, 191, 191,0.7);
}

.status-color-pending {
    
    background-color: rgba(52, 152, 219, 0.7);
}

.status-color-normal {
    background-color: rgba(63, 195, 128, 0.7);
}

.status-color-abnormal {
    background-color: rgba(245, 171, 53, 0.7);
} 

.status-color-carrier {
    background-color: rgba(204, 191, 153, 0.7);
}

.legend {
    text-align: left;
    padding: 15px;
    border: 5px solid none;
    border-radius: 30px;
    margin: 10px;
}

.transparent-wrapper {
    background-color: rgba(232, 236, 241, 0.7);
    padding: 20px;
    border: 5px solid none;
    border-radius: 30px;
    max-width:800px;
}

.font-weight-semibold {
    font-weight:600;
}