* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

/*Grund inställningar på sidans innehåll*/

body {
    font-family: 'Noto Sans', sans-serif;
    height: 100%;
    width: 100%;
    color: #1E1E1E;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: auto;
    grid-template-areas:
        "header     header      header      header"
        "help-guide       help-guide        help-guide        help-guide"
        "main       main        main        main"
        "footer     footer      footer      footer";
}

fieldset {
    border: none;
}

/*.........................................Header..........................................*/

header {
    background-color: #00532A;
    grid-area: header;
    color: white;

    z-index: 5;
    position: fixed;
    height: 9rem;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    width: 100%;
    align-items: center;
}

header h1 {
    font-size: 4.2rem;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
}

header .title-link {
    text-decoration: none;
    color: white;
    display: inline;
}

#title {
    font-size: 3.6rem;
    font-weight: normal;
}

/*.........................Navigationsmeny........................*/
nav {
    width: 100vw;
}

.navbar {
    height: 9rem;
    display: flex;
    justify-content: right;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5rem;
    z-index: 5;
}

nav li,
nav li a {
    width: 100%;
    padding: 0.1rem;
    list-style: none;
    text-decoration: none;
    color: white;
}

.nav-link {
    width: 100%;
    color: white;
    text-decoration: none;
}

#nav-global-active {
    border-bottom: 2px solid white;
    width: 100%;
    max-width: 15rem;
}

.nav-item:hover {
    border-bottom: 2px solid white;
    width: 100%;
    max-width: 15rem;
}

/*Meny text relation till ikoner*/
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    white-space: nowrap;
}

.nav-item i {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    color: white;
}

/*Meny text och hamburgarmeny*/

/*.................Hamburgarmeny...............*/
.hamburger-menu {
    display: none;
    cursor: pointer;
}

