@font-face {
  font-family: 'Empiricists-content';
  src: url(7b89a4fd5e90ede0-s.p.woff2) format('woff2');
}
@font-face {
  font-family: 'Empiricists-header';
  src: url(0b9604ccabf0c9c7-s.p.woff2) format('woff2');
}
@font-face {
  font-family: 'Empiricists-main';
  src: url(e18f83c737786aa7-s.p.woff2) format('woff2');
}

body, html {
  padding: 0;
  margin: 0;
  background-color: var(--background, #010088);
  font-family: 'Empiricists-header', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75rem
  font-weight: bolder;
}
a {
  color: var(--acsent, #fff);
}
a:hover{
  color:var(--acsent, #fff);
}
/* Empiricists */
.homeHeader{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../images/photo-1512758017271-d7b84c2113f1.png') no-repeat center;
  background-size: cover;
}
.empiricistsLogo{
  width: 140px;
  height: 50px;
  background-image: var(--logo);
  background-size: 130px;
  background-position: center;
  background-repeat: no-repeat;
}
.tagline{
  font-family: 'Empiricists-header', sans-serif;
  color: var(--accentTranslucent, #fff);
  font-size: 1.5rem;
}
.theEmpiricists{
  text-align: center;
  margin-top: calc(50vh - 70px);
}
.logo{
  max-width: 600px;
}
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 10%;
  background-color: var(--background, #010088);
  border-bottom: var(--accentTranslucent, #fff) 1px solid;
}
.navbar-item{
  font-family: 'Empiricists-header', sans-serif;
  font-size: 0.78rem;
  color:var(--acsent, #fff);
}
.container{
  max-width: 960px !important;
  padding-top: 4%;
  padding-bottom: 150px;
  color: var(--acsent, #fff);
}
.homepageContent{
  top: 100vh;
  padding-top: 140px;
}
strong{
  font-family: 'Empiricists-header', sans-serif !important;
  font-size: 1.7rem;
  line-height: 4rem;
  color: var(--acsent, #fff);
}
blockquote{
  font-family: 'Empiricists-main', sans-serif !important;
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--accentTranslucent, #fff);
  border-left: var(--accentTranslucent, #fff) 2px solid;
  padding-left: 20px;
  margin: 20px 0;
}

.homenav{
  position: absolute;
  left: 0;
  right: 0;
  top: 100vh;
  padding: 0 15%;
}

/* Show more messages button */
.button.show_moremessages{
}
/* Category button */
.dk_category{
}

#footer {
  position: relative;
  margin-top: 30px;
}
.copycontent{
  font-family: 'Empiricists-header', sans-serif;
  text-align: center;
  font-size: 8pt;
}

/* Webshop elements */
.navbar-item i{
  padding:0 10px;
}
#meny a i{
  padding: 15px;
  border: 1px solid;
  border-radius: 5px;
  margin: 0 0 10px 15px;
}
#loginfirst{
  display: none;
  background-color: #f14668;
  border-color: transparent;
  color: var(--acsent, #fff);
  padding: 1em;
  box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 49%);
  border-radius: 15px;
  position: absolute;
  margin-top: 67px;
  margin-right: -56px;
  left: 50%;
}
.showloginstate{
  display: block !important;
}

/* Counting dot */
.total-count{
  padding: 5px 8px;
  border-radius: 40px;
  font-size: 6pt;
  margin-right: -16px;
  margin-top: 6px;
  margin-bottom: -25px;
  border: var(--acsent, #fff) 1px solid;
}



.cart-button {
  position: relative;
  padding: 10px;
  width:100%;
  height: 60px;
  border: 0;
  border-radius: 10px;
  background-color: transparent !important;
  outline: none;
  cursor: pointer;
  color: var(--acsent) !important;
  transition: .3s ease-in-out;
  overflow: hidden;
}
.cart-button:hover {
  background-color: #35269b;
}
.cart-button:active {
  transform: scale(.9);
}

.cart-button .fa-shopping-cart {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -10%;
  font-size: 2em;
  transform: translate(-50%,-50%);
}
.cart-button .fa-box {
  position: absolute;
  z-index: 3;
  top: -20%;
  left: 52%;
  font-size: 1.2em;
  transform: translate(-50%,-50%);
}
.cart-button span {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  font-size: 1.2em;
  color: var(--acsent) !important;
  transform: translate(-50%,-50%);
}
.cart-button span.add-to-cartNAME {
  opacity: 1;
}
.cart-button span.added {
  opacity: 0;
}
.cart-button span{
  color: var(--acsent) !important;
}
.cart-button.clicked .fa-shopping-cart {
  animation: cart 1.5s ease-in-out forwards;
}
.cart-button.clicked .fa-box {
  animation: box 1.5s ease-in-out forwards;
}
.cart-button.clicked span.add-to-cartNAME {
  animation: txt1 1.5s ease-in-out forwards;
}
.cart-button.clicked span.added {
  animation: txt2 1.5s ease-in-out forwards;
}
@keyframes cart {
  0% {
    left: -10%;
  }
  40%, 60% {
    left: 50%;
  }
  100% {
    left: 110%;
  }
}
@keyframes box {
  0%, 40% {
    top: -20%;
  }
  60% {
    top: 40%;
    left: 52%;
  }
  100% {
    top: 40%;
    left: 112%;
  }
}
@keyframes txt1 {
  0% {
    opacity: 1;
  }
  20%, 100% {
    opacity: 0;
  }
}
@keyframes txt2 {
  0%, 80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.youtube-link {
  position: fixed;
  left: 20px;
  bottom: 20px;
  color: #000;
  text-decoration: none;
  font-size: 12px;
}
.select{
  width: 100%;
  height: 45px !important;
  border-radius: 3px;
  padding: 5px;
  font-size: 1.01rem;
  background-color: transparent !important;
  border: var(--acsent) 1px solid;
  color: var(--acsent);
}

.table .item-count{
  border: none;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  padding: 11px;
  width: 60px;
  text-align: center;
  background-color: var(--background, #010088);
  color: var(--acsent, #fff) ;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
textarea:focus, input:focus{
  outline: none;
}
.minus-item{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border:1px #ccc solid;
  padding: 11px;
  background-color: var(--background, #010088);
  border-right: none;
  cursor: pointer;
  transition: background-color 0.3s;
  color: var(--acsent, #fff);
}
.plus-item{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border:1px #ccc solid;
  padding: 11px;
  background-color: var(--background, #010088);
  border-left: none;
  cursor: pointer;
  transition: background-color 0.3s;
  color: var(--acsent, #fff);
}
.plus-item:hover, .minus-item:hover{
  background-color: var(--acsent, #fff);
}
.productName{
  width: 50%;
  vertical-align: middle !important;
}
.productTotal{
  vertical-align: middle !important;
}
.productCount{
  width: 160px;
}
.totalprice{
  text-align: right;
  font-size: 20pt;
}
.totalshipping{
  text-align: right;
  font-size: 10pt;
}
.clear-cart{
  font-size: 11pt;
  float: right;
  margin-top: 22px;
}
.orderButton{
  float: right;
  margin-top: 20px;
}
.modalWindow h3, h4{
  font-family: 'Empiricists-header', sans-serif;
  font-size: 22pt;
  margin-bottom: 35px;
}
.modalWindow h1{
  font-family: 'Empiricists-header', sans-serif;
  font-size: 24pt;
}
.noContent{
  display: none;
  visibility: hidden;
}
.modalWindow {
  position: fixed;
  background-color: var(--translucentBackground);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.modalWindow:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  overflow: scroll;
}
.modalWindow > div {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: var(--background, #010088);
  color: var(--acsent, #fff);
  border-radius: 5px;
  border: var(--accentTranslucent, #fff) 1px solid ;
}
.account-window > div{
  width: 40%;
  max-width: 650px;
}
.closeButton{
  float: right;
  font-size: 22pt;
  margin-right: -10px;
  margin-top: -20px;
}
.accountModal div{
  width: auto;
  max-width: none;
  height: auto;
  left: 15%;
  right: 15%;
  top: 50px;
  bottom: auto;
  transform: translate(0%, 0%);
}
.flex{
  display: flex;
}
.flex div{
  width: 100%;
  margin: 10px;
}
.streetinput{
  width: 77%;
  margin:0px -10px;
}
.housenumberinput{
  width: 20%;
  margin:0px -10px;
  margin-left: 5%;
}
.namesinput{
  width: 49%;
  margin:0px -10px;
}
.namesinputSpace{
  margin-left: 20px;
}
.field{
  width: 100%;
}
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}
.tabset .tab-panel {
  display: none;
}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}
.tabset > label, .signoff {
  position: relative;
  display: inline-block;
  padding: 15px 15px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
}
.tabset > label:hover,
.tabset > input:focus + label, .signoff:hover {
  color: var(--acsent, #fff);
}
.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid var(--acsent, #fff);
  margin-bottom: -1px;
}
.tab-panel {
  padding: 30px 0;
}
.accountformButton{
  margin: 28px 12px 0;
}
.tabs {
	position: relative;
	margin-bottom: 50px;
}
.tabs a{
  color: var(--acsent, #fff);
  border: none;
}
.tabs a:hover{
  color: var(--acsent, #fff);
  text-decoration: underline;
}
.label{
  color: var(--acsent, #fff);
}
.input, .textarea, .button, .is-primary{
  font-family: 'Empiricists-header', sans-serif !important  ;
  background-color: var(--background, #010088) !important;
  border: var(--acsent, #fff) 1px solid !important;
  color: var(--acsent, #fff) !important;
}
.input:focus, .textarea:focus{
  border: var(--acsent, #fff)fff42 1px solid;
}
input::placeholder {
  color: var(--acsent, #fff)fff8c !important;
}

.tabs > input,
.tabs > span {
	width: 50%;
	height: 60px;
	line-height: 60px;
	position: absolute;
	top: 0;
}

.tabs > input {
	cursor: pointer;
	filter: alpha(opacity=0);
	opacity: 0;
	position: absolute;
	z-index: 99;
}

.tabs > span {
	background: none;
	text-align: center;
	overflow: hidden;
}

.tabs > span i,
.tabs > span, .ease {
			transition: all .5s;
}

.tabs > input:hover + span {
	background: rgba(255,255,255,.1);
}

.tabs > input:checked + span {
	background: none;
}
.clicker{
  cursor: pointer;
}
.tabs > input:checked + span,
.tabs > input:hover + span {
	color: var(--acsent, #fff);
}
.table, .table.is-striped tbody tr:not(.is-selected):nth-child(even), .table th{
  font-family: 'Empiricists-header', sans-serif;
  font-size: 11pt;
  background: none !important;
  color: var(--acsent, #fff) !important;
}
#tab-1, #tab-1 + span {
	left: 0;
}

#tab-2, #tab-2 + span {
	left: 50%;
}
.tab-content {
	padding: 80px 20px 20px;
	width: 100%;
	min-height: 340px;
}

.tab-content section {
	width: 100%;
	display: none;
}

.tab-content section h1 {
	margin-top: 15px;
	font-size: 100px;
	font-weight: 100;
	text-align: center;
}

#tab-1:checked ~ .tab-content #tab-item-1  {
	display: block;
}

#tab-2:checked ~ .tab-content #tab-item-2  {
	display: block;
}
#snackbar{
  z-index: 9999;
  position: absolute;
  padding: 20px;
  bottom: 30px;
  left: 50%;
  width: 350px;
  margin-left: -175px;
  border-left: #00a120 3px solid;
  background-color: var(--acsent, #fff);
  box-shadow: 0px 0px 19px 10px rgba(0,0,0,0.28);
}
.orderOverview{
  width: 150% !important;
  margin-left: 50px !important;
}
.effect-3 .line{
	background: var(--acsent, #fff);
	width: 50%;
	height: 4px;
	position: absolute;
	top: 56px;
}
#tab-1:hover + span, #tab-2:hover + span{
  background: none ;
}

#tab-1:checked ~ .line {
	left: 0;
}

#tab-2:checked ~ .line {
	left: 50%;
}
h4{
  font-size: 15pt;
}
.card img{
    transform: rotate(5deg);
    width: 500px !important;
    margin-left: 200px;
    box-shadow: 5px 1px 21px 0px #000000;
}
.homeArticlesummery{
  margin-top: 40px;
}
/* Mobile menu display screen size */
@media screen and (max-width: 1023px) {
  #mobileNavigation{
    visibility: visible;  
  }
  #mainNavigation, .shoppingBasket, .shoppingAccount{
    display: none;
  }
  .modalWindow > div{
    width: auto;
    left: 2%;
    right: 2%;
    top: 2%;
    transform: translate(0, 0);
  }
  .minus-item, .plus-item{
    border: none;
    text-align: center;
    width: 100%;
    border-radius: 5px;
  }
  .delete-item{
    margin-top: 37px;
  }
  .table .item-count{
    margin: 5px 0;
  }
  #loginfirst{
    left: 0;
    right: 0;
    margin: 0;
    margin-top: 64px;
  }
  .tabset > label, .signoff{
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .tabset > input:checked + label{
    border: 1px solid #ccc;
    background-color: #efefef;
  }
  .accountModal .flex{
    display: block;
  }
  .ordersummery{
    display: block;
  }
  .ordersummery .ordersummerySentState {
    margin: 0px 0 3px;
  }
  .container .flex{
    display: block;
  }
  .orderOverview {
    width: 80% !important;
  }
  .flex div {
    width: 96%;
  }
  #burger{
    position: fixed;
  }
  #burger > div{
    background-color: var(--acsent);
  }
  #meny{
    background-color: var(--background);
    border-left: 1px solid var(--acsent);
    color: var(--acsent);
  }
  #meny .total-count{
    margin-left: 10px;
    margin-right: -10px;
  }
  #menyAvPaa:checked ~ #burger > div{
  background-color: var(--acsent);
  }
}
@media screen and (max-width: 760px) {
  .homeArticlesummery{
    margin-top: 60px;
  }
  .container{
    padding: 0 30px;
  }
  .addButtonProductPage{
    right: 20px !important;
    top: 20px !important;
    padding: 10px 20px !important;
  }
  .card img{
    transform: rotate(2deg);
    margin-left: 100px;
    width: 80% !important;
  }
  .productholder .maincontent{
    position: absolute;
    top: 70vh;
    left: 0;
    right: 0;
    background-color: var(--background);
  }
  .mainimage{
    position: fixed;
    top: 40px;
    height: 70vh !important;
    width: 100% !important;
  }
  .backButton{
    width: auto !important;
    top: 80px;
    left: 10px;
    right: auto !important;
    bottom: auto !important;
  }
}
@media screen and (max-width: 650px) {
  .card img{
    margin-left: 40px;
  }
  .image.is-4by3 img{
    width: 60% !important;
  }
  table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    float: left;
    border: none !important;
  }
  table tr{
    border-bottom: #fff 2px solid !important;
  }
  .table .item-count {
    width: 100% !important;
  }
  th{
    display: none;
  }
  .orderOverview{
    margin-left: 15px !important;
  }
  .container form{
    margin-top: 110px !important;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .container {
  padding-top: 170px !important;
}

.tilechild .card{
  background-color: var(--background, #010088);
  border: var(--accentTranslucent, #fff) 1px solid ;
  color: var(--acsent, #fff);
  box-shadow: none !important;
}
.card-footer-item:not(:last-child){
  border-right: var(--accentTranslucent, #fff) 1px solid ;
}
.card-footer{
  border-top: var(--accentTranslucent, #fff) 1px solid ;
  font-family: 'Empiricists-header', sans-serif;
  font-size: 12pt;
}
.title{
  font-family: 'Empiricists-header', sans-serif;
  color: var(--acsent, #fff);
  font-size: 20pt !important;
}
.tilechild .card{
}

.productholder{
  display: flex;
}
.productholder .maincontent{
  padding: 100px 50px;
  color: var(--acsent, #fff);
}
.backButton{
  position: fixed;
  background-color: var(--background, #010088);
  border: var(--accentTranslucent, #fff) 1px solid;
  padding: 20px;
  border-radius: 5px;
  bottom: 10px;
  right: 10px;
  width: calc(60% - 20px);
  text-align: center;
}
.addButtonProductPage {
  position: absolute;
  right: 30px;
  top: 140px;
  background-color: var(--background, #010088);
  border: var(--accentTranslucent, #fff) 1px solid;
  padding: 20px;
  border-radius: 5px;
}
.mainimage{
  height: 100vh;
  width: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}