@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: #0f0;
    color:#000;
    line-height: 1.2;
    margin: 0;

    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;

}

a {
  color: black;
}


.close {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.close:after,.close:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #000
}

.close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.close.big {
    -webkit-transform: scale(3);
    transform: scale(3)
}

.close.hairline:after,.close.hairline:before {
    height: 1px
}

.close.thick:after,.close.thick:before {
    height: 4px;
    margin-top: -2px
}

.close.black:after,.close.black:before {
    height: 8px;
    margin-top: -4px
}

.close.heavy:after,.close.heavy:before {
    height: 12px;
    margin-top: -6px
}

.close.pointy::Before,.close.pointy:after {
    width: 200%;
    left: -50%
}

.close.rounded:after,.close.rounded:before {
    border-radius: 5px
}

.close.blades:after,.close.blades:before {
    border-radius: 5px 0
}

.close.warp:after,.close.warp:before {
    border-radius: 120% 0
}

.close.fat:after,.close.fat:before {
    border-radius: 100%
}


/*
 *  Generic Classes
 */

.no-margin-bottom {
    margin-bottom: 0!important;
}

.no-margin-top {
    margin-top: 0!important;
}

.underlined {

}

.unstyled-list {
    list-style-type: none;
    padding: 0;
}

.column-50 {
  width: 50%;
}

/*
 *  LOGO
 */

#gcg-logo {
    position: fixed;
    top: .75rem;
    right: 1.75rem;
    margin: 0;
    z-index: 15;
    cursor: pointer
}


.logo-position-bottom-right #gcg-logo  {
    top: auto;
    bottom: .75rem;
    left: auto;
    right: 1.75rem;
}

.logo-position-bottom-left #gcg-logo  {
    top: auto;
    bottom: .75rem;
    right: auto;
    left: 1.75rem;
}

.logo-position-top-left #gcg-logo  {
    bottom: auto;
    top: .75rem;
    right: auto;
    left: 1.75rem;
}




#gcg-logo .logo-wrapper {
    position: relative
}

#gcg-logo .logo-wrapper .name {
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    text-align: right;
    text-transform: lowercase;
    opacity: 0;
    display: block
}

#gcg-logo .logo-wrapper .br {
    display: block
}

#gcg-logo .logo-wrapper .wr {
    position: relative;
    width: 100%;
    height: 80px;
    text-align: right
}

#gcg-logo .logo-wrapper .wr .close-btn {
    position: absolute;
    top: 18px;
    right: 0;
    opacity: 0;
    cursor: pointer
}

#gcg-logo .logo-wrapper .wr img {
    width: 80px;
    top: 0;
    left: 0;
    opacity: 1;
    margin-right: -9px;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.open #gcg-logo .logo-wrapper .close-btn {
    opacity: 1
}

.open #gcg-logo .logo-wrapper img {
    opacity: 0;
}

.open #gcg-logo .logo-wrapper .name {
    opacity: 1
}


/*
 *  NAV
 */


#gcg-nav {

    display: none;
    pointer-events: none;

}

.nav-wrapper {

    margin: 0;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 5;
    width:100%;
    height: 100vh;
    box-sizing: content-box;
    background: rgba(0,255,0,.95);
    list-style-type: none;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
    z-index: 10;


}

#gcg-nav .menu-columns {

    display: flex;
    flex-direction: row;
    width:90%;
    padding-left: 60px;


}

.menu-nav {
    width:50%;
    margin-right: 5%;
}



#gcg-nav ul li {
    line-height: 1.75;
    font-size: 2.25rem;
    position: relative;
}

#gcg-nav ul li:after {
    content:" ";
    position: absolute;
    bottom:-.5rem;
    display:block;
    width: 25%;
    border-top: 4px solid black;
}

#gcg-nav ul li a {
    color: #000;
    text-decoration: none
}

#gcg-nav .menu {

}

