@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--lightgray: #d3d3d3;
	--gray: #EDEEEF;
	--darkgray: #444444;
	--yellow: #EFC555;
	--white: #ffffff;
	--black: #000000;
	--blue: #007aff;
}

 * {
	box-sizing: border-box;
	font-family: "Poppins", serif;
	font-style: normal;
	font-size: 1em;
}

html, body {
	background: var(--gray);
	height: 100vh;
}

body {
	display: grid;
	grid-template-rows: 100px auto 300px;
	margin: 0;
}
body#logged-in {
	grid-template-rows: 150px auto 85px;
}
.siteWidth {
	max-width: 1600px;
	margin: auto;
}
.narrowWidth {
	max-width: 600px;
	margin: auto;
}
.semiNarrowWidth {
	max-width: 1000px;
	margin: auto;
}
.yellowWrapper {
	background: var(--yellow);
}
.yellowWhiteWrapper {
	background: linear-gradient(to right, var(--yellow) 50%, var(--white) 50%);
}
.whiteWrapper {
	background: var(--white);
}
.columns {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr;
}
.columns-1-1-1 {
	grid-template-columns: 1fr 1fr 1fr;
}
.columns-2-1-1 {
	grid-template-columns: 2fr 1fr 1fr;
}
.columns-2-1 {
	grid-template-columns: 2fr 1fr;
}
.columns-40-60 {
	grid-template-columns: 40fr 60fr;
}
body.showSiteNotification {
	_margin-top: 35px;
}
.siteNotification {
	top: 0;
	_position: absolute;
    background: #444;
    color: #fff;
    width: 100vw;
    z-index: 9999;
    text-align: center;
    line-height: 35px;
    height: 35px;
}
.siteNotification a {
	color: #fff;
	margin-left: 10px;
}
h1, h2.likeH1 {
	font-size: 2.2em;
	font-weight: 700;
}
h1.bigImage {
	color: var(--white);
	text-align: center;
	height: 350px;
	padding-top: 200px;
	margin-top: 0px;
	background-size: cover;
	font-size: 3.5em;
	background-position: center center;
    text-shadow: 
        -1px -1px 2px #444,  
         1px -1px 2px #444,  
        -1px  1px 2px #444,  
         1px  1px 2px #444;
	
}
h2 {
	font-size: 1.4em;
	font-weight: 400;
}
h3 {
	font-weight: 700;
}
a[href^="tel:"] {
	color: var(--black) !important;
	text-decoration: none !important;
}

.onlyMobile {
	display: none;
}
.onlyDesktop {
	display: initial;
}


/* HEADER */
header {
	background: var(--yellow);
	background: linear-gradient(90deg, rgba(239,197,85,1) 0%, rgba(219,141,50,1) 100%);
	box-shadow: 0px 0px 10px #444;
	width: 100%;
	z-index: 200;
}
.headerWrapper {
	padding-top: 40px !important;
	height: 60px;
	display: grid;
	grid-template-columns: 1fr 250px 1fr;
}
body#logged-in .headerWrapper {
	padding-top: 90px !important;
}
header .fiolaLogo {
	display: flex;
	align-items: center;
	justify-content: center;
}
header .fiolaLogo img {
	max-width: 80%;
	max-height: 80%;
}
header .customerLogo {
	position: absolute;
	top: 10px;
	display: flex;
	align-items: center;
	justify-content: left;
	height: 80px;
	width: 400px;
	text-decoration: none;
}
header .customerLogo img {
	max-width: 100%;
	max-height: 80%;
}
header .customerLogo div {
	color: #000;
	font-size: 2em;
	padding-left: 10px;
}

.changeLanguageWrapper {
	width: 185px;
}
#google_translate_element .goog-te-gadget {
	font-size: 0px;
}
#google_translate_element .goog-te-gadget a {
	height: 15px;
	line-height: 15px;
	padding: 0px;
}
#google_translate_element .goog-te-gadget img {
	height: 15px;
	width: auto;
	margin: 0px;
	padding: 0px;
}
.skiptranslate {
	position: absolute;
	z-index: 1000;
}


.productSelectionArrow {
	vertical-align: middle;
	margin-bottom: 5px;
}

.productMenu {
	height: 50px;
	padding-top: 10px;
}
.productMenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.productMenu > ul > li {
	float: left;
	position: relative;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
}
.productMenu .dropdown li {
	height: 40px;
	line-height: 40px;
}
.productMenu a {
	color: #fff;
	text-decoration: none;
	padding: 0px 10px;
	transition: all 0.5s;
}
.productMenu a.mainLink {
	color: #000;
}

