
#page {
 min-height: 50vh;
}

b, strong {
 color: var(--primary);
}

.introboxes-introtext b, .introboxes-introtext strong {
 color: white;
}


footer b, footer strong {
 color: white;
}

.reg-symbol {
  font-size: 0.6em; /* Make it smaller */
  position: relative;
  top: -0.3em;  /* Move upwards */
  right: -0.1em; /* Adjust horizontally */
}


.pharmacy-logos {
    display: flex;
    flex-wrap: wrap;        /* Allows wrapping if needed */
    justify-content: center;
    align-items: center;
    gap: 30px;              /* Adjust space between logos */
    margin-top: 40px;
    max-width: 100%;
 
}

.pharmacy-logos a {
    display: block;
    flex: 1 1 auto;         /* Allows flexibility */
    max-width: 180px;       /* Limits the max size of logos */
}

.pharmacy-logos img {
    width: 100%;            /* Makes sure logos shrink */
    height: auto;           /* Maintains aspect ratio */
    max-height: 50px;       /* Controls max height */
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pharmacy-logos a {
        max-width: 120px;  /* Reduce max width on smaller screens */
    }
    .pharmacy-logos img {
        max-height: 40px;  /* Reduce height to fit smaller screens */
    }
}

@media (max-width: 480px) {
    .pharmacy-logos a {
        max-width: 80px;  /* Make logos even smaller on mobile */
    }
    .pharmacy-logos img {
        max-height: 30px;
    }
}


@media (max-width: 560px) {
  .site-content .container {
     padding: 0px 35px;
  }
  
  .site-content .mySwiper .container {
     padding: 15px;
  }
}

.text-container .introbuttons {
  display: block;
}
.text-container-mobile {
    display:none;
}
@media (max-width: 730px) { 
   .text-container-mobile {
    display:block;
   }
   
   .text-container .introbuttons {
  display: none;
  }
  .mySwiper .productimage {
  padding: 0px !important;
  }
}
}



/* INTROTEXT */
.circle-row {
    display: flex;
    flex-wrap: nowrap; /* Keep all circles in a row */
    justify-content: space-around; /* Ensures even spacing */
    gap: clamp(10px, 2vw, 40px); /* Dynamic spacing */
    width: 100%;
}

.circle-wrapper {
    flex-grow: 1; /* Ensures equal distribution */
    display: flex;
    justify-content: center;
}