@keyframes navStatementAnim {
    0%   {color: #0f0;}
    49%  {color: #0f0;}
    50%  {color: #000;}
    99%  {color: #000;}
    100%  {color: #0f0;}
}



#gcg-nav .nav-statement {

    font-size: 2.25rem;
    line-height: 1.75;
    font-weight: 300;
    color:#0f0;
	font-style: italic;
    transition: color .5s ease;

    cursor: default;


    animation-name: navStatementAnim;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;



}
.nav-title{

	transform: rotate(-90deg);
	position: fixed;
	left: 0;
	top: 100%;
	width: 100vh;
	
	
	transform-origin: left top;
}
.nav-title h1{
	transform: scale(1, 0.5);
	text-transform: uppercase;
	font-size: 48px;
	text-align: center;
	margin: 0;
}
.nav-title h1 a{
	text-decoration: none;
}
#gcg-nav .nav-statement:hover {
    color:black;
    animation:none;
}

#gcg-nav .nav-statement p:first-child {
    margin-top:0;
}


#gcg-nav .nav-statement a {
    font-weight: 500;
    display: inline-block;
    color:black;
}

.open #gcg-nav {
  display: block;
  pointer-events: all;
}


@media screen and (max-width: 640px) {

    #gcg-nav, #gcg-nav p {
        font-size: 2.25rem;
    }


}
@media screen and (max-width: 960px) {

    #gcg-nav, #gcg-nav p {
        font-size: 2.25rem;
    }

    #gcg-nav .nav-statement {
        width:90%;
    }

    #gcg-nav ul {
        background:#0f0
    }

    #gcg-nav ul li {
        text-align:left;
        font-size: 28px
    }
}



#layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: content-box;}

#layout-content {
    flex: 1;
}
/*
 *  CONTENTS AREA
 */

#gcg-contents {
    position: relative;
    width: 100%;
    padding: 5vh 3.5vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    flex:1;

}

#gcg-contents .info-contacts {
    margin-top: 4rem
}

@media screen and (max-width: 960px) {
    #gcg-contents {
        width:100%
    }
}


#gcg-contents hgroup {
    margin-bottom: 1em
}

#gcg-contents hgroup h3 {
    font-size: 3.75em;
    margin: 0
}

@media screen and (max-width: 960px) {
    .open #gcg-contents hgroup h3 {
        font-size:2em
    }
}

#gcg-contents .page-headgroup {
    margin-bottom: 3rem;
}

#gcg-contents .page-supertitle {

    font-size: 1.25rem;
    background: #000;
    color:#0f0;
    display: inline-block;
    font-weight: 300;
    line-height: 1.65;
    padding: 0 .5rem;
    margin-bottom: 0.5rem;
}

#gcg-contents .page-title {
    font-size: 3.25em;
    border-bottom: 6px solid #000;
    display: inline-block;
    line-height: 1.35;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 1rem;

    /*background: #0f0;*/

}
#gcg-contents .page-subtitle {
    font-size: 1.65rem;
    display: block;
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
    margin-top: -.65rem;
    margin-bottom: 2rem;
    /*background: #0f0;*/

}

#gcg-contents .page-subtitle-2, #gcg-contents .page-subtitle-2 p {
    font-size: 1.5rem;
    display: block;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
    margin-top: -.5rem;
    margin-bottom: 2rem;
    /*background: #0f0;*/
    margin-top: .25rem;
}



#gcg-contents .page-title em {
    text-decoration: line-through
}


#gcg-contents .section-title {
    font-size: 2em;
    border-bottom: 6px solid #000;
    display: inline-block;
    line-height: 1.35;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 1rem;
    /*background: #0f0;*/
}

@media screen and (max-width: 960px) {
    #gcg-contents .page-title {
        line-height: 1.15;
    }
}