.productMenu a.search, .productMenu > ul > li > span {
	display: block;
	text-decoration: none;
	padding: 0px 10px;
	transition: all 0.5s;
}
.productMenu > ul > li:hover {
	background: #fff;
}
.productMenu a.search {
	color: #000;
	height: 50px;
}

.productMenu a.search img {
	margin: 0px 5px 5px 0px;
	height: 24px;
	vertical-align: middle;
}
.dropdown, .sub-dropdown {
	display: none;
	position: absolute;
	background: #444;
	min-width: 150px;
}
.sub-dropdown {
	background: #989898;
}
.sub-dropdown a {
	color: #fff;
}
.dropdown li, .sub-dropdown li {
	position: relative;
}
.dropdown a, .sub-dropdown a {
	white-space: nowrap;
	width: 100%;
	display: inline-block;
}
.dropdown a.mainGroupLink {
	font-weight: 700;
}
.dropdown .twoColumns {
	columns: 2;
}
.dropdown a:hover, .sub-dropdown a:hover {
	white-space: nowrap;
	background: var(--black);
}
.sub-dropdown a:hover {
	_background: var(--white);
}
.sub-dropdown {
	top: 0;
	left: 100%;
}
.dropdown.open {
	display: block;
}
.dropdown li:hover > .sub-dropdown_ {
	display: block;
}

.sub-dropdown.open {
	display: block;
}



.siteMenu>ul {
	list-style: none;
	padding: 0;
	margin: 10px 0px 0px 0px;
	display: flex;
	height: 50px;
}
.siteMenu>ul li {
	position: relative;
}
.siteMenu>ul li.withSubmenu {
	line-height: 50px;
}
.siteMenu>ul > li {
	color: var(--black);
	cursor: pointer;
}
.siteMenu>ul img {
	vertical-align: middle;
	margin-bottom: 5px;
	height: 24px;
}
.siteMenu>ul a {
	color: var(--black);
	text-decoration: none;
	padding: 0px 10px;
	height: 50px;
	line-height: 50px;
	display: block;
	box-sizing: border-box;
	transition: all 0.5s;
}

.siteMenu>ul a:hover, .productMenu a.search:hover {
	background: var(--white);
}
header .siteMenu>ul {
	justify-content: right;
}
header #searchBar {
	background: var(--darkgray);
	transition: all 0.5s;
	max-height: 0px;
	overflow: hidden;
	margin-top: 40px;
}
header #searchBar.open {
	max-height: 100px;	
	
}
header #searchBar input {
	margin: 15px;
	background: var(--white);
	border: 0px;
	padding: 5px;
	border-radius: 20px;
	text-align: center;
	width: 100%;
	font-size: 1.1em;
}
header .menuBackgroundStripe {
	position: absolute;
	height: 50px;
	width: 100%;
	background-color: #fff;
	top: 100px;
}


/* FOOTER */
footer {
	padding-top: 50px;
	height: 300px;
	box-sizing: border-box;
}
body#logged-in footer {
	height: 85px;
}
body#logged-in footer .documentLinks {
	text-align: center;
}
footer>div {
	box-shadow: 0px 5px 10px #444;	
	background: var(--yellow);
}
.footerWrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.footerWrapper>div {
	padding: 25px 0px;
	text-align: center;
}
footer .logo img {
	max-width: 80%;
}
footer .logo>div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 25px;
}
footer .logo>div>div {
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .logo>div img {
	max-width: 60%;
}
footer h4 {
	margin: 0px;	
}
footer p {
	margin-top: 0px;
}
footer a {
	color: var(--black);
}
footer .social img {
	max-width: 30px;
	max-height: 30px;
}
footer .documentLinks a {
	color: var(--black);
	display: inline-block;
	margin-bottom: 10px;
	font-size: 0.9em;
	text-decoration: none;
}
footer .documentLinks a:hover {
	text-decoration: underline;
}


/* SWIPER */

.swiper.presenting {
  width: 100%;
  height: 600px;
  background-image: url(../images/swiperBackground.png);
	background-position: center center;
	background-repeat: no-repeat;
}
.swiper.presenting .swiper-slide {
	
}
.swiper.presenting .columns {
	height: 100%;
	grid-template-columns: 4fr 6fr;
}
.swiper.presenting .columns h1 {
	font-size: 3em;
	line-height: 1.2;
}
.swiper.presenting .columns p {
	font-size: 1.5em;
	line-height: 1.5;
}
.swiper.presenting .columns>div {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}
.swiper.presenting .slideContentLink {
	margin-left: 25px;
}
.swiper.presenting img {
	max-height: 500px;
	max-width: 500px;
}

.productCarouselWrapper {
	height: 350px;
	overflow: hidden;
	margin: 50px auto;
	background: #fff;
}

.productCarouselWrapper img {
	max-height: 300px;
	max-width: 300px;
}
.productCarouselWrapper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}



