﻿

/*---------GENERAL STYLING----------*/
:root {
    --yellow: #FFD71F;
    --yellow-rgb: 255, 215, 31;
    --green: #479B3C;
    --orange: #DB7703;
    --darkorange: #d65b1a;
    --red: #B50000;
    --white: #ffffff;
    --black: #22252A;
    --lightblack: #2D3035;
    --darkgrey: #373A3E;
    --grey: #575757;
    --lightgrey: #A5A5A5;
    --blue: #3d9fcf;
}

body {
    position: relative;
    font-family: "Muli", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #f1f1f1;
    height: fit-content;
    overflow-y: hidden;
}

.block {
    padding: 20px;
    background: #2d3035;
    margin-bottom: 50px;
    margin-top: 60px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: #A5A5A5;
    outline: 1px solid #A5A5A5;
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-track {
    background: #2D3035;
}

@-moz-document url-prefix() {
    .scroller {
        scrollbar-width: thin;
        scrollbar-color: #ffd71f;
    }
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}


    a:focus, a:hover {
        color: var(--white);
        text-decoration: none;
    }

p {
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 0rem;
    font-family: Teko;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
    text-transform: uppercase;
}

h5 {
    margin-bottom: 0rem;
    font-family: Teko;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
    text-transform: uppercase;
}

h6 {
    margin-bottom: 0rem;
    font-family: Teko;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    text-transform: uppercase;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Muli", sans-serif;
    color: inherit;
    text-transform: unset;
}

.h1-teko,
.h2-teko,
.h3-teko,
.h4-teko,
.h5-teko,
.h6-teko {
    font-family: Teko;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
.h1 {
    font-size: clamp(2rem, 1.8571rem + 0.7143vw, 3rem);
}

h2,
.h2 {
    font-size: clamp(1.8rem, 1.6571rem + 0.7143vw, 2.8rem);
}

h3,
.h3 {
    font-size: clamp(1.6rem, 1.4571rem + 0.7143vw, 2.6rem);
}

h4,
.h4 {
    font-size: clamp(1.4rem, 1.2571rem + 0.7143vw, 2rem);
}

h5,
.h5 {
    font-size: clamp(1.2rem, 1.0571rem + 0.7143vw, 1.5rem);
}

h6,
.h6 {
    font-size: clamp(1rem, 0.8571rem + 0.7143vw, 1.3rem);
}

.font-500 {
    font-weight: 500;
}

.teko {
    font-family: Teko;
}

/*@media(max-width: 320px) {
    h1,
    .h1 {
        font-size: 2rem;
    }

.isDisabled
{
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.2;

}

    h4,
    .h4 {
        font-size: 1rem;
    }

    h5,
    .h5 {
        font-size: 0.75rem;
    }

    h6,
    .h6 {
        font-size: .70rem;
    }
}*/

hr {
    border-top: 1px solid #5C5C5C;
}

.border-radius-10 {
    border-radius: 10px
}

.border-radius-5 {
    border-radius: 5px
}


.text-break {
    word-wrap: break-word;
    word-break: break-word;
}
/*---------------COLORS---------------*/
.yellow {
    color: var(--yellow);
}

.green {
    color: var(--green);
}

.orange {
    color: var(--orange);
}

.red {
    color: var(--red);
}

.white {
    color: var(--white)
}

.black {
    color: var(--black);
}

.lightblack {
    color: var(--lightblack);
}

.darkgrey {
    color: var(--darkgrey);
}

.grey {
    color: var(--grey);
}

.lightgrey {
    color: var(--lightgrey);
}
/*---------------COLORS END---------------*/
/*---------------BACKGROUND COLORS---------------*/
.bg-yellow {
    background-color: var(--yellow);
}

.bg-green {
    background-color: var(--green);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-red {
    background-color: var(--red);
}

.bg-lightgrey {
    background-color: var(--lightgrey);
}

.bg-grey {
    background-color: var(--grey);
}

.bg-darkgrey {
    background-color: var(--darkgrey);
}

.bg-lightblack {
    background-color: var(--lightblack);
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}
/*---------------BACKGROUND COLORS END ---------------*/
/*---------------BUTTONS--------------*/


.btn {
    text-transform: uppercase;
    padding: 1em 1.25em;
    min-width: 100px;
    border-radius: 3px;
    font-family: Muli, sans-serif;
    font-weight: bold;
    font-size: 0.813rem;
    cursor: pointer;
    line-height: inherit;
}

    .btn.disabled, .btn:disabled, .btn.disabled:hover, .btn:disabled:hover {
        opacity: .3;
        cursor: not-allowed;
        pointer-events: all !important;
    }

    .btn.none, a.none {
        display: none;
    }

    .btn:focus, .btn.focus {
        outline: 0;
        box-shadow: none;
    }

a.btn-yellow-outline.btn:focus, a.btn-yellow-outline.btn.focus {
    color: var(--yellow)
}

a.btn-yellow.btn:focus, a.btn-yellow.btn.focus {
    color: var(--black)
}

.btn-yellow {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    color: var(--black)
}

    .btn-yellow:hover {
        background-color: var(--yellow);
        border: 1px solid var(--yellow);
        opacity: 0.8;
        color: var(--black);
    }

.btn-yellow-outline {
    background-color: transparent;
    border: 1px solid var(--yellow);
    color: var(--yellow)
}

    .btn-yellow-outline:hover {
        border: 1px solid var(--yellow);
        opacity: 0.7;
        color: var(--yellow)
    }

.btn-yellow-outline-table {
    padding: 2px 0 2px 0;
    background-color: transparent;
    border: 1px solid var(--yellow);
    color: var(--yellow)
}

    .btn-yellow-outline-table:hover {
        padding: 2px 0 2px 0;
        border: 1px solid var(--yellow);
        opacity: 0.7;
        color: var(--yellow)
    }
.btn-yellow-table {
    padding: 2px 0 2px 0;
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    color: var(--black);
}

    .btn-yellow-table:hover {
        padding: 2px 0 2px 0;
        background-color: var(--yellow);
        border: 1px solid var(--yellow);
        opacity: 0.8;
        color: var(--black);
    }
.btn-grey {
    background-color: var(--lightgrey);
    border: 1px solid var(--lightgrey);
}

    .btn-grey:hover {
        background-color: var(--lightgrey);
        border: 1px solid var(--lightgrey);
        opacity: 0.8;
    }

.btn-grey-outline {
    background-color: transparent;
    border: 1px solid var(--lightgrey);
    color: var(--lightgrey)
}

    .btn-grey-outline:hover {
        border: 1px solid var(--lightgrey);
        opacity: 0.7;
    }


.btn-red {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

    .btn-red:hover {
        color: var(--white);
        border-color: var(--red);
        opacity: 0.8;
    }

.btn-red-outline {
    background-color: transparent;
    border: 1px solid var(--red);
    color: var(--white)
}

    .btn-red-outline:hover {
        border: 1px solid var(--red);
        opacity: 0.7;
    }

.btn-toolbar .btn:first-child {
    margin-right: 15px
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.813rem;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 0.2rem;
    text-transform: uppercase;
}
/*ELLIES KNAPPAR END*/
#content-container {
    margin-bottom: 50px;
}

.btn-darkorange {
    background-color: var(--darkorange);
    border: 1px solid var(--darkorange);
    color: var(--white)
}

    .btn-darkorange:hover {
        background-color: var(--darkorange);
        border: 1px solid var(--darkorange);
        opacity: 0.8;
        color: var(--white)
    }
/*KNAPPAR END*/


input[type='submit'] {
    cursor: pointer;
    font-family: inherit;
}

input[type=radio] {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-clip: content-box;
    border: 2px solid var(--black);
    background-color: var(--black);
}

input.round-input[type="radio"]:checked {
    background-color: var(--yellow);
    padding: 2px;
    border: 2px solid var(--yellow);
}
input[type=radio] {
    accent-color: var(--yellow);
    width: 20px;
}
input[type=radio]:hover {
    cursor: pointer;
}
/*---------------BUTTONS END--------------*/
/*--------PAGE----------*/
#page-content-wrapper {
    width: 100%;
    padding: 1.75rem;
    overflow-y: auto;
    height: 90vh;
}

#wrapper {
    padding-top: 125px;
    padding-left: 0px;
    min-height: 100vh;
    background-color: #22252a;
}

.card {
    background-color: var(--black)
}

@media (max-width: 564px) {
    #wrapper {
        padding-top: 126px;
    }

    div.sidebar-header {
        padding: 22px;
    }
    /*    .sidebar-wrapper {
        height: calc(100vh - 202px);
       
    }*/
}

