﻿  body {
  margin: 0 10px 10px 10px;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  letter-spacing: 0;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: liga on;
  color: #444;
  font-size: 16px;
  line-height: 1.55;
}


body, html {
  height: 100%;
}

strong, b {
	font-weight: 600;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: 400;
}

h1 {
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 1.8rem;
  border-bottom: 1px solid hsla(120, 100%, 25%, 0.3);
    padding-bottom: 10px;
}

h2 {
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 1.6rem;
  padding: 0 0 20px 0;
}

h3 {
	line-height: 1.2;
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 100%;
    padding: 0 0 15px 0;
    font-weight: 500;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.text > ul {
  list-style-type: disc;
  text-align:left;
  margin-left:0.5em; 
  padding-left:0.5em;
}

li {
  padding: 5px;
  letter-spacing: 1px;
}

.text > ul > li, .text > ol > li  {
  letter-spacing: 0;
  text-align: left;
}

blockquote {
  margin: 0;
  padding: 0 0 0 80px;
  width: 90%;
  position: relative;
  font-size: 0.95rem;
  font-style: italic;
}

cite {
  display: block;
  color: #000;
  padding: 5px 0 0 0;
}

blockquote::before,
blockquote::after {
  position: absolute;
  display: block;
  font-family: sans-serif;
  font-size: 6rem;
  color: hsla(120, 100%, 25%, 0.3);
}

blockquote::before {
  content: "“";
  left: 25px;
  top: -35px;
}

img {
  width: 100%;
}

.img-flag {
  width: 20px;
  opacity: 0.6;
  padding-left: 10px;
}

a {
  text-decoration: none;
  color: hsl(0, 0%, 30%);
  padding-bottom: 3px;
  background-color: hsla(0, 0%, 100%, 0.7);
  padding: 2px 4px;
}

.text > p > a, .text > ol > li > a, .text > ul > li > a {
	border-bottom: hsla(120, 100%, 25%, 0.7) solid 1px;
    padding: 1px 10px;
  	color: #000;
  	white-space: nowrap;
    background-color: hsla(120, 100%, 25%, 0.05);
    border-radius: 7px;
}

.text > p > a:hover, .text > ol > li > a:hover, .text > ul > li > a:hover {
    background-color: hsla(120, 100%, 25%, 0.1);
}

.teaser-image--a {
	padding: 0;	
}

a:hover {
  color: hsl(0, 0%, 0%);
  background-color: hsla(0, 0%, 95%, 0.4);
  cursor: pointer;
}

.cnt-a {
    border-bottom: hsla(208, 100%, 75%, 0.5) solid 1px;
    padding: 1px 4px;
    color: #000;
    white-space: nowrap;
    cursor: pointer;
}

input {
  border: 1px solid hsl(0, 0%, 75%);
  padding: 0 5px;
  font-size: 1rem;
  width: 160px;
  height: 30px;
}


table {
  border-collapse: collapse;
  border-spacing: 0;
/*  width: 100%; */
  border: none;
}

th,
td {
  text-align: left;
  padding: 8px;
  border-bottom: 10px solid white;
}

.table-form {
  border-collapse: collapse;
  border-spacing: 0;
/*  width: 100%; */
  border: none;
}

.table-form th,
.table-form td {
  text-align: left;
  padding: 7px 0;
  border: 0;
}

.table-form th {
  text-align: right;
  padding-right: 25px;
}

.table-form-input,
.table-form-select,
{
  border: 1px solid hsl(0, 0%, 75%);
  padding: 0 5px;
  font-size: 1rem;
  font-weight: 400;
  width: 350px;
  height: 30px;
}


::-webkit-input-placeholder {
  /* Edge */
  color: hsl(0, 0%, 85%);
}

:-ms-input-placeholder {
  /* Internet Explorer */
  color: hsl(0, 0%, 85%);
}

::placeholder {
  color: hsl(0, 0%, 85%);
}

body {
    -webkit-animation: fadein 0.3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.3s; /* Firefox < 16 */
        -ms-animation: fadein 0.3s; /* Internet Explorer */
         -o-animation: fadein 0.3s; /* Opera < 12.1 */
            animation: fadein 0.3s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ------------------- project elements --------------------- */

.bg {
  background-image: url("--/Cms_Data/Sites/w4wKunstVerkauf/Themes/kv-4/bg.jpg");
  height: 100%;
  opacity: 0.65;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.navi {
  text-align: right;
  padding-top: 0;
}

.navi-item {
  display: block;
  border-top: transparent solid 4px;
  font-size: 1.15rem;
  float: left;
  border-radius: 7px;
}

.navi-item > a {
  text-decoration: none;
  color: #444;
  padding-bottom: 3px;
  background-color: transparent;
  padding: 2px 7px;
  font-size: 1.05rem
}

.navi-item-active > a {
  text-decoration: none;
  color: #0c0c0c;
  padding-bottom: 3px;
  background-color: transparent;
  padding: 2px 4px;
  font-size: 1.05rem
}

.navi-item-active {
  background-color: hsla(120, 100%, 25%, 0.1);
  border-top: hsla(120, 100%, 25%, 0.7) solid 4px;
  float: left;
  border-radius: 7px;
}

.navi-item:hover {
  display: block;
  background-color: hsla(120, 100%, 25%, 0.1);
  border-top: hsla(120, 100%, 25%, 0.7) solid 4px;
  cursor: pointer;
}

.navi-item-active:hover {
  display: block;
  background-color: hsla(120, 100%, 25%, 0.1);
  border-top: hsla(120, 100%, 25%, 0.7) solid 4px;
  cursor: pointer;
}

.mobile-navi {
  display: none;
}

.sidebar {
  grid-area: sidebar;
  background-color:hsla(120, 100%, 25%, 0.2);
  padding: 8px 30px 8px 30px;
  border-radius: 10px;
  margin-top: 10px;
}

.content {
  grid-area: content;
  /* background-color: hsla(0, 0%, 95%, 1); */
}

.content > .obj-cnt > .text,
.content > .text {
  padding: 10px 35px;
  clear: both;
  position: relative;
}

.content > .obj-cnt > .text > .date,
.content > .text > .date {
  color: #a0a0a0;
  font-style: italic;
  font-size: 0.85rem;
}

.content > .obj-cnt > .text > ol,
.content > .text > ol {
  font-style: italic;    
  margin-left: 0.5em;
  padding-left: 0.5em;
}

.content > .obj-cnt > .text > li,
.content > .text > li {
  font-style: italic;
}

.header {
  grid-area: header;
}

.subheader {
  grid-area: subheader;
}

.logo, .logo-a, .logo-a:hover {
  color: hsla(120, 100%, 20%, 0.6);
  font-size: 4.5rem;
  font-weight: 100 !important;
  letter-spacing: 0;
  padding-left: 15px;
  background-color: transparent;
  line-height: 1;
	letter-spacing: 0.85rem;
    text-align: center; 
}

.wrapper {
  margin: 0 auto;
  max-width: 930px;
  display: grid;
  grid-gap: 35px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "sidebar sidebar sidebar" 
    "header  header  header"
    "subheader  subheader  subheader"
    "content content content"
    "footer  footer  footer";
  background-color: #fff;
  color: #444;
}

.box {
  color: #444;
  font-size: 110%;
}

.spacer-10-white {
  height: 10px;
  background-color: #fff;
}

.spacer-35-white {
  height: 20px;
  background-color: #fff;
}

.spacer-70-white {
  height: 70px;
  background-color: #fff;
}


.footer {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 30px 0 30px;

  background-color: hsla(120, 100%, 25%, 0.1);
  color: #444;
  border-radius: 10px 10px 0 0;
}

.footer-2 {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 2fr 1fr;
  background-color: hsla(120, 100%, 25%, 0.1);
  padding: 25px 30px 10px 30px;
  border-radius:  0 0 10px 10px;
}

.footer-2-sub {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 1fr 1fr;
}

.footer-bank {
  grid-column: span 2 / 3; 
  font-size:0.9rem;
  color:#939393;
}

.footer--p-a {
  padding-top: 5px;
}

.footer--a {
border-bottom: hsla(120, 100%, 25%, 0.7) solid 1px;
    padding: 1px 10px;
    color: #000;
    white-space: nowrap;
    background-color: hsla(120, 100%, 25%, 0.05);
    border-radius: 7px;
}

.footer-title, .footer-name, .footer-phone, .footer-name--no-title, .footer-col, .footer-col--center {
	font-size: 1rem;
}

.footer-title {
  	font-weight: 500;
	padding-bottom: 5px;
}

.footer-name {
}

.footer-phone {
  /*  margin-left: 30px; */
}

.footer-name--no-title, .footer-mail--no-title {
   	margin-top: 30px;
}

.text-bold {
  font-weight: 500;
  letter-spacing: 1px;
}

.artist-at-sik {
  background-color: hsla(0, 0%, 95%, 1);
  padding: 35px;
  font-size: 0.95rem;
}

.band {
  width: 0;
  height: 0;
  border-top: 60px solid hsla(208, 100%, 75%, 1);
  border-left: 60px solid transparent;
  position: absolute;
  right: 0;
  top: 0px;
}

.band-text {
  position: absolute;
  display: block;
  transform: rotate(45deg);
  right: 5px;
  top: -51px;
  color: #fff;
  font-size: 1rem;
}

.band--sold {
  width: 0;
  height: 0;
  border-top: 70px solid hsla(0, 0%, 55%, 1);
  border-left: 70px solid transparent;
  position: absolute;
  right: 0;
}

.band-text--sold {
  position: absolute;
  display: block;
  transform: rotate(45deg);
  right: -4px;
  top: -54px;
  color: #fff;
  font-size: 1rem;
}

.select {
  cursor: pointer;
  border-left: 4px solid hsla(0, 0%, 95%, 1);
}

.select:hover {
  border-left: 4px solid hsla(208, 100%, 75%, 1);
}

.btnSearch:hover {
  background-color: hsla(208, 100%, 75%, 0.5);
  color: #fff;
  cursor: pointer;
}


/* -------------------------- list table ---------------------------------------------- */
.list-td-img {
  max-width: 200px;
  min-width: 200px;
  max-height: 200px;
  padding: 35px 35px 25px 35px;
  text-align: center;
  font-size: 1.2rem;
}

.list-td-img--w {
	width: auto;
}

.list-td-title {
  max-width: 200px;
  min-width: 200px;
  max-height: 200px;
  padding: 35px 35px 25px 35px;
  font-size: 1.2rem;
}

.list-td-cnt {
  font-size: 1.1rem;
  position: relative;
  width: 500px;
}

.list-td-cnt-h3 {
  padding-bottom: 5px;
  font-size: 1.4rem;
}

.list-td-cnt-p {
  padding: 0 0 5px 0;
  color: hsla(0, 0%, 44%, 1);
}

.list-td-cnt-sold {
  color: hsla(208, 100%, 60%, 1);
}

.list-td-cnt > a {
  background-color: hsla(0, 0%, 95%, 1);
  color: #444;
}

.list-td-cnt-p0 {
  padding: 0;
  color: hsla(0, 0%, 44%, 1);
}

  .list-div {
  	clear: both;
    width: 100%;
/*  	height: 235px;  */
    border-left: 4px solid hsla(0, 0%, 95%, 1);
    background-color: hsla(0, 0%, 95%, 1);
    margin: 0 7px 15px 8px;
  }
  
  .list-div-img {
    max-width: 200px;
    min-width: 200px;
/*    max-height: 175px;    
    min-height: 175px;  */ 
    padding: 35px 20px 25px 15px;
    text-align: center;
    font-size: 1.2rem;
   	float:left;
  }
  
  .list-div-title {
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    padding: 35px 35px 25px 35px;
    font-size: 1.2rem;
  }
  
  .list-div-cnt {
    font-size: 1.1rem;
    position: relative;
    padding-top: 20px;
  }

.pager, .artist-at-sik > div > a {
  color: #444;
  background-color: #fff;
  padding: 5px 13px;
  font-size: 1.1rem;
  margin-right: 10px;
}

.pager--inactive {
  color: #444;
  background-color: transparent;
  padding: 5px 13px;
  font-size: 1.1rem;
  margin-right: 10px;
}


.pager-active {
  color: #444;
  background-color: #fff;
  padding: 5px 13px;
  font-size: 1.1rem;
  margin-right: 10px;
  border-top: hsla(208, 100%, 75%, 1) solid 4px;
}

.pager:hover {
  border-top: hsla(208, 100%, 75%, 1) solid 4px;
}

.list-td-az {
    width: 150px;
    padding: 0 35px;
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
}

.list-td-az-cnt {
	font-size: 1.1rem;
    position: relative;
    width: 500px;
    padding: 25px 0;
}

.country-flag {
  height:15px;
  padding-left:10px;
  vertical-align:baseline;
  width:20px;
  opacity:0.6;
}

/* --------------------------- GRID IMAGES --------------------------- */

.image-fadeout {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}

.image-fadein {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}


  .grid-images {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: transparent;
    padding-top: 25px;
  }

  .grid-image {
    position: relative;
    height: 175px;
    overflow: hidden;
  }

  .grid-image-fit {
    position: relative;
    height: 100%;
    overflow: hidden;
/*    width: fit-content; */
  	object-fit: cover;
  }
    
  .grid-image .artist {
    position: absolute;
    bottom: 0;
    display: block;
    background-color: hsla(0, 0%, 95%, 0.7);
    border-top: #a0a0a0 solid 2px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }  

 .grid-preview-images {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color: transparent;
    padding-top: 13px;
  }

  .grid-preview-image {
    position: relative;
    height: 100px;
    overflow: hidden;
    border-top: transparent solid 4px;
    box-sizing: border-box;
  	opacity: 0.6;
  }

  .grid-preview-image:hover,.grid-preview-image-selected {
    cursor: pointer;
   	border-top: hsla(208, 100%, 50%, 1) solid 4px;
  	box-sizing: border-box;
    opacity: 1;
  }

.header .artist, .subheader .artist {
  background-color: hsla(0, 0%, 95%, 1);
  padding: 35px;
}

.birthdate {
    font-weight: 300;
    padding-top: 10px;
}

.subtitle {
  font-weight: 300;
  padding-left: 5px;
}

.price {
  padding: 25px 0;
  font-weight: 500;
}

.contact {
  padding-bottom: 15px;
  color: hsl(0, 0%, 50%);
  font-size: 0.95rem;
}

.share {
  color: hsl(0, 0%, 50%);
  font-size: 0.95rem;
}

.bg-white {
  background-color: #fff;
}

/* ---------------------------------------------------- MEDIUM screen ---------------------------------------------- */
@media only screen and (min-width: 1280px) {
  .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1200px;
  }
  
  .logo, .logo-a, .logo-a:hover {
	letter-spacing: 1rem;
    transform: scale(1, 1);

  }
}

/* ---------------------------------------------------- LARGE screen ---------------------------------------------- */
@media only screen and (min-width: 1400px) {
  .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1280px;
  }
    
  .logo, .logo-a, .logo-a:hover {
	letter-spacing: 1rem;
    transform: scale(1.28, 1);
  }
  .navi-item > a, .navi-item-active > a {
    font-size: 1.15rem;
  }
  .grid-preview-images {
      grid-gap: 10px;
  }
    
  .obj-img {
    float: left;
    width: 50%;
  }
  
  .obj-cnt {
    float: left;
    width: 50%;
  }
    
  .grid-images {
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
    
  .content > .obj-cnt > .text, .content > .text {
    padding: 20px;
  }
  
  .list-div {
    clear: inherit;
    float: left;
    width: 492px;
    border-left: 4px solid hsla(0, 0%, 95%, 1);
    background-color: hsla(0, 0%, 95%, 1);
    margin: 0 7px 15px 8px;
  }
  
  .list-div-img {
    max-width: 200px;
    min-width: 200px;
    max-height: 175px;    
    min-height: 175px;
    padding: 35px 15px 25px 10px;
    text-align: center;
    font-size: 1.2rem;
        float:left;
  }
  
  .list-div-title {
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    padding: 35px 35px 25px 35px;
    font-size: 1.2rem;
  }
  
  .list-div-cnt {
    font-size: 1.1rem;
    position: relative;
  }
}

/* ---------------------------------------------------- XLARGE screen ---------------------------------------------- */
@media only screen and (min-width: 1600px) {
  .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1450px;
  }
    
  .logo, .logo-a, .logo-a:hover {
	letter-spacing: 1rem;
    transform: scale(1.28, 1);
  }
  
  .navi-item > a, .navi-item-active > a {
    font-size: 1.15rem;
 }
  
  .grid-preview-images {
      grid-gap: 10px;
  }
    
  .obj-img {
    float: left;
    width: 55%;
  }
  
  .obj-cnt {
    float: left;
    width: 45%;
  }
    
  .grid-images {
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  
  .content > .obj-cnt > .text, .content > .text {
    padding: 20px;
  }
  
  .list-div {
    clear: inherit;
    float: left;
    width: 561px;
    border-left: 4px solid hsla(0, 0%, 95%, 1);
    background-color: hsla(0, 0%, 95%, 1);
    margin: 0 7px 15px 8px;
  }
  
  .list-div-img {
    max-width: 200px;
    min-width: 200px;
    max-height: 175px;    
    min-height: 175px;
    padding: 35px 35px 25px 35px;
    text-align: center;
    font-size: 1.2rem;
        float:left;
  }
  
  .list-div-title {
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    padding: 35px 35px 25px 35px;
    font-size: 1.2rem;
  }
  
  .list-div-cnt {
    font-size: 1.1rem;
    position: relative;
  }
}

/* ---------------------------------------------------- XXLARGE screen ---------------------------------------------- */
@media only screen and (min-width: 1900px) {
  .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1500px;
  }
    
  .logo, .logo-a, .logo-a:hover {
	letter-spacing: 1rem;
    transform: scale(1.28, 1);
  }
  .navi-item > a, .navi-item-active > a {
    font-size: 1.15rem;
  }
  .grid-preview-images {
      grid-gap: 10px;
  }
    
  .obj-img {
    float: left;
    width: 55%;
  }
  
  .obj-cnt {
    float: left;
    width: 45%;
  }
  
  .grid-images {
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
    
  .content > .obj-cnt > .text, .content > .text {
    padding: 20px;
  }
  
  .list-td-title {
    max-width: 375px;
    min-width: 375px;
  }
  
  .list-td-img {
    max-width: 375px;
    min-width: 375px;
  }
  
  .list-td-cnt {
    width: 90%;
  }
  
  .select {
	border-left: 0px;
  }
  
  .list-div {
    clear: inherit;
    float: left;
    width: 703px;
    border-left: 4px solid hsla(0, 0%, 95%, 1);
    background-color: hsla(0, 0%, 95%, 1);
    margin: 0 7px 15px 8px;
  }
  
  .list-div-img {
    max-width: 200px;
    min-width: 200px;
    max-height: 175px;    
    min-height: 175px;
    padding: 35px 35px 25px 35px;
    text-align: center;
    font-size: 1.2rem;
        float:left;
  }
  
  .list-div-title {
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    padding: 35px 35px 25px 35px;
    font-size: 1.2rem;
  }
  
  .list-div-cnt {
    font-size: 1.1rem;
    position: relative;
  }
  
  .list-td-cnt-h3 {
    padding-bottom: 5px;
    font-size: 1.4rem;
  }
  
  .list-td-cnt-p {
    padding: 0 0 5px 0;
    color: hsla(0, 0%, 44%, 1);
  }
  
  .list-td-cnt-sold {
    color: hsla(208, 100%, 60%, 1);
  }
  
  .list-td-cnt > a {
    background-color: hsla(0, 0%, 95%, 1);
    color: #444;
  }
  
  .list-td-cnt-p0 {
    padding: 0;
    color: hsla(0, 0%, 44%, 1);
  }


}

/* ---------------------------------------------------- MOBILE screen ---------------------------------------------- */
@media only screen and (max-width: 767px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
    font-size: 1rem;
  }
  
  h1 {
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
  }
  
  h2 {
    line-height: 1.4;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 0 10px 0;
  }
  
  blockquote {
    padding: 0 0 0 50px;
  }
  
  blockquote::before {
      left: 10px;
      top: -20px;
  }
  
  blockquote::before, blockquote::after {
      font-size: 4rem;
  }
  
  blockquote > p {
	padding-right: 25px;
    font-size: 0.85rem; 
  }

  .ul-with-circle {
    font-size: 1rem;
  }  
  
  #inputSearch {
    margin-top: 30%;
	font-size: 2rem;
    width: 80%;
    height: 50px;
  }
  
  .btnMobSearch {
    color: #696969;
    border: none;
    background: #fff;
    width: 80%;
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.3),0 2px 4px -1px rgba(0,0,0,.2)!important;
    border-radius: 2px;
  }
  
  .mobile-navi {
    position: fixed;
    bottom: 0;
   	left: 0;
    width: 100%;
    min-height: 45px;
    border-top: hsla(120, 100%, 25%, 0.7) solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;   
    background-color: hsl(120, 59%, 87%);
    border-radius: 10px 10px 0 0;
  }
  
  .mobile-navi-item1, .mobile-navi-item2, .mobile-navi-item3, .mobile-navi-item4 {
    text-align: center;
	font-size: 1rem;
    line-height: 1.2rem;
    padding-bottom: 10px;
  }
  
  .mobile-navi-item1 {
    border-right: 1px solid hsla(208, 100%, 75%, 0.5);
    height: 37px;
    padding-top: 24px;
  }
  
  .mobile-navi-item2 {
    padding-top: 10px;
  }
  
  .mobile-navi-item3 {
    border-left: 1px solid hsla(208, 100%, 75%, 0.5);
    border-right: 1px solid hsla(208, 100%, 75%, 0.5);
    height: 40px;
    padding-top: 22px;
  }
  
  .mobile-navi-item4 {
    padding-top: 2px;
    font-size: 3rem;
    color:hsl(0, 0%, 65%);
  }
  
  .text-bold {
	  text-transform: uppercase;
  }

  .birthdate {
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    padding-left: 0;
  }

  .spacer-35-white {
    height: 20px;
  }
  
  .wrapper {
    text-align: center;
    display: grid;
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "header  header  header"
      "subheader  subheader  subheader"
      "content content content"
      "footer  footer  footer";
  }
  
  .sidebar {
    display: none;
  }
  
  .logo, .logo-a, .logo-a:hover {
    font-size: 2.5rem;
    color: #7f7f7f;
    font-weight: 300 !important;
    letter-spacing: 0;
    margin-top: 10px;
    letter-spacing: 0.2rem;
  }
  
   .header .artist, .subheader .artist {
      padding: 20px 35px;
  } 
  
  .grid-images {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: transparent;
    padding-top: 5px;
  }
  
  .grid-image {
      height: 75px;
  }

  .grid-image .artist {
    font-size: 0.8rem;
    background-color: hsla(0, 0%, 95%, 0.5);
    
    display: none;
  }

   .grid-preview-images {
      grid-gap: 15px;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  
    .grid-preview-image {
      height: 75px;
    }
  
  .list-td-cnt-h3 {
    font-size: 1rem;
   }
  
  .list-td-cnt-p {
    font-size: 0.9rem;
  }
  
  .list-td-img--w {
  	width: 70%;
  }
  
  .list-td-az {
      width: 0px;
      padding: 0 25px;
      text-align: center;
      font-size: 2rem;
      font-weight: 300;
  }
  
  .list-td-az-cnt {
      font-size: 1rem;
      position: relative;
      padding: 25px 0;
  }  
  
 .content > .text, .header .artist {
    padding: 5px 25px;
  }    
  
  .list-td-img {
	max-width: 160px;
    min-width: 160px;
    max-height: 160px;
    padding: 5px 5px 0px 0px;
    text-align: center;
    font-size: 1.2rem;
  } 
  
  .list-td-title {
	max-width: 160px;
    min-width: 160px;
    padding: 5px;
    font-size: 0.9rem;
  } 
  
  .list-div {
      width: 99%;
      margin: 0 0px 10px 0px;
  }
  
  .list-div-img {
	padding: 20px 0px 10px 0px;
    font-size:1rem;
  }
  
  .list-div-title {
    padding: 35px 35px 25px 35px;
    font-size: 1.2rem;
  }
  
  .list-div-cnt {
    font-size: 1rem;
    padding-top: 0px;
  }  
  
  .artist-at-sik {
    padding: 25px;
  }
    
  .footer, .footer-2-sub, .footer-2 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    background-color: #fff;
    color: #444;
  }
  
  .footer-bank > p {
  	text-align:center;
  } 
  
  .footer-bank > p:last-child {
  	padding-bottom: 10px;
  } 
    
  .footer-col--center {  
    display: flex;
    align-items: center;
    justify-content: center;
  }
    
  .footer-col > p {
      text-align: center;
  }

  .footer--p-a {
    padding-top: 10px;
  }
      
  .footer-title, .footer-name, .footer-phone, .footer-name--no-title, .footer-col, .footer-col--center {
      font-size: 1rem;
  }
  
  .footer-title {
      font-weight: 500;
      padding-bottom: 5px;
      display: none;
  }
  
  .footer-name {
      margin-top: 0px;
      float: left;
      width: 180px;
  }
  
  .footer-phone {
      margin-left: 0px;
      float: left;
  }
  
  .footer-name--no-title {
      margin-top: 0px;
      float: left;
      width: 180px;
  }
    
  .footer-mail--no-title {
      margin-top: 0px;
      float: left;
      width: 220px;
  }  

}


