body {
  font-size: 14px;
}

p, li {
    font-size: 14px;
}

h1 {
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2em;
    color: #333;
}

h2 {
    font-size: 22px;
    font-weight: 600;
}

h3 {
    font-size: 16px;
    font-weight: 600;
}

.logo small {
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 7px 10px;
}

.site small {
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 7px 10px;
}

.menu-hidden #sidebar {
    display: none !important;
}

/* Notification spinner */

.spinner {
    margin: -12px;
}

.spinner > div {
    width: 4px;
    height: 4px;
    background-color: #fff;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 2.0s infinite ease-in-out both;
    animation: sk-bouncedelay 2.0s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.96s;
    animation-delay: -0.96s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.64s;
    animation-delay: -0.64s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
treeview        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* Notification Spinner End */

/* Loading line */

.loader-line-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -95px;
    display: none;
}

.loader-line {
            width: 50vw;
            height: 3px;
            position: relative;
            overflow: hidden;
            margin: 100px auto;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
        }

        .loader-line:before {
            content: "";
            position: absolute;
            left: -50%;
            height: 3px;
            width: 40%;
            background-color: #fff;
            -webkit-animation: lineAnim 2.5s linear infinite;
            -moz-animation: lineAnim 2.5s linear infinite;
            animation: lineAnim 2.5s linear infinite;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
        }

        @keyframes lineAnim {
            0% {
                left: -40%;
            }
            50% {
                left: 20%;
                width: 80%;
            }
            100% {
                left: 100%;
                width: 100%;
            }
        }
        
/* Loading line End*/

/* Override classes */

.bootstrap-select > .btn-default:before {
    z-index: 1 !important;
}

.fg-float .form-control {
    z-index: auto !important;
}

.bg-danger {
    background-color: #f6675d !important;
}

.bg-success {
    background-color: #67bd6a !important;
}

.ellipsis {
    position: relative;
}
.ellipsis:before {
    content: '&nbsp;';
    visibility: hidden;
}
.ellipsis span {
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.productExpiredView {
    position: absolute;
    left: 5px;
    top: 11px;
    color: #ff2a2a;
    font-size: 18px;
}

.productExpiredEdit {
    position: absolute;
    left: 10px;
    top: 18px;
    color: #ff2a2a;
    font-size: 18px;
}

.dropdown-menu.dropdown-menu-lg {
    width: 400px;
}

/* ### ID CARD STYLES ### */

#user-card-modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    outline: 0;
    background-color: rgb(0, 0, 0, 0.45);
}

#user-card-modal .frame {
    margin-top: 30px;
}

#user-card-modal .container {
    position: relative;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    padding: 0;
    width: 800px;
    height: 90vh;
}

#user-card-modal .top {
    background-color: #00b907;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 11;
    width: 100%;
    padding: 5px 10px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

#user-card-modal .header-container {
    display: inline-flex;
    margin: 0 auto;
    min-width: 100px;
    width:100%;
    align-items: center;
    height: 50px;
}

#user-card-modal .content {
    padding: 15px 20px;
    overflow: auto;
    max-height: calc(100% - 82px);
}

@media (max-width: 767px) {

    #user-card-modal .frame {
        margin-top: 0;
    }

    #user-card-modal .container {
        border-radius: 0;
        width: 100%;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        position: absolute;
        top: 0;
        bottom: 0;
        height: auto;
    }

    #user-card-modal .top {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #user-card-modal .container {
        width: 600px;
    }
}

/* ### END ID CARD STYLES ### */

/* ### HELP CENTER STYLES ### */

#helpCenter {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    outline: 0;
    background-color: rgb(0, 0, 0, 0.45);
}

#helpCenter .frame {
    margin-top: 30px;
}

#helpCenter .container {
    position: relative;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    padding: 0;
    width: 800px;
    height: 90vh;
}

#helpCenter .top {
    background-color: #607D8B; 
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3); 
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    z-index: 11;
    width: 100%;
    padding: 5px 10px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

#helpCenter .content {
    padding: 15px 20px;
    overflow: auto;
    max-height: calc(100% - 82px);
}

#helpCenter .SubButton {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid #d6d6d6;
    background-color: #f8f8f8;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 6px;
    margin-right: 3px;
}

#helpCenter .helpTitle {
    float: none;
    font-size: 16px;
    color: #fff;
}

#helpCenter .helpcenter-breadcrumb {
    font-size: 16px;
}

#helpCenter .SearchContainer {
    display: inline-flex;
    margin: 0 auto;
    min-width: 100px;
    width:100%;
    align-items: center;
}

#helpCenter .SearchContainer input {
    border-radius: 2px;
    background-color: #e1e7ea;
}

/* END HELP CENTER STYLES */

@media (max-width: 767px) {
    .top-menu .dropdown-menu {
        right: 9px !important;
        top: 31px !important;
    }

    .top-menu .dropdown-menu-lg {
        width: calc(100vw - 40px) !important;
    }

    #profile-main .pmo-pic img {
        height: auto !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .productExpiredView {
        left: -11px;
    }

    .productExpiredEdit {
        left: -10px;
        top: 18px;
    }

    #helpCenter .frame {
        margin-top: 0;
    }

    #helpCenter .container {
        border-radius: 0;
        width: 100%;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        position: absolute;
        top: 0;
        bottom: 0;
        height: auto;
    }

    #helpCenter .top {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #helpCenter .container {
        width: 600px;
    }
}

/* End Override */

.goog-te-gadget {
    position: absolute !important;
    right: 0 !important;
    top: 0px !important;
}

.chart-override {
  padding-left: 21.5px !important;
}

.count-override {
  padding-left: 20px !important;
}

.mini-charts-item-override:before {
  width: 75px !important;
}

.mini-charts-item-override:hover:before {
  width: 75px !important;
}

.element-header-override:before {
  -webkit-transition: width;
  -o-transition: width;
  transition: width;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
  width: 75px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}

.treeview.handbook > ul > li:first-child  {
    border-bottom: 0.2em solid #e0e0e0;
    font-size: 1.8rem;
}

.treeview.handbook > ul > li:first-child > span  {
    display: none;
}

.fs-logo-header-override:before {
  width: 116px !important;
}

.active-view {
  color: #2196F3 !important;
}

.login-content-override:before {
    background: #2196f3 !important;
}

#fc-actions {
    display: none !important;
}

.fc-event {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    cursor: pointer;
}

.fc-event .fc-title {
    padding: 2px 8px 2px 28px;
}

.frivilligsentral:before {
    background: #4FA369 !important;
}

.regi:before {
    background: #00344d !important;
}

.fc-view, .fc-view > table {
    z-index: 0;
}

.bootgrid-table th > .column-header-anchor > .icon {
    font-size: inherit !important;
}

.fg-float .fg-toggled .fg-label {
    top: -10px;
    font-size: 11px;
}

.fg-line.no-line:not([class*=has-]) {
    padding-top: 4px;
    margin-bottom: -4px;
}

.fg-line.no-line:not([class*=has-]):after {
    background: inherit;
}

.filter-option {
    text-transform: none;
}

ul.dropdown-menu.dm-icon.pull-right li a {
    margin-left: -7px;
    padding-left: 10px;
}

.dl-activity dt {
    width: 80px;
}

.dl-activity dd {
    margin-left: 85px !important;
}

.dl-nolinewrap dt {
    white-space: normal !important;
}

.table-row {
    display: table;
    table-layout: fixed;
}