@media (min-width: 1200px) {

    #page-content-wrapper {
        position: relative;
    }

    #wrapper.active {
        padding-left: 0px;
    }

    #wrapper {
        padding-top: 125px;
        padding-left: 330px;
        min-height: 100vh;
        background-color: #22252a;
        transition: all 0.3s;
    }
}

@media (min-width: 1200px) {

    #sidebar-wrapper.shrinked {
        width: 70px !important;
        transition: all 0.3s;
    }

        #sidebar-wrapper.shrinked nav#sidebar {
            width: 70px !important;
        }

            #sidebar-wrapper.shrinked nav#sidebar li a span {
                display: none;
            }

            #sidebar-wrapper.shrinked nav#sidebar li a i {
                margin-right: 0;
                padding-right: 0;
                text-align: center;
            }

            #sidebar-wrapper.shrinked nav#sidebar li a {
                display: none;
            }

                #sidebar-wrapper.shrinked nav#sidebar li a.nav-link {
                    display: flex !important;
                }

        #sidebar-wrapper.shrinked .submenu {
            display: none !important;
        }

        #sidebar-wrapper.shrinked .sidebar-header {
            width: 70px !important;
            padding: 50px 0;
            display: flex !important;
            justify-content: center;
            align-items: center;
        }

            #sidebar-wrapper.shrinked .sidebar-header .title {
                display: none;
            }

            #sidebar-wrapper.shrinked .sidebar-header .avatar {
                min-width: 50px;
                max-width: 50px;
                min-height: 50px;
                max-height: 50px;
                margin-right: 0;
                padding: 2px;
                border: 2px solid #282b2f;
            }

        #sidebar-wrapper.shrinked nav#sidebar li::before {
            width: 5px;
        }

    #wrapper.active {
        padding-left: 70px !important;
    }
}

/*--------PAGE END----------*/
/*-------TABLES---------*/

.table {
    margin-bottom: 0;
}

thead tr, tbody tr td {
    border: 0.5px solid #444951;
}

.table thead th {
    border: 0.5px solid #444951;
}

.table thead tr {
    background-color: #373A3E;
}

tbody tr.odd, .table-striped tbody tr:nth-of-type(odd), .table-hover tbody tr:hover, .table-hover tbody tr.odd:hover {
    background-color: #2D3035;
}

tbody tr.even, .table-striped tbody tr:nth-of-type(even), .table-hover tbody tr:hover, .table-hover tbody tr.even:hover {
    background-color: #373A3E;
}

.table th, .table td {
    border-top: 0.5px solid #444951;
}

.table-borderless,
.table-borderless th,
.table-borderless td,
.table-borderless tr,
.table-borderless tbody + tbody {
    border: none !important;
    border-top-style: none !important;
    border-left-style: none !important;
    border-right-style: none !important;
    border-bottom-style: none !important;
}



td.child {
    padding: 10px 0;
}


tr.selected {
    color: #ffd71f;
    background-color: #22252A;
}

ul.dtr-details {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 8px;
    flex-wrap: wrap;
}

li.dt-details {
    list-style: none;
    display: grid;
}

span.dtr-title {
    font-weight: bold;
}
.bg-green.list, .bg-red.list {
    padding: .2rem;
}
/*.pagination, .dt-buttons, .dataTables_length {
    float: right;
    padding: 16px;
}*/
.dataTables_info {
    display: flex;
    justify-content: flex-start;
    padding: 16px;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0em;
    display: inline-block;
    width: 100%;
}

table.dataTable.table-striped > tbody > tr.odd.selected > * {
    box-shadow: none;
    color: var(--yellow)
}

table.dataTable > tbody > tr.selected > * {
    box-shadow: none;
    color: var(--yellow);
}

table.dataTable.table-hover > tbody > tr.selected:hover > * {
    box-shadow: none;
}

table.dataTable > tbody > tr.selected a {
    color: var(--yellow);
}

table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > td.sorting:before, table.dataTable thead > tr > td.sorting:after, table.dataTable thead > tr > td.sorting_asc:before, table.dataTable thead > tr > td.sorting_asc:after, table.dataTable thead > tr > td.sorting_desc:before, table.dataTable thead > tr > td.sorting_desc:after, table.dataTable thead > tr > td.sorting_asc_disabled:before, table.dataTable thead > tr > td.sorting_asc_disabled:after, table.dataTable thead > tr > td.sorting_desc_disabled:before, table.dataTable thead > tr > td.sorting_desc_disabled:after {
    line-height: 12px;
}

.table-bordered, .table-bordered td {
    border: 0.5px solid #444951;
}

#dropdown .dropdown-menu {
    left: -45px !important;
}

/*#wps-grid_filter {
    display: none;
}*/