#gcg-contents hgroup h5 {
    font-size: 1.25em;
    margin: 0;
    margin-left: 2.5rem;
    font-weight: 400
    background: #0f0;
    padding: .5rem;
}

#gcg-contents p, #gcg-contents li, #gcg-contents td, #gcg-contents th {
    font-size: 2.25rem;
    font-weight: 300;
    margin: 0;
    margin-bottom: 1em;
    line-height: 1.35;

}

#gcg-contents a {
    color: #000
}


/*
 * TEASER GREENBOX
 */

.upcoming-exhibition-teaser {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width:100%;

    display: flex;
    padding: 20px 20px;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    z-index: 2;
    box-sizing: border-box;
}

.teaser-cover {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width:100%;
    overflow: hidden;
    z-index: 2;
    background-color: #0f0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-blend-mode: multiply;
    opacity: 0.3;
}

.teaser-cover img {
    height: 100vh;
    width:100%;

    object-fit: cover;
    object-position: center;
    z-index: 2;

}

.greenbox {

    width:400px;
    background-color: #0f0;

    padding:1.5rem 2.5em;
    text-align:center;
    box-shadow: 0 0 50px rgba(0,0,0,.1);
    z-index:2;

}

#gcg-contents .greenbox .page-supertitle {
    color:black;
    background: none;
    margin-bottom: 0rem;
}

#gcg-contents .greenbox .page-title {

    margin-top: 0.5rem;
    font-size: 32px;
    border: none;
    line-height: 1.15;
    font-weight: bolder;
    word-break: inherit;

}
.upcoming-exhibition-title{
	margin: 0 auto;
	max-width: 700px;
	position: relative;
}
#gcg-contents .upcoming-exhibition-title .page-title {
	font-size: 140px;
	transform: scale(1, 0.5);
	color: transparent;
    text-shadow:
       -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
         1px 1px 0 #000;
    font-weight:900;
    border-bottom: none;
    word-break: break-all;
    text-align: center;
    margin: 0;
    line-height: 1;
    letter-spacing: -5%;
}

@supports((text-stroke: 2px black) or (-webkit-text-stroke: 2px black)) {
    #gcg-contents .upcoming-exhibition-title .page-title {
        color: transparent;
        -webkit-text-stroke: 2px black;
        text-stroke: 2px black;
        text-shadow: none;
    }
}
#gcg-contents .upcoming-exhibition-title .page-subtitle-image{
	width: 40%;
	position: absolute;
	right: -10%;
	top: 60%;
	margin: 0;
}


.upcoming-exhibition-header{
	position: relative;
	text-transform: uppercase;
}
.upcoming-exhibition-header h3{
	font-size: 24px;
	margin: 0;
	text-transform: uppercase;
	font-style: italic;
}
.upcoming-exhibition-header .upcoming-exhibition-gallery{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%)
}

#gcg-contents .upcoming-exhibition-credits {
	display: flex;
	justify-content: space-between;
	
	align-items: flex-end;
}
/*#gcg-contents .upcoming-exhibition-credits .page-subtitle-2 p:last-child{
	text-align: right;
}*/
#gcg-contents .upcoming-exhibition-credits .page-subtitle-2 p{
	margin-bottom: 0;
	text-transform: uppercase;
	font-style: italic;
	line-height: 1;
	
}
#gcg-contents .upcoming-exhibition-credits .page-subtitle-2 p a{
	text-decoration: none;
}
#layout-footer{
	margin: 0 20px 10px !important;
	display: none;
}
.listaartisti ul{
	list-style: none;
	margin: 0;
}
#gcg-contents .listaartisti ul li{
	text-align: right;
	text-transform: uppercase;
	font-style: italic;
	line-height: 1;
	font-size: 1.2rem;
	margin: 0;
}
@media (max-height:680px){
	.upcoming-exhibition-teaser {
    position: relative;
    padding: 0
    }
    #gcg-contents{
	    padding: 20px;;
    }
}
@media (max-width:1100px){
	.upcoming-exhibition-title{
	margin: 0 auto;
	max-width: 500px;
	position: relative;
}
#gcg-contents .upcoming-exhibition-title .page-title {
	font-size: 100px;
	transform: scale(1, 0.5);
	color: transparent;
    text-shadow:
       -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
         1px 1px 0 #000;
    font-weight:900;
    border-bottom: none;
    
    text-align: center;
    margin: 0;
    line-height: 1;
    letter-spacing: -5%;
}

