/* Stylesheet built mainly based on Flexbox */

/* @import 'phone.css' screen and (max-width: 670px); */
/* @import 'tablet.css' screen and (min-width: 671px) and (max-width: 1060px); */

/* || GENERAL STYLES */
body {
    background-size: cover;
    background-color: #1b0046;
	color: rgb(231, 231, 231);
}

h1 {
    color: white;
    text-shadow: 0.05em 0.05em black;
}

h2 {
    color: white;
    text-shadow: 0.05em 0.05em black;
    padding-bottom: 1.6em;
    font-size: 1.5em;
    font-variant: small-caps;
}

p {
    text-shadow: 0.1em 0.1em black;
    padding-bottom: 1.6em;
}

ul {
    /*margin-bottom: 1.6vmin;*/
    margin-left: 20px;
    padding-left: 7em;
}

    ul li {
        margin-bottom: 4px;
        font-size: 1.6vmin;
    }

ol {
    margin-bottom: 16px;
    margin-left: 20px;
    padding-left: 7em;
}

    ol li {
        margin-bottom: 4px;
        font-size: 1.6vmin;
    }

a:link {
    color: #b776ff;
}

a:visited {
    color: #9977bf;
}

.content {
    display: flex;
    flex-direction: column;
    background-color: #050b42;
    padding: 1.5em;
    border-radius: 1.3vmin;
    box-shadow: 0px 0.4vmin 0.8vmin 0.2vmin black;
    justify-content: center;
    width:100%;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;    /* 16:9 aspect ratio */
}

.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* || UTILITIES */
.center {
    display: flex;
    justify-content: center;
}

.titlecard {
    width: 55%;
    height: auto;
    border-radius: 1.5vmin;
    box-shadow: 0px 0.4vmin 0.8vmin 0.2vmin black;
}

/* || SITEWIDE */
* {
	margin: 0;
	padding: 0;
	font-family: 'Tahoma', sans-serif;
    	font-size: 1.8vmin;
}

.title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 5px;
    width: 100%;

}

    .title-content img {
        height:  20vmin;
    }

    .title-content h1 {
        font-size: 2.3em;
	font-family: 'Calistoga', 'Tahoma', sans-serif;
    }

.wrapper{
	width: 65%;
	margin: auto;
}

footer {
	position: fixed;
	left: 0;
	bottom: 0;
	padding-bottom: 5px;
	width: 100%;
	background-color: white;
}

    footer p {
        color: #4b4b4b;
        text-align: center;
        font-size: 0.5em;
        text-shadow: none;
        padding: 0px;
    }

    footer a {
        font-size: 1em;
    }

/* || SIDENAV */
.collapsible input {
    display: none;
  }

.collapsible label {
    display: none;
}

.sidenav {
    display: block;
    overflow: auto;
    margin: 0;
    padding: 0;
    left: 0;
    z-index: 1;
    width: 14vmin;
    background-color: #050b42;
    position: fixed;
    top: 3.2vmin;
    border-top-right-radius: 2em;
    border-bottom-right-radius: 2em;
    box-shadow: 0px 0.4vmin 0.8vmin 0.2vmin black;
}

    .sidenav ul {
        margin-left: 0px;
        list-style-type: none;
        padding: 0;

    }

    .sidenav p {
        font-size: 1em;
        font-family: 'Tahoma';
        font-weight: bold;
        padding: 0px;
        font-size: 1.4vmin;
    }

    .sidenav a {
        display: block;
        color:white;
        padding:1.7vmin;
        text-decoration: none;
    }

        .sidenav a:hover {
            transition: 0.0s;
            background:black;
        }

/* || BUTTON MENU */
div[id^="menu_"] {
    display: none;
}

.menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding-bottom: 2em;
    max-width: 100%;
    align-self: center;
}

    .menu-content {
        display: flex;
        position: relative;
        align-items: center;
        margin: 0.1vmin;
        width: 43vmin;
        height: 10vmin;
        padding: 3vmin;
        transition: transform 50ms;
        cursor: pointer;
    }

        .menu-content:hover {
            transform: scale(1.05);
            transition-duration: 50ms;
        }

        .menu-content img {
            display: block;
            width: 100%;
            height: 100%;
        }

        .menu-content h4 {
            color: #000;
            font-size: 2em;
			font-family: 'Calistoga', 'Tahoma', sans-serif;
            line-height: 1.5em;
            text-align: center;
            position: absolute;
            left: 0;
            width: 100%;
        }