.frontPageLogosWrapper {
	height: 60px;
}
.frontPageLogosWrapper>div {
	width: 100%;
	height: 60px;
	position: absolute;
	background: var(--white);
	box-shadow: 0px 5px 10px #444;	
	z-index: 100;
}
.frontPageLogos {
	margin: auto; 
	width: 100%; 
	height: 60px;
	overflow: hidden;
	background: var(--white);
}
.frontPageLogos .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  margin: 0 auto;
}
.frontPageLogos .swiper-slide {
	padding-left: 25px;
	padding-right: 25px;
}
.frontPageLogos img {
	max-height: 24px;
	max-width: 100%;
	
	margin: 8px 15px 0px 15px;
	filter: invert(1);
}

.productCardDisplay {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}

.productCard {
	background: var(--white);
	padding: 0px 0px 15px 0px;
	text-align: center;
	box-shadow: 1px 1px 5px lightgray;
	text-decoration: none;
	transition: all 0.5s;
}
.productCard:hover {
	box-shadow: 1px 1px 5px #444;
}
.productCard .image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	width: 100%;
	height: 300px;
	position: relative;
}
.productCard .image-wrapper img {
	max-width: 90%;
	max-height: 90%;
}
.productCard .product-code {
	font-size: 0.8em;
}
.productCard .product-name {
	color: var(--black);
	padding: 0px 10px;
}
.productCard h2 {
	min-height: 20px;
	padding: 0px 10px;
	line-height: 20px;
	overflow: hidden;
	margin-top: 0px;
	margin-bottom: 0px;
	color: #000;
	font-size: 1em;
	overflow-wrap: break-word;
    inline-size: 100%;
    text-align: center;
}
.productCard .price {
	margin-top: 15px;
	color: var(--black);
}
.productCard .price.secondary {
	font-size: 0.8em;
	color: var(--black);
}
h1#small-product-cards-title {
	margin-bottom: 16px;
}
#small-product-cards img.season-tag {
	width: 60px;
	position: absolute;
	top: 10px;
	left: 10px;
}
#small-product-cards .customer-emphasis {
	min-height: 20px;
}
#small-product-cards .customer-emphasis span {
	background: #FFD100;
	color: #000;
	font-weight: 500;
	padding: 2px 10px;
	font-size: 0.8em;
	height: 20px;
	line-height: 16px;
	box-sizing: border-box;
	border-radius: 10px;
	display: inline-block;
}

#activeFilters {
	margin: 15px 0px;
}
.filterReset {
	background-color: #444;
	border: 0px;
	border-radius: 50px;
	padding: 5px 30px 5px 10px;
	background-image: url(../images/icons/close_white.svg);
	background-size: 16px;
	background-position: center right 10px;
	background-repeat: no-repeat;
	color: #fff;
	transition: all 0.5s;
	margin-right: 10px;
	cursor: pointer;
}
.filterReset img {
	display: none;
}
.filterReset:hover {
	background-color: darkred;
}


.infoCard {
	background: var(--white);
	padding: 15px;
	text-align: center;
	box-shadow: 1px 1px 5px lightgray;
}
.infoCard h1 {
	font-size: 1.2em;
	font-weight: 400;
}
.infoCard h2 {
	font-size: 1.0em;
	font-weight: 700;
}
.infoCard .slogan {
	font-size: 1.4em;
	font-weight: 700;
}
.infoCard img {
	max-width: 500px;
	max-height: 500px;
	margin-top: 20px;
}

.button-1, .button-2 {
	font-size: 1.2em;
	background: var(--white);
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	color: var(--black);
	height: 40px;
	line-height: 20px;
	display: inline-block;
	box-sizing: border-box;
	transition: all 0.5s;
	cursor: pointer;
}
.button-1 {
	box-shadow: 1px 1px 5px #444;
}
.button-2 {
	border: 1px solid var(--black);	
}
.button-1:hover, .button-2:hover {
	background: var(--black);
	color: var(--white);
}

.fiolaInfo {
	padding: 25px;
	text-align: center;
}


