/* 未能缩小。正在返回未缩小的内容。
(3653,12): run-time error CSS1036: Expected expression, found '@input-height-base'
(3654,13): run-time error CSS1036: Expected expression, found '@input-height-base'
(3655,18): run-time error CSS1036: Expected expression, found '@input-height-base'
(3663,12): run-time error CSS1036: Expected expression, found '@input-height-large'
(3664,13): run-time error CSS1036: Expected expression, found '@input-height-large'
(3665,18): run-time error CSS1036: Expected expression, found '@input-height-large'
(3671,12): run-time error CSS1036: Expected expression, found '@input-height-small'
(3672,13): run-time error CSS1036: Expected expression, found '@input-height-small'
(3673,18): run-time error CSS1036: Expected expression, found '@input-height-small'
 */
/* Make clicks pass-through */
.clear {
    clear: both;
}

#nprogress {
    pointer-events: none;
}

    #nprogress .bar {
        background: #fa144f;
        position: fixed;
        z-index: 1031;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
    }

    /* Fancy blur effect */
    #nprogress .peg {
        display: block;
        position: absolute;
        right: 0px;
        width: 100px;
        height: 100%;
        box-shadow: 0 0 10px #29d, 0 0 5px #29d;
        opacity: 1.0;
        -webkit-transform: rotate(3deg) translate(0px, -4px);
        -ms-transform: rotate(3deg) translate(0px, -4px);
        transform: rotate(3deg) translate(0px, -4px);
    }

    /* Remove these to get rid of the spinner */
    #nprogress .spinner {
        display: block;
        position: fixed;
        z-index: 1031;
        top: 15px;
        right: 15px;
    }

    #nprogress .spinner-icon {
        width: 18px;
        height: 18px;
        box-sizing: border-box;
        border: solid 2px transparent;
        border-top-color: #29d;
        border-left-color: #29d;
        border-radius: 50%;
        -webkit-animation: nprogress-spinner 400ms linear infinite;
        animation: nprogress-spinner 400ms linear infinite;
    }

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

    .nprogress-custom-parent #nprogress .spinner,
    .nprogress-custom-parent #nprogress .bar {
        position: absolute;
    }

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


body, html {
    margin: 0;
    padding: 0;
    color: #444;
    height: 100%;
    font-size: 14px;
}

body {
    background: #f2f2f2;
    width: 100%;
    height: 100%;
    min-width: 1200px;
}

.zs-window {
    width: 100%;
    height: 100%;
}

main {
    width: 100%;
    height: 100%;
}

/*ͼ������*/
.iconfont {
    margin-right: 5px;
}

/*ͷ��*/
.zs-header {
    width: 100%;
    background: linear-gradient(45deg, #1d7ded 0%, #48c8f7 100%);
    height: 68px;
    overflow: hidden;
}

.zs-container {
    width: 100%;
    height: calc(100% - 68px);
}

.zs-left-bar {
    transition: all 0.5s;
    position: relative;
}

.zs-header .zs-logo-text {
    width: 220px;
    height: 44px;
    padding: 12px 30px 12px 12px;
    float: left;
}

.navigation {
    float: left;
    width: calc(100% - 220px);
}

.zs-header .zs-top-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

    .zs-header .zs-top-nav:after {
        clear: both;
        display: block;
        height: 0;
        content: ""
    }

    .zs-header .zs-top-nav li {
        list-style: none;
        float: left;
        padding: 0 18px;
        cursor: pointer;
    }

.zs-top-nav li a {
    text-decoration: none;
    color: #fff;
}

    .zs-top-nav li a i {
        margin: 6px auto 0;
        display: block;
        text-align: center;
        font-size: 20px;
    }

    .zs-top-nav li a div {
        text-align: center;
    }

.zs-header .zs-top-nav li a.active, .zs-header .zs-top-nav li a:hover {
    color: #d6f0ff;
}

.zs-header .other-info {
    height: 100%;
    float: right
}

    .zs-header .other-info .item, .zs-header .other-info a {
        color: #fff;
        text-decoration: none;
        padding: 0 10px;
        display: inline-block;
        height: 100%;
        cursor: pointer
    }

        .zs-header .other-info .item:hover, .zs-header .other-info a:hover {
            background: #008fd3
        }

.zs-header .user-info {
    height: 100%;
    padding: 0 10px;
    float: right;
    cursor: pointer;
    border-left: 1px solid #008fd3;
    position: relative
}

    .zs-header .user-info .k-i-arrow-chevron-right {
        font-size: 10px
    }

    .zs-header .user-info:hover {
        background: #008fd3
    }

    .zs-header .user-info .item {
        display: inline-block
    }

.zs-header .click-menu, .zs-header .hover-menu {
    position: relative
}

.zs-header .down-menu {
    display: none;
    position: absolute;
    top: 50px;
    min-width: 100%;
    z-index: 99;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    color: #444;
    transition: all .5s;
    font-size: 14px;
    box-shadow: 3px 3px 10px #ddd
}

.zs-header .hover-menu:hover .down-menu {
    display: block;
}

.zs-header .down-menu .menu-item {
    padding: 0 20px;
    margin: 0;
    line-height: 40px;
    white-space: nowrap
}

    .zs-header .down-menu .menu-item a {
        color: #444;
        text-decoration: none
    }

    .zs-header .down-menu .menu-item:hover {
        background: #e8ebef
    }

.zs-container {
    /*display: flex;*/
}

    .zs-container:after {
        clear: both;
        display: block;
        height: 0;
        content: ""
    }

    /*��߲˵�����Ȩ*/
    .zs-container .zs-left-bar {
        height: 100%;
        font-size: 14px;
        width: 220px;
        border-right: 1px solid #e8ebef;
        background: #fff;
        transition: all 0.5s;
        position: relative;
        float: left;
        overflow: auto;
        position: relative;
    }

        .zs-container .zs-left-bar nav {
            height: calc(100% - 90px);
            overflow: auto;
        }

.zgt-copyrighta {
    padding-top: 25px;
}

    .zgt-copyrighta p {
        text-align: center;
        margin: 0;
    }

.zgt-copyright {
    width: 100%;
    height: 90px;
    border-top: 1px #e8ebef solid;
    padding: 20px;
    position: absolute;
    bottom: 0;
}

    .zgt-copyright p {
        margin: 0 !important;
        font-size: 12px !important;
    }

.menuleftbtn {
    position: absolute;
    line-height: 50px;
    right: -50px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 9999;
}

.zs-container .zs-left-bar ul {
    margin: 0;
    padding: 0;
    list-style: none
}

    .zs-container .zs-left-bar ul li .nav-title {
        padding: 10px 10px 10px 20px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-bottom: 1px solid #e8ebef
    }

.zgt-left-secondaryicon-left {
    float: left;
    font-size: 7px !important;
    color: #999;
    margin-top: 2px
}

.zgt-left-secondaryicon-right1, .zgt-left-secondaryicon-right2 {
    float: right;
    font-size: 7px !important;
    color: #999;
    margin-top: 2px
}

.zgt-left-secondaryicon-right2 {
    display: none
}

.zgt-left-secondaryicon-right1 {
    display: block
}

.zs-container .zs-left-bar ul li .nav-list {
    /*background: #fff;*/
    display: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #eee
}

    .zs-container .zs-left-bar ul li .nav-list li {
        padding: 8px 20px;
    }

        .zs-container .zs-left-bar ul li .nav-list li:hover {
            background: #e2e4e7
        }

        .zs-container .zs-left-bar ul li .nav-list li.active {
            background: #1e7fed;
        }

            .zs-container .zs-left-bar ul li .nav-list li.active a, .zs-container .zs-left-bar ul li .nav-list li.active i {
                color: #fff !important
            }

        .zs-container .zs-left-bar ul li .nav-list li a {
            text-decoration: none;
            color: #444;
            display: inline-block;
            width: 100%;
            margin-left: 15px;
            font-size: 13px;
        }

        .zs-container .zs-left-bar ul li .nav-list li i {
            float: right;
            font-size: 10px;
            color: #999;
            margin-top: 2px
        }

.zs-container .zs-left-bar ul li.active .nav-title .zgt-left-secondaryicon-right2 {
    display: block
}

.zs-container .zs-left-bar ul li.active .nav-title .zgt-left-secondaryicon-right1 {
    display: none
}

.zs-container .zs-left-bar ul li.active .nav-list {
    display: block
}

.zgt-left-mainmenu {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px #e8ebef solid;
    font-size: 16px;
    padding-left: 20px;
}


.zgt-main-content {
    /*flex: 1;*/
    float: none;
    width: auto;
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    height: 100%;
}
/*���м*/
#asd {
    float: left;
}

.zgt-crumbs {
    width: 100%;
    height: 50px;
    background: #fff;
    border-bottom: 1px #e8ebef solid;
}

.zgt-content {
    width: 100%;
    padding: 15px 15px 0 15px;
    height: calc(100% - 50px);
}

.zgt-crumbs-left {
    margin-left: 20px;
    float: left;
}

    .zgt-crumbs-left a {
        color: #666;
        line-height: 46px;
    }

    .zgt-crumbs-left i {
        color: #666;
        font-size: 7px !important;
    }

    .zgt-crumbs-left span {
        color: #05aeeb;
    }

    .zgt-crumbs-left a:hover {
        color: #05aeeb;
        text-decoration: none;
    }

.zgt-crumbs-right {
    float: right;
    margin-right: 20px;
}

    .zgt-crumbs-right > div {
        float: left;
        line-height: 46px;
        padding: 0 15px;
        position: relative;
    }

        .zgt-crumbs-right > div > span {
            padding: 6px;
            cursor: pointer
        }

.zgt-crumbs-word {
    padding: 6px;
    cursor: pointer
}

.zgt-crumbs-right > div > div > i {
    margin: 0 !important;
    cursor: pointer
}

.zgt-crumbs-right > div:hover > span {
    color: #2286ee;
}

.zgt-crumbs-right > div > div:hover > span {
    color: #2286ee;
}

.zgt-crumbs-right > div > i {
    cursor: pointer
}

.zgt-crumbs-right > div:hover > i {
    color: #2286ee;
}

.zgt-crumbs-right > div > div:hover > i {
    color: #2286ee;
}

.zgt-prompt-content {
    width: 380px;
    position: absolute;
    background: #fff;
    border: 1px #ddd solid;
    top: 56px;
    left: -150px !important;
    display: none;
    border-radius: 4px;
    overflow: hidden;
    z-index: 9999;
    padding: 0 !important;
}

    .zgt-prompt-content > div:nth-child(1) {
        width: 100%;
        height: 60px;
        background: #2286ee;
        text-align: center;
        line-height: 60px;
        color: #fff;
        font-size: 18px;
    }

    .zgt-prompt-content > div:nth-child(2) {
        width: 100%;
    }

        .zgt-prompt-content > div:nth-child(2) > div > div:nth-child(1) {
            width: 10%;
            float: left;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
        }

            .zgt-prompt-content > div:nth-child(2) > div > div:nth-child(1) > div {
                width: 10px;
                height: 10px;
                background: #2286ee;
                border-radius: 10px;
            }

        .zgt-prompt-content > div:nth-child(2) > div > div:nth-child(2) {
            width: 65%;
            float: left;
            line-height: 18px;
            padding: 0 15px;
            color: #999;
        }

        .zgt-prompt-content > div:nth-child(2) > div {
            display: flex;
            width: calc(100% - 20px);
            padding: 10px 0;
            margin: auto;
            border-bottom: 1px #ddd solid;
        }

            .zgt-prompt-content > div:nth-child(2) > div > div:nth-child(3) {
                width: 25%;
                float: left;
                text-align: center;
                line-height: 18px;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-direction: row;
                flex-direction: row;
                -webkit-align-items: center;
                align-items: center;
                -webkit-justify-content: center;
                justify-content: center;
                color: #999;
            }

.zgt-crumbs-weixin div {
    width: 10rem;
    height: 10rem;
    border: 1px #ddd solid;
    top: 16px !important;
    left: -60px !important;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    z-index: 9999;
    padding: 4px !important;
}