.introboxes {
    width: clamp(100px, 26vw, 200px); /* Ensures smooth scaling */
    height: clamp(100px, 26vw, 200px);
    background-color: var(--tetriary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    padding: 2%;
    margin: 10px;
    flex-shrink: 1;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
}

.introboxes h2 {
    font-size: clamp(0.8rem, 2.4vw, 1.4rem);
    max-width: 100%; /* Prevents text overflow */
    text-align: center;
    /*word-wrap: break-word;*/
    line-height: 1.2em;
}

@media (max-width: 768px) {
    .circle-row {
        justify-content: space-between; /* Adjust spacing on tablets */
    }

    .introboxes {
        width: 24vw; /* Smaller circles on mobile */
        height: 24vw;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .circle-row {
        justify-content: space-evenly; /* Keeps spacing even */
    }

    .introboxes {
        width: 28vw; /* Further reduce size */
        height: 28vw;
        margin: 5px;
    }
}



.triangle-container {
    position: relative;
    background-color: var(--primary); /* Adjust to your background */
}

.triangle-container::after {
    content: "";
    position: absolute;
    bottom: -50px; /* Adjust to control how much it hangs */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50px solid transparent; /* Adjust width */
    border-right: 50px solid transparent; /* Adjust width */
    border-top: 50px solid var(--primary); /* Match background color */
    z-index: 9;
}



.fixed-nav {
    transition: all 0.3s ease-in-out;
}

/*** DARK ****/

.dark {
 background-color: var(--dark);
}
.grey {
 background-color: var(--grey);
}

.image-box {
    position: relative;
      -webkit-filter: grayscale(20%); /* Safari 6.0 - 9.0 */
  filter: grayscale(20%);
}
#layer {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custombutton,
a.custombutton,
a.custombutton:visited
{
    display: inline-block;
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    text-align: center;
    border: 0px solid var(--tetriary);
    padding: 9px 19px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 2px;
    background-color: var(--tetriary);
    border-radius: 40px;
    margin-top: 10px;
}

a.custombutton:hover {
 background-color:  var(--secondary);
 opacity: 1;
 color: white;
}

@media screen and (max-width: 992px) {
 
 .custombutton {
  margin-top: 10px;
 }
 
}

.grecaptcha-badge {
 display: none;
}

.centerd {
  position: absolute;
  bottom: 20px ;
  left: 20px;
  /*top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  -webkit-transform: translate(-50%, -50%); */
}

.centered {
  position: relative;
  bottom: 20px ;
  /*left: 20px;*/
  text-align: center;
  /*top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  -webkit-transform: translate(-50%, -50%); */
  margin-bottom: 40px;
}


.alternativ-logo {
  width: 100px;
  height: 100px;
  background-color: transparent;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: 85%;
  margin-top: -50px;
}

.bokning {
  padding-right: 20px;
}
/* PUSH */

/* Parallax Background */
.parallax-section {
    width: 100%;
    height: 50vh; /* 70% of viewport height */
    max-height: 690px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Enables Parallax Effect */
    display: flex;
    justify-content: flex-end; /* Push text to the right */
    padding: 0 5%;
    position: relative;
}

/* Black & White Effect */
.parallax-section {
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
}

.parallax-section:hover {
    filter: grayscale(0%);
}

/* Optional: Dark Overlay for Readability */
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency */
    z-index: 1;
}

/* Text Content */
.parallax-text {
    max-width: 42%;
    position: relative;
    z-index: 2; /* Ensure text stays above the overlay */
    /*background: rgba(0, 0, 0, 0.6); /* Background to enhance readability */*/
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    padding: 5em;
}

/* Make Sure WYSIWYG Content Displays Properly */
.parallax-text h2, 
.parallax-text h3, 
.parallax-text h4 {
    color: white;
}
.parallax-text h3 {
 font-weight: 400;
 text-transform:none;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
}
.parallax-text p {
    color: white;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* Disable parallax on mobile */
        justify-content: center;
    }

    .parallax-text {
        max-width: 100%;
        text-align: center;
    }
}

.bw-image {
    filter: grayscale(100%);
}

.square-container {
    /*width: 100%;*/
    aspect-ratio: 1 / 1; /* Keeps the div square */
    position: relative;
    overflow: hidden;
    padding: 0px;  width: 50%; min-height: 30vw;
}

.square-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the square */
}

@media (max-width: 768px) {
 .square-container {
    /*width: 100%;*/
    aspect-ratio: 1 / 1; /* Keeps the div square */
    position: relative;
    overflow: hidden;
    padding: 0px;  width: 100%; min-height: 30vw;
}
}

/* Contact Form */

.wpcf7 input,
.wpcf7 textarea {
	width: 100%;
}

.wpcf7 label {
	display: block;
}

div.wpcf7 {
	max-width: 30em;
	margin-left: auto;
	margin-right: auto;
}

.wpcf7 p {
 padding-bottom: 0px;
 margin-bottom: 0px;
}

/* Collapses */

.btn-link {
    font-weight: 800;
    color: #008000 !important;
    background-color: transparent;
    cursor: pointer;
}

.pointer {cursor: pointer;}

/* instagram */

#instagram {
    font-family: Arial, Helvetica, sans-serif;
    /*background-color: #f2eedb;*/
    color: #000;
    overflow: hidden;
	min-height: 100px;
    width: 100% !important;
    height: auto !important;
	padding: 0px;
}

#instagram h1 {
	margin: 0px;
	margin-bottom: 20px;
	font-family: "Gotham SSm A", "Gotham SSm B";
	font-style: normal;
	font-weight: 300;

}

#instagram img {
	width: 100%;
 
}

.instagram_post {
	width: 25%;
	float: left;
	
}

.instagram_post_container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}

.instagram-wrap {
	height: 0;
    padding-bottom: 100%;
    position: relative;
    margin: 5px;
}

.instagram-img {
    float: left;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    display: block;
	position: absolute;
}
.grids-left {
  border-right:1px solid #a49566;
}

