:root {
  --maincolor: #55565A;
  --subcolor: #A59057;
  --pink: #DC99AB;
  --bgcolor: #F3F3F5;
}

body {
   background-color: #fff;

 /*background-color: var(--bgcolor);*/
 margin: 0px;
}
/*
#content {
  background-color: #fff;

}
*/

.page {
 margin: 0px;
}

.toprubrik {
 background-color: var(--bgcolor);
 margin-bottom: 5%;
}

.page-template-wines .toprubrik {
 background-color: var(--bgcolor);
 margin-bottom: 2%;
}

.divider-line {
 opacity: 0.5;
}


a {
   color: var(--maincolor);
   opacity: 1;
   text-decoration: none;
   position: relative;
}

a:hover {
   color: var(--maincolor);
   opacity: 1;
}
a:active {
   color: var(--maincolor);
   opacity: 1;
}
a:visited {
   color: var(--maincolor);
   opacity: 1;
}
/*a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
a:hover::before {
  transform: scaleX(1);
} */

a.underlined  {
	 position: relative;
	 transition: color 0.3s ease-in-out;
  display: flex;
}
a.underlined::before {
	 content: '';
	 position: absolute;
	 top: 100%;
	 width: 50%;
	 height: 2px;
  margin-left: 25%;
  background-color: var(--subcolor);
	 transform: scaleX(0);
	 transition: transform 0.3s ease-in-out;
}
a.underlined:hover {
	 /*color: var(--subcolor);*/
   opacity: 1 !important;
}
a.underlined:hover::before {
	 transform: scaleX(1);
}
/* 18 YEARS */
 
#comfirmation18 {  
    position: fixed;  
    left: 0px;  
    top: 0px;  
    width: 100%;  
    height: 100%;  
    z-index: 9999;
    background-color: white;
    display: block;
    text-align: center;
    /*background: url('../images/pattern.png') 100% 100% repeat rgb(249,249,249);*/
        background-color: #0000008a;
}

.loader-wrapper {
  height: 100%;
}
.comfirmationpost  .custombutton {
 
 margin: 10px 0px;
 font-size: 0.65em;
 
}
.comfirmationpost {
 max-width: 320px;
 height: 410px;
 border-radius: 5px;
 background-color: white;
}

 /* LOADER */
 
#loader {  
    position: fixed;  
    left: 0px;  
    top: 0px;  
    width: 100%;  
    height: 100%;  
    z-index: 9999;
    background-color: white;
    /*background: url('../images/pattern.png') 100% 100% repeat rgb(249,249,249);  */
}

.loader-wrapper {
  height: 100%;
}

.loadericon {
 width: 200px;
 height: 200px;
 border-radius: 100%;
 background-color: white;
 perspective: 12rem;
}

.loadingicon {
      -webkit-animation-name: spinner; 
    -webkit-animation-timing-function: linear; 
    -webkit-animation-iteration-count: infinite; 
    -webkit-animation-duration: 3s; 
    animation-name: spinner; 
    animation-timing-function: linear; 
    animation-iteration-count: infinite; 
    animation-duration: 3s; 
    -webkit-transform-style: preserve-3d; 
    -moz-transform-style: preserve-3d; 
    -ms-transform-style: preserve-3d; 
    transform-style: preserve-3d;
    
    -webkit-transform-origin: center center;  /* Chrome, Safari */
}

  /* WebKit and Opera browsers */ @-webkit-keyframes spinner { 
    from 
    { 
        -webkit-transform: rotateY(0deg); 
    } 
    to { 
        -webkit-transform: rotateY(-360deg); 
    } 
} /* all other browsers */ 
@keyframes spinner { 
    from { 
        -moz-transform: rotateY(0deg); 
        -ms-transform: rotateY(0deg); 
        transform: rotateY(0deg); 
    } 
    to 
    { 
        -moz-transform: rotateY(-360deg); 
        -ms-transform: rotateY(-360deg); 
        transform: rotateY(-360deg); 
    
    } 
}
/* Artistlist */

.artistlist {
    list-style: none;
}
.artistlist span:after {
    content: "";
}
.artistlist span + span:before {
    content: " & ";
}