.zgt-crumbs-edition > div:nth-child(2) {
    width: 100px;
    border: 1px #ddd solid;
    left: -30px !important;
    background: #fff;
    overflow: hidden;
    z-index: 9999;
    padding: 0;
}

    .zgt-crumbs-edition > div:nth-child(2) a {
        width: 100%;
        height: 40px;
        display: block;
        text-decoration: none;
        line-height: 40px;
        text-align: center;
        color: #333;
        padding: 0 !important;
    }

.zgt-crumbs-edition .dropdown-divider {
    margin: 0;
}

.zgt-crumbs-edition > div:nth-child(2) a:hover {
    color: #fff;
    background: #2286ee;
}

.zgt-crumbs-setup > div:nth-child(2) {
    width: 100px;
    border: 1px #ddd solid;
    left: -60px !important;
    background: #fff;
    overflow: hidden;
    z-index: 9999;
    padding: 0;
}

.zgt-crumbs-setup div:nth-child(2) a {
    width: 100%;
    height: 36px;
    display: block;
    text-decoration: none;
    line-height: 36px;
    text-align: center;
    color: #333;
    padding: 0 !important;
}

    .zgt-crumbs-setup div:nth-child(2) a:hover {
        color: #fff;
        background: #2286ee;
    }

.zgt-crumbs-operation > div:nth-child(2) {
    position: absolute;
    width: 100px;
    border: 1px #ddd solid;
    top: 56px;
    left: -10px !important;
    background: #fff;
    overflow: hidden;
    z-index: 9999;
    padding: 0;
}

    .zgt-crumbs-operation > div:nth-child(2) a {
        width: 100%;
        height: 40px;
        display: block;
        text-decoration: none;
        line-height: 40px;
        text-align: center;
        color: #333;
        padding: 0 !important;
    }

        .zgt-crumbs-operation > div:nth-child(2) a:hover {
            color: #fff;
            background: #2286ee;
        }

.zgt-crumbs-operation a span {
    vertical-align: inherit !important;
    font-size: 14px !important;
    line-height: 40px !important;
    margin-right: 6px;
}

.zgt-crumbs-operation .dropdown-divider {
    margin: 0 !important;
}

.zgt-prompt-content > a {
    display: block;
    width: 100%;
    text-align: center;
}

.zgt-notice-detailed {
    width: calc(100% - 30px);
    margin: auto;
}

.zgt-notice-operation-left {
    width: 30%;
    float: left;
}

.zgt-notice-operation-right {
    float: right;
}

.ztg-button span {
    margin-right: 6px;
}

.zgt-notice-content {
    margin: 15px 0;
    width: 100%;
}

/*��Ҫ����*/

.zs-container .zs-main {
    height: calc(100% - 65px) !important;
    overflow: auto;
    font-size: 14px;
    width: calc(100% - 30px) !important;
    /*margin-left: 15px;*/
    background: #fff;
    /*margin-top: 15px;*/
    margin: 15px 15px 0 15px;
    /*border: 1px #e8ebef solid;*/
}

.zs-main > form:first-child {
    width: 100%;
    height: 100%
}

.zgt-form {
    width: 100%;
    height: 100% !important;
}

.zs-form-title {
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    border-bottom: 1px #e8ebef solid;
}

.zgt-form .row {
    width: 100%;
    margin: 0;
}


.row > label {
    text-align: right;
    padding-right: 0 !important;
}

.zgt-form .zs-form-row .required:before {
    display: inline-block;
    content: "* ";
    color: red
}

.required:before {
    display: inline-block;
    content: "* ";
    color: red;
    margin-right: 4px;
}

.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    margin: 5px 0;
    padding-right: 0 !important
}


.k-numerictextbox .k-numeric-wrap {
    width: 100% !important;
}

.zgt-button {
    padding: 15px 0;
}

.col-sm-2, .col-sm-3, .col-sm-4, .col-sm-8 {
    padding: 0 !important;
}

.zgt-button label {
    width: 13.9% !important;
}

.zgt-button > div {
    width: 84.1% !important;
    padding-left: 15px;
}


.zgt-selection-box {
    margin-top: 14px;
}

/*��ҳ��ӭҳ��*/
.zgt-home {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top,#fff,#bde1ff);
}

    .zgt-home img:nth-child(1) {
        width: 30%;
        margin: auto;
        padding: 10vh 0 2vh;
        display: block;
    }

    .zgt-home img:nth-child(2) {
        width: 76%;
        margin: auto;
        display: block;
    }

/*Ȩ������*/
.zgt-jurisdiction-left {
    width: 20%;
    height: 100%;
    overflow: auto;
    border: 1px #ddd solid;
}

.zgt-jurisdiction-right {
    width: 77%;
    height: 100%;
}

.zgt-role-authority {
    width: calc(100% - 40px) !important;
    margin: auto !important;
    height: calc(100% - 243.5px);
    overflow: auto;
    padding-top: 20px;
}

.zgt-jurisdiction-left > ul {
    overflow: auto;
    height: calc(100% - 60px)
}

.k-tabstrip > .k-content {
    padding: 0 !important;
}
/*��Ӧʽ����*/
@media (max-width: 999.99px) {
    .col-xl-1 {
        flex: 0 0 25;
        max-width: 25%;
    }

    .col-xl-3 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-5 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 1000px) and (max-width: 1199.99px) {
    .col-xl-1 {
        flex: 0 0 16.6666667%;
        max-width: 16.6666667%;
    }

    .col-xl-3 {
        flex: 0 0 33.3333333%;
        max-width: 33.3333333%;
    }

    .col-xl-5 {
        flex: 0 0 33.3333333%;
        max-width: 33.3333333%;
    }
}
/*CEO��֤*/
.zgt-aeo-authentication span {
    text-align: right;
}

.zgt-aeo-authentication-list {
    width: 100%;
}

    .zgt-aeo-authentication-list table {
        border: 1px #e4e4e5 solid;
        width: 60%;
    }

        .zgt-aeo-authentication-list table tr th {
            border-right: 1px #e4e4e5 solid;
            width: 25%;
            text-align: center;
            line-height: 36px;
        }

        .zgt-aeo-authentication-list table tr td {
            border-right: 1px #e4e4e5 solid;
            border-top: 1px #e4e4e5 solid;
            text-align: center;
            line-height: 36px;
        }

.form-declareframe-a {
    width: 49% !important;
    float: left;
}

.form-declareframe-b {
    width: 49% !important;
    float: left;
    margin-left: 2%;
}

.form-declareframe-c {
    width: 32% !important;
    float: left;
}

.form-declareframe-d {
    width: 32% !important;
    float: left;
    margin-left: 2%;
}

.form-declareframe-e {
    width: 32% !important;
    float: left;
    margin-left: 2%;
}

.form-declareframe-f {
    width: 66% !important;
    float: left;
}

.ztg-input-box {
    float: left;
    width: 70%;
    position: relative;
}

    .ztg-input-box label {
        width: 100%;
    }


.zs-form-row {
    margin: 3px 0;
}

@media screen and (min-width:1366px) {
    .col-xl-4 {
        width: 33.333333% !important;
    }
}

@media screen and (max-width:1365px) and (min-width:940px) {
    .col-xl-4 {
        width: 50%;
    }
}

@media screen and (max-width:939px) {
    .col-xl-4 {
        width: 100%;
    }
}

.clear {
    clear: both
}

.home-main-title {
    width: 100%;
    height: 80px;
    font-size: 24px;
    color: #333;
    line-height: 80px;
    border-bottom: 1px #ddd solid;
    padding-left: 50px;
}

.home-main-menu {
    width: 100%;
    padding-left: 50px;
}

.home-main-menu-a {
    margin-top: 40px;
}

.home-main-menu-three-a {
    width: 100px;
    float: left;
    text-decoration: none;
    color: #666;
}

    .home-main-menu-three-a:hover {
        color: #999;
        text-decoration: none;
    }

    .home-main-menu-three-a i {
        font-size: 40px;
        display: block;
        margin-top: 20px;
        text-align: center;
    }

    .home-main-menu-three-a p {
        text-align: center;
        font-size: 13px;
        margin: 0 !important;
    }

.field-validation-error {
    color: #ff0000;
}

.ztg-second-level label {
    width: 100% !important;
}

.ztg-mailbox-setting-name {
    width: 30% !important;
    float: left;
    padding-right: 15px;
    margin-top: 6px;
}

.zs-main > div > div > div > table > thead > tr > th > span > span > .k-autocomplete {
    width: inherit !important;
}

h4 {
    margin: 0 !important;
    padding: 25px 0 25px 25px;
}

/*�ɰ汨�ص�*/
.zgt-declaration-form * {
    box-sizing: border-box;
    font-size: 16px;
}

.zgt-declaration-form {
    width: 1240px;
    height: 1754px;
    color: #333;
    background-color: #fff;
    position: relative;
}

.zgt-declaration-form-check {
    position: absolute;
    left: 0;
    right: 0;
    top: 130px;
    width: 1160px;
    margin: auto;
}

.zgt-declaration-form-checkl {
    float: left;
    font-weight: bold
}

.zgt-declaration-form-checkr {
    float: right;
    font-weight: bold
}

.zgt-declaration-form-barcode {
    width: 1160px;
    margin: auto;
    padding-top: 24px;
}

.zgt-declaration-form-barcode-l {
    width: 50%;
    float: left;
}

    .zgt-declaration-form-barcode-l div {
        width: 100%;
        height: 22px;
        background: blue;
    }

    .zgt-declaration-form-barcode-l span {
        display: block;
        margin: 0;
        padding: 0;
        text-align: center;
    }

.zgt-declaration-form-barcode-r {
    width: 50%;
    float: right;
}

    .zgt-declaration-form-barcode-r div {
        width: 100%;
        height: 22px;
        background: blue;
    }

    .zgt-declaration-form-barcode-r span {
        display: block;
        margin: 0;
        padding: 0;
        text-align: center;
    }

.zgt-declaration-form-title {
    width: 1160px;
    height: 40px;
    position: relative;
    margin: auto;
}

    .zgt-declaration-form-title span {
        letter-spacing: 14px;
    }

    .zgt-declaration-form-title div {
        width: 100%;
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        margin-top: 40px;
    }

    .zgt-declaration-form-title span {
        position: absolute;
        right: 4px;
        top: 4px;
        color: #666;
    }

.zgt-declaration-form-number {
    margin: 30px auto 6px;
    width: 1160px;
}

.zgt-declaration-form-number-l {
    width: 50%;
    float: left;
}

.zgt-declaration-form-number-r {
    width: 50%;
    float: left;
}

.zgt-declaration-form-number div p {
    float: left;
    margin: 0;
}

.zgt-declaration-form-number div span {
    float: left;
}

.clear {
    clear: both;
}