.menu-profile {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-top: 2vmin;
}

    .menu-profile img {
        width: 30vmin;
        height: 30vmin;
        filter: drop-shadow(0.3vmin 0.3vmin 0.3vmin black);
        border-radius: 3vmin;
        object-fit: cover;
    }

.menu-profile-content {
    display: flex;
    flex-flow: column nowrap;
    align-content: flex-start;
    align-items: flex-start;
    height: auto;
    width: 100%;
    margin: 1vmin;
    gap: 0.5vmin;
    padding-bottom: 2vmin;
}

    .menu-profile-content h3 {
        color: #fff;
        font-size: 2em;
        text-shadow: 0.4vmin 0.4vmin 0.2vmin #000;
        text-align: center;
    }

    .menu-profile-content p {
        white-space: normal;
        text-align: left;
    }

#menu-profile-slider {
    width: 30vmin;
    height: auto;
    border-radius: 0;
}

/* || PROPPEN */
.proppen-profile-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding-top: 20px;
    width: 100%;
}

.proppen-profile {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-bottom: 1.4vh;
    width: 100%;
    height: auto;
}

    .proppen-profile img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0px 4px 8px 2px black);
        border-radius: 15px;
        object-fit: contain;
    }

.proppen-profile-content {
    display: flex;
    flex-flow: column nowrap;
    align-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 10px;
    gap: 5px;
}

    .proppen-profile-content h3 {
        color: #fff;
        font-size: 4vmin;
        text-shadow: 4px 4px 2px #000;
        text-align: center;
    }

    .proppen-profile-content p {
        white-space: normal;
        text-align: left;
    }

/* || SCHEMA */
.schema-container {
    display: flex;
    justify-content: center;
}

.schema-container-content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
    width: 80%;
    height: auto;
    padding-top: 1vmin;
    padding-bottom: 2vmin;
}

    .schema-container-content img {
        width: 85%;
        height: auto;
    }

/* || MENY */
.meny-container {
    display: flex;
    justify-content: center;
}

.meny-container-content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
    width: 100%;
    height: auto;
    padding-top: 1vmin;
    padding-bottom: 2vmin;
}

    .meny-container-content img {
		display: block;
        width: 100%;
        height: auto;
    }

/* || ABOUT */
.about-profile {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    width: 100%;
}

    .about-profile img {
        width: 20vmin;
        height: 20vmin;
        border-radius: 50%;
        filter: drop-shadow(3px 3px 3px black);
    }

.about-profile-container {
    display: flex;
    justify-content: center;
}

.about-profile-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px;
    gap: 5px;
    width: 100%;
}

    .about-profile-content h3 {
        color: #fff;
        font-size: 2.5em;
        text-shadow: 4px 4px 2px #000;
    }

    .about-profile-content p {
        white-space: normal;
        word-break: normal;
        padding: 1vw;
    }

    .about-profile-content iframe {
        width: 50%;
    }

.about-profile-content-sektioner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px;
    gap: 5px;
    width: 100%;
}

    .about-profile-content-sektioner img {
        width: 20vmin;
        height: 20vmin;
        padding-right: 2vmin;
    }

/* || UNIQUE SELECTORS */
#verksamheter-mfk {
    width: 20%;
    height: auto;
    border-radius: 0;
}

#verksamheter-gb {
    width: 40%;
    height: auto;
    border-radius: 15px;
}

#verksamheter-mer {
    width: 40%;
    height: auto;
    border-radius: 15px;
}

#button-volontarer-about {
    width: 50vmin;
}

#volontarer-img {
    width: 50%;
    height: auto;
    border-radius: 15px;
}

/* || ??????? */
#displayWord {
    font-size: large;
}

.parent {
  position: relative;
  width: 100%;
  max-width: 600px;
  top: 0;
  left: 0;
}

.image1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.image2 {
  position: relative;
  top: -57%;
  left: 94.5%;
  width: 1.25%;
  height: auto;
}

input {
    width: 15vmin;
    padding: 1%;
    text-align: center;
    margin-left: 2%;
}

.hidden {
	color: white !important;
	text-decoration: none;
	cursor: text !important;
}

.disp {
	font-size: 2em;
    text-shadow: 0.4vmin 0.4vmin 0.2vmin #000;
}

.Large {
	font-size: 150%;
}

.Huge {
	font-size: 200%;
}