/*streck till hamburgar meny*/
.bar {
    display: block;
    width: 2.5rem;
    height: 0.3rem;
    margin: 0.5rem auto;
    /*mellanrum*/
    /*-webkit-transition: all 0.3s ease-in-out;*/
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.menu-text {
    font-size: 2rem;
    color: white;
    position: absolute;
    right: 5rem;
    display: none;
}

/*............................Hjälpmedel på sidan............................*/
/*............................Sökbar............................*/
.search-bar i {
    transform: scale(1.5);
}

.search-bar label {
    visibility: hidden;
}

.search-bar span {
    visibility: hidden;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.start-search {
    display: flex;
    justify-content: right;
    width: 100%;
    margin: auto;
    padding: 1rem;
}

.start-search input {
    height: 4rem;
    border-radius: 5rem;
    border: 2px solid #1E1E1E;
    padding: 1rem;
}

.search-bar input {
    height: 3rem;
    border-radius: 5rem;
    border: 2px solid #1E1E1E;
    padding: 2rem;
}

.search-bar input:focus {
    outline: 2px dashed #00532A;
    outline-offset: 0.5rem;
    border: solid 1px #1E1E1E;
}

.help-guide {
    position: fixed;
    background-color: white;
    margin-bottom: 2rem;
    width: 100%;
    height: min-content;
    grid-area: help-guide;
    z-index: 4;
    margin-top: 9rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
    box-shadow: 0 0.1rem 4px 0.5px rgb(30, 30, 30, 0.5);
}

.help-guide a {
    color: #1E1E1E;
}

.help-guide i {
    margin-right: 0.5rem;
    margin-left: 1rem;
}

.help-guide a:first-of-type {
    margin-right: 3rem;
    margin-left: 0.5rem;
}

/*...................................Main content innehåll...................................*/

main {
    grid-area: main;
    height: 100%;
    margin-top: 16rem;
    margin-bottom: 10rem;
}

p {
    line-height: 150%;
}

.background {
    background-image: url(img/bakgrund.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.background-light {
    z-index: -1;
    filter: blur(4px) opacity(40%);
    background-attachment: fixed;
}

.wrapper {
    position: relative;
    z-index: 2;
    max-width: 70rem;
    width: 100%;
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
}

.container {
    border: 20px solid #DBD9D9;
    background-color: white;
    border-radius: 5rem;
    max-width: 45rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

/*............................Startsida............................*/
.welcome-text p {
    font-size: 1.8rem;
}

.welcome h2 span {
    display: block;
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
}

.welcome-text p:nth-child(1n) {
    margin-bottom: 2rem;
}

.btn-start {
    width: 100%;
    max-width: 50rem;
    height: 4rem;
    border-radius: 10px;
    border: none;
    background-color: #00532A;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    padding: 1.5rem;
    height: min-content;
    margin-bottom: 1rem;
}

.btn-position #btn-start {
    background-color: #DBD9D9;
    color: #1E1E1E;
}

.btn-start i {
    margin-right: 0.5rem;
}

.welcome-text span a {
    color: #1E1E1E;
}

.welcome-text i {
    margin-left: 0.5rem;
}

/*............................Logga in............................*/

.login h2 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
}

.login input {
    margin-top: 1rem;
    max-width: 30rem;
    width: 100%;
    height: 3.5rem;
    font-size: 1.8rem;
    border-radius: 10px;
    padding: 1rem;
    background-color: #F4F4F4;
    border: none;
    box-shadow: 0 4px 4px rgb(30, 30, 30, 0.25);
    margin-bottom: 4rem;
}

.login input:focus {
    outline: 2px dashed #00532A;
    outline-offset: 0.5rem;
    border: solid 1px #1E1E1E;
}

.login-form label {
    font-size: 2rem;
    display: flex;
    justify-content: left;
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;
}

.losenord {
    display: block;
    margin-top: 4rem;
}

.btn-login {
    width: 100%;
    max-width: 18rem;
    height: 4rem;
    border-radius: 10px;
    border: none;
    background-color: #00532A;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    padding: 1.5rem;
    height: min-content;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.shortcut-login {
    max-width: 100%;
    padding: 1.5rem;
}

.btn-login i {
    margin-right: 0.5rem;
}

.login-position {
    max-width: 30rem !important;
    width: 100%;
    margin: 0 auto;
}

/*...........................................Om färdtjänst - Före inloggning.......................................................*/

/*.........................Innehåll på om fardtjanst........................*/

.om-fardtjanst {
    border: 20px solid #DBD9D9;
    background-color: white;
    border-radius: 0 5rem 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.om-fardtjanst h2 {
    font-size: 3.6rem;
}

.om-fardtjanst h3 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.om-fardtjanst h4 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    max-width: 57rem;
    width: 100%;
    margin: 1.5rem auto 1rem auto;
    text-align: left;
}

.om-fardtjanst p {
    font-size: 1.8rem;
    width: 100%;
    max-width: 55ch;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

#startpage-btn {
    border-radius: 10px;
    border: none;
    background-color: #DBD9D9;
    color: #1E1E1E;
    font-size: 2rem;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    max-width: 70rem;
    text-decoration: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

#startpage-btn i {
    margin-right: 0.5rem;
}

button:hover {
    background-image: linear-gradient(rgb(0 0 0/20%), rgb(0 0 0/20%));
}

/*.......................................Om färdtjänst - Efter inloggning...................................................*/

.btn-position {
    display: flex;
    justify-content: center;
    max-width: 70rem;
    width: 100%;
    gap: 2rem;
}

.btn-info {
    display: flex;
    justify-content: end;
    max-width: 70rem;
    width: 100%;
    gap: 2rem;
    margin: 0 auto;
}

.btn-info button {
    padding: 1.5rem;
}

#mypage-btn {
    border-radius: 10px;
    border: none;
    background-color: #DBD9D9;
    color: #1E1E1E;
    font-size: 2rem;
    cursor: pointer;
    padding: 1.5rem;
    white-space: nowrap;
    width: 100%;
    max-width: 70rem;
    margin: 0 auto 0;
    text-decoration: none;
    margin-bottom: 2rem;
}

#mypage-btn i {
    margin-right: 0.5rem;
}

.extern-link {
    margin-left: 0.5rem;
}

.malmo-link {
    color: #1E1E1E;
}

/*...........................................Kontakt före inloggning....................................................*/
.contact-container {
    border: 20px solid #DBD9D9;
    background-color: white;
    border-radius: 0 0 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.contact-container h2 {
    font-size: 3.6rem;
}

.contact-container h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.contact-container h4 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}



.contact-container p {
    font-size: 1.8rem;
    width: 100%;
    max-width: 55ch;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: 1rem;
}

.contact-container ul {
    list-style: none;
    width: 100%;
    margin: 0.5rem auto 1rem auto;
    font-size: 1.8rem;
}

.contact-container ul li:first-child {
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-container ul i {
    margin-right: 0.5rem;
}

.contact-container ul li {
    text-align: left;
}

.contact-container li a {
    color: #1E1E1E;
}

.contact-container span a {
    color: #1E1E1E;
}

.contact-book-link i {
    margin-left: 0.2rem;
}

.faq {
    width: 100%;
    margin: 0 auto;
}

.question {
    display: none;
}

.answer {
    display: none;
}

/*vid klick ska svar visas upp*/

.question:checked+label+.answer {
    display: block;
}

.question+label {
    display: block;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    padding-right: 1rem;
    text-align: left;
    font-weight: bold;
    font-size: 2rem;
    background-color: #DBD9D9;
    padding: 1rem;
}

/*Hämtar pil ikoner*/
.question+label::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-style: normal;
    content: '\f078';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 1rem;
}

/*Vid klick byts ikonen */
.question:checked+label::before {
    content: '\f077';
}

.contact-container #customer-service {
    font-weight: bold;
    font-size: 1.8rem;
    max-width: 55ch;
    width: 100%;
    margin: 1rem auto 2rem auto;
}

/*...........................................Kontakt efter inloggning....................................................*/


.contact-book-link a {
    color: #1E1E1E;
}


/*.....................................................Min sida....................................................................*/

/*............................Breadcrumbs..............................*/

.breadcrumbs {
    height: 2rem;
}

.container-search {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.breadcrumbs ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-left: 2rem;
}

.breadcrumbs ul li {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    white-space: nowrap;
}

.breadcrumbs ul li a {
    color: #1E1E1E;
    text-decoration: none;
}

.breadcrumbs ul li a:hover {
    text-decoration: underline;
}

.breadcrumbs ul li:last-child {
    text-decoration: underline;
}

/*.........................Lokal meny flikar........................*/
.nav-local {
    margin-top: 2rem;
    height: 5rem;
    display: inline;
}

.nav-local a {
    text-decoration: none;
    color: #1E1E1E;
}

.nav-local ul {
    display: flex;
    list-style: none;
    font-size: 2rem;
}

.nav-local ul li {
    padding: 1rem 2rem;
    background-color: white;
}

#nav-active {
    background-color: #DBD9D9;
}