.zgt-declaration-form-content > div > span {
    float: left;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.zgt-declarationform-a1 {
    width: 70px;
}

.zgt-declarationform-a2 {
    width: calc(100% - 70px);
}

.zgt-declarationform-a3 {
    width: 100%;
}

.zgt-declarationform-a4 {
    width: calc(50% - 70px);
}

.zgt-declarationform-a5 {
    width: 50%;
}

.zgt-declarationform-b1 {
    width: 100px;
}

.zgt-declarationform-b2 {
    width: calc(100% - 100px);
}

.zgt-declarationform-b3 {
    width: calc(50% - 100px);
}

.zgt-declarationform-b4 {
    width: 50%;
}

.zgt-declarationform-c1 {
    width: 54px;
}

.zgt-declarationform-c2 {
    width: calc(100% - 54px);
}

.zgt-declarationform-d1 {
    width: 112px;
}

.zgt-declarationform-d2 {
    width: calc(100% - 112px);
}

.zgt-declarationform-e1 {
    width: 84px;
}

.zgt-declarationform-e2 {
    width: calc(100% - 84px);
}

.zgt-declarationform-f1 {
    width: 36px;
}

.zgt-declarationform-f2 {
    width: calc(100% - 36px);
}

.zgt-declaration-form-content {
    width: 1160px;
    margin: auto;
    border-left: 1px #666 solid;
    border-top: 1px #666 solid;
}

    .zgt-declaration-form-content > .zgt-declarationform-operation {
        border-right: 1px #666 solid;
        border-bottom: 1px #666 solid;
        margin: 0;
        float: left;
        position: relative;
        padding: 6px 6px 0;
    }

.zgt-declaration-form-content-top {
    height: 54px;
}

.zgt-declaration-form-content-operationbox {
    position: absolute;
    right: 0;
    top: 9px;
}

.zgt-declarationform-1-a {
    width: 220px !important;
    height: 290px;
    background: #fff;
    border: 1px #999 solid;
    position: absolute !important;
    top: 42px;
    z-index: 999;
    right: 0;
}

    .zgt-declarationform-1-a p {
        display: block;
        width: 100%;
        line-height: 42px;
        background: #007bff;
        color: #fff;
        padding-left: 10px;
        height: 42px;
        margin: 0;
    }

    .zgt-declarationform-1-a textarea {
        width: 90%;
        height: 180px !important;
        margin: 10px auto;
    }

    .zgt-declarationform-1-a div {
        margin-left: 12px;
    }

.zgt-declarationform-1-a {
    background: #fff;
}

.zgt-declarationform-1 {
    width: 40%;
}

.zgt-declarationform-2 {
    width: 20%;
}

.zgt-declarationform-3 {
    width: 20%;
}

.zgt-declarationform-4 {
    width: 20%;
}

.zgt-declarationform-5 {
    width: 40%;
}

.zgt-declarationform-6 {
    width: 15%;
}

.zgt-declarationform-7 {
    width: 22.5%;
}

.zgt-declarationform-8 {
    width: 22.5%;
}

.zgt-declarationform-9 {
    width: 40%;
}

.zgt-declarationform-10 {
    width: 20%;
}

.zgt-declarationform-11 {
    width: 20%;
}

.zgt-declarationform-12 {
    width: 20%;
}

.zgt-declarationform-13 {
    width: 25%;
}

.zgt-declarationform-14 {
    width: 25%;
}

.zgt-declarationform-15 {
    width: 25%;
}

.zgt-declarationform-16 {
    width: 25%;
}

.zgt-declarationform-17 {
    width: 25%;
}

.zgt-declarationform-18 {
    width: 15%;
}

.zgt-declarationform-19 {
    width: 20%;
}

.zgt-declarationform-20 {
    width: 20%;
}

.zgt-declarationform-21 {
    width: 20%;
}

.zgt-declarationform-22 {
    width: 25%;
}

.zgt-declarationform-23 {
    width: 15%;
}

.zgt-declarationform-24 {
    width: 20%;
}

.zgt-declarationform-25 {
    width: 20%;
}

.zgt-declarationform-26 {
    width: 20%;
}

.zgt-declarationform-27 {
    width: 25%;
}

.zgt-declarationform-28 {
    width: 75%;
}

.zgt-declarationform-29 {
    width: 100%;
}

.zgt-declarationform-31 {
    border-right: 0 !important;
    width: 30%;
}

.zgt-declarationform-32 {
    border-right: 0 !important;
    width: 26%;
}

.zgt-declarationform-33 {
    width: 44%;
}

    .zgt-declarationform-33 .zgt-declaration-form-content-operationbox {
        right: 32px;
    }

.zgt-declaration-form-content-two {
    height: 140px;
}

.zgt-declaration-form-content-three {
    height: 40px;
    padding-top: 0 !important;
}

    .zgt-declaration-form-content-three div {
        float: left;
    }

        .zgt-declaration-form-content-three div p {
            margin: 0;
            line-height: 40px;
            text-align: center;
        }

.zgt-declaration-form-content-four {
    height: 66px;
    padding-top: 0 !important;
}

    .zgt-declaration-form-content-four > div {
        float: left;
    }

        .zgt-declaration-form-content-four > div > span {
            display: block;
            width: 90%;
            font-size: 12px !important;
            margin: auto;
            text-align: center;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .zgt-declaration-form-content-four > div > div > div {
            width: 33.333333333%;
            float: left;
        }

            .zgt-declaration-form-content-four > div > div > div span {
                display: block;
                text-align: center;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                font-size: 12px;
            }

.zgt-declaration-form-content-four-one {
    line-height: 60px;
}

.zgt-declaration-form-content-four-two {
    padding-top: 6px;
}

.zgt-declaration-form-content-four-three {
    line-height: 20px !important;
    width: 96% !important;
    text-align: left !important;
}

.zgt-declaration-form-content-three-a {
    width: 6%;
}

.zgt-declaration-form-content-three-b {
    width: 9%;
}

.zgt-declaration-form-content-three-c {
    width: 18%;
}

.zgt-declaration-form-content-three-d {
    width: 20%;
}

.zgt-declaration-form-content-three-e {
    width: 16%;
}

.zgt-declaration-form-content-three-f {
    width: 8%;
}

.zgt-declaration-form-content-three-g {
    width: 8%;
}

.zgt-declaration-form-content-three-h {
    width: 8%;
}

.zgt-declaration-form-content-three-i {
    width: 7%;
}

.zgt-declaration-form-content-three-j {
    width: 86%;
    margin-left: 14%;
    margin-top: -20px;
}

.zgt-declaration-form-content-five {
    height: 40px;
    padding-top: 0 !important;
}

    .zgt-declaration-form-content-five > div > span {
        float: left;
        line-height: 40px;
    }

.zgt-declaration-form-content-five-b {
    display: block;
    width: 60px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.zgt-declaration-form-content-five-a {
    margin-left: 60px;
}

.zgt-declaration-form-content-five-c {
    margin-left: 24px;
}

.zgt-declarationform-detailed2 {
    width: 50% !important;
}

.zgt-declaration-form-content-five .zgt-declarationform-1-a {
    top: -284px !important;
}

.zgt-declarationform-30 {
    width: 100%;
    height: 300px;
    padding: 0 !important;
}

.zgt-declaration-form-content-six-a {
    width: 100%;
    height: 40px;
    background: #2285ee;
    color: #fff;
    line-height: 40px;
    padding-left: 15px;
}

.zgt-declaration-form-content-six-b {
    width: 100%;
    height: 130px;
}

    .zgt-declaration-form-content-six-b > div {
        width: 100%;
        overflow: auto;
        height: 230px;
    }

    .zgt-declaration-form-content-six-b ul {
        margin: 0;
        padding: 0;
    }

        .zgt-declaration-form-content-six-b ul li {
            list-style: none;
            float: left;
            width: 70%;
            line-height: 20px;
            border-bottom: 1px #ddd solid;
            border-left: 1px #ddd solid;
            padding: 4px 12px;
            display: flex;
            justify-content: space-around;
            flex-direction: column;
        }

            .zgt-declaration-form-content-six-b ul li:first-child {
                width: 30%;
                border-left: 0
            }

.zgt-declaration-form-content-six-b1 li {
    background: #ddd;
}

.zgt-declaration-form-content-six-b2 {
    display: flex;
}

.zgt-declaration-button {
    margin: 20px 0 10px 20px;
}



.zgt-declaration-form-content-operationbox div {
    margin-top: -1mm;
}

/*.zgt-declaration-form-content-operationbox-no span {
    font-size: 4mm;
    color: #fa144f;
    background: #fff;
}

.zgt-declaration-form-content-operationbox-ok span {
    color: #00A000;
}*/

/*.zgt-declaration-form-content-operationbox-no .k-i-question {
    position: relative;
    cursor: pointer;
}*/

/*.zgt-declaration-form-content-operationbox-no .k-i-question div {
        display: none;
        position: absolute;
        right: 0;
        top: 5mm;
        width: 50mm;
        padding: 3mm;
        background: #fff;
        border: 1px #666 solid;
        z-index: 9999;
        color: #666;
        font-size: 13px;
        word-wrap: break-word;
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    }*/

/*.zgt-declaration-form-content-operationbox-no .k-i-question:hover div {
        display: block;
    }*/

.zgt-declarationform {
    height: 100%;
    width: 100%;
}

    .zgt-declarationform .k-tabstrip-wrapper {
        height: 100%;
    }

    .zgt-declarationform .k-tabstrip-wrapper {
        height: 100%;
    }

        .zgt-declarationform .k-tabstrip-wrapper > .k-header {
            height: 100%;
        }

        .zgt-declarationform .k-tabstrip-wrapper .k-header .k-content {
            height: calc(100% - 35px) !important;
        }

.zgt-underline, .zgt-underline:hover {
    text-decoration: underline !important;
}

    .zgt-underline:hover {
        color: #ff6358;
    }

#ajax-antiForgeryToken {
    height: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before, .checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #00A000 !important;
    border-color: #00A000 !important;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before, .checkbox-primary input[type="radio"]:indeterminate + label::before {
    background-color: red !important;
    border-color: red !important;
}

.checkbox input[type="checkbox"]:focus + label::before, .checkbox input[type="radio"]:focus + label::before {
    outline: none !important;
}
/*�°汨�ص�*/
.zgt-bgd {
    width: 1694px;
    height: 1178px;
    color: #333;
    position: relative;
    line-height: 1.4 !important;
    padding: 30px;
    background: #fff;
}

    .zgt-bgd * {
        box-sizing: border-box;
    }

.zgt-bgd-title {
    text-align: center;
    font-size: 36px;
    padding-top: 50px;
    font-weight: bold;
}

.zgt-bgd-customsname {
    text-align: center;
    padding-top: 15px;
}

.zgt-bgd-signa {
    position: absolute;
    left: 30px;
    top: 40px;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.zgt-bgd-signb {
    position: absolute;
    right: 30px;
    top: 40px;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.zgt-bgd-essentialinformation {
    width: 100%;
    margin: auto;
    padding: 20px 0 5px;
}

.zgt-bgd-essentialinformationa {
    width: 33%;
    float: left;
}

.zgt-bgd-essentialinformationb {
    width: 17%;
    float: left;
}

.zgt-bgd-essentialinformationc {
    float: right;
}

.zgt-bgd-essentialinformation > div > div {
    display: inline-block;
}

.zgt-bgd-form {
    width: 100%;
    border-top: 1px #333 solid;
}

.zgt-bgd-one {
    width: 33%;
    float: left;
    height: 48px;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    border-left: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-two {
    width: 17%;
    float: left;
    height: 48px;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-three {
    width: 16.5%;
    float: left;
    height: 48px;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-four {
    width: 11%;
    float: left;
    height: 48px;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-five {
    width: 7%;
    float: left;
    height: 48px;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-six {
    width: 10%;
    float: left;
    height: 48px;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-seven {
    width: 100%;
    float: left;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    border-left: 1px #333 solid;
    padding: 4px;
}

.zgt-bgd-eight {
    width: 100%;
    float: left;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    border-left: 1px #333 solid;
}

.zgt-bgd-nine {
    width: 67%;
    height: 70px;
    float: left;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
    border-left: 1px #333 solid;
}

.zgt-bgd-ten {
    width: 33%;
    height: 70px;
    padding: 6px;
    float: left;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
}

.zgt-bgd-eleven {
    width: 20%;
    height: 32px;
    padding: 6px 0 6px 30px;
    float: left;
    position: relative;
}

.zgt-bgd-twelve {
    width: 33%;
    height: 48px;
    padding: 4px;
    float: left;
    border-bottom: 1px #333 solid;
    border-right: 1px #333 solid;
}

.zgt-bgd-seven1 {
    height: 48px;
}

.zgt-bgd-seven2 {
    height: 124px;
}

.zgt-bgd-seven3 {
    height: 36px;
}

.zgt-bgd-seven4 {
    padding: 6px 0;
    height: 70px;
}

.zgt-bgd-abc {
    width: 100%;
    font-weight: bold;
}

.zgt-bgd-a {
    width: 75px;
    font-weight: bold;
}

.zgt-bgd-a1 {
    width: calc(100% - 75px);
}

.zgt-bgd-b {
    width: 60px;
    font-weight: bold;
}

.zgt-bgd-b1 {
    width: calc(100% - 60px);
}

.zgt-bgd-c {
    width: 90px;
    font-weight: bold;
}

.zgt-bgd-c1 {
    width: calc(100% - 90px);
}

.zgt-bgd-c2 {
    width: 40%;
}

.zgt-bgd-d {
    width: 108px;
    font-weight: bold;
}

.zgt-bgd-d1 {
    width: calc(100% - 108px);
}

.zgt-bgd-e {
    width: 45px;
    font-weight: bold;
}

.zgt-bgd-e1 {
    width: calc(100% - 45px);
}

.zgt-bgd-latticea {
    width: 100%;
}

    .zgt-bgd-latticea div {
        float: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.zgt-bgd-latticeb {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zgt-bgd-latticec {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.zgt-bgd-detailed div {
    float: left;
    text-align: center;
    text-overflow: ellipsis;
}

.zgt-bgd-detailed-a > div {
    line-height: 36px;
}

.zgt-bgd-detailed1 {
    width: 5%;
}

.zgt-bgd-detailed2 {
    width: 10%;
}

.zgt-bgd-detailed3 {
    width: 23%;
}

.zgt-bgd-detailed4 {
    width: 14%;
}

.zgt-bgd-detailed5 {
    width: 9%;
}

.zgt-bgd-detailed6 {
    width: 8%;
}

.zgt-bgd-detailed7 {
    width: 8%;
}

.zgt-bgd-detailed8 {
    width: 18%;
}

.zgt-bgd-detailed9 {
    width: 5%;
}

.zgt-bgd-detailed10 {
    width: 85%;
    margin-left: 15%;
    overflow: hidden;
}

.zgt-bgd-detailed-one {
    line-height: 44px;
    overflow: hidden;
}

.zgt-bgd-detailed-two {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.zgt-bgd-detailed-c {
    padding: 0 8%;
}

    .zgt-bgd-detailed-c > div {
        position: relative;
        width: 25%;
    }

    .zgt-bgd-detailed-c div span {
        display: inline-block;
    }

.zgt-bgd-nine {
    padding: 6px;
}

    .zgt-bgd-nine div {
        float: left;
        line-height: 1.8;
        padding: 1px 0;
    }

.zgt-bgd-nine1 {
    width: 6%;
    overflow: hidden;
}

.zgt-bgd-nine2 {
    width: 9%;
    overflow: hidden;
}

.zgt-bgd-nine3 {
    width: 3%;
    overflow: hidden;
}

.zgt-bgd-nine4 {
    width: 34%;
    overflow: hidden;
}

.zgt-bgd-nine5 {
    width: 82%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zgt-bgd-nine6 {
    width: 12%;
    overflow: hidden;
}

.zgt-bgd-nine7 {
    width: 16%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zgt-bgd-form > div {
    position: relative;
}

.zgt-bgd-choice {
    position: absolute;
    right: 6px;
    top: 5px !important;
}

.zgt-bgd-popup {
    width: 220px !important;
    height: 290px;
    background: #fff;
    border: 1px #999 solid;
    position: absolute !important;
    top: 47px;
    z-index: 999;
    right: 0;
}

    .zgt-bgd-popup p {
        display: block;
        width: 100%;
        line-height: 42px;
        background: #007bff;
        color: #fff;
        padding-left: 10px;
        height: 42px;
        margin: 0;
    }

    .zgt-bgd-popup textarea {
        width: 90%;
        height: 180px !important;
        margin: 10px auto;
    }

    .zgt-bgd-popup div {
        margin-left: 12px;
    }

    .zgt-bgd-popup .btn-primary {
        background: #007bff !important;
        border: 0 !important;
    }

        .zgt-bgd-popup .btn-primary:hover {
            color: #fff !important;
            background-color: #0062cc !important;
        }

    .zgt-bgd-popup .btn:hover, .zgt-bgd-popup .btn:focus, .zgt-bgd-popup .btn.focus {
        color: #fff !important;
    }

.zgt-bgd-popuptop .zgt-bgd-popup {
    top: -290px !important;
}

.zgt-bgd-eleven .zgt-bgd-choice {
    top: 7px !important;
}

.zgt-bgd-txm {
    position: absolute;
    width: 25%;
    top: 55px;
    right: 120px;
}

.zgt-bgd-txma {
    width: 100%;
    height: 32px;
    background: #333;
}

.zgt-bgd-txmb {
    width: 100%;
    text-align: center;
    letter-spacing: 12px;
}

.zgt-bgd-essentialinformation > div > div:nth-child(1) {
    font-weight: bold;
}

.zgt-bgd-detailed-a div {
    font-weight: bold;
}

.zgt-bgd-nine1, .zgt-bgd-nine2, .zgt-bgd-nine3, .zgt-bgd-nine4, .zgt-bgd-nine6, .zgt-bgd-ten {
    font-weight: bold;
}

.zgt-bgd-eleven span:nth-child(1) {
    font-weight: bold;
}

.zgt-bgd-detailed1 div, .zgt-bgd-detailed2 div, .zgt-bgd-detailed3 div, .zgt-bgd-detailed4 div, .zgt-bgd-detailed5 div, .zgt-bgd-detailed6 div, .zgt-bgd-detailed7 div, .zgt-bgd-detailed8 div, .zgt-bgd-detailed9 div {
    width: 100%;
    height: 18px;
}

.zgt-bgd-detailed > div > div {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zgt-bgd-eleven .zgt-declaration-form-content-operationbox {
    top: 3px !important;
}

.zgt-underline, .zgt-underline:hover {
    text-decoration: underline !important;
}

    .zgt-underline:hover {
        color: #ff6358;
    }

#ajax-antiForgeryToken {
    height: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before, .checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #00A000 !important;
    border-color: #00A000 !important;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before, .checkbox-primary input[type="radio"]:indeterminate + label::before {
    background-color: red !important;
    border-color: red !important;
}

.checkbox input[type="checkbox"]:focus + label::before, .checkbox input[type="radio"]:focus + label::before {
    outline: none !important;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
}

    .checkbox input[type="checkbox"]:checked + label::after,
    .checkbox input[type="radio"]:checked + label::after {
        font-family: "FontAwesome";
        content: "\f00c";
    }

    .checkbox input[type="checkbox"]:indeterminate + label::after,
    .checkbox input[type="radio"]:indeterminate + label::after {
        display: block;
        content: "";
        width: 10px;
        height: 3px;
        background-color: #555555;
        border-radius: 2px;
        margin-left: -16.5px;
        margin-top: 7px;
    }

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after,
.checkbox-primary input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox label {
    min-height: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -20px;
}

.checkbox input {
    cursor: pointer;
}

.zgt-declaration-form-content-operationbox {
    position: absolute;
    right: 8px;
    top: 14px;
}

.zgt-declaration-form-content-operationbox-ok span {
    color: #00A000;
}

.zgt-declaration-form-content-operationbox-no span {
    font-size: 4mm;
    color: #fa144f;
    background: #fff;
}

.zgt-declaration-form-content-operationbox-no .k-i-question {
    /*position: relative;*/ /*zqy20191209ע��*/
    cursor: pointer;
}

    .zgt-declaration-form-content-operationbox-no .k-i-question div {
        display: none;
        white-space: normal;
        text-align: left;
        position: absolute;
        right: 0;
        width: 200px;
        padding: 5px;
        top: 20px;
        background: #fff;
        border: 1px #ddd solid;
        z-index: 9999;
        color: #666;
        font-size: 13px;
        word-wrap: break-word;
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    }

    .zgt-declaration-form-content-operationbox-no .k-i-question:hover div {
        display: block;
    }

/*�걨Ҫ���嵥*/
.zgt-declareform * {
    font-size: 16px;
}

.zgt-declareform {
    width: 1240px;
    height: 1754px;
    color: #333;
    background-color: #fff;
    position: relative;
}

.zgt-declareform-title {
    width: 100%;
    height: 120px;
    font-size: 36px;
    line-height: 120px;
    text-align: center;
}

.zgt-declareform-top {
    width: 1158px;
    margin: auto;
    border-top: 1px #ddd solid;
    border-left: 1px #ddd solid;
}

.zgt-declareform ul {
    margin: 0;
    padding: 0;
}

.zgt-declareform li {
    list-style: none;
    line-height: 60px;
    text-align: center;
    height: 60px;
    float: left;
}

.zgt-declareform-top ul li {
    border-right: 1px #ddd solid;
    border-bottom: 2px #999 solid;
}

.zgt-declareform-top1 li:nth-child(1) {
    width: 140px;
    font-weight: bold;
}

.zgt-declareform-top1 li:nth-child(2) {
    width: 260px;
}

.zgt-declareform-top1 li:nth-child(3) {
    width: 300px;
    font-weight: bold;
}

.zgt-declareform-top1 li:nth-child(4) {
    width: 457px;
}

.zgt-declareform-top2 li:nth-child(1) {
    width: 140px;
    font-weight: bold;
}

.zgt-declareform-top2 li:nth-child(2) {
    width: 260px;
    font-weight: bold;
}

.zgt-declareform-top2 li:nth-child(3) {
    width: 300px;
    font-weight: bold;
}

.zgt-declareform-top2 li:nth-child(4) {
    width: 457px;
    font-weight: bold;
}

.zgt-declareform-content {
    width: 1158px;
    margin: auto;
    border-left: 1px #ddd solid;
}

    .zgt-declareform-content > div {
        display: flex;
    }

        .zgt-declareform-content > div > div:nth-child(1) {
            width: 140px;
            border-right: 1px #ddd solid;
            border-bottom: 1px #ddd solid;
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-direction: column;
        }

        .zgt-declareform-content > div > div:nth-child(2) {
            width: 1018px;
            flex: 1;
        }

        .zgt-declareform-content > div > div > ul li:nth-child(1) {
            width: 260px;
            border-right: 1px #ddd solid;
            border-bottom: 1px #ddd solid;
        }

        .zgt-declareform-content > div > div > ul li:nth-child(2) {
            width: 300px;
            border-right: 1px #ddd solid;
            border-bottom: 1px #ddd solid;
        }

        .zgt-declareform-content > div > div > ul li:nth-child(3) {
            width: 457px;
            border-right: 1px #ddd solid;
            border-bottom: 1px #ddd solid;
        }

.zgt-declaration-form-content-six {
    height: 300px;
    padding: 0 !important;
    margin: 0;
}

.zgt-declaration-form-content-sixl {
    width: 66.666%;
    border-right: 1px #666 solid;
    height: 100%;
    float: left;
}

.zgt-declaration-form-content-sixr {
    width: 33.334%;
    height: 100%;
    float: right;
    padding: 6px;
}

.zgt-declaration-form-content-sixl-t {
    width: 100%;
    height: 60px;
}

    .zgt-declaration-form-content-sixl-t > div {
        width: 50%;
        float: left;
        height: 100%;
        padding: 6px;
    }

        .zgt-declaration-form-content-sixl-t > div:nth-child(1) {
            border-right: 1px #666 solid;
            border-bottom: 1px #666 solid;
        }

        .zgt-declaration-form-content-sixl-t > div > div {
            width: 50%;
            height: 100%;
            float: left;
        }

            .zgt-declaration-form-content-sixl-t > div > div > div {
                width: 100%;
            }

.zgt-declaration-form-content-sixl-b {
    width: 100%;
    height: 240px;
}

    .zgt-declaration-form-content-sixl-b div {
        width: 50%;
        float: left;
        padding: 6px;
        line-height: 240px;
    }
/*����ҳ��*/
.zgt-errorpage {
    width: 1200px;
    margin: auto;
    height: 100%;
}

.zgt-errorpage-logo {
    padding-top: 20px;
}

.zgt-errorpage-middle {
    height: calc(100% - 175px);
    display: flex;
}

    .zgt-errorpage-middle > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: auto;
    }

        .zgt-errorpage-middle > div > p:nth-child(1) {
            font-size: 30px;
            color: #05afec;
            margin: 0;
        }

        .zgt-errorpage-middle > div img {
            padding: 6vh 0;
        }

        .zgt-errorpage-middle > div > p:nth-child(3) {
            font-size: 22px;
            color: #05afec;
            line-height: 22px;
            margin: 0;
        }

        .zgt-errorpage-middle > div > div > a {
            display: inline-block;
            padding: 8px 34px;
            background: #05afec;
            margin: 5vh 10px 0;
            color: #fff;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s;
        }

            .zgt-errorpage-middle > div > div > a:hover {
                background: #0499ce;
            }

.zgt-errorpage-bottom {
    width: 100%;
    height: 104px;
    display: -webkit-flex;
    display: flex;
}

    .zgt-errorpage-bottom ul {
        display: inline-block;
        margin: 0 auto;
        padding: 0;
    }

        .zgt-errorpage-bottom ul li {
            list-style: none;
            float: left;
            display: block;
            padding: 0 15px;
        }

            .zgt-errorpage-bottom ul li a {
                text-decoration: none;
                color: #999;
            }

                .zgt-errorpage-bottom ul li a:hover {
                    color: #0499ce;
                }


.zgt-arning {
    padding: 10px;
    background: #eee;
}

.zgt-jurisdiction-right {
    width: 78%;
    height: 100%;
}


.k-grid th > span > span > span:nth-child(1) {
    width: inherit !important;
}

#manifests-grid > .k-grid-content .k-grid-content {
    height: inherit !important;
}




.k-toupload a {
    color: #ff6358 !important;
    cursor: pointer !important;
    text-decoration: underline !important;
}

.zgt-rotation, .zgt-rotation1, .zgt-rotation2 {
    -webkit-transition: -webkit-transform 0.6s ease;
    -moz-transition: -moz-transform 0.6s ease;
    -o-transition: -o-transform 0.6s ease;
    -ms-transition: -ms-transform 0.6s ease;
}

.arrowRot {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(180deg);
}

.arrowRot4 {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/*�߼����*/
.zgt-logiccheck {
    margin: 15px;
}

.zgt-logiccheck-top {
    border-top: 1px #ddd solid;
}

    .zgt-logiccheck-top div:nth-child(1) {
        text-align: center;
        line-height: 48px;
        height: 48px;
        width: 30%;
        border-left: 1px #ddd solid;
        border-bottom: 1px #ddd solid;
        border-right: 1px #ddd solid;
    }

    .zgt-logiccheck-top div:nth-child(2) {
        text-align: center;
        line-height: 48px;
        height: 48px;
        width: 70%;
        border-bottom: 1px #ddd solid;
        border-right: 1px #ddd solid;
    }

.zgt-logiccheck-content {
    display: flex;
}

    .zgt-logiccheck-content .float-left {
        padding: 10px;
        width: 30%;
        border-left: 1px #ddd solid;
        border-bottom: 1px #ddd solid;
        border-right: 1px #ddd solid;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .zgt-logiccheck-content .float-right {
        width: 70%;
        border-right: 1px #ddd solid;
    }

        .zgt-logiccheck-content .float-right div {
            border-bottom: 1px #ddd solid;
            padding: 5px 10px;
        }

.zgt-division {
    margin: 5px 0 !important;
}

    .zgt-division > label {
        width: 20.9%;
    }

    .zgt-division > div {
        padding-left: 15px;
        width: 79.1%;
    }

.zgt-404 {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.zgt-404-content {
    width: 600px;
    height: 340px;
    border: 1px #ddd solid;
    border-radius: 10px;
}

    .zgt-404-content > span {
        color: #333;
        font-size: 32px;
        padding-top: 32px;
        text-align: center;
        display: block;
    }

    .zgt-404-content p {
        font-size: 18px;
        text-align: center;
        padding-top: 25px;
    }

    .zgt-404-content div {
        text-align: center;
        font-size: 18px;
        padding: 14px 0 36px;
        border-bottom: 1px #ddd solid;
        width: 464px;
        margin: auto;
    }

    .zgt-404-content a {
        display: block;
        text-align: center;
        font-size: 14px;
        margin-top: 36px;
        color: #05afec;
    }

/*.zgt-merge-ultiple {
    display: flex;
}*/

.zgt-merge-ultiple div {
    padding-right: 10px;
}

.zgt-abc {
    padding: 25px 0 0 20px;
}

.zgt-notice-spotb {
    background: #ddd;
}

.zgt-content-distance {
    padding: 15px !important;
}

.card-body {
    padding: 0 !important;
}

.zgt-mzfp {
    height: 128px;
    overflow: auto;
}

.zgt-pd {
    height: 200px;
    overflow: auto;
}

.zgt-wlxx .k-state-active {
    height: calc(100% - 35px) !important;
}

.zgt-popupa {
    margin: 15rem auto !important;
}

.zgt-double {
    border: 0 !important;
    border-radius: 0 !important;
}

.zgt-doublea .k-textbox {
    border: 0 !important;
    border-radius: 0 !important;
}

.zgt-materiel-popupa {
    position: relative;
    /*white-space: pre-wrap !important;*/
}

.zgt-materiel-popupb {
    position: absolute;
    width: 100%;
    top: 32px;
    z-index: 9999;
    padding: 10px;
    background: #fff;
    border: 1px #ddd solid;
    word-break: break-all;
    display: none;
    white-space: pre-wrap !important;
    left: 0;
}

.zgt-materiel-popupa:hover .zgt-materiel-popupb {
    display: block;
}

#ciq-grid .k-grid-content {
    height: calc(100% - 36.5px);
}

.zgt-general-trade th:last-child, .zgt-general-trade td:last-child {
    width: 160px;
}

.zgt-gbsj-a .form-control {
    white-space: nowrap;
    overflow: hidden;
}

#package-type-grid .k-grid-content {
    height: calc(100% - 37px) !important;
}

.zgt-popupbar {
    height: 100%;
    overflow: auto;
}

    .zgt-popupbar .row {
        margin: 0 !important;
    }



div.k-dropzone {
    border: 1px solid #c5c5c5;
}

    div.k-dropzone em {
        visibility: visible;
    }

.zgt-land {
    background: url(/Content/img/bg2.jpg)no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
}

    .zgt-land .validation-summary-valid ul {
        margin: 0;
    }

.zgt-land-window {
    width: 450px;
    height: 400px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    right: 20%;
    margin-top: -180px;
}

    .zgt-land-window h4 {
        width: 85%;
        padding: 40px 7.5% 20px;
        margin: auto;
        color: #00baff;
    }

    .zgt-land-window > div {
        width: 85%;
        margin: 0 auto 15px;
    }

.zgt-land-button {
    margin: 30px auto 0 !important;
    position: relative;
}

.zgt-land-window button {
    width: 100%;
    display: block;
    color: #fff;
    border: 0;
    cursor: pointer;
    background-color: #01b4ff;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%,from(#01b4ff), to(#2addf8));
}

.zgt-land-button .validation-summary-errors ul {
    margin: 0;
    padding: 0;
}

    .zgt-land-button .validation-summary-errors ul li {
        list-style: none;
        font-size: 13px;
        color: #f31700;
        margin: 0;
        padding: 0;
    }

.zgt-land-button .validation-summary-errors {
    position: absolute;
    top: -20px;
    left: 0;
}

.zgt-bustyle {
    margin-left: 8px !important;
}

.ztg-form-search {
    padding: 15px;
    background: #fff;
    display: flex;
    box-shadow: 0 1px 3px #ccc;
}

    .ztg-form-search .row {
        margin: 0;
    }

        .ztg-form-search .row .btn-warning {
            color: #fff !important;
        }



.k-dropzone > .k-button {
    margin: 0.12rem 0.2rem;
}

.k-dropzone em {
    display: inline-block !important;
    visibility: visible !important;
    opacity: inherit !important;
}


.zgt-content-distance {
    padding-top: 0px !important;
}


.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-default {
    border-color: #ddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-body {
    padding: 15px;
}

.col-xl-4 label {
    padding-left: 20px;
}

    .col-xl-4 label input[type=checkbox],
    .col-xl-4 label input[type=radio] {
        width: 16px;
        height: 16px;
        position: absolute;
        margin-top: 5px;
        left: 15px;
    }

.panel-body .row .col-xl-4 {
    float: left;
}

.form-check {
    padding-top: 5px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 0;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.control-label {
    text-align: right;
    padding-top: 7px;
    margin: 0;
}

.zgt-height-30 {
    height: 30px;
}

.ztg-pd-right {
    padding-right: 0 !important;
}

.ztg-pd-left {
    padding-left: 0 !important;
}

.ztg-pd-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ztg-pd-t7 {
    padding-top: 7px;
}

.zgt-width-180 {
    width: 180px;
}

.ztg-pd-right-10 {
    padding-right: 10px;
}

.ztg-mg-right-10 {
    margin-right: 10px;
}


.pull-left {
    float: left;
}

.bd {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 0;
}

    .bd > thead > tr > th {
        background: #eee !important;
        border-bottom: none !important;
    }

.modal-footer {
    justify-content: center;
    border: none !important;
    padding-top: 0 !important;
}

.modal-title {
    float: left;
}

.modal-body table td > label {
    margin-bottom: 0;
}


.btn-warning {
    color: #fff !important;
}

.modal-header {
    display: block !important;
    margin-bottom: .5rem !important;
}

    .modal-header > h4 {
        padding: 0 !important;
        font-size: 1.2rem !important;
        float: left;
    }

.mg-b {
    margin: 10px;
}

.collapse .col-xs-4,
.collapse .col-xs-12 {
    margin-bottom: 10px;
}

.zs-form-title-left {
    color: #333 !important;
    float: left;
    cursor: pointer;
}

    .zs-form-title-left > .zgt-rotation {
        font-size: 24px;
        margin-left: 5px;
        margin-top: -4px;
    }

.form-horizontal .ztg-pd-right > .k-icon {
    font-size: 24px;
    margin-top: 5px;
}

.ztg-mg-left {
    margin-left: 20px;
}

.text-red {
    color: #f00 !important;
}

.text-blue {
    color: dodgerblue !important;
}

.input-group-addon > .k-icon {
    font-size: 18px !important;
    margin-top: 1px !important;
    cursor: pointer;
}

.ztg-block {
    height: 60px;
    line-height: 60px;
    padding-right: 20px;
}

.ztg-size-24 {
    font-size: 24px !important;
}

.ztg-block-bg {
    border: 1px solid #e5e5e5;
    padding: 10px;
    background: #fcf8e3;
}

/*****/

.sunny,
.cloudy,
.rainy {
    display: block;
    margin: 30px auto 10px;
    width: 128px;
    height: 128px;
    background: url(/content/web/tabstrip/weather.png) transparent no-repeat 0 0;
}

.cloudy {
    background-position: -128px 0;
}

.rainy {
    background-position: -256px 0;
}

.weather {
    margin: 0 auto 30px;
    text-align: center;
}

#tabstrip h2 {
    font-weight: lighter;
    font-size: 5em;
    line-height: 1;
    padding: 0 0 0 30px;
    margin: 0;
}

    #tabstrip h2 span {
        background: none;
        padding-left: 5px;
        font-size: .3em;
        vertical-align: top;
    }

#tabstrip p {
    margin: 0;
    padding: 0;
}

.zs-form-title {
    font-size: 18px;
    margin-bottom: 30px;
}

.zgt-overflow {
    overflow-x: hidden;
    /*overflow-y: scroll;*/
    width: 100%;
    display: block;
    max-height: 297px;
}


/***bootstrap****/

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 42.5px;
    }

    .has-feedback label ~ .form-control-feedback {
        top: 25px;
    }

    .has-feedback label.sr-only ~ .form-control-feedback {
        top: 0;
    }

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    /*Ensure icon is above input groups display: block;**/
    width: @input-height-base;
    height: @input-height-base;
    line-height: @input-height-base;
    text-align: center;
    pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: @input-height-large;
    height: @input-height-large;
    line-height: @input-height-large;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: @input-height-small;
    height: @input-height-small;
    line-height: @input-height-small;
}



.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .input-group .form-control:last-child,
    .input-group-addon:last-child,
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group > .btn,
    .input-group-btn:last-child > .dropdown-toggle,
    .input-group-btn:first-child > .btn:not(:first-child),
    .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .input-group-addon:last-child {
        border-left: 0;
    }

.zgt-prompt {
    position: relative;
}

    .zgt-prompt a,
    .zgt-prompt a:hover {
        text-decoration: none;
    }

        .zgt-prompt a .badge-danger {
            position: absolute;
            top: 10px;
            right: -7px;
        }

/* page */
.offset-xl-0 {
    margin-left: 0 !important;
}

.offset-xl-1 {
    margin-left: 8.333333% !important;
}

.offset-xl-2 {
    margin-left: 16.666667% !important;
}

.offset-xl-3 {
    margin-left: 25% !important;
}

.offset-xl-4 {
    margin-left: 33.333333% !important;
}

.offset-xl-5 {
    margin-left: 41.666667% !important;
}

.offset-xl-6 {
    margin-left: 50% !important;
}

.offset-xl-7 {
    margin-left: 58.333333% !important;
}

.offset-xl-8 {
    margin-left: 66.666667% !important;
}

.offset-xl-9 {
    margin-left: 75% !important;
}

.offset-xl-10 {
    margin-left: 83.333333% !important;
}

.offset-xl-11 {
    margin-left: 91.666667% !important;
}

.offset-md-0 {
    margin-left: 0 !important;
}

.offset-md-1 {
    margin-left: 8.333333% !important;
}

.offset-md-2 {
    margin-left: 16.666667% !important;
}

.offset-md-3 {
    margin-left: 25% !important;
}

.offset-md-4 {
    margin-left: 33.333333% !important;
}

.offset-md-5 {
    margin-left: 41.666667% !important;
}

.offset-md-6 {
    margin-left: 50% !important;
}

.offset-md-7 {
    margin-left: 58.333333% !important;
}

.offset-md-8 {
    margin-left: 66.666667% !important;
}

.offset-md-9 {
    margin-left: 75% !important;
}

.offset-md-10 {
    margin-left: 83.333333% !important;
}

.offset-md-11 {
    margin-left: 91.666667% !important;
}

.page-content {
    width: 100%;
    height: 100% !important;
    padding-top: 20px;
    padding-right: 15px;
    padding-left: 15px;
}

    .page-content .row {
        margin-bottom: 0px;
        margin-top: 0px;
    }


.subhead {
    display: flex;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e1e4e8;
    flex-flow: row wrap;
}

.subhead-heading {
    font-size: 20px;
    font-weight: 400;
    flex: 1 1 auto;
}

.subhead-spacious {
    margin-top: 40px;
}

.subhead-actions {
    align-self: center;
    justify-content: flex-end;
}

    .subhead-actions > form {
        display: inline-block !important;
    }

.box {
    background-color: #fff;
    border: 1px solid #d1d5da;
    border-radius: 3px;
}

.box-body {
    padding: 16px;
    border-bottom: 1px solid #e1e4e8;
}

    .box-body:last-of-type {
        margin-bottom: -1px;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
    }

.box-row {
    padding: 16px;
    margin-top: -1px;
    list-style-type: none;
    border-top: 1px solid #e1e4e8;
}

    .box-row:first-of-type {
        border-top-color: transparent;
    }

    .box-row:first-of-type {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }

    .box-row:last-of-type {
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
    }

.box-header {
    padding: 16px;
    margin: -1px -1px 0;
    background-color: #f6f8fa;
    border: 1px solid #d1d5da;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.box-title {
    font-size: 14px;
    font-weight: 600;
}

.box-footer {
    padding: 16px;
    margin-top: -1px;
    border-top: 1px solid #e1e4e8;
}



.menu {
    margin-bottom: 15px;
    list-style: none;
    background-color: #fff;
    border: 1px solid #d1d5da;
    border-radius: 3px;
}

.menu-heading:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.menu-heading {
    display: block;
    padding: 8px 10px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    color: #586069;
    background-color: #f3f5f8;
    border-bottom: 1px solid #e1e4e8;
}

.menu-item {
    position: relative;
    display: block;
    padding: 8px 10px;
    border-bottom: 1px solid #e1e4e8;
}

    .menu-item.selected, .menu-item[aria-current], .menu-item[aria-selected=true] {
        font-weight: 600;
        color: #24292e;
        cursor: default;
        background-color: #fff;
    }

        .menu-item.selected:before, .menu-item[aria-current]:before, .menu-item[aria-selected=true]:before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 2px;
            content: "";
            background-color: #e36209;
        }

.menu a.menu-item {
    color: #0366d6 !important;
    text-decoration: none !important;
}

.menu-item:hover, .menu-item:focus {
    z-index: 1;
    text-decoration: none;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}


.btn {
    border: 1px solid rgba(27,31,35,.2);
    background-repeat: repeat-x;
    background-position: -1px -1px;
    white-space: nowrap;
    vertical-align: middle;
}

    .btn:hover {
        text-decoration: none;
        background-repeat: repeat-x;
    }

.btn-green {
    color: #fff;
    background-color: #28a745;
    background-image: linear-gradient(-180deg,#34d058,#28a745 90%);
}

    .btn-green.selected, .btn-green:active, .btn-green[aria-selected=true], [open] > .btn-green {
        background-color: #279f43;
        background-image: none;
        border-color: rgba(27,31,35,.5);
        box-shadow: inset 0 0.15em 0.3em rgba(27,31,35,.15);
    }

    .btn-green.hover, .btn-green:hover {
        color: #fff;
        background-color: #269f42;
        background-image: linear-gradient(-180deg,#2fcb53,#269f42 90%);
        background-position: -.5em;
        border-color: rgba(27,31,35,.5);
    }

    .btn-green.focus, .btn-green:focus {
        outline: none;
        box-shadow: none;
    }


.btn-default {
    color: #24292e;
    background-color: #eff3f6;
    background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%);
}

    .btn-default.hover, .btn-default:hover {
        background-color: #e6ebf1;
        background-image: linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%);
        background-position: -.5em;
        border-color: rgba(27,31,35,.35);
    }

    .btn-default.focus, .btn-default:focus {
        outline: none;
        box-shadow: none;
    }

    .btn-default.selected, .btn-default:active, .btn-default[aria-selected=true], [open] > .btn-default {
        background-color: #e9ecef;
        background-image: none;
        border-color: rgba(27,31,35,.35);
        box-shadow: inset 0 0.15em 0.3em rgba(27,31,35,.15);
    }

.btn-link {
    font-size: inherit;
    user-select: none;
    background-color: initial;
    border: 0;
    padding: 0;
}

    .btn-link:hover {
        text-decoration: underline;
    }

    .btn-link.focus, .btn-link:focus {
        outline: none;
        box-shadow: none;
    }

.link {
    color: #0366d6 !important;
    text-decoration: none !important;
}

    .link:hover {
        text-decoration: underline !important;
    }

.list-group-item-heading {
    position: relative;
    display: block;
    padding: 16px;
    background-color: #f6f8fa;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

.ico-help {
    display: table-cell;
    color: #3c8dbc;
    font-size: 1.17em;
    padding-left: 6px;
    padding-top: 8px;
}

.icon-active-true {
    color: #007FCC;
    font-size: 20px;
    content: "\f00c"
}

    .icon-active-true:before {
        content: "\f00c"
    }

.icon-active-false {
    color: #D22D2D;
    font-size: 20px;
}

    .icon-active-false:before {
        color: #D22D2D;
        font-size: 20px;
        content: "\f00d"
    }

.text-muted, .muted {
    color: #8d9ba9 !important;
}

.text-light-blue {
    color: #3c8dbc;
}

span.required {
    color: #ff2e2e;
    margin-left: 6px;
    font-size: 16px;
    font-weight: bold;
}

.form-text-row {
    padding-top: 6px;
}

.label-wrapper {
    display: table;
    float: right;
    min-height: 28px;
}

    .label-wrapper .control-label {
        display: table-cell;
    }

    .label-wrapper .ico-help {
        display: table-cell;
        color: #3c8dbc;
        font-size: 1.17em;
        padding-left: 6px;
    }

    .label-wrapper i.fa {
        width: 16px;
    }

        .label-wrapper i.fa:before {
            position: absolute;
            top: 9px;
        }

.list-group-item h4 {
    padding: 0 !important;
    margin-bottom: .5rem !important;
}

.note {
    min-height: 17px;
    margin: 4px 0 2px;
    font-size: 12px;
    color: #586069;
}

.f1 {
    font-size: 26px !important;
}

.f2 {
    font-size: 22px !important;
}

.f3 {
    font-size: 18px !important;
}

.f4 {
    font-size: 16px !important;
}

.f5 {
    font-size: 14px !important;
}

.f6 {
    font-size: 12px !important;
}

.lh-condensed {
    line-height: 1.25 !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-gray {
    color: #586069 !important;
}

.text-green {
    color: #28a745 !important;
}

.text-bold {
    font-weight: 600 !important;
}

.text-normal {
    font-weight: 400 !important;
}

.json-string {
    color: #a31515;
}

.avatar {
    display: inline-block;
    overflow: hidden;
    line-height: 1;
    vertical-align: middle;
    border-radius: 3px;
}

.validation-summary-errors ul li {
    color: #f00 !important;
}

.vertical-separator {
    margin-right: 8px;
    margin-left: 5px;
    border-left: 1px solid grey;
}

/* Bootstrap */
.nav-tabs .nav-link.active {
    border-top: 2px solid #1e7fed !important;
}

/* Kendo ui */
.k-button i {
    margin: 0 4px 0 -4px;
}


.k-tooltip-validation {
    font-size: 12px !important;
}

.k-notification-info {
    background-color: #dbedff !important;
    color: #032f62 !important;
    border-color: #b8daff !important;
}

.k-notification-error {
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
}

.k-notification-success {
    background-color: #dbedff !important;
    color: #032f62 !important;
    border-color: #b8daff !important;
}

.k-notification-warning {
    color: #856404 !important;
    background-color: #fff3cd !important;
    border-color: #ffeeba !important;
}

.k-grid table {
    min-width: 100%
}

.k-grid-norecords-template {
    line-height: 52px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 1rem;
}

div.k-grid-content > table > tbody > tr.k-no-data {
    height: 80px;
}

li[role='menuitemcheckbox'] > span.k-link > input {
    margin: 2px 2px 0px 2px
}

.k-tabstrip {
    height: 100%;
}

    .k-tabstrip .k-item {
        color: #656565 !important;
    }

        .k-tabstrip .k-item.k-state-active {
            border-top: 2px #1e7fed solid;
            color: #1e7fed !important;
        }

.k-tabstrip-top > .k-tabstrip-items {
    margin-bottom: 15px;
}

.k-grid-content-locked {
    border: 0
}

.k-state-active {
    height: 100%;
}

.k-autocomplete .k-input {
    border-left: 1px #d8d8d8 solid;
}


.k-filtercell .k-operator-hidden label {
    margin: 0.25rem;
}

    .k-filtercell .k-operator-hidden label > input[type=radio] {
        vertical-align: middle;
        position: relative;
        bottom: 2px;
        margin-left: 0.25rem;
    }

.k-filterable.k-content > form > div > label {
    margin: 0.25rem;
}

    .k-filterable.k-content > form > div > label > input {
        margin: 0.25rem;
    }

/* job page */
.job-tabstrip > .k-tabstrip-items {
    margin-bottom: 0px !important;
}


/* js tree */
.jstree-default .jstree-anchor {
    padding: 0 8px 0 4px;
}

.jstree-default .jstree-icon.fa {
    font-size: 1.2rem;
}

.jstree-ocl {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.jstree-open > .jstree-anchor > .fa-object-group:before {
    margin-left: 2px;
    content: "\f248";
}


/* ztree */
.ztree li span.button.organizations_ico_open, .ztree li span.button.organizations_ico_docu, .ztree li span.button.organizations_ico_close {
    margin-right: 4px;
    margin-left: 1px;
}

    .ztree li span.button.organizations_ico_open:before {
        content: "\f248";
    }

    .ztree li span.button.organizations_ico_docu:before {
        content: "\f248";
    }

    .ztree li span.button.organizations_ico_close:before {
        content: "\f247";
    }

.ztree li a.curSelectedNode, .ztree li a.curSelectedNode_Edit {
    background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%) !important;
    border: none !important;
}

.swal2-popup.swal2-toast {
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0.625em;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0 0 0.625em #d9d9d9;
}

    .swal2-popup.swal2-toast .swal2-header {
        flex-direction: row;
    }

    .swal2-popup.swal2-toast .swal2-title {
        flex-grow: 1;
        justify-content: flex-start;
        margin: 0 0.6em;
        font-size: 1em;
    }

    .swal2-popup.swal2-toast .swal2-footer {
        margin: 0.5em 0 0;
        padding: 0.5em 0 0;
        font-size: 0.8em;
    }

    .swal2-popup.swal2-toast .swal2-close {
        position: static;
        width: 0.8em;
        height: 0.8em;
        line-height: 0.8;
    }

    .swal2-popup.swal2-toast .swal2-content {
        justify-content: flex-start;
        font-size: 1em;
    }

    .swal2-popup.swal2-toast .swal2-icon {
        width: 2em;
        min-width: 2em;
        height: 2em;
        margin: 0;
    }

        .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
            display: flex;
            align-items: center;
            font-size: 1.8em;
            font-weight: bold;
        }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
        font-size: 0.25em;
    }
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    top: 0.875em;
    width: 1.375em;
}

    .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
        left: 0.3125em;
    }

    .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
        right: 0.3125em;
    }

.swal2-popup.swal2-toast .swal2-actions {
    flex-basis: auto !important;
    width: auto;
    height: auto;
    margin: 0 0.3125em;
}

.swal2-popup.swal2-toast .swal2-styled {
    margin: 0 0.3125em;
    padding: 0.3125em 0.625em;
    font-size: 1em;
}

    .swal2-popup.swal2-toast .swal2-styled:focus {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4);
    }

.swal2-popup.swal2-toast .swal2-success {
    border-color: #a5dc86;
}

    .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
        position: absolute;
        width: 1.6em;
        height: 3em;
        transform: rotate(45deg);
        border-radius: 50%;
    }

        .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
            top: -0.8em;
            left: -0.5em;
            transform: rotate(-45deg);
            transform-origin: 2em 2em;
            border-radius: 4em 0 0 4em;
        }

        .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
            top: -0.25em;
            left: 0.9375em;
            transform-origin: 0 1.5em;
            border-radius: 0 4em 4em 0;
        }

    .swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
        width: 2em;
        height: 2em;
    }

    .swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
        top: 0;
        left: 0.4375em;
        width: 0.4375em;
        height: 2.6875em;
    }

    .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
        height: 0.3125em;
    }

        .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
            top: 1.125em;
            left: 0.1875em;
            width: 0.75em;
        }

        .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
            top: 0.9375em;
            right: 0.1875em;
            width: 1.375em;
        }

    .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
        -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
        animation: swal2-toast-animate-success-line-tip 0.75s;
    }

    .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
        -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
        animation: swal2-toast-animate-success-line-long 0.75s;
    }