.grids-right {
  padding-left:40px;
}



/* END Instagram */

.readmore-news {
    display: inline-block;
    text-transform: uppercase;
    font-family: Raleway;
    /* text-align: left; */
    font-weight: 500;
    font-size: 12px;
    color: #000000;
    text-align: center;
    border: 1px solid;
    padding: 5px 7px;
}

a.readmore-news:hover,
a.readmore-news:visited {
  
  color: #000000;
  text-decoration: none;
}

a.readmore-news {
  
  color: #000000;
  text-decoration: none;
}

iframe {
   /*   width: 1px;
    min-width: 100%;
    border: 0px;
    min-height: 850px;
    background-color: #ffffff;
    padding: 30px; */
}


/* Main Button Style */
.myprefix-button {
  text-shadow:1px 1px 1px #000;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  /*-webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1);*/
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 1px;
  vertical-align: middle;
  padding: 10px;
  }

.myprefix-button span {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-border-radius: 0px;
    background:#000;

  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #fff;
  display: block;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 6px 12px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }

/* Hover */
.myprefix-button:hover{
  text-decoration:none;
  opacity: 0.7;}

/* Active */
.myprefix-button:active{
   }
   
   
   /*Quotes */
.quote {
  text-align: center;
  padding: 30px 40px;
    background: #bccbd3;
  
}

/*blockquote:before {
  content:"\f10e";
  font-family: "FontAwesome";
  color: white;
  
}
blockquote:after {
  position: relative;
    content: "";
    width: 30%;
    left: 35%;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    border-bottom: 0px solid rgba(29, 35, 44, 0.52);
} */
blockquote {
    /*padding: 0px 10%;*/
    /* background-color: #f2f2f2; */
    /*color: rgba(29, 35, 44, 0.52);*/
    margin: 20px 0px 40px 0px;
    z-index : 1;
    text-align: center;
    font-size: 28px;
    font-weight: lighter;

}

blockquote p {
    padding: 10px 0px;
    margin: 0px;
    color: #fff !important;
    text-align: center;
}
/**/
/**/
/*blockquote h2 {*/
/**/
/*    /*font-family: 'Playfair Display', serif;*/*/
/*    text-align: center;*/
/*		font-size: 22px;*/
/*		margin: 0.67em 0;*/
/*    text-transform: none;*/
/*    */
/*}*/


/* 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%;
	}
 
.splittext {
 padding: 40px; width: 60%;
}

/* Split image */
.splitbild {
 /*min-height: 50vh; max-height: 560px;*/

 
}

.middletext {
 
         /*position:absolute;
         top: 30%;
         transform: translate( 0, 50%)!important; */
         padding: 30px 40px;
}
 
@media screen and (max-width: 992px) {
.bars {
  padding-bottom: 30px;
}
  
.splitbild {
 min-height: 30vh; max-height: 500px;

 
}

.splittext {
 width: 80%;
}

.middletext {
 
         position:relative;
         top: 0%;
         transform: translate( 0, 0%)!important;
         padding: 0px;width: 100%;
}


blockquote {
    font-family: 'PT Serif', serif;
    /* padding: 0px 10%; */
    /* background-color: #f2f2f2; */
    /* color: rgba(29, 35, 44, 0.52); */
    margin: 20px 0px 40px 0px;
    z-index: 1;
    text-align: center;
    font-size: 21px;
}

}


@media screen and (max-width: 520px) {

.splitbild {
 min-height: 50vh;
}
.splittext {
 padding: 40px; width: 100%;
}
.bokning {
  padding-right: 0px;
  text-align: center;
  width: 100%;
}

.bars {
  padding-bottom: 30px;
}

.alternativ-logo {
  width: 60px;
  height: 60px;
  background-color: transparent;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  top: 85%;
  margin-top: -30px;
}

.instagram_post {
    width: 50%;
    float: left;
}


.grids-left {
  border-right:0px solid #a49566;
  padding-bottom: 20px;
}

.grids-right {
  padding-left:20px;
}
}

/* LOGIN */

Body.login
{
 background-color:#000;
/*background-image:url("../images/login-page-bg.jpg");*/
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;

}

