body, html {
    width:100%;
    height:100%;
    padding: 0;
    margin:0;
}

body {
    max-width: 100%;
    font-family: "Open Sans", Tahoma;
    font-size: 14px;
    color:white;
}

.centered {
    width: 90%;
    max-width: 1520px;
    min-width: 1190px;
    margin: 0 auto;
}

@media only screen and (max-width: 1290px) {
    .centered {
        width:98%;
        max-width: 100%;
        min-width: 320px;
    }
}



strong {
    font-weight: 600;
    color:var(--color-second)
}

.i {
    width:17px;
    height:17px;
    display: inline-table;
    vertical-align: top;
    margin:1px 0 0 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


.btn {
    background: #67266C;
    text-decoration: none;
    color:white;
    font-family: Roboto, "Open Sans", Tahoma;
    text-transform: uppercase;
    border:none;
    padding: var(--s) var(--s);
    display: inline-table;
    max-height:40px;
    box-sizing: border-box;
    align-content: center;
    user-select: none;
    justify-content: space-around;
    cursor: pointer;
    white-space: nowrap;
}


.btn .i {
    width:15px;
    height:15px;
}

.btn .i:first-child {
    margin: 0 var(--xs) 0 0;
}

.btn .i:last-child {
    margin: 0 0 0 var(--xs);
}

.btn.loader .i {
    transition: transform 5s;
    transform: rotate(360deg);
}

hr {
    border:none;
    border-bottom:1px dotted var(--color-four);
    height:0;
    margin: var(--m) 0;
}

.btn:focus {
    outline:none;
    background: #983395;
}

.btn:hover {
    background: #833280;
    color:white
}

.btn:active {
    outline: none;
    background: #a53ca2;
}

.btn[disabled="disabled"] {
    background: #7b617d;
    color:#c08ec3;
    cursor: default;
}

.btn.blue {
    background:#175F93;
}

.btn.blue:focus {
    background:#175F93;
}

.btn.blue:hover {
    background: #134770;
}

.btn.blue:active {
    background: #1a5f96;
}

.table {
    color:white;
}

.table .thead > div {
    border-top:2px solid #0d0d1b;
    background: #25103B;
    border-bottom:2px solid transparent;
    color:#F3E8FF;
    padding: var(--xs) var(--m);
    box-sizing: border-box;
}

.table .thead .spacer {
    background: none;
    border:none;
}

.table .thead > div:not(:first-of-type), .table .tbody > .row > div:not(:first-of-type) {
    border-left: 2px solid #3A2353;
}

.table .tbody > .row {
    border-bottom:1px solid transparent
}

.table .tbody > .row > div {
    background: #4C3862;
    padding: var(--xs) var(--m);
    box-sizing: border-box;
}

.table.hovered .tbody > .row:hover > div {
    transition: background .2s;
    background: #664e7c;
}

@media only screen and (max-width: 1420px) {
    .table .thead > div, .table .tbody > .row > div {
        padding: var(--xs) var(--xs);
    }
}

.row {
    display: flex;
}

.row.adaptive {
    flex-wrap: wrap;
}

.row > * {
    box-sizing: border-box;
}

.row > .span1 { width: 16.67% }
.row > .span2 { width: 33.34% }
.row > .span3 { width: 50% }
.row > .span4 { width: 66.68% }
.row > .span5 { width: 83.35% }


a {
    color:var(--color-link);
}

a:hover {
    text-decoration: none;
    color:var(--color-link-hover);
}


.top {
    width:100%;
    height:var(--top-height);
    background: url('/assets/top-image.png') center top no-repeat;
    background-size: cover;
    padding-top: var(--menu-height);
}

.top.topSolutions {
    background: url('/assets/solutions-top-image.jpg') right top no-repeat;
}

.top.topFund {
    background: url('/assets/fund-top-image.jpg') right top no-repeat;
}

.top .topMenu {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:var(--menu-height);
    z-index: 10;
    background:rgba(49,24,50,0.85);
}

.top .topMenu .logo {
    flex: 0 0 190px;
    text-align: left;
    box-sizing: border-box;
    padding: var(--s) 0 var(--xs) var(--m);
}

.top .topMenu .logo img {
    max-height: 62px;
}

.top .topMenu .menuCell {
    width:75%;
    flex: 1 1 auto;
    align-self: center;
    text-align: center;
}

.top .topMenu .menuCell .menu {
    display: flex;
    justify-content:flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top .topMenu .menu > li {
    white-space: nowrap;
    padding: var(--xs) var(--m);
    align-self: center;
    position: relative;
}


.top .topMenu .menuCell .menuSwitcher {
    display: none;
}

.top .topMenu .menu > li:not(:last-of-type) {
    margin-right: var(--s);
}

.top .topMenu .menu > li, .top .topMenu .menu > li a {
    color:white;
}

.top .topMenu .menu > li > a {
    display: block;
    padding: var(--3xs) 0 var(--2xs) 0;
    user-select: none;
    text-transform: uppercase;
    font-family: Roboto, "Open Sans", Tahoma;
    font-size: 1.1em;
    text-decoration: none;
    position: relative;
}


.top .topMenu .menu > li.hasChilds {
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.top .topMenu .menu > li.hasChilds a.active {
    font-weight: bold;
    color:var(--color-second);
}

.top .topMenu .menu > li.hasChilds:after {
    content: '';
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.2s, opacity 0.2s;
}

.top .topMenu .menu > li.hasChilds:before {
    content: '';
    width:24px;
    height:24px;
    margin:-2px 0 0 0;
    background: url('/assets/arrow.svg') center center no-repeat;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
    position: relative;
    transition: transform 0.2s;
}






@media only screen and (min-width: 990px) {

    .top .topMenu .menu > li > ol {
        position: absolute;
        visibility: hidden;
        padding: 0;
        margin: 0;
        top:100%;
        right:0;
        opacity: 0;
        min-width: 320px;
    }

    .top .topMenu .menu > li:hover > ol {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
        background: var(--popup-menu-background-color);
    }

    .top .topMenu .menu > li > ol > li:hover {
        background-color: var(--popup-menu-hover-color);
    }

    .top .topMenu .menu > li:not(:last-of-type) {
        padding: var(--xs) var(--s);
        margin-right: var(--xs);
    }

    .top .topMenu .menu > li > ol > li {
        font-size: 1em;
        display: flex;
        text-align: left;
        transition: background 0.1s;
        padding: 0;
    }

    .top .topMenu .menu > li > ol > li a {
        text-decoration: none;
        display: block;
        white-space: normal;
        padding: var(--s) var(--m);
    }

    .top .topMenu .menu > li.hasChilds:hover {
        background: var(--popup-menu-background-color);
    }

    .top .topMenu .menu > li.hasChilds:hover:before {
        transform: rotate(180deg);
    }

}

@media only screen and (max-width: 1420px) {

    .top .topMenu .menu > li {
        padding: var(--xs) var(--s);
    }

}

@media only screen and (max-width: 1350px) {

    .top .topMenu .logo {
        padding: var(--s) 0 var(--xs) 0;
    }

    .top .topMenu .menu > li {
        padding: var(--m) var(--xs);
    }
}


.top .topMenu .account {
    flex: 1 1 auto;
    align-self: center;
    position:relative;
    text-align: center;
    padding-left: var(--2xl);
}

.top .topMenu .account:before {
    content:'';
    display: block;
    position:absolute;
    left:0;
    top:50%;
    transform: translate(0, -50%);
    width:1px;
    background:var(--color-third);
    opacity: 0.37;
    height:37px;
    margin-right: 40px;
}

.top .topMenu .accountLink {
    display: inline-block;
    font-family: Roboto, "Open Sans", Tahoma;
    font-weight: 300;
    font-size: 1.1em;
    color:white;
    text-decoration: none;
    white-space: nowrap;
}

.top .topMenu .accountLink .i {
    display: inline-table;
    vertical-align: middle;
    color:var(--color-second);
    margin:-4px var(--xs) 0 0;
}

@media only screen and (max-width: 1290px) and (min-width: 991px) {
    .top .topMenu .accountLink > span {
        display: none;
    }
}

@media only screen and (max-width: 990px) {

    .top {
        height:var(--mobile-top-height);
    }

    .top .topMenu .logo {
        order: 1;
        flex: 0 0 130px;
        padding-left: var(--xs);
    }


    /* mobile device */
    .top .topMenu .menuCell {
        order: 3;
        align-self: center;
        text-align: right;
    }

    .top .topMenu .menuCell .menuSwitcher {
        width:64px;
        height:64px;
        content: '';
        display: inline-block;
        background: url('/assets/menu.svg') center center no-repeat;
        background-size: 70% 70%;
    }

    .top .topMenu .menuCell .menuSwitcher.active {
        border-radius: var(--xs) var(--xs) 0 0;
        background-color: var(--popup-menu-background-color);
    }

    .top .topMenu .menuCell .menu {
        display: none;
        position: absolute;
        right:1%;
        top:calc(100% - 12px);
        width:98%;
        max-width: 340px;
        min-width: 200px;
        border-radius: var(--s) 0 var(--s) var(--s);
        height:auto;
        padding: var(--l) var(--l);
        background: var(--popup-menu-background-color);
        box-shadow: 0 4px 7px rgba(0,0,0,.32);
    }

    .top .topMenu .menuCell .menu > li {
        display: block;
        text-align: right;
        justify-content: flex-end;
        padding: var(--xs) var(--2xs);
    }

    .top .topMenu .menu > li > a {
        display: inline-block;
    }

    .top .topMenu .menuCell .menu > li:hover, .top .topMenu .menuCell .menu > li:hover > a {
        color: var(--color-second);
    }

    .top .topMenu .menuCell .menu ol {
        position: relative;
        display: none;
    }

    .top .topMenu .menuCell .opened > ol {
        display: block;
        width:100%;
        margin: var(--xs) 0;
        padding: 0 0 var(--s) 0;
        box-sizing: border-box;
        list-style: none;
        border-bottom: 1px solid rgba(245, 216, 255, 0.31);
    }

    .top .topMenu .menuCell .opened:before {
        transform: rotate(180deg);
    }

    .top .topMenu .menuCell .opened > ol > li {
        display: block;
        padding: var(--2xs) 0;
        margin: 0;
    }

    .top .topMenu .menuCell .opened > ol > li a {
        padding: var(--s) 0;
        text-decoration: none;
        white-space: normal;
    }

    .top .topMenu .menuCell .opened > ol > li a:hover {
        color:var(--color-second);
    }

    .top .topMenu .menuCell .menu.opened {
        display: block;
    }

    .top .topMenu .account {
        padding: 0 var(--xs);
        align-content: center;
        order: 2;
    }

    .top .topMenu .account:before {
        display: none;
    }

    .top .topMenu .menu > li:not(:last-of-type), .top .topMenu .menu > li:last-of-type {
        margin-right: 0;
    }
}

@media only screen and (max-width: 375px) {

    .top {
        height:240px;
    }

    .top .topMenu .account .accountLink span {
        display: none;
    }

}

.top .secondBlock {
    display: flex;
    position: relative;
}


.top .secondBlock .slogan {
    width:60%;
    padding: 50px 0 0 var(--xs);
    font-size: 2.6em;
    font-family: Roboto, "Open Sans", Tahoma;
    font-weight: 300;
    color:white;
    text-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.top .secondBlock .contactInfo {
    width:40%;
    text-align: right;
    font-family: Roboto, "Open Sans", Tahoma;
}

.top .secondBlock .contactInfo .wrapper {
    margin-top:50px;
    display: inline-block;
    text-align: left;
    background: rgba(61,45,82,.7);
    padding: var(--xl) var(--2xl) var(--2xl) var(--2xl);
    box-sizing: border-box;
}

.top .secondBlock .contactInfo .iconPhone {
    width:28px;
    height:28px;
    margin: -3px var(--m) 0 0;
    display: inline-table;
    vertical-align: middle;
}

.top .secondBlock .contactInfo .phone {
    font-size:2.2em;
    color:white;
    white-space: nowrap;
}


.top .secondBlock .contactInfo .phone .code {
    color:var(--color-second);
}

.top .secondBlock .contactInfo .map {
    font-size: 1.2em;
    color:white;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin-top:var(--m);
    font-weight: 300;
}

.top .secondBlock .contactInfo .iconMarker {
    width:22px;
    height:22px;
    margin: -4px var(--m) 0 0;
    display: inline-table;
    vertical-align: middle;
}

@media only screen and (max-width: 1290px) {
    .top .secondBlock .contactInfo .phone {
        font-size: 1.8em;
    }

    .top .secondBlock .contactInfo .iconPhone {
        width:24px;
        height:24px;
    }

    .top .secondBlock .contactInfo .map {
        font-size: 1.1em;
        margin-top:var(--s);
    }

    .top .secondBlock .contactInfo .iconMarker {
        width:18px;
        height:18px;
    }

}

@media only screen and (max-width: 990px) {
    .top .secondBlock {
        flex-direction: column;
    }

    .top .secondBlock .slogan {
        width:100%;
        padding: var(--m) 0 0 var(--xs);
        font-size: 1.4em;
    }

    .top .secondBlock .contactInfo {
        width:100%;
    }

    .top .secondBlock .contactInfo .wrapper {
        width:100%;
        margin-top: var(--l);
        padding: var(--l) var(--xl);
    }
}


aside, .aside {
    width:33.34%;
    padding: 0 var(--xl) 0 0;
}

main, .main {
    width:64.66%;
    padding: 0 var(--2xl);
}



h1 {
    text-transform: uppercase;
    font-family: Roboto, "Open Sans", Tahoma;
    font-weight: normal;
    font-size:1.5em;
    color:white;
    margin: var(--xs) 0 var(--xl) 0;
}

h2 {
    text-transform: uppercase;
    font-family: Roboto, "Open Sans", Tahoma;
    font-weight: normal;
    font-size:1.3em;
    color:#7d9ce0;
    padding: var(--xl) 0 var(--l) 0;
    margin:0;
}

h2 .i {
    width:22px;
    height:22px;
    margin: -2px var(--s) 0 0;
}

h2 a {
    color:white;
    text-decoration: none;
}

p {
    padding: var(--xs) 0;
    margin: 0;
}

dl.params {
    list-style: none;
    padding: var(--xs) 0 0 0;
    margin:0;
}

dl.params dt, dl.params dd {
    padding: var(--xs) 0;
    width: 50%;
    display: -moz-inline-box;
    display: inline-block;
}

dl.params li {
    margin: 0;
}

dl.params dt {
    vertical-align: top;
    overflow: hidden;
    margin-right: -50.1%;
}

dl.params dt em {
    padding-right: 3px;
    font-style: normal;
    opacity: 0.9;
}

dl.params dd {
    vertical-align: bottom;
    margin-left: 50%;
    width: 49%;
}

span.dotted {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    width: 100%;
    margin: 0 -100% 0 0;
    vertical-align: baseline;
    border-bottom: 1px dotted var(--color-four);
}

.breadcrumbs {
    margin: 0 0 var(--2xl) 0;
    font-size: 1em;
    color:var(--color-third);
    line-height: 1.5em;
}

.breadcrumbs a {
    text-decoration: none;
    color:var(--color-third);
    white-space: nowrap;
}

.breadcrumbs a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumbs .current {
    color:#D78CF1
}

.breadcrumbs .i {
    width:12px;
    height:12px;
    display: inline-table;
    color:var(--color-third);
    margin: 0 var(--s);
    vertical-align: middle;
}

article.solutionItem {
    margin-bottom: var(--3xl);
}

article.solutionItem p {
    opacity: 0.9;
}

.markeredListSolutions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.markeredListSolutions li {
    padding: var(--xs) 0 var(--xs) 32px;
    position: relative;
}

.markeredListSolutions li:before {
    content: '';
    display: block;
    position:absolute;
    width:8px;
    height:8px;
    background: #634B75;
    border-radius: 50%;
    left:12px;
    top:13px;
}

.markeredListSolutions li:hover:before {
    background: #67266C;
}

.markeredListSolutions li a {
    color: white;
    text-decoration: none;
}

.markeredListSolutions li a:hover {
    color: #c595e5;
}

.box {
    background: var(--box-background-color);
    padding: var(--box-padding-top) 0 var(--box-padding-bottom) 0;
}

.about {
    border-top:12px solid #2E1F41;
}

.about .info {
    width:66.68%;
    box-sizing: border-box;
    color:white;
    font-weight: 400;
    padding: 0 100px var(--xl) var(--m);
}

.about .links {
    width:33.32%;
    padding-left: var(--m);
}

.about .links ul {
    padding: 0;
    margin: 0;
}

.about .links ul li {
    display: block;
    color:var(--color-third);
    position: relative;
    padding: var(--2xl) var(--2xl) var(--2xl) 60px;
    font-family: Roboto, "Open Sans", Tahoma;
    font-weight: 300;
}

.about .links ul li .icon {
    position: absolute;
    left:0;
    width:34px;
}

.about .links ul li:not(:last-of-type) {
    border-bottom:1px solid rgba(245, 216, 255, 0.31);
}

.about .links ul li:first-of-type {
    padding-top: 0;
}

@media only screen and (max-width: 990px) {

    .about > .row {
        flex-direction: column;
    }

    .about > .row .info {
        width:100%;
        padding: 0 var(--m) var(--xl) var(--m);
    }

    .about > .row .links {
        width:100%;
    }

}

.advantages {
    margin:0;
    padding: 0;
    width:100%;
    background: #2E1F41;
}

.advantages h4 {
    color:white;
    font-family: Roboto, "Open Sans", Tahoma;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    position: relative;
    font-size: 1.2em;
    padding: 0 0 0 var(--5xl);
    margin: var(--xs) 0 var(--xl) 0;
}

.advantages p {
    color:white;
    opacity: 0.7;
}

.listAdvantages {
    list-style: none;
    display: flex;
    padding: 0;
    margin:0 auto;
    box-sizing: border-box;
}

.listAdvantages li {
    width:33.3%;
    padding: var(--4xl) var(--3xl);
    box-sizing: border-box;
}

.listAdvantages li:first-of-type {
    padding: var(--4xl) var(--3xl) var(--4xl) var(--3xl);
}

.listAdvantages li:last-of-type {
    padding: var(--4xl) var(--3xl) var(--4xl) var(--3xl);
}

.listSolutions li .solution .icon, .listAdvantages li .icon {
    width:54px;
    position: absolute;
    left:0;
    top:-8px;
}

.listAdvantages p {
    font-size:1.05em;
}

@media only screen and (max-width: 990px) {

    .listAdvantages {
        flex-direction: column;
    }

    .listAdvantages > li, .listAdvantages > li:first-of-type, .listAdvantages > li:last-of-type {
        width:100%;
        padding:var(--xl) var(--xl);
    }
}

.solutions {
    background: url('/assets/solutions.png') center top no-repeat;
    background-size:cover;
    padding: var(--box-padding-top) 0 var(--box-padding-bottom) 0;
}


h3 {
    display: block;
    font-weight: normal;
    font-family: Roboto, "Open Sans", Tahoma;
    text-transform: uppercase;
    color:white;
    font-size: 1.3em;
    margin: 0 0 var(--2xl) 0;
    text-align: center;
}

.liner:before {
    content: '';
    width:22px;
    height:20px;
    background: url('/assets/liner.svg') center top no-repeat;
    display: inline-table;
    vertical-align: middle;
    background-size: 100% auto;
    margin: 0px 8px 0 0;
}


.listSolutions {
    list-style: none;
    margin:0;
    padding: var(--m) 0 0 0;
    display: flex;
    flex-wrap: wrap;
}


.listSolutions li {
    width:50%;
    margin-bottom: var(--xl);
    box-sizing: border-box;
    display: flex;
}

.listSolutions li:nth-child(odd) .solution {
    margin-right: 6%;
}

.listSolutions li:nth-child(even) .solution {
    margin-left: 6%;
}

.listSolutions li .solution {
    padding: var(--xl) var(--3xl) var(--2xl) var(--3xl);
    background: url('/assets/solution-bg.png') center top no-repeat;
    background-size: cover;
    color:white;
    box-sizing: border-box;
    width: 100%;
}

.listSolutions li .solution h4 {
    font-weight: normal;
    font-size: 1.2em;
    position: relative;
    min-height:44px;
    text-transform: uppercase;
    font-family: Roboto, "Open Sans", Tahoma;
    padding: 0 0 0 var(--5xl);
    margin: var(--xs) 0 var(--xl) 0;
}

.listSolutions li .solution p {
    font-weight: 300;
    margin-bottom: var(--xl);
}

@media only screen and (max-width: 990px) {
    .solutions {
        padding: var(--l) 0;
    }

    h3 {
        font-size: 1.3em;
        margin: 0 0 var(--l) 0;
    }

    .listSolutions {
        padding: 0;
    }

    .listSolutions li {
        width:100%;
    }

    .listSolutions li:nth-child(odd) .solution {
        margin-right: 0;
    }
    .listSolutions li:nth-child(even) .solution {
        margin-left: 0;
    }

    .listSolutions li:last-of-type {
        margin-bottom: 0;
    }
}


.dynamicOpif, .contacts {
    padding: var(--3xl) 0;
    background: linear-gradient(0, #240F3B 0%, #3F2454 100%);
}

.statInfo {
    color:var(--color-sub-text);
    padding: 0 0 var(--s) 0;
}

.continued {
    padding: var(--m) var(--2xl);
    box-sizing: border-box;
}

@media only screen and (max-width: 1290px) {
    .continued {
        padding: var(--m) var(--l);
    }
}

.continued h2 {
    text-align: center;
}


.dynamic {
    width:100%;
    margin: var(--l) 0;
}

.dynamic .graph {
    width:75%;
    color:var(--color-four);
    padding: 0 var(--xl) var(--m) 0;
}

.dynamic .graph #splineContainer {
    min-width: 310px;
    max-width: 100%;
    margin: 0 auto;
}


.dynamic .dashboard {
    width:25%;
    padding: 0 var(--xl);
}

.dynamic .dashboard select {
    width:auto;
    min-width: 50%;
}

.dashboard .param:not(:last-of-type) {
    margin-bottom: var(--m);
}

.dashboard .param .name {
    padding: 0 0 var(--xs) 0;
}

.fondsDynamic .actualDate {
    width:33%;
    color:#B999E3;
    padding: var(--s) var(--l);
    box-sizing: border-box;
}

.fondsDynamic .headerGroup {
    width:67%;
    display: flex;
}

.fondsDynamic .spacer {
    width:76%;
}

.fondsDynamic .item {
    margin-bottom: 1px;
}

.fondsDynamic .byDay, .fondsDynamic .byMonth, .fondsDynamic .byYear {
    width:24%;
}


.fondsDynamic .fondName {
    width:53%;
    border-bottom:1px solid #3A2353;
}

.fondsDynamic .fondName .fondIcon {
    width:18px;
    margin-right: var(--xs);
}

.fondsDynamic .fondName a {
    text-decoration: none;
    color:white;
}

.fondsDynamic .fondName a .i {
    margin:0 var(--m) 0 0;
}

.fondsDynamic .row > .stats {
    padding: 0 !important;
    width:47%;
    border-left:none !important;
}

.fondsDynamic .cell {
    border-left:2px solid #3A2353;
    padding: var(--s) var(--m);
    box-sizing: border-box;
}

.fondsDynamic .cell.plus, .fondsDynamic .cell.minus {
    white-space: nowrap;
}

.fondsDynamic .stats .row:not(:last-of-type) .cell {
    border-bottom:1px solid #3A2353;
}

.fondsDynamic .cell.desc {
    width:33%;
    color:white;
}

.fondsDynamic .cell.number {
    width:33%;
    white-space: nowrap;
    color:white;
}

.fondsDynamic .cell.delta {
    width:33%;
    box-sizing: border-box;
}

.delta.minus, .fondsDynamic .dynamicIcon {
    color:#FF6565;
}

.delta.plus .i {
    transform: rotate(180deg);
}

.delta.plus {
    color:#43D740;
}

@media only screen and (max-width: 990px) {

    .table.fondsDynamic {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .fondsDynamic .cell {
        padding: var(--xs) var(--2xs);
        box-sizing: border-box;
    }

    .fondsDynamic .actualDate {
        width:100%;
    }

    .fondsDynamic .headerGroup {
        display: none;
    }

    .fondsDynamic .row.item {
        flex-direction: column;

    }

    .fondsDynamic .row.item .fondName, .fondsDynamic .row.item .stats {
        width:100%;
    }

    .fondsDynamic .row.item .delta svg {
        display: none;
    }

    .dynamicOpif, .openingInfo {
        padding: var(--l) 0;
    }

    .openingInfo .centered > .row {
        flex-direction: column;
    }

    .openingInfo .aside {
        width:100%;
        padding: 0 0 var(--l) 0;
    }

    .openingInfo .main {
        width:100%;
        padding: 0 0 var(--l) 0;
    }
}

.sbox {
    color:white;
}

.sbox .header {
    background: #AC67D8;
    text-transform: uppercase;
}

.sbox .header .i {
    margin-right: var(--xs);
}

.sbox .header, .sbox > .content  {
    padding: var(--xl) var(--2xl);
}

.sbox .content {
    background: #25103B;
}

.articlesList {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.articlesList li {
    margin: 0 var(--m);
    padding: var(--2xl) 0;
    position: relative;
}


.articlesList li:not(:last-of-type):before {
    content: '';
    display: block;
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background: #AC67D8;
    opacity: 0.44;
}

.articlesList li .annotation {
    color:#e4d6f1;
    padding: 0;
    margin: 0 0 var(--m) 0;
    display:block;
    text-decoration: none;
}

.articlesList .publishDate {
    color:#AC67D8;
}

.articlesList .publishDate .i {
    width:21px;
    margin-right: var(--xs);
}

.allNews {
    padding: var(--xs) 0;
    text-align: right;
}

.openingInfoBrief {
    padding: 0 0 0 var(--4xl);
}

.openingInfoBrief .table .date, .table.docs .date {
    width:24%;
}

.openingInfoBrief .table .kind, .table.docs .kind {
    width:42%;
}

.openingInfoBrief .table .limitDate, .table.docs .limitDate {
    width:34%;
}

.openingInfoBrief .lastDate, .table.docs .lastDate {
    width:70%;
}


.openingInfoBrief .file {
    text-align: center;
    width:30%;
}

.file .linkToFile {
    text-decoration: none;
    color:white;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.file .linkToFile .i {
    width:auto;
    max-width: 28px;
    height:32px;
}

.file .fileSize {
    font-size: 0.9em;
    color:#DCC8F0;
    margin:var(--xs) 0 0 0;
}

.contacts {
    padding: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,.2) inset;
    display: flex;
    min-height:380px;
}

.contacts .feedback {
    width:33.34%;
    background: url('/assets/solution-bg.png') center top no-repeat;
    background-size: cover;
    padding: var(--3xl) var(--4xl);
    color:white;
    box-sizing: border-box;
}

.contacts .feedback form {
    margin: var(--2xl) 0 0 0;
}

.contacts .feedback .frow {
    display: block;
    padding: 0 0 var(--xl) 0;
    position: relative;
}

.contacts .feedback .frow input {
    padding-left: 42px;
}

.contacts .feedback .frow > .i {
    position: absolute;
    left:12px;
    top:7px;
    color:black;
    z-index: 1;
}

.contacts .feedback .frow input:focus + .i {
    color:#AC67D8;
}


input, textarea, select {
    font-size: 1em;
    font-family: "Open Sans", Tahoma;
    border: 1px solid transparent;
    padding: var(--xs);
    box-sizing: border-box;
    width:100%;
}

input:focus, textarea:focus, select:focus {
    outline:none;
    border:1px solid rgba(215,140,241,1);
    box-shadow: 0 0 8px rgba(215,140,241,1);
}

input.highlighted-error, textarea.highlighted-error {
    border:1px solid #ff5b27;
    background: #ffe4e9;
    color: var(--error-text-color);
}

.contacts .feedback .frow input.highlighted-error:focus + .i {
    color: var(--error-text-color);
}

.contacts .feedback form textarea {
    height:74px;
    resize: vertical;
    min-height: 74px;
    max-height: 160px;
}

.contacts .feedback .error-msg {
    padding: var(--xs) 0 0 0;
    color: #ff5b27;
}

.contacts .officeMap {
    width: 66.66%;
}

.contacts .officeMap img {
    width:100%;
    height:100%;
}

footer {
    margin: 0;
    padding: 0;
    background: url('/assets/footer.jpg') center top no-repeat;
    background-size: cover;
}

footer .text {
    width:100%;
    box-sizing: border-box;
    padding: var(--3xl);
    background: rgba(37,16,59,0.4);
    font-size: 0.9em;
    color: #fcf1fd;
}

footer p {
    padding: 0;
    margin: 0;
}

.fundsMenu ol, .fundsMenu ul {
    padding: 0;
    margin:0;
    list-style: none;
}

.fundsMenu > ul > li {
    padding-bottom: var(--m);
}

.fundsMenu ul > li a {
    color:white;
    text-decoration: none;
}


.fundsMenu > ul > li > a {
    font-size: 1.1em;
    font-weight: 600;
    font-family: Roboto, "Open Sans", Tahoma;
}

.fundsMenu > ul > li:not(:last-of-type) {
    margin-bottom: var(--m);
    border-bottom:1px solid rgba(172,103,216,0.4);
}

.fundsMenu li {
    padding: var(--xs) 0 0 var(--xl);
    position: relative;
}

.fundsMenu ul > li > a:before, .fundsMenu  li > a > .i {
    content: '';
    background-size: 100% auto;
    width:17px;
    height:17px;
    margin:-1px var(--xs) 0 0;
    display: inline-table;
    vertical-align: middle;
    position: absolute;
    top:10px;
    left:0;
}

.fundsMenu ul > li > a:before { top:11px; background: url('/assets/plus.svg?v.2') center top no-repeat }
.fundsMenu ul > li.opened > a:before { top:11px; background: url('/assets/minus.svg?v.2') center top no-repeat }

.fundsMenu ul > li.opened > a {
    color:var(--color-second);
}

.fundsMenu ul ul > li > a:before { background: url('/assets/folder.svg?v.2') center top no-repeat }
.fundsMenu ul ul > li.opened > a:before { background: url('/assets/openedFolder.svg?v.2') center top no-repeat }


.fundsMenu li > ol, .fundsMenu li > ul {
    display: none;
    padding: var(--2xs) 0;
    margin: 0;
    list-style: none;
}


.fundsMenu li.opened > ul, .fundsMenu li.opened > ol {
    display: block;
}


.fundsMenu ol li, .fundsMenu ol li a {
    color:var(--color-third);
    transition:0.2s;
}

.fundsMenu ol li, .fundsMenu ol li a:hover {
    color: var(--color-second);
}

.filesMenu {
    padding: 0;
    margin: 0;
}

.filesMenu li {
    list-style: none;
    padding: var(--xs) 0 var(--s) var(--2xl);
    position:relative;
}

.filesMenu > li a {
    color:white;
    text-decoration: none;
    transition:0.2s;
}

.filesMenu > li a:hover {
    color: var(--color-third);
}

.filesMenu > li a > svg {
    position: absolute;
    display: block;
    width:20px;
    height:20px;
    left:0px;
    top:8px;
    background: url('/assets/files.svg?v.2') center top no-repeat
}


.fundsLink {
    display: block;
    margin-top:var(--xl)
}

.fundsLink .btn:not(:last-of-type) {
    margin-right: var(--m);
}

.listFunds {
    width:100%;
}

.listFunds .icon {
    width:15%;
    text-align: center;
}

.listFunds .name {
    width:65%;
}

.listFunds .name a {
    color:white;
    text-decoration: none;
}

.listFunds .link {
    width:20%;
    min-width: 140px;
}

.listFunds .icon .i {
    width:32px;
    height:32px;
}


.fullStatTable {
    margin: var(--2xl) 0;
    display: block;
}

.fullStatTable .paramName {
    width:10%;
}

.fullStatTable .date {
    width:16%;
}

.fullStatTable .delta {
    width:12%;
}

.fundDocs {
    margin: var(--2xl) 0;
    display: block;
}

.fundDocs .file {
    width:10%;
    text-align: center;
}

.fundDocs .docName {
    width:75%;
}

.fundDocs .date {
    width:15%;
}

.fundDocs .download {
    width:15%;
    min-width: 120px;
}

#pieContainer {
    width:80%;
    margin: 0 auto;
}

.docGroup {
    width:100%;
    text-transform: uppercase;
}

.places {
    display: flex;
}

.places .place {
    padding: var(--m) var(--l) var(--m) 0;
}

.places .place:not(:last-of-type) {
    border-bottom: 1px solid rgba(172,103,216,0.4);
}

.places .listPlaces {
    width:33.34%;
    padding: 0 var(--xl) 0 0;
    box-sizing: border-box;
}

.places .map {
    width:66.66%;
}

.mapImage {
    align-content: stretch;
    padding: var(--l) var(--xl);
}

.page.box {
    padding: var(--s) 0;
}

.license a {
    text-decoration: none;
}

@media only screen and (max-width: 990px) {

    .places {
        flex-direction: column;
    }

    .places .listPlaces {
        width:100%;
        padding: 0;
    }

    .places .map {
        width:100%;
        padding: 0;
    }

    .fullStatTable .date {
        display: none;
    }

    .fullStatTable .paramName {
        width:20%;
    }

    .fullStatTable .delta {
        width:16%;
    }

    .sbox .header, .sbox > .content {
        padding: var(--m) var(--l);
    }

    .articlesList li {
        padding: var(--m) 0;
    }

    .contacts .row {
        flex-direction: column;
    }

    .contacts .feedback, .contacts .officeMap {
        width:100%;
        padding: 0;
    }

    .contacts .feedback {
        padding: var(--m) var(--m);
    }

    .row.layout {
        flex-direction: column;
    }

    .layout > aside, .layout > .aside {
        width:100%;
        padding: 0;
        order:1;
    }

    .layout > main, .layout > .main {
        width:100%;
        padding: var(--l) 0;
        order:2;
    }

    .continued {
        padding: 0;
    }

    .dynamic {
        flex-direction: column;
        margin: 0;
    }

    .dynamic .dashboard, .dynamic .graph {
        width:100%;
        padding: 0;
    }


    .dynamic .dashboard {
        padding: 0 var(--m) 0 0;
    }

    #pieContainer {
        width:100%;
    }

}

.page.box {
    min-height: calc(100vh - 850px);
}

.page.box main {
    padding-right: 0;
}

.page.box .text {
    width:70%;
    padding: var(--s) 100px var(--box-padding-bottom) var(--s);
}

.page.box .image {
    width:30%;
    padding: var(--s) 0 var(--box-padding-bottom) 0;
}

.page.box .image > img {
    max-width:100%;
}