.needHelp {
	padding: 100px 0px;
	text-align: center;
}
.needHelp h1 {
	font-size: 2.0em;
}
.needHelpItems {
	margin: auto;
}
.needHelpItems.columns {
	width: 800px;
}
.needHelpItems>div {
	display: grid;
	grid-template-columns: 150px 250px;
	width: 400px;
	margin: auto;
}
.needHelpItems>div img {
	height: 80px;
}
.needHelpItems>div .text {
	text-align: left;
	font-size: 1.1em;
	font-weight: 700;
}

.fiolaPartner {
	text-align: center;
	font-size: 1.4em;
	margin: 50px auto;
}

.sloganText {
	text-align: center;
	font-weight: 700;
	font-size: 2em;
	margin: 100px auto 0px auto;
}
.sloganText p {
	margin: 0px;
}
.leadText {
	text-align: center;
	font-size: 1.4em;
	margin: 0px auto 100px auto;
}
.leadText p {
	margin-bottom: 0px;
}
.generalInfoText {
	padding: 25px;
	background: var(--white);
}
.generalInfoText h2 {
	font-weight: 700;
}

form.contact-us input, form.contact-us textarea {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid var(--black);
	margin-bottom: 10px;
	font-size: 1.1em;
	box-sizing: border-box;
}
form.contact-us textarea {
	height: 200px;
}
form.contact-us button {
	color: var(--white);
	background: var(--black);
	width: 100%;
}

.contactCard {
	text-align: center;
	width: 250px;
	margin: 0px 0px 25px 25px;
	float: right;
}
.contactCard img {
	width: 250px;
}


.productListingGroup {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
.productListingGroup:empty {
	background: red;
	height: 5px;
}

#pageProducts {
	display: block;
}

aside#filters {
	overflow: auto;
	padding: 0px;
	margin-top: 25px;	
}
aside#filters:empty {
	margin-bottom: 0px;
}
aside#filters #filters-container {
	display: grid;
	grid-template-columns: repeat(6, 220px);
	grid-gap: 20px;
	grid-auto-rows: 45px;
	box-sizing: border-box;
	overflow: auto;
}
aside#filters.productGroupFilters label span {
	background: #ececec;
	padding: 5px 10px;
	display: inline-block;
	margin-right: 5px;
	border-radius: 5px;
	font-weight: 700;
	color: #444;
	cursor: pointer;
}
aside#filters.productGroupFilters input {
	display: none;
}

aside#filters.productGroupFilters label input:checked + span {
	background-color: #efaa00;
	color: #000;
}

aside#filters .filter-container {
	width: 220px;
	max-width: 220px;
	max-height: 45px;
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid gray;
	padding: 10px 10px 0px 10px;
	padding-bottom: 0px;
	background-color: var(--white);
	background-image: url(../images/icons/filter.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left 12px top 12px;
	position: absolute;
	z-index: 2;
	border-radius: 5px;
}
aside#filters .filter-container h3 {
	padding-left: 30px;
}
aside#filters .filter-container.open {
	max-height: initial;
	z-index: 3;
}

aside#filters .order-container {
	background-image: url(../images/icons/order.svg);
}
aside#filters .filterToggleOnInput {
	background-color: var(--white);
	height: 45px;
	line-height: 45px;
	padding: 0px 10px 0px 40px;
	font-size: 1em;
	background-image: url(../images/icons/search.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left 10px top 10px;
}
aside#filters h3 {
	padding-bottom: 0px;
	cursor: pointer;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 1em;
	font-weight: 400;
}
aside#filters ul {
	list-style: none;
	padding-left: 0px;
}
aside#filters ul>li {
	cursor: pointer;
}
aside#filters ul label {
	height: 30px;
	line-height: 30px;
	white-space: nowrap;
	cursor: pointer;
	display: inline-block;
	font-size: 0.8em;
}

aside#filters ul label>span, aside#filters ul label>img {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 5px solid #fff;
	box-shadow: 0px 0px 3px 0px #000;
	box-sizing: border-box;
	vertical-align: middle;
	margin-right: 10px;
	object-fit: cover;
	transition: all 0.1s;
}
aside#filters ul label>span {
	background-color: #ececec; 
	background-size: cover;
}
aside#filters ul.filter-group {
	padding: 0px 5px;
}
aside#filters ul.filter-group input[type=checkbox], aside#filters ul.filter-group input[type=radio] {
	position: absolute;
	top: -100px;
}

aside#filters ul input[type=checkbox]:checked + label, aside#filters ul input[type=radio]:checked + label {
	font-weight: 700;
}
aside#filters ul label:hover>span, aside#filters ul label:hover>img {
	border-width: 1px;
} 