.table-row [class^="col-"] {
    display: table-cell;
    float: none;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.rowx {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.rowx > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.reqText {

}

.reqAlert {
    color: #ffa829;
}

.reqAlert-borderonly {
    border-color: #f7a3a3 !important;
}

.input-glyph {
  position: absolute !important;
  right: 2px !important;
  top: 10px !important;
  z-index: 99 !important;
}

.caret-down {
    border-top: 0px dashed;
    border-bottom: 4px dashed;
}

.ww_card-text {
    height: 140px; 
    overflow: hidden;
    margin: 0px;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #ffbaba;
}

.image-gallery {
  margin-left: -4px;
  margin-right: -4px;
}

.image-gallery .gallery-image-frame {
  padding: 4px 4px 4px 4px;
}

.image-gallery .gallery-image {
  display: block;
  width: 100%;
  padding-bottom: 60%;
  border: solid 1px #d0d0d0;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

a:link .ww_card-text,
a:hover .ww_card-text ,
a:visited .ww_card-text {
    color: #000;
}

.ww_card-text:after {
    content:"";
    position:absolute;
    top:100px;
    left:0;
    height:40px;
    width:100%;
    background: linear-gradient(rgba(255,255,255,.1), #fff);
}

.tone-out:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    height: 40px;
    width: 100%;
    background: linear-gradient(rgba(255,255,255,.1), #fff);
}
 
.ww_card-image {
    margin: 0px;
}

h2 {
    line-height: 120% !important;
}

a .card:hover,
.cardhover:hover {
    -webkit-box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.01), 1px 1px 8px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.01), 1px 1px 8px 1px rgba(0,0,0,0.4);
    box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.01), 1px 1px 8px 1px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(.25,.8,.25,1);
}


.card-unread-text {
    float: right;
    opacity: 0.5;
    color: #333;
    padding-top: 115px;
    padding-right: 10px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2em;
    margin: 1.5rem 0 1.5rem;
    color: #333;
}

.article-preamble {
    font-size: 1.8rem;
    font-weight: 500;
    margin-left: 0.1rem
}

.card-header-override {
    padding: 20px !important;
    padding-top: 15px !important;
}

.card-header-override span {
    color: #999;
    font-size: 80%;
    padding-left: 1px;
}

.card-inner {
    padding-top: 30px;
}

div.card div.lv-body-custom,
div.card div.lv-body-assignments{
    overflow-y: auto;
}

.block-header-override {
    margin-bottom: 29px !important;
    padding: 0px !important;
}

.actions-override {
    top: -15px !important;
    right: 0;
}

.actions {
    right: 0 !important;
}

.filter-hidden {
    display: none;
}

.filterSet:before {
    right: 4px;
    top: 5px;
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: red;
    border: solid 1px #fff;
    z-index: 1;
    border-radius: 50%;
}

.filterSetItem:before {
    left: -10px;
    top: 6px;
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: red;
    border: solid 1px #fff;
    z-index: 1;
    border-radius: 50%;
}

.sidebar-override {
    width: 220px !important;
}

.select-add-margin > button > span {
    margin-left: 4px;
}

.divider-0 {
    display: none;
}

.actions > .divider {
    position: absolute;
    left: 34%;
    top: 20%;
    bottom: 20%;
    border-left: 1px solid #D0D0D0;
}

.divider-3 {
    position: absolute;
    left: 25%;
    top: 20%;
    bottom: 20%;
    border-left: 1px solid #D0D0D0;
}

.divider-4btn {
    position: absolute;
    left: 73%;
    top: 20%;
    bottom: 20%;
    border-left: 1px solid #D0D0D0;
}

.divider-4 {
    position: absolute;
    left: 19%;
    top: 20%;
    bottom: 20%;
    border-left: 1px solid #D0D0D0;
}

.divider-5 {
    position: absolute;
    left: 16%;
    top: 20%;
    bottom: 20%;
    border-left: 1px solid #D0D0D0;
}

.profile-menu-override {
    background-color: #f0f0f0;
}

.profile-menu-override-a {
    height: 82px !important;
    background: none !important;
    color: #888;
}

.profile-menu-override .main-menu {
    border-bottom: none !important;
    background-color: #f0f0f0;
}

.profile-pic-override img {
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: cover !important;
    border: solid 1px #e0e0e0 !important;
}

.profile-pic-override i {
    float: right;
    padding-top: 27px;
}

.profile-pic-override .profile-username {
    position: absolute;
    top: 35px; 
    left: 85px;
}

.main-menu-override {
    margin: 10px 0px !important;
}

.main-menu-override li a {
    padding: 13px 20px 13px 52px !important;
    cursor: pointer !important;    
}

.sub-menu ul li a {
    padding: 12px 20px 12px 82px !important;
    color: #4C4C4C !important;
}


.sub-menu ul li a:hover {
    color: #262626;
    background-color: #f7f7f7;
}


.sub-menu a i {
    left: 48px;
    font-size: 20px;
    width: 25px;
    text-align: center;
    position: absolute;
}

.prevent-hidden {
    display: block !important;
}

.no-results {
    padding: 8px !important;
    margin: 0 !important;
    font-style: italic;
    color: #666 !important;
}

.ui-accordion .ui-accordion-header {
    margin: 4px 0 0 0 !important;
    padding: .7em .7em .7em .7em !important;
}

.ui-accordion .ui-accordion-content {
    overflow: visible !important;
}

.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active, 
a.ui-button:active, 
.ui-button:active, 
.ui-button.ui-state-active:hover {
    border: 1px solid #2196f3;
    background: #2196f3;
}

#fieldoptions .ui-state-active, 
#fieldoptions .ui-widget-content .ui-state-active, 
#fieldoptions .ui-widget-header .ui-state-active, 
#fieldoptions a.ui-button:active, 
#fieldoptions .ui-button:active, 
#fieldoptions .ui-button.ui-state-active:hover {
    border: 1px solid #a0a0a0;
    background: #c7c7c7;
    color: #454545;
}

#fieldoptions .ui-accordion-content-active {
    border-left: 1px solid #a0a0a0;
    border-right: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
}

.ui-front {
    z-index: 9999 !important;
}

.ui-autocomplete {
    max-height: 290px !important;
    min-height: 29px !important;
    overflow-x: hidden;
    overflow-y: auto;
}

#data-table-lkvolunteers > tbody > tr {
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version */
}


.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    line-height: 20px;
    transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#F70505 0%, #8F0808 100%);
    box-shadow: 0 3px 10px -5px rgba(0,0,0,1);
    position: absolute;
    top: 19px;
    right: -21px;
}

.ribbon span::before {
    content: '';
    position: absolute;
    left: 0%;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #5b3c3c;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #5b3c3c;
}

.ribbon span::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 100%;
    z-index: -1;
    border-right: 3px solid #5b3c3c;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #5b3c3c;
}

.m-btn-override {
    z-index: 11 !important;
}

.status-complete {
    width: 6px;
    height: 6px;
    margin-top: 6px;
    margin-left: 5px;
    border-radius: 50%;
    background: #32CD32;
}

.status-circle {
    width: 6px;
    height: 6px;
    margin-top: 6px;
    margin-left: 5px;
    border-radius: 50%;
    background: #F70505;
}

.pagination .active a {
    background-color: #2196f3 !important;
}

.main-override {
    padding-bottom: 0px !important;
}

.c-info-override {
    margin-top: 0px !important;
    padding: 10px !important;
}

.c-info-override small {
    color: #777 !important;
    margin-top: 3px !important;
}

.wip-item-override {
    padding-bottom: 100% !important;
}

#calendar-widget .fc-toolbar {
     background: #55aef6 !important;
}

#calendar-widget .ui-widget-header {
     background: #86c5f9 !important;
}

.btn-back {
    float: left !important;
    margin-top: -5px !important;
    margin-right: 12px !important;
}

.m-btn-back {
     right: 100px !important;
}

.contacts-override {
     padding: 0 5px !important;
}


