:root {
  --bg-color: #17171b;
  --nav-bg-color: #111213;
  --txt-color: #e3e7e6;
  --marked-txt-color: #4d4dff;
  --success-color: #4caf50;
  --success-color-hover: #3c8c40;
  --danger-color: #f30000;
  --danger-color-hover: #c20000;
  --warning-color: #e7b51e;
  --warning-color-hover: #cfa21b;
  --main-color: #00f;
  --main-color-hover: #00c;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-color);
  text-align: center;
  color: var(--txt-color);
  margin: 0;
}
.full-content {
  min-height: calc(100vh - 95px);
  margin-bottom: 20px;
}
.content {
  padding-right: 5%;
  padding-left: 5%;
}
.wrap {
  word-wrap: break-word;
}
a {
  color: #4287f5;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}
.mark {
  color: var(--marked-txt-color);
}
.bx {
  vertical-align: middle;
}
.avatar {
  border-radius: 50%;
  border: 1px solid var(--txt-color);
  width: 200px;
  height: 200px;
}
.flexbox-container {
  padding: 3px;
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap;
}
.flexbox-container .flexbox-item {
  margin: 5px;
}
.error {
  color: var(--danger-color);
  margin-right: 10%;
  margin-left: 10%;
}
.footer {
  margin-bottom: 5px;
}
.container {
  padding: 2px 16px;
}
.full {
  width: 95%;
  text-align: left;
}
@media only screen and (min-width: 1000px) {
  .fill {
    min-width: 600px;
  }
}
.green {
  color: var(--success-color);
}
.red {
  color: var(--danger-color);
}
.blue {
  color: var(--main-color);
}
.yellow {
  color: var(--warning-color);
}
.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  transition: all 0.5s;
  min-width: 25%;
  color: var(--txt-color);
  text-decoration: none;
  padding: 14px 20px;
  margin: 10px 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
}
@media only screen and (min-width: 1000px) {
  .btn {
    width: 15%;
  }
}
.btn-success {
  background-color: var(--success-color);
}
.btn-success:hover {
  background-color: var(--success-color-hover);
}
.btn-danger {
  background-color: var(--danger-color);
}
.btn-danger:hover {
  background-color: var(--danger-color-hover);
}
.btn-warning {
  background-color: var(--warning-color);
}
.btn-warning:hover {
  background-color: var(--warning-color-hover);
}
.btn-main {
  background-color: var(--main-color);
}
.btn-main:hover {
  background-color: var(--main-color-hover);
}
nav a {
  color: #e3e7e6;
}
.navigation {
  background-color: #111213;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  text-align: initial;
}
.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #111213;
}
.navigation li a {
  display: block;
  padding: 20px;
  text-decoration: none;
}
.btn-animation {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.btn-animation:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-bottom: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-animation:active:before,
.btn-animation:focus:before,
.btn-animation:hover:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 7px;
}
.logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
}
.logo {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.logo:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #00f;
  height: 7px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.logo:hover {
  text-decoration: none;
}
.logo:active:before,
.logo:focus:before,
.logo:hover:before {
  right: 0;
}
.navigation .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.navigation .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
.navigation .menu-icon .nav-icon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.navigation .menu-icon .nav-icon:after,
.navigation .menu-icon .nav-icon:before {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.navigation .menu-icon .nav-icon:before {
  top: 5px;
}
.navigation .menu-icon .nav-icon:after {
  top: -5px;
}
.navigation .btn-menu {
  display: none;
}
.navigation .btn-menu:checked ~ .menu {
  max-height: 500px;
}
.navigation .btn-menu:checked ~ .menu-icon .nav-icon {
  background: 0 0;
}
.navigation .btn-menu:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
}
.navigation .btn-menu:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
}
.navigation .btn-menu:checked ~ .menu-icon:not(.steps) .nav-icon:after,
.navigation .btn-menu:checked ~ .menu-icon:not(.steps) .nav-icon:before {
  top: 0;
}
.bd-red:before {
  border-color: red;
}
.bd-blue:before {
  border-color: #00f;
}
@media only screen and (min-width: 1000px) {
  .navigation li {
    float: left;
  }
  .navigation li a {
    padding: 20px 30px;
  }
  .navigation .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .navigation .menu-icon {
    display: none;
  }
  .dropdown {
    float: left;
    overflow: hidden;
  }
  .dropdown-content {
    margin-top: 55px;
  }
}
@media only screen and (max-width: 1000px) {
  .dropdown-content {
    width: 90%;
    border: 1px solid gray;
  }
}
.dropdown .btn-dropdown {
  font-family: inherit;
  margin: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111213;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content li {
  float: none;
  text-decoration: none;
  display: block;
  text-align: left;
  clear: both;
}
.dropdown:hover .dropdown-content {
  display: block;
}
table {
  border: 1px solid gray;
  border-collapse: collapse;
  width: 98%;
  table-layout: fixed;
  background-color: #242427;
  text-align: center;
}
table caption {
  font-size: 24px;
  margin: 8px 0 12px;
}
table tr {
  border: 1px solid gray;
  padding: 5.6px;
}
table td,
table th {
  padding: 10px;
  text-align: center;
}
table th {
  font-size: 13.6px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  table {
    border: 0;
    min-width: 95%;
    width: auto;
  }
  table caption {
    font-size: 20.8px;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    border-bottom: 3px solid gray;
    display: block;
    margin-bottom: 10px;
  }
  table td {
    border-bottom: 1px solid gray;
    display: block;
    font-size: 12.8px;
    text-align: right;
    padding: 10px;
  }
  table td div {
    position: relative;
    left: 10%;
    margin: 0;
  }
  table td:before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    text-transform: uppercase;
  }
  table td:last-child {
    border-bottom: 0;
  }
}
input[type="text"],
optgroup,
select,
textarea {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #d2d2d2;
}
label {
  max-width: 80%;
  padding: 2px 20px;
  margin: 3px;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
}
