body {
  background-color: var(--pkt-color-brand-neutrals-white);
  margin: 0;
  min-width: 320px;
  padding: 0;
}

h1 {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.5em;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 48rem) {
  h1 {
    font-size: 3.375rem;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 1.5;
  }
}
h2 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 48rem) {
  h2 {
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 1.5;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pkt-header {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  background-color: var(--pkt-color-brand-neutrals-white);
  grid-area: header;
  padding: 0.75rem 1.5rem;
  display: grid;
  grid-template-columns: 87px 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  grid-template-areas: "header-logo";
  align-items: center;
}
.pkt-header__logo {
  grid-area: header-logo;
}
.pkt-header__logo-link {
  display: block;
  height: 45px;
}
.pkt-header__logo-link svg {
  height: 100%;
  width: 100%;
}

.page-main {
  padding-top: 70px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 1rem 4rem 1rem;
}

.component {
  background-color: #fff;
  margin-bottom: 40px;
  padding: 10px;
  transition: all 0.3s ease-out;
}

.toolbar {
  border-bottom: 1px solid var(--pkt-color-brand-dark-blue-1000);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 2rem;
  gap: 1rem;
}

@media screen and (min-width: 42rem) {
  .toolbar {
    align-items: center;
    flex-direction: row;
    gap: 2rem;
  }
  .toolbar__item {
    flex: 0 0 auto;
  }
  .toolbar__item:last-child {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
  }
  .toolbar__search {
    max-width: 320px;
  }
}
.file {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.5rem;
  border-bottom: 1px solid var(--pkt-color-grays-gray-100);
  width: 100%;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.file.filtered-out {
  opacity: 0;
  position: absolute;
  visibility: hidden;
  transition: opacity 0s ease-in-out;
  overflow: hidden;
  width: 0;
  height: 0;
}
.file__text {
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  padding: 0.5rem 0;
}
.file__tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin: 0;
}

.pkt-form-input[type="search"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='magnifying-glass-big' fill='none' data-category='ui' viewBox='0 0 32 32'%3E%3Cpath fill='%23808080' d='m30.307 28.782-7.405-7.405A11.946 11.946 0 0 0 25.6 13.8c0-6.627-5.373-12-12-12s-12 5.373-12 12 5.373 12 12 12a11.94 11.94 0 0 0 7.908-2.99l7.385 7.385 1.414-1.413ZM13.6 23.8c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10c0 5.515-4.486 10-10 10Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  background-position: right 1rem center;
  padding-right: 3rem;
}
.pkt-input:is(select):enabled:focus,
.pkt-form-input[type="search"]:focus {
  box-shadow: 0px 0px 0px 4px var(--pkt-color-brand-purple-1000);
  outline: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
