﻿th {
    text-align: left;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

html {
    overflow-y: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

body {
    /* Center body  */
    margin: auto;
    padding: 0;
}

html, body, input, textarea {
    /* Font */
    font-size: 96%;
    line-height: 17pt;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

.semibold {
    font-weight: 400;
}

.cms-leftMenuEmpty {
    font-size: 248%;
    vertical-align: middle;
    color: #fff;
    background-color: #ccc;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    text-align: center;
}

.glob-content-subheader-icon {
    cursor:pointer;
    width:44px;
}
.glob-content-subheader-text {
    max-width: 79%;
    padding-left:2px;
}
.glob-content-subheader-arrow {
    padding: 10px;
    cursor: pointer;
}
.glob-header-h1 {
    font-size: 248%;
    line-height: 38px;
    margin-bottom: 12px;
}

.glob-header-h1-lineheight {
    line-height: 36px;
}
.glob-ValignTop {
    vertical-align:top;
}
.glob-header-h2 {
    font-size: 200%;
    line-height: 32px;
    margin-bottom: 12px;
}

.glob-header-h3 {
    font-size: 120%;
    line-height: 32px;
    margin-bottom: 12px;
    font-weight: bold;
}

.glob-h1mini {
    font-size: 60%;
    font-weight: bold;
}

.glob-font-small {
    font-size: 84%;
}

h1 sup {
    line-height: 24px;
    font-size: 58%;
    margin-top: -2px;
}

h3 sup {
    vertical-align: super;
    line-height: 2px;
}

h1 {
    /*font-size: 28pt;
    line-height:32pt;*/
    font-size: 248%;
    margin-top: -8px;
    padding-top: 0;
    line-height: 38px;
    margin-bottom: 12px;
}

h2 {
    /*font-size: 24pt;
    line-height:26pt;*/
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 12px;
}

h3 {
    /*font-size: 22pt;
    line-height:24pt;*/
    font-size: 120%;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 8px;
}

h4 {
    line-height: 18pt;
    font-size: 114%;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 8px;
}

h5 {
    /*font-size: 12pt;
    line-height:17pt;*/
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 8px;
}

h6 {
    /*font-size: 12pt;
    line-height:17pt;*/
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 8px;
    color: #646464;
}

a img {
    border: 0;
}

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Styles for the collapsible button itself */
.glob-collapsible-header {
    background-color: #fff;
    cursor: pointer;
    padding: 8px; /* Adjust as needed */
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    border: 1px solid #ccc;
    margin-bottom: 2px;
    box-sizing: border-box;
    /* Use Flexbox to align text and the ::after pseudo-element (arrow) */
    display: flex;
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Pushes text to left, pseudo-element to right */
    position: relative; /* For ::after positioning if needed, though flex usually handles it */
}

/* Styles for the content that expands/collapses */
.glob-collapsible-content {
    padding: 0 18px 0 0; /* Original padding */
    margin-bottom: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Remove your old character-based ::after rules */
/*
.glob-collapsible-header:after {
    content: '\25BC';
    font-weight: bold;
    float: right; /* Flexbox makes float unnecessary here */
/*    margin-left: 5px;
}
.glob-collapsible-active:after {
    content: '\25B2';
}
*/

/* --- MODIFICATIONS FOR THE ARROW ICON ON CHILD ELEMENTS --- */
.glob-collapsible-header::after {
    content: '';
    display: inline-block;
    width: 15px; /* Example: Smaller width (e.g., 12px instead of 17px) */
    height: 11px; /* Same height as parent's arrow */
    background-image: url('/Content/Images/Pro/Topmenu/link_foldud_pro.gif');
    background-repeat: no-repeat;
    background-position: center;
    /* This will stretch/squish the image to fit the new 12x11 dimensions */
    background-size: 100% 100%;
    /* Alternatively, you could explicitly set: background-size: 12px 11px; */
    margin-right: 2.5px;
    flex-shrink: 0; /* Prevent arrow from shrinking if text is long */
    /* Rotation properties */
    transform-origin: 50% 50%;
    transform: rotate(0deg); /* Default state (arrow pointing down) */
    transition: transform 0.2s ease-out; /* Smooth rotation animation */
}

.glob-collapsible-header:hover {
    background-color: #fafafa;
}

/* When .glob-collapsible-header has .glob-collapsible-active (toggled by your JS),
   rotate the ::after pseudo-element (the arrow) */
.glob-collapsible-header.glob-collapsible-active::after {
    transform: rotate(180deg); /* Arrow points up */
}

.glob-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
}

.glob-search-menu {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 8888;
    top: 0;
}

.glob-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.glob-content-main-wrapper {
    min-height: 600px;
    margin-top: 263px;
}

.glob-content-main-wrapper-cols {
    min-height: 49px;
}

.glob-alignCenter {
    text-align: center;
}

.glob-alignLeft {
    text-align: left;
}

.glob-alignRight {
    text-align: right;
}

.glob-medicin-big-logo {
    text-align: center;
    margin-bottom: 16px;
}

#glob-medicin-big-logo-img {
    width: 27%;
}

.glob-videoicon { /*height: 15px;*/
}
.glob-subheader-videoicon {
    margin-top: -10px;
}
.glob-notesicon {
    height: 22px;
}
.glob-svgicon {
    max-width: 40px;
    min-width: 30px;
    margin-bottom: -10px;
    margin-left: -6px;
} 
.glob-notesCountText {
    position: absolute;
    float: right;
    height: 20px;
    font-size: 95%;
    margin-left: 7px;
    margin-top: -36px;
    font-weight: bold;
    text-shadow: 1px 0px #fff;
}

.glob-notesdiv {
    position: relative;
    top: 0px;
    left: 0px;
    display: none;
}

.glob-note {
    background-image: url('/Content/Images/Global/Notes/sticky-note-bg.png');
    padding: 20px;
    padding-top: 20px;
    padding-left: 10px;
    padding-left: 10px;
    padding-bottom: 30px;
    background-size: 108% 96%;
    background-repeat: no-repeat;
    background-position-y: 6px;
    background-position-x: -20px;
}

.noteuserphoto {
    float: left;
}


.glob-floatLeft {
    float: left;
}

.glob-floatRight {
    float: right;
}

.glob-floatNone {
    float: none;
    clear: both;
}

.glob-autoflow {
    overflow: auto;
}

.glob-hideflow {
    overflow: hidden;
}

.glob-nowrap {
    white-space: nowrap;
}

.glob-wrap {
    white-space: normal;
}

.glob-DisplayInline {
    display: inline;
}

.glob-overflowVisible {
    overflow: visible;
}

.glob-displayNone {
    display: none;
}

.glob-displayBlock {
    display: block;
}

.glob-visibilityHidden {
    visibility: hidden;
}

.glob-fontsize70pc {
    font-size: 70%;
}

.glob-fontsize84pc {
    font-size: 84%;
}

.glob-fontsize90pc {
    font-size: 90%;
}

.glob-fontsize98pc {
    font-size: 98%;
}

.glob-fontsize130pc {
    font-size: 130%;
}

.glob-fontsize18ptBold {
    font-size: 18pt;
    font-weight: bold;
}

.glob-fontsize13pt {
    font-size: 13pt;
}

.glob-Date {
    font-size: 8.5pt;
    color: #868686;
    font-weight: bold;
}

.glob-borderNone {
    border: 0;
}

.glob-fixed {
    position: fixed;
    top: 0;
    z-index: 8888;
}

.glob-marginRight30 {
    margin-right: 30px;
}

.glob-paddingRight2pct {
    padding-right: 2%;
}

.glob-padright7 {
    padding-right: 7px;
}

.glob-padleft20 {
    padding-left: 20px;
}
.glob-padleft35 {
    padding-left: 35px;
}
    .glob-nophone-marginRight30 {
    margin-right: 30px;
}

.glob-marginRight20 {
    margin-right: 20px;
}

.glob-nomarginTop {
    margin-top: 0;
}

.glob-padNone {
    padding: 0px;
}

.glob-padTopBtm25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.glob-padTop20 {
    padding-top: 20px;
}

.glob-padTop50 {
    padding-top: 50px;
}

.glob-padTop12 {
    padding-top: 12px;
}

.glob-padTop14 {
    padding-top: 14px;
}

.glob-padTop6 {
    padding-top: 6px;
}

.glob-padTop50 {
    padding-top: 50px;
}

.glob-padTop70 {
    padding-top: 70px;
}

.glob-padbtm6 {
    padding-bottom: 6px;
}

.glob-padbtm4 {
    padding-bottom: 4px;
}

.glob-padbtm20 {
    padding-bottom: 20px;
}

.glob-padbtm70 {
    padding-bottom: 70px;
}

.glob-padbtm10 {
    padding-bottom: 10px;
}

.glob-marginTop12 {
    margin-top: 12px;
}

.glob-marginTop25 {
    margin-top: 25px;
}

.glob-marginTop2 {
    margin-top: 2px;
}

.glob-marginTop4 {
    margin-top: 4px;
}

.glob-marginTop8 {
    margin-top: 8px;
}

.glob-marginTop40 {
    margin-top: 40px;
}

.glob-marginTop20 {
    margin-top: 20px;
}
/* Add topmargin to anchors*/
.glob-marginTop120 {
    margin-top: 120px;
}
.glob-marginBtm8 {
    margin-bottom: 8px;
}

.glob-marginBtm12 {
    margin-bottom: 12px;
}

.glob-marginBtm16 {
    margin-bottom: 16px;
}

.glob-marginBtm20 {
    margin-bottom: 20px;
}


.glob-marginBtm40 {
    margin-bottom: 40px;
}

.glob-marginTopBtm15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.glob-marginTopBtm10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.glob-marginTop22Btm8 {
    margin-top: 22px;
    margin-bottom: 8px;
}

.glob-marginTopBtm32 {
    margin-top: 32px;
    margin-bottom: 32px;
}

.glob-marginBtm32 {
    margin-bottom: 32px;
}

.glob-marginTop30 {
    margin-top: 30px;
}

.glob-SpaceBtm {
    margin-bottom: 14px;
}

.glob-marginLeft9 {
    margin-left: 9px;
}

.glob-minheight200px {
    min-height: 200px;
}

.glob-minheight174px {
    min-height: 174px;
}

.glob-maxheight184px {
    max-height: 184px;
}

.width60Procent {
    width: 60%;
}

.width40Procent {
    width: 40%;
}

.width50Procent {
    width: 50%;
}

.width25Procent {
    width: 25%;
}

.width75Procent {
    width: 75%;
}

.width100Procent {
    width: 100%;
}

.width12 {
    width: 12px;
}

.width32 {
    width: 32px;
}

.width40 {
    width: 40px;
}

.width100 {
    width: 100px;
}

.width120 {
    width: 120px;
}

.width122 {
    width: 122px;
}

.width124 {
    width: 124px;
}

.width128 {
    width: 128px;
}

.width180 {
    width: 180px;
}

.width190 {
    width: 180px;
}

.width218 {
    width: 218px;
}

.width266 {
    width: 266px;
}

.width355 {
    width: 355px;
}

.width464 {
    width: 464px;
}

.width474 {
    width: 474px;
}

.width688 {
    width: 688px;
}

.width710 {
    width: 710px;
}

.height100Procent {
    height: 100%;
}

.height75 {
    height: 75px;
}

.height20 {
    height: 20px;
}

.height50 {
    height: 50px;
}

.height200 {
    height: 200px;
}

/* Suggestion global styling - begin */
.ui-autocomplete-loading {
/*
    background: white url('/Content/Images/suggestion/Spinner28x28.gif') right center no-repeat;
*/

}

.ui-sugg-added-text {
    color: #000;
}

.ui-nyhedsliste-image {
    border: 5px solid #e8e8e8;
    margin-bottom: 10px;
}

.ui-searchDiv {
    width: 300px;
    cursor: pointer;
}

.ui-searchDiv:hover {
    background-color: #e8e8e8;
}

.ui-autocomplete {
    width: 230px;
    border: solid 1px #868686;
    border-top: solid 0 none;
    margin: 0;
    padding: 0;
}

.ui-menu {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    background-color: #f8f8f8;
    z-index: 9999;
}

    .ui-menu .ui-menu-item {
        line-height: 30px;
        padding: 4px;
        color: #0082c8;
        background-color: #f8f8f8;
        /*height:30px;*/
    }

.ui-autocomplete .ui-menu .ui-menu-item a {
    display: block;
    line-height: 1;
    padding: 0.2em 0.4em;
    text-decoration: none;
    zoom: 1;
}

.ui-menu .ui-menu-item a {
    display: block;
    line-height: 17px;
    padding: 0.2em 0.4em;
    text-decoration: none;
    font-size: 94%;
}

.highlightColor {
    background-color: #ffffcc;
}

/* Suggestion global styling - end */

.glob-searchtop-back {
    background-position: right bottom;
    background-repeat: no-repeat;
    min-height: 177px;
    background-size: 215px;
}

.glob-searchtop-back-expanded {
    min-height: 90px;
}

.glob-searchtop-back-scrolled {
    min-height: 1px;
}

.glob-boxshadow {
/*    box-shadow: 1px 2px 10px #ccc; */
}

.glob-menutop-burgermenu {
    cursor: pointer;
    text-decoration: none;
    color: #646464;
}

.glob-menutop-burgermenu-text {
    margin: 2px 4px 4px 4px;
    color: #000000;
    text-decoration: none;
    font-size: 92%;
    font-weight: bold;
}

.glob-menutop-burgermenu-text-active {
/*    color: #b2b2b2;*/
}

.glob-topsearch-search-azbuttons-wrapper {
    display: none;
    height: 106px;
    padding-top: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.glob-topsearch-search-azbuttons {
    width: 35px;
    height: 35px;
    margin-bottom: 4px;
    margin-right: 5px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAMAAAApB0NrAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEQ1NURDRTIyQTFEMTFFNUIwNUNFODQ5RUQwREQzN0IiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEQ1NURDRTEyQTFEMTFFNUIwNUNFODQ5RUQwREQzN0IiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjlBNUFGN0MwMkExOTExRTVCMjIyODk1RTM3QkIyRDQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjlBNUFGN0MxMkExOTExRTVCMjIyODk1RTM3QkIyRDQzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+WMSxDgAAAwBQTFRF////hoaGpaWl2tra9vb2jIyMwMDAiYmJy8vLi4uLx8fHysrK9/f329vbAAAADw8PEBAQEREREhISExMTFBQUFRUVFhYWFxcXGBgYGRkZGhoaGxsbHBwcHR0dHh4eHx8fICAgISEhIiIiIyMjJCQkJSUlJiYmJycnKCgoKSkpKioqKysrLCwsLS0tLi4uLy8vMDAwMTExMjIyMzMzNDQ0NTU1NjY2Nzc3ODg4OTk5Ojo6Ozs7PDw8PT09Pj4+Pz8/QEBAQUFBQkJCQ0NDRERERUVFRkZGR0dHSEhISUlJSkpKS0tLTExMTU1NTk5OT09PUFBQUVFRUlJSU1NTVFRUVVVVVlZWV1dXWFhYWVlZWlpaW1tbXFxcXV1dXl5eX19fYGBgYWFhYmJiY2NjZGRkZWVlZmZmZ2dnaGhoaWlpampqa2trbGxsbW1tbm5ub29vcHBwcXFxcnJyc3NzdHR0dXV1dnZ2d3d3eHh4eXl5enp6e3t7fHx8fX19fn5+f39/gICAgYGBgoKCg4ODhISEhYWFhoaGh4eHiIiIiYmJioqKi4uLjIyMjY2Njo6Oj4+PkJCQkZGRkpKSk5OTlJSUlZWVlpaWl5eXmJiYmZmZmpqam5ubnJycnZ2dnp6en5+foKCgoaGhoqKio6OjpKSkpaWlpqamp6enqKioqampqqqqq6urrKysra2trq6ur6+vsLCwsbGxsrKys7OztLS0tbW1tra2t7e3uLi4ubm5urq6u7u7vLy8vb29vr6+v7+/wMDAwcHBwsLCw8PDxMTExcXFxsbGx8fHyMjIycnJysrKy8vLzMzMzc3Nzs7Oz8/P0NDQ0dHR0tLS09PT1NTU1dXV1tbW19fX2NjY2dnZ2tra29vb3Nzc3d3d3t7e39/f4ODg4eHh4uLi4+Pj5OTk5eXl5ubm5+fn6Ojo6enp6urq6+vr7Ozs7e3t7u7u7+/v8PDw8fHx8vLy8/Pz9PT09fX19vb29/f3+Pj4+fn5+vr6+/v7/Pz8/f39/v7+////WBDrSwAAAAF0Uk5TAEDm2GYAAABlSURBVHja7JSxDcAgDAR/+pcQXsN70EUKG8AepiQkvS2adFx9+u4PQFOhh2jHojCmAJ2p2vSwmtigvGfERYXQQscoIGcMeZzjHOdHZ+enO39vqxvDNcbXjZ3+vB3LrpB1rTwCDAA4d0JMdmAJoAAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 35px;
    color: #868686;
    font-weight: 700;
    cursor: pointer;
    float: left;
}

.glob-topsearch-search-azbuttons-small {
    font-size: 90%;
}

.glob-topsearch-azsearch, .topsearch-azsearch {
    text-decoration: none;
}

.glob-topsearch-azsearch-text {
    margin: 20px 4px 4px 4px;
    font-size: 98%;
}

.glob-topsearch-azsearch-text-active {
    color: #b2b2b2;
}

.glob-topsearch-azsearch-arrow-wrapper {
}

.glob-topsearch-azsearch-arrow, .glob-topsearch-azsearch-arrow90 {
    margin-right: 4px;
    margin-top: 4px;
    width: 15px;
    height: 9px;
}

.glob-teasertext {
    font-size: 12pt;
    font-weight: bold;
}


.glob-divisor1 {
    color: #D8D8D8;
    border: none;
    height: 2px;
    width: 100%;
    /* Set the hr color */
    color: #333; /* old IE */
    background-color: #D8D8D8; /* Modern Browsers */
}

/* Columns CSS - begin */
.glob-col990 {
    width: 100%;
    max-width: 990px;
    min-width: 310px;
}

.glob-col710 {
    width: 100%;
    max-width: 710px;
    min-width: 310px;
}

.glob-col650 {
    width: 100%;
    max-width: 650px;
    min-width: 310px;
}

.glob-col590 {
    width: 100%;
    max-width: 590px;
    min-width: 310px;
}

.glob-col530 {
    width: 100%;
    max-width: 530px;
    min-width: 530px;
}

.glob-col480 {
    width: 100%;
    max-width: 480px;
    min-width: 310px;
}

.glob-col430 {
    width: 100%;
    max-width: 430px;
    min-width: 225px;
}

.glob-col380 {
    width: 100%;
    max-width: 380px;
    min-width: 225px;
}

.glob-col370 {
    width: 100%;
    max-width: 370px;
    min-width: 225px;
}

.glob-col310 {
    width: 100%;
    max-width: 310px;
    min-width: 225px;
}

.glob-col325 {
    width: 100%;
    max-width: 325px;
    min-width: 225px;
}


.glob-col250 {
    width: 100%;
    max-width: 250px;
    min-width: 140px;
}

.glob-col225 {
    width: 100%;
    max-width: 225px;
    min-width: 140px;
}

.glob-col210 {
    width: 100%;
    max-width: 210px;
    min-width: 140px;
}

.glob-col190 {
    width: 100%;
    max-width: 190px;
    min-width: 140px;
}

.glob-col160 {
    width: 100%;
    max-width: 160px;
    min-width: 110px;
}
/* Columns CSS - end */

/* Søg A-Z - begin */
.glob-search-azbox {
    border: solid 2px #d8d8d8;
    background-color: #f2f2f2;
    padding: 18px;
    padding-right: 13px;
    margin-bottom: 30px;
}

.glob-search-azbuttons, .glob-search-azbuttons-mouseover {
    width: 34px;
    height: 34px;
    margin-bottom: 4px;
    margin-right: 5px;
    background-image: url('/Content/Images/Global/AZLetterBox34x34.png');
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 34px;
    color: #868686;
    font-weight: 700;
    cursor: pointer;
}

.glob-search-azbuttons {
    background-image: url('/Content/Images/Global/AZLetterBox34x34.png');
}

.glob-search-azbuttons-mouseover {
    background-image: url('/Content/Images/Global/AZLetterBox34x34_valgt.png');
}

.glob-search-azbox h3 {
    /*margin-bottom:8px;*/
}
/* Søg A-Z - end */

/* Content boxes - begin */
.glob-contentbox, .glob-contentbox-nobordertop {
    padding-top: 16px;
    margin-bottom: 20px;
}

.glob-contentbox h3, .glob-contentbox-nobordertop h3 {
}

.glob-contentbox {
/*    border-top: solid 5px #e8e8e8; */
}

.glob-contentbox-nobordertop {
    border-top: 0;
}

.glob-contentbox-nopaddingtop {
    padding-top: 0;
}

.glob-contentbox-nomarginbtm {
    margin-bottom: 0;
}

.glob-contentbox-text {
}

.glob-contentbox h2 {
    line-height: 120%;
}

.glob-contentbox_border {
    border-top: solid 5px #e8e8e8;
}
/* Content boxes - end */

.glob-right_arrow {
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 90%;
    margin-left: 5px;
}

/* Print/Send - begin */
.glob-print-send-wrapper {
    margin-right: 0;
    margin-top: 20px;
    text-decoration: none;
}

.glob-print-send-wrapperspace {
    margin-right: 20px;
}

.glob-print-send-icon-wrapper {
}

.glob-print-send-text {
    color: #646464;
    font-size: 84%;
    margin-right: 6px;
}
/* Print/Send - end */

/* lists - begin  */
ul, ol {
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}

    ul li {
        padding-top: 2px;
        padding-bottom: 2px;
    }
/* lists - end  */

/* content header open/close - begin  */
.glob-content-section-wrapper {
    margin-bottom: 8px;
}



.glob-content-notes-wrapper {
    min-height: 40px;
    background-color: #ffe785;
    padding-left: 10px;
    margin-top: 5px;
    margin-bottom: 6px;
    cursor: pointer;
}

    .glob-content-notes-wrapper h4 {
        margin-top: 8px;
        margin-bottom: 0;
        text-align: left;
    }


.glob-content-header-wrapper {
    min-height: 40px;
    /*padding-top: 4px;
    padding-bottom: 4px;*/
    background-color: #f2f2f2;
    padding-left: 10px;
    /*height:35px;
    background-color:#f2f2f2;
    padding-left:10px;*/
}

    .glob-content-header-wrapper h3 {
        margin-top: 2px;
        margin-bottom: 0;
        line-height: 35px;
        text-align: left;
    }

.glob-content-section-text {
    text-align: left;
    padding: 4px;
    padding-bottom: 20px;
    padding-top: 8px;
}

.glob-content-openclose-wrapper {
    width: 100%;
    cursor: pointer;
}

.glob-content-header-openclose-arrow, .glob-content-header-openclose-arrow180 {
    margin-right: 12px;
    margin-top: 18px;
}

.glob-content-section-openclose-text {
    display: none;
    text-align: left;
    padding: 4px;
 /*   padding-bottom: 30px;*/
    padding-top: 8px;
}

.glob-content-header-openclose-wrapper {
    background-color: #f2f2f2;
    padding-left: 10px;
    cursor: pointer;
}

    .glob-content-header-openclose-wrapper sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    .glob-content-header-openclose-wrapper h3 {
        margin-top: 6px;
        margin-bottom: 6px;
        line-height: 35px;
        text-align: left;
        max-width: 82%;
    }

.glob-content-header-openclose-image-wrapper, .glob-content-header-openclose-image-smaller-wrapper {
    /*line-height: 32px;*/
    margin-right: 8px;
    margin-top: 6px;
}

.glob-content-header-openclose-image-smaller-wrapper {
/*    margin-top: 11px;*/
}
/* content header open/close - end  */

/* globale farvedefinitioner - start */
.glob_color000 {
    color: #000; /* sort, ikon links samt H6.*/
}

.glob_color646464 {
    color: #646464; /* Sekundær brug til sort, ikon links samt H6.*/
}

.glob_color868686 {
    color: #868686; /* Søgebar, nyheder, tema tekst og lign.*/
}

.glob_colorA8A8A8 {
    color: #A8A8A8; /* Tabel streger/rammer og andet der kræver medium grå */
}

.glob_colorD8D8D8 {
    color: #D8D8D8; /* Link bokse rammer og streger samt top på tabeller */
}

.glob_colorE8E8E8 {
    color: #E8E8E8; /* 5 px opdelings streger samt 5 px ramme på billeder m.v. */
}

.glob_colorF2F2F2 {
    color: #F2F2F2; /* Baggrundsfarve til link bokse, overskrifter, fold ud og lign. */
}

.glob_color05AF7A {
    color: #05AF7A;
}

.glob_color0082c8 {
    color: #0082c8;
}

.glob_colorf45914 {
    color: #A02D32;
}
/* globale farvedefinitioner - end */

/* Søgeliste definitioner - start */
.SoegeresText {
    font-size: 12pt;
    font-weight: bold;
    margin-bottom: 8px;
}

.glob-searchline {
    float: none;
    clear: both;
    cursor: pointer;
    padding: 0 0 0 6px;
    width: 100%;
}

.glob-search-desc {
    float: left;
    max-width: 82%;
    background-color: none;
}

.multiple-icons {
    max-width: 77%;
}

.glob-content-wrapper .glob-searchline a {
    text-decoration: none;
    color: #333;
}

.glob-searchline:hover {
    /*background-color: #e8e8e8;*/
}

.glob-hoverbg-gray:hover {
    background-color: #e8e8e8;
    cursor: pointer;
    color: #646464;
    /*opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}

.glob-search_link {
    text-decoration: none;
    width: 100%;
    display: block;
}

.glob-searchresult-item {
    border-top: solid 2px #d8d8d8;
    line-height: 26px;
    color: #000;
    font-size: 106%;
    min-height: 50px;
}

.glob-searchReasonFound {
    font-size: 85%;
    color: #868686;
}

/* Søgeliste definitioner - end */


/* leftitems-gridbox - start */
.glob-leftitems-gridbox {
    border-top: solid 2px #d8d8d8;
    border-bottom: solid 2px #d8d8d8;
    margin-bottom: 34px;
}

.glob-leftitems-gridbox-small {
    border-top: solid 2px #d8d8d8;
    border-bottom: solid 2px #d8d8d8;    
}

.glob-leftitems-gridbox-header {
        /*background-color:#f2f2f2;*/
        min-height: 35px;
        padding-right: 10px;
        padding-top: 6px;
        padding-bottom: 6px;
        text-align: center;
    }

.glob-leftitems-gridbox-headergray {
    background-color: #f2f2f2;
}

.glob-leftitems-gridbox-header h3, .glob-leftitems-gridbox-header h4 {
    margin-bottom: 0;
}

.glob-leftitems-gridbox-header h1 {
    margin-bottom: 4px;
    margin-top: 4px;
}

.glob-leftitems-gridbox-item, .glob-leftitems-gridbox-header {
    border-left: solid 2px #d8d8d8;
    border-right: solid 2px #d8d8d8;
    line-height: 35px;
    padding-left: 10px;
}

.glob-leftitems-border-left {
    border-left: solid 2px #d8d8d8;
}

.glob-leftitems-border-right {
    border-right: solid 2px #d8d8d8;
}

.glob-leftitems-gridbox-item {
    border-top: solid 2px #d8d8d8;
    line-height: 26px;
    min-height: 37px;
    color: #000;
    padding-top: 4px;
    padding-bottom: 4px;
}

.glob-leftitems-gridbox-item-text, .glob-leftitems-gridbox-item-text-brdgray {
    width: 94%;
    padding-right: 4px;
    float: left;
    word-wrap: break-word;
}

.glob-leftitems-gridbox-item-text-brdgray {
    border-bottom: solid 1px #d8d8d8;
}

.glob-leftitems-gridbox-item-nopadding {
    border-top: solid 2px #d8d8d8;
    border-left: solid 2px #d8d8d8;
    border-right: solid 2px #d8d8d8;
    line-height: 26px;
    min-height: 37px;
    color: #000;
    padding: 0;
    padding-top: 4px;
    padding-bottom: 4px;
}
/* leftitems-gridbox - end */

/* see also links - begin */
.glob-see-also {
    margin-top: 6px;
    margin-bottom: 6px;
}

    .glob-see-also a:hover {
        text-decoration: underline;
    }

.glob-see-also-text {
    line-height: 20px;
    padding-left: 10px;
    /*width:74%;*/
    font-size: 84%;
}

    .glob-see-also-text sup {
        line-height: 10px;
    }
/* see also links - end */


.glob-left-small-logo {
    display: block;
    height: 20px;
    margin-top: 15px;
    margin-right: 20px;
    margin-bottom: 8px;
}

/* green-menuarrows - begin */
.glob-green-menuarrow-span {
    background-image: url('/Content/Images/Min/Topmenu/link_min.gif');
    background-repeat: no-repeat;
    background-position: center;
    width: 8px;
    height: 13px;
}
/* green-menuarrows - end */
.CalculatorImage {
    width: 30px;
    height: 35px;
    background: url("/Content/Images/Pro/calculator_icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-indent: -9999px;
    cursor: pointer;
    margin: 2px;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    /*top: -5px;*/
}

.glob-articlebutton {
    padding: 3px;
    padding-left: 4px;
    padding-right: 4px;
    color: #868686;
    border: solid 1px #d8d8d8;
    font-weight: 600;
    font-size: 70%;
    /*margin-top:50px;
    margin-bottom:50px;*/
    float: none;
    clear: both;
    /*letter-spacing:0.6pt;*/
}

    .glob-articlebutton:hover {
        color: #000;
        background-color: #e8e8e8;
    }

.glob-image-responsive {
    max-width: 100%;
    height: auto;
    border-color: transparent;
    border-radius: 6px;
}

.glob-image-responsive-square {
    border-radius: 0px;
}

.glob-image-responsive-marginLeft {
    margin-left: 12px;
    margin-bottom: 8px;
}

.glob-image-responsive-marginRight {
    margin-right: 12px;
    margin-bottom: 8px;
}

.glob-image-responsive-alignCenter {
    display: block;
    text-align: center;
    margin: auto;
}

.glob-arrow-with-mediatype {
    display: inline;
    float: right;
}

.glob-mediatype {
    position: relative;
    top: 4px;
    left: -10px;
}

/* No border around images 
.glob-image5px-border {
    border:solid 5px #e8e8e8;       
}
*/
.glob-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /*padding-top: 35px;*/
    height: 0;
    overflow: hidden;
    /*margin-top: 16px;*/
}

.glob-instruktions-video > div:not(:last-child) {
    margin-bottom: 16px;
}

.glob-video-container-landingpage {
    position: relative;
    padding-bottom: 0px;
    /*padding-top: 35px;*/
    /*height: 0;*/
    overflow: hidden;
    margin-top: 0;
}

.glob-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glob-opencloseall-arrow {
    margin-top: 0;
    margin-right: 0;
}

.sectionheader {
    margin-top: 20px;
    min-height: 35px;
    text-align: left;
    padding-top: 6px;
    padding-bottom: 5px;
}

.ForceWordWrap {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    white-space: -moz-pre-wrap;
    white-space: normal;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.glob-map-responsive {
    width: 100%;
    height: auto;
    max-width: 650px;
    min-height: 350px;
}

.glob-forside-topbox {
    min-width: 25%;
    max-width: 25%;
    text-align: center;
    float: left;
}

/*
.glob-topsearch-azsearch:hover {
    border: 2px #dedbde solid;
}
*/

.glob-forside-topbox > a:hover {
    /* somebody used !important somewhere and it forces me to use !important
        Please DONT USE !important
    */
    text-decoration: none !important;
}

.glob-forside-top-box-text {
    display: inline;
    margin-left: 4px;
    position: relative;
    top: 2px;
}
/*
.glob-forside-topbox-om-medicin {
    width:178px;
    margin-left: 47px;
}
.glob-forside-topbox-vejledninger {
    width:240px;
    margin-left: 24px;
}
.glob-forside-topbox-lagemiddelgrupper {
    width:240px;
    margin-left: 1px;
}
.glob-forside-topbox-find-medicin {
    width:217px;
}
.glob-forside-topbox-genkend-medicin {
    width:210px;
}
.glob-forside-topbox-sygdom {
    width:162px;
    margin-left: 60px;
}
.glob-forside-topbox-instruktionsfilm {
    width:210px;
    margin-left: 72px;
}
.glob-forside-topbox-min-om-medicin {
    width:183px;
    margin-left: 132px;
}
*/
.glob-forside-topbox img {
    vertical-align: middle;
}

.glob-quick-buttons a > div {
    padding: 10px;
    border-radius: 7px;
}

.glob-quick-buttons {
    color: black;
}

    .glob-quick-buttons img {
        max-width: 25px;
        margin-right: 4px;
    }

.glob-slideshow-mediadiv {
    width: 625px;
    height: 285px;
    position: relative;
}

.glob-slideshow-slidediv {
    cursor: move;
    position: relative;
    top: 0px;
    left: 0px;
    width: 625px;
    height: 285px;
    overflow: hidden;
}

.desktop-nodisplay {
    display: none;
}

.glob-leftbox-sideborders {
    border-left: solid 2px #d8d8d8;
    border-right: solid 2px #d8d8d8;
}

.glob-contentbox-slimbordertop {
    border-top: solid 1px #d8d8d8;
}

.glob-contentbox-slim {
}

.glob-slideshow-wrapper {
    width: 640px;
    max-width: 640px;
    min-width: 310px;
}

.phone-content-header-openclose-arrow-wrapper {
    display: none;
}

.phone-content-section-openclose-text {
    display: block;
}

.glob-linkopenall-after {
    line-height: 12px;
    margin: 12px;
    cursor: pointer;
    min-width: 100px;
}

.glob-see-also img {
    margin-right: 4px;
}

.glob-ident-second-size {
    width: 99px;
    max-width: 99px;
    min-width: 80px;
}

.glob-identRowTable {
    width: 100%;
}

.glob-ident-image {
    width: 453px;
    padding-left: 10px;
}

.glob-ident-praeg {
    height: 30px;
}

.glob-ident-row-image {
    max-width: 453px;
    float: left;
}

.glob-CapFirst::first-letter {
    text-transform: capitalize;
}

#omdlifooterlink, #omdlifooterlink:hover, #omdlifooterlink:visited {
    color: #868686;
    text-decoration: none;
}

.glob-media-icons {
    float: right;
}

.glob-instruktioner-spacer {
}

.Warning {
    font-size: 120%;
    color: #E65725;
    font-weight: bold;
    line-height: 35px;
}

a.Warning {
    color: #E65725;
}

.WarningColor {
    color: #E65725;
}

.levsvigtRoed {
    background-color: red;
    width: 11px;
    height: 11px;
    vertical-align: middle;
    border: 1px solid #333;
    margin: 2px;
}

.levsvigtGul {
    background-color: yellow;
    width: 11px;
    height: 11px;
    vertical-align: middle;
    border: 1px solid #333;
    margin: 2px;
}

.deleknuseImage {
    vertical-align: text-bottom;
    -webkit-filter: drop-shadow(3px 3px 3px #888);
    filter: drop-shadow(3px 3px 3px #888);
    padding-right: 20px;
    perspective: 100px;
    cursor: pointer;
}

a div .glob-linkarrow-after {
    font-weight: 900;
}

.glob-sitetype-title {
    font-size: 125%;
    letter-spacing: 6px;
}


/* CORPORATE SITE */

.only-phonedisplay {
    display: none;
}

.corp-kontakt-par {
    min-height: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.corp-kontakt-par img {
    height: 60px;
}

.corp-kontakt-par > div {
    position: relative;
    margin-left: 10px;
}

.corp-kontakt-par:first-child > div:last-child,
.corp-kontakt-par:last-child > div:last-child
{
    top: 9%;
}

.corp-kontakt-par:not(first-child) > div:last-child {
    top: 18%;
}

.corp-kontakt-par > div a:link, .corp-kontakt-par > div a:visited,
.corp-kontakt-par > div a:hover, .corp-kontakt-par > div a:active {
    text-decoration: none;
}

.corp-kontakt-par div {
    font-weight: lighter;
    font-size: 150%;
    line-height: 130%;
}

.corp-kontakt-sub {
    min-height: 100px;
    text-align: center;
}

.corp-vores-vaerdier {

}

.corp-services {
    display: flex;
}

.medicin-dk-org-bag {
    display: flex;
    background: #E8E8E8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-om-medicin {
    display: flex;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/1300/Lys-roed.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-om-medicin-grey {
    display: flex;
    background-color: #E8E8E8;
    background-size: contain;
}

.corp-services-banner {
    margin-top: 30px;
}

.lifesciencehuset {
    width: 100%;
    border-radius: 15px;
}

.corp-services-om-medicin-color {
    background-color: #E8E8E8;
    background-size: contain;
}

.corp-services-nis {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/NIS.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-nis-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-webservices {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/Webservices.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-webservices-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-pipeline {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/Services-Behov.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-pipeline-thin {
    height: 200px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-pipeline-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-apps {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/Apps.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-apps-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-mockupload {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/MockUpload.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-mockupload-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}


.corp-services-fmb {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/Beslutningsstotte.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-fmb-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}


.corp-services-spcuptodate {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/SPC.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-spcuptodate-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}


.corp-services-indl {
    height: 350px;
    background: #e6dcdc url(/Content/Images/Corporate/Watermarks/750/Info.gif) no-repeat bottom right;
    background-size: contain;
}

.corp-services-indl-grey {
    background: #D8D8D8 url(/Content/Images/Corporate/Watermarks/1300/Lys-graa.gif) no-repeat bottom right;
    background-size: contain;
}


.paragraph-space-extra {
    margin-top: 100px;
}

.paragraph-space-norm {
    margin-top: 90px;
}



.corp-services-nyheder {
    background-color: #E8E8E8;
    display: flex;
}

div.corp-rounded-img > img {
    width: 107%;
    margin-left: 2%;
}
 
div.corp-left-rounded-img > img {
    width: 99%;
    margin-left: 2%;
}

.corp-text-paragraph {
    padding-bottom: 32px;
}

.corp-text-paragraph-last {
    padding-bottom: 0;
}

.corp-video-tag {
    font-size: 125%;
    line-height: 155%;
    padding-bottom: 12px;
    display: block;
}

.corp-services-site {
    font-size: 183.3333%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.corp-services-img {
    width: 100px;
    height: 100px;
}

.corp-services-text {
    width: 90%;
    display: inline-block;
    text-align: center;
    min-height: 88px;
}

.corp-extern-link:link, .corp-extern-link:visited,
.corp-extern-link:hover, .corp-extern-link:active,
.corp-intern-link:link, .corp-intern-link:visited,
.corp-intern-link:hover, .corp-intern-link:active,
.corp-more-lnk:link, .corp-more-lnk:visited,
.corp-more-lnk:hover, .corp-more-lnk:active {
    text-decoration: none;
}

.corp-site-color {
    color: rgb(150, 45, 50);
}

.corp-more-lnk {
    margin-bottom: 70px;
    display: block;
    margin-top: 15px;
    font-size: 122.50%;
    font-weight: bold;
}

.corp-extern-link {
    color: rgb(150, 45, 50);
}

.corp-intern-link {
    color: rgb(150, 45, 50);
}

.contact-link {
    color: rgb(150, 45, 50);
}

.corp-extern-link::after {
    text-indent: -999em;
    content: "\25BA";
    color: rgb(150, 45, 50);
    margin-left: 4px;
}

.corp-more-lnk::after {
    text-indent: -999em;
    content: "\25BA";
    color: rgb(150, 45, 50);
    margin-left: 4px;
}

.corp-services-title {
    font-size: 122.50%;
    font-weight: bold;
    line-height: 25px;
    color: rgb(150, 45, 50);
    margin-top: 30px;
    margin-bottom: 30px;
}

.tag-line {
    text-align: center;
    letter-spacing: 6px;
    font-size: 122.50%;
    color: rgb(150, 45, 50);
}

.tag-line-phone {
    text-align: left;
    position: relative;
    left: 64px;
    letter-spacing: 0px;
    font-size: 18px;
    color: rgb(150, 45, 50);
}

.column-66-pct {
    width: 66.66%;
    width: calc((100%/3)*2);
}

.column-one-quarter {
    width: 25%;
    width: calc(100%/4);
}

.column-one-third {
    width: 33.33%;
    width: calc(100%/3);
}

.glob-height-30 {
    height: 30px;
}

.glob-height-60 {
    height: 60px;
}
.glob-height-90 {
    height: 90px;
}
.top-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.top-container p {
    text-align: center;
    display: inline-block;
}

.medicin-dk-logo {
    height: 30px;
    position: relative;
    left: 30px;
    vertical-align: middle;
}

.float-left {
    float: left;
}

.clear {
    clear: both;
    margin-bottom: 30px;
}

.clear-only {
    clear: both;
}

.left-front-site-image {
    padding-right: 3px;
}

.middle-front-site-image {
    padding-left: 3px;
    padding-right: 3px;
}

.right-front-site-image {
    padding-left: 3px;
}

.font-family {
    font-family: 'Open Sans', sans-serif;
}

.site-title-style {
    text-align: center;
    vertical-align: middle;
    letter-spacing: 15px;
    font-size: 18px;
    font-weight: 900;
    position: relative;
    left: 7.5px;
}

.borger-title {
    color: rgb(5, 175, 122);
}

.borger {
    background-color: rgb(215, 235, 225);
}

.professional {
    background-color: rgb(215, 225, 235);
}

.professional-title {
    color: rgb(0, 130, 200);
}

.indlagssedler {
    background-color: rgb(230,220, 220);
}

.indlagssedler-title {
    color: rgb(150, 45, 50);
}

.glob-scale-100pct {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.glob-height-160 {
    height: 160px;
}
.glob-scale-100pct > img {
    width: 100%;
    height: auto;
}

.glob-responsive {
    border-radius: 0;
}

.text-center {
    text-align: center;
}

.corp-title-size {
    font-size: 48px;
    line-height: 38px;
}

.p-title {
    line-height: 200%;
}

.h1-corp {
    color: black;
    font-size: 400%;
    line-height: 200%;
    font-weight: 300;
}

.h1-corp-bold {
    color: black;
    font-size: 400%;
    line-height: 200%;
    font-weight: 300;
    font-weight: bold;
}

.h2-corp {
    color: black;
    font-size: 400%;
    line-height: 130%;
    font-weight: bold;
}

.h2-corp-no-line-height {
    color: black;
    font-size: 400%;
    font-weight: bold;
    line-height: 58px;
}

.h3-corp {
    color: black;
    font-size: 300%;
    line-height: 333.3333%;
    font-weight: bold;
}

.h4-corp {
    color: black;
    font-size: 200%;
    line-height: 130%;
    font-weight: 300;
}

.h5-corp {
    font-size: 200%;
    line-height: 233.3333%;
    font-weight: bold;
}

.h6-corp {
    font-size: 150%;
    line-height: 130%;
    font-weight: bold;
}

.h6-news-link {
    font-size: 150%;
    line-height: 130%;
    font-weight: bold;
}

/*.corp-footer {
    padding-top: 50px;
}*/

.h6-corp-black {
    color: black;
    font-size: 150%;
    line-height: 130%;
    font-weight: bold;
}

.corp-site-ptag {
    font-size: 125%;
    line-height: 155%;
    height: 125px;
    max-width: 450px;
    display: inline-block;
}

.corp-ptag {
    font-size: 125%;
    line-height: 155%;  
}


/* https://khaledkzy.github.io/pixel-vh-vw-converter/ */

.glob-articlebutton {
    color: white;
    background-color: #A02D32;
    border-color: #A02D32;
    border-radius: 7px;
    padding: 3px 6px;
}

.right-align {
    text-align: right;
}

h1 {
    font-size: 325%;
    line-height: 40pt;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 12px;
}

h2 {
    font-size: 162.5%;
    line-height: 22pt;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
}

.round-edge {
    border-radius: 10px;
    padding-left: 10px;
}

.margin12 {
    margin: 12px;
}

.corp-services a:link,
.corp-services a:visited,
.corp-services a:hover,
.corp-services a:active {
    text-decoration: none;
    /**    color: black; */
}

.corp-footer a:link,
.corp-footer a:visited,
.corp-footer a:hover,
.corp-footer a:active {
    text-decoration: none;
    color: black;
}

.corp-text-paragraphs {
    width: 95%;
}

    .corp-text-paragraphs > strong {
        margin-top: 20px;
        display: block;
    }

        .corp-text-paragraphs > strong:first-child {
            margin-top: 0;
        }

div.glob-col480.float-left.phone-nodisplay > img.corp-rounded-img:first-child {
    padding-right: 20px;
}

.corp-text-paragraphs > div:not(:first-child) {
    margin-top: 16px;
}

.bg-light-grey {
    background-color: #E8E8E8;
}

.portphoto {
    width: 42%;
    border-radius: 100px;
    margin-right: 15px;
}

.portphotovision {
    width: 35%;
    border-radius: 100px;
    margin-right: 15px;
}

.contactperson {
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 10%;
    margin-right: 10%;
}

.no-btm-margin {
    margin-bottom: 0;
}

.small-box {
    height: 255px;
}

.padleft10 {
    padding-left: 10px;
}

.min-color {
    color: #05AF7A;
}

.pro-color {
    color: #0082C8;
}

.indl-color {
    color: #A02D32;
}

.contact-map {
    height: 297px;
    position: relative;
    top: 16px;
    left: 21px;
}

.width100pct {
    width: 100%;
}

.glob-articlebutton {
    color: #A02D32;
    background-color: #e8e8e8;
    border-color: #A02D32;
    border-radius: 7px;
    padding: 3px 6px;
}

    .glob-articlebutton:hover {
        color: white;
        background-color: #A02D32;
    }

.tag-line {
    text-transform: uppercase;
}

.corp-site-text {
    height: 225px;
}

.corp-boxheight {
}

.corp-resp-person {
    margin-top: 30px;
}

.corp-news-paragraph {
    min-height: 116px;
    margin-top: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
}

div.corp-site-text div.forside-box-text-a {
    text-transform: lowercase;
}

div.corp-nyheds-brev {
    display: flex;
    background: #a02d32 url(/Content/Images/Corporate/Watermarks/medicin.dk_nyhedsbrev-teaser-bagg_1980x324px.jpg) no-repeat bottom right;
    background-size: 100%;
    padding: 0px;
    border-radius: 12px;
    color: white;
    margin-top: 50px;
    margin-bottom: 60px;
}

.corp-nyheds-brev a > div {
    color:white;
}

.corp-services-nyheder a:link,
.corp-services-nyheder a:visited,
.corp-services-nyheder a:hover,
.corp-services-nyheder a:active {
    text-decoration: none;
}
    
.corp-nyheds-brev div.h5-corp {
    text-decoration: none;
}

.nyhedsbrev-button {
    background-color: white;
    border-radius: 5px;
    color: rgb(150, 45, 50);
    height: 31px;
    width: 108px;
    text-align: center;
    position: relative;
    padding-top: 4px;
    margin-left: 135px;
}

.nodeco:link, nodeco:visited, nodeco:hover, nodeco:active {
    text-decoration: none;
    color: black;
}

.nodeco {
    color: black;
}

div.corp-nyheds-brev a:link, div.corp-nyheds-brev a:visited,
div.corp-nyheds-brev a:hover, div.corp-nyheds-brev a:active {
    text-decoration: none;
    color: rgb(150, 45, 50);
    font-weight: bold;
}

.corp-kontakt-par > div a:link, .corp-kontakt-par > div a:visited,
.corp-kontakt-par > div a:hover, .corp-kontakt-par > div a:active,
table.contactus tr.corp-kontakt-par a:link,
table.contactus tr.corp-kontakt-par a:visited,
table.contactus tr.corp-kontakt-par a:hover,
table.contactus tr.corp-kontakt-par a:active {
    text-decoration: none;
}

.img-border {
    border: 1px lightgrey solid;
    border-radius: 10px;
    padding: 5px;
}


/* antibiotikavejl */
div.antibiotikavejl h1 {
    text-align: center;
}

div.antibiotikavejl > div {
    clear: both;
}

div.antibiotikavejl > div > a > div {
    float: left;
    width: 33%;
    padding: 8px;
    text-align: center;
}

div.antibiotikavejl > div:first-of-type > a > div {
    outline: 2px solid #0082c8;
    outline-offset: -8px;
    padding: 12px;
    width: 50%;
}


div.antibiotikavejl > div > a > div > img {
    width: 100%;
    padding: 16px;
}

div.antibiotikavejl > div:not(:first-child) {
    padding-top: 16px;
}

div.antibiotikavejl > div:last-child {
    padding-top: 36px;
}

div.antibiotikavejl > div:last-child > a > div {
    outline: 2px solid #0082c8;
    outline-offset: -8px;
    width: 33%;
    padding: 12px;
}



#iamhumandiv {
    position: relative;
    left: 210px;
    top: -115px;
}    
   
input#IAmHuman {
    outline: 2px solid white;
    outline-offset: -2px;
}

input#IAmHuman:hover {
    cursor: default;
}

.maincontentdiv div a#checkIAmHuman {
    color: white;
}

.maincontentdiv div a#checkIAmHuman:hover {
    text-decoration: none;
    cursor: default;
}
.circleBtnClosed {
    content: url("/Content/Images/Global/arrow-down-circle.svg");
    width: 25px;
    height: 25px;
    cursor: pointer;
    vertical-align: middle;
}

.circleBtnOpen {
    content: url("/Content/Images/Global/arrow-down-circle.svg");
    width: 25px;
    height: 25px;
    cursor: pointer;
    vertical-align: middle;
}

.flexfelt-wrapper {
    width: 100%;
    min-height: 200px;
    display: inline-block;
}

.flexfelt-wrapper > .glob-wrapper .glob-video-container {
    margin-top: 0;
}

.glob-flexfelt-title {
    text-align: center;
}

.glob-flexfelt-center {
    margin:auto;
}
.glob-grey-box {
	background-color: #EFEFEF;
	padding: 5px;
	margin-bottom: 5px;
}
.Glob-circle {
    border: 0.1em solid grey;
    border-radius: 100%;
    height: 2em;
    width: 2em;
    text-align: center;
}
.Glob-circle p {
        margin-top: 0.10em;
        font-size: 1.5em;
        font-weight: bold;
        font-family: sans-serif;
        color: grey;
}

.padbtm20 {
    padding-bottom: 20px;
}

.padtop20 {
    padding-top: 20px;
}

.sygund {}
.sygund img
{
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 45%;
    height: auto;
}

.sygund::after {
    content: "";
    display: block;
    clear: both;
}

.progress-container {
    visibility: hidden;
    width: 100%;
    height: 3px;
}

.progress-bar {
    height: 3px;
    width: 0%;
    transition: width 0.15s ease-out;
}

/* ----- Front 3 sites row (replace float layout) ----- */
.front-sites-row {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 3px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .front-sites-row {
        flex-wrap: wrap;
    }

    .front-sites-row > .column-one-third {
        flex: 1 1 100%;
    }
}

/* Medicinvirksomhed title*/
.mv-title {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Medicinvirksomhed payer icon company page*/
.mv-paying-company-icon {
    height: 0.6em;
    height: 0.6lh;
    width: auto;
    display: block;
}

/* Medicinvirksomhed payer icon praeparat page*/
.mv-paying-company-icon-praeparat {
    height: 0.6em;
    height: 0.6lh;
    width: auto;
    margin-left: 0.3em;
    margin-left: 0.2lh;
}

.mv-payingcompany-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 2px 4px;
}