/* Table */

table.productTable {
    width: 65%;
    max-width: 320px;
    background-color: #FFFFFF;
    border-collapse: collapse;
    border-width: 0px;
    border-color: #FFFFFF;
    border-style: solid;
    color: #000000;
    padding-top: 15px;
    margin-top: 10px;
    display: block;
    border-top: 1px solid var(--maincolor);
}

table.productTable td, table.productTable th {
  border-width: 0px;
  border-color: #FFFFFF;
  border-style: solid;
  padding: 5px;
}

table.productTable thead {
  background-color: #FFFFFF;
}

.sellerslogo {
 height: 35px;
    padding-left: 2%;
}
.receptmeta {
    display: inline-block;
    background-color: var(--pink);
    padding: 1.2%;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin: 3% 0%;
    position: relative;
}
.receptmeta span:last-child::before {
   content: "eller";
}

.receptmeta span:first-child::before {
   content: "";
}
/* Promoimage **/

.promoimage {
    position: absolute;
    bottom: -5%;
    left: 14%;
    z-index: 2;
    width: 22%;
    max-width: 180px;
    text-align: center;
}

.promoimage img {
 max-height: 540px;
 filter: drop-shadow(5px 4px 8px rgba(0,0,0,0.4));
 -webkit-filter: drop-shadow(5px 4px 8px rgba(0,0,0,0.4));
 -moz-filter: drop-shadow(5px 4px 8px rgba(0,0,0,0.4));
 -o-filter: drop-shadow(5px 4px 8px rgba(0,0,0,0.4));
}
.productimage {
 text-align: center;
}
.productimage img {
 max-height: 620px;
 width: auto;
}
 
 
.widget-title {
 font-size: 1em;
    color: #00c962;
    padding-top: 0px;
}
.postmeta {
 padding: 20px 0px;
 margin: 20px 0px;
 border-top: 1px solid #00d78a;
 border-bottom: 1px solid #00d78a;
 font-weight: 700;
 text-transform: uppercase;
}

.fadeinout {
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 2%, rgba(0,0,0,0.2637429971988795) 25%, rgba(0,0,0,0.2861519607843137) 72%, rgba(0,0,0,1) 98%);
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
}
.darkbg {
   width: 100%;
  height: 100%;
  background: #0000006b;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
}

header {
 position: relative;
 z-index: 3;
 background-color: var(--bgcolor);
}

main {
 position: relative;
 z-index: 3;
}

footer {
 position: relative;
 z-index: 1;
  background-color: var(--bgcolor);

}

.no-padding {
 padding: 0px;
}
/* ul li */
ul, ol {
    margin: 0 0 1.5em 0em;
}
li {

}
#content ul {
 
 padding-left: 20px;
}

#content li::before {
    content: '\f111';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left:-20px;
    font-size: 8px;
    color: var(--subcolor);
    top: -1px;
    font-weight: 900;
}

#content li {
     list-style-type: none;
    position: relative;    /* It's needed for setting position to absolute in the next rule. */
    line-height: 28px;
    text-align: left;
    padding-bottom: 5px;
 
}
.navbar li {
    line-height: inherit;
 
}
.navbar li::before {
    content: '';
 
}


/* Popup*/

.popwrapper {
 padding: 100px 20px;
}

.popwrapper .plus {
 width: 100%;
 text-align: center;
 font-size: 52px;
}



/* ACF */

.acf-map {
    width: 100%;
    height: 400px;
    border: #ccc solid 1px;
    margin: 20px 0;
}

.acf-map img {
   max-width: inherit !important;
}

/* BUTTONS */
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}


.custombutton {
    background-color: #ffffff00;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    padding: 6px 11px;
    margin: 4px 0px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--subcolor);
    border-radius: 0;
    width: auto;
    height: auto;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 5px;
    cursor: pointer;
    margin: 20px 0px;
    opacity: 1;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -ms-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
}



.custombutton:hover{
    background-color: var(--subcolor);
    opacity: 1;
    color: white;
    -webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -ms-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;


}

