* {
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 50px 0 0 0;
  font-size: 16px;
  background: #f4f4f4;
  overflow-y: scroll; }
  body.notification-banner {
    margin: calc(50px + 30px) 0 0; }

footer {
  padding: 100px 0;
  background: #dbdbdb; }
  footer ul {
    list-style: none;
    padding: 0; }

img {
  max-width: 100%; }

a {
  text-decoration: none;
  color: #4d0851; }

h1 {
  line-height: 1; }

h1.has-subtitle, h2.has-subtitle, h3.has-subtitle, h4.has-subtitle, h5.has-subtitle, h6.has-subtitle {
  margin-bottom: 10px; }

h1.subtitle, h2.subtitle, h3.subtitle, h4.subtitle, h5.subtitle, h6.subtitle {
  margin-top: 0; }

h5 {
  margin: 1em 0 0 0;
  text-transform: uppercase;
  color: #666665;
  letter-spacing: 1px; }

p a {
  border-bottom: 1px solid #4d0851; }

button, input {
  -webkit-appearance: none; }

input[type=checkbox] {
  -webkit-appearance: checkbox; }

input[type=radio] {
  -webkit-appearance: radio; }

input[type=text], input[type=password], input[type=email] {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1em;
  margin: 0 0 10px 0;
  width: 100%;
  background: white; }
  input[type=text]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder {
    line-height: normal !important; }

button[type=submit] {
  width: 100%;
  margin-top: 20px;
  /*
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 1em;
  border: 0px;
  text-transform: uppercase;
  */ }

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 1em;
  font-family: inherit; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
.hidden {
  display: none; }

.visually-hidden {
  display: none !important; }

.slick-list, .slick-slide:focus {
  outline: none; }

.flex-1 {
  flex: 1; }

.flex-2 {
  flex: 2; }

.flex-3 {
  flex: 3; }

.flex-4 {
  flex: 4; }

.flex-5 {
  flex: 5; }

.flex-6 {
  flex: 6; }

.flex-7 {
  flex: 7; }

.flex-8 {
  flex: 8; }

.flex-9 {
  flex: 9; }

.flex-row {
  display: flex; }

.flex-row-small {
  max-width: 500px; }

@media screen and (max-width: 768px) {
  .flex-row-responsive {
    flex-direction: column; } }

@media screen and (max-width: 768px) {
  .flex-row-mobile-reverse {
    flex-direction: column-reverse; } }

@media screen and (max-width: 430px) {
  .flex-row-responsive-mobile {
    flex-direction: column; } }

.flex-v-center {
  align-self: center; }

.flex-h-center {
  justify-content: center; }

/*-----utility-------*/
.text-center {
  text-align: center; }

/*----icons-----*/
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor; }

.has-dropdown {
  position: relative;
  cursor: pointer; }
  .has-dropdown:hover .dropdown {
    display: block; }
  .has-dropdown .dropdown {
    position: absolute;
    display: none; }

.card {
  box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 0;
  border-radius: 8px;
  padding: 10px;
  background: white; }
  .card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .4s opacity;
    z-index: -1; }
  .card:hover:after {
    opacity: 1; }

nav.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background: #4d0851;
  display: flex;
  justify-content: space-between;
  color: white;
  z-index: 2;
  border-top: 2px solid #4d0851;
  border-bottom: 2px solid #210323; }
  nav.header > div > ul > li > a .icon {
    margin: 0 0px 0 10px; }
    nav.header > div > ul > li > a .icon.icon-masa-logo {
      margin: 0 10px; }
  nav.header a {
    color: white;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px; }
  nav.header ul {
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 1em; }
    nav.header ul li {
      line-height: 1;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      /*
      > ul {
      	display: none;
      	position: absolute;
      	top:100%;
      	left:0;
      	background: #aaa;
      	width: auto;
      	min-width: 200px;
      	height: auto;
      	border-top:2px solid #666;
      	li {
      		display: block;
      		a {
      			padding: 15px 30px 15px 20px;
      		}
      	}
      }
      */ }
      nav.header ul li.has-megamenu {
        position: initial; }
        nav.header ul li.has-megamenu:hover > div.megamenu {
          display: block; }
      nav.header ul li div.megamenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.99);
        color: #4d0851;
        padding: 20px;
        width: 100%;
        text-transform: none;
        border-top: 2px solid #4d0851;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); }
        nav.header ul li div.megamenu.active {
          display: block; }
        nav.header ul li div.megamenu a {
          color: #4d0851;
          padding: 0; }
        nav.header ul li div.megamenu .mega-content {
          padding: 0 0 50px;
          line-height: 1.5; }
          nav.header ul li div.megamenu .mega-content a {
            display: inline; }
        nav.header ul li div.megamenu .mega-list {
          padding: 0 20px 20px; }
          nav.header ul li div.megamenu .mega-list h4 {
            border-bottom: 1px solid #4d0851;
            margin: 0 0 20px;
            padding: 0 0 5px; }
          nav.header ul li div.megamenu .mega-list .icon {
            margin-right: 5px; }
          nav.header ul li div.megamenu .mega-list ul {
            display: block;
            text-transform: none; }
            nav.header ul li div.megamenu .mega-list ul.multi-column {
              columns: 2;
              -webkit-columns: 2;
              -moz-columns: 2; }
              nav.header ul li div.megamenu .mega-list ul.multi-column li {
                display: inline-block;
                width: 100%; }
            nav.header ul li div.megamenu .mega-list ul li {
              display: block; }
              nav.header ul li div.megamenu .mega-list ul li a {
                color: #4d0851;
                padding: 5px; }
                nav.header ul li div.megamenu .mega-list ul li a:hover {
                  color: white; }
      nav.header ul li:hover > a {
        background: #210323; }
      nav.header ul li:hover ul {
        display: block; }
  nav.header #menu-label {
    font-size: .8em;
    opacity: .8;
    padding-right: 4px; }
  nav.header .mobile-menu-button {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 10px; }
    nav.header .mobile-menu-button .hamburger-line {
      display: block;
      width: 30px;
      height: 3px;
      margin-bottom: 4px;
      background: white; }
      nav.header .mobile-menu-button .hamburger-line:last-child {
        margin-bottom: 0px; }
  @media screen and (max-width: 430px) {
    nav.header #branding-link {
      font-size: 20px; }
      nav.header #branding-link a {
        padding: 0 0 0 10px; }
        nav.header #branding-link a span {
          display: none; } }