#login h1 a {
    background-image: url(/wp-content/uploads/2025/02/christersjogren.svg);
    background-size: 360px;
    width: 370px;
    height: 50px;
}
.login form{
box-shadow:none;
padding:20px;
}
#login {
background: #000;
margin: 50px auto;
padding: 40px 20px;
width: 400px;
}
.login form .input, .login form input[type=checkbox], .login input[type=text] {
    background: #fff;
    font-family: 'Raleway', sans-serif;

}

.login form .input, .login input[type=text] {
 font-family: 'Raleway', sans-serif;
    font-size: 24px;
    width: 100%;
    padding: 5px;
    margin: 2px 6px 16px 0;
    border: 0px solid #ddd;
    border-bottom: 1px solid black;
    box-shadow: 0px 0px 0px;
}
.login label {
color: #555;
font-size: 14px;
}
.login form .forgetmenot{
float:none;
}
#login form p.submit{
margin-top:15px;
}

.login #backtoblog, .login #nav {
 font-family: 'Raleway', sans-serif;
    font-size: 13px;
    padding: 0 24px 0;
    text-align: center;
}
.login #nav {
 font-family: 'Raleway', sans-serif;
    margin: 24px 0 0 0;
    text-align: center;
}
.login.wp-core-ui .button-primary {
background: #1d232c;
border-color:#1d232c;
box-shadow: 0 1px 0 #1d232c;
color: #FFF;
text-shadow: none;
float: none;
clear: both;
display: block;
width: 100%;
padding: 7px;
height: auto;
font-size: 15px;
}

/* Admin */
#adminmenu, #adminmenu .wp-submenu, #adminmenuback, #adminmenuwrap {
    width: 160px;
    background-color: #1d232c;
}
.wp-menu-name {
 /*color: black;*/
 text-align: center;
 padding-bottom: 20px;
 text-transform: uppercase;

}

.wp-menu-name:after {
  position: relative;
    content: "";
    width: 30%;
    left: 35%;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid rgb(82, 94, 107);
}
#wp-admin-bar-wp-logo {
 display: none !important;
}
.dashicons-before {
 display: none;
}
body.wp-admin {
   background-color: white;
   /*color: #000;*/
   /*font-family: 'Poppins', sans-serif;*/

   font-size: 16px;
   font-size: 1rem;
   line-height: 1.5;
}

#adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus+.wp-submenu, .no-js li.wp-has-current-submenu:hover .wp-submenu {
    position: relative;
    z-index: 3;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    border: 0 none;
    margin-top: 0;
    box-shadow: none;
    background-color: #353e46;
    text-align: center;
}

#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, #adminmenu .wp-menu-arrow, #adminmenu .wp-menu-arrow div, #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, .folded #adminmenu li.current.menu-top, .folded #adminmenu li.wp-has-current-submenu {
    background: #1d232c;
    color: #fff;
}

#wpadminbar .quicklinks .ab-empty-item, #wpadminbar .quicklinks a, #wpadminbar .shortlink-input {
    height: 32px;
    display: block;
    padding: 0 10px;
    margin: 0;
    text-transform: uppercase;
}

.collapse-button-label {
    transition: all .1s ease-in-out;
    display: none !important;
}

#adminmenu div.wp-menu-image.svg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px auto;
    display: none;
}
#wpadminbar *:not([class="ab-icon"]){font-family:"Raleway",sans-serif !important;
#adminmenu .wp-submenu-head, #adminmenu a.menu-top {
    font-size: 12px;
font-family: 'Raleway', sans-serif !important;
    font-weight: 300;
    line-height: 1.3;
    padding: 0;
    letter-spacing: 1px;
}

#adminmenu .wp-submenu a {
    font-size: 12px;
font-family: 'Raleway', sans-serif !important;
    /* line-height: 15px; */
    line-height: 1.5;
    margin: 0;
    padding: 5px 0;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 9px;
}

#wpadminbar {
    direction: ltr;
    color: #ccc;
    font-size: 13px;
    font-weight: 400;
    /* font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; */
    line-height: 32px;
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 600px;
    z-index: 99999;
    background: #295375 !important;
}

