@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800);

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    height: auto !important;
    font-family: 'Open Sans',sans-serif;
    color: #333
}

a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none
}

.flex-inline {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.justify-space {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.justify-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

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

.content {
    color: #333;
    font-size: 16px;
    word-break: break-word
}

    .content li, .content p, .content ul {
        line-height: 20px
    }

    .content ol, .content p, .content ul {
        margin-top: 10px;
        margin-bottom: 10px
    }

    .content ol, .content ul {
        margin-left: 20px
    }

    .content li {
        margin-bottom: 5px
    }

    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
        margin-top: 15px;
        margin-bottom: 15px;
        color: #333
    }

    .content h1 {
        font-size: 2.4em
    }

    .content h2 {
        font-size: 2.2em
    }

    .content h3 {
        font-size: 2em
    }

    .content h4 {
        font-size: 2em
    }

    .content h5 {
        font-size: 1.8em
    }

    .content h6 {
        font-size: 1.8em
    }

    .content a {
        font-weight: 700;
        color: #333;
        text-decoration: underline !important
    }

    .content img {
        max-width: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .content .aligncenter {
        display: block;
        margin-left: auto;
        margin-right: auto
    }

    .content .alignleft {
        float: left;
        text-align: left;
        margin: .5em 1em .5em 0
    }

    .content .alignright {
        float: right;
        text-align: right;
        margin: .5em 0 .5em 1em
    }

    .content .justify {
        text-align: justify !important
    }

    .content .error {
        color: #ff9494
    }

    .content .success {
        color: #2b3
    }

.table-wrapper {
    overflow-x: auto
}

table {
    margin: 10px 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid rgba(0,0,0,.4)
}

    table td, table th {
        min-width: 100px;
        text-align: left;
        padding: 8px
    }

    table tr:nth-child(even) {
        background: #f2f2f2
    }

.nav {
    padding: 0 9px;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    border-bottom: 2px solid #f8f8f8;
    background: #fff
}

.nav__logo {
    width: 230px;
    font-weight: 400;
    font-size: 14px
}

    .nav__logo span {
        font-weight: 700;
        color: #047af6
    }

.nav__breadcrumbs-item {
    position: relative;
    padding-right: 20px;
    font-size: 13px;
    color: #c5c5c5
}

    .nav__breadcrumbs-item:not(:last-child):after {
        content: '';
        position: absolute;
        right: 10px;
        top: 5px;
        width: 1px;
        height: 10px;
        background: #c5c5c5;
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg)
    }

.nav__search {
    margin-right: 15px;
    width: 132px;
    height: 20px;
    position: relative
}

    .nav__search input {
        padding: 0 30px 0 4px;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        color: #000;
        border: 1px solid #c5c5c5;
        -webkit-border-radius: 0;
        border-radius: 0;
        outline: 0;
        -webkit-appearance: none;
        background: 0 0
    }

    .nav__search button {
        font-size: 12px;
        position: absolute;
        right: 0;
        top: 0;
        width: 25px;
        height: 100%;
        color: #c5c5c5;
        -webkit-border-radius: 0;
        border-radius: 0;
        outline: 0;
        -webkit-appearance: none;
        background: 0 0;
        border: none;
        cursor: pointer
    }

.nav__cart {
    margin-right: 20px;
    font-size: 11px
}

.nav__menu {
    margin-right: 20px;
    font-size: 11px
}

.nav__avatar {
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #008b8b;
    color: #fff;
    font-size: 8px
}

.sidebar {
    position: fixed;
    top: 30px;
    left: 0;
    height: -webkit-calc(100% - 30px);
    height: calc(100% - 30px);
    width: 230px;
    background: #eaeaea;
    border-color: #dcdcdc;
    border-style: solid;
    border-width: 1px 1px 0 0;
    overflow: hidden
}

.sidebar-inner {
    width: -webkit-calc(100% + 17px);
    width: calc(100% + 17px);
    height: 100%;
    overflow-y: scroll;
    margin-right: -17px
}

.sidebar-menu__item {
    position: relative;
    width: 100%;
    max-height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

    .sidebar-menu__item.active > .sidebar-menu__item-inner {
        background: #cecece;
        font-weight: 700
    }

        .sidebar-menu__item.active > .sidebar-menu__item-inner:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: #047af6 !important
        }

    .sidebar-menu__item.opened {
        max-height: unset;
        background: #dcdcdc
    }

        .sidebar-menu__item.opened:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: #adb3af
        }

        .sidebar-menu__item.opened .sidebar-menu__item {
            font-size: 12px
        }

            .sidebar-menu__item.opened .sidebar-menu__item:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 2px;
                height: 100%;
                background: #adb3af
            }

            .sidebar-menu__item.opened .sidebar-menu__item .sidebar-menu__item-inner {
                height: 28px
            }

                .sidebar-menu__item.opened .sidebar-menu__item .sidebar-menu__item-inner i {
                    margin-left: 5px;
                    font-size: 12px
                }

