.app-header a, .sidebar a, a.btn, .nav-tabs a, a.file-name {
    text-decoration: none;
}

.mw-1000 {
    max-width: 1000px;
}

.h-auto {
    height: auto !important;
}

.sticky {
    position: sticky;
}

.fixed {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 2px 0 #4a4a4a;
    z-index: 1000;
}

/*
MODAL
*/
.custom-modal-box {
    position: absolute;
    z-index: 10000;
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    display: none;
}

.custom-modal-box .close {
    position: absolute;
    right: 5px;
    top: 5px;

}

.modalwithrobot .robot {
    position: absolute;
    bottom: 0;
    right: -20px;
    height: calc(100% + 100px);

}

.modalwithrobot .modal-content .row {
    min-height: 300px;
}

.close {
    font-weight: 400;
}

.alert-dismissible .close {
    bottom: 0;
}

/*!
 LOADERS
 */
.loader {
    position: fixed;
    width: 100%;

    background-color: rgba(255, 255, 255, 0.5);

    margin-top: 50px;
    z-index: 100000;
    display: none;
    height: 0px;
    animation: showloader 1s forwards;
}

@keyframes showloader {
    0%, 99% {
        height: 0px;
    }
    100% {
        height: 100%;
    }
}

.loader_inner {
    height: 5px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #444;
}

.loader_inner:before {
    display: block;
    position: absolute;
    content: '';
    left: -200px;
    width: 200px;
    height: 5px;
    background-color: #eb0b13;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    from {
        left: -200px;
        width: 30%;
    }
    50% {
        width: 30%;
    }
    70% {
        width: 70%;
    }
    80% {
        left: 50%;
    }
    95% {
        left: 120%;
    }
    to {
        left: 100%
    }
}

.loader .loader-information-inner {
    position: absolute;
    top: 40%;
    left: 45%;
    border: 1px solid #aaa;
    padding: 10px 20px;
    background-color: #ffcb00;
    display: none;
    text-align: center;
    max-width: 300px;
}

.loader .lds-facebook {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.loader .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loader .lds-facebook div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}

.loader .lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.loader .lds-facebook div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }
    50%, 100% {
        top: 19px;
        height: 26px;
    }
}