@supports((text-stroke: 2px black) or (-webkit-text-stroke: 2px black)) {
    #gcg-contents .upcoming-exhibition-title .page-title {
        color: transparent;
        -webkit-text-stroke: 2px black;
        text-stroke: 2px black;
        text-shadow: none;
    }
}

#gcg-contents .upcoming-exhibition-title .page-subtitle-image{
	width: 35%;
	position: absolute;
	right: -7%;
	top: 60%;
	margin: 0;
}

}
@media (max-width:991px){
	.upcoming-exhibition-header h3{
	font-size: 24px;
	margin: 0;
	text-transform: uppercase;
	font-style: italic;
	text-align: center;
}
.upcoming-exhibition-header .upcoming-exhibition-gallery{
	position: relative;
	top: 0;
	left: 0;
	transform: translateX(0);
}
}
@media (max-width:640px){
.upcoming-exhibition-teaser {
    position: relative;
}
	.upcoming-exhibition-title{
	margin: 0 auto;
	max-width: 320px;
	position: relative;
}
#gcg-contents .upcoming-exhibition-credits {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: flex-start;
}
#gcg-contents .listaartisti ul{
	margin-top: 30px;
	padding-left: 0;
}
#gcg-contents .listaartisti ul li{
	text-align: left;
	
}
#gcg-contents .upcoming-exhibition-credits p, #gcg-contents .upcoming-exhibition-credits p strong{
    font-size: 1.2rem;
}
#gcg-contents .upcoming-exhibition-title .page-title {
	font-size: 70px;
	transform: scale(1, 0.5);
	color: transparent;
    text-shadow:
       -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
         1px 1px 0 #000;
    font-weight:900;
    border-bottom: none;
    
    text-align: center;
    margin: 0;
    line-height: 1;
    letter-spacing: -5%;
}

@supports((text-stroke: 1px black) or (-webkit-text-stroke: 1px black)) {
    #gcg-contents .upcoming-exhibition-title .page-title {
        color: transparent;
        -webkit-text-stroke: 1px black;
        text-stroke: 1px black;
        text-shadow: none;
    }
}

#gcg-contents .upcoming-exhibition-title .page-subtitle-image{
	width: 35%;
	position: absolute;
	right: -8%;
	top: 60%;
	margin: 0;
}
.upcoming-exhibition-header h3{
	font-size: 18px;
	margin: 0;
	text-transform: uppercase;
	font-style: italic;
	text-align: left;
}

}
#gcg-contents .greenbox .page-subtitle {

    margin-top: -1.25rem;

}

.greenbox p {
    font-size: 16px;
    margin-top: 1em;
    line-height: 1.5;
}



.page-section {
    margin-bottom: 3rem;
}

.bordered-section {
    padding: 2.5rem;
    border:6px solid #000;
}


.two-columns {
    display: flex;
    justify-content: space-between;
}

.column {
    flex-grow: 1;
}

.two-columns .secondary-column {

    margin-left: 4rem;

}

.two-columns .main-column {
}


/*
 *  Exhibition Page
 */

.artist-list {
    display: inline;
    list-style-type: none;
    margin: 0;
    padding:0;
}

.artist-list li {
    display: inline;
}
.artist-list li:after {
    content: ", ";
}

.exhibition-cover {
    margin-bottom: 3rem;
}

.exhibition-cover img {
    width:100%;
}

