:root {
    --primary-color: #17528e;
    --secondary-color: #595660;
}

body {
    font-family: 'Noto Sans', sans-serif;
   
}
a{
    color: #0b5fa8;
    font-weight:500;
}

.full-page {
    min-height: 80vh;
}

.navHeader {
    background-color: #fff;

    position: relative;
    padding: 0px 0px;
    margin: auto;
    display: flex;
    align-items: center;
}

.navbar {
    border-bottom: 1px solid black;
    margin-bottom: 0px;
}

/*#divDesktopMenu ul {*/
/*    float:right;*/
/*    margin-top:10px;*/
/*    width:100%;*/
/*    margin-bottom: 0px;*/
/*    color:#ffffff !important;*/
/*}*/



/*#divDesktopMenu li {*/
/*    padding: 5px 15px 5px 0px;*/
/*    float:left;*/
/*    display:inline;*/
/*    list-style-type:none;*/
/*    margin-top:5px;*/
/*    color:#ffffff !important;*/
/*}*/

/*#divDesktopMenu ul.smalMenu  li {*/
/*    padding:5px 5px 5px 5px;*/
/*    float:left;*/
/*    display:inline;*/
/*    list-style-type:none;*/
/*    margin:5px 10px 0px -2px;*/


/*color:#ffffff !important;*/
/*}*/


/*---------Login section style------*/
.loginMenu hr {
    background-color: var(--primary-color);
}

.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-warning:hover {
    background-color: #0065A610;
    border-color: var(--primary-color);
    color: black;
}