.breadcrumb-override {
    padding: 0 !important;
    margin-right: 50px;
    border-bottom: none !important; 
}

.table > tbody > tr:last-child > td,
.table > tfoot > tr:last-child > td {
  padding-bottom: 10px;
}

.table-override tr > th:first-child,
.table-override tr > th:first-child,
.table-override tr > th:first-child,
.table-override tr > td:first-child,
.table-override tr > td:first-child,
.table-override tr > td:first-child {
    padding-left: 16px !important;
}

.fr-element .wwSectionText {
    display: inline !important;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    color: #fff;
    background-color: #ff9900;    
}

.fr-element .wwSectionObject {
    display: none !important;
}

.fr-popup {
    z-index: 10 !important;
}

.breadcrumb-override li {
    font-size: 15px;
    color: #777;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 120% !important;
}

.breadcrumb-override a {
    color: #55aef6 !important;
    cursor: pointer !important;
}

.pmo-stat-override {
    padding: 10px 5px 10px 0 !important;
}

.pmo-block-override {
    padding: 0 25px !important;
}

.profile-main-override {
    min-height: 600px !important;
}

.pm-overview {
    background-color: inherit !important;
}

.survey-properties {
    color: #666; 
    text-align: left; 
    background-color: white; 
    padding: 4px 20px 20px;"
}

.survey-properties > h4 {
    color: #666;
}

.survey-properties > td {
    padding-top: 10px;
}

.survey-properties > td:first-child {
    padding-top: 0;
}

.p-relative-override {
    border: 1px solid #f0f0f0;
    border-bottom: none;
}

.frivillig-profile-img, .calendar-img {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.sentral-logo-img {  
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center;
    padding-bottom: 155px;
}

.sentral-logo-container {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;
    border-bottom: none;
    background-color: #fff;
    padding: 10px;    
}

.dm-item-custom {
    color: #4C4C4C;
    display: block;
    margin-left: -7px;
    padding-left: 10px;
    padding: 8px 17px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    white-space: nowrap;
    -webkit-transition: background-color;
    -o-transition: background-color;
    transition: background-color;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.dm-item-custom:hover,
.dm-item-custom:focus {
  text-decoration: none;
  color: #333333;
  background-color: rgba(0, 0, 0, 0.075);
}

.dm-menu-custom {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    padding-top: 5px;
    position: relative;
}

.dm-menu-custom:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
    top: 12px !important;
}

.dm-menu-custom:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
    filter: alpha(opacity=100);
    color: #333333;
}

.cornerbox::before,
.cornerbox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-color: transparent;
    border-style: solid;
}

.cornerbox::before {
    border-width: 1.5em;
    border-left-color: #FF6254;
    border-top-color: #FF6254;
}

.cornerbox::after {
    border-radius: 0.4em;
    border-width: 1.35em;
    border-left-color: #FF6254;
    border-top-color: #FF6254;
}

.pmb-block-table-override {
    padding: 0 12px 0 !important;
}

.pmb-block-override {
    padding: 4px 30px 0 !important;
}

.pmb-no-left {
    padding-left: 0 !important;
}

.pmbb-header h2 {
    color: #444 !important;
}

#profile-main .pmb-block .pmbb-view {
    animation-name: none;
}

.card-grid-override {
    box-shadow: none !important;
}

.btn-icon-table {
    width: 22px !important;
    height: 21px !important;
    line-height: 24px !important;
}

.lineThrough {
  text-decoration: line-through;
}

#tab-content-frivillig th:first-child {
    padding-left: 15px !important;
}

#tab-content-frivillig th:last-child {
    padding-right: 15px !important; 
}

#tab-content-frivillig td:first-child {
    padding-left: 15px !important;
}

#tab-content-frivillig td:last-child {
    padding-right: 15px !important; 
}

.links {
    color: #2196f3;
    text-decoration: none;
    cursor: pointer;
}

.lv-title {
    color: #2196f3 !important;
}

.links:hover, .links:focus {
    color: #0a6ebd;
    text-decoration: none;
}

.gallery-link {
    cursor: pointer;
}

.ww_card-text > p {
    color: #333;
    font-style: italic;
}

a[change-view-type] {
    cursor: pointer;
}

.list-actions {
    position: absolute;
    top: 10px;
    left: 0;
    list-style: none;
    padding: 0;
    z-index: 3;
    margin: 0;
    width: 100%;
    text-align: center;   
}

.four-zero-override {
    top: 0 !important;
    margin-top: 0 !important;
    position: relative !important;
    background: #2196f3 !important;
    height: 205px !important;
}

.four-zero-override h2 {
    font-size: 60px !important;
}

.login-title {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    text-align: center;
}

.login-title h3 {
    color: white;
}

.login-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.lv-item-override {
    padding: 10px 5px !important;
}

.volunteers-sections {
  padding: 5px 4px 5px 20px !important;
  position: relative;
}

.imgdlgGallery {
    box-shadow: none !important;
}

.imgdlgGallery .lv-avatar-override {
    border-radius: 0 !important;
}

.imgdlgGallery .select-image {
    position: relative !important;
    background: none !important;
    border-right: none !important;
    padding-top: 4px;
    padding-bottom: 10px !important;
    margin-left: -2px;
    width: 100% !important;
    height: 350px;
    overflow-y: auto;
    overflow-x: hidden; 
}

.image-gallery {
  margin-left: -4px;
  margin-right: -4px;
}

.qq-uploader {
    overflow: hidden;
}

.folder {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    background-color: #fff;
    height: 50px;
    margin: 6px 0 6px;
    position: relative;
    cursor: pointer;
}

.folder-icon {
    margin: 0 12px 0 12px;
}

.folder-actions > li > a:before,
.folder-actions > a:before {
    top: 12px !important;
}

.folder-card {
    padding: 4px 10px !important;
    height: 45px;
    overflow: hidden;
    margin: 0px;
}

.media {
    position: relative;
}

.media-body {
    padding-right: 20px;
}

.media-action {
    position: absolute;
    right: 4px;
    top: 0;
    bottom: 0;
    font-size: 22px;
    text-align: center;
    line-height: 50px;
}

.media-action-item {
    height: 100%;
    width: 35px;
    float: left;
    cursor: pointer;
}


/* IMPORTED UNIFY STYLES */

.g-pa-30 {
    padding: 30px !important;
}

/* END UNIFY STYLES */


/* SELECT DIALOG */

.selectDialogGalleryItem {
    padding: 0.5rem;
}

.selectDialogGalleryItem:hover {
    cursor: pointer;
}

.selectDialogGalleryItemImg {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;
    border-bottom: none;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.selectDialogGalleryItemDesc {
    color: #777;
    text-align: center;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;  
    height: 42px;
    padding: 0 4px 0 4px;
}

.selectDialogGalleryItemSelected {
    -webkit-box-shadow:inset 0px 0px 0px 3px #2196f3;
    -moz-box-shadow:inset 0px 0px 0px 3px #2196f3;
    box-shadow:inset 0px 0px 0px 3px #2196f3;
}

.selectDlgGallery {
    box-shadow: none !important;
}

.selectDlgGallery .lv-avatar-override {
    border-radius: 0 !important;
}

.selectDlgGallery .select-item {
    position: relative !important;
    background: none !important;
    border-right: none !important;
    padding-top: 4px;
    padding-bottom: 10px !important;
    margin-left: -2px;
    width: 100% !important;
    height: 350px;
    overflow-y: auto;
    overflow-x: hidden; 
}

/* END SELECT DIALOG */

.pmbody-view-p-l {
    padding-left: 26px !important;
}

.pmbody-edit-p-l {
    padding-left: 25px !important;
}

.form-control-input {
    padding-left: 5px !important;
    border: solid 1px #f0f0f0 !important;
    color: #222;
}

.form-control-textarea {
    padding-left: 5px !important;
    padding-top: 5px !important;
    border: solid 1px #f0f0f0 !important;
    color: #222;
}

/* INSERT BUTTONS */

.insert-button {
    border: solid 1px #d0d0d0;
    border-radius: 2px;
    padding: 6px 10px;
    margin-right: 4px;
    margin-top: 6px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;

  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */

}

/* END INSERT BUTTONS */

/* Styles selections in filters */

.caret-small {
    min-width: 40px !important;
    height: 30px !important;
}

.caret-small .dropdown-menu:not([data-animation]):not(.pull-right):not(.dropdown-menu-right) {
    min-width: 124px;
}

.caret-small > .btn-default:not(.disabled):after,
.caret-small > .btn-default:not(.readonly):after {
  background: inherit !important;
}

.caret-small > .btn-default {
    top: 0px !important;
}

.caret-small > .btn-default:before {
    width: 16px !important;
}

#list-form .btn-default {
    border-bottom: 1px solid #e0e0e0 !important;
    top: 0px;
}

