:root {
    --main-color: #000000;
    /*--border-color: rgb(159,170,161);*/
    --border-color: #a1a7aeb9;
    --bg-green: rgba(248, 165, 97, 0.2);
    --placeholder-regnum-color: #00000040;
    --white: #fff;
    --green: #ff5e29;
}
* {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Silka', Helvetica, sans-serif;
    color: var(--main-color);
    line-height: normal;
}
a {
    color: inherit; 
    text-decoration: none;
}
h1 {
	font-size: 36px;
	font-weight: 600;
	line-height: normal;
	display: block;
}
h2 {
	font-size: 34px;
	font-weight: 600;
	line-height: normal;
	display: block;
}
.sixteen-x-sixteen {
	width: 16px;
	height: 16px;
}

.step1 h1,
.step1 h2 {
	max-width: 460px;
}
.pointer-events-none {
	pointer-events: none;
}
.text-center {
	text-align: center;
}
.semi-bold {
	font-weight: 600;
}
.vmid {
	vertical-align: middle;
}
.top1px {
	position: relative;
    top: 1px;
}
.padding-30px {
	padding: 30px;
}
.w540px {
	max-width:540px;
}
.w100px {
	width: 100px;
}
.tel {
	height: 23px;
	white-space: nowrap;
}
.justify-content-space-between {
    justify-content: space-between;
}
.padding-right-25 {
    padding-right: 25px;
}
.seperator {
	border-bottom: 1px solid var(--border-color);
}
.hide-if-empty:empty {
	display: none;
}
.info-text {
	font-size: 14px;
	font-weight: 400;
}
.consent-text {
	font-size: 12px;
	font-weight: 400;
}
.consent-text a {
	text-decoration: underline;
}
.consent-text a:hover {
	text-decoration: none;
}


/* HEADER */
.header {
    height: 75px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6E9ED;
    position:fixed;
    width: 100%;
    z-index: 3;
}
header span {
    padding-left: 10px;
    font-size: 12px;
}
.circle {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--main-color);
    border-radius: 50%; 
    background-color: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
}
.menu {
	justify-content: space-between;
}
.menu img {
    width: 13px;
    height: 13px;
}
.logo {
    padding-left: 25px;
}
.logo img {
	width: 157px;
	height: 45px;
}
.close {
    opacity: 0.8;
}

.close:hover {
    opacity: 1;
}
.menu-item {
    opacity: 0.5;
}
.menu-item.menu-item-active {
    opacity: 1;
}
.menu-item.menu-item-active span {
	font-weight: 600;
}


/* MAIN */
.main {
	padding-top: 75px;
}
main .col-4 {
    line-height: 0;
}