.sidebar-menu__item-inner {
    padding: 0 8px;
    width: 100%;
    height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

    .sidebar-menu__item-inner:hover {
        background: #cecece
    }

.sidebar-menu__item i {
    margin-right: 5px;
    font-size: 13px
}

.sidebar-menu__item span {
    width: 175px;
    overflow: hidden
}

.sidebar-menu__item_project-name {
    margin-bottom: 2px;
    font-weight: 700;
    position: relative
}

    .sidebar-menu__item_project-name .sidebar-menu__item-inner {
        background: 0 0 !important
    }

    .sidebar-menu__item_project-name:after {
        content: '';
        position: absolute;
        left: 8px;
        bottom: 0;
        width: -webkit-calc(100% - 8px);
        width: calc(100% - 8px);
        height: 1px;
        background: #d7d7d7
    }

.main {
    min-height: 100vh;
    width: -webkit-calc(100% - 230px);
    width: calc(100% - 230px);
    margin: 30px 0 0 230px;
    background: #f8f8f8
}

.main-header {
    padding: 1px 20px;
    background: #fff;
    position: relative
}

    .main-header:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        height: 1px;
        width: -webkit-calc(100% - 40px);
        width: calc(100% - 40px);
        background: rgba(0,0,0,.4)
    }

.main-body {
    min-height: 100%;
    padding: 20px
}

.objects-container {
    height: 90vh;
    overflow: hidden;
    position: relative
}

    .objects-container:after {
        content: '';
        position: absolute;
        left: 48%;
        top: 0;
        width: 3px;
        height: 100%;
        background: #333;
        opacity: .6
    }

.objects-tabs {
    padding: 20px
}

.objects-tabs-container {
    width: 48%;
    height: 100%;
    overflow-y: auto
}

.objects-tabs li {
    margin-bottom: 20px
}

    .objects-tabs li.active {
        color: #047af6
    }

        .objects-tabs li.active a {
            color: #047af6
        }

.objects-tabs-content {
    padding: 20px;
    width: 100%
}

.objects-tabs-content-container {
    width: 50%;
    height: 100%;
    overflow-y: auto
}

.objects-tabs-content__item {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

    .objects-tabs-content__item.active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .objects-tabs-content__item img {
        margin: 10px;
        width: 220px;
        height: 150px;
        -o-object-fit: cover;
        object-fit: cover;
        cursor: pointer
    }

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000
}

    .popup.active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

.popup__close {
    position: absolute;
    z-index: 2;
    right: 5%;
    top: 5%;
    font-size: 48px;
    color: #333;
    cursor: pointer
}

.popup__inner {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(255,255,255,.7);
    cursor: pointer
}

.object-popup-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

    .object-popup-box img {
        max-height: 80%;
        max-width: 80%
    }

.login-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    min-height: 450px;
    position: relative;
    /*background-image: url(../img/login-bg.jpg); */
    -webkit-background-size: cover;
    background-size: cover
}

    /*.login-body:after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 765px;
        height: 435px;
        background-image: url(../img/login-image.png);
        -webkit-background-size: cover;
        background-size: cover;
        max-width: 100%
    }*/