.nav-local ul li:hover {
    background-color: #DBD9D9;
}

/*.........................Innehåll på Min sida........................*/

.minsida {
    border: 20px solid #DBD9D9;
    background-color: white;
    border-radius: 0 0 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.minsida h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.mypage-info {
    max-width: 30rem;
    width: 100%;
}

.mypage-info p:nth-child(even) {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mypage-info p:nth-child(odd) {
    font-size: 1.8rem;
}

.mypage-info p {
    text-align: left;
}

.mypage-info i {
    margin-right: 0.5rem;
}

/*Genvägsknappar till Boka resa & Bokade resor*/

.short-cut-mypage {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.short-cut-mypage i {
    margin-right: 0.5rem;
}

.mypage-book-btn {
    width: 100%;
    max-width: 18rem;
    height: 4rem;
    border-radius: 10px;
    border: none;
    background-color: #00532A;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    padding: 1.5rem;
    height: min-content;
    margin: 1rem 0 0 0;
}

.mypage-bookings-btn {
    width: 100%;
    max-width: 18rem;
    height: 4rem;
    border-radius: 10px;
    border: none;
    background-color: #DBD9D9;
    color: #1E1E1E;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    padding: 1.5rem;
    height: min-content;
    margin: 1rem 0 0 0;
}


/*.....................................................Boka resa....................................................................*/

.bokaresa {
    border: 20px solid #DBD9D9;
    background-color: white;
    border-radius: 0 0 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.bokaresa h2 {
    font-size: 3.6rem;
}

.bokaresa h3 {
    font-size: 2rem;
}

.enkelresa,
.returresa {
    padding: 1rem;
}

.resa {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    font-size: 1.8rem;
}

.resa input {
    transform: scale(1.5);
    margin-left: 0.5rem;
    margin-right: 2rem;
    accent-color: #1E1E1E;
}

.adress {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background-color: #DBD9D9;
    padding: 1rem;
    border-radius: 1rem;
}

#adress-retur {
    display: none;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 600;
    background-color: #DBD9D9;
    padding: 1rem;
    border-radius: 1rem;
}

.from,
.to {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: left;
}

.date-day,
.date-time {
    font-size: 1.8rem;
    text-align: left;
}

.date-day input,
.date-time input {
    padding-left: 4rem;
    accent-color: #1E1E1E;
}

.time-type {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    font-size: 1.8rem;
    width: 100%;
    max-width: 20rem;
}

.time-type label {
    padding: 1rem;
}

.bokning {
    max-width: 30rem;
    margin: 0 auto;
}

.adress input,
#adress-retur input,
.date-day input,
.date-time input {
    margin-top: 0.5rem;
    width: 100%;
    height: 3.5rem;
    font-size: 1.8rem;
    border-radius: 10px;
    background-color: #F4F4F4;
    border: none;
    box-shadow: 0 2px 2px rgb(30, 30, 30, 0.25);
}

.date-day input:focus,
.date-time input:focus,
.adress input:focus,
#adress-retur input:focus,
.add-ons input:focus,
.other-help input:focus,
.message textarea:focus {
    outline: 2px dashed #00532A;
    outline-offset: 0.2rem;
    border: solid 1px #1E1E1E;

}

.bokning-form label {
    font-size: 2rem;
    display: flex;
    justify-content: left;
    width: 100%;
    margin: 0 auto;
}

.field i {
    position: absolute;
}

.field {
    width: 100%;

}

.icon {
    padding: 10px;
    min-width: 50px;
    text-align: center;
}

#fromadress,
#toadress,
#returntoadress,
#returnfromadress {
    width: 100%;
    padding-left: 4rem;
    text-align: left;
}

/*valfria tillägg*/
.add-ons {
    margin: 3rem auto;
    text-align: left;
}

.plus-icon {
    margin-right: 0.5rem;
}

.help {
    font-size: 1.8rem;
}

.help input {
    transform: scale(1.5);
    margin: 1rem 1rem;
    accent-color: #1E1E1E;
    cursor: pointer;
}

.add-ons p {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

/*Lägg till hjälpmedel*/

.other-help {
    display: flex;
}

#write-help {
    width: 100%;
    height: 3.5rem;
    font-size: 1.8rem;
    border-radius: 10px;
    background-color: #F4F4F4;
    border: none;
    box-shadow: 0 2px 2px rgb(30, 30, 30, 0.25);
    padding: 1rem;
}

.add-help {
    padding: 1rem;
    margin-left: 1rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.8rem;
    white-space: nowrap;
    background-color: #00532A;
    color: white;
    box-shadow: 0 2px 2px rgb(30, 30, 30, 0.25);
    cursor: pointer;
}

#help-btn {
    margin-right: 0.5rem;
    cursor: pointer;
}

/*medresenär*/

.passenger-num {
    margin: 3rem 0;
}

.passenger-num select {
    width: 100%;
    height: 3.5rem;
    font-size: 1.8rem;
    border-radius: 10px;
    background-color: #F4F4F4;
    border: none;
    box-shadow: 0 2px 2px rgb(30, 30, 30, 0.25);
}

.passenger-antal {
    font-size: 1.8rem;
}

.add-passenger {
    transform: scale(1.5);
    margin: 0 0.5rem 1rem 0;
}

.more-travel {
    margin: 3rem auto;
    text-align: left;
}

.more-travel i {
    margin-right: 0.5rem;
}

#antal-resa {
    width: 100%;
}