aside#filters ul input[type=checkbox]:checked + label>span, aside#filters ul input[type=checkbox]:checked + label>img {
	border: 0px;
} 
aside#filters ul input[type=radio]:checked + label>span, aside#filters ul input[type=radio]:checked + label>img {
	border: 0px;
}
#seasonsMenu {
	line-height: 20px;
}
#seasonsMenu a {
	font-size: 16px;
	text-decoration: none;
	margin-right: 25px;
	color: #000;
}
#seasonsMenu a:hover {
	text-decoration: underline;
}

a.backLink {
	display: inline-block;
	font-size: 11pt;
	color: #fff;
	text-decoration: none;
	margin-bottom: 15px;
	transition: all 0.5s;
	padding: 10px 20px 10px 40px;
	border-radius: 0px 0px 5px 5px;
	background-image: url('../images/icons/back_white.svg');
	background-repeat: no-repeat;
	background-position: left 15px center;
	background-size: 20px;
	background-color: var(--darkgray);
}
a.backLink:hover {
	background-color: var(--black);
}



/* SINGLE PRODUCT PAGE */

/* General */
#pageProduct {
	margin: 50px 0px 0px 0px;
	background: var(--white);
	padding: 75px 50px;
	position: relative;
}
#pageProduct .backLink {
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 0px 0px 5px 0px;
}

#pageProduct header>h1 {
	margin-bottom: 0px;
}
#pageProduct header>p {
	margin-top: 0px;
}
#pageProduct p {
	margin: 0px 0px 15px 0px;
}
#pageProduct h1 {
	margin: 0px;
}
#pageProduct h2, #pageProduct label {
	margin-bottom: 0px;
	font-size: 1em;
	font-weight: 500;
}
#pageProduct .customer-emphasis span {
	display: inline-block;
	background: #FFD100;
	color: #000;
	font-weight: 500;
	padding: 2px 10px;
	font-size: 0.9em;
	height: 20px;
	line-height: 16px;
	box-sizing: border-box;
	border-radius: 10px;
	margin-bottom: 5px;
}
#pageProduct a.infoLink {
	font-weight: 700;
	color: #008bd0;
	text-decoration: none;
	display: block;
}

/* Structure */
#pageProduct #imagesAndData {
	display: grid; 
	grid-template-columns: 620px auto; 
	width: 100%;
	grid-gap: 50px;
}
#pageProduct #smallImagesAndPreview {
	display:block;
}
#small-product-images {
	margin-top: 0px;
	padding: 0px;
}

/* Product data */
#pageProduct a.infoLink:hover {
	text-decoration: underline;
}
#pageProduct section>div {
	width: 700px;
	display: inline-block;
	vertical-align: top;
}
#pageProduct img.logo {
	max-width: 140px;
	max-height: 70px;
	float: right;
	margin: 0px 0px 15px 15px;
}
#pageProduct .priceDisplay {
	font-size: 16pt;
}
#pageProduct .priceDisplay #secondaryPriceDisplay {
	margin-left: 15px;
}
#pageProduct .priceDisplay .taxInfo {
	font-size: 10pt;
	margin-left: 5px;
}
#usedSizeInfo {
    padding: 10px;
    border-left: #008bd0 2px solid;
	margin-bottom: 15px;
}
#usedSizeInfo table {
	border-collapse: collapse;
}
#usedSizeInfo table th {
	text-align: left;
	padding: 0px 0px 0px 5px;
}
#usedSizeInfo table td {
	border: 1px solid #ececec;
	padding: 5px 10px;
}
#pageProduct .infoText {
	color: gray;
	font-size: 9pt;
}
#pageProduct .showDataContent {
	background: #fff; 
	padding: 25px; 
	min-width: 500px;
}

/* Form */
#pageProduct form input, #pageProduct form select, #pageProduct form textarea {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background: var(--white);
	margin-bottom: 15px;
	border: 1px solid var(--lightgray);
	background: #fff;
}

/* Product images */
#small-product-images {
	text-align: center; 
	margin-top: 50px; 
	margin-top: 0px;
    max-height: 400px;
    overflow-y: auto;
	overflow-x: hidden;
}
#small-product-images::-webkit-scrollbar {
  width: 2px;
}
#small-product-images::-webkit-scrollbar-track {
   background: #ececec;
}

/* Handle */
#small-product-images::-webkit-scrollbar-thumb {
  background: #888;
}