.swal2-popup.swal2-toast.swal2-show {
    -webkit-animation: swal2-toast-show 0.5s;
    animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
    -webkit-animation: swal2-toast-hide 0.1s forwards;
    animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
    display: flex;
    position: fixed;
    z-index: 1060;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.625em;
    overflow-x: hidden;
    transition: background-color 0.1s;
    -webkit-overflow-scrolling: touch;
}

    .swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
        background: rgba(0, 0, 0, 0.4);
    }

    .swal2-container.swal2-backdrop-hide {
        background: transparent !important;
    }

    .swal2-container.swal2-top {
        align-items: flex-start;
    }

    .swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
        align-items: flex-start;
        justify-content: flex-end;
    }

    .swal2-container.swal2-center {
        align-items: center;
    }

    .swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
        align-items: center;
        justify-content: flex-start;
    }

    .swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
        align-items: center;
        justify-content: flex-end;
    }

    .swal2-container.swal2-bottom {
        align-items: flex-end;
    }

    .swal2-container.swal2-bottom-start, .swal2-container.swal2-bottom-left {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
        align-items: flex-end;
        justify-content: flex-end;
    }

        .swal2-container.swal2-bottom > :first-child, .swal2-container.swal2-bottom-start > :first-child, .swal2-container.swal2-bottom-left > :first-child, .swal2-container.swal2-bottom-end > :first-child, .swal2-container.swal2-bottom-right > :first-child {
            margin-top: auto;
        }

    .swal2-container.swal2-grow-fullscreen > .swal2-modal {
        display: flex !important;
        flex: 1;
        align-self: stretch;
        justify-content: center;
    }

    .swal2-container.swal2-grow-row > .swal2-modal {
        display: flex !important;
        flex: 1;
        align-content: center;
        justify-content: center;
    }

    .swal2-container.swal2-grow-column {
        flex: 1;
        flex-direction: column;
    }

        .swal2-container.swal2-grow-column.swal2-top, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-bottom {
            align-items: center;
        }

        .swal2-container.swal2-grow-column.swal2-top-start, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-bottom-start, .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-bottom-left {
            align-items: flex-start;
        }

        .swal2-container.swal2-grow-column.swal2-top-end, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-bottom-end, .swal2-container.swal2-grow-column.swal2-top-right, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-bottom-right {
            align-items: flex-end;
        }

        .swal2-container.swal2-grow-column > .swal2-modal {
            display: flex !important;
            flex: 1;
            align-content: center;
            justify-content: center;
        }

    .swal2-container.swal2-no-transition {
        transition: none !important;
    }

    .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
        margin: auto;
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-container .swal2-modal {
        margin: 0 !important;
    }
}