/*
TOGGLE
*/
.toggle-header {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.toggle-header:after {
    font-family: FontAwesome;
    content: "\f107";
}

.toggle-header.collapsed:after {
    content: "\f106";
}

/*!
 ICONS
 */
.chat-icon {
    background-image: url("../images/chat-icon.png");
}

.calendar-icon {
    background-image: url("../images/calendar-icon.png");
}

.tarif-icon {
    background-image: url("../images/price-icon.png");
}

.diagnosys-icon {
    background-image: url("../images/test-icon.png");
}

.panel-icon {
    background-image: url("../images/panel-icon.png");
}

.dashboard-icon {
    background-image: url("../images/test-icon.png");
}

.route-icon {
    background-image: url("../images/route-icon.png");
}

.instruments-icon {
    background-image: url("../images/tools-icon.png");
}

.actions-icon {
    background-image: url("../images/action-icon.png");
}

.files-icon {
    background-image: url("../images/file-icon.png");
}

.analytics-icon {
    background-image: url("../images/analytics-icon.png");
}

.toggle-icon {
    background-image: url("../images/burger-icon.png");
}

.support-icon {
    background-image: url("../images/support-icon.png");
}

.delete-tool-icon {
    background-image: url("../images/delete.png");
}

.edit-tool-icon {
    background-image: url("../images/edit.png");
}

.copy-tool-icon {
    background-image: url("../images/copy.png");
}

.custom-icon {
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.custom-image-rotater img {
    display: none;
}

.custom-image-rotater img:first-of-type {
    display: block;
}

.edit-icons {
    display: flex;
    justify-content: flex-end;
    width: 100%;

    height: 20px;
}

.edit-icons .edit-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.edit-icons .edit-icon {
    background-image: url(../images/edit.png);
}

.edit-icons .copy-icon {
    background-image: url(../images/copy.png);
}

.edit-icons .delete-icon {
    background-image: url(../images/delete.png);
}

/*!
 HEADER STYLES
 */
.header-fixed .app-header {
    z-index: 100;
    width: 100%;
    position: fixed;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex: 0 0 55px;
    height: 50px;
    margin: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.app-header.navbar {
    padding: 0;
    background-color: #fff;
    align-items: center;
}

.app-header.navbar .navbar-brand {
    display: block;
    margin: 0 25px 0 21px;
    max-width: 240px;
    padding: 0px;

}

.app-header.main-page .navbar-brand {
    float: left;
    margin: 0 25px 0 10px;
    max-width: 265px;
}

.app-header.main-page .navbar-brand img {
    max-height: 130px;
}

.app-header.navbar .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    padding-right: 30px;
    flex-shrink: 0;
}

.app-header.navbar .nav-item {
    position: relative;

    margin-right: 30px;
}

.app-header.navbar .nav-item i {
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    width: 16px;
    height: 13px;
}

.app-header.navbar .nav-item a.nav-link {
    color: #333;
    padding: 0;

    display: flex;
    align-items: center;
}

.app-header.navbar .nav-item.account {
    padding: 0 15px;
    height: 50px;
    display: flex;
    justify-content: flex-end;

    margin-right: 0;
    min-width: 160px;
    text-align: right;
}

.app-header.navbar .nav-item.account:hover {
    background-color: #FFCA00;
}

.app-header.navbar .dropdown-toggle:after {
    border: none;
    border-style: solid;
    border-width: 0.15em 0.15em 0 0;
    content: '';
    display: inline-block;
    height: 0.35em;
    left: 0.15em;
    position: relative;
    width: 0.35em;
    top: 0;
    transform: rotate(135deg);
}

.menu-hover:hover, .header-menu-active {
    box-shadow: 0px 3px 0px -1px #9E9E9E;
}

.app-header.navbar .dropdown:hover > .dropdown-menu {
    display: block;
}

.app-header .navbar-nav .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    padding-bottom: 0;
    line-height: 1.5;
    background-color: #fff;
    margin-top: 0px;
    width: 100%;
    border-radius: 0;
    margin-top: 0px;
    border: none;
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
}

.app-header.navbar .dropdown-item {
    min-width: 150px;
}

.app-header.navbar .dropdown-item:hover {
    background-color: #FFCA00;
}

.app-header .navbar-nav .dropdown-item:last-of-type {
    box-shadow: 0px -13px 0px -12px #e8e8e8;
}

.app-header.navbar .nav-item.account i {
    display: none;
}

@media (max-width: 1170px) {
    .app-header.navbar .navbar-toggler {
        width: 150px;
        margin-left: 0;
        flex: 0 0 150px;
    }

    .app-header.navbar .nav-item {
        margin-right: 7px;
    }

    .app-header.navbar .navbar-toggler.mobile-sidebar-toggler {
        display: none;

    }

    .app-header.navbar .navbar-toggler.sidebar-minimizer {
        display: inline-block;
    }

    .app-header.navbar .navbar-brand {
        padding-left: 0px;
    }
}

@media (max-width: 991px) {
    .app-header.navbar {
        position: fixed !important;
        z-index: 1020;
        width: 100%;
        text-align: center;
    }

    .app-header.navbar .nav-item {
        margin-right: 10px;
    }

    .app-header.navbar .nav-item.account {
        min-width: 70px;
    }

    .app-header.navbar .dropdown-item {
        min-width: 70px;
    }

    .app-header.navbar .nav-item.account i {
        margin-left: 0;
    }

    .app-header.navbar .navbar-toggler.mobile-sidebar-toggler {
        display: inline-block;
    }

    .app-header.navbar .navbar-toggler.sidebar-minimizer {
        display: none;
    }

    .app-header.main-page .navbar {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .app-header.navbar .nav-item .nav-link span {
        display: none;
    }

    .app-header.navbar .nav-item.account .nav-link span {
        display: block;
    }
}

@media (max-width: 575px) {
    .app-header.navbar .nav-item.account .nav-link span {
        display: none;
    }

    .app-header.navbar .nav-item.account i {
        display: block;
    }

    .app-header .navbar-brand img {
        display: none;
    }

    .app-header .navbar-brand {
        background-image: url(../images/small_logo.png);
        height: 60%;
        width: 100px;
        background-repeat: no-repeat;
        background-position: left center;
        background-size: contain;
    }

    .app-header.main-page .navbar-brand {
        width: 40px;
        margin-left: 5px;
        margin-right: 0px;

    }

    .app-header.navbar .navbar-toggler {
        width: 70px;
        min-width: 70px;
        flex: 0 0 70px;
    }

    .app-header.main-page .navbar {
        justify-content: flex-start;
        align-items: center;
    }

    .app-header.main-page .signup-button-register {
        font-size: 1.2rem;
    }
}

/*!
 SIDEBAR
 */
.sidebar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    background-color: #F5F5F5;
    ms-flex: 0 0 128px;
    flex: 0 0 128px;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
}

.sidebar, .main {
    transition: margin-left 0.25s, margin-right 0.25s, width 0.25s, flex 0.25s;
    transition: margin-left 0.25s, margin-right 0.25s, width 0.25s, flex 0.25s, -ms-flex 0.25s;
}

.sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 128px;
    height: calc(100% - 50px);
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.sidebar .sidebar-nav {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    width: 128px;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.sidebar .nav {
    width: 128px;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    position: absolute;
    overflow: hidden;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;


}

.sidebar .nav-item {
    position: relative;
    height: 42px;
    padding: 10px 0px;
    padding-left: 20px;
}

.sidebar .nav-item:last-of-type {
    margin-top: auto;
    margin-bottom: 24px;

}

.sidebar .nav-item .nav-link {
    padding: 0;
    display: flex;
    align-items: center;
}

.sidebar .nav-item a.nav-link {
    color: #333333;
    font-size: 10px;
    font-family: 'Roboto';
    line-height: 12px;
}

.sidebar .nav-item a.nav-link.active {
    color: #61AE24;
    font-weight: bold;
}

.sidebar .nav-link i {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;

    text-align: left;
}

.sidebar .navbar-toggler {
    font-size: 10px;
    padding: 20px 0px;
    border: none;
    border-bottom: 1px solid #E4E4E4;
    background-color: #F5F5F5;
    padding-left: 20px;
    display: flex;
    align-items: center;
    outline: none;
    -webkit-appearance: initial;
}

.sidebar .navbar-toggler .navbar-toggler-icon {

    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.sidebar-minimized .sidebar {
    width: 57px;
    z-index: 1019;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.sidebar-minimized .sidebar .sidebar-nav {
    overflow: visible;
    width: 57px;
}

.sidebar-minimized .sidebar .nav {
    width: 57px;
    padding-left: 0px;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.sidebar-minimized .sidebar .nav-link span, .sidebar-minimized .sidebar .navbar-toggler span:not(.navbar-toggler-icon) {


    opacity: 0;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}


@media (max-width: 991px) {
    .sidebar-fixed .sidebar {
        position: fixed;
        z-index: 1019;
        width: 57px;
        height: calc(100% - 50px);
    }

    .sidebar .sidebar-nav, .sidebar .nav {
        width: 57px;
        min-height: 100%
    }

    .sidebar-minimized .sidebar {
        width: 57px;
    }

    .sidebar .nav-item, .sidebar .navbar-toggler {
        padding-left: 0px;
        justify-content: center;
    }

    .sidebar .navbar-toggler .navbar-toggler-icon {
        margin-right: 0px;
    }

    .sidebar .nav-item .nav-link {
        justify-content: center;
    }

    .sidebar .nav-link i {
        margin-right: 0px;
    }

    .sidebar .nav-link span, .sidebar .navbar-toggler span:not(.navbar-toggler-icon) {
        display: none;
    }

    .sidebar-minimized .sidebar .nav-link i, .sidebar-minimized .sidebar .navbar-toggler .navbar-toggler-icon {
        margin-right: 10px;
    }

    .sidebar-minimized .sidebar .nav-link span, .sidebar-minimized .sidebar .navbar-toggler span:not(.navbar-toggler-icon) {
        display: block;
        opacity: 1;

    }

    .sidebar-minimized .sidebar, .sidebar-minimized .sidebar .sidebar-nav, .sidebar-minimized .sidebar .sidebar-nav, .sidebar-minimized .sidebar .nav {
        width: 127px;
    }

    .sidebar-minimized .sidebar .nav-link, .sidebar-minimized .sidebar .navbar-toggler {

        justify-content: left;
        text-align: left;
        padding-left: 20px;
    }


}

/*!
MAIN
 */
.app-body {

    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-positive: 1;
    flex-grow: 1;

}

.header-fixed .app-body {
    margin-top: 50px;
}

.sidebar-fixed.sidebar-hidden .main {
    margin-left: 0;
}

.app-body .main {
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.main .container-fluid {
    padding: 0 30px;
}

.sidebar-fixed .main {
    margin-left: 127px;
    padding-top: 27px;
    padding-bottom: 40px;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

@media (min-width: 992px) {
    .sidebar-minimized.sidebar-fixed .main {
        margin-left: 57px;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }
}

@media (max-width: 991px) {
    .main {
        margin-left: 57px !important;
    }

}

@media (max-width: 575px) {
    .main .container-fluid {
        padding: 0 15px;
    }
}

/*!
 DIAGNOSTIC
 */

.main-diagnostic-block .diagnostic-steps {
    width: 160px;
    overflow: hidden;
}

.main-diagnostic-block .diagnostic-step {
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 19px;
    background-color: #DDDDDD;
    width: 140px;
    padding: 8px 7px 7px 9px;
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
    height: 34px;
    background-color: #FFCA00;

}

.main-diagnostic-block .diagnostic-step:hover {
    cursor: pointer;
    background-color: #F8A528;
}

.main-diagnostic-block .diagnostic-step.step-done {
    background-color: #FFCA00;
    color: #333333;
}

.main-diagnostic-block .diagnostic-step.step-undone {

    background-color: #DDDDDD;
}

.main-diagnostic-block .diagnostic-step.step-undone:hover {
    cursor: not-allowed;
}

.main-diagnostic-block .diagnostic-step.step-current {
    background-color: #56AEFB;
}

.main-diagnostic-block .diagnostic-step.step-current:after {
    content: "";
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 15px solid #56AEFB;
    position: absolute;
    right: -15px;
    top: 0;
}

.block-diagnostic-form-questions {
    position: relative;
    width: 800px;
}

.block-diagnostic-form-questions:after {
    display: block;
    content: '';
    background-image: url(/images/newrobot.png);
    position: absolute;
    right: -215px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 387px;
    width: 275px;
    top: calc(50% - 200px);

}

.main-diagnostic-block .diagnostic-form-questions {
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    padding: 25px 30px 35px 30px;
}

.diagnostic-form-questions .hello-message, .diagnostic-form-questions .diagnostic-form-question {
    display: none;
}

.strategy-question .radio label:hover {
    cursor: pointer;
}

.style-button.disabled {
    background-color: #DDDDDD;
    color: #fff;
}

.style-button.disabled:hover {
    cursor: not-allowed;
}

.question-numerations {
    display: flex;
    margin-bottom: 20px;
}

.main-diagnostic-block .question-numeration {
    height: 8px;
    margin-right: 5px;
    float: left;
    flex-grow: 1;
}

.main-diagnostic-block .question-numeration.numeration-undone {
    background-color: #DDDDDD;
}

.main-diagnostic-block .question-numeration.numeration-done {
    background-color: #FFCA00;
}

.main-diagnostic-block .question-numeration.numeration-current {
    background-color: #56AEFB;
}

.main-diagnostic-block .question-numeration.numeration-undone:hover {
    cursor: not-allowed;
}

.main-diagnostic-block .question-numeration.numeration-done:hover {
    cursor: pointer;
}

.diagnostic-question-block {
    margin-bottom: 1rem;
    padding-right: 30px;
}


.diagnostic-raiting .raiting-point {
    background-color: #DDDDDD;
    width: 8px;
    height: 8px;
    margin-right: 2px;
    display: block;
}

div.raiting-point:nth-last-of-type(n+1),
div.raiting-point:nth-last-of-type(n+1) ~ div.raiting-point {
    background-color: #EB0A12;
}

div.raiting-point:nth-last-of-type(n+5),
div.raiting-point:nth-last-of-type(n+5) ~ div.raiting-point {
    background-color: #FFCA00;
}

div.raiting-point:nth-last-of-type(n+8),
div.raiting-point:nth-last-of-type(n+8) ~ div.raiting-point {
    background-color: #61AE24;
}

.custom-diag-answer {
    display: none;
}

.custom-diag-answer.show {
    display: block;
}

.disgnostoc-result {
    max-width: 1000px;
}

@media (max-width: 575px) {
    .block-diagnostic-form-questions {
        width: 100%;
    }

    .main-diagnostic-block .diagnostic-steps {
        width: 100%;
    }

    .main-diagnostic-block .diagnostic-step {
        display: inline-block;
    }

    .main-diagnostic-block .diagnostic-step {
        margin-right: 3px;
    }

    .main-diagnostic-block .diagnostic-step.step-current::after {
        display: none;
    }
}

.diagnostic-question-block .custom-check {
    display: inline-grid;
}

.diagnostic-question-block .custom-check label {
    white-space: nowrap;
    position: relative;
}

.diagnostic-question-block .custom-check input.custom {
    position: absolute;
    top: -3px;
    right: -180px;
}

/*

TOOL
*/
.tool-input-cart {
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    margin-bottom: 10px;
    padding: 18px 20px 10px 14px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.tool-input-cart p {
    font-weight: bold;
    margin-bottom: 5px;
}

.tool-input-cart .form-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tool-input-cart .custom-group-input label, .tool-input-cart label {
    color: #9E9E9E;
    font-family: "PT Sans";
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
}

.tool-input-cart .custom-group-input textarea, .tool-input-cart .custom-group-input input {
    border-color: #F5F5F5;
    background-color: #F5F5F5;
    border-radius: 3px;


}

.tool-input-cart .custom-group-input textarea:last-child, .tool-input-cart .custom-group-input input:last-child {
    margin-bottom: 0;
}

.tool-input-cart .custom-group-input textarea {
    flex-grow: 1;
}

.tool-input-cart .custom-group-input textarea.withData {
    background-color: #FFF;
    border-color: #FFF;
}

.tool-input-cart .custom-group-input textarea.withData:focus {
    background-color: #F5FAFF;
    border: 1px solid #91CAFC;
}

.tactic-tool-modal {
    background-color: #D9EDFF;
    background-image: url('../images/robotface.png');
    background-position: bottom 0 left 5%;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 14px 12px 11px 85px;
    width: 266px;
    height: 70px;

}

.tactic-tool-modal p {
    color: #333333;
    font-family: "PT Sans";
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
}

.tactic-tool-modal:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 20px;
    height: 20px;
    display: block;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #D9EDFF;
}

.tactic-tool-modal.left100:before {
    left: calc(100% - 30px);
}

.list-tactic-block {
    display: flex;
    justify-content: flex-end;
}

.list-tactic-block .list-tactic {
    width: 16px;
    height: 16px;
    background-color: #DDDDDD;
    margin-right: 4px;
}

.list-tactic-block .list-tactic.active {
    background-color: #61AE24;

}

.list-tactic-block .list-tactic.active:hover {
    cursor: pointer;
}

.list-tactic-block .list-tactic.locked {

}

.tool-blocks {
    margin-top: 30px;
    display: flex;
}

.tool-blocks .tool-block {
    display: flex;
    align-items: center;

}

.tool-blocks .tool-block:last-of-type {
    margin-left: auto;
    margin-right: 0px;
}

.tool-blocks .tool-block:hover {
    cursor: pointer;
}

.tool-blocks .tool-block .tool-block-name {
    color: #333333;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.1px;
    line-height: 19px;
    /*border-bottom:2px dotted #9E9E9E;*/

}

/*
.tool-blocks .tool-block .tool-block-icon{
	display:block;
	margin-right:2px;
	width:11px;
	height:13px;
}

.tool-blocks .tool-block.tool-block-done .tool-block-icon{
	background-color:red;
}
.tool-blocks .tool-block.tool-block-undone .tool-block-icon{
	background-color:gray;
}
.tool-blocks .tool-block.tool-block-current .tool-block-icon{
	background-color:green;
}
.tool-blocks .tool-block:first-of-type .tool-block-icon{
		background-color:orange;
}
.tool-blocks .tool-block:last-of-type .tool-block-icon{
		background-color:yellow;
}
*/
.tool-steps {
    margin-bottom: 30px;
    display: flex;
    margin-top: 5px;
}

.tool-step {
    background-color: #DDDDDD;
    height: 9px;
    margin-right: 5px;
    float: left;
    flex-grow: 1;
}

.tool-step:last {
    margin-right: 0;
}

.tool-step.tool-steps-done {
    background-color: #FFCA00;
}

.tool-step.tool-steps-current {
    background-color: #56AEFB;
}

.tool-step.tool-steps-next {
    background-color: #56AEFB;
}

.tool-step:hover {
    cursor: pointer;
}

.tools-list {
    margin-top: 5px;
    margin-bottom: 15px;
    background-color: #F5F5F5;
    padding: 11px 10px 12px 9px;


}

.tool-list {
    margin-right: 10px;
    display: inline-block;
    align-items: center;
}

.tool-list:before {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    display: inline-block;
    content: '';
    vertical-align: middle;
}

.tool-list .tool-list-icon {
    width: 12px;
    height: 12px;
    margin-right: 2px;
    display: block;
}

.tool-list-done .tool-list-icon {
    background-color: #FFCA00;
}

.tool-list-undone .tool-list-icon {
    background-color: #DDDDDD;
}

.tool-list-current .tool-list-icon {
    background-color: #56AEFB;
}

.tool-list.active:not(.tool-list-undone) .tool-list-name {
    font-weight: bold;
}

.tool-list-done:before {
    background-color: #FFCA00;
}

.tool-list-undone:before {
    background-color: #DDDDDD;
}

.tool-list-current:before {
    background-color: #56AEFB;
}

.tool-list .tool-list-name {
    color: #333333;
    font-size: 12px;
    letter-spacing: 0.09px;
    line-height: 25px;
}

.tool-list:not(.tool-list-undone) .tool-list-name:hover {
    cursor: pointer;
}

.sticky-sidebar {
    position: relative;
}

.tool-additional {
    background-color: #F5F5F5;
    padding: 10px 15px 20px;

    display: flex;
    align-items: center;
    flex-direction: column;
    width: 150px;
}

.tool-materials {

    display: flex;
    align-items: center;
    flex-direction: column;
}

/*.tool-material {*/
/*    margin-bottom: 30px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    max-width: 100px;*/
/*}*/

.tool-material .tool-material-icon {
    display: block;
    margin-bottom: 10px;
    width: 26px;
    height: 38px;
    background-image: url('../images/material-icon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.tool-materials .tool-material-name, .tool-materials .tool-material-name a {
    display: block;
    color: #333333;
    font-size: 12px;
    letter-spacing: 0.09px;
    line-height: 17px;
    text-align: center;
    text-decoration: none;
}

.add-file-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
}

.add-file-tool .add-file-icon {
    display: block;
    margin-bottom: 10px;
    width: 26px;
    height: 38px;
    background-image: url('../images/add-file-tool.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.add-file-tool:hover {
    cursor: pointer;
}

.add-file-tool span {
    display: block;
    color: #333333;
    font-size: 12px;
    letter-spacing: 0.09px;
    line-height: 17px;
    text-align: center;
    text-decoration: none;
}

.tool-literature {

    background-color: #F5F5F5;
    padding: 14px 20px 23px 20px;
    margin-bottom: 30px;
}

.tool-video {
    margin-bottom: 30px;
}

.tool-literature p {
    color: #333333;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.1px;
    line-height: 14px;
}

.tool-task {

    margin-bottom: 30px;
}

.need-consultation {
    margin-bottom: 5px;
    background-color: #FFCA00;
    padding: 5px;
    border: none;
    border-radius: 0px;
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 19px;
    text-align: center;
}

.need-consultation .icon {
    background-image: url('../images/chat-icon.png');
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 13px;
    background-size: cover;
    vertical-align: middle;
}


.tool-question-chat {
    overflow: hidden;
    height: 450px;
}

.tool-question-chat-window {
    height: 95%;
    height: -moz-calc(100% - 60px);
    height: -webkit-calc(100% - 60px);
    height: calc(100% - 60px);
    position: relative;
    width: 100%;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: center;
}

.tool-question-chat-window .chat-content {
    padding: 0;
}

.tool-question-chat-window .chat-content:focus {
    outline: none;
}

.tool-question-chat .send-message-window {
    margin: 0px;
    display: flex;
    padding-top: 10px;
    height: 60px;
    align-items: center;
    flex-wrap: nowrap;
}

.tool-question-chat .message-input {
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    min-height: 50px;
    flex-grow: 1;
    margin-right: 20px;
    resize: none;
    padding: 0 10px;
    right: 0px;
    overflow-y: auto;
    margin-bottom: 7px;
    max-height: 110px;
}

.tool-question-chat .message-input .form-group {
    margin-bottom: 0px;
    margin-top: 4px;
    max-width: 300px;
}

.tool-question-chat .message-input .form-group input {
    margin-bottom: 0px;
}

.tool-question-chat .message-input[contenteditable="false"] {
    background-color: #f5f5f5;
}

.tool-question-chat .send-message-button, .tool-question-chat .send-message-buttons {
    width: 50px;
    height: 50px;
    display: flex;
    background-color: #FFCA00;
    border-radius: 0px;
    color: #333;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    max-width: 50px;
    min-width: 50px;
}

.tool-question-chat .send-message-button[disabled="disabled"] {
    background-color: #f5f5f5;
}

.tool-question-chat .send-message-button:hover {
    background-color: #F8A528;
}

.tool-question-chat-window .message {
    margin-bottom: 10px;
}

.tool-question-chat-window .message .avatar {
    width: 75px;
    height: 75px;

}

.tool-question-chat-window .media-body {
    display: flex;
}

.tool-question-chat-window .speech {
    color: #333333;
    font-size: 16px;
    letter-spacing: 0.11px;
    line-height: 20px;
    opacity: 0.8;
    background-color: #FFFFFF;

    max-width: 60%;
    border-radius: 0;
    position: relative;
    padding: 12px 10px;
    height: fit-content;
}

.tool-question-chat-window .robot-message .speech {
    margin-left: 10px;
}

.tool-question-chat-window .robot-message .speech:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.8);

}

.tool-question-chat-window .client-message.media-body {
    flex-direction: row-reverse;
}

.tool-question-chat-window .client-message .speech {
    margin-right: 10px;
}

.tool-question-chat-window .client-message .speech:before {
    content: '';
    position: absolute;
    right: -20px;
    top: 10px;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 0.8);

}

.tool-table-body .nav-tabs .nav-item {
    background: none;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.1px;
    line-height: 19px;
    border-bottom: 1px dotted #9E9E9E;
    font-weight: normal;
    padding: 0px;
    margin-right: 20px;
}

.tool-table-body .nav-tabs .nav-link.active {
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.1px;
    line-height: 19px;
    background: none;
    border-bottom: none;
}

.tool-table-body {
    padding: 10px;
}

.tool-task .tool-table-body .tab-content {
    margin-top: 10px;
    padding: 0px;
}

.buttons-block {
    margin-top: 30px;
}

._tic650 {
    min-height: 650px;
}

._tic340 {
    min-height: 340px;
}

._tic480 {
    min-height: 480px;
}

._tic180 {
    min-height: 180px;
}

._tic250 {
    min-height: 250px;
}

._tic280 {
    min-height: 280px;
}

._tic380 {
    min-height: 380px;
}

._tic150 {
    min-height: 150px;
}

._tic200 {
    min-height: 200px;
}

._tic350 {
    min-height: 350px;
}

._tic315 {
    min-height: 315px;
}

._tic630 {
    min-height: 630px;
}

._tic400 {
    min-height: 400px;
}

._tic450 {
    min-height: 450px;
}

._tic1320 {
    min-height: 1320px;
}

._tic655 {
    min-height: 655px;
}

._tic835 {
    min-height: 835px;
}

._tic412 {
    min-height: 412px;
}

._tic413 {
    min-height: 413px;
}

#robotTip .modal-dialog {
    margin-left: 10%;
}

#robotTip img {
    position: absolute;
    bottom: -45px;
    right: -60px;
}

#robotTip .tip {
    position: relative;
    padding: 13px 10px;
    margin: 1em 0 3em;
    border: 3px solid #56AEFB;
    text-align: center;
    color: #333;
    background: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    display: block;
}

#robotTip .tip:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid #56AEFB;
    border-right: 10px solid transparent;
    border-top: 10px solid #56AEFB;
    border-bottom: 10px solid transparent;
    left: 21px;
    bottom: -20px;
}

#robotTip .tip:after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid #fff;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    border-bottom: 10px solid transparent;
    left: 24px;
    bottom: -13px;
}