@media (max-width: 944px) {
    .table-buttons button:nth-child(1) {
        margin-bottom: 16px;
    }
}

@media (max-width: 789px) and (min-width: 767px) {
    .table-buttons1 button:nth-child(1) {
        margin-bottom: 16px;
    }
}

@media (max-width: 757px) {
    .table-buttons1 button:nth-child(1) {
        margin-bottom: 16px;
    }
}

.dt-buttons div.btn-group button {
    border: 1px solid #444951;
    background: transparent;
    border-radius: 0.25rem;
    color: #979a9f;
}

.dataTables_length label {
    width: fit-content;
    display: flex;
    align-items: center;
    float: right;
    padding-right: 16px;
}

    .dataTables_length label select {
        padding: 7px;
        text-align: center;
        margin: 0 7px;
    }

label {
    display: block;
}

.dataTables_filter label input.form-control, input.form-control {
    border: 1px solid #444951;
    background: transparent;
    border-radius: 0.25rem;
    color: #f1f1f1;
    height: calc(2.25rem + 2px);
    /*    text-transform: uppercase;*/
    /* font-size: 13px;*/
    font-weight: 600;
}

.input-group .form-control {
    z-index: unset;
}

table.dataTable tr > td.select-checkbox > i.checked {
    display: none;
}

table.dataTable tr.selected > td.select-checkbox > i.checked {
    display: inline-block;
}

table.dataTable tr.selected > td.select-checkbox > i.unchecked {
    display: none;
}

table.dataTable tr > td.select-checkbox > i.unchecked {
    display: inline-block;
}


table.dataTable tr > td.dtr-control > i.expanded {
    display: none;
}

table.dataTable tr.dt-hasChild > td.dtr-control > i.expanded {
    display: inline-block;
}

table.dataTable tr.dt-hasChild > td.dtr-control > i.unexpanded {
    display: none;
}

table.dataTable tr > td.dtr-control > i.unexpanded {
    display: inline-block;
}


.table-responsive {
    overflow-x: unset;
}

i.expanded, i.unexpanded {
    background-color: var(--yellow);
    padding: 8px 7px 7px 7px;
    text-align: center;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    color: black;
    cursor: pointer;
}

i.fa-chevron-down.unexpanded, i.fa-chevron-up.unexpanded {
    background-color: var(--yellow);
    padding: 3px 1px;
    text-align: center;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    color: black;
    cursor: pointer;
}

    i.fa-chevron-down.unexpanded.global, i.fa-chevron-up.unexpanded.global {
        background-color: var(--darkorange);
        padding: 3px 1px;
        text-align: center;
        border-radius: 50%;
        height: 22px;
        width: 22px;
        color: black;
        cursor: pointer;
    }

th.dt-details.sorting::before {
    line-height: 16px;
}

.pagination {
    display: flex;
    justify-content: flex-end;
    /*float: right;*/
    padding: 16px;
}

.select-info {
    margin-left: 30px;
    color: var(--yellow)
}

a.moreInfo.dt-details {
    font-size: 14px;
    color: var(--yellow);
    display: block;
}

ul.dtr-details li {
    list-style: none;
}

@media (max-width: 991px) {
    section .tables {
        padding: 0;
    }
}

@media (max-width: 425px) {

    ul.dtr-details {
        padding: 16px;
        display: block;
    }

    .pagination {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .dataTables_info {
        display: flex;
        justify-content: center;
        padding: 16px;
    }


    .dt-buttons, .dataTables_length {
        float: left;
        padding: 0;
    }
}
/*-------TABLES END---------*/

/*-------LOGIN---------*/

.login-page, .forgot-password {
    position: relative;
    background: url(../images/bg_welder_optimized-min.png);
}

    .login-page::before, .forgot-password::before {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        z-index: -1;
        background-size: cover;
        position: absolute;
        top: 0;
        right: 0;
    }

    .login-page .container, .forgot-password .container {
        min-height: 100vh;
        z-index: 1;
        padding: 20px;
    }

    .login-page .form-holder, .forgot-password .form-holder {
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 50px;
    }

        .login-page .form-holder .info,
        .login-page .form-holder .form,
        .forgot-password .form-holder .info,
        .forgot-password .form-holder .form {
            min-height: 70vh;
            padding: 40px;
            height: 100%;
        }

        .login-page .form-holder div[class*='col-'],
        .forgot-password .form-holder div[class*='col-'] {
            padding: 0;
        }

        .login-page .form-holder .info,
        .forgot-password .form-holder .info {
            background: rgba(219, 101, 116, 0.95);
            color: #fff;
        }

            .login-page .form-holder .info h1 {
                font-size: 2.5em;
                font-weight: 700;
            }

            .login-page .form-holder .info p,
            .forgot-password .form-holder .info p {
                font-weight: 300;
            }

        .login-page .form-holder .form .form-group,
        .forgot-password .form-holder .form .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .login-page .form-holder .form .content,
        .forgot-password .form-holder .form .content {
            width: 100%;
        }

        .login-page .form-holder .form form,
        .forgot-password .form-holder .form form {
            width: 100%;
            max-width: 400px;
        }

        .login-page .form-holder .form #login,
        .login-page .form-holder .form #register,
        .forgot-password .form-holder .form #login,
        .forgot-password .form-holder .form #register {
            margin-bottom: 20px;
            cursor: pointer;
            color: #000000;
        }

        .login-page .form-holder .form a.forgot-pass,
        .login-page .form-holder .form a.signup,
        .forgot-password .form-holder .form a.forgot-pass,
        .forgot-password .form-holder .form a.signup {
            font-size: 0.9rem;
            color: #ffd71f;
        }

        .login-page .form-holder .form small,
        .forgot-password .form-holder .form small {
            color: #aaa;
        }

        .login-page .form-holder .form .terms-conditions label,
        .forgot-password .form-holder .form .terms-conditions label {
            cursor: pointer;
            color: #aaa;
            font-size: 0.9rem;
        }

    .login-page .copyrights {
        width: 100%;
        z-index: 9999;
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
    }

    .login-page .form-holder .form,
    .forgot-password .form-holder .form {
        /*background: #2d3035;*/
        background: transparent;
    }

        .login-page .form-holder .form form,
        .forgot-password .form-holder .form form {
            margin-left: auto;
            margin-right: auto;
        }

.password-eye {
    position: absolute;
    right: 11px;
    top: 12px;
    font-size: 18px;
    cursor: pointer;
}


#login, #resetPassword {
    width: 100%;
}

@media (max-width: 991px) {
    .login-page .form-holder .info,
    .login-page .form-holder .form {
        min-height: auto;
        padding: 40px;
        height: 100%;
    }
}
/*-------LOGIN END---------*/
/*----------NAVBAR---------*/