main .teaser {
    height: calc(100vh - 75px);
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
.left-image-col {
	height: calc(100vh - 75px);
}
.left-image-col2 {
	background-image: url('/img/electr.jpg');
	background-size: cover;
}

.radio-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 14px;
}
.radio-wrapper {
	height: 60px;
	border-radius: 10px;
	border: 2px solid var(--border-color);
	display: flex;
	align-items: center;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.radio-wrapper:has(input:checked) {
	background-color: var(--bg-green);
	border: 2px solid var(--main-color);
}
/*
.radio-wrapper label {
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
}
.radio-wrapper:has(input:checked) label {
	font-weight: 600;
}
 */
 a.underline {
 	text-decoration: underline;
 }
 a.underline:hover {
	 text-decoration: none;
 }
 .font-size-13 {
 	font-size: 13px;
 }

 .radio-wrapper:has(input:checked) span {
 	font-weight: 600;
 }
.radio-wrapper input {
	margin: 0 10px 0 0;
	cursor: pointer;
  	/* Add if not using autoprefixer */
  	-webkit-appearance: none;
  	appearance: none;
  	/* For iOS < 15 to remove gradient background */
  	background-color: #fff;
  	width: 24px;
  	height: 24px;
  	min-width: 24px;
  	border: 1px solid var(--main-color);
  	border-radius: 50%;
  	position: relative;
}
.radio-wrapper input::before {
	transition: 120ms transform ease-in-out;
}
.radio-wrapper:has(input:checked) input::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 5px solid var(--main-color);
	top: 6px;
    left: 6px;
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 14px;
  	row-gap: 14px;
}
.grid-4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 14px;
  	row-gap: 14px;
}
.grid-4 > div {
	background-color: transparent;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.main-tag {
	border-radius: 20px;
	display: inline-block;
	border: 2px solid var(--main-color);
	display: inline-flex;
	align-items: center;
	padding: 6px 19px 6px 8px;
	margin-right: 8px;
	margin-bottom: 8px;
}
.main-tag::before {
	content: "";
	width: 20px;
  	height: 20px;
  	position: relative;
  	margin-right: 8px;
  	background: url('/img/add-copy.svg') center center no-repeat;
  	background-size: contain;
}
.main-tag span {
	font-size: 14px;
	font-weight: 500;
}
.secondary-tag-wrapper {
	width: 100%;
	min-height: 64px;
	background:rgb(211,239,218);
	padding: 3px 14px 14px 14px;
	border-radius: 10px;
}
.secondary-tag {
	border-radius: 20px;
	/*display: inline-block; */
	border: 2px solid transparent;
	display: inline-flex;
	align-items: center;
	background: var(--white);
	padding: 6px 19px 6px 8px;
	font-size: 14px;
	font-weight: 500;
	margin-right: 8px;
	position: relative;
	margin-top: 10px;
	text-transform: capitalize;
}
.secondary-tag::before {
	content: "";
	width: 20px;
  	height: 20px;
  	position: relative;
  	margin-right: 8px;
  	background: url('/img/add-copy-7.svg') center center no-repeat;
  	background-size: contain;
  	pointer-events: none;
}
.secondary-tag-wrapper .secondary-tag:last-child {
	margin-right: 0;
}
.secondary-tag span {
	pointer-events: none;
}

.grid-4 img {
    width: 50px;
    opacity: 0.8;
    pointer-events: none;
}
.grid-4 .insu-title {
    pointer-events: none;
}

.secondary-tag-wrapper input[type="checkbox"],
.grid-4 input[type="checkbox"] {
    cursor: pointer;
  	-webkit-appearance: none;
  	appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
    left: 0;
}
.grid-4 > div:has(.vscomp-wrapper.has-value),
.grid-4 > div:has(input[type="checkbox"]:checked) {
    background-color: var(--bg-green);
    border: 2px solid var(--main-color);
}
.grid-4 input[type="checkbox"]:checked + img {
	opacity: 1;
}
.secondary-tag:has(input[type="checkbox"]:checked) {
	border: 2px solid var(--main-color);
}
.secondary-tag:has(input[type="checkbox"]:checked)::before {
	background: url('/img/add-copy.svg') center center no-repeat;
  	background-size: contain;
}

#flere {
	max-width: 100%;
    height: 100%;
    display: block;
	position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
#forsikringer-se-flere {
	pointer-events: none;
}
.vscomp-wrapper {
	height: 100%;

}
.pop-comp-wrapper {
	min-width: 240px;
	border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.grid-4 > div .vscomp-wrapper.has-value {
	margin-left: -2px;
	margin-top: -1px;
}

/*
.grid-4 > div:has(.vscomp-wrapper.has-value) .pop-comp-wrapper {
	top: -1px;
	left: -1px;
}*/
.vscomp-options-container {
	min-width: 240px;
}
.vscomp-wrapper.has-clear-button .vscomp-toggle-button {
	height: 100%;
	border: none;
    background: transparent;
}
.vscomp-arrow {
	display: none;
}
.vscomp-wrapper.focused .vscomp-toggle-button,
.vscomp-wrapper:focus .vscomp-toggle-button {
	box-shadow: none;
}
.vscomp-clear-button,
.vscomp-value {
	opacity: 0;
}
.vscomp-wrapper .checkbox-icon::after {
	border: 1px solid var(--border-color);
	border-radius: 4px;
}
.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
	border-color: var(--green);
	border-left-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(0, 0, 0, 0);
    border-radius: 2px;
}
.vscomp-option.selected,
.vscomp-option.focused {
	background-color: var(--bg-green);
}


.car-zip-message {
    display: none;
    font-weight: 500;
    font-size: 23px;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
    background-color: #eef4ff;
    padding: 2rem 2rem;
    border-radius: 16px;
    height: auto;
    /*padding: 1.625rem 1.375rem;*/
    padding: 1.225rem 1.075rem;

    padding-left: 61px;
	line-height: 1.4;

}
.car-zip-message span {
    font-size: 16px;
    display: block;
    font-weight: 400;
}
.car-zip-message::before {
	content: '';
    background-image: url('/img/icon-info.svg');
    height: 26px;
    width: 26px;
    min-width: 26px;
    display: inline-block;
    margin-right: 1rem;
	top: 24px;
    position: absolute;
    left: 20px;
}