.login-logo {
    position: relative;
    z-index: 1;
    max-width: 100%
}

    .login-logo img {
        display: block;
        margin: 0 auto;
        max-width: 90%
    }

.login-form {
    padding: 20px;
    margin: 10px 0;
    width: 500px;
    max-width: 90%;
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,.5)
}

.login-form__input {
    width: 100%;
    /*height: 30px;*/
    min-height: 30px;
    margin: 30px 0;
    position: relative
}

    .login-form__input input:not([type="checkbox"]) {
        width: 100%;
        height: 100%;
        outline: 0;
        padding: 3px .5rem;
        border: none;
        border: 1px solid #cacaca;
        min-height: 30px;
        border-radius: 3px;
    }

    .login-form__input .label {
        font-size: 14px;
        position: absolute;
        z-index: 0;
        left: 5px;
        bottom: 5px;
        color: #fff;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }

    .login-form__input.filled .label {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        font-size: 10px
    }

.login-form__submit {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    -webkit-appearance: none;
    border: none;
    background: #ffe600;
    outline: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    cursor: pointer
}

.login-form__add-text {
    margin-top: 50px;
    font-size: 14px;
    text-align: center;
    font-weight: 300
}

    .login-form__add-text a {
        font-weight: 700;
        color: #ffe600
    }

.operator-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    min-height: 650px;
    position: relative;
    background-image: url(../img/login-bg.jpg);
    -webkit-background-size: cover;
    background-size: cover
}

@media (max-width:960px) {
    .operator-body {
        padding: 20px 0;
        height: auto
    }
}

.operator-logo {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    max-width: 100%
}

    .operator-logo img {
        display: block;
        margin: 0 auto;
        max-width: 90%
    }

.operator-form {
    width: 800px;
    max-width: 90%;
    padding: 20px;
    background: rgba(0,0,0,.5);
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.operator-form__title {
    font-size: 36px;
    text-align: center;
    font-style: italic;
    color: #fff
}

.operator-form__desc {
    font-size: 18px;
    margin: 15px 0 46px;
    color: #fff
}

.operator-form__row {
    margin: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.operator-form__row-title {
    color: #fff
}

.operator-form__bottom {
    margin-top: 46px;
    text-align: right;
    color: #fff;
    font-size: 12px;
    font-style: italic
}

    .operator-form__bottom a {
        color: #ffe600
    }

.operator-form__submit {
    max-width: 100%;
    width: 260px;
    height: 50px;
    font-size: 18px;
    color: #fff;
    -webkit-appearance: none;
    border: none;
    background: #ffe600;
    outline: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    cursor: pointer
}

    .operator-form__submit.disabled {
        opacity: .3;
        pointer-events: none
    }

.operator-form__submit-wrapper {
    margin-top: 46px;
    text-align: center
}

.operator-form textarea {
    margin-top: 12px;
    padding: 5px 5px;
    width: 100%;
    height: 70px;
    resize: none;
    -webkit-appearance: none;
    font-family: 'Open Sans',sans-serif;
    font-weight: 500;
    font-size: 16px;
    outline: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

.rating {
    border: none;
    float: left
}

    .rating input {
        display: none
    }

    .rating label:before {
        margin: 5px;
        font-size: 24px;
        font-family: "Font Awesome 5 Free";
        display: inline-block;
        content: "\f005"
    }

    .rating .half:before {
        content: "\f089";
        position: absolute
    }

    .rating label {
        color: #fff;
        float: right;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-weight: 900;
        cursor: pointer
    }

    .rating input:checked ~ label {
        color: #ffe600
    }

    .rating:not(:checked) > label:hover {
        color: #ffe600
    }

        .rating:not(:checked) > label:hover ~ label {
            color: #ffe600
        }

    .rating input:checked + label:hover, .rating input:checked ~ label:hover {
        color: #ffed85
    }

    .rating input:checked input:checked ~ label:hover ~ label, .rating input:checked label:hover ~ input:checked ~ label {
        color: #ffed85
    }

.operator-modal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    z-index: 121;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #000;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    color: #ffe600;
    font-size: 20px;
    text-align: center;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

    .operator-modal.opened {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