#list-form .bootstrap-select.open > .btn-default:after {
    width: 100%;
}

#list-form .bootstrap-select > .btn-default:after {
    bottom: -1px;
    left: 0px;
}

#list-form .bootstrap-select > .btn-default:before {
    right: 0px;
}

/* Styles selections elsewhere */

.form-control-select {
    border: solid 1px #f0f0f0 !important;
}

.bootstrap-select.open > .btn-default:after {
    width: calc(100% + 7px);
}

.bootstrap-select > .btn-default:after {
    bottom: -3px;
    left: -6px;
}

.bootstrap-select > .btn-default:before {
    right: 5px;
}

.bootstrap-select > .btn-default {
    border-bottom: none !important;
    top: 2px;
}

label {
    font-weight: 400 !important;
}

.calendar-header .calendar-title {
    color: #555;
    font-weight: 600;
    font-size: 32px;
    padding: 10px 15px;
}

.calendar-header .calendar-description {
    color: #555;
    font-weight: 400;
    font-size: 18px;
    padding: 10px 15px;
}

.calendar-info-wrapper {
    padding-left: 10px; 
    padding-top: 25px; 
    padding-bottom: 18px; 
    border-top: 1px solid #ddd; 
}

.calendar-info {
    border: 0;
    font-size: 15px;
    margin-bottom: 8px;
}

.calendar-info i {
  padding-right: 6px;
  font-size: 20px;
  text-align: center;
}

.pmo-calendar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pmo-calendar ul li {
    position: relative;
    padding: 8px 0 8px 35px;
}

.pmo-calendar ul li i {
    font-size: 18px;
    vertical-align: top;
    line-height: 100%;
    position: absolute;
    left: 0;
    width: 18px;
    text-align: center;
}

.calendar-view-leftcolumn ul.zmdi-hc-ul li span {
    position: absolute;
    left: 20px;
    font-weight: 600;
}

.right-empty-list {
  margin: 0 auto;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #d1d1d1;
}

.list-status-circle-large {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  position: absolute;
  top: 10px; right: 10px;
}

.list-status-circle-large span {
  color: white;
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  left: 14px;
}

.list-status-circle {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  position: absolute;
  top: 24px; left: 24px;
  border: 2px solid #fff;
}

.list-status-circle-dropdown {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  position: absolute;
  margin-top: 10px;
  left: 10px;
  border: 2px solid #fff;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
  cursor: default;
}

.bgm-blue {
    border: solid 1px rgb(255, 255, 255, 0.4) !important;
}

.row-warning {
    background-color: #ffe6e6;
}

.row-warning .input-helper:after {
    border-bottom: 2px solid red;
    border-left: 2px solid red;
}

.row-approved {
    background-color: #e6ffe6;
}

/* --- ASSIGNEMTN STATUS COLORS --- */

.related-calendar a {
    cursor: pointer;
}

/* Aktuell */
.assignment-status-0 {
    background-color: #3399ff !important;
}

/* Spørres */
.assignment-status-1 {
    background-color: #ffcc00 !important;
}

/* Forspurt */
.assignment-status-2 {
    background-color: #ffcc00 !important;
}

/* Ja */
.assignment-status-3 {
    background-color: #00cc00 !important;
}

/* Ja og møtt */
.assignment-status-10 {
    background-color: #00cc00 !important;
}

/* Reserve */
.assignment-status-4 {
    background-color: #00cc00 !important;
}

/* Nei */
.assignment-status-5 {
    background-color: #ff0000 !important;
}

/* Meldt avbud */
.assignment-status-6 {
    background-color: #ff0000 !important;
}

/* Ikke møtt */
.assignment-status-7 {
    background-color: #ff0000 !important;
}

/* Ingen status */
.assignment-status-none {
    background-color: #d0d0d0 !important;
}

.selectfilter-activity {
    background-color: inherit !important;
    color: #fff;
}

.selectfilter-activity > .btn-default:before {
    background-image: url(/material/img/select_white.png) !important;
    background-color: inherit !important;
}

.selectfilter-activity button {
    color: #fff !important;
    padding-left: 4px !important;
}

.selectfilter-activity button > .filter-option {
    text-align: center !important;
}

.selectfilter-activity .caret {
    display: none !important;
}

/* EDITOR STYLING OVERRIDES */

.note-editor .note-toolbar,
.note-popover .note-toolbar,
.note-editor .popover-content,
.note-popover .popover-content {
  padding: 0 0 0 5px !important;
  text-align: left !important;
}

/* IMAGE DIALOG STYLING */

.imageDialogGalleryItem {
    padding: 0.5rem;
}

.imageDialogGalleryItem:hover {
    cursor: pointer;
}

