/* Wizard general */
.xpage-xentitywizard .content-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.wizard-page.content {
    flex-grow: 1;
}
/* End Wizard general */

/* Wizard tabs */
.tab-content.tab-content-wizard {
    padding: 0 10px;
    flex-grow: 1;
    overflow-y: auto;
}
.tab-content-wizard .tab-pane {
    flex-grow: 1;
}
.tab-content-wizard .tab-pane > section {
    flex-grow: 1;
}
.tab-content-wizard .tab-pane > section .fa-buttons-container.vertical {
    top: 2px;
    left: 2px;
}
.nav-tabs-wizard {
    text-align: center;
    flex-shrink: 0;
}
.nav-tabs-wizard .nav-link {
    padding-left: 38px;
    padding-right: 38px;
    transition: background-color 0.2s ease-in-out;
}
.nav-tabs-wizard .nav-item .nav-link:hover h2,
.nav-tabs-wizard .nav-item .nav-link:hover h3 {
    transition: color 0.2s ease-in-out;
}
.nav-tabs-wizard .done .nav-link:not(.active):before {
    position: absolute;
    content: '';
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 23px;
    height: 23px;
    display: block;
    background: url(../../images/icons/arrow-done.png) no-repeat left top;
}
.fa-thumbtack {
    position: absolute;
    content: '';
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 23px;
    height: 23px;
    display: block;
    background: url(../../images/icons/thumbtack-solid.png) no-repeat left top;
}
.nav-tabs-wizard .slick-prev {
    left: 0;
    z-index: 1;
}
.nav-tabs-wizard .slick-next {
    right: 0;
    z-index: 1;
}
.nav-tabs-wizard h2 {
    text-transform: none;
}
.nav-tabs-wizard .nav-link.active:after,
.nav-tabs-wizard .done .nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    border-bottom: 4px solid;
}
.nav-tabs-wizard .nav-item .nav-link {
    border-radius: 0;
    height: 100%;
}
.nav-tabs-wizard .nav-item:not(:last-child) .nav-link {
    border-right: 0;
}
.nav-tabs-wizard .nav-item {
    min-width: 250px;
}
.tab-content.tab-content-wizard > .active {
    display: flex;
}
.nav-tabs-wizard[data-items-count="6"] .nav-item {
    flex-basis: 16.66%;
}
.nav-tabs-wizard[data-items-count="5"] .nav-item {
    flex-basis: 20%;
}
.nav-tabs-wizard[data-items-count="4"] .nav-item {
    flex-basis: 25%;
}
.nav-tabs-wizard[data-items-count="3"] .nav-item {
    flex-basis: 33.33%;
}
.nav-tabs-wizard[data-items-count="2"] .nav-item {
    flex-basis: 50%;
}
.nav-tabs-wizard[data-items-count="1"] .nav-item {
    flex-basis: 100%;
}
/* End Wizard tabs */

/* Wizard buttons */
.wizard-prev-btn,
.wizard-next-btn {
    position: absolute;
    top: 50%;
    transform: translate3d(0,-50%,0);
    height: 120px;
    width: 65px;
    display: block;
    overflow: hidden;
    background: #18AB00;
}

.wizard-prev-btn {
    left: 0;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 5px 0 10px rgba(0,0,0,0.3);
}

.wizard-next-btn {
    right: 0;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    box-shadow: -5px 0 10px rgba(0,0,0,0.3);
}

.wizard-prev-btn:after,
.wizard-next-btn:after {
    font: normal normal normal 30px/1 FontAwesome;
    line-height: 1;
    content: '\f053';
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 20px;
    margin: auto;
    color: #FFFFFF;
    text-align: center;
}
.wizard-next-btn:after {
    left: 20px;
    right: 0;
    content: '\f054';
}
.edit-form-wizard {
    display: none;
}
/* End Wizard buttons */

/* Value Pickers */
.p-tile {
    max-width: 100%;
}
.p-tile-lbl {
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}
.p-tile-lbl .checkmark {
    position: absolute !important;
    height: 104px;
    width: 104px;
    left: -52px;
    top: -52px;
    padding: 0;
    transform: translate3d(-100%,0,0);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}