#small-product-images img {
	cursor: pointer;
	margin: 5px;
	max-width: 80px;
	max-height: 80px;
}
#pageProduct .product-images-swiper figcaption {
    margin-bottom: 25px;
}
#pageProduct .product-color-images-wrapper {
	visibility: hidden;
	max-height: 0px;
	overflow: hidden;
}
#pageProduct .product-color-images-wrapper.show {
	visibility: visible;
	max-height: 650px;
}
#pageProduct .product-images-swiper .swiper-slide {
	text-align: center;
}
#pageProduct .product-images-swiper img {
	max-width: 400px;
	max-height: 400px;
	cursor: zoom-in;
}
#pageProduct figure {
	margin: 0px;
}

#pageProduct #listWrapper {
	display: none;
}
#pageProduct #listWrapper th {
	font-weight: 400;
}

.text-button {
	color: #008bd0 !important;
	font-weight: 700;
	cursor: pointer;
	padding: 5px 0px;
	display: inline-block;
	text-decoration: none;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 11pt;
}
.text-button:hover {
	text-decoration: underline;
}
.block-button {
	background: var(--lightgray) !important;
	cursor: pointer;
	color: #000;
	padding: 10px 25px !important;
	border: 0px;
	display: inline-block;
	text-decoration: none;
	height: auto;
	margin-right: 10px;
	margin-bottom: 10px;
	transition: all 0.5s;
	font-size: 11pt;
	width: auto !important;
	border-radius: 4px;
	font-weight: 700;
}
.block-button.red {
	background: darkred !important;
	color: #fff;
}
.block-button.secondary {
	background: gray !important;
	color: #fff;
}
.block-button:hover {
	background: var(--yellow) !important;
}
.block-button.secondary:hover {
	background: #444 !important;
	color: #fff !important;
}
.block-button.red:hover {
	background: red !important;
}
#size_table {
	overflow: hidden; 
	transition: all 1s; 
	font-size: 10pt; 
	margin-bottom: 10px;
}
.product-images-swiper figcaption {
	line-height: 30px;
    width: 100%;
    left: 0px;
    bottom: 25px;
	color: #444;
	height: 40px;
}
#product-images-swiper figcaption>span {
	background: rgba(255,255,255,0.5);
	padding: 5px 10px;
	font-weight: 700;
	font-size: 0.9em;
	border-radius: 5px;
}
#imprintSizeTable {
	display: grid; 
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}
#imprintSizeTable label {
	display: block;
}
#imprintSizeTable input {
	width: calc(100% - 65px);
	padding-right: 0px !important;
}
#imprintSizeTable input:not(.calculateImprintSize) {
	font-weight: 700;
	background: transparent !important;
}
.imprintSize {
	width: calc(100% - 80px);
}


#login-form input {
	display: block;
	width: 300px;
	border: 0px;
	border-radius: 2px;
	padding: 5px;
}


#flash-message {
	background: #efaa00;
	padding: 25px 20%;
	box-sizing: border-box;
	color: #f9f9f9;
	border: 1px solid #f9f9f9;
	box-shadow: rgba(0, 0, 0, 0.85) 0px 5px 15px;
	font-size: 1.2em;
	font-weight: 400;
	text-align: center;
	transition: all 0.5s;
	position: absolute;
	border-radius: 5px;
	top: 0px;
	left: 0px;
	width: 70vw;
	margin-top: 5vw;
	margin-left: 15vw;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
}
#flash-message .time {
	font-size: 10pt;
	font-weight: 400;
}

.bannerArea {
	margin-bottom: 25px;
	text-align: center;
}
img.bannerImage {
	max-width: 100%;
}


table.listing {
	width: 100%;
	border-collapse: collapse;
	overflow-x: auto;
}
table.listing tr {
	height: 25px;
}
table.listing thead th {
	border-bottom: 1px solid #444;
}
table.listing th, table.listing td {
	text-align: left;
	padding: 5px;
}
table.listing .align_r {
	text-align: right;
}
table.listing tbody tr:nth-child(even) {
	background: #fff;
}
table.listing tfoot td {
	font-weight: 700;
	border-top: 1px solid #444;
}
table.listing tbody a {
	color: #000;
	text-decoration: none;
}
table.listing tbody a:hover {
	text-decoration: underline;
}

.admin-form label {
	font-weight: 700;
}
.admin-form input, .admin-form select, .admin-form textarea, button.listBottomButton {
	padding: 5px;
	box-sizing: border-box;
	width: 60%;
}
.readOnlyField {
	background: transparent;
	border: 0px;
}
.admin-form input[type=number], .admin-form input.shortField {
	width: 15%;
}
.admin-form textarea {
	width: 100%;
	height: 120px;	
}
.admin-form figure {
	margin: 10px 0px;
}
figcaption input {
	width: auto !important;
}
#customerProductImages {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 15px;
}
#customerProductImages figure {
	width: 270px;
	height: 270px;
	padding: 10px;
	border: 1px solid #ececec;
	text-align: center;
}
#customerProductImages figure label {
	font-weight: 400;
}
#customerProductImages img {
	max-width: 250px;
	max-height: 250px;
}