.imageDialogGalleryItemImg {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;
    border-bottom: none;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.imageDialogGalleryItemDesc {
    color: #777;
    text-align: center;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #d3d3d3;  
    height: 23px;
    padding: 0 4px 0 4px;
}

.imageDialogGalleryItemSelected {
    -webkit-box-shadow:inset 0px 0px 0px 3px #2196f3;
    -moz-box-shadow:inset 0px 0px 0px 3px #2196f3;
    box-shadow:inset 0px 0px 0px 3px #2196f3;
}

/* TAGS DIALOG STYLING */

.modalTagsHeader {
    padding: 10px;
    padding-left: 15px;
}

.modalTagsHeader h2 {
    color: #333;
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 120% !important;
}

.tag-container {
    padding: 6px 5px 2px;
    background-color: white;
    cursor: pointer;
}

.tag {
    background-color: #E6F1CA;
    padding: 2px 10px;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
    margin: 0 4px 4px 0;
    display: inline-block;
    color: #454545;
    margin-bottom: 4px;
    margin-right: 4px;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.tag-view {
    background-color: #E6F1CA;
    padding: 2px 10px;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
    margin: 0 4px 4px 0;
    display: inline-block;
    color: #454545;background-color: #E6F1CA;
    padding: 2px 10px;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
    margin: 0 4px 4px 0;
    display: inline-block;
    color: #454545;
}

.tag-container a {
    padding: 2px 10px;
    margin-bottom: 4px;
    margin-right: 4px;
    display: inline-block;
    cursor: pointer;
    color: #2196f3;
    overflow: hidden;
}

.attachment-container {
    padding: 0 5px 2px;
    background-color: white;
    cursor: pointer;
}

.attachment {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 14px;
}

.attachment-item {
    background-color: #e6f0ff;
    border-radius: 4px 0 0 4px;
    padding: 4px 2px 4px 8px;
}

.attachment-item:hover {
    color: #222;
}

.attachment-remove {
    background-color: #e6f0ff;
    border-radius: 0px 4px 4px 0;
    padding: 4px 8px;
}

.attachment-remove:hover {
    background-color: #B3D1DE;
    color: #fff;
}

/* -- Experience Tag styling -- */
.experience-tag {
    background-color: #E6E6E6;
    padding: 2px 10px;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
    margin: 0 4px 4px 0;
    color: #454545;
    margin-bottom: 4px;
    margin-right: 4px;
    cursor: pointer;
    display: inline-block;
    float: left;
/*    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;  */
    
}

.experience-selected {
    background-color: #B3E6FF;
}

.modal-dialog.modal-md .lv-body.lv-body-custom.experiences {
    max-height: 70vh;
}

.experience-info-toggle{
    cursor: pointer;
}

.experience-info-container small.lv-small.collapsible{
    display: none;
}

.experience-info-container .header-wrapper > .icon-wrapper,
.experience-info-container .header-wrapper > div.lv-title{
    display: inline;
}

.experience-info-container .header-wrapper > i {
    width: 18px;
    margin-right: 10px;
}

.experience-info-container .icon-wrapper{
    width: 20px;
}

.experience-image-counter-icon {
    margin-left: 4px;
    margin-right: 4px;
}

.experience-dashboard-buttons {
    display: inline-block;
    padding: 10px;
    border: 1px solid #d0d0d0;
    margin: 4px;
    cursor: pointer;
    width: 250px;
    font-size: 18px;
    border-radius: 2px;
    background-color: #f9f9f9;
}

/* -- HOMEPAGE ELEMENTS -- */

.iris-homepage-dashboard a {
    cursor: pointer;
}

.iris-homepage-dashboard .card div.card-header {
    padding: 0;
    color: #fff;
}

.iris-homepage-dashboard div.card-header .icon {
    padding: 15px 15px 15px 19px;
    float: left;
}

.iris-homepage-dashboard div.card-header .header {
    padding: 15px 15px 15px 85px;
}

.iris-homepage-dashboard div.card-header .icon i.zmdi {
    font-size: 45px;
}

.iris-homepage-dashboard div.card-header .header > h2 {
    line-height: 24px !important;
}

.iris-homepage-dashboard div.card-header .nav {
    position: absolute;
    right: 15px;
    top: 20px;
    font-size: 28px;
}

/* -- SEARCH CONTACT DIALOG -- */

.results tr[visible='false'],
.no-result{
    display:none;
}

.results tr[visible='true']{
    display:table-row;
}

.search-table > tbody > tr:hover {
    background-color: #c0c0c0;
    color: #fff;
}

.search-table .selected {
    background-color: #2196F3 !important;
    color: #fff !important;
}


/* -- FILE INPUT STYLING  (usage: i.e. ImageDialog) -- */

.input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.input-file + label,
.input-label {
    font-size: 1.25em;
    font-weight: 400;
    color: #2196f3 !important;
    display: inline-block;
    padding: 10px;
}

.input-file + label svg,
.input-label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

.input-file:focus + label,
.input-file + label:hover,
.input-file:visited {
  color: #2196f3;    
}

.input-file + label,
.input-label {
  cursor: pointer;
}

.inputfile:focus + label,
.input-label:focus {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

/* -- END FILE INPUT STYLING -- */

/* OVERLAY IMAGE ICON */

/* Container needed to position the overlay. Adjust the width as needed */
.img-overlay {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* The overlay effect (full height and width) - lays on top of the container and over the image */
.img-overlay .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #d0d0d0;
}

/* When you mouse over the container, fade in the overlay icon*/
.img-overlay:hover .overlay {
  opacity: 0.75;
}

/* The icon inside the overlay is positioned in the middle vertically and horizontally */
.img-overlay .icon {
  color: #333;
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/* When you move the mouse over the icon, change color */
.img-overlay .zmdi-edit:hover {
  color: #111;
}

/* END OVERLAY IMAGE ICON */

.buttonActionAnimation {
  display: none;
  width: 76px !important; 
  bottom: 27px !important; 
  right: 27px !important; 
  position: fixed !important; 
  z-index: 11 !important;
}

.shareButton {
    border: dashed 1px;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
}

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recordCount {
    color: #fff;
    padding: 1px 4px 1px 4px;
    margin-left: 5px;
    border: solid 1px #c0c0c0;
    border-radius: 4px;
    background-color: #a0a0a0;
}

.survey-topheader {
    padding: 10px;
}

.survey-topheader h1,
.survey-topheader h4 {
    margin: 10px;
    color: #fff;
}

.survey-subheaders {
    display: inline-block;
    margin-top: 10px;
}

.survey-subheader {
    position: relative;
    float: left;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 27px 7px 37px;
    margin: 20px 20px 15px -22px !important;
    color: #fff !important;
    background-color: #3D9187 !important;
    -webkit-box-shadow: 0px 2px 4px #999 !important;
    -moz-box-shadow: 0px 2px 4px #999 !important;
    box-shadow: 0px 2px 4px #999 !important;
    -webkit-print-color-adjust: exact !important;
}

.survey-subheader2 {
    position: relative;
    float: left;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 27px 7px 37px;
    margin: 20px 20px 15px -22px !important;
    color: #000000;
}

.card .survey-subheader {
    margin: 20px 20px 15px -32px !important;
}

.survey-subheader:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: -5px;
    border-style: solid;
    border-color: #1d776b #1d776b transparent transparent;
}

.survey-view {
    padding: 0px 22px 0px 41px;
}

#survey-desc a {
    color: #fff;
    text-decoration: underline;
}

.fielderror {
    background-color: #FCEBEE;
    color: red;
}

.fielderror .fg-line:not([class*=has-]):after {
    background-color: red;
}

.selections-button {
    text-align: right;
    margin-bottom: -15px;
}

.selections-filter {
    z-index: 4;
    list-style: none;
    padding-left: 0;
    top: 38px;
    right: 7px;
    position: absolute;    
}

.selection-button {
    margin-right: 35px;
}

.ddSelections {
    min-width: 100px !important; 
    right: 35px; 
    left: auto;
    cursor: pointer;
}

.divider-0 {
    display: none;
}

.assignment-card {
    height: 62px;
    padding: 10px;
    margin-bottom: 0px;
    overflow: hidden;
    border: solid 1px #d0d0d0;
    background-color: #fff; 
}

.weekDays-selector input {
    display: none!important;
}

.weekDays-selector input[type=checkbox] + label {
    display: inline-block;
    border-radius: 6px;
    background: #dddddd;
    height: 30px;
    width: 30px;
    margin-right: 3px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.weekDays-selector input[type=checkbox]:checked + label {
    background: #4393EE;
    color: #ffffff;
}

.div-filterbutton {
    padding: 4px 12px; 
    margin-right: 6px; 
    margin-bottom: 6px; 
    border: solid 1px #d0d0d0; 
    border-radius: 2px;
    display: inline-block;
    color: #666;
    background-color: #f0f0f0;
    cursor: pointer;
    min-width: 70px;
    text-align: center;
}

.div-filterbuttons .active {
    background-color: #4FA369;
    color: #fff;

}

.menu-arrow i {
  border: solid #888;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 6px;
  cursor: pointer;
  color: #888;
}

.menu-arrow .right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.menu-arrow .left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.menu-arrow .up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.menu-arrow .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-bottom: 2px;
}

/* Froala Custom Styles */
#article h1 {
    font-family: "Open Sans",helvetica,arial,sans-serif; 
    font-weight: 800; 
    font-style: normal; 
    color: #454545; 
    font-size: 36px;
}

#article .lead {
    font-weight: 600; 
    font-size: 18px;
    line-height: 28px;
}

#article .news-image {
    border: solid 1px #d0d0d0;
}

