/* IMPORTS */
@import url("./glpyhs.css");
@import url("./header.css");
@import url("./body.css");
@import url("./table.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

/* RESETS */
body,
html {
  margin: 0;
}
iframe {
  width: 98%;
  height: 480px;
  margin: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

/* GLOBALS */
body,
html {
  height: 100%;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #f5f5f5;
}

.full-size {
  height: 100%;
  width: 100%;
}

.full-height {
  height: 100%;
}

.full-width {
  width: 100%;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row.centered {
  justify-content: center;
}

.flex-row.middle {
  align-items: center;
}

.flex-row.space-between {
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column.centered {
  align-items: center;
}

.flex-column.middle {
  justify-content: center;
}

.flex-column.space-between {
  justify-content: space-between;
}

.container {
  margin: 0 auto;
}

form .segment {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 15px;
  padding-right: 15px;
}

form label {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.input {
  font-size: inherit;
  font-family: inherit;
  width: calc(100% - 24px - 2px);
  padding: 6px 12px;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.button {
  background-color: #fff;
  font-size: inherit;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
}

.button:hover {
  background-color: #e6e6e6;
  border-color: #adadad;
}

.button.primary {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #fff;
}

.button.primary:hover {
  background-color: #449d44;
  border-color: #398439;
}

.btn-group > .button:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .button:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group > .button:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .button:not(:first-child) {
  margin-left: -1px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

pre {
  white-space: pre-line;
  word-break: break-word;
}

.show-http-details {
  cursor: pointer;
  text-decoration: none;
  color: #0898ff;
}