/*Meddelande till förare*/
.message {
    font-size: 1.8rem;
}

.message i {
    margin-right: 0.5rem;
}

.message textarea {
    padding: 1rem;
    background-color: #F4F4F4;
    border: none;
    width: 100%;
    max-width: 30rem;
    box-shadow: 0 2px 2px rgb(30, 30, 30, 0.25);
    margin-top: 0.5rem;
}

/*Återkommande resor*/
#amount-trip {
    width: 100%;
    height: 3.5rem;
    font-size: 1.8rem;
    border-radius: 10px;
    background-color: #F4F4F4;
    border: none;
    box-shadow: 0 2px 2px rgb(30, 30, 30, 0.25);
}

/*Kostnad spalt*/
.cost {
    text-align: left;
    font-size: 1.6rem;
}

.kostnad-info {
    display: block;
}

#kostnad-resa {
    padding: 1rem;
    width: 100%;
    text-align: right;
    height: 3.5rem;
    font-size: 1.8rem;
    background-color: #F4F4F4;
    border: none;
    cursor: default;
}

.send-order {
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;

}

#boka-btn {
    border-radius: 10px;
    border: none;
    background-color: #00532A;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 2rem;
    white-space: nowrap;
    width: 100%;
    max-width: 30rem;
    margin: 2rem auto;
    text-decoration: none;
}