.mobile-menu {
  z-index: 2;
  position: fixed;
  top: 50px;
  background: white;
  width: 100%;
  height: 100%;
  padding: 20px 20px 50px;
  display: none;
  overflow-y: scroll; }
  .mobile-menu ul.mobile-links {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    margin: 0 -4px; }
    .mobile-menu ul.mobile-links li {
      flex: 1;
      padding: 0 4px; }
    .mobile-menu ul.mobile-links a {
      display: block;
      border: 1px solid black;
      height: 100%;
      padding: 10px;
      border-radius: 4px; }
  .mobile-menu ul.city-list {
    margin: 0;
    padding: 0;
    list-style: none; }
    .mobile-menu ul.city-list li a {
      width: 100%;
      border-bottom: 1px solid #ccc;
      display: block;
      padding: 20px 0; }

.container {
  width: 1000px;
  max-width: 95%;
  margin: 0 auto; }
  .container.text-page {
    width: 800px;
    overflow: hidden;
    margin: 50px auto 0; }

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.home-hero-new {
  padding: 0 0 50px; }
  .home-hero-new .content {
    max-width: 90%;
    margin: 0 auto; }
    .home-hero-new .content h1 {
      font-size: 3em; }
    .home-hero-new .content p {
      font-size: 1.5em; }
  .home-hero-new .hero-app-frame {
    position: absolute;
    width: 200px;
    top: 20%;
    left: 10%;
    z-index: 1; }
  .home-hero-new .hero-faded-image {
    min-height: 400px;
    -webkit-mask: linear-gradient(to top, transparent 10%, #fff 90% 100%, transparent); }
  @media screen and (max-width: 768px) {
    .home-hero-new .hero-faded-image {
      min-height: auto; }
    .home-hero-new .hero-app-frame {
      width: 100px;
      right: 10%;
      left: auto; } }

.home-hero {
  background-image: url("../images/home_hero.jpg");
  background-color: #eee;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  text-align: center;
  align-items: center;
  box-shadow: 0px -8px 50px 0px rgba(0, 0, 0, 0.5) inset; }
  .home-hero h1 {
    color: white;
    text-shadow: 1px 1px 0px #666;
    font-size: 40px; }

.hero-text {
  width: 600px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 0; }
  .hero-text p {
    font-size: 20px; }

.mini-thumb-list {
  display: flex;
  padding: 0;
  list-style: none;
  overflow-x: scroll; }
  .mini-thumb-list li {
    background: white;
    margin: 10px;
    width: 25%;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 0; }
    .mini-thumb-list li:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: .4s opacity;
      z-index: -1; }
    .mini-thumb-list li:hover:after {
      opacity: 1; }
    .mini-thumb-list li a {
      display: block;
      overflow: hidden;
      border-radius: 4px; }
  .mini-thumb-list .cover img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block; }
  .mini-thumb-list .mini-thumb-info {
    padding: 10px 15px; }

.gallery-header {
  width: 100%;
  padding: 15px 0 10px;
  text-align: center; }
  .gallery-header h2, .gallery-header h3 {
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
    padding: 0 10px; }
  .gallery-header h3 {
    display: inline;
    font-size: .75em;
    display: inline-block; }
  .gallery-header span {
    font-size: .75em; }

img:not([src]), img[src=""] {
  visibility: hidden; }

