/* DT STYLE */
/* inputs and widgets */
#cruises label {
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
}
#cruises .input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 30px;
    padding: 6px 10px;
    border: 1px solid #b5b5b5;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: none;
    color: #666666;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
}

#cruises .input.select {
    position: relative;
    background: #fff url(../render/cruises/img/icons/select-arrow.svg) no-repeat 95% center;
}

#cruises .input.select select,
#cruises .input input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    display: block;
    position: relative;
    z-index: 5;
    width: calc(100% + 20px);
    height: 30px;
    padding: 6px 10px;
    margin: -6px -30px -6px -10px;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
}

#cruises .input.date {
    background: #fff url(../render/cruises/img/icons/calendar.svg) no-repeat 95% center / 18px auto;
}

#cruises .input.checkbox {
    position: relative;
    border: none;
    padding: 0px;
    margin: 0px;
    height: auto;
    background: none;
    box-shadow: none;
}

#cruises .form-bg form label {
	margin-bottom: 0px;
}

#cruises .input.checkbox input {
    position: absolute;
    width: auto;
    display: inline;
    opacity: 0;
}

#cruises .input.checkbox label {
    position: relative;
    padding-left: 20px;
    font-weight: normal;
    color: #666666;
    white-space: nowrap;
}

#cruises .input.checkbox label:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 12px;
    width: 12px;
    font-size: 9px;
    line-height: 12px;
    border-radius: 3px;
    border: 1px solid #b5b5b5;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: normal;
}

#cruises .input.checkbox input:checked + label:before {
    content: "âœ”";
}

#cruises input.search {
    background: url(../render/cruises/img/icons/search.svg) no-repeat calc(100% - 10px) center / 18px;
}

#cruises label .input {
    margin-top: 5px;
}

#cruises .inputs {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* margin-top: 5px; */
}

#cruises .inputs .input,
#cruises .inputs label {
    display: block;
    flex-grow: 1;
}

#cruises .inputs .input + .input,
#cruises .inputs label + label,
#cruises .inputs .input + label,
#cruises .inputs label + .input {
    margin-left: 15px;
}

#cruises .radio-buttons,
#cruises .checkboxes {
    margin-top: 5px;
    white-space: nowrap;
}

#cruises .radio-buttons .input,
#cruises .checkboxes .input {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    border: none;
    margin-right: 20px;
}

#cruises .radio-buttons input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

#cruises .radio-buttons .radio-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: normal;
    padding-left: 20px;
    white-space: nowrap;
}

#cruises .radio-buttons .radio-label:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #b5b5b5;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #ffffff;
}

#cruises .radio-buttons input:checked + .radio-label:before {
    border: 4px solid #3a99fc;
}

#cruises .button {
    display: inline-block;
    border: 1px solid #104b90;
    border-radius: 5px;
    background-color: #4579b6;
    padding: 12px 30px;
    text-align: center;
    color: #ffffff;
    font-family: Arial;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

#cruises .button.red {
    border: 1px solid #961b20;
    border-radius: 3px;
    background: linear-gradient(180deg, #bc2525 0%, #a41515 100%);
    box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
}

#cruises .tooltip {
    position: relative;
    vertical-align: middle;
    margin: 0px 5px;
}

#cruises .tooltip .tooltip-icon {
    color: #104b90;
    font-size: 16px;
    vertical-align: middle;
    user-select: none;
}

#cruises .tooltip .tooltip-content {
    position: absolute;
    top: calc(100% + 10px);
    left: -28px;
    border: 1px solid #104b90;
    border-radius: 3px;
    padding: 10px 15px;
    background-color: #e2edfe;
    color: #104b90;
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

#cruises tooltip .tooltip-content:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: -6px;
    left: 30px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #104b90;
    border-left: 1px solid #104b90;
    background-color: #e2edfe;
    transform: rotate(45deg);
}

#cruises .tooltip .tooltip-content[aria-hidden="true"] {
    display: none;
}

/* layout stuff */

#cruises .cruises {
    color: #666666;
    font-family: Arial;
    font-size: 16px;
    line-height: 20px;
}

#cruises .wrap {
    box-sizing: border-box;
    width: 100%;
    padding: 30px calc((100% - 1300px) / 2);
}

