/*
TERMS & CONDITIONS
This website is copyright protected and uses strict security protocols. Do not copy, drag or remove anything from this website or its source code.
https://virtualyard.com/terms-and-conditions for more information.
*/

/* Variables */
:root {
  --gray-offset: rgba(0, 0, 0, 0.03);
  --gray-border: rgba(0, 0, 0, 0.33);
  --gray-light: rgba(0, 0, 0, 0.4);
  --gray-mid: rgba(0, 0, 0, 0.7);
  --gray-dark: rgba(0, 0, 0, 0.9);
  --body-color: var(--gray-mid);
  --headline-color: var(--gray-dark);
  --accent-color: #0066f0;
  --error-color: red;
  --body-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 6px;
  --form-width: 343px;
  --color-main: #0a83e4;
  --color-main-border: #0a83e461;
  --color-input-bg: #f3f3f3;
  --color-black: #1d1d1f;
}

label,
input,
select,
textarea,
button {
    outline: none;
	 -moz-box-shadow: none !important;
	 -webkit-box-shadow: none !important;
	 box-shadow: none !important;
}

h1 {
	font-weight: 600;
}

a {
	color: var(--color-main);
}


.locked {
	pointer-events: none;
}

.btn-check:checked+.btn-pill badge {
    background: var(--color-main);
    color: #fff;
}

badge {
    background: #eee;
    line-height: normal;
    border-radius: 3px;
    font-size: 11px;
    padding: 2px 5px;
    font-weight: 500;
    display: block;
    max-width: fit-content;
	margin-top: -10px;
	position: absolute;
}


iframe.fulscreen-iframe {
	width: 100%;
	height: 70vh;
}

.drive-away-wrapper {
	position: fixed;
	bottom: -1px;
	width: 65%;
	display: flex;
	justify-content: center;
	z-index: 2;
}

.pricing-summary {
    width: 470px;
    border-radius: 14px 14px 0px 0px;
    background-color: rgba(240, 240, 240, 0.9);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
	
}

.total-price-disclaimer {
	font-size: 0.9rem;
    line-height: normal;
}

.text-muted {
	font-weight: 400;
}

.alert-secondary {
	color: #6c757d;
	border-color: var(--color-input-bg);
    background-color: var(--color-input-bg);
}


.bottom-footer {
	display: block; 
	height: 30vh;
}

.powered-by {
	height: 26px;
}


.optionTitle {
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.optionSubTitle {
	display: block;
    text-align: left;
    line-height: 0px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    margin-top: -3px;
}

.optionOptions {
	display: block;
    text-align: left;
    line-height: 0px;
    margin-bottom: 10px;
}


.modal {
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	opacity: 1;
}

.modal-body {
	padding-bottom: 60px;
	max-height: 70vh;
    overflow-y: scroll;
}

/*
.modal-body .row>* {
	padding:0px;
}
*/

body:not(.inventory) .modal-content .container-fluid {
	padding: 0px;
}

.modal-body ul, .modal-body ol {
	padding-left: 0rem;
}

body:not(.inventory) .modal-body ul, body:not(.inventory) .modal-body ol {
	padding-left: 1rem;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,50px);
}


.modal.show .modal-dialog {
    transform: none;
}

.modal-backdrop.show {
	opacity: 0.5;
	
}

#mainModal .modal-body:has(img) {
	padding-bottom: 1rem;
}

#mainModal .modal-body img {
	max-width: 100%;
}

#calculatorModal h6 {
	font-size: 2rem;
}


.btnLearnMore {
	display: block;
    text-align: left;
    line-height: 0px;
    margin-bottom: 10px;
}

.alert .btnNotice {
	display: block;
    text-align: left;
	line-height: normal;
    margin: 6px 0px 0px 0px;
	margin-bottom: 10px;
}


.no-margin {
	margin: 0px !important;
}

#main-nav {
	position: fixed;
	z-index: 999;
}

a {
	text-decoration: none;
	font-size: 14px;
    font-weight: 400;
	letter-spacing: -.016em;
}

.font-bold {
	font-weight: bold;
}

.font-smaller {
	font-size: 0.8em;
}

small.branding, small.branding a {
	font-size: 10px;
}

sup {
	font-size: 0.6em;
}

.hidden {
	display: none !important;	
}

.wizard {
	opacity: 0;
	height: 0px;
	overflow: hidden;
}