#robotTip .tip p {
    margin-bottom: 0;
}

/*
Tactic Tools
*/
.custom-tab {
    display: none;

}

.custom-tab.active {
    display: block;

}

/*
Roads Page
*/
.roads-list {
    margin-bottom: 30px;

}

.roads-list .collapse {
    margin-top: -2px;
    padding-top: 2px;
}

.road-list {
    display: flex;
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    background-color: #FFFFFF;
    align-items: center;

    flex-wrap: wrap;

    margin: 2px 4px 25px 4px;
}

.road-list-icon {
    width: 70px;
    height: 100%;
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.available-rotes .road-list-icon {
    background-color: #56AEFB;
}

.finished-routes .road-list-icon {
    background-color: #61AE24;
}

.inactive-routes .road-list-icon {
    background-color: #e01a1a;
}

.road-list-name {
    margin-left: 25px;
    flex: 1;
    padding: 5px 0;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
}

.road-list-name a {
    text-decoration: none;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
}

.road-list-recomend {
    min-width: 200px;
    margin-left: auto;
    margin-right: 25px;
    color: #333333;
    font-family: "PT Sans";
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.1px;
    line-height: 19px;
}

.road-list-recomend i {
    margin-right: 5px;
    color: #FFCA00;
}

.roads-list h2:after {
    content: '\f078';
    padding-left: 15px;
    font: normal normal normal 16px/1 FontAwesome;
}

.roads-list h2.collapsed:after {
    content: '\f077';
}

/*
Instruments page
*/

.mytools-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 35px;

}