.btn-info {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-info:hover {
    background-color: #0065A610;
    border-color: var(--primary-color) !important;
    color: black;
}

.loginMenu>div:nth-of-type(2)>a.btn-info:first-of-type {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: #fff;

    color: black;
}

/*-----------------------------------------------------*/
/*-------------Menu Links ---start---------------------*/
/*.nav-links {*/
/*    display: flex;*/
/*    margin-top: 10px;*/
/*}*/

/*.nav-links li {*/
/*    list-style: none;*/
/*    position: relative;*/
/*}*/

/*.nav-links li a {*/
/*    color: var(--primary-color);*/
/*    text-decoration: none;*/
/*    font-weight: 500;*/
/*    padding: 5px 10px;*/
/*    border-radius: 5px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.nav-links li a:hover {*/
/*    background: var(--primary-color);*/
/*    color: white;*/
/*}*/

/*.nav-links .mobile-item {*/
/*    display: none;*/
/*}*/

/*.nav-links .drop-menu {*/
/*    position: absolute;*/
/*    background: var(--secondary-color);*/
/*    width: 180px;*/
/*    line-height: 45px;*/
/*    top: 50px;*/
left: 0;
/* Ensure the dropdown is aligned to the left */
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.nav-links li:hover .drop-menu {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    top: 65px;*/
/*}*/

/*.drop-menu li a {*/
/*    width: 100%;*/
/*    display: block;*/
/*    padding: 0 0 0 15px;*/
/*    font-weight: 400;*/
/*    border-radius: 0px;*/
/*}*/

/*@media screen and (max-width: 800px) {*/
/*    #divMobileMenu .nav-links {*/
/*        display: block !important;*/
/*        padding: 20px 10px;*/
/*        line-height: 50px;*/
/*        overflow-y: auto;*/
/*        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #menu-btn:checked ~ .nav-links {*/
/*        left: 0%;*/
/*    }*/

/*    #menu-btn:checked ~ .btn.menu-btn {*/
/*        display: none;*/
/*    }*/

/*    #close-btn:checked ~ .btn.menu-btn {*/
/*        display: block;*/
/*    }*/

/*    .nav-links li a {*/
/*        padding: 0 20px;*/
/*        display: block;*/
/*        font-size: 20px;*/
/*    }*/

/*    .nav-links .drop-menu {*/
/*        position: static;*/
/*        opacity: 1;*/
/*        visibility: visible;*/
/*        padding-left: 20px;*/
/*        width: 100%;*/
/*        max-height: 0px;*/
/*        overflow: hidden;*/
/*        box-shadow: none;*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    #showDrop:checked ~ .drop-menu {*/
max-height: 500px;
/* Adjust this value if necessary */
/*    }*/

/*    .nav-links .desktop-item {*/
/*        display: none;*/
/*    }*/

/*    .nav-links .mobile-item {*/
/*        display: block;*/
/*        color: var(--secondary-color);*/
/*        font-size: 20px;*/
/*        font-weight: 500;*/
/*        padding-left: 20px;*/
/*        cursor: pointer;*/
/*        border-radius: 5px;*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    .nav-links .mobile-item:hover {*/
/*        background: #3A3B3C;*/
/*    }*/

/*    .drop-menu li {*/
/*        margin: 0;*/
/*    }*/

/*    .drop-menu li a {*/
/*        border-radius: 5px;*/
/*        font-size: 18px;*/
/*    }*/

/*    .content .row header {*/
/*        font-size: 19px;*/
/*    }*/
/*}*/

/*.nav-links input {*/
/*    display: none;*/
/*}*/
/*-------------Menu Links -------end-------------------*/
/*-------------Menu Links -------------------------*/

/* Styling for Navbar Links */
.navbar-nav>li>a,
.navbar-nav .dropdown-menu>li>a {
    color: black;
    /* Set link color to black */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 15px;

    
}

.navbar-nav>li>a:hover,
.navbar-nav .dropdown-menu>li>a:hover {
    background-color: var(--primary-color);
    /* Adjust background color for hover */
    color: white;
    /* Text color on hover */
}

/* Styling for Navbar Brand */
.navbar-header a.navbar-brand {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.navbar-header a.navbar-brand:hover {
    text-decoration: none;
}

/* Styling for Language Swap */
.navbar-right div {
    margin: 15px 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Optional: Adjustments for specific elements */
.navbar-toggle {
    border: none;
    /* Remove border if needed */
}

.navbar-toggle .icon-bar {
    background-color: var(--primary-color);
    /* Adjust color of toggle bars */
}

.navbar-nav a {
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 2px;
    margin:2px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

li.mainMenuSelected a {

    background-color: var(--primary-color);
    color: white;
}

li.mobileMenuSelected a {

    background-color: var(--primary-color);
    color: white;
}

/*------------Footer Container SECTION-------start-----*/

.mainFooter {
    background: var(--secondary-color);
    ;
    color: #fff;
    margin-top: 70px;
    padding: 20px;
}

.mainFooter .navigateContainer {
    background: var(--secondary-color);
    ;
    padding: 60px 0;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.mainFooter .navigateLinks {
    font-size: 90%;
    max-width: 1188px;
    margin: 0 auto;
}

.mainFooter .navigateLinks .column {
    padding: 0 15px;
}

.mainFooter .navigateLinks a {
    color: #fff;
    text-decoration: none;
}

.mainFooter .navigateLinks ul li {
    margin: 20px 0;
    line-height: 1.4;
    list-style: none;
}



.articleTemplate_Content {
    line-height: 1.8;
}

.location {
    margin-top: 20px;
}

.cfPhone {
    font-size: 160%;
}

.cfHotelName {
    display: block;
    margin: 15px 0 5px;
}

.articleTemplate_Container {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.cfAddressInfo {
    list-style-type: none;
}

.cfAddressInfo li a {
    /*  color:#F8C4C8;*/
}


.mainFooter .articleTemplate_Container {
    max-width: 1180px;
    width: 100%;
}

.articleTemplate_Container {
    width: 90%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin: 50px auto 0;

    justify-content: space-between;

}

.footer-logo {
    width: 225px;
    /* Default size */
}

@media (max-width: 910px) {
    .footer-logo {
        width: 160px;
        /* Smaller size for mobile */
    }
}

/*------------Footer Conatiner SECTION -----end------*/

/* ---------- Home page button section ----------*/
.grayButton {

    display: inline-block;
    padding: 10px 20px;
    border-radius: 60px;
    background-color: var(--primary-color);
    ;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    ;
    font-size: min(5vw, 20px);
    justify-content: center;
    width: 100%;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
}

.grayButton:hover {
    color: Black;
    background-color: white;
    text-decoration: none;
}

/*--------- end ---------------------------*/

/*----- Home page welcome text section ----*/
.welcome-text-section .text-center {
    text-align: center;
}

/* Styles for mobile devices */
@media (max-width: 990px) {
    .welcome-text-section .row.text-center h2 {
        text-align: center;
    }

    .welcome-text-section .row>div {
        text-align: center;
    }

    .welcome-text-section .row>div h3 {
        text-align: center;
    }

    .welcome-text-section .row>div p {
        text-align: center;
    }
}

/*---------- end ------------*/

.well {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease;
    
}
 .well:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

    /* För lilla inforutan */
    .styled-table-ft
    {
        border: solid 1px #8b1936;
        border-spacing: 0;
        font-size: 16px;
    }
    
    .styled-table-ft thead th
    {
        background-color: #8b1936;
        border: solid 1px black;
        color: #8b1936;
        padding: 10px;
        text-align: left;
        text-shadow: 1px 1px 1px #fff;
    }
    
    .styled-table-ft tbody td
    {
        /*
    border: solid 1px #DDEEEE;
    color: #333;
    padding: 10px;
    text-shadow: 1px 1px 1px #fff;
    */
    }
    
    .t-tbody-tr1
    {
        background-color: #8b1936;
        border: solid 1px black;
        color: white;
        font-weight: 700;
        padding: 10px;
        white-space: nowrap;
        text-align: left;
        /*  text-shadow: 0.5px 0.5px 0.5px #385494;  */
    }
    
    .t-tbody-tr2
    {
        border: solid 1px black;
        color: #333;
        padding: 10px;
        text-shadow: 1px 1px 1px #fff;
    }
    
    .custom-container-ft
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }
    
    @media (min-width: 1000px)
    {

        /* Anpassa beroende på önskad brytpunkt för stora skärmar */
        .custom-section table
        {
            /*min-width: 900px; */
            min-width: 100%
        }
    }

        