.wizard.active {
	
	transition: opacity 1.25s ease-in-out;
	-moz-transition: opacity 1.25s ease-in-out;
	-webkit-transition: opacity 1.25s ease-in-out;
	height: auto;
	opacity: 1;
}


.tab-group {
	opacity: 0;
	height: 0px;
	overflow: hidden;
}

.tab-group.active {
	
	transition: opacity 1.25s ease-in-out;
	-moz-transition: opacity 1.25s ease-in-out;
	-webkit-transition: opacity 1.25s ease-in-out;
	height: auto;
	opacity: 1;
	
}


.tab-group.vertical {

	transition: max-height 0.75s ease-in-out, opacity 1.25s ease-in-out;
	-moz-transition: max-height 0.75s ease-in-out, opacity 1.25s ease-in-out;
	-webkit-transition: max-height 0.75s ease-in-out, opacity 1.25s ease-in-out;

	
	height: auto;
	
	opacity: 0;
	max-height: 0px;
	overflow: hidden;
}

.tab-group.vertical.active {
	
	transition: max-height 1.25s ease-in-out, opacity 1.25s ease-in-out;
	-moz-transition: max-height 1.25s ease-in-out, opacity 1.25s ease-in-out;
	-webkit-transition: max-height 1.25s ease-in-out, opacity 1.25s ease-in-out;

	
	max-height: 768px;
	opacity: 1;
	
}


.btn-toggle {
	cursor: pointer;
}

.toggle-open {
	width: 30px;
    text-align: center;
    font-size: 30px;
    line-height: 20px;
}

.btn-toggle.active .toggle-open {
    font-size: 40px;
}

.toggle-group.vertical {

	transition: max-height 0.75s ease-in-out, opacity 1.25s ease-in-out;
	-moz-transition: max-height 0.75s ease-in-out, opacity 1.25s ease-in-out;
	-webkit-transition: max-height 0.75s ease-in-out, opacity 1.25s ease-in-out;


/*
	transition: max-height 0.35s ease-in-out;
	-moz-transition: max-height 0.35s ease-in-out;
	-webkit-transition: max-height 0.35s ease-in-out;
*/
	
	height: auto;
	opacity: 0;
	max-height: 0px;
	overflow: hidden;
}

.toggle-group.vertical.active {
	
	transition: max-height 1.25s ease-in-out, opacity 1.25s ease-in-out;
	-moz-transition: max-height 1.25s ease-in-out, opacity 1.25s ease-in-out;
	-webkit-transition: max-height 1.25s ease-in-out, opacity 1.25s ease-in-out;
	
/*
	transition: max-height 0.75s ease-in-out;
	-moz-transition: max-height 0.75s ease-in-out;
	-webkit-transition: max-height 0.75s ease-in-out;
*/

	max-height: 1500px;
	opacity: 1;
	
}


.form-floating>label {
	padding-left: 20px;
}

.form-floating>.form-control, .form-select {
	padding-left: 19px;
}

.form-select-lg, .form-control:not(.no-style), .form-select {
	border-radius: 40px;
	background-color: var(--color-input-bg);
}

.form-control.no-style {
	border: none;
	margin: 2px;
}

.card-atm {
	border-radius: 40px;
    padding: 8px 0px 8px 0px;
	background-color: var(--color-input-bg);
}

.card-atm input {
	border-radius: 40px;
	background-color: var(--color-input-bg);
}

.card-atm input:focus {
	background-color: var(--color-input-bg);
}

.btn-primary {
	background-color: var(--color-main);
	border-color: var(--color-main);
	border-radius: 40px;
    line-height: 40px;
	font-weight: 400;
}

.card {
	border: none;
	margin-top: 20px;
}

.card-padding {
	padding-left: 20px;
	padding-right: 20px;
}

.card-spacer {
	margin-top: 20vh;
}

.col-design {
	max-height: 100vh;
	overflow-y: scroll;
}

.btn-pill {
	width: 100%;
    border: 1px solid var(--gray-border);
    border-radius: 40px;
    line-height: 40px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 0.9em;
	padding: 8px 16px;
}


.btn-check:focus+.btn-secondary, .btn-secondary:focus {
	border: none;
}

.btn-check:active+.btn-pill, .btn-check:checked+.btn-pill, .btn-pill.active, .btn-pill:active, .show>.btn-pill.dropdown-toggle {
    border: 3px solid var(--color-main);
	padding: 6px 14px;
}