.asiakaskauppa-menu a {
	display: inline-block;
	width: 350px;
	text-align: center;
	padding: 10px 15px;
	background: var(--darkgray);
	border-radius: 5px;
	color: #fff;
	
	font-size: 12pt;
	text-decoration: none;
	margin-bottom: 10px;
	transition: all 0.5s;
}
.asiakaskauppa-menu a:hover {
	background: var(--yellow);
	color: background: var(--black);
}

/* REPORTS ETC. */

.reportSummary {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(6, 1fr);
	margin-bottom: 15px;
}
.reportSummary>div {
	background: #ececec;
	padding: 10px 0px 10px 10px;
	border-radius: 4px;
}
.reportSummary>div>p:nth-of-type(1) {
	font-size: 22pt;
	color: #444;
	margin: 0px;
}
.reportSummary>div>p:nth-of-type(2) {
	font-size: 10pt;
	color: gray;
	margin: 0px;
}
form.reportFilterForm {
	display: block;
	margin-bottom: 25px;
}
form.reportFilterForm>div {
	width: 150px;
	display: inline-block;
	margin-right: 10px;
}
form.reportFilterForm>div.formSubmit {
	width: auto;
	display: inline-block;
}
form.reportFilterForm label {
	display: block;
}
form.reportFilterForm input, form.reportFilterForm select {
	border: 0px;
	background: #fff;
	padding: 10px;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
}
form.reportFilterForm .formSubmit {
	padding-top: 15px;
}
form.reportFilterForm .formSubmit input {
	padding: 0px 10px;
	background: #008bd0;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	width: auto;
}
.reportListTotal {
	margin-bottom: 25px;
	background: #444;
	border-bottom: 2px solid #444;
	color: #fff;
	padding: 15px;
}
.listPagination {
	text-align: center;
}
.listPagination a {
	font-size: 14pt;
	padding: 5px;
	margin: 2px;
	display: inline-block;
	min-width: 30px;
	box-sizing: border-box;
	background: #ececec;
	text-decoration: none;
	color: #008bd0;
	border-radius: 2px;
}
.listPagination a.currentPage {
	background: #008bd0;
	color: #fff;
}
.listPagination a.inactive {
	color: lightgray;
}

.notice {
	background: var(--darkgray);
	color: var(--white);
	text-align: center;
	padding: 10px;
	margin-bottom: 25px;
	font-size: 1em;
}
.notice a {
	color: #fff;
}
.error {
	background: darkred;
	color: #fff;
}

.success {
	border: 0px;
	background: darkgreen;
	color: #fff;
}

/* ORDER FORM ETC. */

#order-form-fields label {
	display: block;
	margin: 10px 0px 5px 0px;
}
#order-form-fields label.required::after {
	content: "*";
}

#order-form-fields input, #change-password-form input, #order-form-fields select, #order-form-fields textarea, #orderHandlingInfo select {
	background: var(--white);
	padding: 10px;
	border: 0px;
	width: 100%;
	box-sizing: border-box;
}

#change-password-form input {
	margin: 0px 0px 5px 0px;
}
#order-form-fields textarea {
	height: calc(100% - 31px);
}
#cart-items {
	width: 100%;
	border-collapse: collapse;
}
#cart-items tbody tr:nth-child(even) {
	background: #ececec;
}
#cart-items th, #cart-items td {
	text-align: left;
	padding: 5px 10px;
}
#cart-items thead th {
	border-bottom: 1px solid #444;
}
#cart-items tbody {
	background: #fff;
}
#cart-items tbody tr td:nth-of-type(1) {
	background: #fff;
	text-align: center;
}

#cart-items tbody tr td:nth-of-type(1) img {
	max-width: 80%;
	max-height: 60px;
	margin-left: 10%;
}
#cart-items tbody tr td:nth-of-type(4) img {
	width: 20px;
	padding: 5px;
}
#cart-items tfoot tr:first-of-type {
	border-top: 1px solid #444;
}
#orderHandlingInfo {
	border: 5px solid #008bd0;
	color: #008bd0;
	font-weight: 700;
	padding: 15px;
	overflow: auto;
}
#selectedPostiDeliveryPoint {
	border: 1px solid gray;
    padding: 10px;
}
#selectedPostiDeliveryPoint:empty { 
    border: none;
	padding: 0px;
}
#deliveryPostiDetails, #deliveryPostiAvailableDeliveryPoints {
	display: none;
}
#deliveryPostiSuggestions label {
	margin: 2px 0px;
}

