.panel {
  background: rgba(29, 27, 65, 0.6);
  border-radius: 4px;
  display: flex;
  flex-direction: column; }
  .panel > .header {
    color: #fdfdfd;
    font-size: 17px;
    padding: 7px 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between; }
  .panel > .body {
    color: #c6c4c4;
    padding: 7px 15px;
    flex: 1;
    overflow: auto; }

.ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: auto; }
  .ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
            animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
    .ripple div:nth-child(2) {
      -webkit-animation-delay: -0.5s;
              animation-delay: -0.5s; }

@-webkit-keyframes ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0; } }

@keyframes ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0; } }

.version {
  color: #9b979c;
  padding: 1px 4px;
  border-radius: 4px; }
  .version--valid {
    color: #28a745; }
  .version--invalid {
    color: #e8506b; }

.tooltip {
  display: inline-block;
  position: relative; }
  .tooltip .tooltip__element {
    position: absolute;
    left: calc(100% + 6px);
    top: 0;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    transform-origin: top left; }

.outdated {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
  cursor: pointer; }
  .outdated .tooltip {
    margin-right: 4px; }
  .outdated .outdated-pending {
    display: flex;
    align-items: center; }

.tag {
  display: inline-block;
  background: #6c757d;
  padding: 2px 4px;
  margin: 2px;
  border-radius: 2px;
  white-space: nowrap; }

.modal {
  background: #17a2b8;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition-timing-function: ease-in-out;
  -webkit-clip-path: circle(0% at 0% 0%);
          clip-path: circle(0% at 0% 0%);
  padding: 20px;
  display: flex;
  flex-direction: column; }
  .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .modal__content {
    overflow: auto;
    flex: 1; }
  .modal .close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer; }
    .modal .close:hover {
      opacity: 1; }
    .modal .close:before, .modal .close:after {
      position: absolute;
      left: 15px;
      content: ' ';
      height: 33px;
      width: 2px;
      background-color: #333; }
    .modal .close:before {
      transform: rotate(45deg); }
    .modal .close:after {
      transform: rotate(-45deg); }

.project-resume {
  display: flex;
  justify-content: space-between;
  height: 100%; }
  .project-resume__content {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-right: 20px; }
  .project-resume__sidebar {
    width: 25%; }
    .project-resume__sidebar > * {
      height: 100%; }

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 100%;
  height: 100vh; }

.projects > * {
  margin: 10px; }

body {
  font-family: 'Verdana', sans-serif; }

a {
  color: #e1e1e1;
  cursor: pointer; }

a:visited {
  color: #e1e1e1; }

.bold {
  font-weight: bold; }

.table {
  border-radius: 4px;
  overflow: auto; }
  .table table {
    width: 100%;
    border-spacing: 0;
    background: #FFF; }
    .table table th {
      height: 30px;
      background: #1e5171;
      color: #FFF; }
    .table table tr:nth-child(even) {
      background: #f8f6ff; }
    .table table td {
      color: #808080;
      height: 24px;
      padding: 0 14px;
      margin: 0; }

* {
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #216e93, #21648a, #1f5881, #172d5b, #191c51);
  min-height: 100vh; }

.full-screen-input {
  background: rgba(59, 63, 69, 0.95); }
  .full-screen-input__wrapper {
    width: 65%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column; }
  .full-screen-input__head {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column; }
  .full-screen-input__label {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px; }
  .full-screen-input input {
    -webkit-appearance: none;
    outline: none;
    display: block;
    margin: 0;
    padding: 0 0 0.15em;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    color: #fffed8;
    text-overflow: ellipsis;
    font-weight: bold;
    font-size: 3em;
    border-radius: 0; }

.full-screen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex; }
  .full-screen > * {
    flex: 1; }

.project-item {
  display: flex;
  justify-content: space-between;
  min-height: 28px; }
  .project-item__name {
    flex: 1; }
  .project-item__tags {
    white-space: nowrap; }
  .project-item__link {
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center; }

.suggested-version {
  font-size: 0.6rem; }
  .suggested-version .version {
    color: #696969; }

.body {
  position: relative; }
  .body .packages-searcher p {
    margin: 0; }
  .body .packages-searcher .ripple {
    margin-top: 35px; }
  .body .packages-searcher input::-webkit-input-placeholder {
    color: #c6c4c4; }
  .body .packages-searcher input::-moz-placeholder {
    color: #c6c4c4; }
  .body .packages-searcher input:-ms-input-placeholder {
    color: #c6c4c4; }
  .body .packages-searcher input::-ms-input-placeholder {
    color: #c6c4c4; }
  .body .packages-searcher input::placeholder {
    color: #c6c4c4; }
  .body .packages-searcher input {
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    top: 7px;
    height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    color: #c6c4c4;
    background-color: transparent;
    border: 1px #c6c4c4 solid;
    border-radius: 8px;
    outline: none;
    font-size: 16px; }
  .body .packages-searcher .showed-packages-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    top: 30px;
    background-color: #1e3c61;
    width: 80%;
    border: 1px solid #c6c4c4;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top: none; }
    .body .packages-searcher .showed-packages-container .package-divider {
      height: 1px;
      background-color: #c6c4c4;
      display: block;
      border-radius: 5px; }
    .body .packages-searcher .showed-packages-container p {
      margin: 5px 0;
      cursor: pointer; }
  .body .packages-searcher .projects-container {
    margin-top: 35px; }
    .body .packages-searcher .projects-container .project-item {
      cursor: pointer; }

