/* $headings-font-family:        inherit !default; */
/* md
@no-stat

# Media queries (breakpoints)

We have a `media` mixin for make it easier to implement responsive styling via media queries.

You can nest them right within other blocks of CSS,which puts the properties and values you are changing right next
to each other.
That creates an obvious connection between them, which is a much nicer authoring experience than trying to maintain
those changes separated by tons of other code or in a different file.

## Configuration

**Site Layout Conception** details with examples you can find [here](https://confluence.ontrq.com/display/RSB/SFRA+-+Site+Layout+Conception)

`media` mixin works with `$media` map where `media-name: media query`

This is how `$media` map looks:

```scss
$media: (
    sm: 'screen and (max-width: 767px)',
    md: 'screen and (min-width: 768px) and (max-width: 1199px)',
    lg: 'screen and (min-width: 1200px)',
    xl: 'screen and (min-width: 1201px)',
    md-up: 'screen and (min-width: 768px)',
    md-down: 'screen and (max-width: 1023px)',
    lg-up: 'screen and (min-width: 1024px)',
    lg-down: 'screen and (max-width: 1367px)'
);
```

## Usage

Here is how to use `media()` mixin:

```scss
.b-block {
    // styles outside of a media query

    @include media(md-up) {
        // styles for "m" and "l" viewports
    };

    @include media(sm) {
        // styles for "s" viewports
    };
}
```

Simply edit this file and add your own media queries to `$media` map.

*/
.text-justify {
	text-align: justify !important;
}

@media (min-width: 568px) {
	.text-sm-justify {
		text-align: justify !important;
	}
}
@media (min-width: 768px) {
	.text-md-justify {
		text-align: justify !important;
	}
}
@media (min-width: 1024px) {
	.text-lg-justify {
		text-align: justify !important;
	}
}
@media (min-width: 1240px) {
	.text-lgm-justify {
		text-align: justify !important;
	}
}
@media (min-width: 1465px) {
	.text-xl-justify {
		text-align: justify !important;
	}
}
@-webkit-keyframes fade-in {
	from {
		opacity: 0;
		visibility: hidden;
	}
	to {
		opacity: 1;
		visibility: visible;
	}
}
@keyframes fade-in {
	from {
		opacity: 0;
		visibility: hidden;
	}
	to {
		opacity: 1;
		visibility: visible;
	}
}
@media (min-width: 1024px) {
	.services {
		padding: 0 40px;
	}
}
.services.m-checkout {
	padding: 0;
}
.services-quantity {
	display: flex;
}
.services-title {
	display: flex;
	font-size: 16px;
	padding: 20px 0 0;
}
@media (min-width: 1024px) {
	.services-title {
		justify-content: space-between;
		padding: 40px 0 0;
	}
}
.m-checkout .services-title {
	font-size: 24px;
	margin-bottom: 0;
	padding-top: 20px;
}
.services-title-totalprice {
	min-width: 86px;
}
.services-title + .services-item {
	margin-top: 20px;
}