a.custombutton {
   color: var(--maincolor);
   text-decoration: none;
}


/* Swiper */

.startswiper {
  width: 100%;
  height: 100vh;
      margin-top: -100px;
}

.slider-swiper {
     width: 100%;
    height: auto;
    position: relative;
    left: 0;
    flex: 0 0 100%;
    max-width: 100%;
    z-index: 1;
}

.slider-swiper .swiper-slide {
 height: auto;
 /*background-position-x: right !important;*/
}


.page .start-swiper {
    height: 45vh;
    min-height: 635px;
    
 }
 .page-template-wines .start-swiper {
    height: 85vh;
    min-height: auto;
    
 }
 .page-template-wine .start-swiper .swiper-fade .swiper-slide-active {
    background-position-x: right !important;
 }
 
 .start-swiper p img {
  width:100%;
  max-width: 320px;
  width: 320px;
 }


.swiper-slide {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover !important;
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: .2;
}
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

.video video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.video-wrapper {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.video-wrapper video
{  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  
}
video::-webkit-media-controls-panel {
 position: absolute;
  top: -7%;
  left: 3%;
  width: 90%;
  height:97%;
  padding: 20px;

}

.playpause {
    width:50%;
    height:50%;
    position:absolute;
    left:0%;
    right:0%;
    font-size: 90px;
    top:0%;
    bottom:0%;
    margin:auto;
    background-size:contain;
    background-position: center;
}



.swiper-slide .introtext-wrap {

    text-align: center;
    width: 100%;
    display: block;
}

.swiper-slide .right-column {
 background-color: #8eafd3;
 color: #fbf5e5;
 background: #8eafd3 url(../images/frykpattern-v2.png) center center repeat-y;
}

/* flexible content */
.gallery-images {
 /*border-radius: 100% !important;*/
}
.rounded {
 /*padding: 2%;*/
 border-radius: 100% !important;
}

.featherlight-content img {
 filter: none;
}

.gray {
    filter: grayscale(1) brightness(0.7);
}

 table {
    border-collapse: separate;
    border-spacing: 0 1em;
}
 table tr {
  border-spacing: 5em;
  
 }
 
 td {
  padding: 5px 10px 5px 0px !important;
 }
 

 
 .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #7d0f4f;
}

 .table tbody th,  .table tbody td {
    vertical-align: bottom;
    border-bottom: 1px solid #c8c8c8;
}

.table td, .table th {
    padding: .75rem 0rem;
    vertical-align: top;
    border-top: 0px solid #000;
}
 
 table tr th {
  border-bottom: 0px solid #000;
  color: #7d0f4f;
  
 }
 

.grecaptcha-badge {
 display: none;
}


/* Audio */
audio {

width: 100%;
}

audio::-webkit-media-controls-panel {
    background: #8eafd3 !important;
}

/* Collapses */

.btn-link {
    font-weight: 800;
    color: #008000 !important;
    background-color: transparent;
    cursor: pointer;
}

.pointer {cursor: pointer;}

   
 /* Filters*/
 
 #filters {
  padding: 0px 0px 20px 0px;
 }
 
 ul#filters{
  display: inline-block !important;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 30px;
  margin: 0px;
}


ul#filters li {
  display: inline-block !important;
  padding-left: 5px;
  padding-right: 5px;
}

ul#filters a {
    text-align: center;
	 color: #000;
	     font-size: 14px;
}

ul#filters a:active, 
ul#filters a:hover {
	 color: #000;
}



