@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');
        
        body {
            font-family: "Open Sans", serif;
            margin: 0;
            padding: 0;
        }

        /* Full-width header styling */
        .dno-header {
            /*width: 100%;*/
            height: 300px; /* Adjust height as needed */
            display: flex;
            align-items: center;
            background-image: url('https:\2f\2fmedia.deloitte.com\2fis\2fimage\2f deloitte\2f Deloitte-Headerbanner-career-page-1920x880px-discoveryourpath:1920-x-624?$Responsive$\26 fmt=webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 160px;
            position: relative;
        }

        .dno-header-content {
            position: relative;
            max-width: 50%;
            text-align: left;
            z-index: 2;
        }

        .dno-header h1 {
            font-family: "Open Sans", serif;
            font-weight: 300;
            font-size: 36px; /* Adjust font size as needed */
            margin: 0;
        }

        .dno-header p {
            font-family: "Open Sans", serif;
            font-weight: 300;
            font-size: 18px; /* Adjust font size as needed */
            margin: 10px 0 0;
        }

        @media (max-width: 768px) {
            .dno-header h1 {
                font-size: 28px; /* Adjust font size for smaller screens */
            }

            .dno-header p {
                font-size: 14px; /* Adjust font size for smaller screens */
            }
        }
        
        .dno-container {
            display: flex;
            flex-wrap: wrap;
            background-color: #004f59;
            margin-top: 10px;
            margin-bottom: 30px;
        }
        
        .dno-menu {
            width: 380px;
            padding: 10px;
            font-family: "Open Sans", serif;
            color: #1C1C1C;
        }

        #dno-menu-close {
            cursor: pointer;
        }

        #dno-menu-close line {
            fill: none;
            stroke: #1c1c1c;
            stroke-linecap: round;
            stroke-width: 1;
        }

        #dno-menu-close .dno-svg-circle {
            fill: #e0f1ea;
            stroke: #1c1c1c;
            stroke-width: 1;
        }

        .dno-right-column {
            flex: 1; /* Right column takes up remaining space */
            display: flex;
            flex-direction: column; /* Stack filter buttons above the content boxes */
            padding: 0px 10px;
            box-sizing: border-box;
        }

        .dno-filter-bar {
            width: 100%; /* Filter bar spans the full width of the right column */
            display: none;
            flex-wrap: wrap;
            gap: 10px;
            padding: 10px;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        .dno-filter-bar .dno-filter-button {
            display: flex;
            align-items: center;
            background-color: #ddefe8;
            color: #004f59;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            font-family: "Open Sans", serif;
            cursor: pointer;
            border: none;
        }

        .dno-filter-bar .dno-filter-button span {
            margin-left: 8px;
            font-weight: bold;
            color: #004f59;
            cursor: pointer;
        }

        .dno-filter-bar .dno-filter-button span:hover {
            color: #fff;
        }
        
        .dno-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border-radius: 6px 6px 0px 0px;
            background-color: #e0f1ea;
            font-weight: 300;
            color: grey;
        }
        
        .dno-menu-header span {
            width: 16px;
            height: 16px;
            display: inline-block;
            position: relative;
            cursor: pointer;
        }
        
        .dno-menu-header span:before, .dno-menu-header span:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: grey;
            top: 50%;
            left: 0;
            transform: rotate(45deg);
            border-radius: 2px;
        }
        
        .dno-menu-header span:after {
            transform: rotate(-45deg);
        }
        
        .dno-menu-header button {
            background-color: #e0f1ea;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            font-weight: 300;
            color: #1C1C1C;
            outline: none;
        }

        .dno-menu-header button:hover {
            color: #797979;
        }
        
        .dno-menu-item {
            cursor: pointer;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #007680;
            font-weight: 300;
            color: #fff;
        }
        
        .dno-menu-item:hover {
            background-color: #004F59;
        }
        
        .dno-dropdown {
            display: none;
            padding-left: 4px;
            background-color: #ddefe8;
        }
        
        .dno-dropdown-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px;
        }
        
        .dno-dropdown-item label {
            display: flex;
            align-items: center;
        }
        
        .dno-dropdown-item input[type="checkbox"] {
            margin-right: 10px;
            accent-color: #007680;
        }
        
        .dno-arrow {
            transition: transform 0.3s;
            display: inline-block;
            width: 8px;
            height: 8px;
            border: 2px solid #fff;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
        }
        
        .dno-arrow.rotate {
            transform: rotate(-135deg);
        }
        
        .dno-boxes {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            /* flex: 1; */
            padding: 10px;
        }

        .dno-boxes p {
            color: #ddefe8;
        }
        
        .dno-box {
            flex: 1 1 calc(100% - 20px);
            background-color: #ffffff;
            border-radius: 10px;
            border: 1px solid #ccc;
            padding: 15px;
            box-sizing: border-box;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .dno-box h2 {
            font-size: 17pt;
            margin: 10px 0 10px 0;
            font-family: "Open Sans", serif;
            font-weight: 400;
            color: #1C1C1C;
        }
        
        .dno-box p {
            font-size: 14px;
            color: #555;
        }
        
        .dno-box button {
            background-color: #fff;
            border: none;
            color: #26890D;
            padding: 10px 30px;
            border-radius: 8px;
            cursor: pointer;
            display: block;
            margin-top: 15px;
            font-size: 18pt;
            font-weight: bold;
            float: right;
            text-decoration: underline;
            outline: none;
        }

        .dno-box button:hover {
            color: #86bc25;
        }

        .dno-svg-container svg {
            height: 1em;
        }
        
        #dno-load-more {
            padding: 8px 70px;
            margin: 0 auto;
            margin-top: 20px;
            border-radius: 30px;
            font-size: 11pt;
            font-weight: bold;
            color: #fff;
            background-color: #86bc25;
            border: none;
            cursor: pointer;
        }

        #dno-load-more:hover {
            color: #fff;
            background-color: #26890D;
        }

        .dno-text-container {
            padding: 20px 20px 0px 20px;
        }

        .dno-text-container span {
            color: #26890D;
            font-family: "Open Sans", serif;
            font-weight: 400;
            margin-right: 5px;
        }
        
        .dno-text-container span.dno-rounded {
            display: inline-block;
            background: #FAFAFA 0% 0% no-repeat padding-box;
            border: 1.5px solid #26890D;
            border-radius: 17px;
            padding: 7px 10px;
            margin-top: 8px;
            margin-right: 10px;
        }

        .dno-location-level-container span.dno-rounded:last-child {
            margin-right: 0;
          }

        .dno-location-level-container {
            margin-top: 20px;
            margin-bottom: -20px;
        }
        
        .dno-dropdown-item span {
            display: inline-block;
            padding: 4px 8px; /* Padding around the number */
            border-radius: 4px; /* Optional: rounded corners */
            text-align: center; /* Center the text */
            min-width: 20px; /* Minimum width to ensure it's a square */
            height: 20px; /* Fixed height to ensure it's a square */
            line-height: 20px; /* Center the text vertically */
            font-weight: bold; /* Optional: make the text bold */
            font-size: 10pt;
            background: #BFD9CF 0% 0% no-repeat padding-box;
            box-shadow: inset 1px 1px 1px #00000029;
        }

        .dno-arrow-up {
            z-index: 8;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            text-align: center;
            font-size: 2.5rem;
            position: fixed;
            bottom: 60px;
            right: 40px;
            filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 1px 7px);
            cursor: pointer;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .dno-arrow-up.dno-fade-in {
            opacity: 1;
        }

        .dno-arrow-up:hover #dno-arrow-path {
            animation: bounce 1s ease-in-out 2;
        }

        @keyframes bounce { 
            50% {transform:translate(3279.846px, 5.306px);}
        }
        
        @media (max-width: 768px) {
            .dno-container {
                flex-direction: column;
            }
            
            .dno-menu {
                width: 95%;
            }
            
            .dno-boxes {
                padding: 0;
            }
            
            .dno-box {
                width: 100%;
                margin: 0 10px;
                padding: 5px 0px 10px 0px;
            }
            
            .dno-box button {
                margin: 0 auto;
                margin-top: 40px;
                margin-bottom: 12px;
                padding: 0;
                text-align: center;
                float: none;
            }
            .dno-header-content {
                max-width: 100%;
            }

            .dno-text-container {
                padding: 20px 20px 0px 20px;
            }
        }

        @media (max-width: 1200px) {
            .dno-header {
                padding: 0px;
                background: #000;
                background-size: auto;
                background-repeat: no-repeat;
                background-position: top;
                background-image: url(/content/dam/html/no/nordic-job-search/img/Deloitte-Headerbanner-job-page-mobile-375x375px.jpg);
            }
            .dno-text-container span.dno-rounded {
                font-size: 10pt;
            }
            .dno-arrow-up {
                right: 60px;
            }
            .dno-header {
                height: 550px; /* Adjust height for smaller screens */
            }

            .dno-header-content {
                max-width: 100%; /* Allow text to take full width on smaller screens */
                margin-top: 280px;
                padding: 30px;
            }
        }

        /* CUSTOM AEM ADJUSTMENS */
        .bodyresponsivegridcontainer {
            padding-right: 0 !important;
            padding-left: 0 !important;
        }
        .root {
            background-color: #004F59;
        }