@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url(//stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --col-white: #ffffff;
  --col-black: #000000;
  --col-1: #222B30;
  --col-2: #EEC551;
  --col-3: #1C2B33;
  --col-4: #D0D0D0;
  --col-5: #9E9E9E;
  --col-6: #5480AA;
  --col-7: #1C1C1C;
  --colpal-1: #277BC0;
  --colpal-2: #47B5FF;
  --colpal-3: #D62976;
  --colpal-r: #a94442;
  --colpal-r-light: #f2dede;
  --colpal-g: #3c763d;
  --colpal-g-light: #dff0d8;
  --colpal-b: #31708f;
  --colpal-b-light: #d9edf7;
  --colpal-y: #8a6d3b;
  --colpal-y-light: #fcf8e3;
  --col-bg: #F5F6F8;
  --bg-white: #ffffff;
  --bg-black: #000000;
}

html {
  font-family: "Proxima Nova", sans-serif;
  color: var(--col-1);
  background-color: var(--col-bg);
}

body {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
}
body a {
  text-decoration: none;
  color: var(--colpal-1);
}
body ul {
  list-style: none;
}
body img {
  display: block;
  max-width: 100%;
}

header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
}
header .wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
}
@media (max-width: 500px) {
  header .wrap {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
}
header .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.9rem;
}
header .left a:hover {
  text-decoration: underline;
}
header .left i {
  font-family: FontAwesome;
}
header .left i:before {
  content: "\f105";
}
@media (max-width: 500px) {
  header .left {
    display: block;
    text-align: center;
    order: 1;
  }
  header .left i {
    margin: 0 5px;
    line-height: 1.5;
  }
}
header .right {
  -moz-columns: 1;
       columns: 1;
  display: flex;
  gap: 10px;
}
header .right ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .right ul li a,
header .right ul li label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: var(--col-5);
}
header .right ul li a:hover,
header .right ul li label:hover {
  color: var(--col-2);
}
header .right ul li[title=Home] {
  font-size: 1.2rem;
}
header .right .src {
  gap: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
header .right .src input {
  border: none;
  outline: none;
  width: 120px;
}
header .right .src label {
  font-size: 0.9rem;
}

main#Drive .wrap {
  padding: 20px;
}
main#Drive .items .item {
  position: relative;
}
main#Drive .items .item a {
  color: inherit;
}
main#Drive .items .item .act {
  position: absolute;
  top: 15px;
  right: 15px;
}
main#Drive .items .item .act label {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--col-4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
  border-radius: 3px;
}
main#Drive .items .item .act label:hover {
  color: var(--col-2);
}
main#Drive .items .item .act .opt {
  position: absolute;
  top: 0;
  right: calc(100% + 5px);
  z-index: 2;
  background: #fff;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
main#Drive .items .item .act .opt a {
  display: block;
  padding: 7px 13px;
  white-space: nowrap;
}
main#Drive .items .item .act .opt a:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
main#Drive .items .item .act:not(.active) .opt {
  display: none;
}
main#Drive .items .info {
  display: none;
  gap: 15px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: default;
}
main#Drive .items .info:hover {
  color: var(--col-1);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
main#Drive .page img {
  margin: auto;
}
main#Drive [data-view=small] .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
main#Drive [data-view=small] .small {
  display: flex;
}
main#Drive [data-view=large] .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
main#Drive [data-view=large] .large {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 5px;
  text-align: center;
  font-size: 0.9rem;
}
main#Drive [data-view=list] .items {
  display: grid;
  gap: 20px;
}
main#Drive [data-view=list] .list {
  display: flex;
}
main#Drive [data-item=publishers] .large,
main#Drive [data-item=issues] .large {
  align-items: unset;
}
main#Drive [data-item=publishers] .large img,
main#Drive [data-item=issues] .large img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
main#Drive [data-item=comics] .large {
  grid-template-rows: auto 1fr;
}
main#Drive [data-item=comics] + .pagin {
  margin-top: 30px;
}
main#Drive [data-item=comics] + .pagin ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
main#Drive [data-item=comics] + .pagin ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: default;
}
main#Drive [data-item=comics] + .pagin ul li:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
main#Drive [data-item=comics] + .pagin ul li.active {
  border: 1px solid rgba(0, 0, 0, 0.5);
}
main#Login section {
  max-width: 300px;
  margin: 40px auto;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
main#Login section h3 {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
main#Login section ul {
  display: grid;
  gap: 10px;
  padding: 15px;
}
main#Login section ul input,
main#Login section ul button {
  display: block;
  padding: 8px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
main#Login section ul button {
  cursor: pointer;
}
main#Login section ul button:hover {
  color: var(--col-2);
}/*# sourceMappingURL=style.css.map */