/* Vod */
	.embed-container { 
		position: relative; 
		padding-bottom: 56.25%;
		overflow: hidden;
		width: 100%;
		height: auto;
	} 

	.embed-container iframe,
	.embed-container object,
	.embed-container embed { 
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
 

 .starts {
 display: none;
 
}
.split-content-left img {
	
height: auto;
    width: auto;
}

/* ANIMATION */
.animatable {
  
  /* initially hide animatable objects */
  visibility: hidden;
  
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}

/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

 /* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	60% {
		-webkit-transform: translateX(20px);
	}

	80% {
		-webkit-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	60% {
		-moz-transform: translateX(20px);
	}

	80% {
		-moz-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-o-transform: translateX(20px);
	}

	80% {
		-o-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	60% {
		transform: translateX(20px);
	}

	80% {
		transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}

	60% {
		-webkit-transform: translateX(-20px);
	}

	80% {
		-webkit-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}

	60% {
		-moz-transform: translateX(-20px);
	}

	80% {
		-moz-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}

	60% {
		-o-transform: translateX(-20px);
	}

	80% {
		-o-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	60% {
		transform: translateX(-20px);
	}

	80% {
		transform: translateX(5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	50% {
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes moveUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes moveUp {
	0% {
		opacity: 1;
		-moz-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes moveUp {
	0% {
		opacity: 1;
		-o-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@-o-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}

.animated.animationDelay{
	animation-delay:.4s;
	-webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
	animation-delay:1.2s;
	-webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
	animation-delay:1.6s;
	-webkit-animation-delay:1.6s;
}
.animated.fadeBgColor {
	-webkit-animation-name: fadeBgColor;
	-moz-animation-name: fadeBgColor;
	-o-animation-name: fadeBgColor;
	animation-name: fadeBgColor;
}
.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
.animated.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.moveUp {
	-webkit-animation-name: moveUp;
	-moz-animation-name: moveUp;
	-o-animation-name: moveUp;
	animation-name: moveUp;
}


@media screen and (max-width: 992px) {
.page-template-wines .start-swiper {
    height: 50vh;
    min-height: 635px;
 } 
.page .start-swiper {
    height: 45vh;
    min-height: 635px;
 }
}


@media screen and (max-width: 520px) {
 
 .custombutton {

    font-size: 10px;
    padding: 1px 10px;

}

#start-slider {
 margin-top: -100px;
}

.startswiper {
    width: 100%;
    height: 100vh;
    margin-top: 0px;
}
.swiper-slide {
  background-position-x: -120px !important;
}
.page-template-wines .swiper-slide {
  background-position-x: right !important;
}


.playpause {

    font-size: 40px;

}
.promoimage {
    position: absolute;
    bottom: -8%;
    left: 0%;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.promoimage img {
   max-height: 180px;
}
.content .container {
 padding: 0px 20px;
}

.page-template-wines .toprubrik {
    background-color: var(--bgcolor);
    margin-bottom: 5%;
}

.productimage img {
    max-height: 540px;
    width: auto;
}

.wp-image-286 {
     margin-bottom: -20px;
}

a.underlined {
    position: relative;
    transition: color 0.3s ease-in-out;
    display: block;
    text-align: center;
}
a.underlined::before {
    display:none;
}
}



/* EXTRA  SLIDER CSS */
.introslider {
 text-align: center;
}

.introslider .icons {
 padding-bottom: 40px;
}

.introslider .icons .icon-thumbnail img {
   width: 90px !important;
}
.introslider h1 {
 font-weight: 800 !important;
  text-align: center !important;
  width: 100% !important;
  font-size: 2rem;
}
.introslider h2 {
 font-weight: 800 !important;
  text-align: center !important;
    width: 100% !important;
    font-size: 1em;
    text-transform: uppercase !important;

}

.introslider .ingress {
    font-size: 1.3em;
    text-align: center;
    padding: 30px 0px 10px;
    line-height: 120%;
}

.introslider p {
font-size: 1em;
    text-align: center;
    padding: 30px 0px 10px;
    line-height: normal;
}

.introslider h4 {
 font-weight: 800 !important;
  text-align: center !important;
  color: #3E9D74 !important;
}

.introslider h1:after {
  content:' ';
  position: absolute;
  top:100%;
  left:50%;
  width: 20%;
  border-top:1px solid #3E9D74;
  border-radius:4px;
  box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
  transform:translateX(-50%);
  padding-bottom: 30px;
}

.introslider h2:after {
    content: ' ';
    position: absolute;
    top: 90%;
    left: 50%;
    width: 20%;
    border-top: 1px solid #3E9D74;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    transform: translateX(-50%);
    padding-bottom: 30px;

}

.introslider h2.accordion-header:after {
  content:' ';
  position: absolute;
  top:100%;
  left:50%;
  width: 40px;
  border-top:0px solid #3E9D74;
  border-radius:4px;
  box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
  transform:translateX(-50%);
  padding-bottom: 0px;

}

.introslider .accordion-item {
    background-color: transparent !important;
    border: 1px solid rgba(0,0,0,.125);
}

.introslider .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px;
    font-size: 1.2rem;
    text-align: left;
    background-color: transparent !important;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    border-bottom: 1px solid #FFF;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
 
.introslider .accordion-button h3 {
    color: #ed9c2e;
}

.introslider .accordion-button.collapsed h3 {
  color: white;
}

.introslider .accordion-body {
    padding: 20px 0px;
    text-align: left;
    font-size: 1em;
    line-height: normal;
}

.introslider .accordion-button::after {
	background-image: url("/wp-content/themes/framework/images/plus.svg");
}
.introslider .accordion-button:not(.collapsed)::after {
	background-image: url("/wp-content/themes/framework/images/minus.svg");
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 99;
    height: 100px;
    opacity: 1;
}

.introslider .slider_navigation .fa, .introslider .slider_navigation .fas {
    font-weight: 900;
    color: #00d78a;
    padding: 0px 30px;
}

.swiper-button-next, .swiper-button-prev {
color: #00d78a;
font-weight: 600;
font-size: 1.4em;
}
.swiper-button-next {
   content:" ";
    position: relative;
    top: 0px;
    /*width: calc(var(--swiper-navigation-size)/ 44 * 27);*/
    /*height: var(--swiper-navigation-size);*/
    margin-top: 30px;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    align-items: left;
    justify-content: left;
    /*color: var(--swiper-navigation-color,var(--swiper-theme-color));*/
    float: left;
    left: 25px;
    right: 0px;
    width: 50%;
    text-align: left;
}
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev {
    content: " ";
    position: relative;
    top: 0px;
    /*width: calc(var(--swiper-navigation-size)/ 44 * 27);*/
    /*height: var(--swiper-navigation-size);*/
    margin-top: 30px;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    align-items: right;
    justify-content: right;
    /*color: var(--swiper-navigation-color,var(--swiper-theme-color));*/
    float: right;
    left: 0px;
    right: 0px;
    width: 50%;
    text-align: right;
}
.swiper-button-prev::after {
  display: none;
}

.blockset {
  min-width: 1350px;
}

.block-20 {
 padding-bottom: 20px;
 width: 20%;
 padding:0px 10px;
 z-index: 5;
 position: relative;
}

.block-33 {
 padding-bottom: 20px;
 width: 33%;
 padding:0px 10px;
 z-index: 5;
 position: relative;
}


.vertline {
 width: 40%;
 padding: 0px;
 height: 10px;
 border-bottom: 1px solid #00d78a;
 position: absolute;
 z-index: 3;
 right: -20%;
 margin-left: 220px;
 top: 15%;
}

.block-20:last-child .vertline {
 display: none;
}
.block-33:last-child .vertline {
 display: none;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
cursor: pointer;
pointer-events: initial;
}

@media only screen and (max-width : 560px) {
 
 .introslider {
  padding-bottom: 0px;
 }
 .introslider .ingress {
    font-size: 1.1em;
    text-align: center;
    padding: 30px 20px;
    line-height: 120%;
}
 .blockset {
  min-width: 100%;
}
.vertline {
    width: 0%;
    padding: 0px;
    height: 10px;
    border-bottom: 0px solid #00d78a;
    position: absolute;
    z-index: 3;
    right: 50%;
    margin-left: 0px;
    top: 75%;
    border-left: 1px solid #00d78a;
    height: 20%;
    bottom: 0%;
}

.block-20, .block-33 {
 width: 100%;
 padding-bottom: 100px;
}

.block-20:last-child,
.block-33:last-child {

padding-bottom: 20px; 
 
}

.swiper-button-next, .swiper-button-prev {
    color: #00d78a;
    font-weight: 600;
    font-size: 0.45em;
}
 

}


