/* ==========================================================================
Responsify V3 - Stylesheet
========================================================================== */
.scrollbar-measure {
  width: 100px;
  height: 100px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
}

/* ==========================================================================
Breakpoint Definitions, Media Query Mixins and Helper Classes
========================================================================== */
/* Breakpoint Definitions */
/* Mixins */
/* ==========================================================================
Responsive Wrapper (Use Nesting!)
Page Hierachy:
body
    .wrapper
        #header (Logo, Showcase, Search, Login/User)
        .contain-to-grid.sticky (Main Header Menu Container)
            .top-bar (Main Header Menu)
        .row.mainrow (Content)
            .leftcontainer (Left Column)
                #sideLeft (Sidebar Left)
            .maincontainer#pageNameHere (Middle Column - Main Content)
                .row.header (Page Title)
========================================================================== */
html.responsive {
  /*
        width: 100vw;
        min-height: unset;
        height: auto;
        @include large {
            overflow-x: hidden;
        }
        */
  overflow: unset;
  overflow-x: hidden;
  height: unset;
  min-height: unset;
}

html.responsive:not(.user-stylesheet) {
  background: unset;
}

body #header .logo {
  position: relative;
}

body #header .logo:after {
  content: 'not responsive';
  display: block;
  position: absolute;
  bottom: 0;
  line-height: 24px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  font-style: italic;
  letter-spacing: 3px;
  color: grey;
  transition: 300ms ease-in-out;
}

@media (max-width: 1010px) {
  body footer > .row {
    max-width: 100vw;
    margin-left: 0;
  }
}

body:not(.responsive) #sidebarExpandable {
  margin-left: auto !important;
}

body:not(.responsive) .burger-bar {
  display: none;
}

body:not(.responsive) #header .logo:after {
  opacity: 0.75;
  bottom: -24px;
}

body.responsive {
  /*
            BODY
        */
  width: 100vw;
  height: unset;
  min-height: unset;
  /*
            HEADER
        */
  /* 
            EXHIBITIONS
        */
  /*
            MAIN MENU
        */
  /* 
            WRAPPER AND MAIN ROW 
        */
  /*
            SIDEBAR
        */
  /*
            MAIN CONTAINER
        */
  /*
            HOMEPAGE
        */
  /* 
            COMMENTS (aka Community Page)
        */
  /*
            WORKS
        */
  /*
            PAINTBOARD
        */
  /*
            ARTIST PAGE (no ID, great x.x)
        */
  /*
            UEBER UNSERE LEIDENSCHAFT
        */
  /*
            MEMBERSHIP
        */
}

@media (max-width: 1010px) {
  body.responsive .desktop-only {
    display: none;
  }
}

body.responsive .mobile-only {
  display: none;
}

@media (max-width: 1010px) {
  body.responsive .mobile-only {
    display: flex;
  }
}

body.responsive .burger-bar .icon-info-navigation-green:before {
  color: inherit !important;
  transform: translateY(2px);
  display: inline-block;
}

body.responsive .burger-back {
  margin: 4px 0;
  height: calc(40px - (2 * 4px));
  width: 40px;
  padding: 6px;
  border: 1px solid white;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transition: 300ms ease-in-out;
}

body.responsive .burger-back.active {
  cursor: pointer;
  pointer-events: all;
  opacity: 0.8;
}

body.responsive .burger-back.active:hover {
  opacity: 1;
}

body.responsive .burger-back__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: 300ms ease-in-out;
}

body.responsive .burger-back__bar:first-of-type {
  width: 50%;
  transform: rotate(-45deg) translateY(2px);
  transform-origin: left;
}

body.responsive .burger-back__bar:last-of-type {
  width: 50%;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: left;
}

body.responsive .burger-title {
  display: none;
  width: calc(100% - (2 * 40px));
  padding: 0 12px;
  text-align: center;
  line-height: 40px;
  color: white;
}

body.responsive .burger-cutoffmenu {
  width: calc(100% - 40px);
  padding-right: 12px;
  line-height: 40px;
  margin-left: -40px;
  overflow: hidden;
  height: 40px;
}

body.responsive .burger-cutoffmenu__item {
  display: inline-block;
  color: #d9d9d9;
  padding: 0 12px;
  text-decoration: none;
}

