/* Import */

/* Default */

/* Mixin */

@import url("https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed");
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Grid System */

/* Mobile-Tablet, Tablet-Laptop, Laptop - Desktop, Desktop - Widescreen */

/* Tablet, Laptop, Desktop MAXIMUM */

/* Tablet, Laptop, Desktop MINIMUM */

.clearfix {
    clear: both;
}

.clearfix:before {
    content: " ";
    display: table;
}

.clearfix:after {
    content: " ";
    display: table;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.no-p {
    padding: 0;
}

.no-pl {
    padding-left: 0;
}

.no-pr {
    padding-right: 0;
}

.show-fullHD,
.show-widescreen,
.show-desktop,
.show-laptop,
.show-tablet,
.show-mobile {
    display: none !important;
}

/* Custom Column Width */

@media screen and (min-width: 1340px) {
    .show-fullHD {
        display: block !important;
    }
    .hide-fullHD {
        display: none !important;
    }
    .no-p-h {
        padding: 0;
    }
    .no-pl-h {
        padding-left: 0;
    }
    .no-pr-h {
        padding-right: 0;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1339px) {
    .show-widescreen {
        display: block !important;
    }
    .hide-widescreen {
        display: none !important;
    }
    .no-p-w {
        padding: 0;
    }
    .no-pl-w {
        padding-left: 0;
    }
    .no-pr-w {
        padding-right: 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .show-desktop {
        display: block !important;
    }
    .hide-desktop {
        display: none !important;
    }
    .no-p-d {
        padding: 0;
    }
    .no-pl-d {
        padding-left: 0;
    }
    .no-pr-d {
        padding-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .show-laptop {
        display: block !important;
    }
    .hide-laptop {
        display: none !important;
    }
    .no-p-l {
        padding: 0;
    }
    .no-pl-l {
        padding-left: 0;
    }
    .no-pr-l {
        padding-right: 0;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .show-tablet {
        display: block !important;
    }
    .hide-tablet {
        display: none !important;
    }
    .no-p-t {
        padding: 0;
    }
    .no-pl-t {
        padding-left: 0;
    }
    .no-pr-t {
        padding-right: 0;
    }
}

@media screen and (min-width: 320px) and (max-width: 479px) {
    .show-mobile {
        display: block !important;
    }
    .hide-mobile {
        display: none !important;
    }
    .no-p-m {
        padding: 0;
    }
    .no-pl-m {
        padding-left: 0;
    }
    .no-pr-m {
        padding-right: 0;
    }
}

/* Fonts */

/* Default */

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

body {
    color: #55595C;
    font: 14px/22px "Roboto", sans-serif;
    background: #F4F7FA;
}

body.bg-white {
    background: #fff;
}

::selection {
    color: #000;
    background: #acd373;
}

::-moz-selection {
    color: #000;
    background: #acd373;
}

p {
    padding: 24px 0 0;
    margin: 0;
}

em {
    font-style: normal;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h1 {
    padding: 0px 0 20px;
    color: #000;
    font-size: 35px;
    font-weight: normal;
    line-height: 40px;
}

a {
    color: #4EA1FF;
    text-decoration: none;
    transition: .1s ease-in-out;
    outline: none;
}

a:hover {
    color: #368CEF;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

input[type="text"],
input[type="number"],
input[type="password"] {
    padding: 4px 15px;
    color: #55595C;
    background: #fff;
    transition: .2s ease-in-out;
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
    border-color: #d0d7dd;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus {
    background: #e1fcff;
    border-color: #00aeef;
    -moz-box-shadow: 0 0 4px #00aeef;
    -webkit-box-shadow: 0 0 4px #00aeef;
    box-shadow: 0 0 4px #00aeef;
}

input[type="text"][disabled],
input[type="number"][disabled],
input[type="password"][disabled] {
    background: #F4F7FA;
}

.img-extensive {
    width: 100%;
    height: auto;
    display: block;
}

.button {
    padding: 5px 15px;
    display: inline-block;
    color: #4F5E69;
    text-align: center;
    background: #fff;
    vertical-align: middle;
    font-size: 14px;
    font-weight: normal;
    line-height: 34px;
    text-decoration: none;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #D3DDE5;
    border-width: 1px;
    border-style: solid;
}

.button:hover {
    text-decoration: none;
}

.button+.button {
    margin-left: 17px;
}

.button.btn-block {
    display: block;
}

.button:hover {
    color: #4F5E69;
    background: #fff;
    border-color: #4C9DF9;
}

.button.icon-add:before {
    content: "";
    display: inline-block;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-image: url("../img/icon-btn__add.svg");
}

.button.icon-close {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-image: url("../img/icon-btn__close.svg");
}

.button.button-icon {
    min-width: 46px;
    min-height: 46px;
}

.button.button-icon-left {
    padding-left: 61px;
    position: relative;
}

.button.button-icon-left:before {
    content: "";
    display: inline-block;
    width: 46px;
    transition: .1s ease-in-out;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    position: absolute;
    border-color: #D3DDE5;
    border-width: 0 1px 0 0;
    border-style: solid;
}

.button.button-icon-left:hover:before {
    border-color: #4C9DF9;
}

.button.gray {
    padding: 0px 10px;
    color: #77787a;
    background: none;
    border-color: #d1d3d4;
    border-width: 1px;
    border-style: solid;
    font-size: 12px;
    font-weight: normal;
    line-height: 22px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.button.gray:hover {
    color: #fff;
    background: #94bd57;
    border-color: #94bd57;
}

.button.link {
    padding: 5px 35px;
    color: #77787a;
    text-transform: uppercase;
    background: none;
    border: 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
}

.button.link:hover {
    color: #fff;
    background: #4f4f4f;
}

/* Popup */

.fadeScreen {
    display: none;
    z-index: 101;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
}

.popup-box {
    width: 480px;
    padding: 35px 20px 20px;
    text-align: center;
    background: #fff;
    display: none;
    transform: translate(-50%, -50%);
    z-index: 100000;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    position: fixed;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .popup-box {
        width: auto;
        transform: translate(0%, -50%);
        top: 50%;
        left: 15px;
        right: 15px;
        bottom: auto;
        position: fixed;
    }
}

.links-none {
    text-decoration: none;
}

.links-none:hover {
    text-decoration: none;
}

.links-none-underline {
    text-decoration: none;
}

.links-none-underline:hover {
    text-decoration: underline;
}

/* Button Toggle */

.button-toggle {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
}

.button-toggle label {
    padding: 0 0 0 27px;
    margin: 0;
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
}

.button-toggle label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: border .1s ease-in-out;
    top: 2px;
    left: 0px;
    right: auto;
    bottom: auto;
    position: absolute;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.button-toggle input[type=checkbox] {
    display: none;
}

.button-toggle input[type=checkbox]:checked+label:before {
    background: url("../img/icon-check.svg") 50% 50% no-repeat;
    background-size: 10px auto;
    border-color: #4EA1FF;
}

.button-toggle+.button-toggle {
    margin-left: 58px;
}

/****************************************************************** Custom Select Multiple / Single */

.SumoSelect {
    width: 100%;
    text-align: left;
}

.SumoSelect .select-all {
    height: auto;
    padding: 5px 0 2px 35px;
}

.SumoSelect .select-all span i {
    width: 17px;
    height: 17px;
}

.SumoSelect .select-all.selected>span i {
    background-color: #92007c;
}

.SumoSelect .select-all.selected.partial>span i {
    background-color: #ccc;
}

.SumoSelect>.optWrapper>.options li.opt label {
    margin: 0;
    font-weight: normal;
}

.SumoSelect>.optWrapper.multiple>.options li.opt span i {
    width: 17px;
    height: 17px;
}

.SumoSelect>.optWrapper.multiple>.options li.opt.selected span i {
    background-color: #92007c;
}

.SumoSelect.open>.optWrapper {
    top: 31px;
    box-shadow: inherit !important;
    -moz-border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
}

.SumoSelect.open>.optWrapper>.options {
    border-radius: 0;
    -moz-box-shadow: 0 0 4px #00aeef;
    -webkit-box-shadow: 0 0 4px #00aeef;
    box-shadow: 0 0 4px #00aeef;
}

.SumoSelect.open>.optWrapper>.options>li.opt:first-child {
    border-radius: 0;
}

.SumoSelect.open>.CaptionCont {
    border-color: #00aeef;
    box-shadow: inherit !important;
    border-color: #d0d7dd !important;
    -moz-border-radius: 15px 15px 0 0;
    -webkit-border-radius: 15px 15px 0 0;
    border-radius: 15px 15px 0 0;
}

.SumoSelect>.CaptionCont {
    padding: 4px 8px;
    border-color: #d0d7dd;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.SumoSelect>.CaptionCont:hover {
    border-color: #00aeef;
    -moz-box-shadow: 0 0 4px #00aeef;
    -webkit-box-shadow: 0 0 4px #00aeef;
    box-shadow: 0 0 4px #00aeef;
}

.SumoSelect>.CaptionCont>label>i {
    top: 50%;
    right: 5px;
    margin-top: -6px;
    background-image: url("../img/icon-select__drop.svg");
}

.SumoSelect>.CaptionCont>span {
    padding-right: 15px;
}

.SumoSelect:hover>.CaptionCont,
.SumoSelect:focus>.CaptionCont {
    border-color: #00aeef;
    -moz-box-shadow: 0 0 4px #00aeef;
    -webkit-box-shadow: 0 0 4px #00aeef;
    box-shadow: 0 0 4px #00aeef;
}

/****************************************************** Mobile Drop Menu */

.mobile-dropmenu__wrap {
    line-height: 52px;
}

.mobile-dropmenu__button {
    width: 38px;
    height: 38px;
    display: none;
    color: #171717;
    /*background: #171717;*/
    position: absolute;
    z-index: 1000;
    cursor: pointer;
    /*transition: .2s ease-in-out;*/
    font-size: 17px;
    font-weight: normal;
    line-height: 30px;
    border-color: #171717;
    border-width: 3px 0 0;
    border-style: solid;
}

.mobile-dropmenu__button:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 3px;
    background: #171717;
    top: 8px;
    left: 0;
    right: 0;
    bottom: auto;
    position: absolute;
    /*@include border (#171717,3px 0 0);*/
}

.mobile-dropmenu__button:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 3px;
    background: #171717;
    /*transition: .2s ease-in-out;*/
    top: 19px;
    left: 0;
    right: 0;
    bottom: auto;
    position: absolute;
    /*@include border (#171717,3px 0 0);*/
}

.mobile-dropmenu__button:hover {
    opacity: 0.7;
}

.mobile-dropmenu__button.md-position {
    top: 14px;
    right: 30px;
}

.mobile-dropmenu__button.open {
    top: 20px;
    right: 45px;
    transform: rotate(45deg);
}

.mobile-dropmenu__button.open:before {
    display: none;
}

.mobile-dropmenu__button.open:after {
    top: -3px;
    transform: rotate(-90deg);
}

@media screen and (max-width: 991px) {
    .mobile-dropmenu__button {
        display: block;
    }
    .mobile-dropmenu__button+.mobile-dropmenu__box {
        display: none;
    }
}

/*************************************************** Percent Slider Styles */

/* Base Colors */

.range-slider {
    width: 100%;
    position: relative;
}

.range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: none;
    outline: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    /* Range Handle */
}

.range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #4EA1FF;
    cursor: pointer;
    transition: background .15s ease-in-out;
    box-shadow: 0 0 5px #8FA8BA;
}

.range-slider__range::-webkit-slider-thumb:hover {
    background: #1abc9c;
}

.range-slider__range:active::-webkit-slider-thumb {
    background: #1abc9c;
}

.range-slider__range::-moz-range-thumb {
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #4EA1FF;
    cursor: pointer;
    transition: background .15s ease-in-out;
    box-shadow: 0 0 5px #8FA8BA;
}

.range-slider__range::-moz-range-thumb:hover {
    background: #1abc9c;
}

.range-slider__range:active::-moz-range-thumb {
    background: #1abc9c;
}

/* Range Label */

/* Firefox Overrides */

::-moz-range-track {
    background: none;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

.progress-bars {
    height: 5px;
    top: 3px;
    left: 3px;
    right: 3px;
    position: absolute;
    background: #C9D4DD;
}

.progress-bars.percent-10 {
    /*&:after, .progress-point:before, .progress-point:after, .progress-point > div { background: #C9D4DD; }*/
}

.progress-bars.percent-10 .progress-current {
    width: 10%;
}

.progress-bars .progress-current {
    width: 75%;
    height: 5px;
    float: left;
    position: relative;
    background: #4EA1FF;
    border-radius: 5px 0 0 5px;
}

.progress-bars span {
    top: -25px;
    right: -14px;
    position: absolute;
    display: block;
    color: #4F5E69;
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
}

.progress-bars:before {
    content: "";
    width: 9px;
    height: 9px;
    display: block;
    background: #4EA1FF;
    top: -2px;
    left: -2px;
    position: absolute;
    border-radius: 50%;
}

.progress-bars:after {
    content: "";
    width: 9px;
    height: 9px;
    display: block;
    background: #C9D4DD;
    top: -2px;
    right: -2px;
    position: absolute;
    border-radius: 50%;
}

.progress-bars .progress-point {
    width: 100%;
    top: -2px;
    left: 0;
    position: absolute;
}

.progress-bars .progress-point:before {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: -4px;
    display: block;
    background: #C9D4DD;
    left: 25%;
    position: absolute;
    border-radius: 50%;
}

.progress-bars .progress-point:after {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: -5px;
    display: block;
    background: #C9D4DD;
    left: 50%;
    position: absolute;
    border-radius: 50%;
}

.progress-bars .progress-point>div {
    width: 9px;
    height: 9px;
    margin-left: -7px;
    display: block;
    background: #C9D4DD;
    left: 75%;
    position: absolute;
    border-radius: 50%;
}

.progress-bars .progress-point.pp25:before {
    background: #4EA1FF;
}

.progress-bars .progress-point.pp50:after {
    background: #4EA1FF;
}

.progress-bars .progress-point.pp75>div {
    background: #4EA1FF;
}

/*************************************************** Percent Slider Styles END */

/************************************************** Custom Bootstrap Styles */

/*.btn.btn-info {
    color: #4FA1FF;
    text-shadow: none;
    background: none;
    border-color: #4FA1FF;
}

.btn.btn-info:hover {
    color: #4FA1FF;
    background: #fff;
}*/

.btn.btn-primary {
    color: #fff;
    text-shadow: none;
    background: #4FA1FF;
    border-color: #4FA1FF;
}

.btn.btn-primary:hover {
    color: #fff;
    background: #368CEF;
    border-color: #368CEF;
}

.btn.btn-primary:not(:focus) {
    box-shadow: inherit;
}

.btn.btn-icon {
    padding-left: 38px;
    background-position: 10px 50%;
    background-size: auto 17px;
    background-repeat: no-repeat;
}

.btn.btn-icon.btn-icon__edit {
    background-image: url("../img/icon-btn__edit.svg");
}

.btn.btn-icon.btn-icon__delete {
    color: #ff2d00;
    background-image: url("../img/icon-btn__delete.svg");
}

.btn.btn-icon.btn-icon__only {
    min-width: 25px;
    min-height: 25px;
    padding: 0;
    background-position: 50% 50%;
}

.btn i.fa,
.btn i.fas {
    margin-right: 10px;
}

/* Dropdown */

.dropdown-menu__wrap {
    position: relative;
}

/* Modals */

.modal-dialog iframe {
    width: 100%;
    min-height: 400px;
    margin-bottom: -7px;
}

.carousel-control.left {
    background: url("../img/btn-case__slider.svg") 50% 50% no-repeat;
    background-size: 50px 60px;
    transform: scale(-1);
    left: -205px;
}

.carousel-control.right {
    background: url("../img/btn-case__slider.svg") 50% 50% no-repeat;
    background-size: 50px 60px;
    right: -205px;
}

/********************************************** Custom Bootstrap Styles END */

.cbalink {
    display: none;
}

/* Navigation */

/* Menu Top */

.menu-top__main {
    padding: 0px 0 0;
    clear: both;
}

.menu-top__main:before {
    content: " ";
    display: table;
}

.menu-top__main:after {
    content: " ";
    display: table;
    clear: both;
}

.menu-top__main>li {
    float: left;
    font-size: 14px;
    font-weight: normal;
    line-height: 60px;
}

@media screen and (min-width: 1340px) {
    .menu-top__main>li {
        padding-right: 0px;
    }
}

.btn-nav__top {
    padding: 3px 10px 3px 35px;
    display: block;
    letter-spacing: normal;
    background-position: 5px 50%;
    background-repeat: no-repeat;
    font-size: 14px;
    font-weight: normal;
    line-height: 54px;
}

.btn-nav__top:hover {
    background-color: #29333B;
}

.btn-nav__top span.show-name {
    display: block;
}

@media screen and (min-width: 1340px) {
    .btn-nav__top {
        padding: 3px 15px 3px 50px;
        background-position: 20px 50%;
    }
}

@media screen and (max-width: 1199px) {
    .btn-nav__top:not(.btn-nav__time):not(.btn-nav__info) {
        min-height: 60px;
        padding: 3px 28px;
        background-position: 50% 50%;
    }
    .btn-nav__top:not(.btn-nav__time):not(.btn-nav__info) span.show-name {
        display: none;
    }
}

.btn-nav__time {
    background-image: url("../img/icon-btn__time.svg");
    background-size: 20px auto;
    font-size: 18px;
    font-weight: normal;
    line-height: 54px;
    color: #fff;
}

.btn-nav__time:hover {
    color: #4C9DF9;
}

.btn-nav__time i.fas {
    margin-left: 10px;
}

.btn-nav__team {
    background-image: url("../img/icon-btn__team.svg");
    background-size: 21px auto;
    color: #fff;
}

.btn-nav__team:hover {
    color: #77C123;
}

.btn-nav__account {
    display: inline-block;
    background-image: url("../img/icon-btn__account.svg");
    background-size: 21px auto;
    color: #fff;
    border-color: #525252;
    border-width: 0 0 0 1px;
    border-style: solid;
}

.btn-nav__account:hover {
    color: #fff;
}

.btn-nav__region {
    background-image: url("../img/icon-btn__region.svg");
    background-size: 24px auto;
    color: #fff;
}

.btn-nav__region:hover {
    color: #B581F2;
}

.btn-nav__decision {
    background-image: url("../img/icon-btn__decision.svg");
    background-size: 22px auto;
    color: #fff;
}

.btn-nav__decision:hover {
    color: #FA7D22;
}

.btn-nav__user {
    padding: 12px 19px;
    display: inline-block;
    text-align: left;
    vertical-align: top;
    letter-spacing: normal;
    font-size: 13px;
    font-weight: normal;
    line-height: 18px;
    color: #D1D1D1;
}

.btn-nav__user:hover {
    background-color: #29333B;
}

.btn-nav__user:hover {
    color: #fff;
}

.btn-nav__user em {
    display: block;
    color: #fff;
}

@media screen and (min-width: 320px) and (max-width: 479px) {
    .btn-nav__user {
        padding: 12px 10px;
    }
}

.btn-nav__info {
    min-width: 70px;
    min-height: 60px;
    padding: 10px;
    display: inline-block;
    vertical-align: top;
    background-image: url("../img/icon-btn__ask.svg");
    background-size: 24px auto;
    background-position: 50% 50%;
    border-color: #525252;
    border-width: 0 0 0 1px;
    border-style: solid;
}

@media screen and (min-width: 320px) and (max-width: 479px) {
    .btn-nav__info {
        min-width: 35px;
    }
}

/* Main Menu Second */

.menu-second__wrap {
    position: relative;
    z-index: 1;
    background: #FBFBFB;
    border-color: #E4EAEF;
    border-width: 1px 0;
    border-style: solid;
    -moz-box-shadow: 0 0 7px #B8C1C9;
    -webkit-box-shadow: 0 0 7px #B8C1C9;
    box-shadow: 0 0 7px #B8C1C9;
}

.menu-second__wrap.priority-false {
    z-index: initial;
}

/* Menu Top Second */

.menu-top__second {
    clear: both;
}

.menu-top__second:before {
    content: " ";
    display: table;
}

.menu-top__second:after {
    content: " ";
    display: table;
    clear: both;
}

.menu-top__second>li {
    float: left;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    line-height: 52px;
    border-color: #E4EAEF;
    border-width: 0 1px 0 0;
    border-style: solid;
}

.menu-top__second>li>a {
    padding: 10px 30px;
    margin-bottom: -1px;
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: 32px;
    border-color: transparent;
    border-width: 0 0 1px;
    border-style: solid;
    color: #313E47;
}

.menu-top__second>li>a:hover {
    color: #313E47;
}

.menu-top__second>li>a:hover,
.menu-top__second>li>a.active {
    background: #fff;
    border-color: #4EA1FF;
}

.menu-top__second>li>a:hover:after,
.menu-top__second>li>a.active:after {
    border-left-color: #fff !important;
}

.menu-top__second>li>a i.fa {
    margin-left: 12px;
    color: #A7ABBA;
    font-size: 14px;
    vertical-align: middle;
}

.menu-top__second>li>a em.icon-badge {
    min-width: 24px;
    padding: 0 3px;
    margin-left: 12px;
    display: inline-block;
    color: #4C9DF9;
    text-align: center;
    background: rgba(78, 161, 255, 0.1);
    font-size: 13px;
    font-weight: normal;
    line-height: 22px;
    border-color: #4C9DF9;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.menu-top__second>li>a.button-case {
    padding-left: 42px;
    background-position: 20px 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon-btn__case.svg");
    background-size: 12px auto;
}

.menu-top__second.third-menu li a {
    padding: 10px 15px;
    margin: 0;
    border: 0;
}

.menu-top__second.third-menu li a:hover {
    background-color: #EFF2F5;
}

.menu-top__second.third-menu li a.button-info {
    padding-left: 35px;
    background-position: 5px 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon-btn__info.svg");
    background-size: 23px auto;
}

@media screen and (min-width: 1340px) {
    .menu-top__second.third-menu li a {
        padding: 10px 25px;
    }
    .menu-top__second.third-menu li a.button-info {
        padding-left: 50px;
        background-position: 20px 50%;
    }
}

.menu-top__second.has-caret li a {
    position: relative;
}

.menu-top__second.has-caret li a:before {
    content: "";
    display: inline-block;
    z-index: 1;
    transform: translateY(-50%);
    top: 50%;
    left: auto;
    right: -18px;
    bottom: auto;
    position: absolute;
    border-color: transparent transparent transparent #E4EAEF;
    border-width: 9px;
    border-style: solid;
}

.menu-top__second.has-caret li a:after {
    content: "";
    display: inline-block;
    z-index: 1;
    transform: translateY(-50%);
    top: 50%;
    left: auto;
    right: -16px;
    bottom: auto;
    position: absolute;
    border-color: transparent transparent transparent #FBFBFB;
    border-width: 8px;
    border-style: solid;
}

@media screen and (min-width: 320px) and (max-width: 479px) {
    .menu-top__second.has-caret li {
        font-size: 13px;
    }
    .menu-top__second.has-caret li a {
        padding: 10px;
        font-size: 13px;
    }
}

@media screen and (max-width: 991px) {
    .menu-top__second.mobile-dropmenu__box {
        width: 250px;
        background: #FAF4F5;
        z-index: 1000;
        top: 50px;
        left: auto;
        right: 15px;
        bottom: auto;
        position: absolute;
    }
    .menu-top__second.mobile-dropmenu__box li {
        float: none;
        border: 0;
    }
}

/*------------------------------ Drop Down Menu Styles */

.dropdown-menu.custom-menu__time {
    padding: 10px;
}

.dropdown-menu.custom-menu__time li a {
    padding: 7px 5px;
    color: #A7ABBA;
}

.dropdown-menu.custom-menu__time li a em {
    min-width: 70px;
    padding-right: 10px;
    display: inline-block;
    color: #4F5E69;
}

.dropdown-menu.custom-menu__time li:not(:first-child) {
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.dropdown-menu.custom-menu__filter {
    width: 100%;
    padding: 10px 0;
    top: 120%;
    background: #F4F7FA;
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.dropdown-menu.custom-menu__filter li {
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    line-height: 23px;
}

.dropdown-menu.custom-menu__filter li a {
    padding: 10px 20px;
}

.dropdown-menu.custom-menu__filter li a:hover,
.dropdown-menu.custom-menu__filter li a.active {
    margin: 0 -10px;
    background: #E4EAEF;
}

.dropdown-menu.custom-menu__filter li:not(:first-child) a {
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.dropdown-menu.custom-menu__filter:before {
    content: "";
    display: inline-block;
    z-index: 1;
    transform: translateX(-50%);
    top: -18px;
    left: 50%;
    right: auto;
    bottom: auto;
    position: absolute;
    border-color: transparent transparent #E4EAEF transparent;
    border-width: 9px;
    border-style: solid;
}

.dropdown-menu.custom-menu__filter:after {
    content: "";
    display: inline-block;
    z-index: 1;
    transform: translateX(-50%);
    top: -16px;
    left: 50%;
    right: auto;
    bottom: auto;
    position: absolute;
    border-color: transparent transparent #F4F7FA transparent;
    border-width: 8px;
    border-style: solid;
}

/* Case Elements */

.section-not__available {
    padding: 30px;
    text-align: center;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: normal;
    line-height: 27px;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    position: absolute;
}

.section-not__available .image {
    padding: 0 0 42px;
}

.section-not__available .image img {
    max-width: 70px;
}

.case-content__wrap {
    padding-top: 47px;
}

/* Timer */

.case-timer__box {
    padding: 0 0 16px;
    clear: both;
}

.case-timer__box:before {
    content: " ";
    display: table;
}

.case-timer__box:after {
    content: " ";
    display: table;
    clear: both;
}

.case-timer__box li {
    float: left;
    color: #A7ABBA;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    line-height: 14px;
}

.case-timer__box li.icon {
    padding: 3px 20px 0 0;
}

.case-timer__box li.icon span {
    padding: 42px 0 0;
    display: block;
    background: url("../img/icon-timer.svg") 50% 0 no-repeat;
    background-size: 100% 37px;
}

.case-timer__box li.time {
    min-width: 60px;
    min-height: 65px;
    padding: 5px;
    margin-right: 27px;
    text-align: center;
    background: #fff;
    -moz-box-shadow: 0 0 5px rgba(129, 163, 185, 0.3);
    -webkit-box-shadow: 0 0 5px rgba(129, 163, 185, 0.3);
    box-shadow: 0 0 5px rgba(129, 163, 185, 0.3);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.case-timer__box li.time em {
    padding: 7px 0;
    display: block;
    font-size: 25px;
    font-weight: normal;
    line-height: 25px;
}

.case-timer__box li.time+li.time {
    position: relative;
}

.case-timer__box li.time+li.time:before {
    content: "";
    display: inline-block;
    content: ":";
    font-size: 29px;
    font-weight: normal;
    line-height: 29px;
    top: 7px;
    left: -17px;
    right: auto;
    bottom: auto;
    position: absolute;
}

.case-timer__btn {
    padding-top: 17px;
    padding-bottom: 16px;
}

/*Start Section*/

.case-start__section {
    padding: 45px 0 20px;
    min-height: 402px;
    color: #fff;
    text-align: center;
    background: url("../img/bg-start__case.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.case-start__section .title {
    padding: 0 0 50px;
    font-size: 24px;
    font-weight: normal;
    line-height: 25px;
}

.case-start__section .title.s1 {
    font-size: 18px;
    font-weight: normal;
    line-height: 21px;
}

.case-start__section .title.s2 {
    font-size: 50px;
    font-weight: bold;
    line-height: 48px;
}

.case-start__section .title.s2 span {
    padding: 7px 0 0;
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 21px;
}

.case-start__section .title.p1 {
    padding: 55px 0 0;
}

.case-start__section .title.p2 {
    padding: 0 0 21px;
}

.case-start__section .title.p3 {
    padding: 25px 0 0;
}

.case-start__section a.button-play {
    margin: 0 auto;
    display: block;
}

.case-start__section a.button-play img {
    max-width: 131px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.case-start__section a.button-play:hover img {
    -moz-box-shadow: 0 0 15px #4EA1FF;
    -webkit-box-shadow: 0 0 15px #4EA1FF;
    box-shadow: 0 0 15px #4EA1FF;
}

.case-start__section img.img-result {
    max-width: 65px;
    height: auto;
}

.case-start__section p.text {
    padding: 15px 0 0;
}

.case-start__section p.text.s1 {
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
}

.case-start__section p.text.p1 {
    padding-top: 45px;
}

.case-start__section span.icon-hour {
    padding-left: 25px;
    display: inline-block;
    color: #C9D4DD;
    background: url("../img/icon-timer__hour.svg") 0 50% no-repeat;
    background-size: auto 17px;
    font-size: 15px;
    font-weight: normal;
    line-height: 18px;
}

.case-start__section span.icon-hour b {
    color: #fff;
}

.case-start__section span.icon-score {
    padding-left: 25px;
    margin-left: 41px;
    display: inline-block;
    color: #C9D4DD;
    background: url("../img/icon-timer__score.svg") 0 50% no-repeat;
    background-size: auto 17px;
    font-size: 15px;
    font-weight: normal;
    line-height: 18px;
}

.case-start__section span.icon-score b {
    color: #fff;
}

.case-start__section.css-end {
    background-image: url("../img/bg-end__case.jpg");
}

/* Content Section */

.case-content__section {
    padding: 30px 43px 55px;
    background: #fff;
    clear: both;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 0 1px 1px;
    border-style: solid;
    -moz-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    -webkit-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
}

.case-content__section:before {
    content: " ";
    display: table;
}

.case-content__section:after {
    content: " ";
    display: table;
    clear: both;
}

.case-content__section .title-primary {
    padding: 0 0 25px;
    font-size: 24px;
    font-weight: normal;
    line-height: 25px;
}

.case-content__section .title-primary span.status {
    padding: 0 8px;
    margin-left: 18px;
    display: inline-block;
    color: #F87C21;
    background: rgba(246, 123, 34, 0.15);
    vertical-align: top;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.case-content__section .title {
    padding: 0 0 20px;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
}

.case-content__section .title.p1 {
    padding: 0 0 3px;
}

.case-content__section p {
    padding: 22px 0 0;
}

.case-option__box {
    padding: 17px 0 0;
    clear: both;
}

.case-option__box:before {
    content: " ";
    display: table;
}

.case-option__box:after {
    content: " ";
    display: table;
    clear: both;
}

.case-option__box li {
    float: left;
}

.case-option__box li.icon {
    width: 50px;
}

.case-option__box li.icon span {
    width: 35px;
    height: 35px;
    padding: 3px;
    display: block;
    text-align: center;
    background: #fff;
    cursor: default;
    font-size: 20px;
    font-weight: normal;
    line-height: 25px;
    border-color: #4C9DF9;
    border-width: 2px;
    border-style: solid;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.case-option__box li.icon span.green {
    color: #fff;
    background: #5FB515;
    border-color: #5FB515;
}

.case-option__box li.icon span.red {
    color: #fff;
    background: #ff2d00;
    border-color: #ff2d00;
}

.case-option__box li.text {
    width: calc(100% - 50px);
}

.case-option__box li.text.indent {
    padding-top: 7px;
}

/* Steps */

.case-steps__box {
    max-width: 590px;
    padding: 45px 0 0;
    margin: 0 auto;
    text-align: center;
    letter-spacing: -0.3em;
    clear: both;
}

.case-steps__box:before {
    content: " ";
    display: table;
}

.case-steps__box:after {
    content: " ";
    display: table;
    clear: both;
}

.case-steps__box li {
    width: 20%;
    display: inline-block;
    letter-spacing: normal;
    text-align: left;
    position: relative;
    font-size: 22px;
    font-weight: normal;
    line-height: 39px;
}

.case-steps__box li span {
    min-width: 39px;
    min-height: 39px;
    padding: 3px 5px;
    display: inline-block;
    text-align: center;
    background: #fff;
    vertical-align: middle;
    position: relative;
    cursor: default;
    z-index: 1;
    font-size: 22px;
    font-weight: normal;
    line-height: 31px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.case-steps__box li span.end {
    background: #fff url("../img/icon-step__end.svg") 50% 1px no-repeat;
    background-size: 103% auto;
    top: 0px;
    left: auto;
    right: -39px;
    bottom: auto;
    position: absolute;
}

.case-steps__box li:before {
    content: "";
    display: inline-block;
    height: 8px;
    margin-top: -4px;
    background: #E4EAEF;
    top: 50%;
    left: 10px;
    right: -3px;
    bottom: auto;
    position: absolute;
}

.case-steps__box li.active span {
    line-height: 29px;
    border-color: #4C9DF9;
    border-width: 2px;
    border-style: solid;
}

.case-steps__box li.active:before {
    background: #4C9DF9;
}

.case-steps__box.csb-ready li:before {
    background: #4C9DF9;
}

.case-steps__box.csb-ready li span {
    color: #fff;
    background-color: #4C9DF9;
    border-color: #4C9DF9;
}

.case-steps__box.csb-ready li span.red {
    color: #fff;
    background: #ff2d00;
    border-color: #ff2d00;
}

@media screen and (max-width: 767px) {
    .case-steps__box {
        padding-right: 18px;
    }
    .case-steps__box li {
        width: 15%;
    }
}

/* Administration */

.main-content__box {
    min-height: 100px;
    padding: 15px 0 10px;
    background: #fff;
    position: relative;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

.main-content__box.with-shadow {
    -moz-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    -webkit-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
}

.main-content__box img.img-chart {
    width: 100%;
    max-width: auto;
}

.main-content__box .title {
    padding: 5px 18px 15px;
    font-size: 20px;
    font-weight: normal;
    line-height: 21px;
}

.main-content__box.projects-mode {
    padding-bottom: 0;
    overflow: hidden;
}

.main-content__box.projects-mode.not-available {
    color: #9BA1A5;
    background: #F9F9F9;
    opacity: 0.9;
}

.main-content__box.projects-mode.not-available .project-few__text {
    background: #F9F9F9;
}

.main-content__box.reset-mode {
    padding: 0;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .main-content__box {
        min-height: inherit;
    }
}

/*Menu*/

.admin-team__menu li {
    border-color: #D3DDE5;
    border-width: 0 0 1px;
    border-style: solid;
}

.admin-team__menu li a {
    padding: 10px 32px;
    display: block;
    background: linear-gradient(to top, #E5ECF4, #fff);
    font-size: 15px;
    font-weight: normal;
    line-height: 25px;
    color: #313E47;
}

.admin-team__menu li a:hover {
    color: #4EA1FF;
}

.admin-team__menu li a.active {
    color: #4EA1FF;
}

/*Custom Rows*/

.admin-row__1 {
    padding: 0 20px 20px;
    position: relative;
}

.admin-row__1:before {
    content: "";
    display: inline-block;
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
    top: auto;
    left: 35px;
    right: 35px;
    bottom: 0;
    position: absolute;
}

.admin-row__2 {
    padding: 17px 20px 20px;
}

.admin-row__3 {
    padding: 0 0 38px;
}

.admin-row__4 {
    padding: 0 0 15px;
}

.admin-row__4.p1 {
    padding-top: 35px;
}

.admin-row__5 {
    padding: 15px 0 0;
}

.admin-row__5 a.btn+a.btn {
    margin-left: 15px;
}

.admin-row__6 {
    padding: 0 0 22px;
}

.admin-row__6 .title {
    padding-top: 5px;
}

.admin-row__6 .title label {
    margin: 0;
    font-weight: normal;
}

.admin-row__6 .form input[type="text"] {
    width: 100%;
    line-height: 22px;
}

.admin-row__6+.admin-row__4 {
    padding-top: 12px;
}

.admin-row__6.p1 {
    padding: 30px 0 0;
}

.admin-row__7 {
    padding: 0 0 35px;
}

.admin-row__divider {
    padding: 35px 0 0;
    clear: both;
    border-color: #E4EAEF;
    border-width: 0 0 1px;
    border-style: solid;
}

.admin-row__divider:before {
    content: " ";
    display: table;
}

.admin-row__divider:after {
    content: " ";
    display: table;
    clear: both;
}

/*Title*/

.admin-team__title {
    font-size: 20px;
    font-weight: bold;
    line-height: 34px;
}

.admin-team__title em {
    color: #787878;
}

.admin-team__title.small {
    padding: 0 0 30px;
    font-size: 16px;
    font-weight: normal;
    line-height: 19px;
}

.admin-team__title.xsmall {
    padding: 0 0 23px;
    font-size: 14px;
    font-weight: normal;
    line-height: 17px;
}

.admin-team__title.reset {
    padding: 0px;
    padding-top: 4px;
}

.admin-team__title input[type="text"] {
    width: 100%;
    padding-bottom: 5px;
    font-size: 20px;
}

.admin-team__title.p1 {
    padding: 32px 0 7px;
}

.admin-team__title.p2 {
    padding: 30px 0 0;
}

/*Add*/

/*Search*/

.admin-team__search {
    position: relative;
}

.admin-team__search input[type="text"] {
    width: 100%;
}

.admin-team__search input[type="submit"] {
    width: 17px;
    height: 17px;
    padding: 0;
    margin-top: -8px;
    display: block;
    border: 0;
    cursor: pointer;
    background: url("../img/icon-btn__search.svg") 50% 50% no-repeat;
    background-size: auto 100%;
    top: 50%;
    left: auto;
    right: 18px;
    bottom: auto;
    position: absolute;
}

/*Total*/

.admin-team__total {
    padding: 10px 0 0;
    color: #A7ABBA;
    font-size: 14px;
    font-weight: normal;
    line-height: 17px;
}

/*Total*/

.admin-team__users {
    width: 100%;
    max-height: 377px;
    padding: 15px 0 0;
    overflow-y: auto;
    clear: both;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

.admin-team__users:before {
    content: " ";
    display: table;
}

.admin-team__users:after {
    content: " ";
    display: table;
    clear: both;
}

.admin-team__users li {
    padding: 0 16px 8px;
}

.admin-team__users li:last-child {
    padding-bottom: 15px;
}

.admin-team__users.short-mode {
    max-height: 132px;
}

.admin-team__users.xshort-mode {
    max-height: 114px;
}

/* Add Title */

.admin-team__users-title {
    width: 100%;
    padding: 12px 15px;
    clear: both;
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    border-color: #E4EAEF;
    border-width: 1px 1px 0;
    border-style: solid;
}

.admin-team__users-title:before {
    content: " ";
    display: table;
}

.admin-team__users-title:after {
    content: " ";
    display: table;
    clear: both;
}

.admin-team__users-title li {
    width: 48%;
    float: left;
}

.admin-team__users-title li:last-child {
    float: right;
    text-align: right;
}

.admin-team__users-title+.admin-team__users-add {
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

/* Add */

.admin-team__users-add {
    width: 100%;
    max-height: 150px;
    padding: 15px 15px 0;
    overflow-y: auto;
    clear: both;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

.admin-team__users-add:before {
    content: " ";
    display: table;
}

.admin-team__users-add:after {
    content: " ";
    display: table;
    clear: both;
}

.admin-team__users-add li {
    padding: 0 6px 6px 0;
    float: left;
}

.admin-team__users-add li:last-child {
    padding-bottom: 15px;
}

.admin-team__users-add span.tag {
    padding: 5px 12px;
    display: inline-block;
    background: #F4F7FA;
    cursor: default;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

.admin-team__users-add span.tag:hover {
    border-color: #B9BBBD;
}

.admin-team__users-add span.tag:hover i.fas {
    color: #ff2d00;
}

.admin-team__users-add span.tag i.fas {
    margin-left: 12px;
    color: #A7ABBA;
    top: 1px;
    position: relative;
    cursor: pointer;
}

/* Note */

.admin-team__note {
    padding: 15px 0 0;
    color: #A7ABBA;
    font-size: 12px;
    font-weight: normal;
    line-height: 15px;
}

/*Add*/

.admin-team__deadline {
    padding: 16px 0 0;
    clear: both;
}

.admin-team__deadline:before {
    content: " ";
    display: table;
}

.admin-team__deadline:after {
    content: " ";
    display: table;
    clear: both;
}

.admin-team__deadline>li {
    float: left;
}

.admin-team__deadline>li.title {
    width: 25%;
    padding-top: 5px;
}

.admin-team__deadline>li.title.short {
    width: 18%;
    padding: 0;
}

.admin-team__deadline>li.calendar {
    width: 45%;
    padding-left: 10px;
    position: relative;
}

.admin-team__deadline>li.calendar input[type="text"] {
    width: 100%;
    padding: 4px 30px;
    line-height: 22px;
    text-align: center;
}

.admin-team__deadline>li.calendar:before {
    content: "";
    display: inline-block;
    content: "\f073";
    color: #A7ABBA;
    font-family: "Font Awesome 5 Free";
    top: 4px;
    left: auto;
    right: 15px;
    bottom: auto;
    position: absolute;
}

.admin-team__deadline>li.calendar.approve {
    width: 35%;
}

.admin-team__deadline>li.calendar.approve:before {
    margin-right: 12px;
    position: static;
}

.admin-team__deadline>li.calendar.approve+li.time {
    text-align: left;
}

.admin-team__deadline>li.time {
    width: 30%;
    padding-left: 16px;
    text-align: center;
}

.admin-team__deadline>li.time .SumoSelect {
    text-align: center;
}

.admin-team__deadline>li.generate {
    width: 70%;
}

.admin-team__deadline.gen-mode {
    padding: 35px 0 0;
}

/*-------------------------------- Statistics */

.admin-statistics__title {
    padding: 0 0 20px;
    font-size: 20px;
    font-weight: normal;
    line-height: 23px;
}

.admin-statistics__item {
    padding: 18px 18px 12px;
    -moz-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    -webkit-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
}

.admin-statistics__item .icon img {
    max-height: 20px;
}

.admin-statistics__item span.total {
    padding: 12px 0 0;
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 38px;
}

.admin-statistics__item span.total.green {
    color: #21C171;
}

.admin-statistics__item span.total.blue {
    color: #4EA1FF;
}

.admin-statistics__item span.total.purple {
    color: #B08BD5;
}

.admin-statistics__item p.text {
    padding: 12px 0 0;
    font-size: 15px;
    font-weight: normal;
    line-height: 17px;
}

/*--------------------------------- Main Table */

.main-table {
    width: 100%;
    display: table;
}

.main-table>.m-row {
    display: table-row;
}

.main-table>.m-row:hover {
    background: rgba(79, 161, 255, 0.1);
}

.main-table>.m-row>.m-col {
    padding: 10px 18px;
    display: table-cell;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.main-table>.m-row.caption,
.main-table.fin-balance__mode>.m-row.total-data {
    background: #F4F7FA;
}

.main-table>.m-row .text-light {
    color: #A7ABBA;
}

.main-table>.m-row .text-green {
    color: #21C171;
}

.main-table>.m-row i.fa-caret-up {
    margin-right: 7px;
    color: #5FB515;
}

.main-table>.m-row i.fa-caret-down {
    margin-right: 7px;
    color: #ff2d00;
}

.main-table>.m-row span.buttons-control {
    display: none;
}

.main-table.users-list__mode>.m-row:hover>.m-col:nth-child(4) a.btn {
    display: inline-block;
}

.main-table.users-list__mode>.m-row>.m-col:nth-child(1) {
    width: 34%;
}

.main-table.users-list__mode>.m-row>.m-col:nth-child(2) {
    width: 28%;
    color: #A7ABBA;
}

.main-table.users-list__mode>.m-row>.m-col:nth-child(3) {
    width: 24%;
    color: #A7ABBA;
}

.main-table.users-list__mode>.m-row>.m-col:nth-child(4) {
    width: 14%;
}

.main-table.users-list__mode>.m-row>.m-col:nth-child(4) a.btn {
    margin: -4px 0;
    display: none;
}

.main-table.users-list__mode>.m-row>.m-col:nth-child(4) a.btn+a.btn {
    margin-left: 15px;
}

.main-table.users-list__mode>.m-row.caption>.m-col,
.main-table.fin-balance__mode.users-list__mode>.m-row.total-data>.m-col {
    color: #55595C;
}

.main-table.admin-stat__mode {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 0 1px 1px;
    border-style: solid;
    -moz-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    -webkit-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
}

.main-table.admin-stat__mode>.m-row {
    background: #fff;
}

.main-table.admin-stat__mode>.m-row:hover {
    background: rgba(79, 161, 255, 0.1);
}

.main-table.admin-stat__mode>.m-row.caption,
.main-table.fin-balance__mode.admin-stat__mode>.m-row.total-data {
    background: #F4F7FA;
}

.main-table.admin-stat__mode>.m-row>.m-col {
    text-align: center;
}

.main-table.admin-stat__mode>.m-row>.m-col:nth-child(1) {
    width: 25%;
    text-align: left;
}

.main-table.admin-stat__mode>.m-row>.m-col:nth-child(2) {
    width: 15%;
    color: #A7ABBA;
}

.main-table.admin-stat__mode>.m-row>.m-col:nth-child(3) {
    width: 20%;
    color: #A7ABBA;
}

.main-table.admin-stat__mode>.m-row>.m-col:nth-child(4) {
    width: 20%;
    color: #A7ABBA;
}

.main-table.admin-stat__mode>.m-row>.m-col:nth-child(5) {
    width: 20%;
    color: #A7ABBA;
}

.main-table.admin-stat__mode>.m-row.caption>.m-col,
.main-table.fin-balance__mode.admin-stat__mode>.m-row.total-data>.m-col {
    color: #55595C;
}

.main-table.users-member__mode>.m-row>.m-col:nth-child(1) {
    width: 70%;
}

.main-table.users-member__mode>.m-row>.m-col:nth-child(2) {
    width: 30%;
}

.main-table.team-rating__mode>.m-row>.m-col:nth-child(1) {
    width: 15%;
}

.main-table.team-rating__mode>.m-row>.m-col:nth-child(2) {
    width: 65%;
}

.main-table.team-rating__mode>.m-row>.m-col:nth-child(3) {
    width: 20%;
}

.main-table.ask-answer__mode>.m-row>.m-col:nth-child(1) {
    width: 7%;
}

.main-table.ask-answer__mode>.m-row>.m-col:nth-child(2) {
    width: 57%;
}

@media screen and (min-width: 992px) {
    .main-table.ask-answer__mode>.m-row>.m-col:nth-child(2) {
        padding-right: 100px;
    }
}

.main-table.ask-answer__mode>.m-row>.m-col:nth-child(3) {
    width: 12%;
}

.main-table.ask-answer__mode>.m-row>.m-col:nth-child(4) {
    width: 12%;
}

.main-table.ask-answer__mode>.m-row>.m-col:nth-child(5) {
    width: 12%;
    vertical-align: middle;
}

.main-table.projects-modal__mode>.m-row>.m-col:nth-child(1) {
    width: 50%;
}

.main-table.projects-modal__mode>.m-row>.m-col:nth-child(2) {
    width: 25%;
}

.main-table.projects-modal__mode>.m-row>.m-col:nth-child(3) {
    width: 25%;
}

.main-table.map-data__mode>.m-row.caption,
.main-table.fin-balance__mode.map-data__mode>.m-row.total-data {
    background: #E9EFF4;
}

.main-table.map-data__mode>.m-row>.m-col:nth-child(1) {
    width: 50%;
}

.main-table.map-data__mode>.m-row>.m-col:nth-child(2) {
    width: 25%;
}

.main-table.map-data__mode>.m-row>.m-col:nth-child(3) {
    width: 25%;
}

.main-table.map-key__mode>.m-row>.m-col {
    padding: 10px 15px;
}

.main-table.map-key__mode>.m-row>.m-col:nth-child(1) {
    width: 42%;
}

.main-table.map-key__mode>.m-row>.m-col:nth-child(2) {
    width: 12%;
}

.main-table.map-key__mode>.m-row>.m-col:nth-child(3) {
    width: 12%;
}

.main-table.map-key__mode>.m-row>.m-col:nth-child(4) {
    width: 12%;
}

.main-table.map-key__mode>.m-row>.m-col:nth-child(5) {
    width: 12%;
}

.main-table.map-key__mode>.m-row>.m-col:nth-child(6) {
    width: 12%;
}

.main-table.fin-balance__mode>.m-row.total-data>.m-col {
    text-transform: uppercase;
    font-weight: bold;
}

.main-table.fin-balance__mode>.m-row>.m-col {
    padding: 10px 15px;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(1) {
    width: 23%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(2) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(3) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(4) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(5) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(6) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(7) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(8) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(9) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(10) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(11) {
    width: 7%;
}

.main-table.fin-balance__mode>.m-row>.m-col:nth-child(12) {
    width: 7%;
}

.main-table.fin-balance__mode.fin-table__caption>.m-row>.m-col {
    border-width: 0 0 1px;
}

/* Personal Cabinet */

.lk-table__tabs {
    margin-bottom: -1px;
    position: relative;
    clear: both;
}

.lk-table__tabs:before {
    content: " ";
    display: table;
}

.lk-table__tabs:after {
    content: " ";
    display: table;
    clear: both;
}

.lk-table__tabs li {
    display: table-cell;
    font-size: 13px;
    font-weight: normal;
    line-height: 15px;
    border-color: transparent;
    border-width: 0 0 1px;
    border-style: solid;
}

.lk-table__tabs li>a {
    padding: 14px 14px;
    display: block;
    color: #A7ABBA;
}

.lk-table__tabs li>a:hover {
    color: #111;
}

.lk-table__tabs li.active {
    border-color: #4C9DF9;
}

.lk-table__tabs li.active a {
    color: #111;
}

.lk-personal__title {
    padding: 0 30px 15px;
    font-size: 18px;
    font-weight: normal;
    line-height: 21px;
}

.lk-personal__data {
    max-width: 650px;
    padding: 20px 30px 0;
    clear: both;
}

.lk-personal__data:before {
    content: " ";
    display: table;
}

.lk-personal__data:after {
    content: " ";
    display: table;
    clear: both;
}

.lk-personal__data>li {
    padding-right: 15px;
    float: left;
}

.lk-personal__data>li.name {
    width: 30%;
    padding-top: 9px;
}

.lk-personal__data>li.form {
    width: 40%;
}

.lk-personal__data>li.edit {
    width: 30%;
}

.lk-personal__data input[type="text"],
.lk-personal__data input[type="password"] {
    width: 100%;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
    border-color: #d0d7dd;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.lk-personal__data input[type="text"]:focus,
.lk-personal__data input[type="password"]:focus {
    border-color: #00aeef;
}

.lk-personal__data label {
    margin: 0;
    font-weight: normal;
}

.lk-personal__data button.btn-primary {
    width: 100%;
    max-width: 170px;
    margin-top: 15px;
}

/* Projects */

.project-filter__box {
    padding: 0 15px;
    clear: both;
}

.project-filter__box:before {
    content: " ";
    display: table;
}

.project-filter__box:after {
    content: " ";
    display: table;
    clear: both;
}

.project-filter__box span.name {
    padding-right: 12px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: normal;
    line-height: 32px;
}

.project-filter__box .SumoSelect {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.project-filter__box .SumoSelect>.CaptionCont>span {
    padding-right: 35px;
}

.project-filter__box .SumoSelect+span.name {
    margin-left: 27px;
}

.project-filter__box em.line-between {
    padding: 0 5px;
    display: inline-block;
    color: #A7ABBA;
    vertical-align: middle;
}

.project-filter__box em.line-between+.button-toggle {
    margin-left: 23px;
}

.project-filter__box em.line-between+span.name {
    padding-left: 25px;
}

.project-filter__box input.from-to__form {
    max-width: 100px;
    line-height: 22px;
}

/* Few Projects */

.project-row__item {
    padding-top: 27px;
    padding-bottom: 15px;
    margin: 0;
}

.project-row__box {
    padding-top: 30px;
    margin: 0;
}

.project-few__status-wrap {
    padding: 0 15px;
}

.project-few__status {
    padding: 0 8px;
    display: inline-block;
    color: #A7ABBA;
    text-align: center;
    cursor: default;
    background: #F6F6F6;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    border-color: #A7ABBA;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.project-few__status.available {
    color: #21C171;
    background: rgba(33, 193, 113, 0.17);
    border-color: rgba(33, 193, 113, 0.35);
}

.project-few__status.not-available {
    color: #D9534F;
    background: rgba(217, 83, 79, 0.17);
    border-color: rgba(217, 83, 79, 0.35);
}

.project-few__status.exclusive {
    color: #EAB300;
    background: rgba(248, 198, 33, 0.17);
    border-color: rgba(248, 198, 33, 0.35);
}

.project-few__status+.project-few__status {
    margin-left: 9px;
}

.project-few__image {
    width: 100%;
    display: block;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

.project-perf__box {
    padding: 20px 20px 10px;
    border-color: #E4EAEF;
    border-width: 0 1px 1px;
    border-style: solid;
    border-top: 4px solid #21C171;
}

.project-few__data {
    padding: 0 0 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
}

.project-few__data span {
    padding-left: 10px;
}

.project-few__data~.project-few__data {
    padding: 8px 0;
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.project-few__text {
    padding: 20px 15px;
    background: #F5F9FC;
    clear: both;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.project-few__text:before {
    content: " ";
    display: table;
}

.project-few__text:after {
    content: " ";
    display: table;
    clear: both;
}

.project-few__text p {
    padding: 12px 0 0;
}

.project-few__text .title-descr {
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
}

.project-few__text.modal-mode {
    padding: 0;
    border: 0;
    background: none;
}

.project-single__modal {
    padding: 30px 15px;
}

.project-single__modal .title {
    font-size: 24px;
    font-weight: normal;
    line-height: 25px;
}

.project-single__modal .title .project-few__status {
    margin-left: 45px;
    vertical-align: middle;
}

.project-single__modal .title .project-few__status+.project-few__status {
    margin-left: 9px;
}

.project-single__modal .title.small {
    padding: 35px 0 20px;
    font-size: 18px;
    font-weight: normal;
    line-height: 20px;
}

.project-single__modal .title.small.with-border {
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.project-single__modal .title.p1 {
    padding: 0 0 20px;
}

.project-single__modal .prm-row {
    padding-top: 38px;
}

.project-single__modal .title-table {
    padding: 0 15px 15px;
    font-size: 20px;
    font-weight: normal;
    line-height: 22px;
}

.project-single__modal button.close {
    top: 10px;
    left: auto;
    right: 15px;
    bottom: auto;
    position: absolute;
}

.project-filter__stage {
    padding: 30px 0 0;
    clear: both;
}

.project-filter__stage:before {
    content: " ";
    display: table;
}

.project-filter__stage:after {
    content: " ";
    display: table;
    clear: both;
}

.project-filter__stage .SumoSelect {
    width: auto;
    margin-right: 24px;
    display: inline-block;
    vertical-align: middle;
}

.project-filter__stage .SumoSelect>.CaptionCont {
    padding: 5px 8px;
}

.project-filter__stage .SumoSelect>.CaptionCont>span {
    padding-right: 35px;
}

.fin-balance__title {
    padding: 20px 0 15px;
    text-transform: uppercase;
    clear: both;
    font-size: 15px;
    font-weight: normal;
    line-height: 17px;
}

.fin-balance__title:before {
    content: " ";
    display: table;
}

.fin-balance__title:after {
    content: " ";
    display: table;
    clear: both;
}

/*
.modal {
	display: block;
	opacity: 1;
	background: rgba(0,0,0, 0.7);
	.modal-dialog { top: 15%; }
}
*/

/* Map */

.map-chart__image {
    padding: 0 0 52px;
    text-align: center;
    clear: both;
}

.map-chart__image:before {
    content: " ";
    display: table;
}

.map-chart__image:after {
    content: " ";
    display: table;
    clear: both;
}

.map-services__box li {
    min-height: 52px;
    padding: 8px 0 8px 60px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 35px auto;
    font-size: 14px;
    font-weight: normal;
    line-height: 16px;
}

.map-services__box li p.name {
    height: 35px;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
}

.map-services__box li.icon-1 {
    background-image: url("../img/icon-services/icon-service.svg");
}

.map-services__box li.icon-2 {
    background-image: url("../img/icon-services/icon-service1.svg");
}

.map-services__box li.icon-3 {
    background-image: url("../img/icon-services/icon-service2.svg");
}

.map-services__box li.icon-4 {
    background-image: url("../img/icon-services/icon-service3.svg");
}

.map-services__box li.icon-5 {
    background-image: url("../img/icon-services/icon-service4.svg");
}

.map-services__box li.icon-6 {
    background-image: url("../img/icon-services/icon-service5.svg");
}

.map-services__box li.icon-7 {
    background-image: url("../img/icon-services/icon-service6.svg");
}

.map-services__box li.icon-8 {
    background-image: url("../img/icon-services/icon-service7.svg");
}

.map-services__box li.icon-9 {
    background-image: url("../img/icon-services/icon-service8.svg");
}

.map-services__box li.icon-10 {
    background-image: url("../img/icon-services/icon-service9.svg");
}

.map-services__box li.icon-11 {
    background-image: url("../img/icon-services/icon-service10.svg");
}

.map-services__box li.icon-12 {
    background-image: url("../img/icon-services/icon-service11.svg");
}

.map-services__box li.icon-13 {
    background-image: url("../img/icon-services/icon-service12.svg");
}

.map-services__box li.icon-14 {
    background-image: url("../img/icon-services/icon-service13.svg");
}

.map-services__box li.icon-15 {
    background-image: url("../img/icon-services/icon-service14.svg");
}

.map-services__box li.icon-16 {
    background-image: url("../img/icon-services/icon-service15.svg");
}

.map-services__box li.icon-17 {
    background-image: url("../img/icon-services/icon-service16.svg");
}

.map-services__box li.icon-18 {
    background-image: url("../img/icon-services/icon-service17.svg");
}

.map-services__box li.icon-19 {
    background-image: url("../img/icon-services/icon-service18.svg");
}

.map-services__box li.icon-20 {
    background-image: url("../img/icon-services/icon-service19.svg");
}

@media screen and (min-width: 1340px) {
    .map-services__box {
        padding-right: 25%;
        margin: 0 5%;
    }
}

.map-table__data {
    padding: 15px 0 5px;
    border-color: #E4EAEF;
    border-width: 0 1px 1px;
    border-style: solid;
    border-top: 4px solid #21C171;
}

.map-table__data>.title {
    padding: 0 15px 15px;
    font-size: 20px;
    font-weight: normal;
    line-height: 26px;
}

/*--------------------------------------- Body */

.bg-authorization {
    background: #F4F7FA url("../img/bg-body.jpg") 2% -14% repeat;
}

/*------------------------------------- Header */

header {
    min-height: 60px;
    background: #313E47;
    position: relative;
    z-index: 2;
}

header .col-top__right {
    letter-spacing: -0.3em;
}

@media screen and (max-width: 767px) {
    header .col-top__right {
        position: relative;
        z-index: 1;
    }
}

.logo-top__wrap {
    padding-top: 16px;
}

.logo-top {
    min-height: 26px;
    padding: 10px 0 5px 40px;
    display: inline-block;
    background: url("../img/logo.svg") 0 0 no-repeat;
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
    color: #fff;
    width: 300px;
}

.logo-top:hover {
    color: #4C9DF9;
}

.logo-top em {
    color: #4C9DF9;
    transition: .1s ease-in-out;
}

.logo-top:hover em {
    color: #fff;
}

.logo {
  width: 120px;
}

@media screen and (max-width: 767px) {
    .logo-top {
        position: relative;
        z-index: 1;
    }
}

/* Manual Header */

.manual-top__wrap {
    padding-top: 7px;
}

.manual-top__title {
    padding: 0 30px 0 0;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    line-height: 34px;
}

/*------------------------------------ Content */

.footer-spacing {
    height: 100px;
    clear: both;
}

.footer-spacing:before {
    content: " ";
    display: table;
}

.footer-spacing:after {
    content: " ";
    display: table;
    clear: both;
}

.box-spacing {
    height: 30px;
    clear: both;
}

.box-spacing:before {
    content: " ";
    display: table;
}

.box-spacing:after {
    content: " ";
    display: table;
    clear: both;
}

.column-indent {
    padding-top: 38px;
}

.column-sidebar__wrap {
    overflow: hidden;
    min-height: calc(100vh - 75px);
}

.column-sidebar {
    padding-bottom: 30000px;
    margin-bottom: -30000px;
    background: #FAFCFD;
    -moz-box-shadow: 0 0 7px #B8C1C9;
    -webkit-box-shadow: 0 0 7px #B8C1C9;
    box-shadow: 0 0 7px #B8C1C9;
}

/* Icons Circle */

.icon-circle__item {
    min-width: 35px;
    min-height: 35px;
    padding: 3px;
    display: inline-block;
    text-align: center;
    background: #fff;
    cursor: default;
    font-size: 20px;
    font-weight: normal;
    line-height: 25px;
    border-color: #4C9DF9;
    border-width: 2px;
    border-style: solid;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.icon-circle__item.green {
    color: #fff;
    background: #5FB515;
    border-color: #5FB515;
}

.icon-circle__item.red {
    color: #fff;
    background: #ff2d00;
    border-color: #ff2d00;
}

/* Icons Circle END */

/*--------------------------- Filter Social Box */

.filter-item__title {
    padding: 25px 30px 15px;
    border-color: #E4EAEF;
    border-width: 0 0 1px;
    border-style: solid;
}

.filter-item__title .button {
    width: 100%;
    font-size: 16px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -moz-box-shadow: inset 0 -2px 3px rgba(167, 171, 186, 0.2);
    -webkit-box-shadow: inset 0 -2px 3px rgba(167, 171, 186, 0.2);
    box-shadow: inset 0 -2px 3px rgba(167, 171, 186, 0.2);
}

.filter-item__title .button i.fa {
    margin-left: 15px;
    color: #A7ABBA;
    font-size: 18px;
    vertical-align: middle;
}

.filter-item__select {
    padding: 20px 30px 15px;
}

.filter-item__box {
    padding: 15px 0px;
    margin: 0 30px;
    clear: both;
}

.filter-item__box:before {
    content: " ";
    display: table;
}

.filter-item__box:after {
    content: " ";
    display: table;
    clear: both;
}

.filter-item__box .name {
    width: 42%;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
}

.filter-item__box .name.large {
    width: 64%;
}

.filter-item__box .name.large+.form {
    padding-right: 0;
}

.filter-item__box .name.full {
    width: 100%;
    padding: 0 0 45px;
    clear: both;
}

.filter-item__box .name.full:before {
    content: " ";
    display: table;
}

.filter-item__box .name.full:after {
    content: " ";
    display: table;
    clear: both;
}

.filter-item__box .form {
    width: 36%;
    padding: 0 10px;
}

.filter-item__box .form input[type="number"] {
    width: 100%;
}

.filter-item__box .form input[type="text"] {
    width: 100%;
    line-height: 22px;
}

.filter-item__box .range-slider__wrap {
    width: 64%;
    padding: 7px 20px 20px 0;
}

.filter-item__box .range-slider__wrap .range-slider__value {
    width: calc(36% + 0px);
    padding: 4px 8px;
    outline: none;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    border-color: #d0d7dd;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    top: -10px;
    left: auto;
    right: calc(-36% - 30px);
    bottom: auto;
    position: absolute;
}

.filter-item__box .progress-value__column {
    width: 36%;
    padding-right: 15px;
    position: relative;
    /*& + .size { width: 3%; }*/
}

.filter-item__box .progress-value__column input[type="text"] {
    width: 100%;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 16px;
    border-color: #d0d7dd;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.filter-item__box .progress-value__column span.icon-percent {
    color: #A7ABBA;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    top: 5px;
    left: auto;
    right: 0;
    bottom: auto;
    position: absolute;
}

.filter-item__box .size {
    width: 22%;
    font-size: 12px;
    font-weight: normal;
    line-height: 15px;
}

.filter-item__box .name,
.filter-item__box .form,
.filter-item__box .size,
.filter-item__box .progress-value__column,
.filter-item__box .range-slider__wrap {
    float: left;
}

.filter-item__box~.filter-item__box {
    border-color: #E4EAEF;
    border-width: 1px 0 0;
    border-style: solid;
}

.filter-item__box span.gray {
    color: #A7ABBA;
}

@media screen and (max-width: 767px) {
    .filter-item__box {
        margin: 0 15px;
    }
}

.filter-social__submit {
    padding: 50px 30px 0;
    text-align: center;
    clear: both;
}

.filter-social__submit:before {
    content: " ";
    display: table;
}

.filter-social__submit:after {
    content: " ";
    display: table;
    clear: both;
}

/*--------------------------- Budget Panel Box */

.budget-panel__wrap {
    padding: 5px;
    text-align: right;
    overflow: hidden;
    background: #EDF2F7;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

@media screen and (min-width: 320px) and (max-width: 479px) {
    .budget-panel__wrap {
        text-align: center;
        padding-bottom: 15px;
    }
}

.budget-panel__box {
    width: 45%;
    float: left;
    clear: both;
}

.budget-panel__box:before {
    content: " ";
    display: table;
}

.budget-panel__box:after {
    content: " ";
    display: table;
    clear: both;
}

.budget-panel__box li {
    width: 33.333%;
    padding: 2px 15px;
    padding-bottom: 302px;
    margin-bottom: -300px;
    float: left;
    text-align: left;
    position: relative;
    font-size: 11px;
    font-weight: normal;
    line-height: 15px;
}

.budget-panel__box li span {
    display: block;
    color: #313E47;
    font-size: 13px;
}

.budget-panel__box li span.red {
    color: #D9534F;
}

.budget-panel__box li:before {
    content: "";
    display: inline-block;
    top: -5px;
    left: auto;
    right: 1px;
    bottom: 0;
    position: absolute;
    border-color: #E4EAEF;
    border-width: 0 0 0 1px;
    border-style: solid;
}

.budget-panel__box li:after {
    content: "";
    display: inline-block;
    top: -5px;
    left: auto;
    right: 0;
    bottom: 0;
    position: absolute;
    border-color: #fff;
    border-width: 0 0 0 1px;
    border-style: solid;
}

@media screen and (max-width: 1339px) {
    .budget-panel__box {
        width: 61%;
        overflow: hidden;
    }
}

@media screen and (min-width: 320px) and (max-width: 479px) {
    .budget-panel__box {
        width: 100%;
        margin-bottom: 20px;
    }
}

.budget-panel__approve {
    padding: 0 15px;
    float: right;
    color: #A7ABBA;
    text-align: left;
    font-size: 13px;
    font-weight: normal;
    line-height: 14px;
}

.budget-panel__approve span {
    color: #5FB515;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: normal;
    line-height: 14px;
}

.budget-panel__approve p {
    padding: 5px 0 0;
}

.budget-panel__approve p em {
    color: #111;
}

@media screen and (max-width: 1199px) {
    .budget-panel__approve {
        width: 100%;
        padding: 20px 10px 0;
        clear: both;
    }
    .budget-panel__approve:before {
        content: " ";
        display: table;
    }
    .budget-panel__approve:after {
        content: " ";
        display: table;
        clear: both;
    }
}

/*------------------------- Widget Content Box */

.widget-content__nav {
    padding: 40px 0 0;
    font-size: 13px;
    font-weight: normal;
    line-height: 15px;
}

.widget-content__box {
    min-height: 325px;
    padding: 30px 50px;
    background: #fff;
    position: relative;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
}

@media screen and (max-width: 767px) {
    .widget-content__box {
        min-height: inherit;
    }
}

.widget-content__box.with-shadow {
    -moz-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    -webkit-box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
    box-shadow: 0 0 12px rgba(129, 163, 185, 0.3);
}

.widget-chart__wrap>img {
    max-height: 214px;
}

.widget-chart__wrap>img.img-extensive {
    max-width: inherit;
    max-height: inherit;
}

.widget-content__title {
    min-height: 55px;
    padding: 0 0 21px;
    font-size: 15px;
    font-weight: normal;
    line-height: 17px;
}

.widget-btn__info {
    width: 16px;
    height: 16px;
    display: block;
    background: url("../img/icon-btn__ask1.svg") 0 0 no-repeat;
    background-size: cover;
    top: 12px;
    left: auto;
    right: 12px;
    bottom: auto;
    position: absolute;
}

.widget-btn__info:hover {
    transform: scale(1.2);
}

.widget-btn__info.inline {
    margin-left: 20px;
    display: inline-block;
    position: static;
}

/*--------------------------- Autorization Popup */

.authorization-popup {
    width: 443px;
    padding: 30px 0 0;
    text-align: center;
    overflow: hidden;
    background: #F4F7FA;
    z-index: 2;
    transform: translate(-50%, -50%);
    border-color: #D3DDE5;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    position: absolute;
}

.authorization-popup .title {
    padding: 0 0 25px;
    font-size: 24px;
    font-weight: normal;
    line-height: 25px;
}

.authorization-popup .title-note {
    padding: 0 0 25px;
    margin-top: -3px;
    color: #A7ABBA;
    font-size: 14px;
    font-weight: normal;
    line-height: 15px;
}

@media screen and (max-width: 767px) {
    .authorization-popup {
        width: auto;
        transform: translateY(0);
        top: 15%;
        left: 15px;
        right: 15px;
        bottom: auto;
        position: absolute;
    }
}

.login-box__wrap {
    padding: 0 0 50px;
}

.login-box__wrap.reg-modify .login-box {
    padding: 15px 35px 0;
}

.login-box__wrap.reg-modify .login-box li {
    text-align: left;
}

.login-box {
    padding: 15px 50px 0;
    clear: both;
}

.login-box:before {
    content: " ";
    display: table;
}

.login-box:after {
    content: " ";
    display: table;
    clear: both;
}

.login-box>li {
    width: 65%;
    float: left;
}

.login-box>li:first-child {
    width: 35%;
    padding-top: 7px;
}

.login-box>li .SumoSelect>.CaptionCont {
    padding: 5px 8px;
}

.login-box p.remind {
    padding: 15px 0 0;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
    border-color: #d0d7dd;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: #00aeef;
}

.login-box label {
    margin: 0;
    font-weight: normal;
}

.login-box a.btn-primary {
    margin-top: 15px;
}

.login-panel {
    padding: 15px 15px;
    background: #56646E;
    clear: both;
}

.login-panel:before {
    content: " ";
    display: table;
}

.login-panel:after {
    content: " ";
    display: table;
    clear: both;
}

.login-panel li {
    width: 65%;
    float: left;
    color: #A7ABBA;
    text-align: right;
}

.login-panel li:first-child {
    width: 35%;
    text-align: left;
}

.login-panel li a:not(.logo-top) {
    color: #fff;
}

.login-panel li a:not(.logo-top):hover {
    color: #E4E4E4;
}

.login-panel a.logo-top {
    padding: 6px 0 0 35px;
}

.login-panel p.reg {
    padding: 3px 0 0;
}

/*---------------------------------- News Box */

.news-panel__wrap {
    width: 462px;
    background: #F3F7FA;
    overflow-y: auto;
    transition: .2s ease-in-out;
    z-index: 102;
    border-color: #C9D2D8;
    border-width: 0px 0 0 1px;
    border-style: solid;
    top: 0px;
    left: auto;
    right: -462px;
    bottom: 0;
    position: fixed;
}

.news-panel__wrap.open {
    right: 0;
}

.news-panel__box {
    padding: 0 0 50px;
    clear: both;
}

.news-panel__box:before {
    content: " ";
    display: table;
}

.news-panel__box:after {
    content: " ";
    display: table;
    clear: both;
}

.news-panel__box li {
    padding: 35px 30px 0;
}

.news-panel__box span.step {
    padding: 0 12px;
    display: inline-block;
    background: #fff;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    border-color: #E4EAEF;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.news-panel__box span.name {
    padding: 12px 0 0;
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: 17px;
}

.news-panel__box p.text {
    padding: 12px 0 0;
}

.btn-news__close {
    color: #A7ABBA;
    cursor: pointer;
    font-size: 13px;
    font-weight: normal;
    line-height: 15px;
    top: 23px;
    left: auto;
    right: 28px;
    bottom: auto;
    position: absolute;
}

.btn-news__close:hover {
    color: #111;
}

/*---------------------------------- News Box */

.info-panel__wrap {
    width: 1000px;
    background: #F3F7FA;
    overflow-y: auto;
    transition: .2s ease-in-out;
    z-index: 102;
    border-color: #C9D2D8;
    border-width: 0 0 0 1px;
    border-style: solid;
    top: 0px;
    left: auto;
    right: -1000px;
    bottom: 0;
    position: fixed;
    /*@include before {
  	width: 65%;
  	background: #fff;
  	@include abs (0,auto,0,0,fixed);
  	@include border ($border-color,0 0 0 1px);
  }*/
}

.info-panel__wrap.open {
    right: 0;
}

@media screen and (max-width: 1199px) {
    .info-panel__wrap {
        width: 700px;
    }
}

@media screen and (max-width: 991px) {
    .info-panel__wrap {
        width: 100%;
    }
}

.info-menu__column {
    width: 35%;
    float: left;
    padding: 0 0 50px;
    clear: both;
}

.info-menu__column:before {
    content: " ";
    display: table;
}

.info-menu__column:after {
    content: " ";
    display: table;
    clear: both;
}

.info-menu__column .title {
    padding: 20px 22px 15px;
    font-size: 20px;
    font-weight: normal;
    line-height: 23px;
    border-color: #E4EAEF;
    border-width: 0 0 1px;
    border-style: solid;
}

@media screen and (max-width: 767px) {
    .info-menu__column {
        width: 100%;
    }
    .info-menu__column .title {
        padding-right: 90px;
    }
}

.info-panel__menu {
    clear: both;
}

.info-panel__menu:before {
    content: " ";
    display: table;
}

.info-panel__menu:after {
    content: " ";
    display: table;
    clear: both;
}

.info-panel__menu li {
    padding: 0 22px;
    font-size: 15px;
    font-weight: normal;
    line-height: 18px;
}

.info-panel__menu li a {
    padding: 15px 0;
    display: block;
    color: #313E47;
    border-color: #E4EAEF;
    border-width: 0 0 1px;
    border-style: solid;
}

.info-panel__menu li a:hover {
    color: #368CEF;
}

.info-text__column {
    width: 65%;
    min-height: 100vh;
    padding: 20px 38px 50px;
    float: left;
    overflow: hidden;
    position: relative;
}

.info-text__column:before {
    content: "";
    display: inline-block;
    width: 100%;
    padding-bottom: 3000px;
    margin-bottom: -3000px;
    background: #fff;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    position: absolute;
    border-color: #E4EAEF;
    border-width: 0 0 0 1px;
    border-style: solid;
}
.flag{
    color: #787878;
    margin-right: 5px;
}
.little{
    font-size: 16px;
    font-size: normal;
    margin-top: 1px;
    width: 300px;
}

@media screen and (max-width: 767px) {
    .info-text__column {
        width: 100%;
        min-height: inherit;
        padding: 20px 22px 50px;
        clear: both;
    }
    .info-text__column:before {
        content: " ";
        display: table;
    }
    .info-text__column:after {
        content: " ";
        display: table;
        clear: both;
    }
}

.info-panel__box {
    position: relative;
}

.info-panel__box .title {
    padding: 0 50px 32px 0;
    font-size: 22px;
    font-weight: normal;
    line-height: 25px;
}

.info-panel__box .image {
    padding: 35px 0 15px;
}

.btn-info__close {
    color: #A7ABBA;
    cursor: pointer;
    font-size: 13px;
    font-weight: normal;
    line-height: 15px;
    top: 23px;
    left: auto;
    right: 28px;
    bottom: auto;
    position: absolute;
}

.btn-info__close:hover {
    color: #111;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
}

#root {
    height: 100%;
}

/*------------------------------------- Footer */

/*-------------------------------------------  */

/*# sourceMappingURL=main.css.map */