.lazy-image-container {
  display: block;
  position: relative;
  height: 0;
  background-size: cover; }
  .lazy-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.list-works {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  align-items: flex-start;
  margin: 0; }
  .list-works li {
    display: inline-block;
    width: 100%;
    padding: 5px;
    position: relative;
    transition: all .2s; }
    .list-works li.removed {
      opacity: .5; }
    .list-works li > img {
      display: block;
      min-height: 150px;
      width: 100%; }
    .list-works li:hover {
      opacity: .9; }
    .list-works li .info {
      position: relative;
      background: white;
      display: flex;
      border-bottom: 2px solid #eee;
      border-left: 2px solid #eee;
      border-right: 2px solid #eee;
      border-radius: 0 0 4px 4px;
      font-size: 1em;
      justify-content: space-between;
      align-items: center; }
      .list-works li .info div {
        display: inline;
        height: 100%;
        display: flex;
        align-items: center; }
      .list-works li .info .insta-icon img {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        opacity: .5; }
      .list-works li .info .left a, .list-works li .info .left span, .list-works li .info .right a, .list-works li .info .right span {
        padding: 10px;
        width: 100%; }
        .list-works li .info .left a:hover, .list-works li .info .left span:hover, .list-works li .info .right a:hover, .list-works li .info .right span:hover {
          background: #eee; }
      .list-works li .info .left {
        flex-grow: 1; }
        .list-works li .info .left div {
          width: 100%; }
      .list-works li .info .right div {
        border-left: 1px solid #eee; }
    .list-works li .admin-links {
      background: #4d0851;
      color: white;
      padding: 0 10px;
      opacity: .2;
      font-size: .75em;
      display: flex;
      justify-content: space-between; }
      .list-works li .admin-links span.edit-tags {
        cursor: pointer; }
      .list-works li .admin-links:hover {
        opacity: 1; }
      .list-works li .admin-links a {
        color: white; }
    .list-works li .admin-tags span {
      padding: 2px 10px;
      background: #eee;
      border-radius: 2px;
      margin-right: 5px; }
  @media screen and (min-width: 768px) {
    .list-works li {
      width: 50%; } }
  @media screen and (min-width: 1024px) {
    .list-works li {
      width: 33.3%; } }

.list-works-cards {
  width: 100%;
  padding: 0;
  min-width: 0;
  margin: 0;
  list-style: none; }
  .list-works-cards li.artwork-list-item {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    margin: 0 0 20px;
    padding: 0;
    font-size: 12px;
    color: #555;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 0; }
    .list-works-cards li.artwork-list-item:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: .4s opacity;
      z-index: -1; }
    .list-works-cards li.artwork-list-item:hover:after {
      opacity: 1; }
    .list-works-cards li.artwork-list-item .artwork-slider, .list-works-cards li.artwork-list-item .artwork-slider * {
      min-height: 0;
      min-width: 0; }
    .list-works-cards li.artwork-list-item .artwork-slider.list-item-image {
      display: block; }
      .list-works-cards li.artwork-list-item .artwork-slider.list-item-image.slick-dotted.slick-slider {
        margin-bottom: 0; }
      .list-works-cards li.artwork-list-item .artwork-slider.list-item-image .slick-dots {
        bottom: 10px;
        background: rgba(255, 255, 255, 0.5);
        width: 200px;
        border-radius: 10px;
        margin: 0 auto;
        left: 0;
        right: 0; }
      .list-works-cards li.artwork-list-item .artwork-slider.list-item-image .slick-list, .list-works-cards li.artwork-list-item .artwork-slider.list-item-image .slick-track {
        height: 100%; }
    .list-works-cards li.artwork-list-item .list-item-image {
      display: flex;
      align-items: center;
      flex-basis: 100%;
      border-right: 1px solid #eee;
      background: linear-gradient(0deg, #333333 0%, black 50%, #333333 100%); }
      .list-works-cards li.artwork-list-item .list-item-image .slide-container:nth-child(1) {
        display: flex; }
      .list-works-cards li.artwork-list-item .list-item-image.slick-initialized .slide-container {
        display: flex; }
      .list-works-cards li.artwork-list-item .list-item-image .slide-container {
        display: none;
        position: relative;
        align-items: center; }
      .list-works-cards li.artwork-list-item .list-item-image .lazy-image-container {
        width: 100%; }
      .list-works-cards li.artwork-list-item .list-item-image img {
        display: block;
        cursor: pointer; }
    .list-works-cards li.artwork-list-item .photo-credit {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 1;
      background: rgba(255, 255, 255, 0.75);
      padding: 5px 15px;
      border-radius: 4px; }
    .list-works-cards li.artwork-list-item .list-item-info {
      background: white;
      flex-basis: 100%;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .list-works-cards li.artwork-list-item .list-item-info p {
        margin: 0; }
      .list-works-cards li.artwork-list-item .list-item-info .tags {
        margin-top: 10px; }
        .list-works-cards li.artwork-list-item .list-item-info .tags span {
          background: #f4f4f4;
          padding: 2px 5px;
          white-space: nowrap;
          display: inline-block;
          margin: 0px 5px 5px 0; }
      .list-works-cards li.artwork-list-item .list-item-info .bottom p {
        color: #bbb; }
    .list-works-cards li.artwork-list-item.removed .list-item-info:after {
      content: "";
      height: 0px;
      width: 0px;
      background: none;
      position: absolute;
      right: 0;
      top: 0;
      border-top: 40px solid #cd2d2d;
      border-left: 40px solid transparent; }
  .list-works-cards .admin-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    z-index: 1;
    position: relative;
    margin: -15px auto 15px;
    background: white;
    width: 90%; }
    .list-works-cards .admin-row .dropdown {
      box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
      padding: 5px;
      background: white; }
  @media screen and (min-width: 768px) {
    .list-works-cards li.artwork-list-item .list-item-image {
      flex-basis: 60%; }
    .list-works-cards li.artwork-list-item .list-item-info {
      flex-basis: 40%; } }

.add-artwork-cta {
  position: fixed;
  z-index: 1;
  bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: .75em;
  width: 200px;
  left: 0;
  right: 0;
  margin: 0 auto; }
  .add-artwork-cta a {
    opacity: .7;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.6);
    transition: .2s all; }
    .add-artwork-cta a:hover {
      opacity: 1;
      background: rgba(255, 255, 255, 0.9);
      color: #4d0851; }

.add-work {
  position: relative; }
  .add-work form {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%; }
  .add-work #image-input-container {
    position: relative;
    flex: 1;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; }
  .add-work .fake-button {
    padding: 10px 20px;
    border: 1px solid #ccc; }
  .add-work #image-input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .add-work #image-preview {
    max-height: 400px;
    padding: 20px;
    object-fit: contain; }
    .add-work #image-preview[src=""] {
      padding: 0; }
  .add-work .image-prompt {
    flex: 1;
    height: 250px;
    border-radius: 20px;
    border: 4px dashed lightblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden; }
    .add-work .image-prompt:hover {
      background: #eee;
      opacity: .7; }
    .add-work .image-prompt img {
      max-width: none; }
    .add-work .image-prompt p {
      margin: 0;
      color: #999; }
  .add-work .map-container {
    flex: 1;
    display: flex;
    flex-direction: column; }
    .add-work .map-container .geocode {
      padding: 10px 0 0 10px;
      display: flex; }
      .add-work .map-container .geocode input {
        margin: 0; }
  .add-work #map {
    height: 250px;
    background: #eee;
    border-radius: 20px;
    margin-left: 10px; }
  @media screen and (max-width: 430px) {
    .add-work form {
      flex-direction: column; }
    .add-work #image-input-container {
      margin-bottom: 20px; } }

.btn {
  font-family: 'Inter', sans-serif;
  color: #4d0851;
  cursor: pointer;
  padding: 5px 20px;
  border: 1px solid #4d0851;
  border-radius: 4px;
  text-align: center;
  font-size: 1em;
  display: inline-block; }
  .btn.big {
    font-size: 16px; }
  .btn:focus {
    outline: none; }
  .btn:hover {
    background: #4d0851;
    color: white; }
  .btn:disabled {
    border-color: #ccc;
    color: #ccc; }
    .btn:disabled:hover {
      background: white; }
  .btn.white {
    background: white; }
    .btn.white:hover {
      background: #4d0851;
      color: white; }

.btn-cta {
  background: lightseagreen;
  border-bottom: 1px solid black;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  color: white;
  padding: 10px 15px;
  border-radius: 2px; }

.upload-container {
  width: 100%;
  padding: 50px 0;
  display: flex;
  align-items: center; }
  .upload-container .btn {
    margin-right: 10px; }
  .upload-container .upload-progress-container {
    width: 100%;
    background: #eee;
    height: 10px;
    border-radius: 10px; }
    .upload-container .upload-progress-container .upload-progress-bar {
      height: 100%;
      width: 0%;
      background: black;
      transition: .2s all;
      border-radius: 10px; }

.artists-page .artist-filter {
  flex: 2;
  padding: 20px;
  align-self: flex-start;
  position: sticky;
  top: 50px; }
  .artists-page .artist-filter input[type=text] {
    padding: 5px 10px;
    border-radius: 0;
    background: white;
    line-height: 25px;
    -webkit-appearance: none; }
  .artists-page .artist-filter .filter-label {
    text-transform: uppercase;
    font-size: .75em;
    color: #666;
    letter-spacing: 1px; }
  .artists-page .artist-filter ul {
    margin-top: 0;
    list-style: none;
    padding: 0; }
    .artists-page .artist-filter ul li {
      cursor: pointer; }
      .artists-page .artist-filter ul li:hover {
        opacity: .5; }
      .artists-page .artist-filter ul li.active {
        font-weight: bold; }
.artists-page .artists-main {
  flex: 8; }
  .artists-page .artists-main .city-banner {
    background-size: cover;
    background-position: center center;
    padding: 20px;
    position: relative; }
    .artists-page .artists-main .city-banner h1, .artists-page .artists-main .city-banner p {
      color: white;
      position: relative;
      z-index: 1;
      text-shadow: 1px 1px black; }
    .artists-page .artists-main .city-banner:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.5); }
@media screen and (max-width: 1024px) {
  .artists-page {
    flex-direction: column; }
    .artists-page .artist-filter {
      padding: 0 10px;
      width: 100%;
      position: relative;
      top: 0; }
      .artists-page .artist-filter .filter-selectors {
        display: none; } }

.artist-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: flex-start;
  list-style: none;
  margin: 20px 0 0;
  padding: 0; }
  .artist-list:after {
    content: '';
    width: calc(33.3% - 4px); }
  .artist-list li {
    flex-basis: 100%;
    position: relative;
    transition: all .1s;
    background: white;
    margin: 0 auto 20px;
    max-width: 90%;
    border-radius: 4px;
    box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
    overflow: hidden; }
    .artist-list li:active {
      transform: scale(0.98); }
    .artist-list li a {
      display: flex;
      flex-wrap: wrap;
      height: 200px;
      transition: .2s all;
      color: #333;
      position: relative;
      z-index: 1; }
      .artist-list li a .artist-thumbnail {
        height: 50%;
        padding: 10px; }
      .artist-list li a .work-count {
        position: absolute;
        top: calc(50% - 13px);
        background: white;
        height: 30px;
        width: 30px;
        font-size: .8em;
        text-align: center;
        line-height: 26px;
        right: 8px;
        border-radius: 50%;
        border: 2px solid #ddd; }
      .artist-list li a:hover + .artist-bg {
        background-size: 110%;
        opacity: .2; }
    .artist-list li .artist-bg {
      width: 100%;
      height: 50%;
      background-size: 100%;
      background-position: center center;
      transition: .2s all;
      background-color: #ccc; }
      .artist-list li .artist-bg:hover {
        background-size: 110%; }
  @media screen and (min-width: 768px) {
    .artist-list {
      margin: 20px; }
      .artist-list li {
        flex-basis: calc(33.3% - 15px);
        margin: 0 0 20px; } }

.map-page {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0; }
  .map-page #toggle-mapnav {
    display: none;
    position: absolute;
    bottom: 0;
    left: 40%;
    cursor: pointer;
    background: #e4e4e4;
    z-index: 1;
    text-align: center;
    text-indent: -10px;
    padding: 10px 15px;
    transition: 1s all; }
    .map-page #toggle-mapnav.map-full {
      left: 0%;
      transform: scaleX(-1); }
    @media screen and (min-width: 768px) {
      .map-page #toggle-mapnav {
        display: block; } }
  .map-page .find-gps {
    padding: 5px 10px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: white;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); }
  .map-page .map-header {
    padding: 0px 10px; }
  .map-page .map-left {
    width: 40%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 5px 0px 30px -20px black;
    z-index: 1;
    position: relative;
    transition: 1s margin-left; }
    .map-page .map-left.map-full {
      margin-left: -40%; }
    .map-page .map-left .map-list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .map-page .map-left .map-list li {
        margin: 10px;
        background: white;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 0; }
        .map-page .map-left .map-list li .list-preview-image {
          height: 140px;
          width: 140px;
          background-size: cover;
          background-color: #ccc;
          margin: 10px;
          border-radius: 4px; }
        .map-page .map-left .map-list li .content {
          padding: 10px; }
          .map-page .map-left .map-list li .content p {
            margin: 0; }
        .map-page .map-left .map-list li:after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
          opacity: 0;
          transition: .4s opacity;
          z-index: -1; }
        .map-page .map-left .map-list li:hover:after {
          opacity: 1; }
    .map-page .map-left .in-view {
      position: absolute;
      display: none;
      width: 100%;
      height: auto;
      background: #f4f4f4; }
      .map-page .map-left .in-view ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        .map-page .map-left .in-view ul li {
          margin: 10px;
          background: white;
          border-radius: 4px;
          cursor: pointer;
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
          position: relative;
          z-index: 0; }
          .map-page .map-left .in-view ul li .list-preview-image {
            height: 140px;
            width: 140px;
            background-size: cover;
            background-color: #ccc;
            margin: 10px;
            border-radius: 4px; }
          .map-page .map-left .in-view ul li .content {
            padding: 10px; }
            .map-page .map-left .in-view ul li .content p {
              margin: 0; }
          .map-page .map-left .in-view ul li:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: .4s opacity;
            z-index: -1; }
          .map-page .map-left .in-view ul li:hover:after {
            opacity: 1; }
  .map-page .map-right {
    width: 100%;
    top: 50px;
    bottom: 0;
    position: absolute;
    transition: 1s all; }
  .map-page .custom-info-window {
    position: absolute;
    left: 80px;
    bottom: 20px;
    border-radius: 4px;
    width: calc(100% - 160px);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
    display: none; }
    .map-page .custom-info-window .flex-row {
      position: relative; }
    .map-page .custom-info-window .img-container {
      background: #f4f4f4;
      aspect-ratio: 1; }
      .map-page .custom-info-window .img-container img {
        object-fit: cover;
        display: block;
        width: 100%;
        height: 100%; }
    .map-page .custom-info-window .info-window-content {
      padding: 0 20px; }
    .map-page .custom-info-window .close {
      cursor: pointer;
      position: absolute;
      top: 8px;
      right: 8px;
      height: 20px;
      width: 20px;
      line-height: 20px;
      background: #555;
      border-radius: 100%;
      text-align: center;
      color: white; }
    @media screen and (max-width: 768px) {
      .map-page .custom-info-window {
        left: 20px;
        width: calc(100% - 80px);
        padding: 10px; }
        .map-page .custom-info-window .info-window-content {
          padding: 0; } }
  .map-page.notification-banner .map-right {
    top: calc(50px + 30px); }
  @media screen and (min-width: 768px) {
    .map-page.notification-banner .map-left {
      top: calc(50px + 30px);
      height: calc(100% - 50px - 30px); } }
  @media screen and (min-width: 768px) {
    .map-page .map-right {
      width: 60%;
      right: 0;
      position: fixed; }
      .map-page .map-right.map-full {
        width: 100%; }
      .map-page .map-right .find-gps {
        top: 60px; }
    .map-page .map-left {
      top: 50px;
      height: calc(100% - 50px); } }