.swal2-popup {
    display: none;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    width: 32em;
    max-width: 100%;
    padding: 1.25em;
    border: none;
    border-radius: 0.3125em;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
}

    .swal2-popup:focus {
        outline: none;
    }

    .swal2-popup.swal2-loading {
        overflow-y: hidden;
    }

.swal2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swal2-title {
    position: relative;
    max-width: 100%;
    margin: 0 0 0.4em;
    padding: 0;
    color: #595959;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.swal2-actions {
    display: flex;
    z-index: 1;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 1.25em auto 0;
}

    .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
        opacity: 0.4;
    }

    .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
        background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    }

    .swal2-actions:not(.swal2-loading) .swal2-styled:active {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    }

    .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
        box-sizing: border-box;
        width: 2.5em;
        height: 2.5em;
        margin: 0.46875em;
        padding: 0;
        -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
        animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
        border: 0.25em solid transparent;
        border-radius: 100%;
        border-color: transparent;
        background-color: transparent !important;
        color: transparent !important;
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
        margin-right: 30px;
        margin-left: 30px;
    }

    .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
        content: "";
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 5px;
        -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
        animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
        border: 3px solid #999999;
        border-radius: 50%;
        border-right-color: transparent;
        box-shadow: 1px 1px 1px #fff;
    }