.responsive-video-wrapper {
    height: 0;
    width:100%;
    padding-top:56%;
    overflow: hidden;
    position: relative;
}

.responsive-video {
    width:100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
}

.exhibition-description {
    columns: 2;
    column-gap: 3rem;

    margin-bottom: 4rem;
}

.exhibition-credits {

}

.exhibition-catalog {
    padding: 0;
    margin-bottom: 3rem;
}

.exhibition-catalog a {
    font-size: 2rem;
    line-height: 1.5;
    display: block;
}

.exhibition-catalog button[type=submit] {
    font-size: 2rem;
    line-height: 1.5;
    display: block;

    border:none;
    cursor: pointer;

    padding: 0;
    margin: 0;
    background: transparent;

    text-decoration: underline;
    font-weight: 400;

}

.exhibition-catalog button[type=submit] span {

}

.catalog-preview {
    display: block;
    height: 200px;
    margin-bottom: 1rem;
}

.catalog-wrapper {

}

.article-date {
    display: block;
    font-weight: 300;
    font-size: 1.4rem;
}

.article-title {
    display: block;
    font-weight: 500;
    line-height: 1;
}

.article-author, .article-source {
    font-weight: 400;
    font-size: 1.4rem;
}
.article-source {
    font-weight: 500;
}


/*
 *  Exhibitions
 */

#exhibitions {

}

.breadcrumb {

  font-size: 1.875rem;
  position:relative;
  margin-bottom: 1.875rem;
  font-weight: 300;

}

.breadcrumb:after {
    content:" ";
    position: absolute;
    bottom:-.5rem;
    display:block;
    width: 7.5%;
    border-top: 4px solid black;
}

.breadcrumb a {
  font-weight: 500;
  text-decoration: none;
}

.single-exhibition {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position:relative;
    /*background: #0f0;*/

    /*max-width: 40%;

    padding: .5rem;
    margin-left: -.5rem;*/
}

.single-exhibition:after {
    content:" ";
    position: absolute;
    bottom:-.5rem;
    display:block;
    width: 7.5%;
    border-top: 5px solid black;
}

.single-exhibition a {
    text-decoration: none;
}



.single-exhibition .exhibition-title {
    font-weight: 500;
}

.single-exhibition .exhibition-dates {
    font-size: .6em;
}

.single-exhibition .exhibition-author, .single-exhibition .exhibition-author p {
    font-size: 19px!important;
    line-height: 2;
}



@media screen and (max-width: 960px) {

   .single-exhibition {

       width:100%;

   }

  .exhibition-description {
    columns: 1;
  }



}

/*
 *  PUBLICATIONS
 */

.publication-list {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.publication-list .single-publication {

    width: 40%;
    position: relative;
    max-width: 340px;
    
}

.publication-list .single-publication .publication-title {

    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    z-index: 1;
    font-size: 34px;
    font-weight: 300;
    background: #0f0;
    padding: 0 .5rem;


}

/*
 *  ARTISTS PAGE
 */

.artists-page-list .columns-subsection ul {
    columns: 3;
    column-gap: 50px;
}

.artists-page-list li {
    font-weight: 400!important;
    margin: 0!important;
    line-height: 1.15!important;
    margin-bottom: 1rem!important;
}

.artists-page-list li a {

}


/*
 *  Exhibition Space
 */

#gcg-exhibition-space iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}


/*
 *  FOOTER
 */

#layout-footer {
    font-size: 1rem;
    line-height: 1.5;
    margin: 3rem 3.5vw;
    position:relative;
}

#layout-footer:before {
  content:" ";
  position: absolute;
  height:0;
  width:8%;
  top:-1.25rem;
  left:0;
  border-bottom: 6px solid #000;
}







/*
 * CATALOG EFFECT
 */


.bk-list {
    list-style: none;
    position: relative;
    text-align: center;
    display: inline-block;
}