body.responsive .burger-cutoffmenu__item.active {
  color: #9c0;
  background-image: url(https://www.artoffer.com/_v3/Images/Views/Shared/bgs.png) !important;
  background-position: 0 -360px;
  background-color: transparent !important;
}

body.responsive .burger-bar {
  width: 100%;
  padding: 0 8px;
  justify-content: space-between;
  position: relative;
}

body.responsive .burger-bar.active .burger-cutoffmenu {
  display: none;
}

body.responsive .burger-bar.active .burger-title {
  display: block;
}

body.responsive .burger-toggle {
  margin: 4px 0;
  height: calc(40px - (2 * 4px));
  width: 40px;
  padding: 6px;
  border: 1px solid white;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  align-content: space-between;
  flex-wrap: wrap;
  opacity: 0.8;
  cursor: pointer;
  transition: 300ms ease-in-out;
}

body.responsive .burger-toggle:hover {
  opacity: 1;
}

body.responsive .burger-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: 300ms ease-in-out;
}

body.responsive .burger-toggle.active .burger-toggle__bar:first-of-type {
  transform: rotate(45deg) translate(6px, 6px);
}

body.responsive .burger-toggle.active .burger-toggle__bar:nth-of-type(even) {
  opacity: 0;
}

body.responsive .burger-toggle.active .burger-toggle__bar:last-of-type {
  transform: rotate(-45deg) translate(6px, -5px);
}

body.responsive .burger-nav {
  font-size: .9375rem;
  /*
            &:after {
                content: '';
                display: block;
                position: absolute;
                bottom: 0; left: 0; right: 0;
                width: 100%;
                height: 2rem;
                background: linear-gradient(to top, black, transparent);
            }
            */
  position: absolute;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  align-content: space-evenly;
  justify-content: center;
  flex-wrap: wrap;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background: #444444;
  box-shadow: 0 15px 30px -15px black;
  /*height: calc(100vh - 40px);*/
  min-height: 200px;
  text-align: center;
  max-height: calc(100vh - 124px - 40px - 1rem);
  overflow-y: scroll;
}

body.responsive .burger-nav:not(.active) {
  display: none;
}

body.responsive .burger-nav__item {
  text-decoration: none;
  line-height: 42px;
  width: 100%;
  text-align: center;
  display: block;
  color: #d9d9d9;
  transition: 300ms ease-in-out;
}

body.responsive .burger-nav__item:hover, body.responsive .burger-nav__item.active {
  color: white;
  background: rgba(0, 0, 0, 0.1);
}

body.responsive .burger-nav__item.active {
  color: #9c0 !important;
}

body.responsive .burger-nav__item--no-link {
  cursor: inherit;
}

body.responsive .burger-nav__item--seperator {
  background: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: bold;
  margin-top: 1.5rem;
  line-height: 30px;
  width: auto;
  /*display: inline-block;*/
  padding: 0 1rem;
}

body.responsive .burger-nav__item--seperator:first-child {
  margin-top: unset;
}

@media (max-width: 1010px) {
  body.responsive {
    background: unset;
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  body.responsive #js-notification-ticker {
    display: none !important;
  }
}

body.responsive #header .headermenucontainer2 {
  text-align: right;
  width: unset;
}

@media (max-width: 1010px) {
  body.responsive #exhibitions > .row .centercol {
    width: 100% !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #exhibitions > .row .centercol > .panel {
    width: 100% !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #exhibitions > .row .centercol > .ex_list {
    width: 100% !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #exhibitions > .row .centercol .ei_text {
    display: flex !important;
    justify-content: space-between;
  }
}

@media (max-width: 1010px) {
  body.responsive #exhibitions > .row .centercol .ei_text .left {
    padding-right: 8px;
    max-width: unset !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #projectsite {
    width: calc(100% - 232px) !important;
  }
}

@media (max-width: 640px) {
  body.responsive #projectsite {
    width: calc(100% - 20px) !important;
    margin-left: 10px !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #projectsite .exhibitions-note {
    width: 100% !important;
    border-right: none !important;
    height: auto !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #projectsite .banner {
    margin: 0 8px;
  }
}

@media (max-width: 1010px) {
  body.responsive #projectsite .banner .bar-mid {
    height: auto !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #projectsite > ul {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 1010px) {
  body.responsive #projectsite > ul li {
    width: 50%;
  }
}

@media (max-width: 1010px) {
  body.responsive .detail-page .au_userimage {
    height: auto !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #loggedIn > .small-13 {
    width: 100%;
    padding-right: 8px !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #loggedIn > .small-11 {
    width: 100%;
    padding-right: 12px;
  }
}