/* ----------------- Mobile navi ----------------------- */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: hsl(120, 59%, 87%);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 8%;
  width: 100%;
  text-align: center;
  margin-top: px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: #000;		/* #818181; */
  display: block;
  transition: 0.3s;
  
  background-color: transparent;
}

.overlay a:hover, .overlay a:focus {
  color: #818181;
}

.overlay .closebtn {
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 60px;    
  color: hsl(208, 24%, 55%);
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 20px;
  top: 15px;
  right: 35px;
  }
}




/* ----------------- Re-Modal ----------------------- */
html.remodal-is-locked {
    overflow: hidden
}

.remodal,
[data-remodal-id] {
    visibility: hidden
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    content: ""
}

.remodal-overlay,
.remodal-wrapper {
    -webkit-transform: translateZ(0)
}

.remodal {
    position: relative;
    display: inline-block
}

.remodal input,
.remodal input:focus,
.remodal select,
.remodal select:focus,
.remodal textarea,
.remodal textarea:focus {
    font-size: 16px
}

.remodal-title {
    font-size: 130%;
    padding-bottom: 15px
}

.remodal-div {
    padding-bottom: 10px
}

.remodal-label {
    width: 100%;
    display: inline-block;
    text-align: left;
    padding-bottom: 2px;
    padding-top: 8px;
    font-size: 95%
}

