/************************** FONTS ***************************/

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

/************************** GENERIC ***************************/

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  touch-action: manipulation;
}

html,
body {
  height: 100%;
  font-family: "Nunito", sans-serif;
}
canvas {
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}
body {
  margin: 0;
}
#unity-container {
  width: 100%;
  height: 100%;
  position: relative;
}
#unity-canvas {
  width: 100%;
  height: 100%;
  background: white;
}

.hide {
  display: none;
  visibility: hidden;
}

.row-height-50 {
  height: 50%;
  min-height: 130px;
}

.img-help {
  max-height: 100px;
  margin: auto;
  display: block;
}

#artworkTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

#artworkArtist{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1200px) {
  #artworkTitle {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .img-help {
    max-height: 60px;
  }

  .row-height-50 {
    min-height: 60px;
  }

  #artworkTitle {
    font-size: 25px;
  }
}

.mt-10 {
  margin-top: 10vh;
}

.btn {
  border-radius: 3px;
  line-height: 24px;
}

/************************** UI POSITIONING AND STYLING ***************************/
@media screen and (max-width: 1200px) {
  #movement-buttons {
    position: absolute;
    width: 140px;
    left: calc(50% - 60px);
  }
}

@media screen and (max-width: 500px) {
  #movement-buttons {
    position: absolute;
    width: 140px;
    left: calc(50% - 60px);
    top: calc(100% - 45px);
  }
}

#moveUpBtn {
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: 40px;
  height: 40px;
}

#moveDownBtn {
  position: absolute;
  right: 60px;
  bottom: 10px;
  width: 40px;
  height: 40px;
}

#moveLeftBtn {
  position: absolute;
  right: 110px;
  bottom: 10px;
  width: 40px;
  height: 40px;
}

#rotateLeftBtn {
  position: absolute;
  right: 110px;
  bottom: 60px;
  width: 40px;
  height: 40px;
}

#moveRightBtn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
}

#rotateRightBtn {
  position: absolute;
  right: 10px;
  bottom: 60px;
  width: 40px;
  height: 40px;
}

.navigation-buttons {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
}

#prevArtwork {
  height: 40px;
  padding: 0 10px;
  margin-right: 10px;
}

#nextArtwork {
  height: 40px;
  padding: 0 10px;
}

@media screen and (min-width: 1201px) {
  #artworkInfo {
    position: absolute;
    bottom: 110px;
    right: 10px;
    width: auto;
    min-width: 140px;
    height: 40px;
    display: inline-block;
  }
}

@media screen and (max-width: 1200px) {
  #artworkInfo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: auto;
    min-width: 140px;
    padding-left: 12px;
    padding-right: 12px;
    height: 40px;
    display: inline-block;
  }
}

#artworkInfo > i {
  margin-right: 5px;
}

#artworkInfo > span {
  position: relative;
  top: 2px;
}

.modal-links {
  display: flex;
  padding-bottom: 10px;
  align-items: baseline;
  gap: 20px
}

.modal-links a span {
  width: fit-content;
  text-decoration: underline;
  text-transform: none;
  color: #1d2124;
}

.modal-links button {
  cursor: pointer;
  width: fit-content !important;
  text-transform: none;
  text-decoration: underline;
  color: #1d2124;
  text-align: left !important;
  background-color: transparent;
  padding: 0;
}

.modal-links button:hover {
  background-color: inherit;
}

.modal-buttons .btn-block,
.modal-buttons .btn-block:hover {
  cursor: pointer;
  text-decoration: none;
}

.modal-buttons .btn-block.btn-sm {
  background-color: rgb(246, 246, 246);
  color: #000000;
}

.modal-buttons .btn-block.btn-sm:hover {
  background-color: rgb(230, 230, 230);
}

.modal-buttons .btn-block.btn-sm.dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.modal-buttons .btn-block.btn-sm.dark:hover {
  background-color: #23272b;
  border-color: #1d2124;
}

.modal-buttons.multiple .btn-block.btn-sm:not(.hide),
.modal-buttons.multiple .artplacer-button {
  display: inline-block;
  width: 49%;
  padding: 8px;
}

