
@media only screen {body {    margin: 0;    padding: 0;}.source-theme-warning{display:none!important}
}

/* för gallerier och spliders */
/* synksplider: placera synk splidern ovanpå content splider */
@media screen and (min-width: 600px) {
    .pos-bottleft-large
    {
        position: absolute 
                !important;
        bottom: 40px;
        left: 0;
    }
}

/* synksplider: används för back-button */
.pos-topright
    {
        position: absolute 
                !important;
        top: 0px;
        right: 5px;
    }
    
/* synksplider: On screens that are 600px or more 
extra padding to get under the back button 
used by text sliders */
@media screen and (min-width: 600px) {
  .v-space {
  	padding-top: 35px !important;
  }
}

/* så att image krymper när höjden minskar i list view
Kan appliceras på Grid+p eller grid item eller screrer's container (custom class 1)
*/
.lim-height95 img{
  max-height: 95vh;
   /* border: solid red 6px; debug */
}

/* så att image krymper när höjden minskar i list view
*/
.lim-height80 img{
  max-height: 80vh;
   /* border: solid red 6px; debug */
}

/* låt elementet spanna 2 col */
@media only screen and (min-width: 600px) {
.s-grid-item.two-col{
         display: inline-block;
	grid-column: span 2;
}
}

/* låt elementet spanna 2 rows */
@media only screen and (min-width: 600px) {
.s-grid-item.two-row{
         display: inline-grid;
	grid-row: span 2;
}
}
/* This will create a shadow around the image with 
- a horizontal offset of 0px, 
- a vertical offset of 0px, 
- a blur radius of 0px, and 
- a spread of 5px and
- a color grey*/
.my-shady{
  border-radius: 1rem; 
  box-shadow: 0px 0px 8px 5px grey;
}