.p-tile-lbl .checkmark .fa {
    position: absolute;
    bottom: 16px;
    right: 12px;
    font-size: 2rem;
}
.p-tile-lbl .checkmark:after {
    content: none !important;
}
.p-tile-lbl .checkmark:before {
    height: 104px !important;
    width: 104px !important;
    left: 0 !important;
    top: 0 !important;
    transform: rotate(45deg);
    border-radius: 0;
}
.p-tile-lbl input[type="checkbox"]:checked + .checkmark,
.p-tile-lbl input[type="radio"]:checked + .checkmark {
    transform: translate3d(0,0,0);
}
.p-tile-cnt {
    border-width: 1px;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.p-tile-text {
    transition: color 0.2s ease-in-out;
}
.p-tile-text .k-icon {
    margin-top: -2px;
}
.p-tile-img {
    display: flex;
    align-items: center;
}
.p-tile-img img {
    max-height: 100%;
}
/*-- simple mode --*/
.p-tile-cnt.simple-mode {
    border: 0;
    min-width: 126px;
}
.p-tile-lbl .checkmark.checkmark-simple-mode:before,
.p-tile-lbl .checkmark.checkmark-simple-mode:after {
    content: none !important;
}
.p-tile-lbl .checkmark.checkmark-simple-mode .fa {
    bottom: 37px;
    right: 37px;
    font-size: 0.8rem;
}
.p-tile-cnt.simple-mode .p-tile-img {
    max-width: 32px;
    max-height: 32px;
}
.form-group.simple-mode > div:last-child > .p-tiles {
    justify-content: flex-end !important;
}
/*-- end simple mode --*/
/*-- container mode --*/
.p-tile-lbl .checkmark.checkmark-container-mode:before,
.p-tile-lbl .checkmark.checkmark-container-mode:after {
    content: none !important;
}

.p-tile-lbl .checkmark.checkmark-container-mode .fa {
    bottom: 37px;
    right: 37px;
    font-size: 0.8rem;
}
.p-tile-cnt.container-mode .p-tile-img {
    max-width: 24px;
    max-height: 24px;
}
/*-- end container mode --*/
/*-- transport mode --*/
.p-tile-cnt.transport-mode .p-tile-img {
    max-width: 200px;
    max-height: 200px;
    margin: auto;
}
/*-- end transport mode --*/

.tab-content-wizard .form-group label:not(.p-tile-lbl) {
    font-weight: 600;
}
.tab-content-wizard .data-xcalendar-picker {
    width: 100%;
    margin: auto;
}
/* End Value Pickers */















.m-r-20,
.media-left {
    margin-right: 20px;
}
.m-r-15 {
    margin-right: 15px;
}
.m-b-0 {
    margin-bottom: 0;
}
.m-t-5 {
    margin-top: 5px;
}
.m-t-10 {
    margin-top: 10px;
}
.m-t-15 {
    margin-top: 15px;
}
.m-t-20 {
    margin-top: 20px;
}
.m-t-27 {
    margin-top: 27px;
}
.m-b-5 {
    margin-bottom: 5px;
}
.m-b-10 {
    margin-bottom: 10px;
}
.m-b-15 {
    margin-bottom: 15px;
}
.m-b-20 {
    margin-bottom: 20px;
}
.wizard-tab-content .card {
    width: 100%;
}
.wizard-tab-content .card-header {
    color: #FFFFFF;
    text-align: center;
}
.wizard-tab-content .cnt-show .card + .card {
    text-align: center;
}
.wizard-tab-content .cnt-show .card + .card .btn-lg {
    line-height: 2 !important;
}
.wizard-tab-content #collapseExample,
.wizard-tab-content #collapseExamplea {
    margin-top: 20px;
}
.wizard-tab-content .fa {
    font-size: 0;
    margin-right: -3px;
    vertical-align: text-top;
}
.wizard-tab-content .fa:before {
    font-size: 16px;
}
.wizard-tab-content .fa.fa-arrow-right:before {
    font-size: 14px;
}

.k-edge .wizard-tab-content .fa.fa-arrow-right:before {
    line-height: 1.4;
}
.wizard-tab-content .book-header {
    margin: -16px -26px 30px -26px;
}
.wizard-tab-content .card {
    background: #ffffff;
    margin-bottom: 15px;
    transition: .5s;
    border: 0;
    border-radius: 0.1875rem;
    display: inline-block;
    position: relative;
    width: 100%;
    box-shadow: none;
}
.wizard-tab-content.wizard-tab-content-st1 .card {
    margin-bottom: 160px;
}
.wizard-tab-content .badge {
    border-radius: 8px;
    padding: 5px 8px 3px 8px;
    text-transform: uppercase;
    font-size: 0.7142em;
    line-height: 12px;
    background-color: transparent;
    border: 1px solid;
    margin-bottom: 5px;
    border-radius: 2px;
}
.wizard-tab-content .bg-light-blue {
    background-color: #03A9F4 !important;
    color: #ffffff;
}
.wizard-tab-content .text-info {
    color: #2CA8FF !important;
}
.wizard-tab-content h6 {
    font-weight: 700;
}
.wizard-tab-content .text-success {
    margin-bottom: 5px;
}
#home_with_icon_title > div > div,
#profile_with_icon_title > div > div {
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    #home_with_icon_title > div > div,
    #profile_with_icon_title > div > div {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1023px) {
    .wizard-tab-content {
        width: 100% !important;
    }
}
/* -------------------------------------------------------------------------- */
.banner {
    background: #fff url(../../assets/images/banner-bg.png) no-repeat right top;
    min-height: 580px;
    display: flex;
}