#article .posts .dl-horizontal {
    height: 50px !important;
}

.posts-header {
   font-size: 20px !important; 
   margin-bottom: 10px !important; 
   font-weight: 800 !important; 
   color: #444 !important;
}

#article .posts-box:hover .posts-title {
    color: #222 !important;
}

#article .posts-box:hover .posts-lead {
    color: #777 !important;
}

.posts-title {
    color: #666 !important;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.posts-lead {
    color: #b0b0b0;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 15px;
}

#article p {
    font-size: 16px;
    color: #454545;
}

#article blockquote {
    font-style: italic;
    margin-left: 14px;
    padding-left: 10px;
    border-left: solid 2px #8DBF59;
}

#article blockquote p {
    color: #656565;
}

#article ol {
    padding-inline-start: 30px;
}

#article ul:not(.social) {
    padding-inline-start: 30px;
}

#article li {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
    color: #454545;
}

#article .fr-view h1 {
    font-family: "Open Sans",helvetica,arial,sans-serif; 
    font-weight: 800; 
    font-style: normal; 
    color: #444;
    font-size: 24px;
    margin-top: 22px;
}

#article .fr-view h2 {
    font-family: "Open Sans",helvetica,arial,sans-serif; 
    font-weight: 800; 
    font-style: normal; 
    color: #444;
    font-size: 20px;
    margin-top: 22px;
}

#article .fr-view h3 {
    font-family: "Open Sans",helvetica,arial,sans-serif; 
    font-weight: 800; 
    font-style: normal; 
    color: #444;
    font-size: 17px;
    margin-top: 22px;
}

#article .fr-view h4 {
    font-family: "Open Sans",helvetica,arial,sans-serif; 
    font-weight: 600; 
    font-style: normal; 
    color: #444;
    font-size: 16px;
    margin-top: 20px;
}

#article .fr-view table th {
    background: #e6e6e6 !important;
}

#article .fr-view table td, 
#article .fr-view table th {
    border: 1px solid #dddddd !important;
}

.fr-toolbar.fr-top {
    border-radius: 2px 2px 0 0 !important;
    -moz-border-radius: 2px 2px 0 0 !important;
    -webkit-border-radius: 2px 2px 0 0 !important;
}

.fr-box > .second-toolbar {
    border-radius: 0 0 2px 2px !important;
    -moz-border-radius: 0 0 2px 2px !important;
    -webkit-border-radius: 0 0 2px 2px !important;
}



/* END FROALA CUSTOM STYLES */

.input-display-only {
    background-color: inherit !important;
}

#iris-tooltip {
    text-align: center;
    color: #fff;
    background: #7DC144;
    position: absolute;
    z-index: 100;
    padding: 15px;
    border-radius: 2px;
}
 
#iris-tooltip:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #7DC144;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
}
 
#iris-tooltip.top:after {
    border-top-color: transparent;
    border-bottom: 10px solid #7DC144;
    top: -20px;
    bottom: auto;
}

#iris-tooltip.left:after {
    left: 10px;
    margin: 0;
}

#iris-tooltip.right:after {
    right: 10px;
    left: auto;
    margin: 0;
}

.pmbodyview-modal-lg-override {
    padding-left: 15px !important;
}


/* --- RATING BUTTON STYLES --- */

    .rateit .rateit-hover {
        color: #62B221 !important;
    }

    .rateit .rateit-selected {
        color: #7CC244 !important;
    }

    .rateit .rateit-preset {
        color: #7CC244 !important;
    }

/* --- END RATING BUTTONS --- */


/*  ---- CSS Floating Action Button (FAB) --- */

.mfb-component--tl, .mfb-component--tr, .mfb-component--bl, .mfb-component--br {
  box-sizing: border-box;
  position: fixed;
  white-space: nowrap;
  z-index: 30;
  padding-left: 0;
  list-style: none; }
  .mfb-component--tl *, .mfb-component--tr *, .mfb-component--bl *, .mfb-component--br *, .mfb-component--tl *:before, .mfb-component--tr *:before, .mfb-component--bl *:before, .mfb-component--br *:before, .mfb-component--tl *:after, .mfb-component--tr *:after, .mfb-component--bl *:after, .mfb-component--br *:after {
    box-sizing: inherit; }

/*------------------------------------*\
    #BASE | Modifiers
\*------------------------------------*/
/**
 * These styles depends on the placement of the button.
 * Styles can be:
 * 1. Top-left:  modified by the " --tl " suffix.
 * 2. Top-right: modified by the " --tr " suffix.
 * 3. Bottom-left:  modified by the " --bl " suffix.
 * 4. Bottom-right: modified by the " --br " suffix.
 */
.mfb-component--tl {
  left: 0;
  top: 0; }

.mfb-component--tr {
  right: 0;
  top: 0; }

.mfb-component--bl {
  left: 0;
  bottom: 0; }

.mfb-component--br {
    right: 40px;
    bottom: 40px;
    margin-top: 0;
    margin-bottom: 0;
}

/*------------------------------------*\
    #BUTTONS | Base
\*------------------------------------*/
.mfb-component__button--main, .mfb-component__button--child {
  background-color: #E40A5D;
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  -webkit-user-drag: none;
  color: #f1f1f1 !important; 
}

/**
 * This is the unordered list for the list items that contain
 * the child buttons.
 *
 */
.mfb-component__list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .mfb-component__list > li {
    display: block;
    position: absolute;
    top: 0;
    right: 1px;
    padding: 10px 0;
    margin: -10px 0; }

/**
 * These are the basic styles for all the icons inside the main button
 */
.mfb-component__icon, .mfb-component__main-icon--active,
.mfb-component__main-icon--resting, .mfb-component__child-icon {
    position: absolute;
    font-size: 23px;
    text-align: center;
    line-height: 47px;
    width: 100%; 
}

[data-mfb-toggle="hover"]:hover .mfb-component__icon, [data-mfb-toggle="hover"]:hover .mfb-component__main-icon--active,
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--resting, [data-mfb-toggle="hover"]:hover .mfb-component__child-icon,
[data-mfb-state="open"] .mfb-component__icon,
[data-mfb-state="open"] .mfb-component__main-icon--active,
[data-mfb-state="open"] .mfb-component__main-icon--resting,
[data-mfb-state="open"] .mfb-component__child-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg); }

.mfb-component__button--main {
  height: 50px;
  width: 50px;
  z-index: 20; }

.mfb-component__button--child {
  height: 50px;
  width: 50px; }

.mfb-component__main-icon--active,
.mfb-component__main-icon--resting {
  -webkit-transform: scale(1) rotate(360deg);
  transform: scale(1) rotate(360deg);
  -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1); }

.mfb-component__child-icon,
.mfb-component__child-icon {
  line-height: 47px;
  font-size: 23px; }

.mfb-component__main-icon--active {
  opacity: 0; }

[data-mfb-toggle="hover"]:hover .mfb-component__main-icon,
[data-mfb-state="open"] .mfb-component__main-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg); }
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--resting,
[data-mfb-state="open"] .mfb-component__main-icon--resting {
  opacity: 0;
  position: absolute !important; }
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--active,
[data-mfb-state="open"] .mfb-component__main-icon--active {
  opacity: 1; }

.mfb-component--tl.mfb-slidein .mfb-component__list li,
.mfb-component--tr.mfb-slidein .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s; }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px);
  transform: translateY(70px); }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px);
  transform: translateY(140px); }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px);
  transform: translateY(210px); }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px);
  transform: translateY(280px); }

.mfb-component--bl.mfb-slidein .mfb-component__list li,
.mfb-component--br.mfb-slidein .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s; }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px); }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px); }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px); }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px); }

