:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #253359;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --orange-color: #FCA02E;
    --body-font: 'Montserrat', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100;
    --side-bar: 260px;
}

*, ::before, ::after {
    box-sizing: border-box
}

body {
    background: #fff;
    font-size: 15px;
    font-weight: 400;
    color: #253359;
    font-family: 'Montserrat', Arial,sans-serif;
    padding-bottom: 2em;
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
    overflow-y: hidden;
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 10px;
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

    .header_img img {
        width: 40px
    }

.hint-mark {
    font-size: 22px;
    padding-left: 5px;
    color: darkgray;
    vertical-align: middle;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100%;
    background-color: var(--first-color);
    padding: 0 0 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.nav_logo, .nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

    .nav_link:hover {
        color: var(--white-color)
    }

.nav_icon {
    font-size: 1.25rem
}

.show-sidebar {
    left: 0
}

.body-pd {
    padding-left: var(--side-bar);
}

.active {
    color: var(--orange-color)
}

.active-menu {
    color: var(--orange-color)
}

    .active-menu::before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        height: 32px;
        background-color: var(--orange-color)
    }

.height-100 {
    height: 100%;
}

#grid-data-header > div > div > div.actions.btn-group {
    
}

#grid-data-header > div > div > div.search.form-group > div > span {
    font-size: 21px;
    color: gray;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 2px;
    border-left: solid;
    border-top: solid;
    border-bottom: solid;
    border-radius: 10px 0 0px 10px;
    border-color: orange;
    border-width: thin;
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height)) 0 0 0;
        padding-left: calc(var(--nav-width) - 1px)
    }

    .header {
        height: calc(var(--header-height));
        padding: 0 1rem 0 calc(var(--nav-width))
    }

    .header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }

    .l-navbar {
        left: 0;
        padding: 0 0 0 0
    }

    .show-sidebar {
        width: calc(var(--nav-width) + 176px)
    }

    .body-pd {
        padding-left: 243px;
    }
}

.simple-bar {
    overflow-y: auto;
    background: url('/pc/images/simpe_footer.svg') bottom no-repeat;
    background-size: contain;
    margin-bottom: 100px;
}

.version-block {
    word-wrap: break-word;
    overflow: hidden;
    width: 100%;
    position: absolute;
    z-index: 1000;
    color: lightgray;
    font-size: 0.6em;
    right: 5px;
    bottom: 0px;
}

.calc-block {
    overflow-y: auto;
}

@media screen and (max-height: 660px) {
    .nav {
        overflow-y: auto;
        display: block;
    }

    .bearded-block {
        visibility: hidden;        
    }

    .version-block {
        background-color: var(--first-color);
    }

    .simple-bar {
        background: transparent bottom no-repeat;
    }
}


@media screen and (max-width: 767px) {
    body {
        margin: calc(var(--header-height)) 0 0 0;
        padding-left: calc(var(--nav-width) - 1px)
    }

    .header {
        height: calc(var(--header-height));
        padding: 0 2rem 0 calc(var(--nav-width) )
    }

    .header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }

    .l-navbar {
        left: 0;
        padding: 0 0 0 0
    }

    .show-sidebar {
        width: calc(var(--nav-width))
    }

    .header_toggle {
        display: none;
    }

    .body-pd {
        padding-left: 68px;
    }

    .nav_name {
        display: none;
    }

    .calc-block {
        visibility: hidden;
        height: 0;
    }
}

.modified {
    background: #F3CA98 !important;
}

.select2 {
    width: 100% !important;
    font-size: 14px;
    font-weight: bold;
}

.select2-selection--single {
    height: 100% !important;
    border: 1px solid #a8a8a8;
    border-radius: 8px;
}

.select2-selection__rendered {
    word-wrap: break-word !important;
    text-overflow: inherit !important;
    white-space: normal !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    flex-grow: 1;
    line-height: 17px;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.darkblue {
    color: #253359;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    padding-left: 10px !important;
    min-height: 34px;
}

.subs {
    background-color: #fff;
    padding: 5px 20px;
    margin-left: 1px;
    min-width: 15%;
    border-radius: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #253359;
    cursor: pointer;
    text-align: center;
    transition: background-color .2s;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    .subs:hover {
        background-color: #F1F1F1;
    }

.subsSelected {
    background-color: #F1F1F1;
    color: #FCA02E;
}

.textSubs {
    display: none;
    width: 100%;
}

.pt-5 {
    padding: 0 0 5px 0;
}

.accordion-button {
    color: white;
}

    .accordion-button:not(.collapsed) {
        color: white;
        background-color: #e7f1ff;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            color: white;
            transform: rotate(-180deg);
        }

    .accordion-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform .2s ease-in-out;
    }


.accordion-blue-button {
    color: #253359;
}

    .accordion-blue-button:not(.collapsed) {
        color: #253359;
        background-color: lightgray;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }

        .accordion-blue-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23253359'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            color: #253359;
            transform: rotate(-180deg);
        }

    .accordion-blue-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23253359'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform .2s ease-in-out;
    }

#select2-CapitalPrice_KrS-container {
    max-height: 34px;
    overflow-x: hidden;
    margin-right: 23px;
}

.blinking {
    -webkit-animation: 2s blink ease infinite;
    -moz-animation: 2s blink ease infinite;
    -ms-animation: 2s blink ease infinite;
    -o-animation: 2s blink ease infinite;
    animation: 2s blink ease infinite;
}


@keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-ms-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-o-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}