:root {
    --primary-color:  #27adb3;
}
body {
    padding-top: 55px;
    background-color: #fff !important;
}

.pagination {
    float: right;
}

.text-primary {
    color: var(--primary-color) !important;
}

#app header .navbar.top-nav {
    height: 55px;
    border-bottom: 1px solid #e8e8e8;
}
.navbar.top-nav .app-brand {
    line-height: 1.2;
    font-size: 1.1em;
}

.top-nav ul li.active{
    border-bottom: 2px solid var(--primary-color);
}

.top-nav ul li:not(.button) {
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 700;
    font-family: sans-serif;
}

.top-nav ul li.button a{
    border-width: 2px !important;
    border-color: gray !important;
    margin-left: 1.3em;
}

/* Top cards */
.top-cards .card {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 10px;
    min-height: 80px;
}

.top-cards .card-title{
    font-weight: bold;
    font-size: 1.5em;
}
.top-cards .card-number {
    margin-top: 0.3em;
    font-size: 2.5em;
    color: gray;
}

.v-error {
    background-color: white;
    color: rgb(245, 100, 100);
    font-size: 13px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.go-to-top-link {
    position: fixed;
    bottom: 100px;
    right: 50px;

    /* color: #404041; */

}

.v-input__control {
    height: 50px !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: grey;
}

@media(max-width: 992px) {
    #app header .navbar.top-nav {
        height: inherit;
    }
    .top-nav ul li.button a{
        margin-left: 0;
    }
}


@media(max-width: 718px) {
    .top-card {
        font-size: 9px;
    }

    .card-number {
        font-size: 12px
    }
}

@media(max-width: 600px) {
    .card {
        min-height: 60px !important;
    }
}



@media(max-width: 400px) {
    .top-card {
        font-size: 7px;
    }
    .card-number {
        font-size: 10px;
    }
}

@media(min-width: 600px) {
    .parent {
        margin: 0 100px;
    }
}

@media(max-width: 1000px) {
  .hide-for-sm {
    display: none;
  }
}