body.responsive .top-bar {
  width: 100%;
  max-width: unset;
  padding-left: 0;
  display: flex;
  justify-content: center;
  height: auto !important;
  background: #292929;
  background: linear-gradient(to bottom, #454545, #3b3b3b, #303030);
}

body.responsive .top-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body.responsive .fixed {
  /*
            position: sticky !important;
            */
}

body.responsive.f-topbar-fixed {
  /*
            padding-top: 0 !important;
            */
}

body.responsive .wrapper {
  min-width: unset;
  margin-bottom: 0;
}

@media (max-width: 1010px) {
  body.responsive .wrapper {
    background: none;
  }
}

body.responsive .mainrow {
  max-width: 1017px;
}

body.responsive .leftcontainer {
  width: auto;
}

body.responsive .leftcontainer #sideLeft {
  width: 183px;
  margin-right: 16px;
  margin-left: 8px;
}

body.responsive #sidebarExpandable {
  left: 0 !important;
  margin-left: 0;
}

body.responsive .al_block_clone {
  transform: translateX(3px);
}

body.responsive .maincontainer {
  width: calc(100% - 242px);
  margin-left: 14px;
}

body.responsive #homepage {
  margin-left: 11px;
}

@media (max-width: 1010px) {
  body.responsive #homepage .centercol {
    padding-right: 16px !important;
    width: calc(100% - 232px);
  }
}

@media (max-width: 800px) {
  body.responsive #homepage .rightcol {
    display: none;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage h1 {
    height: unset;
    white-space: unset;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage table {
    width: auto !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage table img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage .hp_largeimage_side {
    display: none;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage .hp_largeimage img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage .js-large-image-footer .top-row {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    align-items: center;
    align-content: center;
  }
}

@media (max-width: 1010px) {
  body.responsive #homepage .js-large-image-footer .contact-sale {
    margin: 0 !important;
    position: static;
  }
}

body.responsive #comments .columnz {
  padding-right: 20px;
}

body.responsive #comments .comment_item {
  margin-bottom: 20px !important;
  width: 100% !important;
}

body.responsive #works #js-infinite-results-works {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

body.responsive #works #js-infinite-results-works > li {
  width: calc(100% / 5);
  display: block !important;
  overflow: hidden !important;
}

body.responsive #works #js-infinite-results-works > li > div {
  display: block !important;
  height: auto !important;
}

body.responsive #works #js-infinite-results-works > li > div > a > div {
  max-width: 100% !important;
}

body.responsive #works #js-infinite-results-works > li > div > a > img {
  max-height: calc(100vw / 8);
  max-height: 110px;
  border: 12px solid white;
  border-bottom: none;
  border-top: none;
}

@media (max-width: 1010px) {
  body.responsive #works #js-infinite-results-works > li > div > a > img {
    max-height: unset;
  }
}

body.responsive #works #js-infinite-results-works.small-block-grid-3 > li {
  width: calc(100% / 3);
}

body.responsive #works #js-infinite-results-works.small-block-grid-3 > li img {
  max-height: 180px;
}

@media (max-width: 800px) {
  body.responsive #works #js-infinite-results-works.small-block-grid-3 > li img {
    max-height: 110px;
  }
}

body.responsive #works input#inputthumbnailstop,
body.responsive #works label[for="inputthumbnailstop"],
body.responsive #works input#ip-thumbs,
body.responsive #works label[for="ip-thumbs"] {
  display: none;
}

body.responsive #works #fm-works-adv .row.panel > .row > .columns {
  white-space: nowrap;
  width: 50%;
}

body.responsive #works .mldd_sub {
  box-shadow: none !important;
}

body.responsive #works #wk_adv_search .caption {
  line-height: 14px;
}

@media (max-width: 1010px) {
  body.responsive #paintboard .header h1 {
    height: unset;
  }
}

@media (max-width: 1010px) {
  body.responsive #paintboard .header h1 .light {
    width: 100%;
    display: block;
  }
}

body.responsive .pb_image > div {
  width: auto !important;
}

body.responsive .pb_image img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 500px;
}

body.responsive #artistPageSidebar {
  width: 207px;
  display: block !important;
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar {
    display: flex !important;
    height: unset !important;
    min-height: unset !important;
    width: 100%;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft {
    width: calc(100% - 28px);
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    min-height: unset;
  }
}