.btn-danger {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  box-sizing: border-box;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-danger > i {
  vertical-align: middle;
}

.btn-danger:hover {
  background-color: rgba(224, 21, 62, 0.8);
}

.btn-danger:disabled {
  background-color: rgba(0, 0, 0, 0.2);
  /* border: 2px;
    border-color: grey;
    border-style: solid; */
  border: none;
  box-sizing: border-box;
}

@keyframes heartbeat {
  0% {
    transform: scale(0.75);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.75);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.75);
  }
  100% {
    transform: scale(1);
  }
}

.artplacer-button {
  background-color: rgb(246, 246, 246);
  color: #000000;
  line-height: 1.5;
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  display: block;
  width: 100%;
  text-align: center !important;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  border-style: none;
  margin-top: 0.5rem !important;
}

.artplacer-button:hover {
  background-color: rgb(230, 230, 230);
}

.artplacer-button:active {
  color: #fff;
  background-color: #1d2124;
}

/************************** LOADER ***************************/

#artplacerLoader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.loader-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  /* Add the blur effect */
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transform: scale(1.2);
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.loader-brand {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: rgb(80, 80, 80);
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.loader-brand a {
  color: rgb(80, 80, 80);
  text-decoration: underline;
}

.loader-modal {
  position: absolute;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 20%;
  min-width: 300px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loader-modal-autoload {
  background-color: transparent;
  box-shadow: none;
  min-width: 40px;
}

.loader-modal .loader-modal-bottom {
  height: 30px;
  align-self: stretch;
  position: relative;
  padding: 20px;
  box-sizing: content-box;
}

.loader-modal .loader-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 150px;
  border: none;
}

.loader-modal .loader-modal-content {
  padding: 20px 20px 0 20px;
}

.loader-modal .loader-modal-content h3 {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  color: black;
  text-transform: capitalize;
}

#loader-exhibit-name {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  overflow-wrap: break-word;
}

#loader-exhibit-author {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  color: black;
  text-transform: capitalize;
  margin-bottom: 0;
}

.submit-btn {
  background-color: black;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  border: none;
  width: 100%;
  padding: 8px 20px;
  display: flex;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 8px 8px 5px -5px rgb(0 0 0 / 18%);
  justify-content: center;
  align-items: center;
}

#data-capture-submit {
  height: 48px;
}

#loader-exhibit-enter {
  height: 34px;
}

.loader {
  color: #ffffff;
  font-size: 12px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

.loader-large {
  font-size: 24px;
  /* remove top, left and transform if adding background to autoload */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  color: black;
}

@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/************************** data-capture ***************************/

#artplacerLoader.show-form .loader-modal-bottom,
#artplacerLoader form.data-capture {
  display: none;
}

#artplacerLoader.show-form .loader-modal {
  min-width: 500px;
}

#artplacerLoader.show-form form.data-capture {
  display: block;
  margin: 0 40px 20px;
}


#artplacerLoader.show-form .loader-modal-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  margin-bottom: 16px;
}

#artplacerLoader.show-form form.data-capture label {
  font-weight: bold;
}

#artplacerLoader.show-form .loader-modal-bottom {
  padding: 20px 40px;
}

@media screen and (max-width: 600px) {
  #artplacerLoader.show-form .loader-modal {
    min-width: 300px;
  }
  
  #artplacerLoader.show-form form.data-capture {
    display: block;
    margin: 0 20px 20px;
  }
}

/************************** messageModal ***************************/
div#messageModal.modal {
  max-width: 500px !important;
  margin: auto !important;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

div#messageModal .modal-body {
  padding: 0px 80px 40px;
}

#errorMessageModal,
#successMessageModal {
  max-width: 500px;
  right: 0;
  bottom: 0;
  margin: auto;
}

#errorMessageModal .modal-header,
#successMessageModal .modal-header,
div#messageModal  .modal-header {
  border-bottom: unset;
}

div#messageModal .message-modal-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

div#messageModal .message-modal-top .message-modal-top-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 14px;
}

div#messageModal textarea {
  resize: none;
}

div#messageModal #stay-in-touch-submit {
  margin-top: 30px;
}

#errorMessageModal .confirm,
#successMessageModal .confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 46px;
}