.btn-outline-primary {
	border-radius: 40px;
    line-height: 40px;
	border: 3px solid var(--color-black);
	color: var(--color-black);
	font-weight: 400;
}

.btn-block {
	width: 80px;
    height: 80px;
    line-height: 66px;
	border-color: #fff;
	background-color: #fff !important;
	padding: 0px;
	overflow: hidden;
	border-radius: 12px;
}

.btn-check:active+.btn-block, .btn-check:checked+.btn-block, .btn-block.active, .btn-block:active, .show>.btn-block.dropdown-toggle {
    border: 3px solid var(--color-main);
}

.btn-block:hover {
	background-color: var(--color-main);
	border-color: var(--color-main);
}

.btn-block img {
	width: 100%;
	border: 4px solid #fff;
	border-radius: 12px;
}

.btn-wheels {
	border-radius: 50%;
	background-color: #fff;
}

.white {
	
}

.blue {
	
}

.red {

}

.grey {
	
}

.btn-tab-frame {
	background-color: var(--color-input-bg);
	border-radius: 40px;
}

.btn-tab-frame.square {
	border-radius: 12px;
	background: #fff;
	gap: 8px;
}

.btn-tab-frame.inline {
	border-radius: 0;
	border-bottom: 1px solid var(--gray-border);
	gap: 0;
}

.btn-tabbed {
	width: 50%;
	border-radius: 40px;
	margin: 4px;
}

.btn-tabbed.square {
	border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--gray-border);
    margin: 0px;
    font-weight: bold;
    font-size: 0.9em;
    line-height: 40px;
}

.btn-check:checked+.btn-tabbed.square  {
	border: 3px solid var(--color-main);
	padding: 12px;
}

.btn-check:active+.btn-tabbed, .btn-check:checked+.btn-tabbed, .btn-tabbed.active, .btn-tabbed:active, .show>.btn-tabbed.dropdown-toggle {
    background-color: #fff;
    box-shadow: inset 0 0 0 0 transparent, 0 1px 8px 0 rgb(0 0 0 / 10%);
}

.btn-tabbed.square.inline {
	color: #6c757d;
	border: none;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	padding: .75rem .5rem;
	line-height: 1.5;
	font-weight: 400;
}

.btn-check:checked+.btn-tabbed.square.inline {
	color: #212529;
	border: none;
	border-bottom: 3px solid var(--color-main);
	margin-bottom: 0;
	padding: .75rem .5rem;
	margin-bottom: -1px;
}

.list-group-item {
	border: none;
	padding-left: 20px;
}


.card .dynamic-option-image {
	display: none;
}

