/* Minification failed. Returning unminified contents.
(72,17): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(77,22): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(88,17): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(156,29): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(157,30): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(283,24): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary'
(285,19): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary'
(289,31): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary'
(292,24): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary'
(294,22): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary'
(297,31): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary'
(606,45): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-secondary'
(606,75): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-secondary-dark'
(726,28): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(730,32): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(735,28): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-primary-dark'
(776,22): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-secondary'
 */
/*!  
 * SmartWizard v4.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */

/* SmartWizard Basic CSS */
.sw-main {
    position: relative;
    display:block;
    margin:0;
    padding:0;
}
.sw-main .sw-container {
    display: block;
    margin: 0;
    padding: 0;
    overflow:hidden;
    position: relative;
}
.sw-main .step-content {
    display:none;
    position: relative;
    margin:0;
}
.sw-main .sw-toolbar{
    margin-left: 0;
}


/* SmartWizard Theme: White */
.sw-theme-default{
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
.sw-theme-default .sw-container {
    min-height: 250px;
}
.sw-theme-default .step-content {
    padding: 10px;
    border: 0px solid #D4D4D4;
    background-color: #FFF;
    text-align: left;
}
.sw-theme-default .sw-toolbar{
    background: #f9f9f9;
    border-radius: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0 !important;
}
.sw-theme-default .sw-toolbar-top{
    border-bottom-color: #ddd !important;
}
.sw-theme-default .sw-toolbar-bottom{
    border-top-color: #ddd !important;
}
.sw-theme-default > ul.step-anchor > li > a, .sw-theme-default > ul.step-anchor > li > a:hover  {
    border: none !important;
    color: #bbb;
    text-decoration: none;
    outline-style:none;
    background: transparent !important;
    border: none !important;
}
.sw-theme-default > ul.step-anchor > li.clickable > a:hover {
    color: var(--color-brand-primary-dark) !important;
    background: transparent !important;
}
.sw-theme-default > ul.step-anchor > li > a::after {
    content: "";
    background: var(--color-brand-primary-dark); /* #4caf50 var(--color-brand-primary-dark)*/
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    transition: all 250ms ease 0s;
    transform: scale(0);
}
.sw-theme-default > ul.step-anchor > li.active > a {
    border: none !important;
    color: var(--color-brand-primary-dark) !important;
    background: transparent !important;
}
.sw-theme-default > ul.step-anchor > li.active > a::after {
    transform: scale(1);
}
.sw-theme-default > ul.step-anchor > li.done > a {
    border: none !important;
    color: #000 !important;
    background: transparent !important;
}
.sw-theme-default > ul.step-anchor > li.done > a::after {
    background: #5cb85c;
    transform: scale(1);
}
.sw-theme-default > ul.step-anchor > li.danger > a {
    border: none !important;
    color: #d9534f !important;
    background: transparent !important;
}
.sw-theme-default > ul.step-anchor > li.danger > a::after {
    background: #d9534f;
    transform: scale(1);
}
.sw-theme-default > ul.step-anchor > li.disabled > a, .sw-theme-default > ul.step-anchor > li.disabled > a:hover {
    color: #eee !important;
}

/* Responsive CSS */
@media screen and (max-width: 768px) {
    .sw-theme-default > .nav-tabs > li {
        float: none !important;
    }
}

/* Loader Animation
Courtesy: http://bootsnipp.com/snippets/featured/loading-button-effect-no-js
*/
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
.sw-theme-default > ul.step-anchor > li.loading:before {
    content: '';
    display: inline-block;
    position: absolute;
    background: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: var(--color-brand-primary-dark);
    border-right-color: var(--color-brand-primary-dark);
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation:    ld 1s ease-in-out infinite;
    -o-animation:      ld 1s ease-in-out infinite;
    animation:         ld 1s ease-in-out infinite;
}
/*!  
 * SmartWizard v4.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */

/* SmartWizard Theme: Arrows */
.sw-theme-arrows{
    border-radius: 5px;
    border: 1px solid #ddd;
}
.sw-theme-arrows > .sw-container {
    min-height: 200px;
}
.sw-theme-arrows .step-content {
    padding: 0 10px;
    border: 0px solid #D4D4D4;
    background-color: #FFF;
    text-align: left;
}
.sw-theme-arrows .sw-toolbar{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0 !important;
    border-radius: 5px;
}
.sw-theme-arrows > .sw-toolbar-top{
}
.sw-theme-arrows > .sw-toolbar-bottom{
}
.sw-theme-arrows > ul.step-anchor{
    display: block;
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 0px;
	background: #f5f5f5;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
	list-style: none;
	overflow: hidden;
    /*margin: -1px -1px 0 -1px -1px;*/
}
.sw-theme-arrows > ul.step-anchor li+li:before {
	padding: 0;
}


.sw-theme-arrows > ul.step-anchor > li > a, .sw-theme-arrows > ul.step-anchor > li > a:hover  {
	color: #bbb;
	text-decoration: none;
	padding: 10px 0 10px 45px;
	position: relative;
	display: block;
    border: 0 !important;
    border-radius: 0;
    outline-style:none;
    background: #f5f5f5;
}
.sw-theme-arrows > ul.step-anchor > li > a:after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 30px solid #f5f5f5;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 100%;
	z-index: 2;
}
.sw-theme-arrows > ul.step-anchor > li > a:before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
	border-bottom: 50px solid transparent;
	border-left: 30px solid #ddd;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	margin-left: 1px;
	left: 100%;
	z-index: 1;
}
.sw-theme-arrows > ul.step-anchor > li:first-child > a {
	padding-left: 15px;
}
.sw-theme-arrows > ul.step-anchor > li > a:hover  {
    color: #bbb;
    text-decoration: none;
    outline-style:none;
    background: #f5f5f5;
    border-color: #f5f5f5;
}
.sw-theme-arrows > ul.step-anchor > li > a:hover:after {
    border-left-color: #f5f5f5;
}
.sw-theme-arrows > ul.step-anchor > li > a small{
}
.sw-theme-arrows > ul.step-anchor > li.clickable > a:hover {
    color: #4285F4 !important;
	background: #46b8da !important;
}
.sw-theme-arrows > ul.step-anchor > li.active > a {
    border-color: var(--color-brand-primary) !important;
    color: #fff !important;
	background: var(--color-brand-primary) !important;
    font-weight: bold;
}
.sw-theme-arrows > ul.step-anchor > li.active > a:after {
	border-left: 30px solid var(--color-brand-primary) !important;
}
.sw-theme-arrows > ul.step-anchor > li.done > a {
    border-color: var(--color-brand-primary) !important;
    color: #fff !important;
    background: var(--color-brand-primary) !important;
}
.sw-theme-arrows > ul.step-anchor > li.done > a:after {
	border-left: 30px solid var(--color-brand-primary);
}
.sw-theme-arrows > ul.step-anchor > li.danger > a {
    border-color: #d9534f !important;
    color: #d9534f !important;
    background: #fff !important;
}
.sw-theme-arrows > ul.step-anchor > li.disabled > a, .sw-theme-arrows > ul.step-anchor > li.disabled > a:hover {
    color: #eee !important;
}

