*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #212226;
}

a {
  color: white;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}

.grid.full {
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

.grid.half {
  -ms-grid-columns: calc(100% / 2 - 12px) calc(100% / 2 - 12px);
      grid-template-columns: calc(100% / 2 - 12px) calc(100% / 2 - 12px);
}

.grid.third {
  -ms-grid-columns: calc(100% / 3 - 16px) calc(100% / 3 - 16px) calc(100% / 3 - 16px);
      grid-template-columns: calc(100% / 3 - 16px) calc(100% / 3 - 16px) calc(100% / 3 - 16px);
}

.grid.quarter {
  -ms-grid-columns: calc(100% / 4 - 18px) calc(100% / 4 - 18px) calc(100% / 4 - 18px) calc(100% / 4 - 18px);
      grid-template-columns: calc(100% / 4 - 18px) calc(100% / 4 - 18px) calc(100% / 4 - 18px) calc(100% / 4 - 18px);
}

.close-button, .delete-button {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.75);
  color: black;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.delete-button {
  background: rgba(255, 0, 0, 0.25);
  top: initial;
  bottom: 10px;
  font-size: 16px;
  color: white;
}

.cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-top: 53px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.column.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item {
  background-color: #1E4040;
  border: 1px solid #255954;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item.broken {
  border: 1px solid rgba(255, 0, 0, 0.25);
}

.item.add-new a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.item.add-new a .item-plus {
  font-size: 72px;
  line-height: 36px;
  margin-top: 15px;
}

.item.add-new a .item-add {
  font-weight: bold;
  font-size: 16px;
}

.header {
  background-color: #212226;
  border-bottom: 3px solid #1E4040;
  position: relative;
}

.header a {
  text-decoration: none;
}

.padding-5 {
  padding: 5px;
}

.padding-10 {
  padding: 10px;
}

.padding-25 {
  padding: 25px;
}

.title {
  font-size: 28px;
  font-weight: bold;
}

.title.center {
  text-align: center;
}

.count {
  font-size: 72px;
  font-weight: bold;
  text-align: center;
}

.count .caption {
  font-size: 16px;
  font-weight: normal;
}

.modal {
  display: none;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.modal-active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
}

.no-event {
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}

.broken {
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
  background: rgba(255, 0, 0, 0.25);
}

@media only screen and (max-width: 600px) {
  .grid.responsive {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}

body {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #f5f5f5;
}

.btn {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #71D99E;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #71D99E;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn.full {
  width: 100%;
}

.btn:hover {
  background-color: #71D99E;
  color: #212226;
}

.skill-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(100% / 3 - 48px / 3) calc(100% / 3 - 48px / 3) calc(100% / 3 - 48px / 3);
      grid-template-columns: calc(100% / 3 - 48px / 3) calc(100% / 3 - 48px / 3) calc(100% / 3 - 48px / 3);
  gap: 24px;
  padding: 24px;
}

.skill-container .skill {
  background: #222;
  border: 1px solid #111;
  color: #ddd;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.skill-container .skill.add-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 150px;
}

.skill-container .skill.add-new a {
  text-decoration: none;
  text-align: center;
}

.skill-container .skill.add-new .skill-plus {
  display: block;
  font-size: 48px;
  color: white;
  text-decoration: none;
}

.skill-container .skill.add-new .skill-add {
  display: block;
  font-size: 24px;
  color: white;
  text-decoration: none;
}

.skill-container .skill img {
  width: 100%;
  display: block;
}

.skill-container .skill .skill-info {
  padding: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.skill-container .skill .skill-info h2, .skill-container .skill .skill-info p {
  color: #ddd;
}

.skill-container .skill .skill-info p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.skill-container .skill .skill-info hr {
  margin: 15px 0;
}

.skill-container .skill .skill-info .level-container {
  text-align: center;
  padding: 5px 0;
  border: 1px solid #111;
  position: relative;
}

.skill-container .skill .skill-info .level-container .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #007500;
  z-index: 0;
}

.skill-container .skill .skill-info .level-container span, .skill-container .skill .skill-info .level-container input {
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  color: #ddd;
  border: 0;
  background: none;
  display: inline-block;
  width: 50px;
}

.form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form {
  padding: 24px;
  background-color: #212226;
  border: 3px solid #1E4040;
  border-radius: 10px;
}

.form input[type=submit] {
  margin-top: 15px;
}

.form h1 {
  margin-bottom: 15px;
}

.form .message {
  width: 100%;
  text-align: center;
  padding: 5px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 16px;
}

.form .message.success {
  background-color: #71D99E;
  border: 1px solid #1E4040;
  color: #1E4040;
}

.form .message.warning {
  background-color: #dac072;
  border: 1px solid #3d3210;
  color: #3d3210;
}

.form .message.danger {
  background-color: #da7272;
  border: 1px solid #3d1010;
  color: #3d1010;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 12px;
}

.input-group.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.input-group.row input {
  margin-left: 5px;
}

.input-group label {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 3px;
}

.input-group input, .input-group select, .input-group textarea {
  font-size: 16px;
  padding: 10px;
  background: #212226;
  border: 1px solid;
  border-radius: 5px;
  color: white;
  border: 1px solid #1E4040;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border: 1px solid #1E4040;
  outline: 3px solid #255954;
}
/*# sourceMappingURL=main.css.map */