#title-description {
	background: var(--white);
	padding: 25px 25px;
	margin-bottom: 25px;
}
#title-description h2 {
	margin-top: 0px;
	font-weight: 700;
}
p#description-ready {
	margin-bottom: 0px;
}

/* Front layer */

#front-layer-wrapper {
	position: fixed;
	top: 0px;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
	overflow-y: auto;
}
#front-layer {
	background: #000;
	min-width: 100px;
	min-height: 100px;
	width: auto;
	max-width: 94vw;
	margin: auto;
	box-shadow: 0px 0px 20px 1px #000;
	cursor: pointer;
}
#front-layer.textContent {
	background-color: #fff;
	padding: 25px;
}
#front-layer.narrow {
	max-width: 50vw;
}
#front-layer img.zoomImage {
	max-width: 100%;
	max-height: 100vh;
}

#paymentMethods {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 15px;
}
#paymentMethods form {
	margin-bottom: 0px;
}
#paymentMethods button {
	width: 100%;
	height: 100%;
}

a#mainCatalogue {
	border: 5px solid #ececec;
	padding: 50px 0px;
	margin: auto;
	text-align: center;
	overflow: auto;
	display: block;
	max-width: 400px;
	text-decoration: none;
	color: #fff;
	margin-bottom: 100px;
	background: var(--darkgray);
	background-size: cover;
	transition: all 0.5s;
}
a#mainCatalogue:hover {
	border: 5px solid var(--yellow);
}
a#mainCatalogue img {
	max-height: 80px;
}
a#mainCatalogue span {
	display: block;
	font-weight: 700;
}
#supplierCatalogues {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 25px;
}
#supplierCatalogues a {
	cursor: pointer;
	text-decoration: none;
	color: #000;
}
#supplierCatalogues figure {
	text-align: center;
	margin: 0px;
}
#supplierCatalogues figure>img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	vertical-align: middle;
	border-radius: 50%;
	transition: all 0.5s;
}
#supplierCatalogues figcaption {
	padding: 10px 5px;
	font-weight: 400;	
	width: 150px;
	transition: all 0.5s;
	background: transparent;
	box-sizing: border-box;
	margin: auto;
	
}
#supplierCatalogues a:hover img {
	border-radius: 0px;
}
#supplierCatalogues a:hover figcaption {
	background: var(--yellow);
}


/* Gift Product Selection */
.giftCardValueTestWrapper {
	margin: 25px 0px;
	text-align: center;
	padding: 25px;
	background: #ececec;
	font-size: 14pt;
}
.giftCardValueTestWrapper input {
	padding: 15px;
	background: #fff;
	font-size: 16pt;
	width: 80px;
	text-align: center;
	border: 0px;
	border-radius: 10px;
	margin: 0px 10px;
}
.giftProductSelectionTable {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 25px;
}
.giftProductSelectionItem {
	border: 5px solid #ececec;
	transition: all 0.5s;
	position: relative;
	overflow-y: auto;
	cursor: pointer;
	min-height: 400px;
	background: #fff;
	border-radius: 10px;
}
.giftProductSelectionItem.hidden {
	display: none;
}
.giftProductSelectionItem:hover {
	border: 5px solid #e3a340;
}
.giftProductSelectionItem>div:nth-of-type(1) {
	height: 300px;
	text-align: center;
	padding: 25px;
}
.giftProductSelectionItem.open>div:nth-of-type(1) {
	display: none;
}
.giftProductSelectionTable img {
	max-width: 100%;
	max-height: 300px;
}
.giftProductSelectionItem>div:nth-of-type(2) {
	display: none;
	
}
.giftProductSelectionItem.open>div:nth-of-type(2) {
	display: block;
	padding: 0px 25px 25px 25px;
	max-height: 25px;
	overflow: hidden;
	transition: all 0.5s;
	position: absolute;
	width: calc(100% - 50px);
	max-height: 1000px;
	
}
.giftProductSelectionItem h3 {
	height: 50px;
	padding: 10px 25px;
	text-align: center;
	margin-bottom: 0px;
}
.giftProductSelectionItem.open h3 {
	height: auto;
}

@media print {
	
	header, footer {
		display: none !important;
	}
	
	body {
		display: block;
	}
	
}