#map-master {
  width: 100%;
  height: 100%; }
  #map-master .info-window h3 {
    margin: 0; }
  #map-master .info-window p {
    margin-top: 0; }
  @media screen and (max-width: 768px) {
    #map-master {
      height: 100%; } }

.artist-page {
  width: 100%;
  display: flex; }
  .artist-page .artist-info {
    margin: 0 auto 20px; }
    .artist-page .artist-info ul.artist-links {
      list-style: none;
      margin: 10px 0 0 0;
      padding: 0;
      text-transform: uppercase;
      display: flex; }
      .artist-page .artist-info ul.artist-links img {
        width: 30px; }
      .artist-page .artist-info ul.artist-links li {
        margin-right: 4px; }
    .artist-page .artist-info h1 {
      margin-bottom: 0; }
    .artist-page .artist-info p {
      margin: 0; }
  .artist-page .list-works {
    width: 100%; }
    .artist-page .list-works li {
      width: 100%; }
  .artist-page .artist-left {
    width: 100%;
    padding: 0 20px; }
  @media screen and (min-width: 768px) {
    .artist-page .artist-left {
      width: 60%;
      z-index: 1; } }
  .artist-page .list-works-cards {
    margin: 0 auto; }

.artist-map-container {
  display: none; }
  @media screen and (min-width: 768px) {
    .artist-map-container {
      display: block;
      position: fixed;
      top: 50px;
      right: 0%;
      width: 40%;
      height: calc(100% - 50px); }
      .artist-map-container #artist-map {
        width: 100%;
        height: 100%;
        background: #eee; } }

.hero-flex {
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1; }

.feed-list {
  width: 90%;
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .feed-list {
      width: 60%; } }

.city-hero {
  height: 300px;
  background-size: cover;
  background-position: center center;
  position: relative; }
  .city-hero:after {
    content: '';
    background: #29042a;
    background: linear-gradient(0deg, #29042a 0%, rgba(51, 51, 51, 0.6923144258) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; }

.city-hero-content {
  align-self: flex-end;
  color: white;
  padding: 0 0 20px; }

.city-page {
  width: 90%;
  margin: 0 auto; }
  .city-page .list-works-cards {
    flex-basis: 100%; }
  @media screen and (min-width: 768px) {
    .city-page {
      width: 60%; } }

.city-page p.description {
  margin: 0 auto; }

.neighborhood-mini-thumb {
  padding: 5px; }
  .neighborhood-mini-thumb a {
    display: block;
    border-radius: 4px;
    box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 0; }
    .neighborhood-mini-thumb a:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: .4s opacity;
      z-index: -1; }
    .neighborhood-mini-thumb a:hover:after {
      opacity: 1; }
  .neighborhood-mini-thumb div {
    height: 80px;
    display: block;
    color: white;
    text-shadow: 1px 1px black;
    display: block;
    background-color: #666;
    background-size: cover;
    background-position: center;
    border-radius: 4px 4px 0px 0px; }
  .neighborhood-mini-thumb span {
    background: white;
    display: block;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
    font-size: .8em; }

.city-header {
  text-align: left;
  padding-bottom: 10px; }

.single-artwork {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0 0; }
  @media screen and (min-width: 768px) {
    .single-artwork {
      width: 80%;
      max-width: 1200px; } }

.view-more {
  background: white;
  padding: 10px 20px;
  display: inline-block;
  box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
  margin: 0 0 40px; }
  .view-more a {
    display: flex;
    align-items: center; }
    .view-more a svg {
      margin-left: 5px; }

.pagination {
  width: 100%; }
  .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-flow: wrap; }
    .pagination ul li {
      list-style: none;
      padding: 0 0 10px; }
      .pagination ul li.number a {
        background: #e2e2e2;
        margin: 0 4px;
        width: 30px;
        text-align: center;
        border-radius: 2px;
        display: block; }
      .pagination ul li.number.active a {
        background: #d8d8d8; }
      .pagination ul li a {
        padding: 5px; }
  .pagination h4 {
    text-align: center;
    color: #666;
    font-weight: normal; }

.user-profile .profile-info {
  padding: 20px 0; }
  .user-profile .profile-info h2, .user-profile .profile-info h4 {
    margin: 0; }
  .user-profile .profile-info h4 {
    font-weight: normal; }
.user-profile .stats-container {
  margin: 20px 0;
  padding: 20px; }
  .user-profile .stats-container h4 {
    margin-top: 0; }
.user-profile .stats {
  list-style: none;
  padding: 0;
  margin: 0; }
.user-profile ul.uploads {
  display: flex;
  list-style: none;
  padding: 0; }
  .user-profile ul.uploads li img {
    width: 200px; }

@media screen and (max-width: 430px) {
  .mobile-hide {
    display: none !important; } }

.tablet-show {
  display: none !important; }
  @media screen and (min-width: 768px) {
    .tablet-show {
      display: inherit !important; } }

@media screen and (min-width: 768px) {
  .tablet-hide {
    display: none !important; } }

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .columns .half {
    width: 48%; }
  @media screen and (max-width: 768px) {
    .columns .half {
      width: 100%; } }

.app-badges {
  padding: 0;
  list-style: none;
  margin: 50px 0; }
  .app-badges li {
    text-align: center; }
  .app-badges a {
    display: block; }
  .app-badges img.badge {
    height: 50px;
    margin: 0 auto 20px; }
  .app-badges img {
    display: block;
    margin: 0 auto; }
  @media screen and (max-width: 430px) {
    .app-badges img.qr {
      display: none; } }

.toolbar {
  display: inline-block;
  border: 1px solid #4d0851;
  margin: 0 5px 5px 0;
  border-radius: 2px;
  transition: all .1s;
  opacity: .5;
  vertical-align: top; }
  .toolbar a {
    padding: 5px 10px;
    display: flex;
    align-items: center; }
    .toolbar a .icon {
      margin-right: 5px; }
  .toolbar:hover {
    background: #e4e4e4;
    opacity: 1; }

.bookmark.active a {
  background: #4d0851;
  color: white; }

.fab {
  position: fixed;
  background: #4d0851;
  bottom: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  color: white;
  line-height: 50px;
  cursor: pointer;
  font-size: 40px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  transition: all .2s;
  z-index: 10; }
  .fab:hover {
    background: #790c80;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3); }
  .fab:active {
    transform: scale(0.98); }
  .fab.fab-left {
    left: 10px;
    right: auto; }

#signup-fab {
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.5em; }

#popup {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 400px;
  max-width: 95%;
  background: white;
  box-shadow: 5px -5px 40px 0px rgba(0, 0, 0, 0.5);
  z-index: 10; }
  #popup .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: .5;
    padding: 5px;
    color: #aaa;
    cursor: pointer; }
  #popup .popup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 100%; }
    #popup .popup-container .popup-content {
      text-align: center; }
      #popup .popup-container .popup-content span.highlight {
        background-color: #baefec; }
      #popup .popup-container .popup-content #popup-form input[type=email] {
        font-size: 1em;
        width: 100%;
        border-bottom: 1px solid black;
        text-align: center;
        margin: 0 0 10px;
        border-radius: 0;
        background: #eee; }
      #popup .popup-container .popup-content #popup-form .btn-cta {
        width: 100%; }