.icon-container {
	position: absolute;
    right: 27px;
    top: 45px;
	display:none;
	z-index: 4;
	height: 20px;
	width: 20px;
}
.input-spinner {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5.4s infinite;
}

@keyframes around {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}

.input-spinner::after, .input-spinner::before {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #333 #333 transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}

.input-spinner::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}





.grid-70-30 {
	display: grid;
  	grid-template-columns: 70% 30%;
  	grid-gap: 1%;
  	width: 100%;
  	z-index: 2;
	height: 100%;
}
.edit,
.elbil {
	margin-right: 10px;
}
.edit {
	font-size: 12px;
	font-weight: 500;
}
.step4 .edit {
	margin-right: 4px;
}

.form-wrapper {
	max-width: 676px;
	width: 100%;
	padding-top: 18vh;

}
.fields-wrapper {
	position: relative;
}
.fields-wrapper-confirm {
	border-radius: 10px;
	border: 1px solid var(--border-color);
}
.package-wrapper {
	position: relative;
}
.selected-package {
	z-index: 2;
}
#pakke {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
}
.step {
	display: none;
}
/*.step1 {
	display: block;
}*/
.package-label,
.step1 label {
	margin-bottom: 9px;
	font-weight: 600;
}

.selected-package-text {
	font-size: 14px;
	font-weight: 500;
}

select {
	  border: 1px solid var(--border-color);
    outline: none;
    box-shadow: none;
    border-radius: 10px;
    height: 54px;
    width: 100%;
    background-color: var(--white);
		padding: 2px 20px;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
.regnum-wrapper,
.readonly-input {
	border: 1px solid var(--border-color);
	outline: none;
	box-shadow: none;
	border-radius: 10px;
	height: 54px;
	/*display: inline-flex;
	align-items: center;*/
	width: 100%;
	background-color: var(--white);
}
.form-floating > .form-control,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"] {
	padding: 2px 20px;
}
.form-floating > label {
	padding: 18px 20px;
	font-weight: 500;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
	transform: scale(.85) translateY(-.5rem) translateX(6px);
}
.elbil {
	display: none;
}
body:has(input[value~="elbil"]) .readonly-input .elbil {
	display: inline;
}
.text-secondary2 {
	color: #777;
}

.regnum-wrapper,
input[type="text"].regnum,
.readonly-input {
	height: 60px;
}

.readonly-input {
	display: inline-flex;
	align-items: center;
	padding: 2px 23px;
}
.readonly-input img {
	width: 16px;
	height: auto;
}

.input-group-text,
input[type="text"].regnum {
	box-shadow: none !important;
	outline: none !important;
	background-color: transparent;
}

.regnum-error-wrapper {
	display: none;
	/*padding: 1.25rem 2.5rem;*/
	font-weight: 400;
    font-size: 16px;
    position: relative;
    background-color: #eef4ff;
    border-radius: 16px;
    height: auto;
    padding: 1.225rem 1.075rem;
    padding-left: 61px;
	line-height: 1.4;
}
.regnum-error-wrapper::before {
	content: '';
    background-image: url('/img/icon-info.svg');
    height: 26px;
    width: 26px;
    min-width: 26px;
    display: inline-block;
    margin-right: 1rem;
	top: 24px;
    position: absolute;
    left: 20px;
}
.regnum-error-wrapper a.goto {
	font-size: 1rem;
	display: inline-block;
	text-decoration: underline;
	margin: 0;
}
.step1mob a.goto {
	text-decoration: underline;
}