.remodal-input {
    width: 100%;
    padding: 5px
}

.remodal-bg {
    -webkit-transition: -webkit-filter .2s ease-out;
    -moz-transition: -moz-filter .2s ease-out;
    -o-transition: -o-filter .2s ease-out;
    transition: filter .2s ease-out
}

body.remodal-is-active .remodal-bg {
    -webkit-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px)
}

.remodal-overlay {
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    -o-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
    opacity: 0;
    background: rgba(33, 36, 46, .95)
}

body.remodal-is-active .remodal-overlay {
    opacity: 1
}

.remodal {
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    padding: 35px;
    -webkit-transition: -webkit-transform .2s ease-out, opacity .2s ease-out;
    -moz-transition: -moz-transform .2s ease-out, opacity .2s ease-out;
    -o-transition: -o-transform .2s ease-out, opacity .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out;
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transform: scale(.95);
    opacity: 0;
    color: #182a3c;
    background: #f4f4f4;
    background-clip: padding-box
}

body.remodal-is-active .remodal {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    background-color: hsla(0, 0%, 90%, 1);
}

.remodal,
.remodal-wrapper:after {
    vertical-align: middle
}

.remodal-close {
    border: none;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 28px;
    height: 28px;
    -webkit-transition: background .2s ease-out;
    -moz-transition: background .2s ease-out;
    -o-transition: background .2s ease-out;
    transition: background .2s ease-out;
    text-decoration: none;
	background-color: hsla(0, 0%, 90%, 1);
}