.swal2-styled {
    margin: 0.3125em;
    padding: 0.625em 2em;
    box-shadow: none;
    font-weight: 500;
}

    .swal2-styled:not([disabled]) {
        cursor: pointer;
    }

    .swal2-styled.swal2-confirm {
        border: 0;
        border-radius: 0.25em;
        background: initial;
        background-color: #3085d6;
        color: #fff;
        font-size: 1.0625em;
    }

    .swal2-styled.swal2-cancel {
        border: 0;
        border-radius: 0.25em;
        background: initial;
        background-color: #aaa;
        color: #fff;
        font-size: 1.0625em;
    }

    .swal2-styled:focus {
        outline: none;
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4);
    }

    .swal2-styled::-moz-focus-inner {
        border: 0;
    }

.swal2-footer {
    justify-content: center;
    margin: 1.25em 0 0;
    padding: 1em 0 0;
    border-top: 1px solid #eee;
    color: #545454;
    font-size: 1em;
}

.swal2-timer-progress-bar-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0.25em;
    overflow: hidden;
    border-bottom-right-radius: 0.3125em;
    border-bottom-left-radius: 0.3125em;
}

.swal2-timer-progress-bar {
    width: 100%;
    height: 0.25em;
    background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
    max-width: 100%;
    margin: 1.25em auto;
}