.mytools-list .mytools-card {
    width: 280px;
    height: 390px;
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    margin-right: 40px;
    margin-bottom: 40px;
}

.mytools-list .mytools-card.new-tool {
    height: auto;
}

.mytools-list .mytools-card .mytools-card-header, .mytools-list .mytools-card .mytools-card-footer {
    padding: 15px;
}

.mytools-list .mytools-card .mytools-card-header {
    height: 92px;
}

.mytools-list .mytools-card.new-tool .mytools-card-header {
    height: 50px;
}

.mytools-list .mytools-card .header, .mytools-list .mytools-card .header a {
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 17px;
    margin-bottom: 8px;
    position: relative;
    text-decoration: none;
}

.mytools-list .mytools-card .date {
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 20px;
    margin-bottom: 6px;
}

.mytools-list .mytools-card .type {
    color: #333333;
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
}

.mytools-list .mytools-card .mytools-card-body {
    height: 148px;
}

.mytools-list .mytools-card.type_1 .mytools-card-body {
    background-color: #FFCA00;
}

.mytools-list .mytools-card.type_2 .mytools-card-body {
    background-color: #EB0A12;
}

.mytools-list .mytools-card.type_3 .mytools-card-body {
    background-color: #003D9D;
}

.mytools-list .mytools-card.type_4 .mytools-card-body {
    background-color: #61AE24;
}