.remodal-close:after {
    font-size: 28px;
    line-height: 28px;
    display: block;
    content: "×";
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-decoration: none;
}

.remodal-close:active.remodal-close:after,
.remodal-close:hover.remodal-close:after {
    color: #f4f4f4
}

.remodal-cancel,
.remodal-confirm {
    display: inline-block;
    width: 120px;
    margin: 0 0 5px;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-align: center;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 110%
}

.remodal-confirm {
    color: #FFF;
    border: 1px solid hsla(208, 100%, 70%, 1);
    background: hsla(208, 100%, 70%, 1);
}

.remodal-confirm:active,
.remodal-confirm:hover {
    border: 1px solid #FFF;
    color: #fff;
    background: hsla(208, 100%, 70%, 1);
}

.remodal-cancel {
    color: hsla(208, 100%, 70%, 1);
    border: 1px solid hsla(208, 100%, 70%, 1);
    background: transparent;
}

.remodal-cancel:active,
.remodal-cancel:hover {
    color: hsla(208, 100%, 70%, 1);
    border: 1px solid #FFF
}

@media only screen and (min-width: 40.063em) {
    .remodal {
        max-width: 700px;
        min-height: 0;
        margin: 20px auto
    }
    .remodal-input,
    .remodal-label {
        width: 70%
    }
}