.bk-list li {
    position: relative;
    width: 300px;
    z-index: 1;
    margin: 0px 50px 40px 0;
    -webkit-perspective: 1800px;
    perspective: 1800px;
}

.bk-list li:last-child {
    margin-right: 0;
}

.bk-info {
    position: relative;
    margin-top: 440px;
}

.bk-info h3 {
    padding: 25px 0 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    font-size: 26px;
}

.bk-info h3 span:first-child {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 5px;
    display: block;
    color: #777;
}

.bk-info p {
    line-height: 24px;
    color: #444;
    min-height: 160px;
}

.bk-info button {
    background: #FC756F;
    border: none;
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 4px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}

.bk-info button.bk-active,
.bk-info button:active {
    box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.8),
            inset 0 -1px 1px rgba(0,0,0,0.2);
}

.no-touch .bk-info button:hover,
.bk-info button.bk-active {
    background: #d0544e;
}

.bk-list {
    padding:0rem 0 4rem;
}

.bk-list li .bk-book {
    /*position: absolute;*/
    width: 100%;
    height: 300px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
}

.bk-list li .bk-book.bk-bookdefault:hover {
    -webkit-transform: rotate3d(2,2,-.2,35deg); /*rotate3d(0,1,0,35deg);*/
    transform: rotate3d(2,2,-.2,35deg); /*rotate3d(0,1,0,35deg);*/
}

.bk-list li .bk-book > div,
.bk-list li .bk-front > div {
    display: block;
    position: absolute;
}

.bk-list li .bk-front {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    -webkit-transform: translate3d(0,0,20px);
    transform: translate3d(0,0,20px);
    z-index: 10;
}