.swal2-close {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    padding: 0;
    overflow: hidden;
    transition: color 0.1s ease-out;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #cccccc;
    font-family: serif;
    font-size: 2.5em;
    line-height: 1.2;
    cursor: pointer;
}

    .swal2-close:hover {
        transform: none;
        background: transparent;
        color: #f27474;
    }

    .swal2-close::-moz-focus-inner {
        border: 0;
    }

.swal2-content {
    z-index: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: 1.125em;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
    margin: 1em auto;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
    border: 1px solid #d9d9d9;
    border-radius: 0.1875em;
    background: inherit;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
    color: inherit;
    font-size: 1.125em;
}

    .swal2-input.swal2-inputerror,
    .swal2-file.swal2-inputerror,
    .swal2-textarea.swal2-inputerror {
        border-color: #f27474 !important;
        box-shadow: 0 0 2px #f27474 !important;
    }

    .swal2-input:focus,
    .swal2-file:focus,
    .swal2-textarea:focus {
        border: 1px solid #b4dbed;
        outline: none;
        box-shadow: 0 0 3px #c4e6f5;
    }

    .swal2-input::-webkit-input-placeholder, .swal2-file::-webkit-input-placeholder, .swal2-textarea::-webkit-input-placeholder {
        color: #cccccc;
    }

    .swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
        color: #cccccc;
    }

    .swal2-input:-ms-input-placeholder, .swal2-file:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
        color: #cccccc;
    }

    .swal2-input::-ms-input-placeholder, .swal2-file::-ms-input-placeholder, .swal2-textarea::-ms-input-placeholder {
        color: #cccccc;
    }

    .swal2-input::placeholder,
    .swal2-file::placeholder,
    .swal2-textarea::placeholder {
        color: #cccccc;
    }

.swal2-range {
    margin: 1em auto;
    background: #fff;
}

    .swal2-range input {
        width: 80%;
    }

    .swal2-range output {
        width: 20%;
        color: inherit;
        font-weight: 600;
        text-align: center;
    }

    .swal2-range input,
    .swal2-range output {
        height: 2.625em;
        padding: 0;
        font-size: 1.125em;
        line-height: 2.625em;
    }

.swal2-input {
    height: 2.625em;
    padding: 0 0.75em;
}

    .swal2-input[type=number] {
        max-width: 10em;
    }

.swal2-file {
    background: inherit;
    font-size: 1.125em;
}

.swal2-textarea {
    height: 6.75em;
    padding: 0.75em;
}

.swal2-select {
    min-width: 50%;
    max-width: 100%;
    padding: 0.375em 0.625em;
    background: inherit;
    color: inherit;
    font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
    align-items: center;
    justify-content: center;
    background: #fff;
    color: inherit;
}

    .swal2-radio label,
    .swal2-checkbox label {
        margin: 0 0.6em;
        font-size: 1.125em;
    }

    .swal2-radio input,
    .swal2-checkbox input {
        margin: 0 0.4em;
    }

.swal2-validation-message {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.625em;
    overflow: hidden;
    background: #f0f0f0;
    color: #666666;
    font-size: 1em;
    font-weight: 300;
}

    .swal2-validation-message::before {
        content: "!";
        display: inline-block;
        width: 1.5em;
        min-width: 1.5em;
        height: 1.5em;
        margin: 0 0.625em;
        border-radius: 50%;
        background-color: #f27474;
        color: #fff;
        font-weight: 600;
        line-height: 1.5em;
        text-align: center;
    }