/*-------SIDEBAR---------*/

.sidebar-wrapper {
    height: calc(100vh - 275px);
  /*  overflow-y: scroll;*/
    background-color: #2D3035;
}

#sidebar-wrapper {
    z-index: 9;
    position: fixed;
    left: 330px;
    /*height: 100% !important;*/
    margin-left: -330px;
    overflow-y: auto;
}


/*.sidenav {
    padding-left: 330px;
    height: 100vh;
    display: flex;
}*/

nav#sidebar {
    width: 100%;
    background-color: #2D3035;
    color: #f1f1f1;
    border-right: 1px solid #34373d;
}

    nav#sidebar li a i {
        width: 45px;
    }

    nav#sidebar a {
        color: inherit;
        text-decoration: none;
        position: relative;
    }

#navContainer > li.nav-item {
    text-transform: uppercase;
    font-family: Teko;
    font-size: 1.25rem;
    border-bottom: 1px solid #444951;
    display: flex;
    justify-content: space-between;
}

nav#sidebar a[data-toggle="collapse"]::after {
    content: '\f078';
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 20px;
    color: white;
    background-color: #212529;
    font-size: 12px;
    font-size: 12px;
    padding: 4px 0 0 6px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
}

nav#sidebar a[data-toggle="collapse"]:hover::after {
    background-color: rgba(255, 215, 31, 0.15);
    color: #ffd71f;
}

nav#sidebar a[aria-expanded="true"] {
    background: #34373d;
    color: #ffd71f;
}

    nav#sidebar a[aria-expanded="true"]::after {
        content: '\f077';
        color: #212529;
        background-color: #ffd71f;
    }




.nav-button-container {
    padding: 6px 16px;
    background-color: #2D3035;
    border-bottom: 1px solid #444951;
    text-align: center;
}

    .nav-button-container .nav-button {
        text-transform: none;
        font-size: 1rem;
        letter-spacing: 0;
        background: transparent;
        border: 1px solid #ffd71f;
        color: #ffd71f;
        border-radius: 10px;
        width: 180px !important;
        height: 35px;
        padding: initial;
    }

nav#sidebar a i {
    font-size: 1.2em;
    margin-right: 10px;
    -webkit-transition: none;
    transition: none;
}

div.sidebar-header {
    padding: 40px 20px;
    background-color: #ffd71f;
    position: fixed;
    width: 100%;
    bottom: 0px;
}

    div.sidebar-header h5 {
        color: black;
    }

nav#sidebar a[data-toggle="collapse"]::after {
    content: '\f078';
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 20px;
    color: white;
    background-color: #212529;
    font-size: 12px;
    font-size: 12px;
    padding: 4px 0 0 6px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
}

nav#sidebar a[data-toggle="collapse"]:hover::after {
    background-color: rgba(255, 215, 31, 0.15);
    color: #ffd71f;
}

nav#sidebar a[aria-expanded="true"] {
    background: transparent;
    color: #ffd71f;
}

    nav#sidebar a[aria-expanded="true"]::after {
        content: '\f077';
        color: #212529;
        background-color: #ffd71f;
    }




nav#sidebar a i {
    font-size: 1.2em;
    margin-right: 10px;
    -webkit-transition: none;
    transition: none;
}

div.sidebar-header {
    padding: 40px 20px;
    background-color: #ffd71f;
    position: fixed;
    width: 100%;
    bottom: 0px;
}

    div.sidebar-header h5 {
        color: black;
    }

    div.sidebar-header .avatar {
        min-width: 70px;
        max-width: 70px;
        min-height: 70px;
        max-height: 70px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 10px;
        padding: 4px;
        border: 3px solid #282b2f;
    }


nav#sidebar ul {
    max-height: none;
}

nav#sidebar li {
    position: relative;
}


    nav#sidebar li a {
        padding: 18px 20px;
        display: block;
        font-weight: 400;
        cursor: pointer;
    }



        nav#sidebar li a.nav-link {
            /*  border-bottom: 1px solid #444951;*/
            cursor: pointer;
        }

        nav#sidebar li a:hover {
            color: #ffd71f;
        }

        nav#sidebar li a i {
            margin-right: 20px;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            padding-right: 20px;
        }

    nav#sidebar li li a {
        padding: 14px;
        padding-left: 60px;
        background: #22252a;
    }

        nav#sidebar li li a:hover {
            background: #292c32;
        }

            nav#sidebar li li a:hover i {
                color: #ffd71f;
            }

    nav#sidebar li::before {
        content: '';
        width: 8px;
        height: 100%;
        background: none;
        display: block;
        position: absolute;
        top: 0;
        padding-top: 0px;
        left: 0;
        z-index: 99;
    }

nav#sidebar #navContainer li.nav-item:hover::before {
    background: #ffd71f;
}

nav#sidebar #navContainer .submenu li.nav-item:hover::before {
    background: none;
}

nav#sidebar li.active::before {
    background: #ffd71f;
}


nav#sidebar li.active > a {
    background: #34373d;
    color: #ffd71f;
}

nav#sidebar li.active i {
    color: #ffd71f;
}

nav#sidebar li li.active > a {
    background: #292c32;
}

.submenu {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

    .submenu ul {
        background: #34373d;
        margin-bottom: 0;
    }

    .submenu.collapse.show {
        display: contents;
    }


    .submenu ul li a:hover {
        background: #2D3035;
        border-radius: 10px;
    }

    .submenu ul li {
        border-bottom: 1px solid #2d3035;
        padding: 0.20rem;
    }

        .submenu ul li a {
            font-family: "Muli", sans-serif;
            font-weight: lighter;
        }

    .submenu .nav-item.activeChild a {
        background-color: rgba(255, 215, 31, 0.15);
        border-radius: 10px;
        padding: 0.20rem;
    }

    .submenu .nav-item.activeChild {
        color: #ffd71f;
    }

.title ul {
    padding: 0;
    margin-bottom: 0;
}

.title {
    text-transform: uppercase;
    /*word-break: break-word;*/
    hyphens: auto;
}

    .title ul li {
        font-size: 0.75rem;
    }

#sidebar-wrapper {
    width: 100%;
    transition: all 0.3s;
}

/*.collapse {
    display: none;
}*/

/*    .collapse.show {
        display: block;
    }*/


.logout-mobile {
    display: none;
}

@media (min-width: 1200px) {

    #sidebar-wrapper {
        width: 330px;
        display: block;
    }

    nav#sidebar {
        width: 325px;
    }

    div.sidebar-header {
        width: 330px;
    }
}

