body {
    background-color: rgb(0, 0, 0);
    font-family: 'Roboto Condensed', sans-serif;
    transform-origin: top center;
    zoom: 85%;
}


* {
    border-radius: 0px !important;
}

#myCanvas {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 500px;
}

#info_box {
    background-color: rgb(0, 0, 66);
}

.form-inline {
    width: 700px;
}

.title {
    font-family: 'Raleway';
    font-size: 30pt;
    margin-top: 10px;
}

/* Top buttons */
.centered-buttons {
    display: flex;
    justify-content: center;
}

.centered-buttons > button {
    margin: 0 5px;
}

.line {
    border-bottom: 1px solid #333;
    height: 1px;
    display: block;
    width: 100%;
    margin: 10px 0;
}

/* Kill bootstrap padding */
.row>* {
    padding: 0 !important;
}

.planet-info-box {
    padding: 0 20px !important;
    font-size: 14pt;
    font-weight: 300;
}

.text-primary {
    color: #75cbff !important;
}

/* Buttons */
button {
    background-color: black;
    border: 1px solid #777;
    color: white;
    transition: color 0.2s, background-color 0.2s;
}

button:hover {
    background-color: white;
    color: black;
}

input[type="text"] {
    background-color: transparent;
    border: 1px solid #777;
    color: #ccc;
}

input[type="text"]:focus {
    background-color: transparent;
    border: 1px solid white;
    box-shadow: none;
    color: white;
}

#canvas-container {
    position: relative;
}

.card-img{
    object-fit: cover;
    background-color: transparent;
    height: 350px;
    width: auto;
    border-radius: 4px !important;
}

.card {
    border: none;
    background-color: transparent !important;
}

#search-autocomplete {
    position: absolute;
    top: 38px;
    width: 100%;
    background-color: #111;
    transition: background-color 0.2s;
    color: #ccc;
    display: block;

    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

#search-autocomplete > li {
    padding: 10px;
}

#search-autocomplete > li:hover {
    background-color: #222;
    cursor: pointer;
}

.tab {
    color: #777;
}

.tab-select {
    background-color: white;
    color: black;
}

.logo {
    height: 40pt;
    position: relative;
    top: -4px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo.spin {
    animation: spin 1s infinite;
}

/* Loading */
.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.9);
}

.centered-loading {
    position: fixed;
    left: 50%;
    height: 200px;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#loading-indicator {
    height: 50px;
    width: 50px;
    border: 2px solid white;
    border-top: 2px solid #222;
    border-radius: 50% !important;
    animation: spin 1s infinite linear;
    margin: 15px auto;
}


::-webkit-scrollbar {
    width: 4px;
    height: 2px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

::-webkit-scrollbar-thumb:active {
    background: #000000;
}

::-webkit-scrollbar-track {
    background: #666666;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: #666666;
}

::-webkit-scrollbar-track:active {
    background: #333333;
}

::-webkit-scrollbar-corner {
    background: transparent;
}