.mytools-list .mytools-card.type_5 .mytools-card-body {
    background-color: #56AEFB;
}

.mytools-list .mytools-card.type_6 .mytools-card-body {
    background-color: #F8A528;
}

.mytools-list .mytools-card .mytools-card-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mytools-list .mytools-card .mytools-card-body img {
    height: 110px;
}

.mytools-card-footer {
    display: flex;
    height: 150px;
    flex-direction: column;
}

.mytools-list .mytools-card.new-tool .mytools-card-footer {
    height: auto;
}

.mytools-list .mytools-card.new-tool .mytools-card-footer b {
    display: block;
    margin-bottom: 3px;
    margin-top: 5px;
}

.mytools-list .mytools-card.new-tool .mytools-card-footer b:first-of-type {
    margin-top: 0px;
}

.mytools-card-footer .text {
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 20px;
    overflow: hidden;
    margin-bottom: 0;
}

.mytools-card-footer .edit-icons {
    margin-top: auto;
}

.recomendations-tools-list.mytools-list .mytools-card .header:after, .mytools-list .mytools-card.recomended .header:after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('../images/star.png');
    display: inline-block;
    vertical-align: middle;
    right: 0;
    position: absolute;
}

.filters-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;

}

.filter-tools {
    display: flex;
    flex-wrap: wrap;
}

.filter-tool {
    padding: 6px 10px 6px 10px;
    margin-right: 15px;
    margin-bottom: 5px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 19px;
    background-color: #F5F5F5;
    color: #9E9E9E;
}

.filter-tool:hover {
    cursor: pointer;

}

.filter-tool.type_1.active {
    background-color: #FFE68D;
    color: #F3B410;

}

.filter-tool.type_2.active {
    background-color: #FF6C6E;
    color: #BB050B;
}

.filter-tool.type_3.active {
    background-color: #2871E5;
    color: #002763;
}

.filter-tool.type_4.active {
    background-color: #81CC46;
    color: #4B871C;
}

.filter-tool.type_5.active {
    background-color: #91CAFC;
    color: #3081C8;
}

.filter-tool.type_6.active {
    background-color: #FFD391;
    color: #EB8815;
}

.filters-tools .form-group, .filters-tools .custom-group-input input {
    margin-bottom: 0;
}

/*
TOOL LANDING
*/
#creatingLanding .section1 {
    padding: 30px 20px;
    border-left: 1px solid #9b9b9b;
    border-right: 1px solid #9b9b9b;
}

#creatingLanding .section1:first-of-type {
    border-top: 1px solid #9b9b9b;
}

#creatingLanding .section1:last-of-type {
    border-bottom: 1px solid #9b9b9b;
}

#creatingLanding .section2 {
    padding: 20px 30px;;
    background-color: #f2f2f2;
}

#creatingLanding .bl-pr-menu {
    flex-grow: 2;
}

#creatingLanding .landing-logo {
    max-width: 300px;
    position: relative;
    max-height: 200px;
}

#creatingLanding .landing-logo .dm-uploader.version1 {
    background-image: url("../images/neitrallogo.png");
    background-size: initial;

}

#creatingLanding .badge {
    margin-top: 5px;
    white-space: normal;
    position: absolute;
    max-width: 300px;
    z-index: 10;
}

#creatingLanding .dm-uploader {
    /*border: 0.1rem dashed #787878;*/
    text-align: center;
    position: relative;
}

#creatingLanding .dm-uploader.active {
    border-color: red;
    border-style: solid;
}

#creatingLanding .dm-uploader {
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 100%;
    height: 70px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#creatingLanding .dm-uploader.version1 {
    background-image: url("../images/bg-upload1.png");
}

#creatingLanding .dm-uploader.version2 {
    background-image: url("../images/bg-upload2.png");
}

#creatingLanding .dm-uploader.version2.landing-imageTestimonial.person1 {
    background-image: url("../images/advantage0.png");
}

#creatingLanding .dm-uploader.version2.landing-imageTestimonial.person2 {
    background-image: url("../images/advantage0.png");
}

#creatingLanding .dm-uploader.version2.landing-imageTestimonial.person3 {
    background-image: url("../images/advantage0.png");
}

#creatingLanding .dm-uploader.version3 {
    height: 50px;
    background-image: url("../images/neitrallogo.png");
    background-size: auto;
}

#creatingLanding .linear-bg {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0) 49.9%, #f7f7f7 49.9%, #f7f7f7 60%, rgba(0, 0, 0, 0) 60%) fixed,
    linear-gradient(45deg, #f7f7f7 10%, rgba(0, 0, 0, 0) 10%) fixed;
    background-size: 0.5em 0.5em;
}

#creatingLanding .landing-logo .dm-uploader.added {
    border: none;
    max-height: 50px;
    overflow: hidden;
}

#creatingLanding .dm-uploader.added .worked-zone {
    display: none;

}

#creatingLanding .dm-uploader img {
    display: none;
}

#creatingLanding .dm-uploader.added {
    background: none !important;
}

#creatingLanding .dm-uploader.added img {
    display: block;
    height: 100%;
    margin: 0 auto;
}

#creatingLanding .dm-uploader .worked-zone {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#creatingLanding .dm-uploader .worked-zone span {
    margin: 15px 30px;
    display: block;
    background-color: #f2f2f2;
}

#creatingLanding .dm-uploader.version3 .worked-zone span {
    background-color: initial;
}

#creatingLanding .dm-uploader .worked-zone input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    border: solid transparent;
    width: 100%;
    opacity: .0;
    filter: alpha(opacity=0);
    cursor: pointer;
    height: 100%;
    width: 100%;
}

#creatingLanding .dm-uploader .remove-image, #creatingLanding .dm-uploader .add-image {
    display: none;
    opacity: 1;
    position: absolute;
    top: 0;
    color: #000;
    right: 0px;
}

#creatingLanding .dm-uploader .add-image {
    display: block;
    min-height: 15px;
}

#creatingLanding .dm-uploader .remove-image:hover, #creatingLanding .dm-uploader .add-image:hover {
    cursor: pointer;
}

#creatingLanding .dm-uploader.added .remove-image {
    display: block;
    min-height: 15px;
}

#creatingLanding .dm-uploader.added .add-image {
    display: none;
}

#creatingLanding [contenteditable="true"] {
    border-bottom: solid 1px #000;
}

#creatingLanding p[contenteditable="true"] {
    min-height: 20px;
}

#creatingLanding [contenteditable="true"]:focus {
    outline: none;
    border: none;
}

#creatingLanding .h1 {
    font-weight: bold;
}

#creatingLanding .regular24 {
    font-size: 24px;
}

#creatingLanding .header .div-button {
    text-align: right;
}