.checkmark {
    margin-right: 0.5rem;
}

/*....................................................Bokningsbekräftelse.............................................................*/
.order-confirm {
    height: min-content;
    width: 100%;
}

.wrap-confirm {
    border: 20px solid #DBD9D9;
    border-radius: 0 0 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1.5rem;
}

.order-confirm h2 {
    font-size: 3.6rem;
}

.order-confirm p {
    font-size: 1.8rem;

}

.order-confirm h3 {
    font-size: 2rem;
}

.order-confirm-info {
    margin: 2rem auto;
    background-color: #F4F4F4;
    padding: 1rem;
    border-radius: 1rem;
    max-width: 30rem;
    width: 100%;
}

.order-list {
    list-style: none;
    text-align: left;
    font-size: 1.8rem;
}

.order-list ul li {
    list-style: square;
    list-style-position: inside;
    margin-left: 1rem;
}


#order-confirm-date {
    font-weight: bold;
    font-size: 1.8rem;
}

.confirm-list {
    background-color: #F4F4F4;
    padding: 1.5rem;
    border-radius: 3rem;
}

.order-list li {
    margin-bottom: 1rem;
}

.order-list span {
    font-weight: bold;
}

.checkmark-icon {
    margin-right: 0.5rem;
}

#book-number,
.x-icon {
    margin-right: 0.5rem;
}

.shortcut-pages button {
    padding: 1.5rem;
    width: 100%;
    max-width: 18rem;
    width: 100%;
    height: 4rem;
    border-radius: 10px;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    height: min-content;
    margin: 1rem;
    white-space: nowrap;
    background-color: #DBD9D9;
}

.shortcut-pages p {
    font-size: 2rem;
}

.shortcut-pages button:last-child {
    background-color: #00532A;
    color: white;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.shortcut-pages i {
    margin-right: 0.5rem;
}

.order-list i {
    margin-right: 0.5rem;
}

.order-list
/*.....................................................Bokade resor....................................................................*/

.container-booked {
    border: 20px solid #DBD9D9;
    background-color: #DBD9D9;
    border-radius: 5rem;
    max-width: 45rem;
    width: 100%;
    height: 45rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}


.bokade-resor {
    border: 20px solid #DBD9D9;
    border-radius: 0 0 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #DBD9D9;
}

/*........................Bokade resor rader.........................*/

.wrap-book {
    height: min-content;
    background-color: white;
    padding: 1.5rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
}



.wrap-book li {
    list-style: none;
}

.book-info ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.book-order {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 1rem;
}

.book-info-text {
    font-size: 1.8rem;
}

.book-info ul:first-child {
    font-size: 2rem;
    font-weight: bold;
}

.booking-passed {
    background-color: #DCA4A9;
}

.bookings-btn {
    display: flex;
    justify-content: right;
    gap: 2rem;
    margin: 1rem 0 0 0;
}

.bookings-btn i {
    margin-right: 0.5rem;
}

.bookings-btn>* {
    padding: 1.5rem;
    max-width: 18rem;
    width: 100%;
    height: 4rem;
    border-radius: 10px;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    height: min-content;
    margin: 1rem 0 1rem 0;
    white-space: nowrap;
}

.bookings-btn button:first-child {
    background-color: #00532A;
    color: white;
}

.bookings-btn button:last-child {
    background-color: #DCA4A9;
    color: #1E1E1E;
}

/*.......................................Avboka resa...............................................*/

.cancel-booking-btn button:first-child {
    background-color: #00532A;
    color: white;
    font-size: 2rem;
}

.cancel-booking-btn button:last-child {
    background-color: #DCA4A9;
    color: #1E1E1E;
    font-size: 2rem;
}

.cancel-info {
    max-width: 30rem;
    width: 100%;
}

/*....................................Avboka resa bekräftelse.......................................*/

.cancel-confirm h3 {
    margin-bottom: 2rem;
}

.cancel-confirm p {
    font-size: 2rem;
    margin-top: 0;
}

.shortcut-pages-cancel {
    margin-top: 3rem;
    font-size: 1.8rem;
}

.shortcut-pages-cancel button {
    margin-bottom: 3rem;
}



/*.......................................Ändra resa...............................................*/

.change-cancel-btn {
    display: flex;
    flex-wrap: wrap;
    max-width: 50rem;
    margin: 0 auto;
    gap: 2rem;
}

#cancel-btn {
    border-radius: 10px;
    border: none;
    background-color: #DCA4A9;
    color: #1E1E1E;
    font-size: 2rem;
    cursor: pointer;
    padding: 2rem;
    white-space: nowrap;
    width: 100%;
    max-width: min-content;
    margin: 2rem auto;
    text-decoration: none;
}