.modal-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  .modal-overlay .modal-content {
    padding: 20px;
    max-width: 100%; }
    .modal-overlay .modal-content.narrow {
      width: 500px; }
    .modal-overlay .modal-content textarea {
      background: white;
      border: #333 1px solid;
      width: 500px;
      max-width: 100%;
      padding: 10px; }
    .modal-overlay .modal-content input[type=email] {
      background: white;
      border: 1px solid;
      padding: 10px; }
    .modal-overlay .modal-content input {
      display: block;
      margin: 10px 0; }
  .modal-overlay #modal-close {
    border-bottom: 1px solid black;
    cursor: pointer;
    display: inline-block; }

.banner-notification {
  display: none;
  position: fixed;
  background: #78d1d1;
  width: 100%;
  z-index: 2;
  top: 50px;
  height: 30px;
  text-align: center;
  color: #333; }
  .banner-notification a {
    width: 100%;
    height: 100%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center; }

.underline {
  text-decoration: underline; }

.edit-location input {
  background: white; }

.flex-grid {
  display: flex;
  flex-wrap: wrap; }
  .flex-grid .grid-item.width--one-quarter {
    flex-basis: 25%; }
  .flex-grid .grid-item.width--one-third {
    flex-basis: 33.3%; }
  @media screen and (max-width: 768px) {
    .flex-grid .grid-item {
      flex-basis: 100% !important; } }

.fg-8-8 {
  flex-basis: 100%; }

.fg-1-8 {
  flex-basis: 12.5%;
  width: 12.5%; }

.fg-2-8 {
  flex-basis: 25%;
  width: 25%; }

.fg-3-8 {
  flex-basis: 37.5%;
  width: 37.5%; }

.fg-4-8 {
  flex-basis: 50%;
  width: 50%; }

.fg-5-8 {
  flex-basis: 62.5%;
  width: 62.5%; }

.fg-6-8 {
  flex-basis: 75%;
  width: 75%; }

.fg-7-8 {
  flex-basis: 87.5%;
  width: 87.5%; }

.fg-12-12 {
  flex-basis: 100%; }

.fg-1-12 {
  flex-basis: 8.3333333333%;
  width: 8.3333333333%; }

.fg-2-12 {
  flex-basis: 16.6666666667%;
  width: 16.6666666667%; }

.fg-3-12 {
  flex-basis: 25%;
  width: 25%; }

.fg-4-12 {
  flex-basis: 33.3333333333%;
  width: 33.3333333333%; }

.fg-5-12 {
  flex-basis: 41.6666666667%;
  width: 41.6666666667%; }

.fg-6-12 {
  flex-basis: 50%;
  width: 50%; }

.fg-7-12 {
  flex-basis: 58.3333333333%;
  width: 58.3333333333%; }

.fg-8-12 {
  flex-basis: 66.6666666667%;
  width: 66.6666666667%; }

.fg-9-12 {
  flex-basis: 75%;
  width: 75%; }

.fg-10-12 {
  flex-basis: 83.3333333333%;
  width: 83.3333333333%; }

.fg-11-12 {
  flex-basis: 91.6666666667%;
  width: 91.6666666667%; }

@media screen and (max-width: 1024px) {
  .fg-md-8-8 {
    flex-basis: 100%; }

  .fg-md-1-8 {
    flex-basis: 12.5%;
    width: 12.5%; }

  .fg-md-2-8 {
    flex-basis: 25%;
    width: 25%; }

  .fg-md-3-8 {
    flex-basis: 37.5%;
    width: 37.5%; }

  .fg-md-4-8 {
    flex-basis: 50%;
    width: 50%; }

  .fg-md-5-8 {
    flex-basis: 62.5%;
    width: 62.5%; }

  .fg-md-6-8 {
    flex-basis: 75%;
    width: 75%; }

  .fg-md-7-8 {
    flex-basis: 87.5%;
    width: 87.5%; } }
@media screen and (max-width: 768px) {
  .fg-sm-8-8 {
    flex-basis: 100%; }

  .fg-sm-1-8 {
    flex-basis: 12.5%;
    width: 12.5%; }

  .fg-sm-2-8 {
    flex-basis: 25%;
    width: 25%; }

  .fg-sm-3-8 {
    flex-basis: 37.5%;
    width: 37.5%; }

  .fg-sm-4-8 {
    flex-basis: 50%;
    width: 50%; }

  .fg-sm-5-8 {
    flex-basis: 62.5%;
    width: 62.5%; }

  .fg-sm-6-8 {
    flex-basis: 75%;
    width: 75%; }

  .fg-sm-7-8 {
    flex-basis: 87.5%;
    width: 87.5%; } }
.product-grid .flex-grid-item {
  flex-basis: 100%; }
.product-grid .product-grid-item {
  box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin: 20px; }
.product-grid input {
  background: white; }
.product-grid .discount {
  margin-left: 10px;
  text-decoration: line-through;
  color: red; }

@media screen and (max-width: 767px) {
  .sticker-product {
    flex-direction: column; }
    .sticker-product .product-grid-item {
      margin: 0; } }
.sticker-product .cart {
  display: none; }
.sticker-product .subtitle {
  color: #666; }
.sticker-product .image-container .caption {
  margin: 0;
  color: #666;
  font-size: .5em;
  text-align: center;
  font-style: italic; }
.sticker-product .callout {
  margin: 20px 0 0;
  background: #f6c5f9;
  padding: 20px;
  border-radius: 4px; }
  .sticker-product .callout p {
    margin: 0; }
.sticker-product .attributes span {
  display: none;
  position: relative;
  top: -54px;
  height: 0;
  left: 11px;
  font-size: .5em;
  color: #999;
  text-transform: uppercase; }
.sticker-product .input-container {
  margin: 0 5px; }
.sticker-product .input-margin-fix {
  position: relative;
  left: -5px;
  width: calc(100% + 10px); }
.sticker-product input {
  padding: 15px 10px 10px; }
  .sticker-product input:not(:placeholder-shown) + span {
    display: block; }
.sticker-product label {
  display: block;
  padding: 0 0 10px; }
.sticker-product .quantity-selector span {
  padding: 4px 12px;
  display: inline-block;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 5px; }
  .sticker-product .quantity-selector span.active {
    background: #4d0851;
    color: white; }
.sticker-product .quantity-promo {
  font-size: .75em;
  color: #666; }

.checkout-btn, button#destroy-cart {
  cursor: pointer;
  width: 100%;
  padding: 10px;
  background: #790c80;
  display: block;
  color: white;
  text-align: center;
  border-radius: 2px; }
  .checkout-btn:hover, button#destroy-cart:hover {
    background: #4d0851; }

.events {
  padding: 0px;
  list-style: none; }
  .events .event {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 4px;
    list-style: none;
    background: white;
    box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 0; }
    .events .event:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: .4s opacity;
      z-index: -1; }
    .events .event:hover:after {
      opacity: 1; }

.list-works-cards #list-lead-unit {
  padding: 20px;
  margin: 0 0 20px;
  color: white;
  background: #37063a; }
  .list-works-cards #list-lead-unit a {
    color: white;
    border-color: white; }
  .list-works-cards #list-lead-unit input[type=email] {
    border-color: white; }
  .list-works-cards #list-lead-unit .button-container {
    height: calc(100% - 10px);
    padding: 2px;
    background: white;
    border-radius: 0px 2px 2px 0px; }
  .list-works-cards #list-lead-unit button {
    border: 0px;
    border-radius: 2px;
    height: 100%;
    width: 100%;
    color: white;
    font-weight: bold;
    background-color: lightseagreen;
    border-top: 1px solid transparent;
    border-bottom: 1px solid black;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1); }
    .list-works-cards #list-lead-unit button:hover {
      background-color: #188781; }
  .list-works-cards #list-lead-unit p span {
    background: rgba(255, 255, 255, 0.2);
    font-family: monospace; }
  @media screen and (max-width: 430px) {
    .list-works-cards #list-lead-unit .button-container {
      padding: 0;
      background: none; }
    .list-works-cards #list-lead-unit button {
      height: 40px; } }

.component-templates {
  display: none; }

.leaderboard li {
  padding: 10px;
  border-bottom: 1px solid #ccc; }
  .leaderboard li p {
    font-weight: bold; }
  .leaderboard li span {
    background: #dbdbdb;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .8rem;
    margin-right: 10px; }

.user-profile {
  margin-top: 50px; }

.admin {
  opacity: 0; }

a.admin {
  font-weight: normal;
  font-size: .8em;
  background-color: #eee;
  padding: 2px;
  border-radius: 2px;
  margin: 2px;
  transition: .2s;
  border-bottom: none; }
  a.admin.work-settings {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 1.2em; }

.artwork-list-item:hover .admin {
  opacity: 1; }

/*# sourceMappingURL=style.css.map */