.services-item {
	border-top: 1px solid #dee2e6;
	padding: 30px 0;
}
.m-checkout .services-item {
	padding: 20px 0;
}
.services-item.m-unavailable {
	border-color: #b00837;
}
.services-item.m-unavailable + .services-item {
	border-color: #b00837;
}
.m-checkout .services-item:first-child {
	border-top: none;
}
.services-item:last-child.m-unavailable {
	border-bottom: 1px solid #b00837;
}
.services-item-attributes {
	position: relative;
	flex: 1;
}
.services-item-header {
	margin-bottom: 20px;
}
.m-checkout .services-item-header {
	margin-bottom: 25px;
}
@media (max-width: 1023.98px) {
	.services-item-header-desktop {
		display: none;
	}
}
@media (min-width: 1024px) {
	.services-item-header-mobile {
		display: none;
	}
}
.services-item-header-mobile .services-item-brand {
	display: none;
}
.services-item-brand {
	color: #9f9593;
	margin-bottom: 12px;
}
.m-checkout .services-item-brand {
	margin-bottom: 6px;
}
.theme-marhaba .services-item-brand {
	text-transform: lowercase;
}
.services-item-name {
	color: #2d2423;
	font-size: 16px;
	margin-bottom: 26px;
	text-decoration: underline;
}
.m-checkout .services-item-name {
	font-size: 18px;
}
.services-item-link-more {
	align-self: flex-end;
	margin-bottom: 10px;
	margin-left: 10px;
	white-space: nowrap;
}
.services-item-mobile-price-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top: 8px;
	line-height: 20px;
}
@media (min-width: 1024px) {
	.services-item-mobile-price-wrap {
		display: none;
	}
}
.services-item-price {
	color: #000;
	flex: 1;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	text-align: right;
}
@media (min-width: 1024px) {
	.services-item-price {
		margin-right: 0;
	}
	.m-unavailable .services-item-price {
		opacity: 0.5;
	}
}
.services-item-price .order-billing-price {
	display: inline-block;
	min-width: 86px;
	text-align: left;
	white-space: nowrap;
}
@media (min-width: 1024px) {
	.services-item-price .order-billing-price {
		margin-left: 15px;
		text-align: right;
	}
}
.m-checkout .services-item-price .order-billing-price {
	margin-left: 0;
}
.services-item-price .order-billing-non-adjusted-price {
	color: #cac0b6;
	margin-right: 15px;
	text-decoration: line-through;
	white-space: nowrap;
}
@media (min-width: 1024px) {
	.services-item-price .order-billing-non-adjusted-price {
		margin-right: 0;
	}
}
.m-checkout .services-item-price .order-billing-non-adjusted-price {
	margin-right: 15px;
}
.services-item-price-total {
	display: flex;
	flex-flow: row-reverse;
	justify-content: flex-end;
}
@media (min-width: 1024px) {
	.services-item-price-total {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}
.m-checkout .services-item-price-total {
	flex-wrap: wrap;
	justify-content: flex-end;
}
.services-item-image {
	margin-bottom: 25px;
	margin-right: 20px;
	width: 100px;
}
.services-item-passengers {
	margin-bottom: 8px;
}
.m-checkout .services-item-passengers {
	margin-bottom: 0;
}
.services-item-edit-passengers {
	margin-bottom: 18px;
	display: none;
}
.m-cart .services-item-edit-passengers {
	display: block;
}
.m-checkout .services-item-edit-passengers, .order-confirmation .services-item-edit-passengers {
	display: none;
}
.services-item-edit-passengers-actions {
	margin: 0 -4px;
}
@media (min-width: 1024px) {
	.services-item-edit-passengers-actions {
		position: relative;
		right: -84px;
		top: 0px;
		justify-content: right;
	}
}
@media (max-width: 1239.98px) {
	.services-item-edit-passengers-actions {
		justify-content: space-between;
		margin-top: 16px;
	}
}
.services-item-edit-passengers-action {
	padding: 0 4px;
}
@media (max-width: 1239.98px) {
	.services-item-edit-passengers-action {
		flex-grow: 1;
	}
}
.services-item-edit-passengers-block {
	margin: 24px 12px;
}
@media (max-width: 1023.98px) {
	.services-item-edit-passengers-block .passengerscountblock-init {
		justify-content: space-around;
	}
}
@media (min-width: 1024px) {
	.services-item-edit-passengers-block .quantity {
		margin-right: 10%;
	}
}
.services-item-edit-passengers-block .chauffeur-service .quantity {
	margin-right: 0;
	width: calc(25% - 10px);
}
.services-item-edit-passengers-block .chauffeur-service .quantity .quantity-label-sub {
	padding-right: initial;
}
.services-item-edit-passengers-block .chauffeur-service .quantity-label span {
	line-height: 1.2;
	display: block;
}
.services-item-edit-passengers-block .chauffeur-service .quantity:not(:last-child) {
	padding-right: 10px;
}
.services-item-service {
	margin-bottom: 10px;
}
.services-item-additional-services {
	padding-bottom: 0;
}
.services-item-additional-services li hr {
	display: none;
}
.services-item-additional-services li + li hr {
	display: block;
	width: 115%;
}
.m-checkout .services-item-additional-services li + li hr {
	width: 100%;
}
@media (max-width: 1023.98px) {
	.services-item-additional-services li + li hr {
		width: 100%;
	}
}
@media (max-width: 1023.98px) {
	.services-item-actions {
		margin: 20px 0;
	}
}
@media (min-width: 1024px) {
	.services-item-actions.hidden {
		display: block !important;
		opacity: 0;
		visibility: hidden;
	}
}
@media (max-width: 1023.98px) {
	.services-item-edit {
		min-width: 120px;
	}
}
@media (min-width: 1024px) {
	.services-item-edit {
		margin-bottom: 20px;
		margin-top: 10px;
	}
}
@media (max-width: 1023.98px) {
	.services-item-message {
		margin-bottom: 10px;
	}
}
@media (min-width: 1024px) {
	.m-unavailable .services-item-message {
		opacity: 0.5;
	}
}
.m-checkout .services-item-message {
	margin-top: 15px;
}
.services-item-info {
	flex: 1;
}
.m-unavailable .services-item-info {
	opacity: 0.5;
}
@media (max-width: 1239.98px) {
	.services-item-info-top {
		display: flex;
		flex-flow: row nowrap;
	}
}
.services-item-booking {
	font-size: 16px;
}
.services-item-booking-label {
	color: #9f9593;
}
.services-item-error {
	color: #de422d;
	display: none;
	margin-bottom: 20px;
}
.m-unavailable .services-item-error {
	display: block;
}
.services-item-included {
	padding-left: 0;
}
.services-item-included::before {
	content: none;
}
.services-item-chauffeur {
	margin-right: 50px;
}
.services-item-chauffeur-info {
	margin-left: -30px;
}
.services-item-chauffeur-price {
	position: absolute;
	right: -80px;
	top: 0;
}
@media (max-width: 1023.98px) {
	.services-item-chauffeur-price {
		position: static;
		right: 0;
		margin-left: -30px;
	}
}
.m-checkout .services-item-chauffeur-price {
	position: static;
	right: 0;
	margin-left: -30px;
}

.opposite-service-button {
	margin-top: 45px;
}

.order-summary {
	background: #f2f1f1;
	padding: 0;
}
.order-summary.m-checkout {
	background: none;
	padding: 20px 22px;
}
.order-summary-in {
	padding: 30px 30px 5px;
}
@media (min-width: 1024px) {
	.order-summary-in {
		padding: 36px 36px 11px;
	}
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
	.order-summary-in {
		position: -webkit-sticky;
		position: sticky;
		top: 90px;
	}
}
.order-summary-header {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
	margin-bottom: 22px;
}
.order-summary-title {
	font-family: "DINNextLTPro", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-size: 22px;
	margin-bottom: 25px;
}
.order-summary-edit-cart {
	color: #4a4a4a;
	text-decoration: underline;
}
.order-summary-row {
	color: #4a4a4a;
	display: flex;
	font-size: 16px;
	justify-content: space-between;
}
.order-summary-row.hide-order-discount {
	display: none;
}
.order-summary-subtotal {
	color: #2d2423;
	font-weight: 500;
}
.order-summary-total {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 25px;
}
.order-summary-total-label {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
}
.order-summary-total-label span {
	color: #766a65;
	font-size: 12px;
}
.order-summary-total-value {
	font-size: 22px;
	white-space: nowrap;
}
.order-summary-total .tooltip {
	text-align: justify;
}
.order-summary-discount-label {
	display: inline-block;
	margin-right: 8px;
}
.order-summary-discount-label.m-highlighted {
	color: #329b32;
	font-size: 12px;
	font-weight: 500;
}
.order-summary-discount-label.coupon-text {
	color: #766a65;
	font-size: 12px;
	font-weight: 500;
}
.order-summary-discount-value {
	margin-left: 10px;
	white-space: nowrap;
}
.order-summary-coupon {
	display: inline-block;
	margin-bottom: 10px;
}
.order-summary-coupon-block {
	margin-bottom: 15px;
}
.order-summary-coupon-code {
	margin-bottom: 25px;
}
.order-summary-coupon-applied {
	background: rgba(0, 121, 52, 0.1);
	border-radius: 5px;
	font-size: 13px;
	margin-bottom: 10px;
	padding: 11px 5px;
}
.order-summary-coupon-applied span {
	font-weight: 500;
}
.order-summary-currency-description {
	color: #766a65;
	margin-bottom: 24px;
	margin-top: -14px;
	text-align: center;
}
.order-summary-buttons {
	margin-bottom: 25px;
}
@media (max-width: 767.98px) {
	.order-summary-buttons {
		background: #f2f1f1;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0;
		padding: 15px 30px;
		z-index: 2;
	}
}
.order-summary-approaching-discounts {
	margin-bottom: 25px;
}
.order-summary .m-muted {
	color: #9f9593;
}
.order-summary .order-discount-promo-notice {
	color: #329b32;
	font-size: 12px;
	margin: 0 5px;
	white-space: pre-wrap;
}
@media (min-width: 1024px) {
	.order-summary .order-discount-promo-notice {
		display: block;
		margin: 5px 0 0;
	}
}
.order-summary .order-discount-total {
	white-space: nowrap;
}

.cart-main {
	position: relative;
	margin-bottom: 50px;
}
.cart-main::before {
	content: "";
	position: absolute;
	left: calc(50% - (50vw - 20px));
	width: calc(100vw - 40px);
	height: 1px;
	color: #f2f1f1;
	background-color: currentColor;
	-webkit-box-shadow: 50vw 0 0 currentColor, -50vw 0 0 currentColor;
	        box-shadow: 50vw 0 0 currentColor, -50vw 0 0 currentColor;
	bottom: 0;
}
@media (min-width: 568px) {
	.cart-main {
		margin-bottom: 60px;
	}
}
.cart-banner {
	margin-bottom: 15px;
}
@media (min-width: 1024px) {
	.cart-banner {
		margin-bottom: 40px;
	}
}
.cart-error .alert-danger {
	padding: 14px;
}
.cart-empty {
	padding-top: 20px;
}
@media (min-width: 1024px) {
	.cart-empty {
		padding-top: 60px;
	}
}
.cart-empty-image {
	margin-bottom: 50px;
}
.cart-empty-msg {
	color: #2d2423;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 25px;
}
.cart-empty-hr {
	margin-top: 0;
}
.cart-empty .continue-shopping-link {
	display: inline-block;
	margin-bottom: 60px;
}
@media (min-width: 1024px) {
	.cart-empty .continue-shopping-link {
		margin-bottom: 100px;
	}
}
.cart-support {
	color: #766a65;
	margin-bottom: 25px;
}
.cart-support-msg {
	margin-bottom: 5px;
}
.cart-support-phone-number {
	color: #766a65;
	font-size: 16px;
}
/*# sourceMappingURL=cart.css.map */