/* Responsive CSS */
@media screen and (max-width: 768px) {
    .sw-theme-arrows > ul.step-anchor{
        border: 0;
        background: #ddd !important;
    }
    .sw-theme-arrows > .nav-tabs > li {
        float: none !important;
        margin-bottom: 0;
    }
    .sw-theme-arrows > ul.step-anchor > li > a, .sw-theme-arrows > ul.step-anchor > li > a:hover {
        padding-left: 15px;
        margin-right: 0;
        margin-bottom: 1px;
    }
    .sw-theme-arrows > ul.step-anchor > li > a:after, .sw-theme-arrows > ul.step-anchor > li > a:before {
        display: none;
    }
}

/* Loader Animation
Courtesy: http://bootsnipp.com/snippets/featured/loading-button-effect-no-js
*/
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
.sw-theme-arrows > ul.step-anchor > li.loading:before {
    content: '';
    display: inline-block;
    position: absolute;
    background: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: #4285f4;
    border-right-color: #4285f4;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    z-index: 99;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation:    ld 1s ease-in-out infinite;
    -o-animation:      ld 1s ease-in-out infinite;
    animation:         ld 1s ease-in-out infinite;
}
.fixed-table-container .bs-checkbox,.fixed-table-container .no-records-found{text-align:center}.fixed-table-body thead th .th-inner,.table td,.table th{box-sizing:border-box}.bootstrap-table .table{margin-bottom:0!important;border-bottom:1px solid #ddd;border-collapse:collapse!important;border-radius:1px}.bootstrap-table .table:not(.table-condensed),.bootstrap-table .table:not(.table-condensed)>tbody>tr>td,.bootstrap-table .table:not(.table-condensed)>tbody>tr>th,.bootstrap-table .table:not(.table-condensed)>tfoot>tr>td,.bootstrap-table .table:not(.table-condensed)>tfoot>tr>th,.bootstrap-table .table:not(.table-condensed)>thead>tr>td{padding:8px}.bootstrap-table .table.table-no-bordered>tbody>tr>td,.bootstrap-table .table.table-no-bordered>thead>tr>th{border-right:2px solid transparent}.bootstrap-table .table.table-no-bordered>tbody>tr>td:last-child{border-right:none}.fixed-table-container{position:relative;clear:both;border:1px solid #ddd;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px}.fixed-table-container.table-no-bordered{border:1px solid transparent}.fixed-table-footer,.fixed-table-header{overflow:hidden}.fixed-table-footer{border-top:1px solid #ddd}.fixed-table-body{overflow-x:auto;overflow-y:auto;height:100%}.fixed-table-container table{width:100%}.fixed-table-container thead th{height:0;padding:0;margin:0;border-left:1px solid #ddd}.fixed-table-container thead th:focus{outline:transparent solid 0}.fixed-table-container thead th:first-child{border-left:none;border-top-left-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px}.fixed-table-container tbody td .th-inner,.fixed-table-container thead th .th-inner{padding:8px;line-height:24px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fixed-table-container thead th .sortable{cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px}.fixed-table-container thead th .both{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC')}.fixed-table-container thead th .asc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==)}.fixed-table-container thead th .desc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII=)}.fixed-table-container th.detail{width:30px}.fixed-table-container tbody td{border-left:1px solid #ddd}.fixed-table-container tbody tr:first-child td{border-top:none}.fixed-table-container tbody td:first-child{border-left:none}.fixed-table-container tbody .selected td{background-color:#f5f5f5}.fixed-table-container .bs-checkbox .th-inner{padding:8px 0}.fixed-table-container input[type=radio],.fixed-table-container input[type=checkbox]{margin:0 auto!important}.fixed-table-pagination .pagination-detail,.fixed-table-pagination div.pagination{margin-top:10px;margin-bottom:10px}.fixed-table-pagination div.pagination .pagination{margin:0}.fixed-table-pagination .pagination a{padding:6px 12px;line-height:1.428571429}.fixed-table-pagination .pagination-info{line-height:34px;margin-right:5px}.fixed-table-pagination .btn-group{position:relative;display:inline-block;vertical-align:middle}.fixed-table-pagination .dropup .dropdown-menu{margin-bottom:0}.fixed-table-pagination .page-list{display:inline-block}.fixed-table-toolbar .columns-left{margin-right:5px}.fixed-table-toolbar .columns-right{margin-left:5px}.fixed-table-toolbar .columns label{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.428571429}.fixed-table-toolbar .bs-bars,.fixed-table-toolbar .columns,.fixed-table-toolbar .search{position:relative;margin-top:10px;margin-bottom:10px;line-height:34px}.fixed-table-pagination li.disabled a{pointer-events:none;cursor:default}.fixed-table-loading{display:none;position:absolute;top:42px;right:0;bottom:0;left:0;z-index:99;background-color:#fff;text-align:center}.fixed-table-body .card-view .title{font-weight:700;display:inline-block;min-width:30%;text-align:left!important}.table td,.table th{vertical-align:middle}.fixed-table-toolbar .dropdown-menu{text-align:left;max-height:300px;overflow:auto}.fixed-table-toolbar .btn-group>.btn-group{display:inline-block;margin-left:-1px!important}.fixed-table-toolbar .btn-group>.btn-group>.btn{border-radius:0}.fixed-table-toolbar .btn-group>.btn-group:first-child>.btn{border-top-left-radius:4px;border-bottom-left-radius:4px}.fixed-table-toolbar .btn-group>.btn-group:last-child>.btn{border-top-right-radius:4px;border-bottom-right-radius:4px}.bootstrap-table .table>thead>tr>th{vertical-align:bottom;border-bottom:1px solid #ddd}.bootstrap-table .table thead>tr>th{padding:0;margin:0}.bootstrap-table .fixed-table-footer tbody>tr>td{padding:0!important}.bootstrap-table .fixed-table-footer .table{border-bottom:none;border-radius:0;padding:0!important}.bootstrap-table .pull-right .dropdown-menu{right:0;left:auto}p.fixed-table-scroll-inner{width:100%;height:200px}div.fixed-table-scroll-outer{top:0;left:0;visibility:hidden;width:200px;height:150px;overflow:hidden}.fixed-table-pagination:after,.fixed-table-toolbar:after{content:"";display:block;clear:both}
.boat-layout-container .layout-container {
    padding: 5px 0;
}

    .boat-layout-container .layout-container .seat-container {
        padding: 2px;
    }

    .boat-layout-container .layout-container .seat {
        width: 100%;
    }

    .boat-layout-container .layout-container .lobby {
        padding: 0 2px;
    }

.boat-layout-container.boat-modal {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    outline: 0;
    outline: 0;
    background-color: rgba(0,0,0,0.4);
}

.boat-layout-container .btnCancelChangeSeat {
    display: none;
}

.boat-layout-container.boat-modal .btnCancelChangeSeat {
    display: block;
    margin-top: -5px;
}

.seat-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .seat-default:hover {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }


.seat-vip {
    color: #fff;
    background-color: #FFC107;
    border-color: #FFB300;
}

    .seat-vip:hover {
        color: #fff;
        background-color: #ff9f00;
        border-color: #FFB300;
    }

.seat-bussiness {
    color: #fff;
    background-color: #bfb120;
    border-color: #F1C27D;
}

    .seat-bussiness:hover {
        color: #fff;
        background-color: #A68300 !important;
        border-color: #A69500 !important;
    }

.seat-held {
    color: #fff;
    background-color: #795548;
    border-color: #795548;
}

    .seat-held:hover {
        color: #fff;
        background-color: #6D4C41;
        border-color: #6D4C41;
    }

.seat-selecting {
    color: #fff;
    background-color: #4caf50;
    border-color: #46b8da;
}

    .seat-selecting:hover {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

.seat-booked {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .seat-booked:hover {
        color: #fff;
        background-color: #c9302c;
        border-color: #ac2925;
    }

.btnnote {
    height: 20px;
}


.title-boat {
    display: inline-flex;
}

@media (max-width: 992px) {
    .title-boat {
        display: block;
    }
}

/*Container*/
.btn.seat-default.seat {
    padding: 8px 4px;
}

.btn.seat-default.seat {
    padding: 10px 7px;
    font-size: 12px;
}

    .btn.seat-default.seat.seat-vip {
        display: block;
        transition: rotate(0deg);
        -moz-text-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

.layout-container table {
    margin: 0 auto;
}

    .layout-container table td {
        padding: 50px;
    }

.boat-layout-container .layout-container .lobby {
    writing-mode: vertical-rl;
    font-size: 15px;
}

.passenger-separate {
    background-color: #5cb85c;
}

.select2-container--bootstrap {
    width: 100% !important;
}

.customer-info {
    /*padding-top: 80px;*/
}

.no-touch .affix {
    position: fixed;
    top: 80px;
}

.info-rule-box {
    height: 250px;
    overflow: auto;
    padding: 20px;
    margin-top: 15px;
}

.l-height {
    line-height: 2 !important;
}

.color-darkblue {
    color: #2196f3;
}

.color-red {
    color: red;
}

.color-darkyellow {
    color: #f0ad4e;
}

.color-darkcyan {
    color: darkcyan;
}

.color-gray {
    color: gray;
}

.text-underline {
    text-decoration: underline;
}

.font-12 {
    font-size: 12px !important;
}
.font-14{
    font-size: 14px !important;
}
.font-16 {
    font-size: 16px !important;
}
.font-18 {
    font-size: 18px !important;
}
.font-20 {
    font-size: 20px !important;
}
.font-24 {
    font-size: 24px !important;
}

.card-body {
    box-shadow: 0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);
    background: linear-gradient(60deg, var(--color-brand-secondary), var(--color-brand-secondary-dark));
    color: white;
    font-size: 16px;
    padding: 7px;
}

.card {
    /*border: 1px dashed #ddd;
	box-shadow: 0 0 0 3px #fff, 0 0 0 5px #ddd, 0 0 0 10px #fff, 0 0 2px 10px #eee;*/
    margin-right: 5px;
    display: inline-block;
    position: relative;
    width: 100%;
    border-radius: 3px;
    color: rgba(0,0,0, 0.87);
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);
    padding: 7px;
}

.card-footer {
    padding-top: 15px;
}

.summary-info {
    top: 0 !important;
}

input.custom-checkbox[type=checkbox] {
    position: relative;
    /*top: 4.5px;*/
    left: 0;
    width: 17px;
    height: 17px;
    border: solid 2px;
    border-color: rgba(0,0,0,0.54);
    margin-right: 5px;
}

.infoupper {
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 5px;
}



.radio__text {
    font-size: 30px;
    color: #CC0000;
}

input[name="OrderType"] {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
    transform: scale(1.5);
}

.tblVoyage thead {
    background: #eee;
    color: #3b5998;
}

.tblVoyage .bs-checkbox {
    display: none;
}

.tblVoyage tr td {
  cursor: pointer;
}

.tblVoyage tr.selected td {
    background-color: #8b9dc3;
    color: white;
    font-weight: bold;
}

.tblVoyageReturn thead {
    background: #eee;
    color: #3b5998;
}

.tblVoyageReturn .bs-checkbox {
    display: none;
}

.tblVoyageReturn tr td {
  cursor: pointer;
}

.tblVoyageReturn tr.selected td {
    background-color: #8b9dc3;
    color: white;
    font-weight: bold;
}

.searchWrapper {
    border-top: 1px solid #3b5998;
    border-top-width: 0px;
}

.btnAnimated {
    background-color: #3b5998; /* Green */
    border: none;
    color: white;
    padding: 8px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin-top: 0px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    float: left; /* Float the buttons side by side */
}

.btnAnimated--blue {
    background-color: white;
    color: #333;
    border: 1px solid var(--color-brand-primary-dark);
}

    .btnAnimated--blue:hover {
        background-color: var(--color-brand-primary-dark);
        color: #fff;
    }

.btnAnimated.active {
    background-color: var(--color-brand-primary-dark);
    color: #fff;
    cursor: not-allowed !important;
}
/**/


/* Clear floats (clearfix hack) */
.btn-group:after {
    content: "";
    clear: both;
    display: table;
}

.btn-group .btnAnimated:not(:last-child) {
    border-right: none;
}

.btn-group .btnAnimated:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 15px;
}

.btn-group .btnAnimated:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 15px;
}

.sw-main .sw-container {
    overflow: visible !important;
    z-index: 99;
}

.paddingheader {
    padding-left: 15px !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.trip-type {
    background: var(--color-brand-secondary);
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    min-height: 40px;
    padding-top: 2px;
    font-weight: bold;
}

.borderhr {
    border-top: 1px solid black;
    margin-top: 5px;
    margin-bottom: 5px;
}

.fixed-table-container {
    border: none;
}

.border-1 {
    border: 1px solid #fff;
}

.noborder {
    border: none;
}

.btnPassenger {
  border: 1px solid #3c763d;
}

.uppercase, .uppercase input{
    text-transform: uppercase !important;
}

.sw-theme-arrows > ul.step-anchor > li {
    width: 20%;
}

@media screen and ( min-width: 768px) {
    .sw-theme-arrows > ul.step-anchor > li > a {
        height: 100px;
    }
}

@media screen and ( min-width: 1024px) {
    .sw-theme-arrows > ul.step-anchor > li > a {
        height: 60px;
        font-size: 90%;
    }
}

@media (max-width:768px) {
    .sw-theme-arrows > ul.step-anchor > li {
        width: 100%;
    }
}