.swal2-icon {
    position: relative;
    box-sizing: content-box;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: 0.25em solid transparent;
    border-radius: 50%;
    font-family: inherit;
    line-height: 5em;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .swal2-icon .swal2-icon-content {
        display: flex;
        align-items: center;
        font-size: 3.75em;
    }

    .swal2-icon.swal2-error {
        border-color: #f27474;
        color: #f27474;
    }

        .swal2-icon.swal2-error .swal2-x-mark {
            position: relative;
            flex-grow: 1;
        }

        .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
            display: block;
            position: absolute;
            top: 2.3125em;
            width: 2.9375em;
            height: 0.3125em;
            border-radius: 0.125em;
            background-color: #f27474;
        }

            .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
                left: 1.0625em;
                transform: rotate(45deg);
            }

            .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
                right: 1em;
                transform: rotate(-45deg);
            }

        .swal2-icon.swal2-error.swal2-icon-show {
            -webkit-animation: swal2-animate-error-icon 0.5s;
            animation: swal2-animate-error-icon 0.5s;
        }

            .swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
                -webkit-animation: swal2-animate-error-x-mark 0.5s;
                animation: swal2-animate-error-x-mark 0.5s;
            }

    .swal2-icon.swal2-warning {
        border-color: #facea8;
        color: #f8bb86;
    }

    .swal2-icon.swal2-info {
        border-color: #9de0f6;
        color: #3fc3ee;
    }

    .swal2-icon.swal2-question {
        border-color: #c9dae1;
        color: #87adbd;
    }

    .swal2-icon.swal2-success {
        border-color: #a5dc86;
        color: #a5dc86;
    }

        .swal2-icon.swal2-success [class^=swal2-success-circular-line] {
            position: absolute;
            width: 3.75em;
            height: 7.5em;
            transform: rotate(45deg);
            border-radius: 50%;
        }

            .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
                top: -0.4375em;
                left: -2.0635em;
                transform: rotate(-45deg);
                transform-origin: 3.75em 3.75em;
                border-radius: 7.5em 0 0 7.5em;
            }

            .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
                top: -0.6875em;
                left: 1.875em;
                transform: rotate(-45deg);
                transform-origin: 0 3.75em;
                border-radius: 0 7.5em 7.5em 0;
            }

        .swal2-icon.swal2-success .swal2-success-ring {
            position: absolute;
            z-index: 2;
            top: -0.25em;
            left: -0.25em;
            box-sizing: content-box;
            width: 100%;
            height: 100%;
            border: 0.25em solid rgba(165, 220, 134, 0.3);
            border-radius: 50%;
        }

        .swal2-icon.swal2-success .swal2-success-fix {
            position: absolute;
            z-index: 1;
            top: 0.5em;
            left: 1.625em;
            width: 0.4375em;
            height: 5.625em;
            transform: rotate(-45deg);
        }

        .swal2-icon.swal2-success [class^=swal2-success-line] {
            display: block;
            position: absolute;
            z-index: 2;
            height: 0.3125em;
            border-radius: 0.125em;
            background-color: #a5dc86;
        }

            .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
                top: 2.875em;
                left: 0.8125em;
                width: 1.5625em;
                transform: rotate(45deg);
            }

            .swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
                top: 2.375em;
                right: 0.5em;
                width: 2.9375em;
                transform: rotate(-45deg);
            }

        .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
            -webkit-animation: swal2-animate-success-line-tip 0.75s;
            animation: swal2-animate-success-line-tip 0.75s;
        }

        .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
            -webkit-animation: swal2-animate-success-line-long 0.75s;
            animation: swal2-animate-success-line-long 0.75s;
        }

        .swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
            -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
            animation: swal2-rotate-success-circular-line 4.25s ease-in;
        }

.swal2-progress-steps {
    align-items: center;
    margin: 0 0 1.25em;
    padding: 0;
    background: inherit;
    font-weight: 600;
}

    .swal2-progress-steps li {
        display: inline-block;
        position: relative;
    }

    .swal2-progress-steps .swal2-progress-step {
        z-index: 20;
        width: 2em;
        height: 2em;
        border-radius: 2em;
        background: #3085d6;
        color: #fff;
        line-height: 2em;
        text-align: center;
    }

        .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
            background: #3085d6;
        }

            .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
                background: #add8e6;
                color: #fff;
            }

            .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
                background: #add8e6;
            }

    .swal2-progress-steps .swal2-progress-step-line {
        z-index: 10;
        width: 2.5em;
        height: 0.4em;
        margin: 0 -1px;
        background: #3085d6;
    }

[class^=swal2] {
    -webkit-tap-highlight-color: transparent;
}

.swal2-show {
    -webkit-animation: swal2-show 0.3s;
    animation: swal2-show 0.3s;
}

.swal2-hide {
    -webkit-animation: swal2-hide 0.15s forwards;
    animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
    transition: none;
}

.swal2-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.swal2-rtl .swal2-close {
    right: auto;
    left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
    right: 0;
    left: auto;
}

@supports (-ms-accelerator: true) {
    .swal2-range input {
        width: 100% !important;
    }

    .swal2-range output {
        display: none;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-range input {
        width: 100% !important;
    }

    .swal2-range output {
        display: none;
    }
}

@-moz-document url-prefix() {
    .swal2-close:focus {
        outline: 2px solid rgba(50, 100, 150, 0.4);
    }
}

@-webkit-keyframes swal2-toast-show {
    0% {
        transform: translateY(-0.625em) rotateZ(2deg);
    }

    33% {
        transform: translateY(0) rotateZ(-2deg);
    }

    66% {
        transform: translateY(0.3125em) rotateZ(2deg);
    }

    100% {
        transform: translateY(0) rotateZ(0deg);
    }
}

@keyframes swal2-toast-show {
    0% {
        transform: translateY(-0.625em) rotateZ(2deg);
    }

    33% {
        transform: translateY(0) rotateZ(-2deg);
    }

    66% {
        transform: translateY(0.3125em) rotateZ(2deg);
    }

    100% {
        transform: translateY(0) rotateZ(0deg);
    }
}

@-webkit-keyframes swal2-toast-hide {
    100% {
        transform: rotateZ(1deg);
        opacity: 0;
    }
}

@keyframes swal2-toast-hide {
    100% {
        transform: rotateZ(1deg);
        opacity: 0;
    }
}

@-webkit-keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: 0.5625em;
        left: 0.0625em;
        width: 0;
    }

    54% {
        top: 0.125em;
        left: 0.125em;
        width: 0;
    }

    70% {
        top: 0.625em;
        left: -0.25em;
        width: 1.625em;
    }

    84% {
        top: 1.0625em;
        left: 0.75em;
        width: 0.5em;
    }

    100% {
        top: 1.125em;
        left: 0.1875em;
        width: 0.75em;
    }
}

@keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: 0.5625em;
        left: 0.0625em;
        width: 0;
    }

    54% {
        top: 0.125em;
        left: 0.125em;
        width: 0;
    }

    70% {
        top: 0.625em;
        left: -0.25em;
        width: 1.625em;
    }

    84% {
        top: 1.0625em;
        left: 0.75em;
        width: 0.5em;
    }

    100% {
        top: 1.125em;
        left: 0.1875em;
        width: 0.75em;
    }
}

@-webkit-keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0;
    }

    65% {
        top: 1.25em;
        right: 0.9375em;
        width: 0;
    }

    84% {
        top: 0.9375em;
        right: 0;
        width: 1.125em;
    }

    100% {
        top: 0.9375em;
        right: 0.1875em;
        width: 1.375em;
    }
}

@keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0;
    }

    65% {
        top: 1.25em;
        right: 0.9375em;
        width: 0;
    }

    84% {
        top: 0.9375em;
        right: 0;
        width: 1.125em;
    }

    100% {
        top: 0.9375em;
        right: 0.1875em;
        width: 1.375em;
    }
}

@-webkit-keyframes swal2-show {
    0% {
        transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes swal2-show {
    0% {
        transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

@-webkit-keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: 0.0625em;
        width: 0;
    }

    54% {
        top: 1.0625em;
        left: 0.125em;
        width: 0;
    }

    70% {
        top: 2.1875em;
        left: -0.375em;
        width: 3.125em;
    }

    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em;
    }

    100% {
        top: 2.8125em;
        left: 0.8125em;
        width: 1.5625em;
    }
}

@keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: 0.0625em;
        width: 0;
    }

    54% {
        top: 1.0625em;
        left: 0.125em;
        width: 0;
    }

    70% {
        top: 2.1875em;
        left: -0.375em;
        width: 3.125em;
    }

    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em;
    }

    100% {
        top: 2.8125em;
        left: 0.8125em;
        width: 1.5625em;
    }
}

@-webkit-keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }

    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }

    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em;
    }

    100% {
        top: 2.375em;
        right: 0.5em;
        width: 2.9375em;
    }
}

@keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }

    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }

    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em;
    }

    100% {
        top: 2.375em;
        right: 0.5em;
        width: 2.9375em;
    }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes swal2-rotate-success-circular-line {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }

    50% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }

    80% {
        margin-top: -0.375em;
        transform: scale(1.15);
    }

    100% {
        margin-top: 0;
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }

    50% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }

    80% {
        margin-top: -0.375em;
        transform: scale(1.15);
    }

    100% {
        margin-top: 0;
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes swal2-animate-error-icon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes swal2-animate-error-icon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes swal2-rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes swal2-rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow: hidden;
}

body.swal2-height-auto {
    height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: calc(100% - 0.625em * 2);
    background-color: transparent !important;
}

    body.swal2-no-backdrop .swal2-container > .swal2-modal {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }

    body.swal2-no-backdrop .swal2-container.swal2-top {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    body.swal2-no-backdrop .swal2-container.swal2-top-start, body.swal2-no-backdrop .swal2-container.swal2-top-left {
        top: 0;
        left: 0;
    }

    body.swal2-no-backdrop .swal2-container.swal2-top-end, body.swal2-no-backdrop .swal2-container.swal2-top-right {
        top: 0;
        right: 0;
    }

    body.swal2-no-backdrop .swal2-container.swal2-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    body.swal2-no-backdrop .swal2-container.swal2-center-start, body.swal2-no-backdrop .swal2-container.swal2-center-left {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    body.swal2-no-backdrop .swal2-container.swal2-center-end, body.swal2-no-backdrop .swal2-container.swal2-center-right {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    body.swal2-no-backdrop .swal2-container.swal2-bottom {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    body.swal2-no-backdrop .swal2-container.swal2-bottom-start, body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
        bottom: 0;
        left: 0;
    }

    body.swal2-no-backdrop .swal2-container.swal2-bottom-end, body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
        right: 0;
        bottom: 0;
    }

@media print {
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
        overflow-y: scroll !important;
    }

        body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
            display: none;
        }

        body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
            position: static !important;
        }
}

body.swal2-toast-shown .swal2-container {
    background-color: transparent;
}

    body.swal2-toast-shown .swal2-container.swal2-top {
        top: 0;
        right: auto;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
    }

    body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
    }

    body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
    }

    body.swal2-toast-shown .swal2-container.swal2-center {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
    }

    body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
    }

    body.swal2-toast-shown .swal2-container.swal2-bottom {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
    }

body.swal2-toast-column .swal2-toast {
    flex-direction: column;
    align-items: stretch;
}

    body.swal2-toast-column .swal2-toast .swal2-actions {
        flex: 1;
        align-self: stretch;
        height: 2.2em;
        margin-top: 0.3125em;
    }

    body.swal2-toast-column .swal2-toast .swal2-loading {
        justify-content: center;
    }

    body.swal2-toast-column .swal2-toast .swal2-input {
        height: 2em;
        margin: 0.3125em auto;
        font-size: 1em;
    }

    body.swal2-toast-column .swal2-toast .swal2-validation-message {
        font-size: 1em;
    }

/**
 * selectize.default.css (v0.12.6) - Default Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #0073bb;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #aaaaaa;
}
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.selectize-control {
  position: relative;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #fff;
  border: 1px solid #0073bb;
}
.selectize-control.multi .selectize-input > div.active {
  background: #92c836;
  color: #fff;
  border: 1px solid #00578d;
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #ffffff;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 1px !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}
.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.selectize-dropdown [data-selectable].option {
  opacity: 1;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.selectize-dropdown .active.create {
  color: #495c68;
}
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}
.selectize-control.multi .selectize-input.has-items {
  padding-left: 5px;
  padding-right: 5px;
}
.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: none;
}
.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1b9dec;
  background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
  background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
}
.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
  background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
  background-image: -o-linear-gradient(top, #008fd8, #0075cf);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
}
.selectize-control.single .selectize-input {
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
}
.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #b8b8b8;
}
.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: 0.85em;
}
.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}
.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}