@media (max-width: 1200px) {

    .logout-mobile {
        display: block;
    }

    .list-inline-item.logout-mobile {
        display: none;
    }
}

@media (max-width: 320px) {
    nav#sidebar li a {
        padding: 18px 10px 18px 10px;
        display: block;
        font-weight: 400;
        cursor: pointer;
    }

        nav#sidebar li a i {
            margin-right: 0px;
            padding-right: 0px;
        }
}



/*-------SIDEBAR END---------*/
/*---------NAVBAR----------*/
nav.navbar {
    background: #2d3035;
    color: #8a8d93;
    padding-top: 20px;
    padding-bottom: 21px;
    z-index: 10;
    -webkit-box-shadow: 0px 8px 5px -3px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 8px 5px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 5px -3px rgba(0,0,0,0.15);
    min-height: 126px;
}

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.55rem;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    margin-right: 12px;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: rgba(0, 0, 0, 0.9);
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0, 0, 0, 0.3);
    }

    .navbar-light .navbar-nav .show > .nav-link,
    .navbar-light .navbar-nav .active > .nav-link,
    .navbar-light .navbar-nav .nav-link.show,
    .navbar-light .navbar-nav .nav-link.active {
        color: rgba(0, 0, 0, 0.9);
    }

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255, 255, 255, 0.5)' class='bi bi-x-lg' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

    .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
        color: #fff;
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.75);
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255, 255, 255, 0.25);
    }

    .navbar-dark .navbar-nav .show > .nav-link,
    .navbar-dark .navbar-nav .active > .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #fff;
    }

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.list-inline-item.logout a#logout, .list-inline-item.logout {
    display: none;
}

.list-inline-item.logout-mobile {
    display: inline-block;
}

.languageName {
    display: none;
}

.dropdown-menu {
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1);
    color: #8a8d93;
    font-size: 1rem;
    min-width: 100px;
    background: #2d3035;
    border-radius: 0;
    padding: 0;
    /*margin-top: 21px;*/
    border: 1px solid #393c43;
}

.dropdown-menu a:not([href]):not([tabindex]) {
    padding: 10px 15px;
    font-size: 0.9rem;
    text-transform: none;
    color: var(--white);
}

    .dropdown-menu a:not([href]):not([tabindex]):hover {
        background: var(--yellow);
        color: var(--black);
        width: auto;
    }

.dropdown-toggle {
    background: none;
    outline: none;
    border-radius: 0;
}

    .dropdown-toggle span.caret {
        color: #555;
    }

    .dropdown-toggle::after {
        border: none !important;
        content: '\f107';
        vertical-align: baseline;
        font-family: 'FontAwesome';
        margin-left: .25rem;
        margin-right: 0.25rem;
        color: var(--lightgrey)
    }

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: normal;
    color: #fff;
    text-align: inherit;
    white-space: nowrap;
    background: none;
    border: 0;
}

    .dropdown-item:hover {
        background: var(--yellow);
        color: var(--black);
    }
/*  .dropdown-menu a:hover {
        color: var(--yellow);
    }*/
@media (min-width: 1199px) {
    .list-inline-item.logout a#logout {
        display: inline-block;
    }

    .languageName {
        display: inline-block;
    }

    nav.navbar .dropdown-menu {
        min-width: 300px;
        margin-top: 21px;
        left: auto;
        right: 0;
    }

    #select-language li div {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: absolute;
        z-index: 2;
        top: 53px;
    }
}

@media (min-width: 588px) {
    .list-inline-item.logout {
        display: inline-block;
    }

    .list-inline-item.logout-mobile {
        display: none;
    }
}

nav.navbar .sidebar-toggle {
    width: 36px;
    height: 36px;
    line-height: 29px;
    text-align: center;
    border-radius: 50%;
    background: #282b2f;
    color: var(--white);
    font-size: 1.1rem;
    border: 2px solid #3d4148;
    outline: none;
    cursor: pointer;
}

nav.navbar a {
    color: var(--white);
}

nav.navbar .brand-text {
    display: none;
    font-weight: 700;
}

    nav.navbar .brand-text.visible {
        display: block;
    }

nav.navbar a.nav-link {
    padding: .5rem .3rem;
    position: relative;
    display: inline;
}

    nav.navbar a.nav-link .badge {
        width: 20px;
        height: 20px;
        line-height: 20px;
        color: #fff;
        text-align: center;
        border-radius: 50%;
        padding: 0;
        font-size: 0.7rem;
        position: absolute;
        top: 0;
        right: -10px;
    }


nav.navbar .messages-toggle,
nav.navbar .tasks-toggle {
    margin-right: 15px;
}

nav.navbar .menu-large {
    position: static !important;
}

nav.navbar .search-panel {
    display: none;
}

nav.navbar .search-inner {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(45, 48, 53, 0.95);
    z-index: 9;
}

    nav.navbar .search-inner .close-btn {
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 1.1em;
        font-weight: 400;
        cursor: pointer;
    }

    nav.navbar .search-inner form {
        width: 100%;
        max-width: 800px;
        padding: 20px;
    }

    nav.navbar .search-inner .form-group {
        position: relative;
    }

    nav.navbar .search-inner .submit {
        background: none;
        font-size: 2.3rem;
        position: absolute;
        right: 0;
        bottom: 0;
        color: #8a8d93;
        border: none;
        font-weight: 700 !important;
    }

    nav.navbar .search-inner input {
        background: none;
        width: 100%;
        font-size: 2rem;
        border: none;
        border-bottom: 1px solid #444951;
        color: #8a8d93;
    }

nav.navbar .dropdown-menu {
    min-width: 300px;
    margin-top: 21px;
    left: 5px;
    right: 0px;
}


#select-language li div {
    margin-top: 23px;
}

@media (max-width: 568px) {
    #select-language li div {
        margin-top: 63px;
        left: -29px;
    }
}

#select-language li div {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    z-index: 2;
    top: 33px;
}


nav.navbar .messages a {
    padding: 15px !important;
}

