*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
}

body {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
    width: 10px; /* ширина для вертикального скролла */
    height: 10px; /* высота для горизонтального скролла */
    background-color: #143861;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background-color: #843465;
    border-radius: 9em;
    box-shadow: inset 1px 1px 10px #f3faf7;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #253861;
}

::-webkit-scrollbar-corner {
    background-color: #02141a;
}

/* Стрелки */

::-webkit-scrollbar-button:vertical:start:decrement {
    background: linear-gradient(120deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
    linear-gradient(240deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
    linear-gradient(0deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

::-webkit-scrollbar-button:vertical:end:increment {
    background:
        linear-gradient(300deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(60deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(180deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
    background:
        linear-gradient(30deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(150deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(270deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

::-webkit-scrollbar-button:horizontal:end:increment {
    background:
        linear-gradient(210deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(330deg, #02141a 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(90deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

.content-box {
    width: 100%;
    height: 100%;
}

.input, .response {
    float: left;
    height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
}

.input {
    display: block;
    width: 75%;
    background: #10131c;
    color: white;
    padding: 10px;
}

.response {
    width: 25%;
    display: block;
}

.input-group-prepend > span, .input-group > input, .input-group > input:focus, .cusInput, .cusInput:focus {
    background: #1e202b;
    color: white;
    border: 1px solid #ffffff73;
    box-shadow: unset;
}

.cusInput {
    margin-top: 5px;
}

.noselect {
    user-select: none;
}

hr {
  border: 1px solid #ffffff38;
}

.status-code {
    background-color: black;
    padding: 4px;
    border-bottom: 1px solid #ffffff2b;
    color: white;
    display: flex;
}

.status-code-text {
    display: block;
}

.circle {
    margin: 5px 4px 0 4px;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    display: block;
}

.red-circle {
    background-color: red;
}

.green-circle {
    background-color: green;
}

.yellow-circle {
    background-color: yellow;
}

.pre-json-key {
    color: #01a252;
}

pre {
	background-color: #000;
    border: unset;
	width: 100%;
    height: 100%;
	margin: 0;
	padding: 8px;
	white-space: pre-wrap;
    color: white;
    font-size: 15px;
    max-height: calc(100vh - 81px);
    overflow: scroll;
}

.pre-json-value {
    color: #a16a94;
}

.pre-json-string {
    color: #fded02;
}

.response-timestamp {
    background: black;
    color: #cdab53;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
}

.input-btn-block {
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}

.input-btn-block > button {
    margin: 0 10px;
}

svg {
    width: 18px;
    vertical-align: sub;
    margin-right: 6px;
    transition: .15s ease-in-out;
}

.btn-outline-primary > svg {
    fill: #007bff;
}

.btn-outline-info > svg {
    fill: #17a2b8;
}

.btn-outline-success > svg {
    fill: #28a745;
}

.btn-outline-danger > svg {
    fill: #dc3545;
}

.btn-outline-primary:hover:enabled svg, .btn-outline-info:hover:enabled svg, .btn-outline-success:hover:enabled svg, .btn-outline-danger:hover:enabled svg {
    fill: white;
}

.radio-query-params > label {
    padding: 0.3em 0.45em;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.radio-post {
    background-color: #95b653 !important;
    color: black !important;
}

.radio-json {
    background-color: #bab263 !important;
    color: black !important;
}

.table-g {
    display: block;
    margin-left: 10%;
    overflow-y: scroll;
    overflow-x: auto;
    max-height: 95%;
    height: 100%;
}

.table-header {
    display: flex;
    width: calc(80% - 44px);
}

.table-header > div {
    display: flex;
    width: 50%;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.table-values {
    width: 80%;
    padding: 2px;
}

.params {
    display: flex;
}

.get-params {
    width: 50%;
}

.post-params {
    width: 50%;
}

.table-values > h3 {
    color: white;
    margin-top: -2px;
}

.table-values > button {
    width: 43px;
    margin-left: 2px;
    height: 38px;
}

.json-input {
    background: black;
    letter-spacing: .2px;
    font-size: 15px;
    line-height: 15px;
    padding: 6px;
    height: 100%;
    max-height: 95%;
    margin-top: 1%;
    overflow: auto;
    outline: unset;
    white-space: nowrap;
    width: 100%;
    border: unset;
    resize: none;
    color: white;
}

.json-parse-error {
    border: 1px solid red;
    box-shadow: 0px 0px 10px 4px red;
    padding: 5px !important;
}

[contenteditable][placeholder]:empty:before {
  content: attr(placeholder);
  position: absolute;
  color: gray;
  background-color: transparent;
}

.modal-content {
    background-color: #1e202b;
    color: white;
}

.close {
    color: white;
}

.close:hover {
    color: antiquewhite;
}

.modal-header, .modal-footer {
    border-color: #44474e;
}

.table-hover > tbody > tr {
    cursor: pointer;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 24px;
}

.lds-ellipsis div {
    position: absolute;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    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(24px, 0);
    }
}