#change-trip-btn {
    border-radius: 10px;
    border: none;
    background-color: #00532A;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 2rem;
    white-space: nowrap;
    width: 100%;
    max-width: min-content;
    margin: 2rem auto;
    text-decoration: none;
}



/*Tillgänglighetsredogörelse*/

.tillganglig-container {
    border: 20px solid #DBD9D9;
    background-color: white;
    border-radius: 0 5rem 5rem 5rem;
    max-width: 70rem;
    width: 100%;
    height: min-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.tillganglig-container h2 {
    font-size: 3.6rem;
}

.tillganglig-container h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.tillganglig-container h4 {
    font-size: 2.2rem;
    max-width: 57rem;
    width: 100%;
    margin: 1.5rem auto 1rem auto;
    text-align: left;
}

.tillganglig-container p {
    font-size: 1.8rem;
    width: 100%;
    max-width: 55ch;
    text-align: left;
    margin: 0 auto 1.5rem auto;
}

.tillganglig-container a {
    color: #1E1E1E;
}

/*........................................Footer..................................................*/

footer {
    margin-top: 10rem;
    grid-area: footer;
    background-color: #1E1E1E;
    height: min-content;
    z-index: 1;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0px -10px 10px -10px rgba(30, 30, 30, 1);

}

.footer-container {
    padding: 1rem;
    display: flex;
    justify-content: space-evenly;
}

.footer-container ul {
    list-style: none;
}

.footer ul li a {
    color: white;
}

.footer-container ul li {
    padding: 0.5rem;
    font-size: 1.6rem;
}

footer li i {
    margin-right: 0.5rem;
}

footer li a {
    color: white;
}

.footer-container ul li:first-child {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-container ul li a:hover {
    color: #DBD9D9;
}

/*..................................................Media queries........................................................*/

@media screen and (max-width:1000px) {

    /*......................................hamburger menu.......................................*/
    .hamburger-menu {
        display: block;
    }

    .menu-text {
        display: block;
    }

    /*Transform bars to cross*/
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(0.8rem) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-0.8rem) rotate(-45deg);
    }

    .navbar {
        height: 0;
        align-items: center;
    }

    /*Navbar dropdown*/
    .nav-menu {
        position: fixed;
        right: -200%;
        top: 9rem;
        gap: 0;
        flex-direction: column;
        background-color: rgb(0, 83, 42);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: 100%;
        justify-content: flex-start;
        padding-top: 6rem;
        z-index: 7;
        box-shadow: inset 0 6px 5px -5px black;
    }

    .nav-item {
        display: inline;
        width: 100%;
        font-size: 2.2rem;
    }

    nav li {
        padding: 3rem;
    }

    .nav-menu.active {
        right: 0rem;
        padding-top: 6rem;
    }
    .nav-item:hover {
        border-bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    #nav-global-active {
        background-color: #DBD9D9;
        width: 100%;
        max-width: 100%;
        border-bottom: none;
    }

    #nav-global-active a,
    .nav-item .nav-link i {
        color: #1E1E1E;
    }

    #nav-global-active i {
        color: #1E1E1E;
    }

    .nav-item i {
        transform: scale(2);
        margin-bottom: 2rem;
    }
}

