html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;


}

body {
    /* Background img settings */
    background: url("../img/bg.jpg") no-repeat fixed;
    background-size: 1920px, 1100px;
    background-position: center top;
    background-color: white;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: gray;
}   

.nav-link {
    color: black;
}

.account-panel {
    background-color: white;
    border-width: 1px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
    width: 50%;
    padding: 10px;
    margin: auto;
}

.aod-panel {
    background-color: white;
    border-width: 1px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
    width: 75%;
    padding: 10px;
}

.btn-volume {
    width: 45%;
    vertical-align: middle;
    margin: 25px auto;
    height: 50px;
    background-color: white;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 15px;
    font-family: serif;
    font-size: 25px;
    box-shadow: 5px 10px 10px black;
}

.btn-circle {
    width: 45%;
    vertical-align: middle;
    margin: auto;
    height: 50px;
    background-color: black;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 50px;
    font-size: 25px;
    font-family: sans-serif;
    color: white;
}

.btn-circle:hover {
    color: lightgray;
}

.btn-volume:hover {
    border-color: darkgray;
    color: darkgray;
}


.card-header-dark {
    background-color: black;
    color: white;
}

.terminal {
    background-color: white;
    border: solid;
    border-width: 2px;
    border-color: black;
    padding: 2px;
    padding-left: 3px;
}

.modal-header {
    background-color: darkgrey;
    padding: 3px;
}

.modal-body {
    background-color: black;
    color: white;
    padding: 3px;
    font-size: small;
    height: 225px;
}

#terminal_response {
    color: green;
}

@media all and (max-width: 800px) {
    .mobhide {
        display: none;
    }
    .mob-button-text{
        font-size: 10px;
    }
    .mob-width {
        width:100%;
    }
}
.dots-bars-3 {
    width: 40px;
    height: 26px;
    --c: linear-gradient(currentColor 0 0);
    background: var(--c) 0 100%, var(--c) 50% 100%, var(--c) 100% 100%;
    background-color:white;
    background-size: 8px calc(100% - 4px);
    background-repeat: no-repeat;
    position: relative;
}

    .dots-bars-3:before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: currentColor;
        left: 0;
        top: 0;
        animation: db3-1 1.5s linear infinite alternate, db3-2 0.75s cubic-bezier(0,200,.8,200) infinite;
    }


@keyframes db3-1 {
    100% {
        left: calc(100% - 8px)
    }
}

@keyframes db3-2 {
    100% {
        top: -0.1px
    }
}