section.content:before {
    display: none;
}

@-webkit-keyframes typing {
    from {
        width: 0;
    }
}

@-webkit-keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.banner h1 {
    border-right: 0px solid #fff;
    width: 16.5em;
    width: 21ch;
    white-space: nowrap;
    overflow: hidden;
    -webkit-animation: typing 2s steps(21, end), blink-caret .5s step-end infinite alternate;
}

.map-block {
    min-height: 450px;
    display: block;
    position: relative;
    border-bottom: 3px solid #fff;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.map-bg {
    background: #fff url(../../assets/images/map.png) no-repeat right top;
}

.middle.big .map-block {
    min-height: 100vh;
}

.btn-map {
    position: absolute;
    left: 0;
    bottom: 1px;
    height: 1px;
}

    .btn-map .btn {
        margin-top: -30px;
    }

        .btn-map .btn .zmdi {
            font-size: 40px;
        }

.home-shipping h6, .home-shipping h4 {
    color: #1b5cb2 !important;
    text-transform: none
}

.center-hd {
    position: relative;
    padding-bottom: 15px;
}

    .center-hd:after {
        position: absolute;
        left: 50%;
        bottom: 0;
        content: "";
        display: block;
        width: 100px;
        margin-left: -50px;
        height: 4px;
        background: #18ab00;
    }

.bg-none {
    background: none
}

.footer-home {
    padding: 30px 0;
}

    .footer-home h5 {
        font-size: 18px;
        color: #2db5e6
    }

.wizard > .steps .disabled a {
    color: #3e3e3e;
    background: #FFF;
}

.wizard > .steps > ul {
    display: flex;
}

    .wizard > .steps > ul > li {
        width: 20% !important;
        border-left: 1px solid #cfdadd;
        border-bottom: 1px solid #cfdadd;
        float: none;
    }

.wizard > .content {
    border: 0px !important
}

.wizard > .content,
.wizard > .steps a, .wizard > .steps a:hover {
    margin: 0;
    text-align: center;
    padding: 10px 5px;
    font-size: 16px
}

    .wizard > .steps a small {
        display: block;
        font-size: 12px;
    }

.wizard > .steps .number {
    display: none;
}