#errorMessageModal .confirm .icon-container,
#successMessageModal .confirm .icon-container {
  display: inline-flex;          
  align-items: center;          
  justify-content: center;
  width: 50px;                  
  height: 50px;                    
  border-radius: 50%;           
  font-size: 24px;              
  margin-bottom: 20px;
}


#successMessageModal .confirm .icon-container {
  border: 2px solid green;
  background-color: green;     
  color: green;
}

#successMessageModal .confirm .icon-container .material-icons {
  color: white;
  font-size: 35px;
}

#errorMessageModal .confirm .icon-container .material-icons {
  color: red;
  font-size: 78px;
}

.confirm-text {
  text-align: center;
}

@media screen and (max-width: 500px) {
  div#messageModal .modal-body {
    padding: 0 40px 40px;
  }
}

/************************** TEXT ***************************/

.nunito {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.nunito-non-bold {
  font-family: "Nunito", sans-serif;
  font-weight: normal;
}

.fs-12px {
  font-size: 12px;
}

.fs-14px {
  font-size: 14px;
}

.fs-22px {
  font-size: 22px;
}

.fw-700 {
  font-weight: 700;
}

.fs-38px {
  font-size: 38px;
}

.fs-48px {
  font-size: 48px;
}

.fs-42px {
  font-size: 42px;
}

.fs-30px {
  font-size: 30px;
}

.fw-300 {
  font-weight: 300;
}

.pt-10px {
  padding-top: 10px;
}

.lora {
  font-family: "Lora", serif;
  color: #888;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  #loader-exhibit-name,
  #loader-exhibit-author {
    text-align: left;
  }
}

/************************** MODALS ***************************/

.modal-title {
  font-family: "Nunito", sans-serif;
  font-weight: normal;
}

.modal-body {
  padding: 15px;
}

#artworkImage {
  max-height: 80%;
  max-width: 80%;
  margin: 15px 0;
}

#artworkImageForm {
  max-height: 100px;
}

.artworkModalForm label {
  font-weight: bold;
}

#artworkModal .modal-header .close {
  margin: -1rem -1rem -1rem 0;
  float: none;
}

#artworkModal > div {
  transition: max-width 0.2s linear;
}

#artworkModal > .modal-dialog.full-width {
  max-width: 95%;
  width: 95%;
}

#artworkModal > .modal-dialog.full-width .container #primaryCol {
  padding: 0;
}

#artworkModal > .modal-dialog.full-width .container #primaryCol #artworkVideo > iframe{
  width: 100%;
  height: 80vh;
}

#artworkModal > .modal-dialog.full-width .container #secondaryCol {
  padding-right: 0;
}

#artworkModal > .modal-dialog.full-width > .modal-content > .modal-body > .container {
  max-width: unset;
}

#artworkModal > .modal-dialog.full-width .container #secondaryCol > .row > .col{
  width: 100%;
  flex-basis: unset;
}

#artworkModal > .modal-dialog.full-width .container #secondaryCol > .row > .col:first-child {
  margin-bottom: 1rem;
}

#artworkModal > .modal-dialog.full-width #secondaryCol > #videoTitle > button {
  position: absolute;
  top: 0;
  right: 0;
}

#artworkModal .modal-dialog.full-width .modal-title.artworkModalLabel {
  padding-left: 0;
}

@media screen and (max-width: 991px) {
  #artworkModal > .modal-dialog.full-width .container #primaryCol #artworkVideo > iframe{
    width: 100%;
    height: 30vh;
    max-width: 500px;
  }
}

#help-exhibit-name {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  font-size: 25px;
  text-transform: capitalize;
}

#help-exhibit-author {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
}

#helpModal .modal-body h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .modal-body h1 {
    font-size: 20px;
    padding-top: 5px;
  }

  .artwork-thumbnail {
    padding: 0;
  }

  /* Targets the GO Btn in mobile */
  .artwork-item div:last-child {
    padding: 0;
  }

  .artwork-item h5.nunito {
    font-size: 12px;
    margin-bottom: 1px;
  }

  .artwork-item h5.lora {
    font-size: 10px;
  }

  .artwork-item div.col-4 {
    padding-right: 0;
  }

  .artworkModalForm {
    margin: 10px 0;
  }
}

/************************** SIDEBAR ***************************/

