/*
    orange: #cea44e
 */

/* roboto-regular - latin-ext_latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v20-latin-ext_latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/roboto-v20-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v20-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v20-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v20-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v20-latin-ext_latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin-ext_latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v20-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/roboto-v20-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v20-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v20-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v20-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v20-latin-ext_latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* basics */
body {
    background-color: #fff;
    font-family: "Roboto", sans-serif;
    color: #000;
}
embed,
iframe,
object {
    max-width: 100%;
    border: none;
}
a {
    color: #cea44e;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
a:hover, a:focus, a:active {
    text-decoration: none;
}
a:focus {
    outline: none;
}
a:hover, a:active {
    outline: 0;
    text-decoration: underline;
    color: #000;
}
h1, h2, h3, h4, h5, h6 {
    clear: both;
    color: #000;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}
h1 {
    font-size: 3em;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1rem;
}
h6 {
    font-size: 0.8rem;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
    color: inherit;
    text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover {
    color: inherit;
    text-decoration: none;
}
p {
    margin-bottom: 1.3rem;
}
p:last-child {
    margin-bottom: 0;
}
blockquote {
    margin: 0;
}
address {
    margin: 0 0 1.3em;
}
dfn, em, cite, i, code, kbd, tt, var {
    font-size: 1em;
}
em, cite, i {
    font-style: italic;
}
abbr, acronym {
    border-bottom: 1px dotted #cea44e;
    cursor: help;
}
mark, ins {
    background: #e6e6e6;
    text-decoration: none;
}
big {
    font-size: 125%;
}
img {
    max-width: 100%;
    height: auto;
}
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}
.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* clearing */
.clear:before,
.clear:after,
.site-header:after {
    content: "";
    display: table;
}
.clear:after,
.site-header:after,
.site-header:after {
    clear: both;
}

/* main containers */
.main-content-wrapper {
    padding-top: 30px;
}
.site-header,
.main-content-wrapper {
    background-image: url('../img/sideback.png');
    background-position: right;
    background-repeat: repeat-y;
}
@media only screen and (max-width: 768px) {
    .site-header,
    .main-content-wrapper {
        background-image: none;
    }
}

/* Main menu */
.site-header nav.navbar {
    width: 100%;
    padding-left: 0.5rem;
    min-height: 40px;
    margin: 20px 0;
}
.site-header .navbar-toggler {
    color: #000;
    font-size: 1.5rem;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
}
.site-header .navbar-toggler:hover {
    color: #cea44e;
}
.site-header .mainmenu li > a {
    color: #000;
    display: block;
    padding: 0 30px 0 0.5rem !important;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.site-header .mainmenu li:hover > a,
.site-header .mainmenu li.active > a,
.site-header .mainmenu > li > a:hover,
.site-header .mainmenu > li > a.active {
    color: #cea44e !important;
}

/* Top button */
.topbutton {
    position: fixed;
    color: #cea44e;
    background-color: #fff;
    bottom: 30px;
    right: 30px;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 999;
    font-size: 20px;
    border: 1px solid #cea44e;
}
.topbutton.btn-show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.topbutton.btn-hide {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}
.topbutton:hover, .topbutton:focus {
    color: #fff !important;
    background-color: #cea44e !important;
    opacity: 0.9;
}

/* Footer area */
.site-footer nav.navbar {
    padding: 0.5rem 0;
}
.footer-menu ul.navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.footer-menu ul.navbar-nav li {
    margin-left: 10px;
}
.footer-menu ul.navbar-nav li a {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.footer-menu ul.navbar-nav li a:hover {
    color: #cea44e;
}
.footer-menu span.menu-separator {
    padding-left: 10px;
    text-decoration: none !important;
}
.footer-menu li:last-of-type span.menu-separator {
    display: none;
}


/* Sliders */
div.slider-carousel {
    min-height: 300px;
}
.bg-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Art display */
.art-overview {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media only screen and (max-width: 992px) {
    .art-overview {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .art-overview-wrapper {
        order: 2;
    }
    .art-content-wrapper {
        order: 1;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 576px) {
    .art-overview {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
    }
}
.dgd-art-preview {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
.dgd-art-picture {
    position: relative;
}
.dgd_art_sold {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-30deg);
    -ms-transform: translate(-50%, -50%) rotate(-30deg);
    transform: translate(-50%, -50%) rotate(-30deg);
    color: #fff;
    background-color: #cea44e;
    padding: 0px 15px;
}
.dgd-art-data {
    padding-top: 15px;
}
.dgd-art-data h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0;
}
.dgd-art-button {
    padding-top: 15px;
    position: absolute;
    right: 0;
    bottom: 2px;
}
.dgd-art-button a {
    color: #fff;
    background-color: #cea44e;
    padding: 3px 10px;
    text-transform: uppercase;
}
.dgd-art-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 32px;
}
.art-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}
.art-pagination > div {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
/* Ninja forms */
.nf-form-title {
    display: none;
}
.textarea-wrap .nf-field-element {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 10px;
}