.mfb-component--tl.mfb-slidein-spring .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s; }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(70px);
  transform: translateY(70px); }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(140px);
  transform: translateY(140px); }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(210px);
  transform: translateY(210px); }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(280px);
  transform: translateY(280px); }

.mfb-component--bl.mfb-slidein-spring .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s; }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(-64px);
  transform: translateY(-64px); }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(-134px);
  transform: translateY(-134px); }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(-204px);
  transform: translateY(-204px); }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(-274px);
  transform: translateY(-274px); }

.mfb-component--tl.mfb-zoomin .mfb-component__list li,
.mfb-component--tr.mfb-zoomin .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s; }

.mfb-component--bl.mfb-zoomin .mfb-component__list li,
.mfb-component--br.mfb-zoomin .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s; }

.mfb-component--tl.mfb-fountain .mfb-component__list li,
.mfb-component--tr.mfb-fountain .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s; }

.mfb-component--bl.mfb-fountain .mfb-component__list li,
.mfb-component--br.mfb-fountain .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s; }

[data-mfb-label]:after {
    content: attr(data-mfb-label);
    opacity: 0;
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 10px;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: normal;
    pointer-events: none;
    line-height: normal;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    transition: all 0.5s; 
}

[data-mfb-toggle="hover"] [data-mfb-label]:hover:after,
[data-mfb-state="open"] [data-mfb-label]:after {
    content: attr(data-mfb-label);
    opacity: 1;
    transition: all 0.3s; 
}

/*------------------------------------*\
    #LABELS | Modifiers
\*------------------------------------*/
.mfb-component--br [data-mfb-label]:after, .mfb-component--tr [data-mfb-label]:after {
  content: attr(data-mfb-label);
  right: 70px; }

.mfb-component--br .mfb-component__list [data-mfb-label]:after, .mfb-component--tr .mfb-component__list [data-mfb-label]:after {
  content: attr(data-mfb-label);
  right: 70px; }

.mfb-component--tl [data-mfb-label]:after, .mfb-component--bl [data-mfb-label]:after {
  content: attr(data-mfb-label);
  left: 70px; }

.mfb-component--tl .mfb-component__list [data-mfb-label]:after, .mfb-component--bl .mfb-component__list [data-mfb-label]:after {
  content: attr(data-mfb-label);
  left: 70px; }

/*  ---- END FAB ---- */

.slick-current {

}


.slick-slide {
    padding: 15px;
}
/*  ---- Print media ---- */

@media print {

    .no-print, 
    .no-print * {
        display: none !important;
    }

    .page-break-after {
        page-break-after: always;
    }

    .table-responsive {
        overflow-x: visible;
    }

    #filterCard {
        display:  none !important;
    }

    .actions {
        display:  none !important;
    }

    .progress {
        background-color: #f5f5f5 !important;
    }

    .progress-bar {
        background-color: #2196f3 !important;
    }

    #main {
        padding-top: 10px;
    }

    .zmdi-share:before {
        color: #fff !important;
    }

    .print-m-t-0 {
        margin-top: 0 !important;
    }

    a[href]:after {
        display: none;
        visibility: hidden;
    }

    .wall-img-preview .wip-item {
        background-repeat: no-repeat !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: #f4f4f4 !important;
    }
    
    a {
      text-decoration: underline;
      color: #2196f3 !important;
    }

    .typeInfo > td {
        background-color:#f2f2f2 !important;
    }




  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .visible-xs {
    display: none !important;
  }
  .hidden-xs {
    display: block !important;
  }
  table.hidden-xs {
    display: table;
  }
  tr.hidden-xs {
    display: table-row !important;
  }
  th.hidden-xs,
  td.hidden-xs {
    display: table-cell !important;
  }
  .hidden-xs.hidden-print {
    display: none !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }


}

.typeInfo > td {
    background-color:#f2f2f2 !important;
}

@page {
    size: auto;
    margin: 8mm 8mm 8mm 8mm;  
}

body { 
    margin: 0px;
}

/* Navigering på post */
.nav-arrows {
  position: relative;
  color: #4da6ff;
}
.nav-arrows-hidden {
  display: none;
}
.nav-arrow-previous {
  position: absolute;
  top: 1px;
  left: -6px;
  cursor: pointer;
}
.nav-arrow-next {
  position: absolute;
  top: 1px;
  left: 12px;
  cursor: pointer;
}
.nav-arrow-inactive {
  color: #D0D0D0;
  cursor: default;
}
.nav-arrow-icon {
  font-size: 19px;
}
.nav-arrow-spacing {
  padding-right:29px;
}

/*  ---- Responsive media classes ---- */

@media (min-width: 768px) {
    .dm-menu-custom:before {
        left: 0;
        top: 0;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-transform: scale3d(0, 0, 0);
        -moz-transform: scale3d(0, 0, 0);
        -ms-transform: scale3d(0, 0, 0);
        -o-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        background-color: rgba(0, 0, 0, 0.1);
        z-index: 0;
        border-radius: 50%;
        opacity: 0;
        filter: alpha(opacity=0);    
    }

    .lv-body-assignments,
    .lv-body-custom {
        height: 245px;
    }

    .modal-dialog.modal-md .lv-body.lv-body-custom.experiences {
        height: auto;
    }

    .lv-item-custom {
        padding: 12px 15px !important;
    }

    .selections-button {
        position: absolute;
        right: 200px;
        top: -4px;
        margin-bottom: -15px;
    }

    .selection-button {
        margin-right: 0;
    }    

    .selections-filter {
        z-index: 4;
        list-style: none;
        padding-left: 0; 
        position: absolute; 
        right: -27px; 
        top: 0;
    }

    .ddSelections {
        min-width: 100px !important; 
        right: 0; 
        left: auto;
    }

    .divider-0 {
        display: block;
        position: absolute;
        left: -6px;
        top: 20%;
        bottom: 20%;
        border-left: 1px solid #D0D0D0;
    }

    .assignment-card {
        height: 62px;
        padding: 10px;
        margin-bottom: 10px;
        overflow: hidden;
        border: solid 1px #d0d0d0;
        background-color: #fff; 
    }

    #profile-main .pmo-pic .pmo-stat {
        background: #E5F0FF;
        color: #666;
    }
}

@media (min-width: 1200px) {

  #content > .container {
    width: 100% !important;
  }
  
  body.sw-toggled .content-override {
    padding-left: 220px !important;
  }

  .menu-hidden .content-override {
    padding-left: 0px !important;
  }

}

@media (max-width: 1199px) {
    .pmbb-header {
        margin-left: 10px;
    }
}

@media (max-width: 991px) {
    .survey-subheader {
        margin: 20px 20px 15px -24px !important;
    }

    .survey-view {
        padding: 0px 22px 0px 32px;
    }

    .survey-properties {
        margin-top: -8px; 
    }

    [data-mfb-toggle="hover"] [data-mfb-label]:hover:after,
    [data-mfb-state="open"] [data-mfb-label]:after {
        content: attr(data-mfb-label);
        opacity: 1;
    }

}

@media (max-width: 767px) {
    .pm-overview-survey {
        background-color: white !important;
    }

    .table > thead > tr > th:first-child, 
    .table > tbody > tr > th:first-child, 
    .table > tfoot > tr > th:first-child, 
    .table > thead > tr > td:first-child, 
    .table > tbody > tr > td:first-child, 
    .table > tfoot > tr > td:first-child {
        padding-left: 10px;
    }

    .pmbodyview-modal-lg-override {
        padding-left: 12px !important;
    }

    .modalbody-lg-override {
        padding: 0 10px 10px !important;
    }

    .modal-dialog.modal-md .lv-body.lv-body-custom.experiences {
        max-height: 100vh;
    }
}