.card-body {
	padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.card-title {
	margin-top: 20px;
}

.modal-header {
	border: none;
}

.btn-close {
	opacity: 1;
}

.btn-tab-frame input.form-control, .btn-tab-frame select {
	background: #fff;
	background-color: #fff;
}

.list-group-flush>.list-group-item {
	gap: 10px;
}

.text-underline {
	text-decoration: underline;
}

.no-scroll {
	overflow: hidden;
	padding: 0px;
}

.btnLearnMore.learn-icon {
	position: absolute;
    bottom: 4px;
    right: 4px;
    margin-bottom: 0;
    background: #000000b0;
    border-radius: 8px 0px 8px 0px;
    padding: .35rem;
    font-size: .9rem;
	z-index: 1;
}

.design-option .outOfStockMsg {
	position: absolute;
    bottom: 4px;
    right: 4px;
    margin-bottom: 0;
    background: #000000;
    border-radius: 8px 0px 8px 0px;
    padding: .35rem;
    font-size: .9rem;
    z-index: 1;
/*	pointer-events: all;*/
}

.design-option.outOfStock {
	opacity: .65;
}

.design-option.partOfPack {
	pointer-events: none;
}

.design-option.partOfPack .btnLearnMore {
	pointer-events: all;
}

.optionDetail small {
	font-weight: 300;
}

.comparison-rate {
	font-size: 1.25rem;
	margin-bottom: 0;
	font-weight: 500;
}

body:not(.inventory) .modal-body .popup-details ul.list-group {
	padding-left: 0;
	font-size: 90%;
}

@media only screen and (min-width: 993px) {
	.terms-adjuster {
		height: 325px;
		overflow-y: scroll;
	}
}

@media only screen and (max-width: 992px) {
	
/*
	.price-fill {
		height: 164.4px;
	}
*/
	
	.bottom-footer {
		height: 15vh;
    	margin-bottom: 12vh;
	}
	
	.drive-away-wrapper {
		width: 100%;
	}
	
	.modal-content {
		border: none;
	}

	.modal-content .row {
		--bs-gutter-x: 0;
	}
	
	body:not(.inventory) div:not(.modal-content) .row>* {
		padding-left: 0px;
		padding-right: 0px;
	}

	.card-body {
		padding-right: calc(var(--bs-gutter-x) * .75);
		padding-left: calc(var(--bs-gutter-x) * .75);
	}

	.card .dynamic-option-image {
		max-height: 30vh;
		display: block;
		width: 100%;
		object-fit: cover;
	}

  	.carousel-item, .carousel-item > img {
		height: 30vh;
	}
	
	.col-design {
		max-height: none;
	}
	
	.card-spacer {
		margin-top:4vh;
	}
	
	
	
	.carousel-control-next-icon, .carousel-control-prev-icon, .carousel-indicators [data-bs-target] {
		display: none;
	}


	#main-nav {
		position: relative;
	}
	
	
	.modal.fade .modal-dialog {
		transition: bottom .3s ease-out;
		left: 50%;
    	transform: translate(-50%, 0);
	}

	.modal-dialog-centered {
		bottom: -100vh;
		position: absolute;
		width: 100%;
		margin: 0;
		min-height: auto;
	}
	
	
	.modal.show .modal-dialog-centered {
		bottom: -2px;
		left: 50%;
    	transform: translate(-50%, 0);
	}
	
	.modal-content {
		border-radius: 25px 25px 0px 0px;
	}
	
	.automatic-ui .card-body:has(.learn-icon) .btn-block {
		min-width: 32.4%;
	}
	
	.btnLearnMore.learn-icon, .btnLearnMore.outOfStockMsg {
		padding: .55rem;
		font-size: 1.2rem;
	}
	
	#calculatorModal .btn-tabbed.inline {
		font-size: 0.8rem;
	}
}


@media only screen and (max-width: 600px) {
	.btn-block:hover {
		background-color: transparent;
		border-color: transparent;
	}
}
    


@media (min-width: 2200px) {
    .col-xxxl {
        flex:1 0 0%
    }

    .row-cols-xxxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxxl-0 {
        margin-left: 0
    }

    .offset-xxxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxxl-3 {
        margin-left: 25%
    }

    .offset-xxxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxxl-6 {
        margin-left: 50%
    }

    .offset-xxxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxxl-9 {
        margin-left: 75%
    }

    .offset-xxxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxxl-0,.gx-xxxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxxl-0,.gy-xxxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxxl-1,.gx-xxxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxxl-1,.gy-xxxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxxl-2,.gx-xxxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxxl-2,.gy-xxxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxxl-3,.gx-xxxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxxl-3,.gy-xxxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxxl-4,.gx-xxxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxxl-4,.gy-xxxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxxl-5,.gx-xxxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxxl-5,.gy-xxxl-5 {
        --bs-gutter-y: 3rem
    }
}


@media (min-width: 3000px) {
    .col-xxxxl {
        flex:1 0 0%
    }

    .row-cols-xxxxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxxxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxxxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxxxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxxxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxxxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxxxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxxxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxxxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxxxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxxxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxxxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxxxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxxxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxxxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxxxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxxxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxxxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxxxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxxxl-0 {
        margin-left: 0
    }

    .offset-xxxxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxxxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxxxl-3 {
        margin-left: 25%
    }

    .offset-xxxxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxxxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxxxl-6 {
        margin-left: 50%
    }

    .offset-xxxxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxxxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxxxl-9 {
        margin-left: 75%
    }

    .offset-xxxxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxxxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxxxl-0,.gx-xxxxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxxxl-0,.gy-xxxxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxxxl-1,.gx-xxxxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxxxl-1,.gy-xxxxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxxxl-2,.gx-xxxxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxxxl-2,.gy-xxxxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxxxl-3,.gx-xxxxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxxxl-3,.gy-xxxxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxxxl-4,.gx-xxxxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxxxl-4,.gy-xxxxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxxxl-5,.gx-xxxxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxxxl-5,.gy-xxxxl-5 {
        --bs-gutter-y: 3rem
    }
}