#creatingLanding .button {
    background-color: #61AE24;
    box-shadow: 0 2px 2px 0 rgba(75, 135, 28, 0.53);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;

}

#creatingLanding .pr-menu {
    text-decoration: underline;
    font-weight: 500;
    font-family: Roboto;
}

#creatingLanding .button .span-btn {
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

#creatingLanding .button [contenteditable="true"] {
    border-bottom: solid 1px #fff;
    min-height: 15px;
    display: block;
    min-width: 15px;
    border-bottom: none;
    color: #fff;
}

#creatingLanding .landing-headerTop {
    color: #000000;
    font-family: Roboto, serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
}

#creatingLanding .landing-stepImage.landing-stepImage1.dm-uploader {
    background-image: url("../images/num1.png");
}

#creatingLanding .landing-stepImage.landing-stepImage2.dm-uploader {
    background-image: url("../images/num2.png");
}

#creatingLanding .landing-stepImage.landing-stepImage3.dm-uploader {
    background-image: url("../images/num3.png");
}

#creatingLanding .landing-stepImage.landing-stepImage4.dm-uploader {
    background-image: url("../images/num4.png");
}

#creatingLanding .advantage {
    text-align: center;

}

#creatingLanding .advantage-text {
    border: none !important;
    font-weight: bold;
}

#creatingLanding .advantage .dm-uploader {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    overflow: hidden;
}

#creatingLanding .advantage.advantage0 .dm-uploader {
    background-image: url("../images/advantage0.png");
}

#creatingLanding .advantage.advantage1 .dm-uploader {
    background-image: url("../images/advantage1.png");
}

#creatingLanding .advantage.advantage2 .dm-uploader {
    background-image: url("../images/advantage2.png");
}

#creatingLanding .dm-uploader.version1.landing-productImage {
    background-image: url("../images/72005.png");
    min-height: 150px;
}

#creatingLanding p {
    overflow: hidden;
}

#creatingLanding .form-input {
    background-color: #FFE68D;
    padding: 20px;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(148, 94, 28, 0.5);
    border-radius: 20px
}

#creatingLanding .form-input p {
    font-weight: bold;
}

#creatingLanding .form-input .form-control {
    background-color: #fff;
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 10px;

}

#creatingLanding .form-input .btn {
    width: 100%;
    border: 1px solid #9b9b9b;
}

#creatingLanding .alert {
    margin-bottom: 0;
    text-align: center;
    min-height: 100px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
}

#creatingLanding .alert-center {
    display: flex;
    align-items: center;
    text-align: center;
}

#creatingLanding .h200 {
    height: 200px;
    overflow: hidden;
}

#creatingLanding .h50 {
    height: 50px;
    overflow: hidden;
}

#creatingLanding .h100 {
    height: 100px;
    overflow: hidden;
}

#creatingLanding .h500 {
    height: 500px;
    overflow: hidden;
}

#creatingLanding .landing-productName {
    border-bottom: 1px solid #979797;
    font-family: Roboto, serif;
    font-size: 18px;
    font-weight: bold;
    text-align: center;

}

#creatingLanding .landing-productDescription, #creatingLanding .landing-functionDescription, #creatingLanding .landing-howCost, #creatingLanding .landing-ourAdvantagea {
    text-align: center;
}

#creatingLanding .landing-howItWork ul {
    margin: 0;
    padding: 0 0 0 10px;
}

@media (min-width: 768px) {
    #creatingLanding .mh-md-200 {
        max-height: 200px;
        overflow: hidden;
    }

    #creatingLanding .h-md-500 {
        height: 500px;
        overflow: hidden;
    }
}

#creatingLanding .add-function, #creatingLanding .add-step, #creatingLanding .add-social {

    font-size: 16px;
    color: #3081C8;
}

#creatingLanding .add-function:hover, #creatingLanding .add-step:hover, #creatingLanding .add-social:hover {
    cursor: pointer;
}

#creatingLanding .function {
    margin-bottom: 2rem;
}

#creatingLanding .dm-uploader.version1.landing-functionImage {
    background-image: url("../images/advantage0.png");
    background-size: auto;
    background-position: center;
}

#creatingLanding .function .remove-function {
    position: absolute;
    top: 0;
    right: 0;
}

#creatingLanding .function .remove-function:hover {
    cursor: pointer;
}

#creatingLanding .step {
    margin-bottom: 2rem;
}

#creatingLanding .step .step-img .dm-uploader {
    height: 150px;
    width: 150px;
    margin: 0 auto;
    border-radius: 75px;
    background-size: cover;

    overflow: visible;
}

#creatingLanding .step .step-img .dm-uploader .remove-image {
    top: 5%;
    right: 20%;
}

#creatingLanding .step .step-text {
    text-align: center;
}

#creatingLanding .step .remove-step {
    position: absolute;
    top: 0;
    right: 0;
}

#creatingLanding .step .remove-step:hover {
    cursor: pointer;
}

#creatingLanding .dm-uploader.version2.landing-mainImage {
    background-image: url("../images/bg-uploadbig.png");
}

#creatingLanding .plans {
    margin-top: 3rem;
}

#creatingLanding .plans img {
    width: 100%;
}

#creatingLanding .plans .plan .alert {
    min-height: 150px;
    justify-content: center;
}

#creatingLanding .testimonials {
    margin-top: 20px;
}

#creatingLanding .testimonials .testimonial {
    display: flex;
    justify-content: between;
    align-items: center;

}

#creatingLanding .testimonials .testimonial .dm-uploader {
    height: 100px;
    width: 100px;
    min-width: 100px;
    border-radius: 50px;
    background-size: cover;
    border: 1px solid #787878;
    overflow: hidden;
    margin-right: 10px;
    overflow: visible;
}

#creatingLanding .testimonials .testimonial .dm-uploader .remove-image {
    right: 20%;
    top: 5%;
}

#creatingLanding .testimonials .testimonial .text-testimonial {
    margin-left: 15px;
    width: 100%;
}

#creatingLanding .mt-10 {
    margin-top: 6rem !important;
}

#creatingLanding .btn span {
    overflow: hidden;
    display: block;
}

#creatingLanding .form-input small {
    color: #999999;
    font-style: italic;

}

#creatingLanding .social-list {
    flex-grow: 1;
}

#creatingLanding .social-list li.list-inline-item {
    margin-right: 20px;
    position: relative;
    margin-bottom: 10px;
}

#creatingLanding .social-list img {
    width: 50px;
    height: 50px;
}

#creatingLanding .social-list i {
    position: absolute;
    top: 0;
    right: -15px;
}

#creatingLanding .social-list i:hover {
    cursor: pointer;
}

#creatingLanding .list-social-items {
    position: absolute;
    right: 0px;
    bottom: -15px;
    display: none;
}

#creatingLanding .footer {
    background-color: #f2f2f2;
    border-bottom: 5px solid #949493;
    padding: 30px;
}

#creatingLanding .footer .footer-menu {
    padding-top: 15px;
}

