* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

html {
}

body {
}

    body::after {
    }

.container {
    width: 100%;
    height: 100%;
}

    .container > header {
        width: 280px;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }

header .nav {
    width: 100%;
    height: 100%;
}

    header .nav .logo {
        width: 100%;
        height: 50px;
        padding: 0 40px;
        margin: 40px 0;
    }

        header .nav .logo a {
            display: block;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
        }

            header .nav .logo a img {
                max-width: 120px;
                display: none;
            }

    header .nav .nav-sidebar {
        padding: 5px 0;
        /*height: calc(100% - 80px);*/
        max-height: calc(100% - 80px);
        overflow-y: auto;
    }

        header .nav .nav-sidebar .nav-li {
            margin: 3px 0;
            padding: 0px 15px 0px 0px;
        }

            header .nav .nav-sidebar .nav-li:first-child {
            }

            header .nav .nav-sidebar .nav-li .lnk {
                display: block;
                padding: 10px 40px;
                color: #333;
                font-size: 14px;
                line-height: 20px;
                font-weight: 400;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                -webkit-border-top-right-radius: 100px;
                -webkit-border-bottom-right-radius: 100px;
                -moz-border-radius-topright: 100px;
                -moz-border-radius-bottomright: 100px;
                border-top-right-radius: 100px;
                border-bottom-right-radius: 100px;
            }

                header .nav .nav-sidebar .nav-li .lnk .ico {
                    font-size: 24px;
                    margin-right: 8px;
                    color: #888;
                }

                header .nav .nav-sidebar .nav-li .lnk span {
                    font-size: 14px;
                    visibility: visible;
                    opacity: 1;
                    -webkit-transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, all 0.15s linear;
                    transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, all 0.15s linear;
                }

                header .nav .nav-sidebar .nav-li .lnk:hover {
                    background-color: #f1f1f180;
                }

                header .nav .nav-sidebar .nav-li .lnk.active {
                    background-color: #e19a20;
                    color: #fff;
                    /*background-image: linear-gradient(to right, #e19a20, white);*/
                }

                    header .nav .nav-sidebar .nav-li .lnk.active .ico {
                        color: #fff;
                    }

                    header .nav .nav-sidebar .nav-li .lnk.active:hover {
                        background-color: #e19a20;
                    }

                    header .nav .nav-sidebar .nav-li .lnk.active::after {
                    }

        header .nav .nav-sidebar .nav-dropdown {
        }

            header .nav .nav-sidebar .nav-dropdown > .lnk {
                position: relative;
            }

                header .nav .nav-sidebar .nav-dropdown > .lnk .btn-ex {
                    position: absolute;
                    top: 4px;
                    right: 3px;
                    width: 36px;
                    height: 36px;
                    padding: 10px 8px;
                    border-radius: 100%;
                }

                    header .nav .nav-sidebar .nav-dropdown > .lnk .btn-ex:before {
                        display: flex;
                        content: "expand_more";
                        font-size: 18px;
                        visibility: visible;
                        opacity: 1;
                        -webkit-transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, all 0.15s linear;
                        transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, all 0.15s linear;
                    }

                    header .nav .nav-sidebar .nav-dropdown > .lnk .btn-ex:hover {
                        background-color: #fff;
                    }

                header .nav .nav-sidebar .nav-dropdown > .lnk.active .btn-ex:hover {
                    color: #e19a20;
                }

            header .nav .nav-sidebar .nav-dropdown.open {
                /* background-color: #f1f1f1; */
                background-image: linear-gradient(to right, #f1f1f1, white);
            }

                header .nav .nav-sidebar .nav-dropdown.open > .lnk .btn-ex {
                }

                    header .nav .nav-sidebar .nav-dropdown.open > .lnk .btn-ex:before {
                        transform: rotate(-180deg);
                    }

                header .nav .nav-sidebar .nav-dropdown.open > .nested-nav-sidebar {
                    display: block;
                }

        header .nav .nav-sidebar .nested-nav-sidebar {
            display: none;
        }

        header .nav .nav-sidebar .nested-nav-li {
        }

            header .nav .nav-sidebar .nested-nav-li .lnk {
                padding-left: 60px;
            }

                header .nav .nav-sidebar .nested-nav-li .lnk:hover {
                    background-color: #fff;
                }

                header .nav .nav-sidebar .nested-nav-li .lnk.active {
                }

    header .nav .widget {
        margin-top: 100px;
        padding: 0 40px;
    }

        header .nav .widget ul.social {
            border-bottom: 1px solid #cfcfcf;
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        header .nav .widget ul li {
            margin-right: 12px;
        }

            header .nav .widget ul li a {
            }

                header .nav .widget ul li a img {
                    width: 26px;
                    opacity: 0.8;
                }

            header .nav .widget ul li:last-child {
                margin-right: 0px;
            }

        header .nav .widget .copyright {
            color: #888;
            font-size: 14px;
            line-height: 22px;
            text-decoration: none;
        }

    header .nav .sidebar-toggle {
        display: none;
        width: 44px;
        height: 44px;
        padding: 10px;
        margin-left: 0px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
        transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
        position: fixed;
        top: 22px;
        right: 20px;
    }

        header .nav .sidebar-toggle .ico {
            color: #999;
        }

        header .nav .sidebar-toggle:hover {
            background-color: #f1f1f1;
        }

            header .nav .sidebar-toggle:hover .ico {
            }

/* --------- MAIN --------- */

.container main {
    width: 100%;
    height: 100%;
    padding-left: 280px;
    -webkit-transition: padding 0.15s ease-in-out;
    transition: padding 0.15s ease-in-out;
}

main .preview {
    width: 100%;
    height: 100%;
}

    main .preview .data {
        width: 100%;
        height: calc(100% - 0px);
        padding: 40px 0px 5px 0px;
        overflow-y: auto;
    }

        main .preview .data .grid {
            width: 100% !important;
            margin: 0 auto;
        }

            main .preview .data .grid:after {
                content: '';
                display: block;
                clear: both;
            }

            main .preview .data .grid .grid-sizer,
            main .preview .data .grid .grid-item {
                width: calc(20% - 0px);
            }

            main .preview .data .grid .grid-sizer {
                display: none;
                /*visibility: hidden;*/
                /*opacity: 0;*/
                /*transform: scale(0.001);*/
            }

            main .preview .data .grid .grid-item {
                float: left;
                padding: 0 20px;
                margin: 0px 0 40px 0;
            }

                main .preview .data .grid .grid-item .content {
                    position: relative;
                    max-width: 100%;
                    cursor: default;
                    -webkit-border-radius: 15px;
                    -moz-border-radius: 15px;
                    border-radius: 15px;
                    overflow: hidden;
                }

                main .preview .data .grid .grid-item:first-child .content {
                    margin-top: 0;
                }

                main .preview .data .grid .grid-item .content .img {
                }

                    main .preview .data .grid .grid-item .content .img img {
                        display: block;
                        width: 100%;
                        height: auto;
                    }

                main .preview .data .grid .grid-item .content .overlay {
                    display: none;
                    background-color: #ffffffe0;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    overflow: hidden;
                    width: 100%;
                    height: 0;
                    transition: .5s ease;
                }

                    main .preview .data .grid .grid-item .content .overlay .wp {
                        display: table;
                        table-layout: fixed;
                        height: 100%;
                        width: 100%;
                    }

                        main .preview .data .grid .grid-item .content .overlay .wp .text {
                            display: table-cell;
                            height: 100%;
                            width: 100%;
                            vertical-align: middle;
                            text-align: center;
                        }

                            main .preview .data .grid .grid-item .content .overlay .wp .text h3.tlt {
                            }

                                main .preview .data .grid .grid-item .content .overlay .wp .text h3.tlt .ico {
                                    font-size: 16px;
                                    margin-right: 3px;
                                }

                                main .preview .data .grid .grid-item .content .overlay .wp .text h3.tlt span {
                                    font-size: 16px;
                                    line-height: 22px;
                                    font-family: serif;
                                }

                            main .preview .data .grid .grid-item .content .overlay .wp .text .ord {
                                margin-top: 10px;
                            }

                            main .preview .data .grid .grid-item .content .overlay .wp .text .ord {
                            }

                                main .preview .data .grid .grid-item .content .overlay .wp .text .ord .ico {
                                    font-size: 20px;
                                    margin-right: 5px;
                                    color: #f10000;
                                }

                                main .preview .data .grid .grid-item .content .overlay .wp .text .ord .numb {
                                    font-size: 16px;
                                    font-weight: 500;
                                    color: #e19a20;
                                }

                                main .preview .data .grid .grid-item .content .overlay .wp .text .ord .lnk {
                                    font-size: 14px;
                                    line-height: 20px;
                                    color: #333;
                                    font-weight: bold;
                                }

                                    main .preview .data .grid .grid-item .content .overlay .wp .text .ord .lnk:hover {
                                        text-decoration: underline;
                                    }

                main .preview .data .grid .grid-item .content:hover .overlay {
                    height: 100px;
                }

                main .preview .data .grid .grid-item .content .fvr {
                    display: none;
                    position: absolute;
                    top: 6px;
                    right: 6px;
                }

                    main .preview .data .grid .grid-item .content:hover .fvr,
                    main .preview .data .grid .grid-item .content .fvr.loved {
                        display: block;
                    }

                    main .preview .data .grid .grid-item .content .fvr .no {
                        display: none;
                    }

                    main .preview .data .grid .grid-item .content .fvr .ico {
                        font-size: 30px;
                        color: #333;
                        cursor: pointer;
                        background-color: #ffffff52;
                        padding: 6px;
                        -webkit-border-radius: 100%;
                        -moz-border-radius: 100%;
                        border-radius: 100%;
                    }

                        main .preview .data .grid .grid-item .content .fvr .ico:hover {
                            color: #000;
                        }

                    main .preview .data .grid .grid-item .content .fvr.loved .ico {
                    }

                    main .preview .data .grid .grid-item .content .fvr.loved .no {
                        display: block;
                        color: #b30000;
                    }

                    main .preview .data .grid .grid-item .content .fvr.loved .border {
                        display: none;
                    }

                main .preview .data .grid .grid-item.draft {
                    width: 200px;
                }

                    main .preview .data .grid .grid-item.draft .type {
                        padding: 10px;
                        margin: 8px;
                        background-color: #ffffff80;
                        z-index: 1;
                        -webkit-border-radius: 3px;
                        -moz-border-radius: 3px;
                        border-radius: 3px;
                    }

                    main .preview .data .grid .grid-item.draft .status {
                    }

                    main .preview .data .grid .grid-item.draft .img {
                        background-color: #eaeaea;
                        background-image: url(/public/img/post-loader.gif);
                        background-size: contain;
                        position: relative;
                        overflow: hidden;
                    }

                        main .preview .data .grid .grid-item.draft .img::after {
                            position: absolute;
                            top: 0;
                            right: 0;
                            bottom: 0;
                            left: 0;
                            transform: translateX(-100%);
                            background-image: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
                            -webkit-animation: shimmer 2s infinite;
                            animation: shimmer 2s infinite;
                            content: "";
                        }

.slider-outer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    height: 100%;
    background-color: black;
    color: #aaaaaa;
    background: rgba(0,0,0,0.8);
    overflow: hidden;
}

.slider-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

    .slider-inner .btn-move {
        position: absolute;
        z-index: 1;
        padding: 25px;
        /*height: 100%;*/
        top: calc(50% - 25px);
        background-image: url(img/arrow.png);
        background-color: #00000017;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 12px;
        cursor: pointer;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
    }

        .slider-inner .btn-move:hover {
        }

    .slider-inner .prev {
        left: 20px;
        transform: rotate(180deg);
    }

        .slider-inner .prev:hover {
            background-position-x: 20px;
        }

    .slider-inner .next {
        right: 20px;
    }

        .slider-inner .next:hover {
            background-position-x: 20px;
        }

    .slider-inner .close {
        position: absolute;
        z-index: 1;
        right: 0;
        padding: 10px;
        margin: 10px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
    }

        .slider-inner .close .ico {
            color: #333;
        }

        .slider-inner .close:hover {
            background-color: #00000017;
        }

    .slider-inner .view {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 400px);
        height: 100%;
        overflow: hidden;
    }

        .slider-inner .view .fvr {
            position: absolute;
            top: 12px;
            right: 12px;
        }

            .slider-inner .view .fvr.loved {
                display: block;
            }

            .slider-inner .view .fvr .no {
                display: none;
            }

            .slider-inner .view .fvr .ico {
                font-size: 30px;
                color: #333;
                cursor: pointer;
                background-color: #ffdcdc52;
                padding: 6px;
                -webkit-border-radius: 100%;
                -moz-border-radius: 100%;
                border-radius: 100%;
            }

                .slider-inner .view .fvr .ico:hover {
                    color: #000;
                }

            .slider-inner .view .fvr.loved .ico {
            }

            .slider-inner .view .fvr.loved .no {
                display: block;
                color: #b30000;
            }

            .slider-inner .view .fvr.loved .border {
                display: none;
            }

    .slider-inner .list {
        width: 100%;
        height: 100%;
    }

    .slider-inner .item {
        display: none;
        width: 100%;
        height: 100%;
        padding: 0 90px;
        z-index: -10;
    }

        .slider-inner .item.active {
            display: inline-block;
            z-index: 10;
        }

    .slider-inner .info {
        display: inline-block;
        vertical-align: middle;
        width: 400px;
        height: 100%;
        padding: 70px 20px;
        background-color: #f1f1f1;
        overflow-y: auto;
    }

        .slider-inner .info .title {
            padding-bottom: 20px;
        }

            .slider-inner .info .title span {
                color: #333333;
                line-height: 24px;
                font-size: 16px;
                font-weight: bold;
            }

        .slider-inner .info .price {
            margin: 0px 0 20px 0;
        }

            .slider-inner .info .price > span {
                position: relative;
                width: auto;
                height: 36px;
                margin-left: 18px;
                padding: 0 12px;
                line-height: 36px;
                background: #1f8dd6;
                color: #fff;
                font-size: 24px;
                text-decoration: none;
                -moz-border-radius-bottomright: 4px;
                -webkit-border-bottom-right-radius: 4px;
                border-bottom-right-radius: 4px;
                -moz-border-radius-topright: 4px;
                -webkit-border-top-right-radius: 4px;
                border-top-right-radius: 4px;
            }

                .slider-inner .info .price > span:before {
                    content: "";
                    position: absolute;
                    top: 0;
                    width: 0;
                    height: 0;
                    border-style: solid;
                    left: -18px;
                    border-color: transparent #1f8dd6 transparent transparent;
                    border-width: 18px 18px 18px 0;
                }

                /* Fix the circle between anchor box and triangle left to it  */
                .slider-inner .info .price > span:after {
                    content: "";
                    position: absolute;
                    top: 16px;
                    width: 5px;
                    height: 5px;
                    -moz-border-radius: 2px;
                    -webkit-border-radius: 2px;
                    border-radius: 2px;
                    background: #fff;
                    -moz-box-shadow: -1px -1px 2px #004977;
                    -webkit-box-shadow: -1px -1px 2px #004977;
                    box-shadow: -1px -1px 2px #004977;
                    left: -2px;
                }

                .slider-inner .info .price > span:hover:before {
                }

            .slider-inner .info .price .price-old {
            }

                .slider-inner .info .price .price-old > span.numb {
                    font-size: 20px;
                    line-height: 20px;
                    font-weight: 100;
                    text-decoration: line-through;
                    padding: 0px 10px;
                    color: #333;
                }

                .slider-inner .info .price .price-old > span.perdis {
                    font-size: 14px;
                    color: #333;
                    background-color: #a0e193;
                    padding: 8px 10px;
                    -webkit-border-radius: 15px;
                    -moz-border-radius: 15px;
                    border-radius: 15px;
                }

        .slider-inner .info .order {
        }

            .slider-inner .info .order .btn {
                display: block;
                width: 100%;
                padding: 10px 0px;
                background-color: #cc2929;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                border-radius: 15px;
                text-align: center;
                margin-bottom: 15px;
                font-size: 18px;
                color: #fff;
            }

                .slider-inner .info .order .btn .ico {
                    font-size: 24px;
                }

        .slider-inner .info .content {
            height: calc(100% - 56px);
            overflow-y: auto;
        }

        .slider-inner .info .sf-ct {
            padding-bottom: 20px;
        }

            .slider-inner .info .sf-ct * {
                color: #333333;
                line-height: 22px;
                font-size: 14px;
            }

        .slider-inner .info .lf-ct {
        }

            .slider-inner .info .lf-ct * {
            }

            .slider-inner .info .lf-ct .hd {
                font-size: 14px;
                line-height: 18px;
                font-weight: bold;
                color: #333;
                padding: 3px 0px;
                margin-bottom: 5px;
            }

            .slider-inner .info .lf-ct .bd {
            }

                .slider-inner .info .lf-ct .bd * {
                    color: #333333;
                    line-height: 22px;
                    font-size: 14px;
                }

        .slider-inner .info .ico {
            color: #fff;
            font-size: 16px;
            margin-left: 5px;
            cursor: pointer;
        }

    .slider-inner .list .img {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .slider-inner .list img {
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slider-inner .frm {
        width: calc(100% - 200px);
        height: 100%;
        margin: 0 auto;
    }

    .slider-inner iframe {
        width: 100%;
        height: 100%;
    }

    .slider-inner .post {
        max-width: 1000px;
        height: 100%;
        overflow-y: auto;
        margin: 0 auto;
        padding: 40px 10px 20px 10px;
    }

        .slider-inner .post .tlt {
        }

            .slider-inner .post .tlt h2 {
                font-size: 33px;
                font-weight: 500;
                line-height: 36px;
                color: #000;
            }

        .slider-inner .post .meta {
            margin: 15px 0;
        }

            .slider-inner .post .meta .date {
                font-size: 14px;
                line-height: 20px;
                color: #999;
            }

        .slider-inner .post .ct {
        }

            .slider-inner .post .ct .hd {
                font-size: 24px;
                font-weight: 500;
                line-height: 30px;
                color: #333;
                margin: 40px 0 20px 0;
            }

                .slider-inner .post .ct .hd:first-child {
                    margin-top: 20px;
                }

            .slider-inner .post .ct .bd {
            }

                .slider-inner .post .ct .bd * {
                    font-size: 20px;
                    line-height: 36px;
                    color: #666;
                }

                .slider-inner .post .ct .bd img {
                    max-width: 100%;
                    height: auto;
                }

.site-main-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

    .site-main-content-wrapper .site-main-content {
    }

        .site-main-content-wrapper .site-main-content.has-sidebar { /*padding-right: 80px;*/
        }

        .site-main-content-wrapper .site-main-content .page-header-content {
            margin-bottom: 40px;
        }

            .site-main-content-wrapper .site-main-content .page-header-content .page-title {
                font-size: 48px;
                font-weight: 600;
                line-height: 1;
                margin-bottom: 0;
                text-align: left;
            }

        .site-main-content-wrapper .site-main-content .blog-articles {
        }

            .site-main-content-wrapper .site-main-content .blog-articles .post {
                margin-bottom: 64px;
            }

                .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb {
                    position: relative;
                }

                    .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .thumb {
                        overflow: hidden;
                    }

                        .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .thumb .lnk {
                            position: relative;
                            display: block;
                            vertical-align: middle;
                            width: 100%;
                        }

                            .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .thumb .lnk .img {
                                position: relative;
                                overflow: hidden;
                                width: 100%;
                                padding-bottom: 45%;
                            }

                                .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .thumb .lnk .img img {
                                    position: absolute;
                                    width: 100%;
                                    height: 100%;
                                    max-width: 100%;
                                    -o-object-fit: cover;
                                    object-fit: cover;
                                    -webkit-transition: all 2s ease-out;
                                    transition: all 2s ease-out;
                                }

                    .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .meta-cat {
                        position: absolute;
                        top: 30px;
                        right: 30px;
                        display: none;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                    }

                        .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .meta-cat .lnk {
                            color: #000;
                            background: #fff;
                            line-height: 30px;
                            font-size: 14px;
                            padding: 0 15px;
                            margin-right: 8px;
                            border-radius: 30px;
                        }

                            .site-main-content-wrapper .site-main-content .blog-articles .post .post-thumb .meta-cat .lnk:hover {
                                background: #e19a20;
                                color: #fff;
                            }

                .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap {
                    padding: 30px 0 0 0;
                }

                    .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .header {
                        display: block;
                    }

                        .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .header .entry-title {
                            -ms-hyphens: auto;
                            hyphens: auto;
                            margin-bottom: 20px;
                            font-size: 28px;
                            line-height: 36px;
                        }

                            .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .header .entry-title .lnk {
                                color: #000;
                            }

                                .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .header .entry-title .lnk:hover {
                                    color: #e19a20;
                                }

                    .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .content {
                        line-height: 26px;
                    }

                        .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .content * {
                            color: #666;
                            font-size: 16px;
                        }

                    .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .meta {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        padding: 20px 0;
                    }

                        .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .meta time {
                            font-size: 14px;
                            color: #666;
                        }

                    .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .readmore {
                        margin-top: 10px;
                        display: block;
                    }

                        .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .readmore .lnk {
                            display: inline-block;
                            background-color: #fff;
                            color: #181818;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 50px;
                            padding: 0 30px;
                            border: solid 1px #ececec;
                            border-radius: 100px;
                        }

                            .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .readmore .lnk:hover {
                                background-color: #e19a20;
                                color: #fff;
                                border-color: #e19a20;
                            }

                            .site-main-content-wrapper .site-main-content .blog-articles .post .content-wrap .readmore .lnk::after {
                                font-style: normal !important;
                                font-weight: normal !important;
                                font-variant: normal !important;
                                text-transform: none !important;
                                speak: none;
                                line-height: 1;
                                vertical-align: -.125em;
                                text-rendering: auto;
                                -webkit-font-smoothing: antialiased;
                                -moz-osx-font-smoothing: grayscale;
                                content: "";
                                font-size: 16px;
                                margin-left: 7px;
                            }

main .loading {
    display: none;
    position: absolute;
    top: 50%;
    left: calc(50% + 125px);
    transform: translate(calc(50% - 47.5px), -50%);
    z-index: 1;
}

    main .loading.open {
        display: block;
    }

    main .loading .img {
        width: 50px;
        height: 50px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
    }

.container footer {
    display: none;
}

.quick-notify {
    position: fixed;
    left: 30px;
    bottom: 35px;
    z-index: 103;
}

    .quick-notify .item {
        display: table;
        background-color: #323232;
        padding: 10px 15px;
        margin-bottom: 10px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        box-shadow: 1px 1px 3px #333;
        white-space: nowrap;
        visibility: visible;
        opacity: 1;
        -webkit-transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, font-size 0.3s ease-in-out, all 0.3s linear;
        transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, font-size 0.3s ease-in-out, all 0.3s linear;
    }

        .quick-notify .item.close {
            visibility: hidden;
            opacity: 0;
            font-size: 0;
        }

        .quick-notify .item .ct {
            color: #fff;
            font-size: 14px;
            line-height: 20px;
            max-width: 300px;
            white-space: normal;
        }

        .quick-notify .item .lnk {
            margin-left: 20px;
            padding: 8px 15px;
            color: #e19a20;
            font-size: 14px;
            font-weight: 500;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }

            .quick-notify .item .lnk:hover {
                background-color: #e19a2030;
            }

        .quick-notify .item .btn.close {
            width: 40px;
            height: 40px;
            padding: 10px;
            margin: -5px -10px -5px 10px;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }

            .quick-notify .item .btn.close:hover {
                background-color: #f1f1f130;
            }

            .quick-notify .item .btn.close .ico {
                display: flex;
                color: #fff;
                font-size: 20px;
            }

            .quick-notify .item .btn.close:hover .ico {
            }

/*POPUP*/
.popup-form-bg {
    z-index: 102;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    position: absolute;
    background-color: black;
    color: #aaaaaa;
    background: rgba(0,0,0,0.5);
    overflow: hidden;
}

    .popup-form-bg .popup-form {
        padding: 15px;
        height: auto;
        max-height: calc(100% - 10px);
        overflow-y: auto;
        position: absolute;
        color: #000000;
        background-color: white;
        top: 0;
        left: 0;
        opacity: 1 !important;
        /* -webkit-border-radius: 5px; */
        -moz-border-radius: 5px;
        /* border-radius: 5px; */
        box-shadow: 0px 0px 10px #666;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

        .popup-form-bg .popup-form .frm {
        }

            .popup-form-bg .popup-form .frm hr {
                margin: 20px 0px 10px 0px;
                border: 0;
                border-top: 1px solid #f1f1f1;
            }

            .popup-form-bg .popup-form .frm .hd {
                /* border-bottom: 1px solid #999; */
                box-shadow: 0 1px 0 0 #e5e5e5;
                padding: 5px 45px 0px 20px;
                margin: -15px -15px 10px -15px;
                color: #333;
                -webkit-border-top-left-radius: 5px;
                -webkit-border-top-right-radius: 5px;
                -moz-border-radius-topleft: 5px;
                -moz-border-radius-topright: 5px;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
            }

                .popup-form-bg .popup-form .frm .hd > .tlt {
                    padding: 5px 15px 0 15px;
                    margin: -5px 20px 0px -5px;
                    background-color: #e19a20;
                    border-radius: initial;
                    display: inline-block;
                    font-size: 16px;
                    border: none;
                    color: #fff;
                    vertical-align: bottom;
                    line-height: 35px;
                    box-shadow: 0 1px 0 0 #e19a20;
                }

                .popup-form-bg .popup-form .frm .hd .tabs {
                    display: inline-block;
                    vertical-align: bottom;
                    /* border-left: 1px solid #e5e5e5; */
                    /* padding-left: 10px; */
                    margin: 5px 0 5px -10px;
                }

                    .popup-form-bg .popup-form .frm .hd .tabs li {
                        display: inline-block;
                        vertical-align: middle;
                    }

                        .popup-form-bg .popup-form .frm .hd .tabs li .item {
                            display: block;
                            width: 100%;
                            height: 100%;
                            padding: 3px 10px;
                            font-size: 14px;
                            /* border-top: 1px solid #999; */
                            /* border-right: 1px solid #999; */
                            /* border-left: 1px solid #999; */
                            /* -webkit-border-top-left-radius: 3px; */
                            /* -webkit-border-top-right-radius: 3px; */
                            -moz-border-radius-topleft: 3px;
                            -moz-border-radius-topright: 3px;
                            /* border-top-left-radius: 3px; */
                            /* border-top-right-radius: 3px; */
                            background-color: #fff;
                            cursor: pointer;
                        }

                            .popup-form-bg .popup-form .frm .hd .tabs li .item .icon {
                            }

                            .popup-form-bg .popup-form .frm .hd .tabs li .item .tlt {
                                color: #333;
                                font-size: 16px;
                                line-height: initial;
                                margin: 0px;
                            }

                            .popup-form-bg .popup-form .frm .hd .tabs li .item.active {
                                border-bottom: 3px solid #e19a20;
                                /* border-left: 1px solid #e19a20; */
                                /* border-right: 1px solid #e19a20; */
                                padding-bottom: 6px;
                                margin-bottom: -6px;
                            }

                                .popup-form-bg .popup-form .frm .hd .tabs li .item.active .icon {
                                }

                                .popup-form-bg .popup-form .frm .hd .tabs li .item.active .tlt {
                                    color: #e19a20;
                                    /*font-weight: 500;*/
                                }

                            .popup-form-bg .popup-form .frm .hd .tabs li .item:hover .tlt {
                                color: #e19a20;
                            }

            .popup-form-bg .popup-form .frm .bd {
            }

                .popup-form-bg .popup-form .frm .bd .blk {
                    display: none;
                }

                    .popup-form-bg .popup-form .frm .bd .blk.active {
                        display: block;
                    }

        .popup-form-bg .popup-form.full .frm .bd .blk {
            width: 100%;
        }

        .popup-form-bg .popup-form .frm .header {
            display: none;
            border-bottom: 1px dashed #333;
            margin-bottom: 20px;
        }

            .popup-form-bg .popup-form .frm .header .collapse {
                margin-left: -5px;
                cursor: pointer;
            }

                .popup-form-bg .popup-form .frm .header .collapse .ico {
                }

                    .popup-form-bg .popup-form .frm .header .collapse .ico.close {
                        transform: rotate(180deg);
                    }

                .popup-form-bg .popup-form .frm .header .collapse .tlt {
                    border: none;
                    margin: 0px;
                    padding: 0px;
                }

        .popup-form-bg .popup-form .frm .main {
        }

            .popup-form-bg .popup-form .frm .main .switch {
                margin: 7px 0px;
            }

                .popup-form-bg .popup-form .frm .main .switch .lbl {
                }

                .popup-form-bg .popup-form .frm .main .switch input {
                }

                .popup-form-bg .popup-form .frm .main .switch .slider {
                }

                    .popup-form-bg .popup-form .frm .main .switch .slider:before {
                    }

                .popup-form-bg .popup-form .frm .main .switch input:checked + .slider {
                }

                .popup-form-bg .popup-form .frm .main .switch input:focus + .slider {
                }

                .popup-form-bg .popup-form .frm .main .switch input:checked + .slider:before {
                }

                /* Rounded sliders */
                .popup-form-bg .popup-form .frm .main .switch .slider.round {
                }

                    .popup-form-bg .popup-form .frm .main .switch .slider.round:before {
                    }

            .popup-form-bg .popup-form .frm .main .row-group-hd {
                border-bottom: 1px dashed #333;
                margin-bottom: 20px;
            }

                .popup-form-bg .popup-form .frm .main .row-group-hd .collapse {
                    margin-left: -5px;
                    cursor: pointer;
                }

                    .popup-form-bg .popup-form .frm .main .row-group-hd .collapse .ico {
                    }

                        .popup-form-bg .popup-form .frm .main .row-group-hd .collapse .ico.close {
                            transform: rotate(180deg);
                        }

                    .popup-form-bg .popup-form .frm .main .row-group-hd .collapse .tlt {
                        border: none;
                        margin: 0px;
                        padding: 0px;
                    }

            .popup-form-bg .popup-form .frm .main .blk-bussiness-info {
                display: none;
            }

                .popup-form-bg .popup-form .frm .main .blk-bussiness-info.active {
                    display: block;
                }

            .popup-form-bg .popup-form .frm .main .tlt {
                font-weight: bold;
                font-size: 14px;
                border-bottom: 1px dashed #333;
                padding-bottom: 5px;
                margin-bottom: 10px;
            }

            .popup-form-bg .popup-form .frm .main .row {
                /*margin-bottom: 15px;*/
                width: 100%;
                font-size: 0px;
            }

                .popup-form-bg .popup-form .frm .main .row.r-1col,
                .popup-form-bg .popup-form .frm .main .row.r-2col,
                .popup-form-bg .popup-form .frm .main .row.r-3col,
                .popup-form-bg .popup-form .frm .main .row.r-4col,
                .popup-form-bg .popup-form .frm .main .rowbox {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                }

                .popup-form-bg .popup-form .frm .main .row .row {
                    /*margin-bottom: 0;*/
                    align-items: center;
                }

                .popup-form-bg .popup-form .frm .main .row .col {
                }

                .popup-form-bg .popup-form .frm .main .row.r-1col > .col {
                    width: 100%;
                }

                .popup-form-bg .popup-form .frm .main .row.r-2col > .col {
                    width: calc(100%/2 - 5px);
                }

                .popup-form-bg .popup-form .frm .main .row.r-3col > .col {
                    width: calc(100%/3 - 5px);
                }

                .popup-form-bg .popup-form .frm .main .row.r-4col > .col {
                    width: calc(100%/4 - 5px);
                }

            .popup-form-bg .popup-form .frm .main .col.item {
                margin-right: 3px;
            }

            .popup-form-bg .popup-form .frm .main .col > .lbl {
                width: 200px;
                padding: 5px 15px 5px 0px;
                text-align: right;
            }

                .popup-form-bg .popup-form .frm .main .col > .lbl.f {
                    display: block;
                    padding: 0px;
                    width: 100%;
                    text-align: left;
                }

                .popup-form-bg .popup-form .frm .main .col > .lbl span {
                    font-size: 14px;
                    line-height: 24px;
                }

                .popup-form-bg .popup-form .frm .main .col > .lbl .chk {
                    margin-right: 3px;
                }

                .popup-form-bg .popup-form .frm .main .col > .lbl .ico.tooltip {
                    font-size: 20px;
                    color: #999;
                    cursor: help;
                }

            .popup-form-bg .popup-form .frm .main .col .ipt {
                width: calc(100% - 200px);
            }

                .popup-form-bg .popup-form .frm .main .col .ipt.f {
                    display: block;
                    padding: 0px;
                    width: 100%;
                }

                .popup-form-bg .popup-form .frm .main .col .ipt span {
                    font-size: 14px;
                    line-height: 24px;
                }

                .popup-form-bg .popup-form .frm .main .col .ipt .lnk-select {
                    text-decoration: underline;
                    cursor: pointer;
                }

            .popup-form-bg .popup-form .frm .main .col .txt {
                display: block;
                font-size: 14px;
                line-height: 18px;
                padding: 5px 0px;
            }

            .popup-form-bg .popup-form .frm .main .col .ava {
                width: 250px;
                height: 235px;
                padding-left: 15px;
            }

                .popup-form-bg .popup-form .frm .main .col .ava .tabs {
                }

                    .popup-form-bg .popup-form .frm .main .col .ava .tabs li {
                        padding: 0px 10px;
                        background-color: #e9eef1;
                        cursor: pointer;
                    }

                        .popup-form-bg .popup-form .frm .main .col .ava .tabs li .ico {
                            font-size: 18px;
                            color: #333;
                            margin-right: 5px;
                        }

                        .popup-form-bg .popup-form .frm .main .col .ava .tabs li span {
                            color: #333;
                            font-size: 13px;
                            font-weight: 400;
                            height: auto;
                            letter-spacing: .25px;
                            line-height: 34px;
                            width: auto;
                        }

                        .popup-form-bg .popup-form .frm .main .col .ava .tabs li.active {
                            background-color: #e19a20;
                        }

                            .popup-form-bg .popup-form .frm .main .col .ava .tabs li.active .ico {
                                color: #fff;
                            }

                            .popup-form-bg .popup-form .frm .main .col .ava .tabs li.active span {
                                color: #fff;
                            }

                .popup-form-bg .popup-form .frm .main .col .ava .ct {
                    display: none;
                    width: 100%;
                    height: 100%;
                    margin-top: -1px;
                    border: 1px dashed #e19a20;
                    position: relative;
                }

                    .popup-form-bg .popup-form .frm .main .col .ava .ct.active {
                        display: block;
                    }

                .popup-form-bg .popup-form .frm .main .col .ava .img {
                    width: 100%;
                    height: 100%;
                    position: relative;
                }

                    .popup-form-bg .popup-form .frm .main .col .ava .img img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                    }

                    .popup-form-bg .popup-form .frm .main .col .ava .img .ico {
                        position: absolute;
                        right: 40px;
                        bottom: 3px;
                        background-color: #fff;
                    }

                        .popup-form-bg .popup-form .frm .main .col .ava .img .ico:before {
                        }

                        .popup-form-bg .popup-form .frm .main .col .ava .img .ico.active {
                            color: #e19a20;
                        }

                            .popup-form-bg .popup-form .frm .main .col .ava .img .ico.active:before {
                            }

                    .popup-form-bg .popup-form .frm .main .col .ava .img .change-avatar {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        text-align: center;
                        background-color: #cccccc80;
                        font-size: 0;
                        visibility: hidden;
                        transition: padding .15s;
                        opacity: 0;
                        -webkit-transition: all .15s ease-in-out, all .15s linear;
                        transition: all .15s ease-in-out, all .15s linear;
                    }

                        .popup-form-bg .popup-form .frm .main .col .ava .img .change-avatar .lnk {
                            padding: 5px;
                            color: #e19a20;
                        }

                    .popup-form-bg .popup-form .frm .main .col .ava .img:hover .change-avatar {
                        padding: 8px 0px;
                        font-size: 14px;
                        visibility: visible;
                        opacity: 1;
                    }

                .popup-form-bg .popup-form .frm .main .col .ava .icon {
                }

                    .popup-form-bg .popup-form .frm .main .col .ava .icon .tbxm {
                        width: 100%;
                        height: 100%;
                        border: none;
                        resize: none;
                    }

            .popup-form-bg .popup-form .frm .main .col .readonly {
                cursor: default;
            }

            .popup-form-bg .popup-form .frm .main .col .tbx {
                padding: 5px;
                /*min-width: calc(100% - 22px);*/
                max-width: 100%;
                height: 34px;
                line-height: 24px;
                border: 1px solid #ccc;
            }

                .popup-form-bg .popup-form .frm .main .col .tbx.numb {
                    border: none;
                    border-bottom: 1px solid #ccc;
                    text-align: right;
                    padding-right: 0px;
                }

                .popup-form-bg .popup-form .frm .main .col .tbx.date {
                    width: 135px;
                    /*width: 218px;*/
                    min-width: initial;
                }

                .popup-form-bg .popup-form .frm .main .col .tbx.color {
                    padding: 0;
                }

            .popup-form-bg .popup-form .frm .main .col .tbxm {
                padding: 5px;
                min-width: 100%;
                max-width: 100%;
                border: 1px solid #ccc;
            }

            .popup-form-bg .popup-form .frm .main .col .ddl {
                padding: 6px 5px;
                max-width: 100%;
                height: 34px;
                line-height: 24px;
                border: 1px solid #ccc;
            }

                .popup-form-bg .popup-form .frm .main .col .ddl.time {
                }

            .popup-form-bg .popup-form .frm .main .col .ddldiv {
                position: relative;
            }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .btn {
                    display: block;
                    width: 100%;
                    height: 34px;
                    font-size: 14px;
                    line-height: 24px;
                    padding: 5px 22px 5px 5px;
                    background-color: #fff;
                    border: 1px solid #ccc;
                    outline: none;
                    text-align: left;
                    cursor: pointer;
                }

                    .popup-form-bg .popup-form .frm .main .col .ddldiv .btn:hover {
                        transform: initial;
                    }

                .popup-form-bg .popup-form .frm .main .col .ddldiv::after {
                    content: ' ';
                    height: 0;
                    position: absolute;
                    top: 50%;
                    right: 5px;
                    width: 0;
                    border: 5px solid rgba(0, 0, 0, 0);
                    border-top-color: #000;
                    margin-top: -3px;
                }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult {
                    display: none;
                    width: 250px;
                    position: absolute;
                    background-color: #fff;
                    box-shadow: 0px 2px 10px #ccc;
                    z-index: 1;
                }

                .popup-form-bg .popup-form .frm .main .col .ddldiv.f .ddl-mult {
                    width: 100%;
                }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult.open {
                    display: block;
                }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .section {
                    padding: 10px;
                }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .lbl {
                }

                    .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .lbl span {
                        font-size: 14px;
                        line-height: 20px;
                    }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox {
                    padding-right: 0px;
                }

                    .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox .select-all {
                        display: block;
                        cursor: pointer;
                        margin-bottom: 3px;
                    }

                        .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox .select-all .chk {
                            margin-right: 3px;
                        }

                        .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox .select-all .lbl {
                            font-size: 13px;
                            font-weight: bold;
                            text-decoration: underline;
                        }

                    .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox ul {
                        max-height: 200px;
                        overflow-y: auto;
                    }

                        .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox ul li {
                        }

                            .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox ul li label {
                                display: block;
                                padding: 1px 10px 1px 0px;
                            }

                                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox ul li label .chk {
                                    margin-right: 3px;
                                }

                                .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox ul li label .lbl {
                                    font-size: 14px;
                                    line-height: 15px;
                                    width: calc(100% - 18px);
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }

                            .popup-form-bg .popup-form .frm .main .col .ddldiv .ddl-mult .checkbox ul li:hover {
                                background-color: #eee;
                            }

                .popup-form-bg .popup-form .frm .main .col .ddldiv .options {
                    display: none;
                    position: absolute;
                    z-index: 1;
                    background-color: #fff;
                    min-width: 250px;
                    max-height: 300px;
                    overflow-y: auto;
                    padding: 5px;
                    box-shadow: 0px 2px 10px #ccc;
                }

                    .popup-form-bg .popup-form .frm .main .col .ddldiv .options.open {
                        display: block;
                    }

                    .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul {
                    }

                        .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group {
                        }

                            .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group .select-all {
                                cursor: pointer;
                            }

                                .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group .select-all .chk {
                                    cursor: pointer;
                                    margin-right: 3px;
                                }

                                .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group .select-all span {
                                    font-size: 13px;
                                    font-weight: bold;
                                    border: none;
                                    background: none;
                                    line-height: 20px;
                                }

                            .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group ul {
                                padding-left: 15px;
                            }

                                .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group ul li {
                                }

                                    .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group ul li label {
                                        cursor: pointer;
                                        line-height: 18px;
                                    }

                                        .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group ul li label .chk {
                                            margin-right: 3px;
                                        }

                                        .popup-form-bg .popup-form .frm .main .col .ddldiv .options ul li.group ul li label .lbl {
                                            font-size: 13px;
                                            line-height: 16px;
                                            width: calc(100% - 18px);
                                            overflow: hidden;
                                            text-overflow: ellipsis;
                                            white-space: nowrap;
                                        }

            .popup-form-bg .popup-form .frm .main .col .rdos {
                height: 34px;
            }

                .popup-form-bg .popup-form .frm .main .col .rdos li,
                .popup-form-bg .popup-form .frm .main .col .rdos.h li {
                    display: inline-block;
                    vertical-align: middle;
                    margin: 0px 10px 0px 0px;
                }

                .popup-form-bg .popup-form .frm .main .col .rdos.v li {
                    display: block;
                    margin: 0px 0px 5px 0px;
                }

                .popup-form-bg .popup-form .frm .main .col .rdos li label {
                    cursor: pointer;
                    margin-bottom: 0;
                }

                .popup-form-bg .popup-form .frm .main .col .rdos li span {
                    display: inline-block;
                    vertical-align: middle;
                    font-size: 14px;
                    line-height: 24px;
                }

                .popup-form-bg .popup-form .frm .main .col .rdos li .date {
                    display: none;
                    vertical-align: middle;
                    width: 85px;
                    text-align: center;
                    margin-left: 10px;
                }

                .popup-form-bg .popup-form .frm .main .col .rdos li .rdo {
                    display: inline-block;
                    vertical-align: middle;
                    margin-right: 3px;
                }

                .popup-form-bg .popup-form .frm .main .col .rdos li input[type="radio"]:checked ~ input[type="text"] {
                    display: inline-block;
                    animation: fadein 1s;
                    -moz-animation: fadein .5s; /* Firefox */
                    -webkit-animation: fadein .5s; /* Safari and Chrome */
                    -o-animation: fadein .5s; /* Opera */
                }

            .popup-form-bg .popup-form .frm .main .col .chks {
            }

                .popup-form-bg .popup-form .frm .main .col .chks li,
                .popup-form-bg .popup-form .frm .main .col .chks.h li {
                    margin: 0px 10px 0px 0px;
                }

                .popup-form-bg .popup-form .frm .main .col .chks.v li {
                    display: block;
                    margin: 0px 0px 5px 0px;
                }

                .popup-form-bg .popup-form .frm .main .col .chks li label {
                    cursor: pointer;
                }

                .popup-form-bg .popup-form .frm .main .col .chks li span {
                    font-size: 14px;
                    line-height: 25px;
                }

                .popup-form-bg .popup-form .frm .main .col .chks li .chk {
                    margin-right: 3px;
                }

            .popup-form-bg .popup-form .frm .main button.btn {
                display: block;
                padding: 4px 0px;
                cursor: pointer;
                transition: transform .15s;
                border: 1px dashed #e19a20;
                background: #fafafa;
            }

                .popup-form-bg .popup-form .frm .main button.btn .ico {
                    font-size: 20px;
                    margin: 0px 3px;
                    color: #333;
                }

                .popup-form-bg .popup-form .frm .main button.btn span {
                    width: initial;
                    font-size: 14px;
                    line-height: 24px;
                    color: #333;
                    padding: 0;
                }

                .popup-form-bg .popup-form .frm .main button.btn:hover {
                    transform: scale(1.02);
                }

            .popup-form-bg .popup-form .frm .main .col .find-customer {
                background-color: #CCC;
                padding: 7px 22px;
                margin-left: 5px;
                cursor: pointer;
            }

                .popup-form-bg .popup-form .frm .main .col .find-customer span {
                    font-size: 11px;
                }

            .popup-form-bg .popup-form .frm .main .col .target {
            }

                .popup-form-bg .popup-form .frm .main .col .target li {
                    display: block;
                    margin: 5px 0px;
                }

                    .popup-form-bg .popup-form .frm .main .col .target li span {
                        display: inline-block;
                        vertical-align: middle;
                        font-size: 14px;
                        width: 100px;
                    }

                    .popup-form-bg .popup-form .frm .main .col .target li .tbx {
                        display: inline-block;
                        vertical-align: middle;
                        width: 110px;
                        text-align: right;
                        border: none;
                        border-bottom: 1px solid #333;
                        padding-right: 0px;
                    }

            .popup-form-bg .popup-form .frm .main .checkbox-list {
                max-height: 300px;
                overflow-y: auto;
            }

                .popup-form-bg .popup-form .frm .main .checkbox-list li {
                }

                    .popup-form-bg .popup-form .frm .main .checkbox-list li label {
                    }

                        .popup-form-bg .popup-form .frm .main .checkbox-list li label .chkm-chk {
                        }

                        .popup-form-bg .popup-form .frm .main .checkbox-list li label .chkm-lbl {
                        }

                    .popup-form-bg .popup-form .frm .main .checkbox-list li:last-child {
                    }

                    .popup-form-bg .popup-form .frm .main .checkbox-list li .checkmark {
                    }

                    .popup-form-bg .popup-form .frm .main .checkbox-list li.group {
                        margin: 3px 0px;
                    }

                        .popup-form-bg .popup-form .frm .main .checkbox-list li.group ul {
                            padding: 5px 0px 5px 15px;
                        }

                        .popup-form-bg .popup-form .frm .main .checkbox-list li.group span {
                            font-size: 14px;
                            font-weight: 500;
                        }

            .popup-form-bg .popup-form .frm .main .col .btn {
            }

            /*TABLE*/
            .popup-form-bg .popup-form .frm .main .tb-frame {
            }

                .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-head {
                }

                    .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-head .tb-hd {
                    }

                    .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-head .tb-row {
                    }

                    .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-head .tb-col {
                    }

                .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll {
                    /*overflow-y: scroll;*/
                    /*margin-right: -9px;*/
                    /*border-left: 1px solid #ccc;*/
                }

                    .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb {
                    }

                        .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb .tb-hd {
                        }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb .tb-hd .tb-row {
                            }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb .tb-hd .tb-col {
                            }

                        .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb .tb-bd {
                        }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb .tb-bd .tb-row {
                            }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-data-scroll .tb .tb-bd .tb-col {
                                padding: 0px 0px;
                            }

                .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer {
                }

                    .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb {
                    }

                        .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb .tb-hd {
                        }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb .tb-hd .tb-row {
                            }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb .tb-hd .tb-col {
                            }

                        .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb .tb-bd {
                        }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb .tb-bd .tb-row {
                            }

                            .popup-form-bg .popup-form .frm .main .tb-frame .tb-only-footer .tb .tb-bd .tb-col {
                                padding: 0px 0px;
                            }

            .popup-form-bg .popup-form .frm .main .tb {
                display: table;
                table-layout: fixed;
                width: 100%;
                height: 100%;
            }

                .popup-form-bg .popup-form .frm .main .tb .tb-hd {
                    display: table-header-group;
                }

                    .popup-form-bg .popup-form .frm .main .tb .tb-hd .tb-row {
                        display: table-row;
                        background-color: #F3F3F3;
                    }

                    .popup-form-bg .popup-form .frm .main .tb .tb-hd .tb-col {
                        display: table-cell;
                        padding: 0px 0px;
                        border-bottom: 1px solid #CCC;
                    }

                        .popup-form-bg .popup-form .frm .main .tb .tb-hd .tb-col:first-child {
                            /* border-left: 1px solid #ccc; */
                        }

                        .popup-form-bg .popup-form .frm .main .tb .tb-hd .tb-col .ico {
                            font-size: 20px;
                            line-height: 16px;
                            vertical-align: middle;
                        }

                        .popup-form-bg .popup-form .frm .main .tb .tb-hd .tb-col span {
                            color: #333;
                            font-size: 14px;
                            line-height: 16px;
                            font-weight: 500;
                            font-weight: bold;
                            display: block;
                            padding: 10px 5px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                            box-sizing: border-box;
                        }

                .popup-form-bg .popup-form .frm .main .tb .tb-bd {
                    display: table-row-group;
                }

                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-row {
                        display: table-row;
                        background-color: #fff;
                        /*cursor: pointer;*/
                    }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-row:hover {
                            background-color: #f1f1f1;
                        }

                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col {
                        display: table-cell;
                        vertical-align: middle;
                        padding: 0px 5px;
                        width: 100%;
                        height: 100%;
                        border-bottom: 1px solid #f1f1f1;
                    }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .btn {
                            display: inline-block;
                            vertical-align: middle;
                        }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .btn .ico {
                                font-size: 18px;
                            }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .btn-edit {
                        }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .btn-edit .ico {
                                color: #e19a20;
                            }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .btn-remove {
                        }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .btn-remove .ico {
                                color: #f00;
                            }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .pd {
                            padding: 8px 5px;
                        }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col span {
                            display: block;
                            padding: 8px 5px;
                            font-size: 16px;
                            line-height: 20px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .tbx {
                            width: 100%;
                            padding: 5px;
                            min-width: initial;
                            max-width: 100%;
                            height: 34px;
                            line-height: 24px;
                            border: 1px solid #ccc;
                            background-color: transparent;
                        }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .tbx.numb {
                                border: none;
                                border-bottom: 1px solid #ccc;
                                text-align: right;
                                background: none;
                                padding-right: 0px;
                            }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .ico {
                            font-size: 20px;
                            color: #666;
                        }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown {
                            position: relative;
                        }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown .btn {
                                display: none;
                                border: none;
                                padding: 3px;
                                background-color: rgba(104,104,113,0.2);
                                -webkit-border-radius: 100%;
                                -moz-border-radius: 100%;
                                border-radius: 100%;
                                position: absolute;
                            }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown .btn .ico {
                                    line-height: initial;
                                    display: block;
                                    margin: 0;
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown .btn.down {
                                    left: 0;
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown .btn.up {
                                    right: 0;
                                }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown .tbx {
                                width: calc(100% - 48px);
                                text-align: center;
                            }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown.enough .tbx {
                                font-weight: bold;
                                color: #0DA921;
                            }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown.over .tbx {
                                font-weight: bold;
                                color: #f00;
                            }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .number-updown:hover .btn {
                                display: inline-block;
                            }

                        .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row {
                            height: 100%;
                            display: flex;
                            /* flex-direction: column; */
                            /* flex-wrap: wrap; */
                            flex-flow: column wrap;
                            justify-content: space-around;
                        }

                            .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li {
                                width: 100%;
                                /*flex-grow: 1;*/
                                /*flex-shrink: 1;*/
                                /*flex-basis: auto;*/
                                /*flex: 1 1 auto;*/
                                /*border-bottom: 1px solid #f1f1f1;*/
                            }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li:before {
                                    content: '';
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li:after {
                                    content: '';
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li.grp-2 {
                                }

                                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li.grp-2:before {
                                        content: '';
                                    }

                                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li.grp-2:after {
                                        content: '';
                                    }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li.grp-3 {
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li.grp-4 {
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li.grp-5 {
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li .tbx {
                                }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li span {
                                }

                                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li span:before {
                                        content: '';
                                    }

                                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li span:after {
                                        content: '';
                                    }

                                .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-col .multi-row li:last-child {
                                    /*border-bottom: none;*/
                                }

                    .popup-form-bg .popup-form .frm .main .tb .tb-bd .tb-row:last-child .tb-col {
                        border-bottom: none;
                    }

                .popup-form-bg .popup-form .frm .main .tb .tb-ft {
                    display: table-footer-group;
                }

                    .popup-form-bg .popup-form .frm .main .tb .tb-ft .tb-row {
                        display: table-row;
                        cursor: pointer;
                        border-top: 1px solid #CCC;
                    }

                    .popup-form-bg .popup-form .frm .main .tb .tb-ft .tb-col {
                        display: table-cell;
                        padding: 0px 5px;
                        border-top: 1px solid #ccc;
                    }

                        .popup-form-bg .popup-form .frm .main .tb .tb-ft .tb-col span {
                            display: block;
                            padding: 10px 0px 5px 0px;
                            font-size: 14px;
                            font-weight: bold;
                            line-height: 18px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                            color: #333;
                        }

            .popup-form-bg .popup-form .frm .main .autocomplete {
                position: relative;
            }

                .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output {
                    position: absolute;
                    z-index: 1;
                    min-width: 200px;
                    max-height: 300px;
                    overflow-y: auto;
                    box-shadow: 0px 3px 5px #CCC;
                }

                    .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output.f {
                        width: 100%;
                    }

                    .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul {
                        background-color: #FFFFFF;
                        box-shadow: 0px 3px 10px #CCCCCC;
                        padding: 3px 0px;
                    }

                        .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li {
                        }

                            .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item {
                                display: block;
                                width: 100%;
                                font-size: 0px;
                                padding: 3px 6px;
                            }

                                .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .img {
                                    display: inline-block;
                                    vertical-align: top;
                                    width: 50px;
                                    height: 45px;
                                    margin: 0px 5px 0px 0px;
                                }

                                    .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .img img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: cover;
                                    }

                                .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .info {
                                    display: inline-block;
                                    width: -webkit-calc(100% - 55px);
                                    width: -moz-calc(100% - 55px);
                                    width: calc(100% - 55px);
                                    vertical-align: top;
                                }

                                    .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .info span {
                                        font-size: 13px;
                                        overflow: hidden;
                                        text-overflow: ellipsis;
                                        white-space: nowrap;
                                        display: inline-block;
                                        vertical-align: middle;
                                        max-width: 100%;
                                    }

                                    .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .info .tlt {
                                        font-size: 12px;
                                        margin-bottom: 3px;
                                        padding: 0px;
                                        border: none;
                                        overflow: hidden;
                                        text-overflow: ellipsis;
                                        white-space: nowrap;
                                    }

                                        .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .info .tlt span {
                                            overflow: initial;
                                            white-space: initial;
                                            line-height: 16px;
                                        }

                                    .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .info .lbl {
                                        padding: 3px 0px 0px 0px;
                                        display: block;
                                        width: initial;
                                        font-size: 12px;
                                        color: #333;
                                    }

                                        .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item .info .lbl span {
                                            color: #000;
                                            font-size: 11px;
                                        }

                                .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .item:hover {
                                    background-color: #f1f1f1;
                                }

                            .popup-form-bg .popup-form .frm .main .autocomplete .autocomplete-output ul li .alert {
                                display: block;
                                text-align: center;
                                font-size: 12px;
                                padding: 10px 0px;
                            }

            .popup-form-bg .popup-form .frm .main .tags-input {
                width: 100%;
                padding: 5px;
                border-radius: 3px;
                border: 1px solid #ccc;
                overflow-x: hidden;
                overflow-y: auto;
                max-height: 200px;
            }

                .popup-form-bg .popup-form .frm .main .tags-input input {
                    width: 100px;
                    border: none;
                    background: transparent;
                    outline: none;
                    padding: 5px 0px;
                    margin: 0 14px;
                }

                .popup-form-bg .popup-form .frm .main .tags-input .tag {
                    display: inline-block;
                    background-color: #fff;
                    color: #333;
                    font-size: 14px;
                    border-radius: 40px;
                    padding: 0px 2px 0px 8px;
                    margin: 5px;
                    border: 1px solid #ccc;
                }

                    .popup-form-bg .popup-form .frm .main .tags-input .tag span {
                    }

                    .popup-form-bg .popup-form .frm .main .tags-input .tag .close {
                        font-size: 14px;
                        padding: 5px;
                        cursor: pointer;
                    }

        .popup-form-bg .popup-form .frm .ft {
        }

            .popup-form-bg .popup-form .frm .ft .blk {
            }

        .popup-form-bg .popup-form .frm .ft {
            margin-top: 10px;
        }

            .popup-form-bg .popup-form .frm .ft .buttons {
                margin-top: 10px;
                text-align: right;
            }

                .popup-form-bg .popup-form .frm .ft .buttons .btn {
                    width: initial;
                    font-size: 14px;
                    padding: 10px 30px;
                    display: inline-block;
                    vertical-align: bottom;
                    -webkit-border-radius: 3px;
                    -moz-border-radius: 3px;
                    border-radius: 3px;
                    cursor: pointer;
                    margin-left: 5px;
                }

                    .popup-form-bg .popup-form .frm .ft .buttons .btn.main {
                        background-color: #e19a20;
                        color: #fff;
                    }

                        .popup-form-bg .popup-form .frm .ft .buttons .btn.main:hover {
                            background-color: #e28f00;
                        }

                    .popup-form-bg .popup-form .frm .ft .buttons .btn.cancel {
                        background-color: #ccc;
                        padding: 10px 15px;
                        color: #333;
                    }

                        .popup-form-bg .popup-form .frm .ft .buttons .btn.cancel:hover {
                            background-color: #ccccccd1;
                        }

            .popup-form-bg .popup-form .frm .ft .alert {
            }

                .popup-form-bg .popup-form .frm .ft .alert div {
                    display: block;
                    margin-top: 10px;
                    font-size: 14px;
                    line-height: 18px;
                    padding: 8px 10px;
                    color: #fff;
                    border-radius: 3px;
                }

                    .popup-form-bg .popup-form .frm .ft .alert div::before {
                        display: inline-block;
                        vertical-align: middle;
                        text-rendering: auto;
                        -webkit-font-smoothing: antialiased;
                        -moz-osx-font-smoothing: grayscale;
                        transform: translate(0, 0);
                        margin-right: 5px;
                        font-family: 'Material Icons';
                        font-weight: normal;
                        font-style: normal;
                        font-size: 24px;
                        line-height: 1;
                        letter-spacing: normal;
                        text-transform: none;
                        white-space: nowrap;
                        word-wrap: normal;
                        direction: ltr;
                    }

                .popup-form-bg .popup-form .frm .ft .alert span {
                    vertical-align: middle;
                }

                .popup-form-bg .popup-form .frm .ft .alert .s {
                    background-color: #0DA921;
                }

                    .popup-form-bg .popup-form .frm .ft .alert .s::before {
                        content: "check_circle";
                    }

                .popup-form-bg .popup-form .frm .ft .alert .w {
                    background-color: #ff8f00;
                }

                    .popup-form-bg .popup-form .frm .ft .alert .w::before {
                        content: "warning";
                    }

                .popup-form-bg .popup-form .frm .ft .alert .e {
                    background-color: #f00;
                }

                    .popup-form-bg .popup-form .frm .ft .alert .e::before {
                        content: "error";
                    }

        .popup-form-bg .popup-form .btn-close {
            position: absolute;
            top: 12px;
            right: 15px;
            cursor: pointer;
            padding: 0px;
        }

            .popup-form-bg .popup-form .btn-close .ico {
                font-size: 18px;
                opacity: .7;
            }

            .popup-form-bg .popup-form .btn-close:hover .ico {
                opacity: 1;
            }

        .popup-form-bg .popup-form .frm .hide {
            display: none !important;
        }