@media (max-width: 480px) {
  
  .m-btn-override {
    bottom: 20px !important;
    right: 20px !important;
  }

  .buttonActionAnimation { 
  bottom: 7px !important; 
  right: 7px !important; 
}

  .m-btn-back {
    right: 75px !important;
  }

  .four-zero-override {
    height: 285px !important;
  }

}

@media screen and (min-width: 550px) and (max-width: 800px) {
    .col-ln {
        width: 25% !important;
    }
}

@media screen and (min-width: 800px) and (max-width: 991px) {
    .col-smc {
        width: 20% !important;
    }
}

@media screen and (min-width: 1200px)  {
  .col-xl {
    width: 20% !important;
  }
}

@media screen and (min-width: 1500px) {
    .col-xxl {
        width: 16.6% !important;
    }
}

@media screen and (min-width: 1500px) {
  .col-xxl-3 {
    width: 25% !important;
  }  
}


/* ---- Animations ---- */



/* ---- Testing ---- */



/* Stikkordskjema på frivillig */

#stikkord-tbl {
    border-collapse: collapse;
    min-width: 100%;
}

#stikkord-tbl h1 {
      font-family: "Arial";
      font-size: 18px;
}

#stikkord-tbl th, 
#stikkord-tbl td {
      font-family: "Arial";
      font-size: 13px;
      border: 1px solid #C0C0C0;
      padding: 4px;
}
    
#stikkord-tbl .check {
      text-align: center;
  }

.alert-override {
  padding-bottom: 4px;
  padding-top: 4px;
  border-radius: 2px 2px 0px 0px;
}


/* Fine Upload */
.qq-uploader {
    overflow: hidden !important;
    width: 100% !important;
    padding: 10px !important;
}

.qq-total-progress-bar-container {
    display: none; !important;
}

/*\
 * Restore Bootstrap 3 "hidden" utility classes.
\*/

/* Breakpoint XS */
@media (max-width: 575px)
{
    .hidden-xs-down, .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down, 
    .hidden-xs-up, 
    .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl
    {
        display: none !important;
    }

}

/* Breakpoint SM */
@media (min-width: 576px) and (max-width: 767px)
{
    .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down, 
    .hidden-xs-up, .hidden-sm-up, 
    .hidden-unless-xs, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl
    {
        display: none !important;
    } 
}

/* Breakpoint MD */
@media (min-width: 768px) and (max-width: 991px)
{
    .hidden-md-down, .hidden-lg-down, .hidden-xl-down, 
    .hidden-xs-up, .hidden-sm-up, .hidden-md-up, 
    .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-lg, .hidden-unless-xl
    {
        display: none !important;
    } 
}

/* Breakpoint LG */
@media (min-width: 992px) and (max-width: 1199px)
{
    .hidden-lg-down, .hidden-xl-down, 
    .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, 
    .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-xl
    {
        display: none !important;
    } 
}

/* Breakpoint XL */
@media (min-width: 1200px)
{
    .hidden-xl-down, 
    .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, .hidden-xl-up, 
    .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg
    {
        display: none !important;
    } 
}


/* Modal fullscreen classes */
    /* Extra small devices (less than 768px) */
    @media (max-width: 767px) {
        .modal-fullscreen-xs-down {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }
            
        .modal-fullscreen-xs-down .modal-content {
            height: auto;
            min-height: 100%;
            border: 0 none;
            border-radius: 0;
            box-shadow: none;
        }
    }

    /* Extra small devices (less than 768px) */
    @media (max-width: 992px) {
        .modal-fullscreen-sm-down {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }
            
        .modal-fullscreen-sm-down .modal-content {
            height: auto;
            min-height: 100%;
            border: 0 none;
            border-radius: 0;
            box-shadow: none;
        }
    }

.check-item{
  margin-bottom: 10px;
}

/* Wrapper for hele blokken (punkt + avvik) */
.check-item-panel{
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 8px;
}

/* Header (selve punktet) */
.check-item-header{
  position: relative;
  background: #fff;
  padding: 10px 34px 10px 8px; /* høyre padding gir plass til pil */
  cursor: pointer;
  user-select: none;
  border-radius: 6px;
}

/* Ubehandlede skal poppe mest (n岠ikke aktiv) */
.check-item-header.unhandled{ background: #f7f8fa; }
.check-item-header.done .check-item-title{ color: #555; }

/* Aktivt punkt: header f岠svak markering (uansett om avvik finnes) */
.check-item.active .check-item-header{
  background: #eaf2ff;
}

/* Aktivt punkt med avvik: hele blokken f岠bakgrunn */
.check-item.active.has-avvik .check-item-panel{
  background: #eef5ff;
  border-radius: 6px;
  padding: 0 0 8px 0;
  border-bottom: none;
}

/* Aktivt punkt uten avvik: IKKE hel bakgrunn (unng堢tom flate") */
.check-item.active:not(.has-avvik) .check-item-panel{
  background: transparent;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9e9e9;
}

/* N岠hel-blokk-bakgrunn er p嬠legg litt luft før avviklista */
.check-item.active.has-avvik .deviation-list{
  margin-top: 10px;
}

.status-wrap{ width: 30px; }

.check-item-title{
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.check-item-desc{
  margin-top: 4px;
  color: #666;
  font-size: 13px;
}

/* Ubehandlet: tom sirkel */
.status-dot{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #b5b5b5;
  vertical-align: top;
  margin-top: -1px;
}

/* OK: grønn sirkel med hake (uten font) */
.status-dot.ok{ border-color:#2e7d32; background:#2e7d32; position:relative; }

.status-dot.ok:after{
  content:"";
  position:absolute;
  left:6px;
  top:3px;
  width:5px;
  height:9px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
}

/* Avvik: zmdi-alert-polygon */
.status-avvik{
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: top;
  margin-top: -3px;
  color: #c62828;
  font-size: 25px;
  line-height: 25px;
}

/* Chevron l峴 til høyre */
.chev{
  position: absolute;
  right: 8px;
  top: 14px;
  font-size: 22px;
  color: #9aa0a6;
  transition: transform 120ms ease;
}

.check-item.active .chev{
  transform: rotate(90deg);
}

/* Avvik-count */
.avvik-count{
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
  vertical-align: baseline;
  line-height: 1;
  position: relative;
  top: -1px;
}

/* Knapper INNI punktet  vises kun n岠aktiv */
.item-actions-inline{
  display: none;
  margin-top: 8px;
}
.check-item.active .item-actions-inline{
  display: block;
}
.item-actions-inline .btn{
  padding: 4px 10px;
  border-radius: 4px;
}

/* Avvik-liste */
.deviation-list{
  margin-top: 6px;
  padding-left: 37px;
  padding-right: 8px;
}

.deviation-row{
  background: #fff;
  border-left: 3px solid #e0e0e0;
  border-radius: 4px;
  padding: 6px 10px;
  margin: 4px 0;
}

.dev-title{
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.type-dot{
  display:inline-block;
  width:9px;
  height:9px;
  border-radius:50%;
  margin-right:4px;
  position:relative;
  top:-1px;
}

.type-dot.avvik{ background:#d9534f; }
.type-dot.tiltak{ background:#f0ad4e; }

.dev-action{
  margin-top: 2px;
  line-height: 1.25;
  color: #444;
}

.dev-meta{
  margin-top: 2px;
  line-height: 1.25;
  color: #777;
  font-size: 12px;
}

/* Rediger-ikon kun p堡ktivt punkt */
.dev-edit{ display: none; }
.check-item.active .dev-edit{ display: inline-block; }

.dev-edit{
  cursor: pointer;
  color: #666;
}
.dev-edit:hover{ color: #000; }
.dev-edit i{
  font-size: 18px;
  padding: 6px; /* touch */
}