/*
DASHBOARD
*/
.infotarif {

    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.tarif-balance {
    color: #333333;
    font-family: "PT Sans";
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
    margin-right: 33px;
}

.tarif-balance p {
    margin-bottom: 0px;
}

.alert-warning {
    color: #333;
    font-family: "PT Sans";
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 19px;
    border: 1px solid #F3B410;
    background-color: #FFF6D6;
}

.dashboard-result {

    display: flex;
    margin-bottom: 20px;
}

.dashboard-result .user-photo {
    width: 70px;
    margin-right: 20px;
}

.dashboard-result .user-photo img {
    width: 100%
}

.additional-Information h3 {
    margin-bottom: 7px;
}

.additional-Information p {
    margin-bottom: 8px;
}

.dashboard-block-diagnosys {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dashboard-block-diagnosys .user-name {
    color: #000000;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
}

.dashboard-list-diagnosys {
    display: flex;
    margin-top: auto;
    height: 40px;
    flex-wrap: wrap;
}

.dashboard-list-diagnosys-block {
    margin-right: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dashboard-list-diagnosys-block:last-of-type {
    margin-left: auto;
}

.dashboard-road.road-list {
    background-color: #FFE68D;
    position: relative;
    width: calc(100% - 30px);

}

.dashboard-road.road-list:after {
    display: block;
    width: 30px;
    height: calc(100% + 0px);

    content: "";
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 30px solid #FFE68D;
    position: absolute;
    right: -30px;
    top: 0px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s;
}

.dashboard-road.road-list:before {
    display: block;
    width: 30px;
    height: calc(100% + 3px);
    content: "";
    border-top: 35px solid #FFF;
    border-bottom: 35px solid #fff;
    border-left: 30px solid rgba(196, 196, 196, 0.3);
    position: absolute;
    right: -32px;
    top: -1px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s;
    background: linear-gradient(to right, rgba(196, 196, 196, 0.5), #fff);
}

.dashboard-road.road-list .road-list-icon {
    background-color: #FFCA00;
}

.robot-quote {
    color: #333333;
    font-family: "PT Sans";
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.1px;
    line-height: 18px;
    background-color: #F5F5F5;
    padding: 15px;
    margin-right: 300px;
    position: relative;
    margin-bottom: 30px;
}

.robot-quote:after {
    display: block;
    width: 30px;
    content: "";
    border-bottom: 28px solid transparent;
    border-left: 20px solid #F5F5F5;
    position: absolute;
    right: -30px;
    top: calc(50% - 13px);

}

.robot-image {
    position: absolute;
    right: 100px;
    width: 200px;
    bottom: -50px;
    max-height: 190px;
    overflow: hidden;
}

.robot-image img {
    width: 100%;
}

.schema-dashboard {
    margin-right: 20px;
    margin-bottom: 15px;
    flex: 0 0 100%;
    max-width: 510px;
}

.info-schema {
    flex: 1;
    min-width: 300px;
}

.all-tools.dashboard .tactic-tool-image:hover {
    cursor: auto;

}

.all-tools.dashboard .tactic-tool-image:hover img {
    opacity: 1;
}

/*
 MARKET PANEL
*/
.result-sale-row {
    display: flex;
    margin-bottom: 22px;
}

.result-sale-row .result-sale-div {
    width: 170px;
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    margin-right: 25px;
    margin-bottom: 15px;
    padding: 10px 12px 16px 16px;
    position: relative;
}

.result-sale-row .result-sale-div:after {
    display: block;
    width: 50px;
    height: calc(100% - 50px);
    content: "";
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent;
    border-left: 21px solid #F5F5F5;
    position: absolute;
    right: -54px;
    top: 25px;


}

.result-sale-row .result-sale-div:last-of-type:after {
    display: none;
}

.result-sale-row .result-sale-header {
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 17px;
}

.result-sale-row .result-sale-glass {
    display: flex;
    margin-bottom: 16px;
}

.result-sale-row .result-sale-glass .glass-block {
    margin-right: 10px;
    height: 126px;
    width: 80px;
    background-color: #F5F5F5;
    position: relative;
}

.result-sale-row .green-part {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #E4F1DA;
}

.result-sale-row .line-part {
    height: 3px;
    width: 100%;
    background-color: #4B871C;
    position: absolute;
    z-index: 3
}

.result-sale-row .done-part {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #FFCA00;
}

.result-sale-row .done-part[data-status="1"] {
    background-color: #81CC46;
}

.result-sale-row .done-part[data-status="2"] {
    background-color: #FFCA00;
}

.result-sale-row .done-part[data-status="3"] {
    background-color: #BB050B;
}

.result-sale-row .result-sale-glass .glass {
    display: flex;
    flex-direction: column;
    color: #9E9E9E;
    font-size: 10px;
    justify-content: space-between;
    position: relative;
}

.result-sale-row .result-sale-glass .glass p {
    margin: 0;
}

.result-sale-row .result-sale-glass .glass .real-value {
    position: absolute;
    color: #4B871C;
    font-weight: bold;
    display: block;
    background-color: #fff;
}

.result-sale-row .result-sale-recomendation {
    color: #333333;
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
}

.result-sale-row .result-sale-text {
    color: #333333;
    font-size: 14px;
    letter-spacing: -0.5px;
    line-height: 19px;
}

.result-sale-row .result-sale-link {
    color: #56AEFB;
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 22px;
    text-decoration: underline
}

.result-sale-row .result-sale-link:hover {
    cursor: pointer
}

.custom-showtext {
    display: none;
}

.custom-showtext:first-of-type {
    display: block;
}

.marketing-indexes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}

.marketing-index {
    width: calc(100% / 6 - 10px);
    min-width: 200px;
    padding: 10px;

    border: 1px dotted #DDD;
    margin-bottom: 10px;
}

.marketing-index .header {
    text-align: center;
    margin-bottom: 10px;
}

.marketing-index .result {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.marketing-index .line {
    flex-grow: 1;
    margin-right: 10px;
    height: 10px;
    background-color: #DDDDDD;
    margin-bottom: 0;
}

.marketing-index .line .bg {
    background-color: #FFCA00;
    height: 10px;
    display: block;
}

.marketing-index .custom-check label {
    margin-bottom: 0;
}

.marketing-index .custom-check label:hover {
    cursor: default;
}

.marketing-index .custom-check input[type="checkbox"]:checked:disabled + span, .marketing-index .custom-check input[type="checkbox"]:hover:checked:disabled + span {
    background-color: #3081C8;
    border-color: #3081C8;
}

/*
ACTIONS
*/
.action-radio-answers, .message .form-group {
    margin-top: 10px;
}

.message .form-group {
    max-width: 300px;
}

.list-hypotheses {
    display: flex;
    flex-wrap: wrap;
}

.js-listHypotheses, .action-chat, .header-chat, .header-listHypotheses {
    display: none;
}

.list-hypotheses a {
    text-decoration: none;
}

.add-hypotheses {
    justify-content: center;
    align-items: center;
}

.add-hypotheses-href {
    height: 333px;
    width: 228px;
    border-radius: 10px;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    opacity: 0.7;
}

.add-hypotheses-href:hover {
    opacity: 1;
    cursor: pointer;
}

.add-hypotheses, .div-hypotheses {
    width: 307px;
    min-height: 430px;
    margin-right: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.add-hypotheses .plus-hypothese {
    width: 62px;
    height: 62px;
    position: relative;
    margin-bottom: 30px;
}

.add-hypotheses .plus-hypothese:before, .add-hypotheses .plus-hypothese:after {
    position: absolute;
    left: 40px;
    content: ' ';
    height: 80px;
    width: 3px;
    background-color: #333;

}

.add-hypotheses .plus-hypothese:before {
    transform: rotate(90deg);
}

.add-hypotheses .plus-hypothese:after {
    transform: rotate(0deg);
}

.add-hypotheses p {
    color: #000000;
    font-family: Roboto;
    font-size: 30px;
    font-weight: 300;
    line-height: 39px;
    text-align: center;
}

.div-hypotheses p {
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 20px;
    margin-bottom: 10px;
}

.div-hypotheses .hypothese-header {
    font-size: 14px;
    font-weight: bold;
    line-height: 17px;
    align-items: center;
    display: flex;
    margin-bottom: 13px;
}

.div-hypotheses .hypothese-header:before, .hypothese-header:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 12px;
    height: 12px;
    content: '';

}

.div-hypotheses .hypothese-header:before {
    margin-right: 5px;
}

.div-hypotheses .hypothese-header:after {
    margin-left: auto;
}

.div-hypotheses .hypothese-header[data-status="1"]:before {
    background-image: url('../images/play.png');
}

.div-hypotheses .hypothese-header[data-status="2"]:before {
    background-image: url('../images/checked-symbol.png');
}

.div-hypotheses .hypothese-header[data-status="3"]:before {
    background-image: url('../images/close.png');
}

.div-hypotheses .hypothese-header[data-priority="3"]:after {
    background-image: url('../images/priority-high.png');
}

.div-hypotheses .hypothese-header[data-priority="2"]:after {
    background-image: url('../images/priority-medium.png');
}

.div-hypotheses .hypothese-header[data-priority="1"]:after {

}

.div-hypotheses .hypothese-action {
    margin-bottom: 15px;
}

.div-hypotheses .hypothese-period {
    margin-bottom: 6px;
}

.div-hypotheses .hypothese-headname {
    padding: 6px 20px;
    margin: -20px -20px 10px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.div-hypotheses .hypothese-name {
    background-color: #F5F5F5;
    padding: 6px 20px;
    margin: 0px -20px 10px;
}

.div-hypotheses .hypothese-action, .div-hypotheses .hypothese-period {
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
}

.div-hypotheses .hypothese-edit {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
    margin-top: auto;
}

.hypothese-h, .hypothese-mark {
    font-weight: bold;
}

.div-hypotheses .hypothese-edit .hypothese-edit-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.div-hypotheses .hypothese-edit .hypothese-edit-icon:hover {
    cursor: pointer;
}

.hypothese-conclusions.custom-group-input textarea {
    margin-bottom: 0px;
}

.range-slider.hypothese-result {
    margin: 10px 0 20px;
}

.range-slider.hypothese-result .range-slider__value {
    background-color: #fecc00;
    color: #333333;
    font-size: 12px;
    padding: 0 5px;
    bottom: -20px;
    height: 20px;
    margin-left: -10px;
}

.range-slider.hypothese-result .range-slider__value.first {
    background-color: #F5F5F5;
    color: #333333;
    left: 21%;
    top: -14px;

}

.range-slider.hypothese-result .range-slider__value:after {
    border-bottom: 4px solid #fecc00;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    left: 48%;
    left: -moz-calc(50% - 4px);
    left: -webkit-calc(50% - 4px);
    left: calc(50% - 4px);
}

.range-slider.hypothese-result .range-slider__value.first:after {
    border-top: 4px solid #F5F5F5;
    border-bottom: 4px solid transparent;
    bottom: -8px;
}

.range-slider.hypothese-result input[type=range]::-webkit-slider-thumb {
    border: 0px solid #fecc00;
    background: #393938;
}

.range-slider.hypothese-result input[type=range]::-moz-range-thumb {
    border: 0px solid #fecc00;
    background: #393938;
}

.range-slider.hypothese-result input[type=range]::-ms-thumb {
    border: 0px solid #fecc00;
    background: #393938;
}

.view-hypotheses {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.view-hypotheses i {
    display: block;
    height: 22px;
    width: 22px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;

}

.view-hypotheses i.active {
    opacity: 1;
}

.view-hypotheses i:last-of-type {
    margin-right: 0px;
}

.view-hypotheses i:hover {
    cursor: pointer;
    opacity: 1;
}

.view-hypotheses .view-hypotheses-cart {
    background-image: url('../images/icon-cards.png')
}

.view-hypotheses .view-hypotheses-table {
    background-image: url('../images/icon-table.png')
}

.table-list-hypotheses {
    margin-bottom: 20px;
}

.actions-table td[data-tdid="statusname"] {
    text-indent: -9999px;
    background-position: center;
    background-repeat: no-repeat;
}

.actions-table td[data-tdid="statusname"][data-id="1"] {
    background-image: url('../images/play.png');
}

.actions-table td[data-tdid="statusname"][data-id="2"] {
    background-image: url('../images/checked-symbol.png');
}

.actions-table td[data-tdid="statusname"][data-id="3"] {
    background-image: url('../images/close.png');
}

/*
ANALITIC
*/
.weekly-results {
    display: flex;
    flex-wrap: wrap;

    margin-bottom: 25px;
}

.weekly-results .weekly-result {
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    width: 270px;
    margin-right: 25px;
    padding: 10px;
}

.weekly-results .weekly-result .weekly-graph {
    height: 170px;
}

.weekly-results .weekly-result #graph-averagecheck {
    display: flex;
    align-items: center;
    justify-content: center;
}

.weekly-results .weekly-result #graph-averagecheck .text {
    text-align: center;
    line-height: 113px;
    width: 113px;
    height: 113px;
    background-color: #81CC46;
    border-radius: 50%;
    color: #FFF;
    font-size: 24px;
    font-weight: bold;

}

.weekly-results .weekly-result .header {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.weekly-result .header p {
    font-weight: bold;
    line-height: 17px;
    color: #333333;
    margin-bottom: 0;
}

.weekly-result .header i {
    color: #dcdcdc;
}

.weekly-result .info-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.weekly-result .info-line p {
    color: #9E9E9E;
    font-size: 11px;
    line-height: 12px;
    margin-bottom: 6px;
}

.weekly-result .first-info-line {
    text-align: left;
}

.weekly-result .second-info-line {
    text-align: right;
}

.weekly-result .first-info-line .value, .weekly-result .second-info-line .value {
    font-weight: bold;
    color: #333333;
}

.analitic-table tbody tr:first-of-type td {
    background-color: #FFF6D6;
}

.analitic-table tbody tr:hover {
    cursor: pointer;
}

.analitic-table tbody tr:first-of-type:hover {
    cursor: default;
}

.analitic-table tr.newdata td {
    border-bottom: none;
}

.analitic-table tr.newdata.brd td {
    border-bottom: 1px solid #DDDDDD;
    padding-top: 0;
}

.analitic-table .newdata td {
    background-color: #FBFBFB;

}

.analitic-table .newdata:not(.brd) td {

    padding-bottom: 0;
}

.analitic-table .newdata label {
    color: #90989D;
    font-size: 14px;
    line-height: 19px;
}

.analitic-table .newdata input {
    color: #90989D;
    font-size: 14px;
    line-height: 19px;
}

.analitic-table .newdata .form-group {
    margin-bottom: 0;
}

.list-integration {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.list-integration .div-integration {
    width: 176px;
    height: 209px;
    box-shadow: 0 2px 4px 2px rgba(196, 196, 196, 0.5);
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 0, 0, 0);
    overflow: hidden;
    text-align: center;
    position: relative;
}

.list-integration .div-integration.active {
    border: 2px solid #FFCA00;
}

.list-integration .div-integration:after {
    display: block;
    width: 176px;
    position: absolute;
    bottom: -2px;
    height: 40px;

    content: '';
    left: -2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), #fff);
}

.list-integration .div-integration .img-div {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.list-integration .div-integration img {
    max-width: 100%;
    max-height: 100%;
}

.list-integration .div-integration p {
    font-size: 14px;
    color: #333;
    text-align: left;

}

.list-integration .div-integration:hover {
    cursor: pointer;
    border: 2px solid #FFCA00;
}

.list-integration .div-integration.selected {
    border: 2px solid #FFCA00;
}

.current_analitic_data {
    font-size: .7em;
    background-color: #f0f8ff;
}

/* TOOL PAGE */
.custom-table.table-editable td.header {
    height: auto;
}


/* SUPPORT PAGE */
.nav-tabs.support-tab {
    height: auto;
}

.nav-tabs.support-tab .nav-link {
    background: none;
}

.nav-tabs.support-tab .nav-link.active {
    background: none;
}

.tab-content.support-tab-content {
    background: none;
}

.sticky-foot {
    position: fixed;
    top: 150px;
}

.sticky-foot tr {
    display: flex;
}

.sticky-foot td {
    flex: 1;
    background-color: #aaa !important;
    color: #333;
    max-width: unset !important;
    width: unset !important;
    opacity: 0.8;
}