nav.navbar .dropdown-item {
    padding: 1rem !important;
    border-bottom: 1px solid #393c43;
}

    nav.navbar .dropdown-item:hover {
        background: var(--yellow);
        color: var(--black);
    }

    nav.navbar .dropdown-item:last-of-type {
        border-bottom: none;
    }

    nav.navbar .dropdown-item.message {
        color: #8a8d93;
        text-decoration: none;
    }

        nav.navbar .dropdown-item.message li:last-of-type a {
            border-bottom: none;
        }

        nav.navbar .dropdown-item.message .profile {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            position: relative;
        }

            nav.navbar .dropdown-item.message .profile img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
            }

            nav.navbar .dropdown-item.message .profile .status {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                border: 2px solid #fff;
                position: absolute;
                top: 2px;
                right: 2px;
            }

                nav.navbar .dropdown-item.message .profile .status.online {
                    background: #28a745;
                }

                nav.navbar .dropdown-item.message .profile .status.away {
                    background: #ffc107;
                }

                nav.navbar .dropdown-item.message .profile .status.busy {
                    background: #dc3545;
                }

                nav.navbar .dropdown-item.message .profile .status.offline {
                    background: #999;
                }

        nav.navbar .dropdown-item.message .content strong {
            font-size: 1rem;
        }

        nav.navbar .dropdown-item.message .content span {
            font-weight: 300;
            font-size: 0.85rem;
        }

        nav.navbar .dropdown-item.message .content .date {
            color: #70737a;
        }

nav.navbar .tasks-list strong {
    font-size: 1rem;
}

nav.navbar .tasks-list span {
    font-size: 0.95rem;
}

nav.navbar .tasks-list .progress {
    height: 2px;
    margin-top: 10px;
    background: #444951;
}

nav.navbar a.language span {
    margin-left: .2rem;
    vertical-align: middle;
}

@media (max-width: 1199px) {

    nav.navbar .sidebar-toggle {
        display: none;
    }
}

@media (max-width: 425px) {

    #select-language li div {
        top: 32px;
    }
}

@media (max-width: 375px) {
    .navbar-toggler {
        margin-right: 0px;
    }
}

/*----------NAVBAR END---------*/



/*-----SWITCH-------*/
/* The switch - the box around the slider */
.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 1.4em;
    overflow: hidden;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E51212;
    transition: .4s;
    border-radius: 30px;
}

    .slider:before {
        content: '\2b';
        font-family: 'FontAwesome';
        color: red;
        position: absolute;
        height: 1.4em;
        width: 1.4em;
        border-radius: 20px;
        left: 0em;
        text-align: center;
        line-height: 1.4;
        bottom: 0em;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #479B3C;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(2.1em);
    content: '\f00d';
    color: green;
}

@-webkit-keyframes autofill {
    to {
        color: #f1f1f1;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px var(--darkgrey) inset !important;
        -webkit-text-fill-color: var(--white) !important;
    }

.switch .text {
    position: absolute;
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
    transition: .4s;
}

    .switch .text.ja {
        left: .9rem;
        color: white;
        transform: translateX(-2.5rem) translateY(-50%);
    }

    .switch .text.nej {
        color: white;
        right: .5rem;
    }

input:checked ~ .text.nej {
    transform: translateX(3rem) translateY(-50%);
}

input:checked ~ .text.ja {
    transform: translateX(0) translateY(-50%);
}



/* ----------MODAL----------- */
.modal {
    z-index: 9999;
    display: flex;
}

.modal-body {
    /*max-height: 900px;*/
    /*overflow-y: scroll;*/
    /*padding-bottom: 50px;*/
}

.modal-dialog {
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
    /*    margin-top: 5%;*/
}

.modal .modal-content {
    border-radius: 0;
    background: #2d3035;
}

.modal .modal-header,
.modal .modal-footer {
    border-color: #3d4148;
}

div.modal-header {
    /*display: flex;*/
    /*    justify-content: flex-end;*/
    margin: 0 16px 0;
    padding: 16px 0;
    border-bottom: 2px solid #e9ecef;
}


.modal .modal-title {
    font-size: 1.25rem;
}

.modal.fade.show {
    backdrop-filter: blur(5px);
}

.wps-list-detail {
    padding: 16px;
}

    .wps-list-detail .wps-row {
        padding: 30px 0;
        border-bottom: 2px solid #3d4148;
    }


.list-group-item {
    background-color: transparent;
    border-color: #34373d;
}

.block .title {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .block {
        padding: 0px;
    }

    .modal-body {
        padding-bottom: 50px;
        padding-top: 25px;
    }

    .modal-dialog {
        margin-inline: unset;
    }
}

@media (max-width: 576px) {
    .modal-dialog {
        max-width: 800px;
        /*margin: 30px auto;*/
    }
}
/*--------KOMPETENSMATRIS-----------*/
.nav-tabs {
    border-bottom: 0px;
}

    .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
        color: var(--yellow)
    }

    .nav-tabs .nav-item {
        font-weight: 700;
        margin-right: 5px;
        clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 100%, 85% 0);
    }

.nav-link {
    padding: 0.5rem 2rem 0.5rem 1rem;
}

.nav-tabs .nav-link {
    background-color: var(--darkgrey);
    border-radius: 10px 0 0 0;
}

    .nav-tabs .nav-link.active {
        background-color: var(--lightblack)
    }

.nav-tabs .nav-link {
    color: var(--white)
}

    .nav-tabs .nav-link:hover {
        color: var(--yellow)
    }

    .nav-tabs .nav-link.active:hover {
        color: var(--yellow);
    }

@media (max-width: 821px) {
    .sidebar-wrapper {
        height: calc(100vh - 273px);
    }

    .tab-content {
        margin-top: 6px;
    }

    .nav-tabs {
        display: block;
    }

        .nav-tabs .nav-item {
            margin-right: 0;
            clip-path: none;
            height: 44px;
        }

        .nav-tabs .nav-link {
            background-color: var(--darkgrey);
            border-radius: 10px 10px 0 0;
            border: 1px solid var(--lightblack);
        }

    a.nav-link {
        height: 67.5px;
    }
}
/*@media (max-width: 359px) {
    .nav-tabs .nav-link {
        line-height: 14px; 
    }
}*/



.box-with-tag {
    position: relative;
    width: 100%;
    border: 1px solid var(--grey);
}


.certificate-green {
    background-color: var(--green);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
    padding: 15px 40px 15px 25px;
    position: absolute;
    border-radius: 0 0 10px 10px;
    top: 0;
    right: 2%;
}