@media (max-width: 1200px) {
    #cruises .wrap {
        padding: 30px;
    }
}

#cruises .cruises h2 {
    color: #104b90;
    font-size: 28px;
    line-height: 32px;
    font-weight: normal;
}

#cruises .cruises h2 img {
    max-width: 115px;
    float: right;
    margin-left: 15px;
}

#cruises .cruises h3 {
    color: #104b90;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}

#cruises .cruises h3 .sub-text {
    color: #666666;
    font-family: Arial;
    font-size: 18px;
    line-height: 30px;
    font-weight: normal;
}

#cruises h3 .button {
    float: right;
}

#cruises .cruises h4 {
    color: #104b90;
    font-size: 18px;
    line-height: 22px;
    font-weight: normal;
}

/* banner */

/* #cruises .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
} */
#dt-cruise {
	float:left;
}

#cruises .wrapper fieldset {
    box-sizing: border-box;
    max-width: 60%;
    font-size: 14px;
    line-height: 16px;
    color: #666666;

}


@media (max-width: 1100px){

    #cruises .wrapper fieldset {
        max-width: 100%;
    }

}


#cruises .wrapper fieldset ul {
    margin-top: 20px;
    margin-right: -35px;
    margin-bottom: -20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
}

#cruises .wrapper fieldset li {
    width: calc(33.33333% - 1px);
    margin-right: 30px;
    margin-bottom: 20px;
}

#cruises .wrapper fieldset li.controls {
    text-align: right;
}

@media (min-width: 768px) {
    #cruises .wrapper .cruise-cabin-type,
    #cruises .wrapper .cruise-occupancy,
    #cruises .wrapper .controls {
        margin-right: none;
        width: 170px;
    }
/*     #cruises .wrapper .cruise-duration,
    #cruises .wrapper .cruise-departure-dates {
        flex-grow: 1;
    } */
    #cruises .wrapper fieldset li:last-child {
        margin-left: 36%;
    }
}

@media (max-width: 1400px) {
    #cruises .wrap {
        padding-left: 50px;
        padding-right: 50px;
    }
	#cruises .wrapper .controls {
		max-width:150px;
	}
	#cruises .wrapper fieldset li {
		width: calc(30% - 1px) !important;
		margin-right: 15px !important;
		margin-bottom: 20px;
	}
	#cruises .wrapper fieldset li.cruise-departure-dates, #cruises .wrapper fieldset li.cruise-duration {
		max-width:230px !important;
	}
	
}

#cruises .wrapper .cruise-sort-by,
#cruises .wrapper .cruise-optional-features {
    align-self: flex-start;
}

/* #cruises .wrapper .cruise-line,
#cruises .wrapper .cruise-ship-size {
    display: none;
} */
#cruises .wrapper aside {
    flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    -width: 350px;
    -min-height: 200px;
    margin-left: 80px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 1280px) {
    #cruises .wrapper aside {
        display: none;
    }
	#cruises .wrapper .controls {
		max-width:120px;
	}
}

#cruises input.search {
    background: url(../render/cruises/img/icons/search.svg) no-repeat calc(100% - 10px) center / 18px;
}
#cruises label.halfDisp {
    min-width: 42%;
}

#cruises label.halfDisp div.max-price {
    width: 64px !important;
}

#cruises label.halfDisp a.button {
    width: 58px !important;
}

#cruise-line-overlay div.filters a.size-filter.selected {
    border: 1px solid #4a90e2 !important;
}
.overlay li.filtered,
.overlay-container .overlay .columns div.group.filtered,
#cruise-line-overlay li.size-hidden {
    display: none;
}

#cruise-line-overlay.overlay li.filtered.filter-override {
    display: block;
}

body.show-overlay {
    overflow: hidden;
    margin-right: 16px;
}

.overlay-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    max-height: 0;
    z-index: 4100;
    overflow: hidden;
    transition: max-height 0ms 250ms;

}

.overlay-container.centered-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlay-container.centered-overlay table {
    width: 100%;
}

.overlay-container.show {
    max-height: 100%;
    transition: max-height 0ms 0ms;
}