@media (max-width: 1010px) {
  body.responsive #artistPageSidebar #sideLeft .al_langnote {
    display: none;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft .bottom-shadow {
    display: none;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_left_ad_header,
body.responsive #artistPageSidebar #sideLeft #js-infinite-results-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_left_dropdown {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_left_dropdown button {
    display: none;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_dropdown_navi {
    left: 24px;
    width: calc(100% - 64px);
    max-width: unset;
    box-shadow: none;
    border-radius: 0 !important;
    border: none !important;
    position: static;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_dropdown_navi li {
    border-radius: 0 !important;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_dropdown_navi:before, body.responsive #artistPageSidebar #sideLeft #ar_dropdown_navi:after {
    display: none;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_left_top {
    width: 100%;
    max-width: 50%;
    float: left;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft #ar_left_toplinks {
    width: 100%;
    max-width: 50%;
    padding: 1rem 0;
    float: left;
    border-bottom: 0;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft .nav-left {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageSidebar #sideLeft .nav-left li:first-child a {
    /*border-top: 1px solid #353535;*/
  }
}

@media (max-width: 1010px) {
  body.responsive #artistPageContent {
    width: calc(100% - 232px);
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageContent {
    width: calc(100% - 32px);
  }
}

@media (max-width: 800px) {
  body.responsive #artistPageContent .ar_gallery li {
    width: 100%;
  }
}

@media (max-width: 1010px) {
  body.responsive #artistPageContent .ar_home_img > .columns {
    display: block;
    width: 50% !important;
    float: left !important;
    padding-right: 6px;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageContent .ar_home_exhibition td {
    width: 100% !important;
    display: block;
  }
}

@media (max-width: 640px) {
  body.responsive #artistPageContent .ar_home_exhibition td:last-child {
    margin-bottom: 1rem;
  }
}

@media (max-width: 1010px) {
  body.responsive #artistPageContent > .row > .columns {
    width: 100%;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.third {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.third .columns.small-11 {
    width: 100%;
    order: 2;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.third .columns.small-12 {
    width: 100%;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.fifth {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.fifth .columns.small-11 {
    width: 100%;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.fifth .columns.small-12 {
    width: 100%;
    order: 2;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion .row.fifth img {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 1010px) {
  body.responsive #artIsOurPassion h1 {
    height: unset;
  }
}

@media (max-width: 1010px) {
  body.responsive #membership .header-links {
    margin-bottom: 1rem;
  }
}

@media (max-width: 1010px) {
  body.responsive .ar_largeview_nav.mobile {
    display: block !important;
  }
}

@media (max-width: 1010px) {
  body.responsive .ar_largeview_nav:not(.mobile) {
    display: none !important;
  }
}

body .hp_footer > .columns.small-19 > .row > .columns.small-18 {
  transform: translateX(1px);
}

@media (max-width: 1010px) {
  body .hp_footer {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 1010px) {
  body .hp_footer > .columns.small-5 {
    width: 188px;
    display: flex;
    justify-content: center;
    margin-left: 3px;
  }
}

@media (max-width: 1010px) {
  body .hp_footer > .columns.small-19 {
    width: calc(100% - 40px);
    margin-left: 28px;
    border: none;
  }
}

@media (max-width: 1010px) {
  body .hp_footer > .columns.small-19 > .row {
    display: flex;
    max-width: 330px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body .hp_footer > .columns.small-19 > .row {
    max-width: unset;
  }
}

@media (max-width: 1010px) {
  body .hp_footer > .columns.small-19 > .row > .columns.small-6 {
    display: none;
  }
}

@media (max-width: 1010px) {
  body .hp_footer > .columns.small-19 > .row > .columns.small-18 {
    border: none;
  }
}

@media (max-width: 1010px) {
  body .hp_footer > .columns.small-19 > .row > .columns.small-18 a {
    width: 100%;
  }
}

@media (max-width: 1010px) {
  body .hp_largeimage {
    max-width: 100% !important;
  }
}

@media (max-width: 1010px) {
  body .hp_largeimage > a {
    max-width: 100% !important;
  }
}

@media (max-width: 1010px) {
  body .hp_largeimage table td:last-child {
    width: 100% !important;
  }
}

@media (max-width: 1010px) {
  body .parent-link.js-generated {
    display: none !important;
  }
}

/* Media Queries */
@media only screen and (max-width: 1010px) {
  body.responsive .js-artist-presentation > img {
    width: 80px;
    height: auto;
  }
  body.responsive .js-artist-presentation > div {
    display: block;
    width: 100%;
    max-width: 120px;
  }
  /* Scale the Image Thumbs Grid */
  body.responsive #works #js-infinite-results-works > li {
    width: calc(100% / 4);
  }
  body.responsive #works #js-infinite-results-works > li > div > a > img {
    max-height: calc(100vw / 6);
  }
  /* Work Search Grid Fixes */
  body.responsive #works #wk_search {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body.responsive #works #wk_search > .columns {
    width: 100%;
    padding: 2px 0;
  }
  body.responsive #works #wk_search > .columns.small-4 {
    width: calc(50% - 2px);
  }
}

@media only screen and (max-width: 800px) {
  /* Scale the Image Thumbs Grid */
  body.responsive #works #js-infinite-results-works > li {
    width: calc(100% / 3);
  }
  body.responsive #works #js-infinite-results-works > li > div > a > img {
    max-height: calc(100vw / 4);
  }
  body.responsive #hp_centercol {
    border-right: none !important;
    border-radius: 0 !important;
  }
  body.responsive #homepage .centercol {
    width: calc(100% - 32px);
    /* #homepage .rightcol is 200px */
  }
}

@media only screen and (max-width: 640px) {
  /* Limit the Header Search Box Width */
  /*
    body.responsive #header-menu .search-input-container > input {
        max-width: 160px !important;
    }
    */
  /* Hide the Sidebar and Search Filed */
  body.responsive #header-menu .search-input-container > input,
body.responsive #header-menu .search-input-container > #js-search-site,
body.responsive .leftcontainer {
    display: none !important;
  }
  /* Give the Main Container a proper Width */
  body.responsive .maincontainer {
    width: calc(100% - 28px);
  }
  /* Scale the Image Thumbs Grid */
  body.responsive #works #js-infinite-results-works > li {
    width: calc(100% / 2);
  }
  body.responsive #works #js-infinite-results-works > li > div > a > img {
    max-height: calc(100vw / 2);
  }
  body.responsive #homepage {
    margin-left: 26px;
  }
  body.responsive .hp_footer > .columns.small-5 {
    display: none;
    /* Go to member Button from Sidebar */
  }
  body.responsive .hp_footer > .columns.small-19 {
    width: 100%;
    margin: 0;
  }
  body.responsive .hp_footer > .columns.small-19 > .row > .columns.small-18 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 0 4rem;
  }
}