/*......................................Skärmbredd under 612px.......................................*/
@media screen and (max-width:612px) {
    .help-guide {
        justify-content: center;
    }

    .search-bar {
        margin-top: 1rem;
    }

    main {
        margin-top: 17rem;
    }


}

/*......................................Skärmbredd under 550px.......................................*/
@media screen and (max-width:550px) {

    main {
        margin-top: 0;
    }

    .menu-text {
        visibility: hidden;
    }

    header h1 {
        font-size: 3.6rem;
    }

    header h1 #title {
        font-size: 3rem;
    }

    /*Bakgrundsbild*/

    .wrapper {
        padding: 1rem;
    }

    .background {
        margin-top: -12rem;
    }

    .background-light {
        margin-top: -12rem;
        background-image: none;
        background-color: #F4F4F4;
        filter: none;
    }

    /*Container innehåll*/
    .container {
        border-radius: 0 0 3rem 3rem;
        border: 10px solid #DBD9D9;
    }

    .wrap-confirm {
        border-radius: 0 0 3rem 3rem;
        border: 10px solid #DBD9D9;
    }

    .login {
        border-radius: 3rem !important;
    }

    .bokade-resor {
        border-radius: 0 0 3rem 3rem;
    }

    .minsida,
    .bokaresa,
    .contact-container,
    .om-fardtjanst,
    .bokade-resor {
        border: 10px solid #DBD9D9;
    }

    /*Hjälpmedel*/
    .help-guide {
        justify-content: center;
        position: unset;
        margin-bottom: 0;
    }

    /*alla bokningsknappar*/

    .change-cancel-btn {
        justify-content: center;
    }

    #cancel-btn {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
    }

    #change-trip-btn {
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }

    .btn-login {
        width: 100%;
        padding: 2rem;
        max-width: 50rem;
    }

    .btn-info button {
        padding: 2rem;
    }

    .short-cut-mypage {
        display: block;
    }

    .short-cut-mypage button {
        max-width: 100%;
        margin: 1rem auto;
        padding: 2rem;
    }

    .bookings-btn {
        display: block;
    }

    .bookings-btn button {
        padding: 2rem;
        max-width: 100%;
        margin: 1rem auto;
    }

    .shortcut-pages button {
        padding: 2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .shortcut-pages button:first-of-type {
        margin-bottom: 3rem;
        margin-top: 1rem;
    }

    /*Genvägsknappar*/
    #mypage-btn {
        max-width: 100%;
        padding: 2rem;
    }

    #startpage-btn {
        max-width: 100%;
        padding: 2rem;
    }

    .btn-position {
        gap: 0;
        flex-wrap: wrap;
    }

    .btn-position button:first-child {
        margin-bottom: 2rem;
    }

    /*Bokade resor*/
    .order-list {
        margin-bottom: 2rem;
    }

    .book-info ul {
        display: block;
    }

    .book-info {
        margin-bottom: 2rem;
        text-align: left;
    }

    .book-info-text {
        margin-bottom: 1rem;
    }

    .book-number {
        display: none;
    }

    /*Kontakt- FAQ*/
    .question+label {
        font-size: 1.6rem;
        padding: 1.5rem;
    }

    .contact-container p {
        font-size: 1.6rem;
    }

    /*Footer*/
    footer {
        height: min-content;
        margin-top: 0;
    }

    .footer-container {
        flex-direction: column;
        padding: 2rem;
    }

    .footer-container ul li {
        font-size: 1.4rem;
        padding-bottom: 0;
    }

    .footer-container ul li:first-child {
        font-size: 1.6rem;
        margin-bottom: 0;

    }

    #about-list {
        margin-bottom: 2rem;
    }

    #contact-list {
        margin-bottom: 1rem;
    }

}