.input-group-text {
	padding-right: 0.90rem;
    padding-left: 0.90rem;
    background: rgb(70,117,179) center center no-repeat;
    background-image: url('/img/hubhus-nummerplade.svg');
    background-size: auto;
    color: transparent;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow:hidden;
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-right: 0;
}
input[type="text"].regnum {
	font-size: 24px;
	padding-left: 30px;
	border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: 0;
    text-transform: uppercase;
}
.regnum-wrapper {
	overflow:hidden;
	border: 0;
}
.regnum-wrapper:has(input[type="text"].regnum:focus) .input-group-text {
	border-left: 1px solid var(--main-color);
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.regnum-wrapper:has(input[type="text"].regnum:focus) input[type="text"].regnum {
	border-right: 1px solid var(--main-color);
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.regnum-wrapper:has(input[type="text"].regnum:focus) {
	outline: 1px solid var(--main-color);
}

input[type="text"]:not(.regnum):focus,
input[type="number"]:not(.regnum):focus,
input[type="tel"]:not(.regnum):focus,
input[type="email"]:not(.regnum):focus {
	border: 2px solid var(--main-color);
	outline: none;
	box-shadow: none;
}

input[type="email"]::placeholder {
	color: var(--placeholder-regnum-color);
}
input[type="number"]::placeholder {
	color: var(--placeholder-regnum-color);
}
input[type="text"]::placeholder {
	color: var(--placeholder-regnum-color);
}

input[type="submit"],
input[type="button"].goto {
	background-color: var(--main-color);
	width: 100%;
	max-width:330px;
	border-radius: 27px;
	height: 54px;
	color: var(--white);
	border: 1px solid var(--main-color);
	transition: all .3s;
}
/*
.step1 input[type="button"] {
	display: none;
}*/
/*
.step1:has(.vscomp-wrapper.has-value) input[type="button"].show,
.step1:has(input[type="checkbox"]:checked) input[type="button"].show {
    display: block;
}*/

.step1 input[type="button"] {
	width: 100%;
	max-width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*.step1 input[type="button"].show {
    display: block;
}*/

input[type="submit"] {
	display: block;
}
input[type="submit"].w-100 {
	max-width: 100%;
}

@media (hover: hover) {
	input[type="submit"]:hover,
	input[type="button"].goto:hover {
		background-color: var(--white);
		color: var(--main-color);
	}
}
a.goto {
	font-size: 14px;
	font-weight: 500;
	display: flex;
    align-items: center;
    margin: 0 1.75rem;
}
a.goto:hover {
	text-decoration: underline;
}


.vendor {
	display: grid;
	grid-template-columns: 1fr 1fr; /* 80px */
	grid-template-rows: 1fr;
	gap: 24px;
}


@media (max-width:1024px) {
	input[type="submit"].goto,
	input[type="button"].goto {
		max-width: 50%;
	}
    .position-fixed {
        position: relative !important;
    }
    .left-image-col {
        height: 300px;
    }
    .form-wrapper {
        padding-top: 3rem;
        max-width: 100%;
    }
    .menu-item span {
    	display:none;
    }
    .menu-item.menu-item-active span {
    	display:inline-block;
    }
    .logo {
    	padding-left: 0;
    }
    .padding-right-25 {
    	padding-right: 0;
    }
}

@media (max-width:768px) {
	:root {
		--bs-body-font-size: 15px;
	}
	.left-image-col2,
	.left-image-col3 {
		max-height: 192px;
	}
	body.step2 .left-image-col2,
	body.step3 .left-image-col2,
	body.step4 .left-image-col2,
	body.step2 .left-image-col3,
	body.step3 .left-image-col3,
	body.step4 .left-image-col3 {
		display: none;
	}
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 22px;
	}
	.header {
	    position: relative;
	    height: 65px;
	}
	.main {
		padding-top: 0;
	}
	.circle {
		display: none;
	}
    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .menu-item.menu-item-active span {
    	display:none;
    }
    .close span {
    	display: none;
    }
    .logo img {
		width: 120px;
		height: auto;
	}
	.step1 h1,
	.step1 h2 {
    	max-width: 280px;
	}
	.radio-wrapper {
		padding: 10px 13px;
		font-size: 13px;
	}
	.close img {
		width: 26px;
		height: 26px;
	}
	/*.radio-wrapper label {
		font-size: 13px;
	}*/
	.padding-30px {
		padding: 16px;
	}
	.step1 input[type="button"] {
		width: 100%;
		max-width: 100%;
	}
	.step1 a.goto {
		width: 100%;
    	max-width: 100%;
	}
	.step1mob {
		flex-direction: column-reverse;
	}
	.form-wrapper {
        padding-top: 1rem;
        max-width: 100%;
    }

	.form-floating > .form-control,
	input[type="text"],
	input[type="number"],
	input[type="email"],
	input[type="tel"] {
		padding: 2px 26px;
	}
	.form-floating > label {
		padding: 18px 16px;
	}
	.readonly-input {
		padding: 2px 16px;
	}
	.form-floating > .form-control, input[type="text"], input[type="number"], input[type="email"], input[type="tel"] {
		padding: 2px 18px;
	}
	/*a.goto {
		margin: 0.1rem;
	}*/
}

@media (min-width: 1510px) {
	.menu {
		justify-content: flex-start;
	}
	.menu-item {
		padding-right: 78px;
		white-space: nowrap;
	}
}