.bk-list li .bk-front > div {
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bk-list li .bk-page {
    -webkit-transform: translate3d(0,0,19px);
    transform: translate3d(0,0,19px);
    display: none;
    width: 295px;
    height: 390px;
    top: 5px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 9;
}

.bk-list li .bk-front,
.bk-list li .bk-back,
.bk-list li .bk-front > div {
    width: 300px;
    height: 400px;
}

.bk-list li .bk-left,
.bk-list li .bk-right {
    width: 40px;
    left: -20px;
}

.bk-list li .bk-top,
.bk-list li .bk-bottom {
    width: 295px;
    height: 40px;
    top: -15px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bk-list li .bk-back {
    -webkit-transform: rotate3d(0,1,0,-180deg) translate3d(0,0,20px);
    transform: rotate3d(0,1,0,-180deg) translate3d(0,0,20px);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
    border-radius: 3px 0 0 3px;
    background: #000;
}

.bk-list li .bk-cover-back {
    background-color: #000;
    -webkit-transform: rotate3d(0,1,0,-179deg);
    transform: rotate3d(0,1,0,-179deg);
}

.bk-list li .bk-right {
    height: 390px;
    top: 5px;
    -webkit-transform: rotate3d(0,1,0,90deg) translate3d(0,0,295px);
    -moz-transform: rotate3d(0,1,0,90deg) translate3d(0,0,295px);
    transform: rotate3d(0,1,0,90deg) translate3d(0,0,295px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bk-list li .bk-left {
    height: 400px;
    -webkit-transform: rotate3d(0,1,0,-90deg);
    transform: rotate3d(0,1,0,-90deg);
}

.bk-list li .bk-top {
    -webkit-transform: rotate3d(1,0,0,90deg);
    transform: rotate3d(1,0,0,90deg);
}

.bk-list li .bk-bottom {
    -webkit-transform: rotate3d(1,0,0,-90deg) translate3d(0,0,390px);
    transform: rotate3d(1,0,0,-90deg) translate3d(0,0,390px);
}

/* Transform classes */

.bk-list li .bk-viewinside .bk-front {
    -webkit-transform: translate3d(0,0,20px) rotate3d(0,1,0,-160deg);
    transform: translate3d(0,0,20px) rotate3d(0,1,0,-160deg);
}

.bk-list li .bk-book.bk-viewinside {
    -webkit-transform: translate3d(0,0,150px) rotate3d(0,1,0,0deg);
    transform: translate3d(0,0,150px) rotate3d(0,1,0,0deg);
}

.bk-list li .bk-book.bk-viewback {
    -webkit-transform: translate3d(0,0,0px) rotate3d(0,1,0,180deg);
    transform: translate3d(0,0,0px) rotate3d(0,1,0,180deg);
}

/* Main colors and content */

.bk-list li .bk-page,
.bk-list li .bk-right,
.bk-list li .bk-top,
.bk-list li .bk-bottom {
    background-color: #000;
}

.bk-list li .bk-front > div {
    border-radius: 0 3px 3px 0;
    box-shadow:
            inset 4px 0 10px rgba(0, 0, 0, 0.1);
}

.bk-list li .bk-front:after {
    content: '';
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: -1px;
    width: 1px;
}

.bk-list li .bk-cover:after,
.bk-list li .bk-back:after {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 3px;
    background: rgba(0,0,0,0.06);
    box-shadow: 1px 0 3px rgba(255, 255, 255, 0.1);
}

.bk-list li .bk-back:after {
    left: auto;
    right: 10px;
}

.bk-left h2 {
    width: 400px;
    height: 40px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(90deg) translateY(-40px);
    transform: rotate(90deg) translateY(-40px);
}

.bk-content {
    position: absolute;
    top: 30px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    padding: 30px;
    overflow: hidden;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    cursor: default;
}

.bk-content-current {
    opacity: 1;
    pointer-events: auto;
}

.bk-content p {
    padding: 0 0 10px;
    -webkit-font-smoothing: antialiased;
    color: #000;
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bk-page nav {
    display: block;
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.bk-page nav span {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #aaa;
    background: #f0f0f0;
    border-radius: 50%;
}

.bk-cover {
    position: relative;
}
.bk-cover img {
    position: absolute;
    width:100%;
    height: 100%;
    top:0;
    left:0;
    object-fit: cover;
}

.bk-left {
    background: black;
}
.breadcrumb a:before{
	content: "";
	width: 20px;
	height: 20px;
	background-image: url(../images/angle-left.svg);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}
.cc_banner-wrapper .cc_container{
	background-color: black;
	color: #0f0;
}
.cc_banner-wrapper .cc_container a, .cc_banner-wrapper  .cc_container a:visited{
	color: #0f0;
	text-decoration: underline;
	font-weight: bold;
}
.cc_banner-wrapper .cc_container .cc_btn, .cc_banner-wrapper  .cc_container .cc_btn:visited {
    color: #000;
    background-color: #0f0;
    border: 2px solid #0f0;
    border-radius: 0;
    -webkit-border-radius: 0;
}
.cc_banner-wrapper .cc_container a:hover, .cc_banner-wrapper .cc_container a:active {
    color: #0f0;
}
.cc_banner-wrapper .cc_container .cc_btn:hover, .cc_banner-wrapper  .cc_container .cc_btn:active {
    background-color: #000;
    color: #0f0;
}

	.select-css {
    display: inline-block;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    padding: .6em 1.5em .5em .8em;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 2px solid #000;
    box-shadow: none;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #0f0;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%20000002%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
    display: none;
}
.select-css:hover {
    border-color: #000;
}
.select-css:focus {
    border-color: #000;
    box-shadow: none;
    box-shadow: none -moz-mac-focusring;
    color: #000;
    outline: none;
}
.select-css option {
    font-weight:normal;
}
.buy{
	margin-top: 15px;
}
.buy h3{
	font-size: 2rem;
	margin-bottom: 10px;
	margin-top: 10px;
}
.exhibition-catalog .buy  button[type=submit]{

	margin-top: 20px;
	margin-bottom: 20px;
}