.wizard > .actions {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

    .wizard > .actions a {
        pointer-events: all;
    }

.wizard > .steps .current a, .wizard > .steps .current a:hover {
    background: #FFF;
    color: #1eaae7;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

    .wizard > .steps .current a:after {
        background: #1eaae7;
        width: 100%;
        height: 4px;
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        content: "";
    }

    .wizard > .steps .current a small {
        color: #96999a;
    }

.wizard .content {
    padding: 0;
    height: calc(100vh - 175px);
    display: flex;
}

.wizard section {
    width: 100%;
}

.wizard > .actions > ul {
    position: fixed;
    left: 0;
    top: 50%
}

    .wizard > .actions > ul li {
        margin: 0 !important;
    }

        .wizard > .actions > ul li a, .wizard > .actions > ul li a:hover {
            height: 118px;
            width: 65px;
            display: block;
            text-indent: 5000px;
            overflow: hidden;
            background: none;
        }

        .wizard > .actions > ul li:nth-child(1) {
            left: 0;
            top: 50%;
            position: fixed;
            background: url(../../assets/images/arrow-prew.png) no-repeat left top;
        }

        .wizard > .actions > ul li:nth-child(2) {
            right: 0;
            position: fixed;
            background: url(../../assets/images/arrow-next.png) no-repeat left top;
        }

.body {
    align-self: center !important;
    padding: 15px 50px;
}

.wizard > .actions .disabled a {
    display: none
}

.wizard > .steps .done a {
    background: #fff;
    color: inherit;
    position: relative;
    font-weight: 500;
}

    .wizard > .steps .done a:before {
        position: absolute;
        content: "";
        left: 15px;
        top: 18px;
        width: 23px;
        height: 23px;
        display: block;
        background: url(../../assets/images/arrow-done.png) no-repeat left top;
    }

    .wizard > .steps .done a:after {
        background: #1eaae7;
        width: 100%;
        height: 4px;
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        content: "";
    }

.wizard ul.nav-tabs {
    display: inline-flex
}

.theme-blue .wizard ul.nav-tabs {
    border-radius: 3px;
    border: 1px solid #cfdadd;
}

    .theme-blue .wizard ul.nav-tabs .nav-item {
        margin: 0
    }

    .theme-blue .wizard ul.nav-tabs li {
        min-width: 250px;
    }

        .theme-blue .wizard ul.nav-tabs li + li {
            border-left: 1px solid #cfdadd;
        }

        .theme-blue .wizard ul.nav-tabs li img {
            float: left
        }

    .theme-blue .wizard ul.nav-tabs .nav-link {
        border: 1px transparent !important;
        font-weight: 500;
        color: #000;
        border-radius: 0;
        margin: 0;
    }

        .theme-blue .wizard ul.nav-tabs .nav-link.active {
            background: #fff;
        }

.body h3 {
    color: #1b5cb2;
    font-size: 22px;
    font-weight: 600
}

.truck-group .btn, .truck-group .btn:hover {
    background: #FFF;
    color: #1b5cb2;
    border: 1px solid #cfdadd;
    padding: 15px;
    overflow: hidden;
}

    .truck-group .btn.active {
        border: #1b5cb2 solid 1px;
    }

.truck-group .btn {
    position: relative;
}

.truck-group .col-auto .btn {
    margin: 0 10px
}

.body .input-group {
    background: #fff;
    border: 1px solid #cfdadd
}

.body .input-group-text {
    background: #ccc;
    line-height: 2.5;
    padding: 0 15px
}

.body .form-control {
    background: #FFF;
    border-radius: 0;
    border: 0
}

.filter-cnt .form-control {
    background: none !important;
}

    .filter-cnt .form-control .btn {
        background: #fff;
    }

.filter-cnt .btn-round {
    border-radius: 0 !important
}

.w_calender ul li {
    display: inline-block
}

.w_calender .body {
    padding: 15px !important;
}

.w_calender span + span,
.w_calender em {
    border-radius: 0;
    background: #18ab00 !important
}

/*.wizard .content .body{opacity: 0;
-moz-transition: all 1s ease-in;
  -webkit-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all .3s ease-out;}
.wizard .content .body.current{opacity: 1;-moz-transition: all 1s ease-in;
  -webkit-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all .3s ease-out;}*/
.truck-group .btn:before {
    width: 78px;
    height: 78px;
    background: url(../../assets/images/btn-select.png) no-repeat left top;
    content: "";
    left: -78px;
    top: 0;
    position: absolute;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.truck-group .btn.active:before {
    left: 0
}

.p-15 {
    padding: 15px !important
}

.p-7 {
    padding: 7px !important
}

.three-quote p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0
}

    .three-quote p span {
        color: #000
    }

.cnt-show h3 {
    color: #000 !important;
}

[data-toggle=buttons] .btn input[type=radio] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.cnt-show {
    position: relative;
}

    .cnt-show .card + .card {
        position: absolute;
        left: 0;
        top: -110%;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 12px 12px rgba(0,0,0,0.22);
        -moz-transition: all 1s ease-in;
        -webkit-transition: all 1s ease-in;
        -o-transition: all 1s ease-in;
        transition: all .3s ease-in;
        opacity: 0;
        z-index: 10
    }

    .cnt-show:hover .card + .card {
        top: 0;
        opacity: 1
    }

.card-header {
    background: #1b5cb2 !important;
    font-size: 18px;
    font-weight: 600;
}

.route-map {
    height: 100%;
    background: url(../../assets/images/light-map.png) no-repeat left top;
}

.book-cnt {
    min-height: calc(100vh - 175px);
    padding: 0 !important
}

    .book-cnt .card {
        border: 1px solid #dedede
    }

    .book-cnt .border-left {
        border-left: 1px solid #dedede;
        padding-left: 10px;
    }

    .book-cnt .media {
        margin-bottom: 10px;
    }

        .book-cnt .media .btn {
            margin-bottom: 0;
            margin-top: 0
        }

        .book-cnt .media .badge {
            background: #d1def0;
            color: #1b5cb2;
            border: 0;
        }

        .book-cnt .media p {
            font-size: 13px;
            font-weight: 500;
        }

        .book-cnt .media .zmdi-boat {
            font-size: 22px;
        }

    .book-cnt .card .card {
        margin-bottom: 0 !important
    }

    .book-cnt .progress {
        height: 4px;
        background: #d1d4d5;
        overflow: visible
    }

.progress .progress-bar {
    position: relative;
    height: 4px;
}

.book-cnt .toggle-btn {
    font-size: 22px;
}

.progress .progress-bar:after {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #1eaae7;
    content: "";
    right: 0;
    top: -8px;
    border-radius: 10px;
}

.progress-center {
    height: 1px;
    text-align: center;
    margin-top: -15px;
}

    .progress-center p {
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 500;
        display: inline-block;
        color: #727272;
        background: #fff;
        padding: 0 10px;
    }

        .progress-center p span {
            color: #6286c3;
        }

.book-header {
    background: #eceef0;
    box-shadow: 0 8px 8px rgba(0,0,0,0.3), 0 5px 7px rgba(0,0,0,0.22);
}

.body.book-cnt {
    align-self: auto !important;
}

.book-cnt h3 {
    font-size: 18px !important;
    text-transform: uppercase;
}

    .book-cnt h3 span {
        font-weight: 400;
        color: #3f3f3f
    }

.book-cnt .table td, .book-cnt .table th {
    font-size: 13px;
}

.book-header p {
    font-size: 14px;
}

.book-header .btn {
    border-width: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.p-10-25 {
    padding: 10px 25px !important;
}

.extra-price {
    background: #1b5cb2;
    padding: 0;
    margin-bottom: 10px;
    color: #FFF;
}

    .extra-price .table tr td {
        border: 0px;
        padding: 4px 10px;
        font-size: 12px;
    }

        .extra-price .table tr td:last-child {
            text-align: right
        }

    .extra-price .table {
        margin-bottom: 0;
        background: #0e4997;
    }

        .extra-price .table tfoot td {
            background: #1eaae7
        }

.form-control.show-tick {
    background: #FFF !important;
    border: 1px solid #ccc !important;
}

.btn input[type=checkbox] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.ui-button {
    min-height: 40px;
    line-height: 27px !important;
}

.route-map .ui-button {
    display: none
}

.ui-button,
.ui-widget.ui-widget-content {
    background: #fff;
    border: 0px !important
}

.ui-widget.ui-widget-content {
    padding-left: 10px;
    min-height: 40px;
}

.custom-combobox {
    position: relative;
    display: block;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
}

.custom-combobox-input {
    margin: 0;
    padding-top: 2px;
    padding-bottom: 5px;
    padding-right: 5px;
}

.choose-btn-option .btn {
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 500;
    margin: 0 10px;
}

    .choose-btn-option .btn img {
        margin-right: 10px;
    }

    .choose-btn-option .btn.active {
        background-color: #18ab00;
    }

.cnt-show .puls-minus .input-group {
    border: 3px solid #1b5cb2 !important;
    border-radius: 3px;
}

.cnt-show .puls-minus .input-group-text {
    background: #1b5cb2 !important;
    color: #FFF;
}

.cnt-show .puls-minus .input-group.grey {
    border: 1px solid #cfdadd !important;
    border-radius: 3px;
}

.cnt-show .puls-minus .input-group-text.grey-text {
    background: #cfdadd !important;
    color: #3b3b3b;
}

.cnt-show .puls-minus .input-group .form-control {
    font-size: 20px;
    color: #1b5cb2;
    font-weight: bold !important;
}

.cnt-show .puls-minus .input-group-text .material-icons {
    font-size: 25px !important;
    line-height: 46px !important;
    font-weight: bold !important;
    vertical-align: middle
}

.cnt-show .puls-minus .input-group-text select {
    font-size: 25px;
    background: none;
    color: #FFF;
    border: 0px;
    margin-top: 10px;
}

.cnt-show .puls-minus .form-control {
    border: 1px solid #ccc !important;
    font-size: 22px;
}

tr.btn, tr.btn:hover, tr.btn.active, tr.btn.active:hover {
    background: transparent !important;
    padding: 0;
    display: table-row;
    color: #000;
    text-align: left
}

    tr.btn.active, tr.btn.active:hover {
        background: #d6e7fc !important
    }

    tr.btn .checkbox,
    tr.btn .checkbox label {
        height: 27px;
        margin: 0;
        width: 27px;
        margin-left: 2px;
    }

.cnt-show .puls-minus .input-group-btn .btn {
    margin: 0;
    border-radius: 0;
    border-width: 1px !important;
    padding: 0 !important;
    line-height: 0 !important;
    min-width: 0 !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 30px !important;
}

.cnt-show .puls-minus .input-group .form-control {
    text-align: center
}
