body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #E6E6E3;
  padding: 10px 25px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
header svg {
  height: 30px;
  width: 75px;
}

main {
  display: flex;
}

section {
  margin-left: 200px;
  margin-top: 55px;
  padding: 25px;
  width: calc(100% - 600px);
}
section #filter-row {
  display: flex;
}
section #filter-row button {
  background: #E61226;
  border: 1px solid #E61226;
  border-radius: 25px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
  cursor: pointer;
  margin-left: 20px;
  padding: 0 15px;
  position: relative;
  transition: 0.5s;
}
section #filter-row button:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
section #filter-row button#tagButton {
  padding-right: 30px;
}
section #filter-row button#tagButton:after {
  content: "x";
  position: absolute;
  right: 10px;
  top: 0;
}
section .search-bar {
  position: relative;
}
section .search-bar input {
  border: 1px solid #E6E6E3;
  border-radius: 30px;
  padding: 7.5px 5px 7.5px 35px;
  min-width: 500px;
}
section .search-bar svg {
  left: 10px;
  position: absolute;
  top: 6px;
}
section .search-bar svg * {
  stroke: #848182;
  stroke-width: 2;
}
section ul {
  display: flex;
  flex-flow: wrap;
  justify-content: left;
  padding-left: 0;
}
section li {
  list-style-type: none;
  margin: 5px;
  text-align: center;
  width: 100px;
}
section li:hover label {
  border-color: #E61226;
  cursor: pointer;
}
section li label {
  align-content: center;
  border: 2px solid #E6E6E3;
  border-radius: 10px;
  display: block;
  height: 100px;
  position: relative;
}
section li label.active {
  border-color: #E61226;
}
section li input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}
section li input:checked ~ .checkmark {
  background-color: #E61226;
  display: block;
}
section li input:checked ~ .checkmark:after {
  display: block;
}
section li .checkmark {
  background-color: #FFFFFF;
  border: 1px solid #E6E6E3;
  border-radius: 50%;
  display: none;
  height: 17px;
  right: 3px;
  position: absolute;
  top: 3px;
  width: 17px;
}
section li .checkmark:after {
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 9px;
  left: 5px;
  position: absolute;
  top: 1px;
  transform: rotate(45deg);
  width: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
section li img {
  max-height: 50px;
  padding: 25px;
}
section h4 {
  font-weight: normal;
  margin-bottom: 0;
  margin-left: 5px;
  text-transform: uppercase;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.spinner {
  border: 4px solid #E6E6E3;
  border-top: 4px solid #E61226;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

nav, aside {
  background-color: #FDFDFB;
  border: 2px solid #E6E6E3;
  border-top: none;
  height: 100%;
  margin-top: 55px;
  overflow-y: scroll;
  position: fixed;
}

nav {
  border-left: none;
  left: 0;
  padding: 10px 5px;
  width: 200px;
}
nav h3 {
  margin: 0;
}
nav ul {
  margin: 0;
  padding-left: 0;
}
nav li {
  list-style-type: none;
  padding: 5px 25px;
}
nav li:hover {
  cursor: pointer;
}
nav li:before {
  border: 1px solid #848182;
  border-width: 0 0 2px 2px;
  content: "";
  display: inline-block;
  height: 6px;
  margin: 3px 7.5px 3px 0;
  margin-right: 7.5px;
  vertical-align: bottom;
  width: 6px;
}
nav li:first-of-type {
  font-weight: bold;
}
nav li:first-of-type:before {
  border: none;
}
nav li.active {
  background-color: #E61226;
  border-radius: 5px;
  color: #FFFFFF;
}
nav li.active:before {
  border-color: #FFFFFF;
}

aside {
  border-right: none;
  height: -webkit-fill-available;
  padding: 0;
  right: 0;
  text-align: center;
  width: 350px;
}
aside .title {
  border-bottom: 2px solid #E6E6E3;
  font-weight: bold;
}
aside #svgContainer {
  background-color: #F5F5F5;
  padding: 25px;
}
aside #svgContainer.grayBg {
  background-color: #848182;
}
aside #svgContainer svg {
  height: 256px;
  max-width: 256px;
}
aside p {
  padding: 0 25px;
  text-align: left;
}
aside #downloadButton {
  background-color: #E61226;
  border: 1px solid #E61226;
  color: #FFFFFF;
  display: block;
  padding: 15px;
  text-decoration: none;
  width: 100%;
}
aside #downloadButton .icon {
  display: inline-block;
  font-size: 25px;
  transform: rotate(90deg);
  vertical-align: sub;
}
aside #downloadButton .text {
  font-weight: bold;
}
aside #downloadButton:hover {
  cursor: pointer;
}
aside #downloadButton.inactive {
  background-color: #F5F5F5;
  border-color: #FFFFFF;
  pointer-events: none;
}
aside .settings {
  display: flex;
}
aside .settings #reset {
  color: #848182;
  margin-left: 7.5px;
  padding-top: 15px;
}
aside .settings #reset:hover {
  cursor: pointer;
  color: #000000;
}
aside .settings .icon {
  display: inline-block;
  font-size: 10.5px;
  transform: rotate(180deg);
}
aside .settings .text {
  font-size: 13px;
  margin-left: 5px;
}
aside .colorButtons, aside .sizeButtons, aside .typeButtons {
  display: flex;
  flex-flow: wrap;
  padding: 0 25px;
}
aside .colorButtons div, aside .colorButtons input, aside .sizeButtons div, aside .sizeButtons input, aside .typeButtons div, aside .typeButtons input {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  cursor: pointer;
  height: 25px;
  margin-right: 10px;
}
aside .colorButtons div:hover, aside .colorButtons input:hover, aside .sizeButtons div:hover, aside .sizeButtons input:hover, aside .typeButtons div:hover, aside .typeButtons input:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
aside .colorButtons {
  padding: 0 25px 50px;
}
aside .colorButtons div {
  width: 25px;
}
aside .sizeButtons div {
  margin-bottom: 15px;
  padding: 5px 15px;
  width: 45px;
}
aside .sizeButtons div.active {
  border-color: #E61226;
}
aside .typeButtons {
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  margin: 0 25px;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
aside .typeButtons div {
  background-color: #F5F5F5;
  border-color: transparent;
  margin-right: 0;
  padding: 5px 35px;
}
aside .typeButtons div.active {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  font-weight: bold;
}
aside .tags {
  border-top: 2px solid #E6E6E3;
  text-align: left;
}
aside .tags div {
  display: flex;
  flex-flow: wrap;
  margin-left: 25px;
  margin-top: 40px;
  text-transform: capitalize;
}
aside .tags span {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 10px 15px 15px;
  text-transform: capitalize;
}
aside .tags span:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}/*# sourceMappingURL=app.css.map */