.box-tag {
    position: absolute;
    top: 0;
    right: 2%;
    min-width: 185px;
    z-index: 9;
}

    .box-tag span {
        position: absolute;
        left: -15px;
        top: calc(50% - 15px );
    }

        .box-tag span i {
            border: 3px solid var(--darkgrey);
            font-size: 1rem;
            border-radius: 50%;
            height: 30px;
            width: 30px;
        }

    .box-tag .green-tag {
        background-color: var(--green);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .green-tag-icon i, .green-tag-icon i {
        color: var(--white);
        border-radius: 50%;
        background-color: var(--green);
        padding: 4px 5px;
    }

    .box-tag .yellow-tag {
        background-color: var(--yellow);
        color: var(--black);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .yellow-tag-icon i {
        color: var(--black);
        border-radius: 50%;
        background-color: var(--yellow);
        padding: 4px 5px;
    }

    .box-tag .orange-tag {
        background-color: var(--orange);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .orange-tag-icon i {
        color: var(--white);
        background-color: var(--orange);
        padding: 4px 11px;
    }

    .box-tag .blue-tag {
        background-color: var(--blue);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .blue-tag-icon i {
        color: var(--white);
        background-color: var(--blue);
        padding: 4px 5px;
    }

    .box-tag .red-tag {
        background-color: var(--red);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .red-tag-icon i, .red-tag-icon i {
        color: var(--white);
        border-radius: 50%;
        background-color: var(--red);
        padding: 4px 6px;
    }

    .box-tag .grey-tag {
        background-color: var(--lightgrey);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .grey-tag-icon i {
        color: var(--white);
        background-color: var(--lightgrey);
        padding: 4px 4px;
    }

    .box-tag .locked-tag {
        background-color: var(--grey);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 85% 100%, 100% 0);
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 10px 10px;
    }

    .box-tag .locked-tag-icon i {
        color: var(--white);
        background-color: var(--grey);
        padding: 4px 5px;
    }

.course-locked {
    background: rgba(1, 1, 1, 0.27);
    backdrop-filter: blur(10.8px);
    -webkit-backdrop-filter: blur(10.8px);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
}

    .course-locked i {
        font-size: 1.5rem;
    }


.expired-date {
    background-color: var(--red);
    height: 16px;
    width: 16px;
    font-size: 0.7rem;
    border-radius: 50%;
    padding: 1px 7px;
    margin: auto 0;
    vertical-align: text-bottom;
}



/*    circle diagram*/
svg:not(:root) {
    overflow: visible;
}

.single-chart {
    width: 30%;
    margin: auto;
}

.circular-chart {
    display: block;
    margin: auto 0;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: var(--grey);
    stroke-width: 5.3;
}

.circle {
    fill: none;
    stroke-width: 5.3;
    stroke-linecap: unset;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0%, 30% {
        stroke-dasharray: 0 100;
    }
}

.circular-chart.orange .circle {
    stroke: var(--orange);
}

.circular-chart.green .circle {
    stroke: var(--green);
}

.circular-chart.red .circle {
    stroke: var(--red);
}

.circular-chart.yellow .circle {
    stroke: var(--yellow)
}

.percentage.red {
    fill: red;
    font-size: 0.3rem;
    text-anchor: middle;
    font-weight: bold;
}

.percentage {
    fill: var(--white);
    font-size: 0.3rem;
    text-anchor: middle;
    font-weight: bold;
}

@media (max-width: 568px) {
    .single-chart {
        width: 60%;
        margin: auto;
    }

    .circular-chart {
        max-width: 100%;
    }

    .education-box-list li {
        flex: 1 0 50%;
    }
}
/*    circle diagram end*/


/*------FORMULÄR--------*/

.form-control-label {
    color: var(--white);
}

form label {
    font-size: 1rem;
    color: var(--white);
}

.i-checks {
    display: flex;
}

.checkbox-template, .radio-template {
    height: fit-content;
    margin: revert;
}

.multiselect.dropdown-toggle {
    color: #979a9f;
    height: calc(2.25rem + 2px);
    padding: 0 8px;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

input::placeholder {
    /*  text-transform: uppercase;*/
    font-weight: 600;
    font-size: 12px;
}

.input-group-text {
    background: #363a40;
    color: #8a8d93;
    font-weight: 300;
    border-radius: 0;
    border: 1px solid #444951;
    padding: .3rem .75rem;
}

.multiselect-container > li > a > label > input[type=checkbox] {
    accent-color: var(--yellow);
}


/*=============CARD ============*/

.card.collapsed .card-body {
    display: none;
}

.card:not(.collapsed) .card-header.globalcolor,
.card:not(.collapsed) .card-body.globalcolor {
    background-color: #342A28;
}

.card:not(.collapsed) .card-header.notglobal,
.card:not(.collapsed) .card-body.notglobal {
    background-color: #373833;
}

.card:not(.collapsed) .card-header .row .custom-col .hiding,
.card:not(.collapsed) .card-header .row .hiding {
    display: none;
}

.card {
    border: none;
}

.card-header {
    padding: 0.75rem 2rem;
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #34373d;
    color: #ffd71f;
}

.card-body {
    padding: 0.75rem 2rem;
}

.card-header:first-child {
    border-radius: 0 0 0 0;
}

.card-header-transparent {
    background-color: var(--black);
    border: none;
}

.globe {
    position: absolute;
    left: 14px;
    background-color: var(--darkorange);
    top: 17px;
    padding: 9px 4px;
    border-radius: 61%;
}

.orangefile {
    background-color: var(--darkorange);
    padding: 6px 8px;
    border-radius: 61%;
}

.yellowfile {
    background-color: var(--yellow);
    padding: 6px 8px;
    border-radius: 61%;
    color: var(--black)
}

.card-tools {
    display: inline-block;
    float: right;
    margin-top: 0;
    padding: 0;
    position: relative;
}

.card i.fa-xmark.red-tag-icon {
    color: var(--white);
    border-radius: 50%;
    background-color: var(--red);
    padding: 2px 4px;
    font-size: 10px;
}

.card i.fa-check.green-tag-icon {
    color: var(--white);
    border-radius: 50%;
    background-color: var(--green);
    padding: 2px 3px;
    font-size: 10px;
}

/*===============CARD END =================*/
/* ===================FORMS=============================
*/
.form-control {
    border: 1px solid #444951;
    background: transparent;
    border-radius: 0.25rem;
    color: #f1f1f1;
}

    .form-control::-moz-placeholder {
        font-size: 0.9rem;
        font-family: "Muli", sans-serif;
        color: #f1f1f1;
    }

    .form-control::-webkit-input-placeholder {
        font-size: 0.9rem;
        font-family: "Muli", sans-serif;
        color: #f1f1f1;
    }

    .form-control:-ms-input-placeholder {
        font-size: 0.9rem;
        font-family: "Muli", sans-serif;
        color: #f1f1f1;
    }

    .form-control:focus {
        color: #979a9f;
        background-color: transparent;
        border-color: #ffd71f;
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(219, 101, 116, 0.25);
        box-shadow: 0 0 0 0.2rem rgba(219, 101, 116, 0.25);
    }

    .form-control:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .form-control:disabled, .form-control[readonly] {
        background: #444951;
    }

.input-group-text .checkbox-template, .input-group-text .radio-template {
    -webkit-transform: none;
    transform: none;
}

.input-group .dropdown-menu {
    padding: 15px;
    color: #777;
    border-radius: 0;
    margin-top: 5px;
}

    .input-group .dropdown-menu a {
        padding: 5px 0;
        color: inherit;
        text-decoration: none;
        display: block;
    }

        .input-group .dropdown-menu a:hover {
            color: #ffd71f;
            background: none !important;
        }



.checkbox-template,
.radio-template {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
    outline: none;
}

    .checkbox-template + label,
    .radio-template + label {
        margin-left: 8px;
    }

    .checkbox-template::before,
    .radio-template::before {
        margin-right: 0;
        content: '';
        display: inline-block;
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
        width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        background: #8a8d93;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .checkbox-template::after,
    .radio-template::after {
        content: '\f00c';
        width: 12px;
        height: 12px;
        line-height: 12px;
        text-align: center;
        display: block;
        font-family: 'FontAwesome';
        position: absolute;
        top: 1px;
        left: 1px;
        font-size: 0.6rem;
        opacity: 0;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        color: var(--black);
    }

    .checkbox-template:checked::before,
    .radio-template:checked::before {
        background: #ffd71f;
    }

    .checkbox-template:checked::after,
    .radio-template:checked::after {
        opacity: 1;
    }

    .radio-template::before {
        border-radius: 50%;
        -webkit-transform: translate(-3px, -3px);
        transform: translate(-3px, -3px);
    }

    .radio-template::after {
        width: 6px;
        height: 6px;
        line-height: 6px;
        text-align: center;
        position: absolute;
        top: 3px;
        left: 3px;
        border-radius: 50%;
        content: '';
    }

    .radio-template:checked::after {
        background: #fff;
    }

input.input-material {
    width: 100%;
    border: none;
    border: 1px solid #444951;
    padding: 8px 10px;
    background: #444951;
    color: var(--white);
}

    input.input-material.is-invalid {
        border-color: #bb414d !important;
    }

    input.input-material:focus {
        border-color: #ffd71f;
    }

    input.input-material ~ label {
        color: var(--white);
        position: absolute;
        /*top: 14px;*/
        bottom: 40px;
        left: 0;
        cursor: text;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        font-weight: 300;
    }

        input.input-material ~ label.active {
            font-size: 0.85rem;
            /*  top: -10px;*/
            color: #ffd71f;
        }

        input.input-material ~ label.is-invalid ~ label {
            color: #bb414d;
        }

.form-group-material {
    position: relative;
    margin-bottom: 30px;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus,
.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-page .block {
    margin-bottom: 30px;
}

.multiselect-container {
    width: 100%;
}

/*.multiselect.dropdown-toggle {
    color: #979a9f;
    height: calc(2.25rem + 2px);
}
*/
.multiselect .multiselect-selected-text {
    float: left;
    color: var(--white);
}

.multiselect.dropdown-toggle::after {
    float: right;
    padding-right: 10px;
    color: var(--white);
    /* content: '\f0d7';*/
}

.card-select .multiselect.dropdown-toggle::after {
    float: right;
    padding-right: 10px;
    color: var(--white);
    position: relative;
    bottom: 9px;
    /* content: '\f0d7';*/
}

.multiselect.dropdown-toggle:is(.disabled)::after {
    float: right;
    padding-right: 10px;
    color: var(--white);
    position: relative;
    bottom: 9px;
    content: '\f023';
}

.multiselect-container > li > a {
    width: 100%;
}

    .multiselect-container > li > a > label {
        padding-left: 10px;
        width: 100%;
    }

.multiselect-container.dropdown-menu {
    max-height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

select.form-control option.select-group {
    font-weight: bold;
    font-style: italic;
}

select.form-control option {
    background-color: #2d3035;
    padding-bottom: 2px;
    color: var(--white);
}

    select.form-control option[disabled] {
        background-color: #444951;
    }

    select.wps-material-groups-dropdown + div > ul {
        max-height: 300px;
        overflow-y: scroll;
    }

    select.wps-material-groups-dropdown + div > ul > li > div > span.input-group-addon {
        display: none
    }

select + div > ul > li > div > span.input-group-addon {
    display: none
}

.flexdatalist-results li {
    color: var(--white);
    background-color: #2d3035;
    border-bottom: unset;
}

.flexdatalist-results {
    border: 1px solid #2d3035;
}

.flexdatalist-multiple li.value {
    background: #444951;
    color: var(--white);
}

.flexdatalist-results li:hover {
    color: #2d3035;
    background-color: #ffd71f;
}
/*BRÖDSMULOR*/
#breadcrumb {
    font-size: 13px;
    vertical-align: bottom;
    color: var(--yellow)
}

.b-container i.fa-chevron-right {
    font-size: 10px;
}

.b-container i.fa-house {
    font-size: 13px;
}

#breadcrumb.active {
    text-decoration: underline;
    color: var(--yellow);
}

#breadcrumb:hover {
    text-decoration: underline;
    color: var(--yellow);
    opacity: .7;
}

/*-------------*/


.dropzone .dz-preview a.dz-remove {
    color: var(--white);
    border: 2px solid var(--red);
    background-color: var(--red);
    border-radius: 5px;
    padding: 5px 5px;
    margin: 16px 0 0;
}

@media (min-width: 1199px) {
    .col-xl-custom {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1400px) {
    .col-xl-custom {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}

@media (min-width: 1600px) {
    .col-xl-custom {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 812px ) and (min-width: 768px) {
    .custom-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .globe {
        position: absolute;
        left: 14px;
        background-color: var(--darkorange);
        top: -4px;
        padding: 9px 4px;
        border-radius: 61%;
    }
}

.gap-50 {
    gap: 50px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}


.gap-1-rem {
    gap: 1rem
}

.process-overview-image {
    max-height: 400px;
}

.pre-line {
    white-space: pre-line;
}

.highlight {
    border: 1px solid var(--yellow);
    background-color: rgba(var(--yellow-rgb), 0.3);
    padding: 1px;
}

.hover-underline:hover {
    text-decoration: underline;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    color: white;
}

.status-done {
    background-color: #28a745; /* green */
}

.status-not-done {
    background-color: #dc3545; /* red */
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.edit-icon {
    background-color: #f8f9fa;
    color: #212529;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .edit-icon:hover {
        background-color: #212529 !important;
        color: #f8f9fa !important;
    }

.activities-container {
    border: 1px dashed #ccc;
    border-radius: 4px;
    min-height: 40px;
}

.project-category {
    background-color: #373a3e;
}

.card.collapsed .project-category {
    border-radius: 0.25rem !important;
}

.card:not(.collapsed) .project-category {
    border-radius: 0.25rem 0.25rem 0 0 !important;
}

.shrink-0 {
    flex-shrink: 0;
}