:root {
    --primary: #F28705;
    --inbox : #AE1F24;
    --titon : #14773c;
    --goldacc : #053879;
}
main > .container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}

.garis {
    border: 1px solid red;;
}

.bg-blue-gradient {
    color: #fff;
    background: radial-gradient(ellipse farthest-corner at right bottom, #021631 0%, #032249 8%, #042d62 30%, #053879 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #053879 0%, #064393 8%, #4d88ff 25%, #0a70f5 62.5%, #074eab 100%)
}
.btn-block {
    display: block;
    width: 100%;
}

.tebal{
    box-shadow: 0 0 5px rgb(0 0 0 / 13%), 0 5px 5px rgb(0 0 0 / 20%) !important;
}

/*loading screen*/
    .load {
        position: fixed !important;
        z-index: 1042;
        top: 0;

        height: 100vh;
        width: 100%;
        margin: 0;
        padding: 0;
        background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    }
    .load ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        display: flex;
    }
    .load ul li {
        list-style: none;
        width: 27px;
        height: 27px;
        background: var(--inbox);
        margin: 0 5px;
        border-radius: 50%;
        display: inherit;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: large;
        font-weight: bold;
        animation: animate 1.6s linear infinite;
    }
    @keyframes animate {
        0% {
            transform: translateY(0);
        }
        60% {
            transform: translateY(0);
        }
        80% {
            transform: translateY(-20px);
        }
        100% {
            transform: translateY(0);
        }
    }
    .load ul li:nth-child(1) {
        animation-delay: 0s;
    }
    .load ul li:nth-child(2) {
        animation-delay: -1.4s;
    }
    .load ul li:nth-child(3) {
        animation-delay: -1.2s;
    }
    .load ul li:nth-child(4) {
        animation-delay: -1s;
    }
    .load ul li:nth-child(5) {
        animation-delay: -.8s;
    }
    .load ul li:nth-child(6) {
        animation-delay: -.6s;
    }
/*end loading screen*/