body {
    padding-top: 20px;
}

header .share-container {
    float: right;
    line-height: 30px;
    color: #666;
}

header .share-container a {
    color: #666;
}

header .share-container a.share {
    font-size: 30px;
    color: #666;
}

header .share-container span {
    position: relative;
    top: -5px;
    margin-right: 5px;
}

@media (max-width: 991px) {

    header .share-container {
        float: none;
        clear: both;
    }

}

.main-logo {
    width: 94px;
    border-radius: 5px;
}

.logo-container {
    display: table;
}

.logo-container .logo-cell {
    display: table-cell;
    padding: 5px;
    vertical-align: top;
}

@media (max-width: 767px) {

    .main-logo {
        width: 38px;
    }

}

#json-input {
    margin-top: 20px;
    width: 100%;
    height: 500px;
}

#output-content {
    margin-top: 20px;
    height: 500px;
    overflow-y: auto;
    position: relative;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.btn-group {
    margin-top: 20px;
}

.buttons {
    margin-top: 20px;
    text-align: right;
}

#output-content ul {
    list-style-type: none;
}

#output-content > span > ul {
    margin: 0;
    padding: 0;
}

#output-content > span > ul > li {
    padding-inline-start: 40px;
}

#output-content li .key {
    color: #007bff;
}

#output-content li .value.bool {
    color: green;
}

#output-content li .value.string {
    color: #dc3545;
}

#output-content li .value.numeric {
    color: #000;
}

#output-content li .value.null {
    font-style: italic;
}

#output-content li.collapsed ul {
    display: none;
}

#output-content li .dots {
    display: none;
    margin-left: 12px;
}

#output-content li.collapsed .dots {
    display: inline;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

#spinner {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    color: white;
}

#spinner .animation-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#notification-messages .notify-message {
    opacity: 0;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    position: fixed;
    margin-top: 10px;
    transition: top 250ms ease, opacity 250ms ease;
    z-index: 9999;
}

#notification-messages .notify-message.slide-down {
    opacity: 1;
    top: 50px;
}

#notification-messages .notify-message.slide-up {
    opacity: 0;
    top: 0;
}

#copy-text {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0.001;
}

.right-group {
    float: right;
}

footer {
    margin-top: 40px;
    background-color: #f5f5f5;
}

footer > .container {
    height: 40px;
    line-height: 40px;
    text-align: center;
}

footer > .container > * {
    margin-left: 5px;
    margin-right: 5px;
}