.sidebar {
  position: fixed;
  font-family: "Nunito", sans-serif;
  right: -250px;
  width: 250px;
  margin-bottom: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  overflow-y: auto; /* Habilitar barra de desplazamiento vertical */
}

.sidebar header {
  color: white;
  padding-left: 51px;
  line-height: 60px;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  user-select: none;
}

.sidebar ul {
  list-style-type: none;
  padding-left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.sidebar ul a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 45px;
  font-size: 16px;
  color: white;
  padding-left: 20px;
  box-sizing: border-box;
  border-top: 1px solid rgba(61, 57, 57, 0.1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sidebar ul li i {
  vertical-align: middle;
  width: 15px;
}

.sidebar ul li:hover a {
  text-decoration: none;
}
.sidebar ul a i {
  margin-right: 16px;
}

.sidebarBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.5s ease;
}

.sidebarBtn i:before {
  content: "menu";
}

.sidebarOpen {
  right: 0;
}

.sidebarOpenBtn {
  right: 260px;
}

.sidebarOpenBtn i:before {
  content: "close";
}

#artworkListModal .modal-body {
  padding: 5px 30px 30px 30px;
}

.artwork-item > div > img {
  max-height: 90px;
}

.artwork-item {
  border-top: 1px solid lightgrey;
  height: 100px;
}

.artwork-item:first-child {
  border-top: none;
}

.artwork-thumbnail {
  padding: 4px 0;
}

.goBtn {
  padding: 5px 10px;
}

#unavailable,
#notFound {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#unavailable .col-md-6,
#notFound .col-md-6 {
  border: lightgray 1px solid;
  padding: 40px;
  margin: 30px;
}

#unavailable h1,
#notFound h1 {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
}

#unavailable img,
#notFound img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: auto;
}

.disabled {
  pointer-events: none;
  background-color: gray !important;
}

#inquireSubmitBtn {
  padding: 11px 0;
}

#inquireSubmitBtn.disabled > #L_SUBMIT {
  display: none;
}

#inquireSubmitBtn > #L_SUBMITTING {
  display: none;
}

#inquireSubmitBtn.disabled > #L_SUBMITTING {
  display: inline;
}

/* LANGUAGE */
.language-extra-terms{
  display: none;
}

li.open > a > i.more {
  display: none;
}

li.open > a > i.less {
  display: inline;
}

li > a > i.less {
  display: none;
}

/* LIST DROPDOWNS (Languange & Quality) */

li > .dropdown {
  display: none;
  padding: 6px 0;
}

li.open > .dropdown {
  display: block;
}

li > .dropdown > li {
  margin-left: 30px;
  color: white;
  cursor: pointer;
  line-height: 1.9;
}

li > li.selected {
  display: none;
}

/* Quality Options */

#qualityOptions > li {
  display: flex;
  align-items: center;
}

#qualityOptions > li > .material-icons.checked {
  display: none;
}

#qualityOptions > li.selected > .material-icons.checked {
  display: inline;
  width: 24px;
  margin-right: 10px;
}

#qualityOptions > li > .material-icons.unchecked {
  display: inline;
  width: 24px;
  margin-right: 10px;
}

#qualityOptions > li.selected > .material-icons.unchecked {
  display: none;
}

/* 2.5D */
.artwork-item .artwork-thumbnail {
  position: relative;
}

.artwork-item .col-5 h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.artwork-item .artwork-thumbnail .sculpture-icon .sculpture-star-image {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 2px;
  left: 2px;
}

/* THUMBNAIL EFFECT */
.artwork-item .artwork-thumbnail img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

/* SEARCH BAR */
.modal-searchbar {
  position: relative;
  width: 100%;
  text-align: left;
}

#search-input {
  border: #ddd solid 1px;
  height: 30px;
  font-family: Helvetica,"sans serif";
  font-weight: 100;
  font-size: 11px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  line-height: 28px;
  color: #333;
  letter-spacing: .5px;
  padding: 0 29px 0 5px;
  box-sizing: border-box;
  width: 70%;
}

.modal-searchbar .lens-icon {
  position: absolute;
  right: calc(30% + 5px);
  width: 16px;
  top: 7px;
}

.hidden {
  display: none;
}