/* Added: Showcase Indicator in Left Sidebar Panel */
@keyframes shine {
  from {
    /*
        transform: scale(1);
        letter-spacing: 4px;
        */
  }
  to {
    /*transform: scale(1.1);*/
    background-position: 200% center;
    /*letter-spacing: 3px;*/
  }
}

#hp_claim {
  position: relative;
}

#hp_claim:hover {
  cursor: pointer;
}

#hp_claim > * {
  transition: 300ms ease-in-out;
}

#hp_claim:hover #hp_claim_showcase {
  /*transform: scale(1.1);*/
  background: linear-gradient(45deg, #00b8ff 20%, #f10058 40%, #f10058 60%, #00b8ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: none;
  background-size: 200% auto;
  animation: shine 3s ease-in-out infinite alternate;
}

#new_showcase:hover > span {
  /*transform: scale(1.1);*/
  background: linear-gradient(45deg, #00b8ff 20%, #f10058 40%, #f10058 60%, #00b8ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: none;
  background-size: 200% auto;
  animation: shine 3s ease-in-out infinite alternate;
}

#new_showcase > span {
  font-family: "akkzidenzbold",Arial;
  font-size: 36px;
  white-space: nowrap;
  letter-spacing: 4px;
  font-weight: bold;
  display: block;
}

#artist_showcase:hover > span {
  color: #390;
}

#artist_showcase > span {
  font-family: "akkzidenzbold",Arial;
  font-size: 36px;
  white-space: nowrap;
  letter-spacing: 4px;
  font-weight: bold;
  display: block;
  transition: 300ms ease-in-out;
}

#hp_claim_showcase {
  display: block !important;
  font-family: "akkzidenzbold",Arial;
  font-size: 36px;
  color: #fff;
  position: absolute;
  top: 0;
  display: block;
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 4px;
  text-align: center;
}

/* Added: Tiny Header */
html.tiny-header #header, html.tiny-header #header-inner, html.tiny-header #header-menu {
  height: unset !important;
}

html.tiny-header #slogan {
  display: none !important;
}

html.tiny-header .logo {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

html.tiny-header #js-notification-ticker {
  margin-top: 0 !important;
  margin-right: -4px !important;
}

html.tiny-header #header-inner {
  display: flex !important;
  align-items: center;
}

body #header .logo:after {
  display: none !important;
}

/*
html {
    transition: 300ms ease-in-out !important;
    filter: blur(0px) grayscale(1);
    opacity: 0;
}
html.is-loaded {
    filter: blur(0px) grayscale(0);
    opacity: 1;
}
*/
/* Fixed Portrait Portrait Images */
.al_block.pro-members a.al_element img[src*="/pls/"] {
  height: 107px;
  width: 152px;
  object-fit: cover;
  object-position: top;
}
