
body {
    background: url('/img/bg-gray.jpg');
}

#container {
    padding-bottom: 80px;
}

header .nav {
    margin-top: 10px;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #202020;
    transition: .3s;
}

.nav-link.active {
    background-color: #FECC00!important;
    border: 0;
    color: #202020!important;
    outline: none;
}

.nav-link:hover {
    background-color: #FECC00!important;
    border: 0;
    color: #202020!important;
    outline: none;
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #FECC00;
    border: 0;
    color: #202020;
    font-size: 18px;
    outline: none;
    transition: .3s;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #FECC00!important;
    color: #202020!important;
    transform: translateY(-3px);
}

.btn-danger {
    background-color: rgb(255, 91, 91);
    border: 0;
    color: #fff;
    font-size: 18px;
    outline: none;
    transition: .3s;
}

.btn-danger:hover, .btn-danger:active, .btn-danger:focus {
    background-color: #ec5454!important;
    color: #fff!important;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 0;
    transition: .3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

#login-err {
    display: none;
}

.ticket {
    background-color: #fff;
    border: 1px solid #202020;
    border-radius: 3px;
    padding: 1rem;
    box-shadow: 0 0 15px #d1d1d1;
}

.ticket h5 span {
    background-color: #FECC00;
    border-radius: 10px;
    color: #202020;
    display: inline-block;
    font-size: 16px;
    padding: 2px 10px 5px 10px;
}

.ticket p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

.ticket-details {
    line-height: 30px;
    font-style: italic;
}

.ticket-details > span {
    font-style: normal!important;
    margin-right: 10px;
}

.red {
    color: red;
}

#loader {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

#loader span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side,#FECC00 90%,#0000);
    background:
            var(--_g) 0%   50%,
            var(--_g) 50%  50%,
            var(--_g) 100% 50%;
    background-size: calc(100%/3) 100%;
    animation: l7 1s infinite linear;
}
@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

.categories {
    background-color: #fff;
    border: 1px solid #202020;
    border-radius: 3px;
    padding: 1rem;
    box-shadow: 0 0 15px #d1d1d1;
    margin:20px 0;
}

.categories .col-lg-4 {
    padding:5px;
}

.category {
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    min-height: 100px;
    transition: .3s;
}

.category:hover {
    box-shadow: 0 0 15px #d1d1d1;
    cursor: pointer;
    transform: translateY(-3px);
}

.category img {
    margin: 8px 15px;
    display: block;
    width: 70px;
}

.category span {
    margin:5px;
    font-size:13px;
    padding:5px;
}

.category a {
    color: rgb(33, 37, 41);
    text-decoration: none;
    font-weight: 500;
}