.overlay-container .blackout {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 125ms 125ms;
}

.overlay-container.show .blackout {
    opacity: 1;
    transition-delay: 0ms;
}

.overlay-container .overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    max-width: 960px;
    height: 100%;
    background-color: #f5f5f5;
    transform: translateX(100%);
    transition: transform 125ms;
}

.overlay-container.show .overlay {
    transform: none;
    transition-delay: 125ms;
}

.overlay-container.show .overlay.scroll {
    overflow: scroll;
}

.overlay-container.centered-overlay .overlay {
    position: relative;
    z-index: 100;
    top: 0;
    left: 0;
    width: 766px;
    height: 346px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(25%);
    transition: transform 125ms, opacity 125ms;
}

.overlay-container.centered-overlay.show .overlay {
    opacity: 1;
    transform: none;
}

.overlay-container.centered-overlay .close-overlay {
    display: inline-block;
    position: absolute;
    top: -20px;
    right: 0px;
    padding-right: 20px;
    color: #ffffff;
    background: url(../img/icons/close.svg) no-repeat right center / auto 100%;
    font-family: Arial;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
}

.overlay-container .overlay .header {
    position: relative;
    padding: 20px;
    background-color: #008286;
    color: #b2d7d9;
    font-family: Arial;
    font-size: 16px;
    line-height: 18px;
}

.overlay-container .overlay .header h2 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 20px;
    line-height: 18px;
    font-weight: normal;
}

.overlay-container .overlay .header .close-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 80px;
    height: 100%;
    cursor: pointer;
    background: url(../img/icons/close.svg) no-repeat center / 30px;
}

.overlay-container .overlay .filters {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #d4d4d4;
}

.overlay-container .overlay .filters input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 40px;
    width: auto;
    min-width: 285px;
    max-width: 370px;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0px 15px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
    color: #666666;
    font-family: Arial;
    font-size: 14px;
    font-style: italic;
    line-height: 16px;
}

.overlay-container .overlay .filters .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    border: 1px solid #d4d4d4;
    margin-left: 10px;
    border-radius: 2px;
    color: #4a90e2;
    font-family: Arial;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
    background: linear-gradient(180deg, #fbfbfb 0%, #f6f6f6 100%);
    white-space: nowrap;
}

.overlay-container .overlay .filters .button.less-padding {
    padding: 0px 12px;
    margin-left: 5px;
}

.overlay-container .overlay .filters .button.less-padding.no-ships {
    color: #d4d4d4;
}

.overlay-container .overlay .filters .button.red {
    color: #ffffff;
    font-family: Arial;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    border: 1px solid #961b20;
    border-radius: 3px;
    background: linear-gradient(180deg, #bc2525 0%, #a41515 100%);
    box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
}

.overlay-container .overlay fieldset {
    padding: 10px 20px;
}

.overlay-container .overlay .columns {
    columns: 3 auto;
}

.overlay-container .overlay .columns.one-column {
    columns: 1 auto;
}
.overlay-container.show div.overlay.scroll fieldset div.columns.two-column {
    columns: 2 auto;
}

.overlay-container .overlay fieldset .group {
    border: 1px solid #d4d4d4;
    background-color: #ffffff;
    color: #666666;
    font-family: Arial;
    font-size: 14px;
    line-height: 22px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.overlay-container .overlay fieldset .group + .group {
    margin-top: 10px;
}

.overlay-container .overlay fieldset .group-header {
    padding: 12px 15px;
    border-bottom: 1px solid #d4d4d4;
    background-color: #e7f1ff;
}

.overlay-container .overlay fieldset .group-header label {
    font-weight: bold;
}

.overlay-container .overlay fieldset ul {
    padding: 12px 15px;
}

.overlay-container .overlay fieldset li + li {
    margin-top: 5px;
}

/* END DT STYLE */

@media (max-width: 767px) {

	.cruises-tab {
		color: #666666;
		font-family: Arial;
		font-size: 14px;
		line-height: 20px;
	}

	.cruises-tab .form-bg {
		padding: 10px;
		font-size: 14px;
		line-height: 18px;
		background: #FFF;
	}

	.cruises-tab .form-bg form {
		padding: 0;
	}

	.cruises-tab .form-bg ul {
		margin: 0 -10px 0 0;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-wrap: wrap;
	}

	.cruises-tab .form-bg li {
		width: calc(33.33333% - 30px);
		padding: 0;
	}

	.cruises-tab .form-bg li {
		width: calc(50% - 10px);
		margin-right: 10px;
		margin-bottom: 10px;
	}
	.cruises-tab .form-bg .cruise-destination,
	.cruises-tab .form-bg .cruise-duration,
	.cruises-tab .form-bg .cruise-departure-dates,
	.cruises-tab .form-bg .controls {
		width: 100%;
	}
	.cruises-tab .form-bg .cruise-sort-by,
	.cruises-tab .form-bg .cruise-optional-features,
	.cruises-tab .form-bg .cruise-ship-line-preference {
		display: none;
	}
	.cruises-tab .form-bg .cruise-destination {
		order: 1;
	}
	.cruises-tab .form-bg .cruise-line,
	.cruises-tab .form-bg .cruise-ship-size {
		display: list-item;
	}
	.cruises-tab .form-bg .cruise-line {
		order: 2;
	}
	.cruises-tab .form-bg .cruise-ship-size {
		order: 3;
	}
	.cruises-tab .form-bg .cruise-cabin-type {
		order: 4;
	}
	.cruises-tab .form-bg .cruise-duration {
		order: 5;
	}
	.cruises-tab .form-bg .cruise-departure-dates {
		order: 6;
	}
	.cruises-tab .form-bg .cruise-cabin-type {
		order: 7;
	}
	.cruises-tab .form-bg .cruise-occupancy {
		order: 8;
	}

	.cruises-tab .form-bg .inputs {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: nowrap;
		margin-top: 5px;
	}

	.cruises-tab .form-bg .inputs .input,
	.cruises-tab .form-bg .inputs label {
		display: block;
		flex-grow: 1;
		flex-shrink: 1;
	}

	.cruises-tab .form-bg .inputs .input + .input,
	.cruises-tab .form-bg .inputs label + label,
	.cruises-tab .form-bg .inputs .input + label,
	.cruises-tab .form-bg .inputs label + .input {
		margin-left: 15px;
	}

	.cruises-tab .form-bg .input:before {
		background: #2a51a1;
		border: 1px solid #2a51a1;
	}

	.cruises-tab .form-bg .input.date {
		padding-right: 0;
	}

	.cruises-tab .form-bg .input.date .input.date {
		margin-top: 0;
	}

	.cruises-tab .form-bg .controls {
		order: 9;
		margin-top: 5px;
	}
	.cruises-tab .form-bg .controls .button {
		width: 100%;
		padding: 16px 30px;
	}

	.cruises-tab .form-bg .button {
		  margin-top: 10px;
		width: 100%;
		padding: 15px;
		background: #9f0b16;
		border: 1px solid #930a15;
		font-weight: 700;
		text-align: center;
		line-height: 16px;
		box-shadow: inset 2px 2px 0 0 rgba(255,255,255,.16);
	}

	.cruises-tab .cruise-pricing {
		padding: 10px;
		margin: 0;
		display: block;
		width: auto;
	}

	.cruises-tab .cruise-pricing + .cruise-pricing {
		padding-top: 0px;
	}

	.cruises-tab .cruise-pricing .lead-in-text {
		margin-bottom: 5px;
	}

	.cruises-tab .cruise-pricing li {
		font: bold 14px/40px arial;
		display: block;
		margin-bottom: -1px;
		box-sizing: border-box;
		border: 1px solid #eaeef1;
		background: #FFF;
	}

	.cruises-tab .cruise-pricing li a {
		padding: 0 10px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-decoration: none;
		color: #666;
		transition: padding .2s, color .2s;
	}

	.cruises-tab .cruise-pricing li a .price {
		margin-left: auto;
		font: bold 16px/40px arial;
		color: #c72c2c;
	}

	.cruises-tab .cruise-pricing li.heading {
		padding: 0 10px;
	}

	.cruises-tab .cruise-pricing li.indent a {
		padding: 0px 10px 0 20px;
		font-weight: normal;
	}
}