﻿@charset "utf-8";
@font-face {
    font-family: 'EuclidCircularB';
    src: url('fonts/EuclidCircularB-Light-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularB-Light-WebS.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'EuclidCircularB';
    src: url('fonts/EuclidCircularB-Regular-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularB-Regular-WebS.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'EuclidCircularB';
    src: url('fonts/EuclidCircularB-Medium-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularB-Medium-WebS.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'EuclidCircularB';
    src: url('fonts/EuclidCircularB-Semibold-WebS.woff2') format('woff2'),
        url('fonts/EuclidCircularB-Semibold-WebS.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root {
  --color-orange-objects: var(--color-orange-objects);
  --color-orange-text: #E04A09;
  --color-white: #FFFFFF;
  --color-black: #1C1F2A;
}
html {
	font-size: 10px;
}

body {
	font-size: 1.4rem;
	font-family: 'EuclidCircularB', sans-serif;
	font-weight: 300;
	background: var(--color-white);
	color: var(--color-black);
	overflow-x: hidden;
}

a {
	color: #fff;
	text-decoration: none;
	transition: all 250ms ease-in-out;
}

a:hover {
	text-decoration: none;
	color: var(--color-orange-text);
}

a:focus {
	outline: none;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

img {
	width: 100%;
	max-width: 100%;
}
.clearfix{
	clear: both;
}
input[type='text'],
input[type='number'],
input[type='password'],
button,
textarea,
select,
option,
img,
.item {
	outline: none;
	box-shadow: none !important;
}

.btn {
	background: #d82b87;
	border: none;
	border-top: 3px solid #e683b5;
	border-bottom: 3px solid #ba2372;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	padding: 12px 40px;
	border-radius: 0;
	cursor: pointer;
	letter-spacing: 1px;
}

.btn:hover {
	background: var(--color-orange-objects);
	border: none;
	border-top: 3px solid #e683b5;
	border-bottom: 3px solid #ba2372;
	color: #fff;
}

.mobile {
	display: none !important;
}

@media (min-width: 1280px) {
	.container {
		max-width: 98vw;
	}
}

@media (min-width: 1440px) {
	.container {
		max-width: 89.58333333vw;
	}
}

.form-group{
	margin-bottom: 0;
}

/*-------------------------Header Css-----------------------------*/

header {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

header .topbx {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

header .logo {
	display: inline-block;
	margin: 0;
	width: 60px;
	transition: all 350ms ease-out;
}

header .linkright {
	display: block;
	width: 32px;
	transition: all 350ms ease-out;
}

header .needhelp {
	margin: 0;
}

header .needhelp a {
	color: var(--color-orange-text);
	font-weight: 500;
}

.menuconainer {
	z-index: 1;
}

.menubx {
	width: 100%;
	padding-left: 6rem;
}

.menubx li {
	display: inline-block;
	padding: 0 30px;
	position: relative;
}

.menubx>li {
	flex-grow: 1;
	-webkit-flex-grow: 1;
}

.menubx>li:first-child {
	padding-left: 0;
}

.menubx>li:last-child {
	padding-right: 0;
}

.menubx li a {
	font-size: 19px;
	color: #696566;
	display: block;
	position: relative;
	padding: 0;
	letter-spacing: 0.5px;
}

.menubx li a span {
	font-weight: 500;
	color: var(--color-orange-text);
}

.menubx li a:hover,
.menubx li a.active,
.menubx li.current-menu-item>a,
.menubx li.current-menu-parent>a {
	color: var(--color-orange-text)
}

.menubx .sub-menu {
	background: rgba(38, 38, 38, .92);
	font-weight: 400;
	position: absolute;
	left: 0;
	top: 58px;
	z-index: 9;
	display: none;
	min-width: 260px;
	max-width: 100%;
	text-align: left;
	padding: 20px 0;
}

.menubx>li:hover .sub-menu {
	display: block
}

.menubx .sub-menu li {
	display: block;
	border-bottom: 1px dotted #303030;
	padding: 5px 20px;
	line-height: 26px;
	height: auto;
}

.menubx .sub-menu li a {
	color: #fff;
}

.menubx .sub-menu li a:hover {
	color: var(--color-orange-text);
}

.menubx .sub-sub-menu {
	width: 300px;
	position: absolute;
	display: none;
	left: 100%;
	top: -20px;
	padding: 20px 2px 20px 0;
	z-index: 1;
	background: rgba(40, 40, 40, .9)
}

.menubx .sub-menu>ul>li:hover .sub-sub-menu {
	display: block
}

.menubx div.sub-menu li.has-submenu>a.sub-menu-link:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 6px;
	width: 2px;
	height: 2px;
	margin-top: -1px;
	background: #fff;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	opacity: 0.2;
	box-shadow: none;
	background: 0 0
}

.menubx li.current-menu-parent>a.sub-menu-link:before,
.menubx div.sub-menu li.has-submenu:hover>a.sub-menu-link:before {
	opacity: 1
}

.closeMenu {
	color: #1C1F2A;
	font-size: 22px;
	position: absolute;
	right: 15px;
	top: 10px;
	cursor: pointer;
	z-index: 99;
	display: none;
}


/*-------------------------Content Section Css-----------------------------*/

.contentbx {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
}

.no-padding {
	padding: 0 !important;
}

.middlebx {
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
	background: url(../images/side-bg.png) no-repeat top right / 370px auto;
}
.middlebx.nobg {
	background: none !important;
}
.zigzagbx {
	width: 70%;
	margin-left: -20%;
	margin-bottom: 80px;
	transition: all ease-in-out 300ms;
}

.zigzagbx:hover {
	transform: scale(1.02, 1.02);
}

.yourprogress {
	position: relative;
	/* margin: 0 50px; */ 
}

.yourprogress .redbg {
	position: absolute;
	left: 0;
	background: var(--color-orange-objects);
	width: 0;
	height: 4px;
}

.yourprogress ul {
	background: #DEDEDE;
	width: 100%;
	height: 4px;
}

.yourprogress ul li {
	position: relative;
	background: #DEDEDE;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	margin-top: -4px;
}


.yourprogress ul li.active,
.yourprogress ul li.selected {
	background: var(--color-orange-objects);
}

.yourprogress ul li:last-child {
	background: #fff;
	border: 3px solid var(--color-orange-objects);
}

.yourprogress ul li:last-child::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -10px;
	background: url(../../images/icon-flag.svg) no-repeat;
	background-size: 16px auto;
	width: 16px;
	height: 18px;
}

.yourprogress ul li.active::before {
	content: "";
	position: absolute;
	top: -30px;
	right: -30px;
	background: url(../../images/icon-car.svg) no-repeat;
	background-size: 76px auto;
	width: 76px;
	height: 24px;
}

.yourprogress ul li a {
	display: block;
	height: 100%;
}


/*-------------------------Steps Container-----------------------------*/

.setps-container {
	text-align: left;
}

.car-insurance-title {
	width: 100%;
}

.car-insurance-title h2 {
	font-size: 30px;
	color: var(--color-orange-text);
	text-transform: capitalize;
	text-align: left;
	margin: 0;
	padding: 0 0 10px 0;
	margin-left: -3px;
}

.car-insurance-title h3 {
	font-size: 20px;
	color: var(--color-orange-text);
	text-transform: none;
	text-align: left;
	margin: 0;
	padding: 20px 0 20px 0;
	font-weight: 500;
	line-height: 26px;
}

.car-insurance-title .think {
	font-weight: 800;
}

.car-insurance-title .thin {
	font-weight: 400;
}

.car-insurance-title p {
	font-size: 20px;
    color: #1C1F2A;
    margin: 0;
    padding: 0 0 50px 0;
    width: 70%;
    line-height: 28px;
}

.thum-container {
	float: left;
	width: auto;
	padding-right: 45px;
	padding-bottom: 30px;
}

.thum-container .thum-icon img {
	width: 42px;
	float: left;
}

.thum-container .text {
	font-size: 22px;
	padding-left: 12px;
	float: left;
	padding-top: 11px;
	color: #1C1F2A;
}

.address-icon {
	/* background: url(../../images/address-icon.svg) no-repeat right 25px center; */
}

.clock-container {
	float: left;
	width: auto;
	padding-bottom: 30px;
}

.clock-container .clock-icon img {
	width: 40px;
	float: left;
}

.clock-container .text {
	font-size: 20px;
	padding-left: 12px;
	float: left;
	padding-top: 11px;
	color: #1C1F2A;
}

.btn-primary-cta {
	float: left;
	width: 100%;
	padding-top: 25px;
}

.btn-primary-cta a {
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
	width: 412px;
	float: left;
	text-align: center;
	padding: 20px 20px;
	font-size: 22px;
	border-radius: 5px;
	font-weight: 500;
}

.btn-primary-cta a:hover {
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
	color: #fff;
}


/*-------------------------Forms Css-----------------------------*/

.form-main-container {
	float: left;
	width: 100%;
}

.form-main-container-second {
	float: left;
	width: 100%;
	min-height: 400px;
}

.container-fixed-height {
	min-height: 350px;
	float: left;
	width: 100%;
}
.container-fixed-height.policy-calendar {
    min-height: 416px;
}

.form-step-one {
	float: left;
	width: 80%;
}

.form-step-one.form-step-one-uploads{
	width: 100%;
}
/* .car-text-number .form-step-one{
	width: 80%;
} */


.yourself input {
	padding: 18px 55px 18px 18px;
	border: 1px solid #B7B7B7;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 0;
	font-size: 18px;
	background: #fff;
	text-transform: capitalize;
}

.retrieve-quote input{
	text-transform:inherit
}

.yourself .email {
	text-transform: none;
}

input,
input::-webkit-input-placeholder {
	font-size: 18px;
	font-weight: 400;
}

form.form-step-one {
	min-height: 500px;
}

.yourself .valid {
	padding: 18px 55px 18px 18px;
	border: 1px solid #4CAF50;
	width: 100%;
	border-radius: 5px;
	/* margin-bottom: 20px; */
	background: #fff url("../../images/tick.svg") no-repeat right 25px center;
	background-size: 18px;
}

.yourself .valid-select {
	padding: 0;
	/* border: 1px solid #4CAF50; */
	width: 100%;
	border-radius: 5px;
	/* margin-bottom: 20px; */
	background: #fff url("../../images/tick.svg") no-repeat right 25px center;
	background-size: 18px;
}

.yourself .field-validation {
	float: left;
	margin: 0;
	background: #F4F4F4;
	color: #FC5252;
	text-align: left;
	position: relative;
	top: -22px;
	padding: 5px 10px;
	width: 100%;
	z-index: -1;
	border-radius: 0px 0px 3px 3px;
	font-size: 12px;
	font-weight: 600;
}

.yourself .invalid {
	padding: 18px 55px 18px 18px;
	border: 1px solid var(--color-orange-objects);
	width: 100%;
	border-radius: 5px;
	/* margin-bottom: 20px; */
	background: #fff url("../images/close-icon.svg") no-repeat right 25px center;
	background-size: 18px;
}

.validaiton-message-wrapper {
	margin-bottom: 0;
	height: 25px;
}

.validation-message {
	background: #f1f1f1;
	border-radius: 5px;
	padding: 3px 3px 3px 25px;
	font-size: 10px;
	color: red;
}

.driving-license select {
	padding: 25px;
	border: 1px solid #B7B7B7;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 20px;
	font-size: 20px;
}

.currency-code{
	position:absolute;
	left:20px;
	top:19px;
	font-size:18px;

}
.currency-wrap{ position: relative;}
.currency-wrap input{padding-left:65px !important;}

.calendar input {
	padding: 18px;
	border: 1px solid #B7B7B7;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 5px;
	font-size: 18px;
	background: #fff url("../../images/calendar.svg") no-repeat right 20px center;
	outline: none;
}

.next-step-btn {
	float: left;
	width: 100%;
}

.no-calendar-icon {
	background: none !important;
}

.disable-field {
	background-color: #efefef !important;
	cursor: default;
}

.react-datepicker-popper {
	z-index: 1;
	margin-top: -5px;
}

.next-step-btn .next-btn {
	background: url("../../images/next-arrow.svg") no-repeat right center;
	width: 50px;
    height: 30px;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 30px;
	background-size: 100%;
}

.next-step-btn .pre-btn {
	background: url("../../images/pre-arrow.svg") no-repeat right center;
    width: 50px;
    height: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 30px;
    float: right;
    background-size: 100%;
}

.next-step-btn .pre-btn-first {
	background: url("../../images/pre-arrow.svg") no-repeat right center;
    width: 50px;
    height: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 30px;
    float: right;
    background-size: 100%;
}

::placeholder {
	color: #B7B7B7;
	font-size: 18px;
	font-weight: 500;
	line-height: 23px;
	margin: 0;
	padding: 0;
}

.quote-details-wrap{position: relative;}

.css-yk16xz-control:focus {
    outline: none !important;
	box-shadow: none !important;
}

.css-yk16xz-control {
	padding: 11px 18px 12px 18px;
	font-size: 18px;
	/* border: 1px solid #B7B7B7; */
	border-radius: 5px;


}

.css-1okebmr-indicatorSeparator{
	display: none;
}

.css-1pahdxg-control {
	padding: 11px 18px 12px 18px;
	font-size: 18px;
	border: 1px solid #B7B7B7;
	border-radius: 5px;
	box-shadow: none !important;
}


.css-1pahdxg-control:hover {
	padding: 11px 18px 12px 18px;
	font-size: 18px;
	border: 1px solid #B7B7B7;
	border-radius: 5px;
	box-shadow: none !important;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
	display: none;
}

.react-datepicker-popper[data-placement^=bottom] {
	padding-top: 0 !important;
}

.react-datepicker {
	width: auto;
}
.react-datepicker-wrapper {
	display: block;
}
.react-datepicker-popper {
	width: auto;
}

.react-datepicker__month-container {
	float: left;
	width: 100%;
	padding: 10px !important;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
	display: none;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
	font-size: 25px !important;
	padding: 10px 60px;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
	color: #1C1F2A !important;
	display: inline-block;
	width: 45px !important;
	line-height: 40px !important;
	text-align: center;
	margin: 3px !important;
	font-size: 18px !important;
	font-weight: normal !important;
}

.react-datepicker__navigation--previous {
	left: 25px !important;
	border: 1px solid #ccc !important;
	border-radius: 100px !important;
	top: 18px !important;
}

.react-datepicker__navigation--next {
	right: 25px !important;
	border: 1px solid #ccc !important;
	border-radius: 100px !important;
	top: 18px !important;
}

.react-datepicker__navigation {
	height: 45px !important;
	width: 45px !important;
}

.react-datepicker__day-name {
	color: var(--color-orange-text) !important;
	font-weight: 600 !important;
}

.react-datepicker__day--keyboard-selected {
	border-radius: 0px !important;
	background-color: #fff !important;
	color: #1C1F2A !important;
	border: 0px solid var(--color-orange-objects) !important;
	font-weight: normal !important;
}

.react-datepicker__day--selected {
	border-radius: 0px !important;
	background-color: #fff !important;
	color: #1C1F2A !important;
	border: 2px solid var(--color-orange-objects) !important;
	font-weight: normal !important;
	font-weight: normal !important;
}
/* .react-datepicker__day--selected {
	border: 2px solid var(--color-orange-objects) !important;
} */
.react-datepicker__month-select {
	border: 1px solid #ccc !important;
	font-size: 14px !important;
	padding: 3px 10px !important;
	border-radius: 3px !important;
}

.react-datepicker__year-select {
	border: 1px solid #ccc !important;
	font-size: 14px !important;
	padding: 3px 10px !important;
	border-radius: 3px !important;
}

.react-datepicker__header {
	background-color: #fff !important;
	padding: 10px !important;
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow,
.react-datepicker__navigation-icon::before {
	top: 9px !important;
	height: 15px !important;
	width: 15px !important;
}

.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
	color: #ccc !important;
}

.policy-calendar .react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
	color: #ccc !important;
}


/* .gender input[type="radio"]{
	-webkit-appearance:none;
} */

.gender label {
	height: 100%;
	width: 100%;
	border: 2px solid #B7B7B7;
	position: relative;
	margin: auto;
	border-radius: 10px;
	color: #B7B7B7;
	transition: 0.5s;
	text-align: center;
	background: #fff;
}

.gender .fa {
	font-size: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -80%);
}

.gender label>span {
	font-size: 18px;
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translate(-50%, 80%);
	font-weight: 400;
	margin-top: 5px;
}

.gender input[type="radio"]:checked+label {
	background-color: #F6F6F6;
	color: #1C1F2A;
	border: 2px solid var(--color-orange-objects);
	/*	box-shadow: 0 15px 45px rgba(24,249,141,0.2);*/
}

.gender input[type="radio"]:hover+label {
	background-color: #F6F6F6;
	color: #1C1F2A;
	border: 2px solid var(--color-orange-objects);
	/*	box-shadow: 0 15px 45px rgba(24,249,141,0.2);*/
}

.gender .male-icon {
	text-align: center;
	margin-top: 24px;
	background: url(../../images/male-gray.svg) no-repeat;
	width: 21px;
	height: 66px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .male-icon {
	/* background: url('../images/male-color.svg') no-repeat; */
	background-size: cover;
}

.gender .female-icon {
	text-align: center;
	margin-top: 24px;
	background: url(../../images/female-gray.svg) no-repeat;
	width: 25px;
	height: 66px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .female-icon {
	/* background: url(../images/female-color.svg) no-repeat; */
	background-size: cover;
}

.gender .female-icon img {
	width: 23px;
	display: none;
}

.gender .male-icon img {
	width: 20px;
	display: none;
}


/* .gender .male-icon{float: left; width: 100%; text-align: center; margin-top: 30px;}
.gender .female-icon{float: left; width: 100%; text-align: center; margin-top: 30px;}
.gender .female-icon img{width: 25px;}
.gender .male-icon img{width: 20px;} */

.gender .yes-icon {
	text-align: center;
	margin-top: 23px;
	background: url(../../images/yes-icon.svg) no-repeat;
	width: 51px;
	height: 66px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .yes-icon {
	background: url(../../images/yes-icon-color.svg) no-repeat;
	background-size: cover;
}

.gender .no-icon {
	text-align: center;
	margin-top: 20px;
	background: url(../../images/no-icon.svg) no-repeat;
	width: 51px;
	height: 66px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .no-icon {
	background: url(../../images/no-icon-color.svg) no-repeat;
	background-size: cover;
}

.gender .no-icon img {
	width: 20px;
	display: none;
}

.gender .yes-icon img {
	width: 20px;
	display: none;
}


/* .gender .yes-icon{float: left; width: 100%; text-align: center; margin-top: 30px;}
.gender .no-icon{float: left; width: 100%; text-align: center; margin-top: 30px;}
.gender .yes-icon img{width:55px;}
.gender .no-icon img{width: 55px;} */


/* .gender .gcc-icon{float: left; width: 100%; text-align: center; margin-top: 30px;}
.gender .non-gcc-icon{float: left; width: 100%; text-align: center; margin-top: 30px;}
.gender .gcc-icon img{width:65px;}
.gender .non-gcc-icon img{width: 65px;} */

.gender .gcc-icon {
	text-align: center;
	margin-top: 20px;
	background: url(../../images/gcc-icon.svg) no-repeat;
	width: 66px;
	height: 66px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .gcc-icon {
	background: url(../../images/gcc-icon-color.svg) no-repeat;
	background-size: cover;
}

.gender .non-gcc-icon {
	text-align: center;
	margin-top: 20px;
	background: url(../../images/non-gcc-icon.svg) no-repeat;
	width: 66px;
	height: 66px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .non-gcc-icon {
	background: url(../../images/non-gcc-icon-color.svg) no-repeat;
	background-size: cover;
}

.gender .non-gcc-icon img {
	width: 20px;
	display: none;
}

.gender .gcc-icon img {
	width: 20px;
	display: none;
}

.gender .vehicle-icon {
	text-align: center;
	margin-top: 22px;
	background: url(../../images/vehicle-yes-gray.svg) no-repeat;
	width: 66px;
	height: 70px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .vehicle-icon {
	background: url(../../images/vehicle-yes-color.svg) no-repeat;
	background-size: cover;
}

.gender .vehicle-icon img {
	width: 20px;
	display: none;
}

.gender .vehicle-no-icon {
	text-align: center;
	margin-top: 22px;
	background: url(../../images/vehicle-no-gray.svg) no-repeat;
	width: 66px;
	height: 70px;
	display: inline-block;
	background-size: cover;
}

.gender input[type="radio"]:checked+label .vehicle-no-icon {
	background: url(../../images/vehicle-no-color.svg) no-repeat;
	background-size: cover;
}

.gender .vehicle-no-icon img {
	width: 20px;
	display: none;
}

.upload-icon {
	width: 100%;
	text-align: center;
}

.upload-icon img {
	width: 25px;
}


/*-------------------------Dropdown Css-----------------------------*/

.css-26l3qy-menu {
	top: 96%;
	background-color: #F8F8F8 !important;
	border-radius: 0 0 10px 10px !important;
	box-shadow: none !important;
	margin-bottom: 8px;
	margin-top: 0 !important;
	position: absolute important;
	width: 100% !important;
	z-index: 1 !important;
	box-sizing: border-box !important;
	border: 1px solid #CACACA !important;
}

.css-4ljt47-MenuList {
	padding: 15px !important;
	text-transform: uppercase;
	/* max-height: none !important; */
}

.css-4ljt47-MenuList {
	border-bottom: 1px solid #ccc !important;
	font-size: 14px !important;
}

.css-4ljt47-MenuList div:last-child {
	border-bottom: none !important;
}
.css-yk16xz-control{
	text-transform: uppercase;
}
.css-9gakcf-option {
	background-color: #EAEAEA !important;
	color: #1C1F2A !important;
	text-transform: uppercase;
}

.css-1n7v3ny-option:active {
	background-color: #EAEAEA !important;
	color: #1C1F2A !important;
	text-transform: uppercase;
}

.css-1n7v3ny-option {
	background-color: #D8D8D8 !important;
	text-transform: uppercase;
}

.css-yt9ioa-option {
	border-bottom: 1px solid #ccc !important;
	text-transform: uppercase !important;
	
}

.css-yt9ioa-option:hover{
	text-transform: uppercase;
}

/*-------------------------Upload Document Css-----------------------------*/

.driving-license-doc {
	float: left;
    width: 100%;
    text-align: left;
    border: 1px solid #B7B7B7;
    border-radius: 5px;
    padding: 20px 15px 19px 15px;
    position: relative;
    margin-bottom: 30px;
	background: #fff;
}

.driving-license-doc.uploadvalid {
	border: 1px solid green;
}

.driving-license-doc h4 {
    font-size: 16px;
    text-align: left;
    text-transform: none;
    font-weight: 400;
    position: absolute;
    left: 15px;
    top: -11px;
    background: #fff;
    padding: 0 10px;
    margin: 0;
    color: var(--color-orange-text);

}
.driving-license-doc h4 span{
	font-size: 10px;
}
.driving-license-doc .upload-done {
	width: 15px;
    height: 15px;
    margin-left: -5px;
    margin-right: 3px;
}

.driving-license-doc button {
	/* background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
		width: 100%;
			float: left;
			text-align: center;
			padding: 7px 15px;
			font-size:15px;
			border-radius: 5px;
			font-weight: 500;
			border: none;
			color: #fff; */
	outline: none;
	width: 100%;
	text-align: center;
	border: none;
	background: transparent;
}

.drop-file-line {
	border-right: 1px solid #ccc;
}

.drop-file {
    float: left;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    top: 2px;
}

.upload-img-result {
    text-align: center;
    display: flex;
    justify-content: center;
	padding-right: 10px;
}



.upload-img-result img {
	float: left;
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 3px;
	margin-right: 5px;
}
.upload-img-result.upload-img-result-vehiclePhotos{
	justify-content: center;
    width: 82px;
    display: flex;
    flex-wrap: wrap;

}
.upload-img-result.upload-img-result-vehiclePhotos img{
	/* margin-bottom: 3px; */
	margin: 2px;
    width: 18px;
    height: 18px;

}
.upload-img-result .pdf-icon {
	object-fit: contain;
}

.uploadLoader {
	float: right;
	margin-top: 23px;
	margin-right: 20px;
}

.driving-license-doc .validation{
	text-align: center;
    color: var(--color-orange-text);
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    font-size: 8px;
}
.upload-img-title {
	font-size: 12px;
    font-weight: 400;
    display: flex;
    color: #7a7a7a;
    padding-left: 10px;
}

.upload-img-size {
	font-size: 12px;
	font-weight: 400;
	display: flex;
	color: #7a7a7a;
	padding-left: 10px;
}

.delete-icon {
	width: 18px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

.delete-icon-color {
	padding-top: 1px;
}

.delete-icon img:last-child {
	display: none;
}

.delete-icon:hover img:last-child {
	display: block;
}

.delete-icon:hover img:first-child {
	display: none;
}

.upload-doc-btn button {
	background: #fff;
	width: 100%;
	float: left;
	text-align: center;
	padding: 10px;
	font-size: 20px;
	border-radius: 5px;
	font-weight: 500;
	color: var(--color-orange-text);
	border: 2px solid var(--color-orange-objects);
	cursor: pointer;
}

.mandatoryText{
    position: absolute;
    margin-top: -10px;	
}
/*-------------------------Summary Css-----------------------------*/

.summary-main-container {
	border: 2px solid #CCCDCE;
	border-radius: 5px;
	padding: 60px 40px;
	float: left;
	width: 100%;
	/* height: 100%; */
	background: #fff;
}

.summary-main-container h2 {
	font-size: 20px;
    color: #2c2b2b;
    text-align: left;
    font-weight: 400;
    text-transform: none;
    display: flex;
    padding: 0 0 0 20px;
    margin: 0;
    margin-top: 5px;
}



.summary-car-icon {
	float: left;
	width: 42px;
}

.summar-first-list {
	width: 100%;
	float: left;
	margin: 0;
	padding: 0 0 0 0;
}

.summar-first-list ul {
	padding: 0;
	margin: 0;
	float: left;
	width: 100%;
}

.summar-first-list li {
	margin: 0;
	padding: 0;
	display: block;
	list-style-type: none;
	font-size: 17px;
	color: #1C1F2A;
	line-height: 25px;
	display: flex;
    justify-content: space-between;
}

.summar-first-list li.name{
	text-transform: capitalize;
} 
.summar-first-list li span,
.summar-second-list li span{
	font-weight: 400;
    margin-left: 10px;
    color: var(--color-orange-text);
	word-break: break-word;
}
.summar-second-list {
	width: 100%;
	float: left;
	margin: 0;
	padding: 40px 0;
}

.summar-second-list ul {
	padding: 0;
	margin: 0;
	float: left;
	width: 100%;
}

.summar-second-list li {
	margin: 0;
	padding: 0;
	display: block;
	list-style-type: none;
	font-size: 16px;
	color: #1C1F2A;
	line-height: 25px;
	display: flex;
    justify-content: space-between;
}

.summar-first-btn {
	float: left;
	width: 100%;
	padding-top: 25px;
}

.summar-first-btn a {
	background: #fff;
	width: 100%;
	float: left;
	text-align: center;
	padding: 20px 20px;
	font-size: 22px;
	border-radius: 5px;
	font-weight: 500;
	color: var(--color-orange-text);
	border: 2px solid var(--color-orange-objects);
}

.summar-first-btn a:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
	color: var(--color-orange-text);
}

.summary-hr{
	position: relative;
top: 20px;
}

.your-quote-details-container {
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, #756767 100%);
	border-radius: 5px;
	padding: 40px;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	height: 100%;
	float: left;
	width: 100%;
	position: relative;
}

.your-quote-details-left {
	text-align: left;
	margin: 15px 0 0 0;
	padding: 10px 0;
}

.your-quote-details-right {
	text-align: right;
	font-weight: 500;
	margin: 15px 0 0 0;
	padding: 10px 0;
}

.your-quote-details-left-small {
	text-align: center;
	margin: 0;
	padding: 10px 0 0 0;
	/* font-size: 11px; */
	font-weight: 500;
}

.total-pay {
	font-weight: 800;
}

.total-pay sub {
	font-size: 10px;
	font-weight: 400;
	bottom: 0;
}

.quote-sep {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.your-quote-details-btn {
	float: left;
	width: 100%;
	padding-top: 50px;
}

.your-quote-details-btn a {
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
	width: 100%;
	float: left;
	text-align: center;
	padding: 20px 20px;
	font-size: 22px;
	border-radius: 5px;
	font-weight: 500;
}

.your-quote-details-btn a:hover {
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
	color: #fff;
}


/*-------------------------Thanks you Css-----------------------------*/

.thankyou-main-container h2 {
	font-size: 30px;
	font-weight: 800;
	color: var(--color-orange-text);
	text-align: center;
	margin: 0;
	padding: 0;
	text-transform: capitalize;
	word-break: break-word;
}

.thankyou-main-container h5 {
	font-size: 50px;
	font-weight: 800;
	color: var(--color-orange-text);
	text-align: center;
	margin: 0;
	padding: 0;
	text-transform: none;
}

.thankyou-main-container p {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-orange-text);
	
	text-align: center;
	margin: 0;
	padding: 15px 0;
	text-transform: none;
}

.thankyou-main-container .tel-number{
	color: var(--color-orange-text);
}
.tthankyou-popup-success-container p{
	color: #6a6a6a;
}

.thankyou-popup-success-container p span{
	color: var(--color-orange-text);
}


.thankyou-cta {
	float: left;
	width: 100%;
	padding-top: 25px;
}

.thankyou-cta a {
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
	width: 250px;
	float: left;
	text-align: center;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 5px;
	font-weight: 500;
}

.thankyou-cta a:hover {
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
	color: #fff;
}
.thankYouImage{
	margin-top: 50px;
}


.thankYouImageWrapper{
	position: relative;
}

.thankYouMask{
	position: absolute;
    top: 0;
    left: 0;
}

/*-------------------------Error Css-----------------------------*/
.error-main-container h2{ font-size: 30px; font-weight: 800; color: var(--color-orange-text); text-align: center; margin: 0; padding: 0; text-transform: none;}
.error-main-container h5{ font-size: 30px; font-weight: 800; color: var(--color-orange-text); text-align: center; margin: 0; padding: 0; text-transform: none;}
.error-main-container p{ font-size: 18px; font-weight: 400; color: #535353; text-align: center; margin: 0; padding: 15px 0; text-transform: none;}
.error-main-container span{color: var(--color-orange-text);}
.error-main-container a{color: var(--color-orange-text); text-decoration: none;}
.error-main-container a:hover{color: var(--color-orange-text); text-decoration: none;}

.error-message-cotainer{float: left; width: 100%; text-align: left; margin-top: 30px; margin-left:30px;}
.error-message-cotainer p{font-size: 18px; font-weight: 400; color: #535353; text-align: left; margin: 0; padding:5px 0; text-transform: none;}
.error-message-cotainer a{color: var(--color-orange-text); text-decoration: none;}
.error-message-cotainer a:hover{color: var(--color-orange-text); text-decoration: none;}
.error-message-cotainer span{color: var(--color-orange-text); font-weight: 600;}

/*------------------------Coverage Css-----------------------------*/

/* .coverage-bg {
	background: url("../../images/covreage-page-bg.png") no-repeat right 350px;
	padding-top: 0px;
	padding-bottom: 40px;
	background-size: 200px;
	background-attachment: fixed;
}

.coverage-bg-left {
	background: url("../../images/covreage-page-bg-left.png") no-repeat left center;
	background-attachment: fixed;
} */

.coverage-bg .next-btn{
	margin-top: 0;
}
.quote-text {
	text-align: right;
	font-size: 16px;
	color: var(--color-orange-text);
	font-weight: 600;
}

.coverage-third-party-box {
	transition: transform .2s;
	background: #fff;
	width: 100%;
	float: left;
	padding: 30px 30px 10px 30px;
	box-shadow: rgb(55 43 123 / 15%) 2px 0px 100px;
	text-align: center;
	border-radius: 5px;
	height: 100%;
	position: relative;
}

.coverage-third-party-box:hover {
	transform: scale(1.1);
}

.third-party-title {
	margin-top: 47px;
}

.third-party-title h3 {
	font-size: 26px;
	color: #235B9B;
	text-transform: none;
	font-weight: 800;
	padding: 0 0 20px 0;
	margin: 0;
}

.third-party-price {
	font-size: 40px;
	color: #235B9B;
	text-transform: none;
	font-weight: 800;
}

.third-party-price .third-party-price-super {
	font-size: 17px;
	color: #235B9B;
	text-transform: none;
	font-weight: 500;
}

.third-party-vat {
	font-size: 12px;
	color: #235B9B;
	/* text-transform: uppercase; */
	font-weight: 500;
	font-style: italic;
}

.third-party-cta {
	float: left;
	text-align: center;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -20px;
}

.third-party-cta a {
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
	width: 200px;
	text-align: center;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 5px;
	font-weight: 500;
	display: block;
	margin: 0 auto;
}

.coverage-third-party-box:hover .third-party-cta a {
	color: #fff;
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%) !important;
}

.third-party-cta .inactive {
	background: #c3c3c3;
	color: #fff;
}

.third-party-features-container {
	background: #fff;
	width: 100%;
	float: left;
	padding: 30px;
	box-shadow: rgb(55 43 123 / 15%) 2px 0px 100px;
	text-align: center;
	border-radius: 5px;
	height: 100%;
}

.third-party-features-list h3 {
	font-size: 22px;
	color: #235B9B;
	font-weight: 800;
	margin: 0;
	padding: 0 0 20px 0;
	text-transform: none;
}

.third-party-features-list ul {
	margin: 0;
	padding: 0;
	text-align: left;
	margin-left: 20px;
}

.third-party-features-list li {
	margin: 0;
    padding: 5px 0;
    list-style-type: none;
    font-size: 12px;
    line-height: 18px;
    padding: 0;
	list-style: disc;
}

.recommended-product {
	background: var(--color-orange-objects);
	border-radius: 100px;
	padding: 5px 15px;
	color: #fff;
	font-size: 11px;
	margin-bottom: 20px;
	text-transform: uppercase;
	width: 200px;
	text-align: center;
	display: inline-block;
}

.third-party-features-empyt {
	height: 60px;
}

.third-party-features-title-spacing {
	padding-top: 50px !important;
}

.comprehensive-title h3 {
	font-size: 26px;
	color: var(--color-orange-text);
	text-transform: none;
	font-weight: 800;
	padding: 0 0 40px 0;
	margin: 0;
	padding-top: 70px;
}

.comprehensive-price {
    font-size: 38px;
    color: var(--color-orange-text);
    text-transform: none;
    font-weight: 800;
    margin-top: 65px;
}

.comprehensive-price .comprehensive-price-super {
	font-size: 20px;
	color: var(--color-orange-text);
	text-transform: none;
	font-weight: 500;
}

.comprehensive-vat {
	font-size: 12px;
	color: var(--color-orange-text);
	/* text-transform: uppercase; */
	font-weight: 500;
	font-style: italic;
}

.comprehensive-cta {
	float: left;
	text-align: center;
	width: 100%;
	position: relative;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -40px;
	transform: translateY(-10px);
}

.comprehensive-cta a {
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
	width: 200px;
	text-align: center;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 5px;
	font-weight: 500;
	display: block;
	margin: 0 auto;
}

.comprehensive-box-main:hover .comprehensive-cta a {
	color: #fff;
	background-image: linear-gradient(133deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%) !important;
}

.comprehensive-cta .inactive {
	background: #c3c3c3;
}

.comprehensive-box-main {
	transition: transform .2s;
	height: 100%;
	position: relative;
}

.comprehensive-box-main:hover {
	transform: scale(1.1);
}

.comprehensive-box {
	background: #fff;
	width: 100%;
	float: left;
	padding: 30px 30px 10px 30px;
	/* box-shadow: rgb(55 43 123 / 15%) 50px 100px 200px; */
	box-shadow: rgb(55 43 123 / 15%) 2px 0px 100px;
	text-align: center;
	border-radius: 5px 5px 0px 0px;
}

.comprehensive-price-container-upper {
	padding: 5px;
	background: #fff;
	float: left;
	width: 100%;
}

.comprehensive-price-container {
	padding: 20px 10px 10px 10px;
	background: #EFEFEF;
	border-top: 1px solid #B7B7B7;
	float: left;
	width: 100%;
	text-align: center;
	position: relative;
}

.comprehensive-over-text {
	background: #fff;
	padding: 4px 14px;
	font-size: 12px;
	text-align: center;
	color: #4d4d4c;
	font-weight: 600;
	position: absolute;
	top: -15px;
	margin: 0 auto;
	left: 0;
	right: 0;
	width: 140px;
}

.comprehensive-features-top-spacing {
	margin-top: 70px;
}

.comprehensive-features-list h3 {
	font-size: 22px;
	color: var(--color-orange-text);
	font-weight: 800;
	margin: 0;
	padding: 0 0 20px 0;
	text-transform: none;
}

.comprehensive-features-list ul {
	margin: 0;
	padding: 0;
	padding-bottom: 20px;
}

.comprehensive-features-list li {
    margin: 0;
    padding: 5px 0;
    list-style-type: none;
    font-size: 16px;
    color: var(--color-orange-text);
    line-height: 18px;
}
.features-wrapper,
.features-wrapper h4{
	text-align: left;
}
.features-wrapper h4{
    font-size: 14px;
    margin-bottom: 5px;
	color: var(--color-orange-text);
	text-transform: capitalize;
}
.features-wrapper ul{

margin-left: 20px;
}

.features-wrapper ul li{
	list-style: disc;
    color: #424242;
    font-size: 12px;
	padding: 0;
}
.thirdparty-features-wrapper h4{
	font-size: 14px;
    margin-bottom: 5px;
	text-transform: capitalize;
	text-align: left;
    color: #235B9B;
}
.features-wrapper ul li span.lineThrough{
	text-decoration: line-through;
}
.features-wrapper   span.save{
    color: #fff;
    background-color: var(--color-orange-text);
	padding: 1px 20px 2px 20px;
    border-radius: 10px;
}
.features-toggle{
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.features-toggle img {
    width: 16px;
}
.comprehensive-warpper {
	float: left;
	width: 100%;
	text-align: center;
	margin: 10px 0 0 0;
	padding: 0;
}

.comprehensive-tabs label {
	padding: 8px 0;
	margin: 0;
	width: 50%;
}

.comprehensive-tabs {
	background: #fff;
	border-radius: 50px;
	padding: 0px;
	float: left;
	width: 100%;
	font-size: 11px;
	font-weight: 400;
	text-transform: none;
	border: 1px solid #B7B7B7;
}

#one:checked~.comprehensive-tabs #one-tab {
	background: var(--color-orange-objects);
	color: #fff;
	border-radius: 15px 0px 0px 15px;
	padding: 8px 0;
	font-size: 11px;
	text-transform: none;
	font-weight: 400;
	float: left;
	width: 50%;
}

#two:checked~.comprehensive-tabs #two-tab {
	background: var(--color-orange-objects);
	color: #fff;
	border-radius: 0px 15px 15px 0px;
	padding: 8px 0;
	font-size: 11px;
	text-transform: none;
	font-weight: 400;
	float: right;
	width: 50%;
}

#two:checked~.comprehensive-tabs #three-tab {
	background: var(--color-orange-objects);
	color: #fff;
	border-radius: 15px;
	padding: 8px 0;
	font-size: 11px;
	text-transform: none;
	font-weight: 600;
	float: right;
	width: 100%;
}



#four:checked~.comprehensive-tabs #four-tab {
	background: var(--color-orange-objects);
	color: #fff;
	border-radius: 15px 0px 0px 15px;
	padding: 8px 0;
	font-size: 11px;
	text-transform: none;
	font-weight: 400;
	float: left;
	width: 50%;
}

#five:checked~.comprehensive-tabs #five-tab {
	background: var(--color-orange-objects);
	color: #fff;
	border-radius: 0px 15px 15px 0px;
	padding: 8px 0;
	font-size: 11px;
	text-transform: none;
	font-weight: 400;
	float: right;
	width: 50%;
}

#six:checked~.comprehensive-tabs #six-tab {
	background: var(--color-orange-objects);
	color: #fff;
	border-radius: 15px;
	padding: 8px 0;
	font-size: 11px;
	text-transform: none;
	font-weight: 600;
	float: right;
	width: 100%;
}


.radio {
	display: none;
}


/*-------------------------SlideNav Css-----------------------------*/

.sidenav {
	background-color: #111;
	height: 100%;
	left: 0;
	overflow-x: hidden;
	padding-top: 60px;
	position: fixed;
	top: 0;
	transition: .5s;
	width: 0;
	z-index: 1;
}

.sidenavr {
	background-image: linear-gradient(350deg, var(--color-orange-objects) 0, var(--color-orange-objects) 100%);
	height: 100%;
	padding-top: 60px;
	position: fixed;
	right: -525px;
	top: 0;
	transition: .5s;
	width: 525px;
	z-index: 122;
}

.sidenav a,
.sidenavr a {
	color: #fff;
	display: block;
	font-size: 25px;
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	transition: .3s;
}

.sidenav a:hover,
.offcanvas a:focus,
.sidenavr a:hover,
.offcanvas a:focus {
	color: #f1f1f1;
}

.sidenav .closebtn,
.sidenavr .closebtn {
	font-size: 36px;
	margin-left: 50px;
	position: absolute;
	right: 25px;
	top: 0;
}

.active-menu-sidenavr {
	right: 0;
}

.overlay {
	background: rgba(255, 255, 255, 0.5);
	/* backdrop-filter: blur(20px) saturate(120%) contrast(200%); */
	backdrop-filter: blur(5px) saturate(150%) contrast(100%);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 121;
}

.show-overlay {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-height: 450px) {
	.sidenav,
	.sidenavr {
		padding: 0px;
	}
	.sidenav a,
	.sidenavr a {
		font-size: 18px;
	}
}


/*-------------------------Feilds Tag Css-----------------------------*/

.tags-main-container{
	/* border: 1px solid #efefef;  */
	float: left; 
	width:100%; 
	padding: 10px 10px 5px 10px; 
	border-radius: 5px; 
	/* background:#efefef;  */
	min-height:50px;
	/* margin-top: 10px; */
}

.field-tags {
	float: left;
	background: var(--color-orange-objects);
	border-radius: 100px;
	width: auto;
	padding: 5px 5px 5px 10px;
	margin-right: 5px;
	margin-bottom: 5px;
}

.field-tags .field-text {
	float: left;
	padding: 0 10px 0 0;
	color: #fff;
	font-weight: 600;
}

.field-tags .field-cancel {
	float: left;
	width: 20px;
	height: 20px;
	padding: 2px;
	background: #fff;
	border-radius: 100px;
}

.field-tags .field-cancel img {
	width: 10px;
	height: 10px;
	text-align: center;
	position: relative;
	top: -3px;
	left: 3px;
}


/*-------------------------Footer Css-----------------------------*/

footer {
	width: 100%;
}

footer img {
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: -1;
}

.loader {
	border: 7px solid #f3f3f3;
	/* Light grey */
	border-top: 7px solid var(--color-orange-objects);
	/* Blue circle */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

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

.detail-btn-right {
    height: 255px;
    width: 34px;
    position: absolute;
    left: -33px;
    top: 125px;
    cursor: pointer;
}

.edit-btn {
	float: left;
	position: absolute;
	right: 60px;
	z-index: 1;
}

.edit-btn a {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-orange-text);
	border-radius: 100px;
	width: auto;
	float: left;
	padding: 3px 30px 3px 10px;
	background: #fff url("../../images/edit-icon.svg") no-repeat right 8px center;
	background-size: 14px;
	text-decoration: none;
}

.edit-btn a:hover {
	color: var(--color-orange-text);
	text-decoration: none;
}
.accordion__item + .accordion__item{border: none !important;}
.accordion{border: none !important;}

.accordion-main-containe {
	float: left;
	width: 100%;
	padding: 50px 70px;
}

.accordion-container {
	position: relative;
	width: 100%;
}

.accordion-item{background-color:transparent; border: none;}

.accordion-container .accordion-item {
	overflow: hidden;
	/*    min-height: 70px;*/
	margin: 0px;
	/* border-bottom: 1px solid #ffffff59; */
	border-radius: 0;
	padding: 20px 0;
}

.accordion-container .accordion-item.show .head i:before {
	content: url("../../images/arrow-up.svg");
}

.accordion-container .accordion-item .head {
	display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 0px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.details-car-icon img{
	width:40px;
}

.details-personal-icon img{
	width: 17px;
    margin-left: 10px;
    margin-right: 11px;
}

.accordion-container .accordion-item .head p {
	font-size: 20px;
	color: #fff;
	padding: 0 0 0 20px;
	margin: 0;
}

.accordion-container .accordion-item .head i {
	position: absolute;
	width: 30px;
	height: 30px;
	flex: 30px 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	border-radius: 100%;
	margin-right: 10px;
	right: 0;
	/*  background-color: #fff;*/
}

.accordion-container .accordion-item .head i:before {
	/* content: url("../../images/arrow-down.svg"); */
	content: "";
}

.accordion-container .accordion-item .body {
	/* display: none; */
	overflow: hidden;
	overflow-y: scroll !important;
	height: 300px;
	overflow-x: hidden;
}


.accordion-container .accordion-item .body .wrapper {
	position: relative;
	overflow: hidden;
	padding: 0px;
	border-radius: 0px;
	margin: 30px 30px 20px 0;
}

.accordion-container .accordion-item .body .wrapper div {
	font-size: 17px;
	color: #fff;
	padding: 10px 0;
	border-bottom: 1px solid #eb9558;
}

.accordion-container .accordion-item .body .wrapper p {
	font-size: 14px;
	margin-bottom: 20px
}

.accordion-container .accordion-item .body .wrapper a {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 60px;
	background-color: #fae898;
	text-align: center;
}
/******react accordian style******/
#accordion__heading-raa-0:before{
	margin-top: 25px !important;
}
.accordion__button:before{
	right: 0;
    position: absolute;
	color: #fff;
	width: 15px !important;
	height: 15px !important;
	margin-top: 6px !important;
	
}

.accordion__button{
	background-color: transparent !important;
	/* border:0; */
	padding: 18px 18px 18px 0 !important;
	border-bottom: 1px solid #eb9558 !important;
	
}

.accordion__button:hover{
	background-color: transparent !important;
	border:0;
}
input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 96%;
	left: 0;
	opacity: 0;
	cursor: pointer;
}

.pointer {
	cursor: pointer;
}

.less-opacity {
	opacity: 0.2;
}

.hide-save{
	opacity: 0;
	cursor: auto;
}

.progress-1 .redbg{	
	width: 0%;
}

.progress-2 .redbg{	
	width: 33.33%;
}

.progress-3 .redbg{	
	width: 66.67%;
}

.progress-4 .redbg{	
	width: 100%;
}

.progress-5 .redbg{	
	width: 100%;
}
.progress-6 .redbg{	
	width: 100%;
}



.redbg.step1 {
	width: 0;
}

.redbg.step2 {
	width: 16.66%;
}

.redbg.step3 {
	width: 33.2%;
}

.redbg.step4 {
	width: 33.2%;
}

.redbg.step5 {
	width: 33.2%;
}

.redbg.step6 {
	width: 33.2%;
}

.redbg.step7 {
	width: 100%;
}

.loader-wrapper {
	text-align: center;
}

.nodata {
	color: var(--color-orange-text);
}

.css-1wa3eu0-placeholder {
	font-size: 18px;
	text-transform: capitalize !important;
}

.carDetailsPage .tooltip-inner {
	padding:0 !important;
	background-color: var(--color-orange-text) !important;
	border:1px solid var(--color-orange-objects) !important;
	
}

.carDetailsPage .tooltip-inner img{
	width: 120px;
}


.tooltip-inner {
	background-color: var(--color-orange-text) !important;
	color: rgb(255, 255, 255);
	padding:5px 10px;
	margin: 0;
	font-size: 11px;
	text-align: center;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
	border-top-color: var(--color-orange-text) !important;
}


.yourself .mobilenumberfeild {
	padding-left: 65px;
}

.country-code-wrap{position: relative;}

.yourself .country-code {
    position: absolute;
    font-size: 18px;
    left: 20px;
    top: 19px;

}

.disclaimer-checkbox{
	opacity: 1 !important;
	width: auto !important;
	height: auto !important;
	position: relative !important;
	margin-right: 10px;
}

.disclaimer-label {display:initial !important;}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


/* Firefox */

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

.review-button {
	border: 1px solid var(--color-orange-objects);
	background: #fff;
	color: var(--color-orange-text);
	margin-top: 20px;
	padding: 5px 20px;
	border-radius: 5px;
}

.accordion-item ::-webkit-scrollbar {
	width: 10px;
}

.accordion-item ::-webkit-scrollbar-thumb {	
	border-radius: 100px;	
	background: -webkit-gradient(linear, left top, left bottom, from(#b16936 ), to(#b16936 ));	
	border: 1px solid #b16936;	
}	
.accordion-item ::-webkit-scrollbar-track {	
	background-color: #fff;	
	background: linear-gradient(to right, #fff, #fff 1px, #fff 1px, #fff);	
	border-radius: 100px;	
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px white inset !important;
}

input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px white inset !important;
}

.payNowLoader {
    margin-top: 5px;
    position: absolute;
    left: 0;
    right: 0;
}

.intro{max-width:600px;}

.intro .car-insurance-title h2{
	color: var(--color-orange-text);
	text-align: left;
	font-size: 58px;
	font-weight: 400;

}

a.reterieve-btn {	
    background:var(--color-orange-objects);	
	border: 1px solid var(--color-orange-objects);	
    padding: 9px 15px;	
    color: #fff !important;	
	font-weight: 400 !important;	
    margin-right: 15px;	
    border-radius: 3px;	
}	
a.reterieve-btn:hover {	
    background:transparent;	
	color: var(--color-orange-text) !important;	
}

.intro .car-insurance p{
	color: #1C1F2A;
	font-size: 24px;
	text-align: left;
	padding-top: 15px;
	line-height: 30px;
}

.intro .btn-primary-cta{
	padding-bottom: 25px;
	padding-top: 35px;
}

.intro-last-text{
	float: left;
	width: 100%;
	text-align: left;
}

.intro-last-text p{
	width: 100%;
}

.intro .btn-primary-cta a{
padding-top: 15px !important;
padding-bottom: 15px !important;
}

.uploadSingleLoader{ position: absolute;}

.disable-button {
	opacity: 0.5;
	pointer-events: none;
}

.download-pdf-summary-page {
	background: #fff;
	text-align: center;
	padding: 5px 20px;
	font-size: 18px;
	border-radius: 5px;
	font-weight: 500;
	color: var(--color-orange-text);
	border: 2px solid var(--color-orange-objects);
	position: absolute;
	top: 0;
	width: 150px;
	right: 16px;
}

.download-pdf-summary-page:hover {
	background: var(--color-orange-objects);
	text-align: center;
	padding: 5px 20px;
	font-size: 18px;
	border-radius: 5px;
	font-weight: 500;
	color: #fff;
	border: 2px solid var(--color-orange-objects);
	position: absolute;
	top: 0;
	width: 150px;
	right: 16px;
}



/*********radio buttons**/

.radio-btn-main-wrapper{
display: flex;
align-items: center;
justify-content:space-between;
max-width: 380px;
}

.radio-btn-wrapper{
	width: 180px;
	height: 180px;
	position: relative;
}

.financed-select,
.ncd-select{
	margin-top: 25px;
}

.ncd-select{
	margin-top: 0;
	
}

.ncd-select-wrapper{
	position: relative;
	z-index: 0;
}

.gender .male-icon,
.gender .female-icon,
.gender .yes-icon,
.gender .no-icon,
.gender .gcc-icon,
.gender .non-gcc-icon,
.gender .vehicle-icon,
.gender .vehicle-no-icon{
	margin-top: 40px;
}
.financed-select,
.ncd-select,
.rsa-select{
	z-index: 120;
	position: relative;
	text-transform: uppercase;
}

.financed-select div,
.ncd-select div,
.rsa-select div{
	text-transform:uppercase;
}

.informationIcon img{
	width: 15px;
	margin-left: 5px;
}
.imageToolTip{float: right; position: relative; top: -43px; right: -20px;}
.imageToolTip img{
	width: 15px;
	margin-left: 5px;
}




#ribbon-container {
	position: absolute;
	top: 15px;
	right: -20px;
	overflow: visible;
	/* so we can see the pseudo-elements we're going to add to the anchor */
	
	font-size: 16px;
	/* font-size and line-height must be equal so we can account for the height of the banner */
	
	line-height: 18px;
  }
  
  
  #ribbon-container span {
	display: block;
	padding: 14px 20px;
	position: relative;
	/* allows us to position our pseudo-elements properly */
	
	/* background: #0089d0; */
	overflow: visible;
	/* height: 58px;
	margin-left: 29px; */
	color: #fff;
	text-decoration: none;

	background: var(--color-orange-objects);
	background: -webkit-linear-gradient(to right, var(--color-orange-objects) 46%, var(--color-orange-objects) 100%);
	background: -moz-linear-gradient(to right, var(--color-orange-objects) 46%, var(--color-orange-objects) 100%);
	background: linear-gradient(to right, var(--color-orange-objects) 46%, var(--color-orange-objects) 100%);
	text-transform: uppercase;
  }
  
  #ribbon-container span:after {
	/* this creates the "folded" part of our ribbon */
	
	content: "";
	height: 0;
	width: 0;
	display: block;
	position: absolute;
	bottom: -15px;
	right: 0;
	border-top: 15px solid var(--color-orange-objects);
	border-right: 15px solid transparent;
  }
  
  #ribbon-container span:before {
	/* this creates the "forked" part of our ribbon */
	
	content: "";
	height: 0;
	width: 0;
	display: block;
	position: absolute;
	top: 0;
	left: -29px;
	border-top: 23px solid var(--color-orange-objects);
	border-bottom: 23px solid var(--color-orange-objects);
	border-right: 29px solid transparent;
	border-left: 29px solid transparent;
  }

  .tel-number-style-2{
	color: var(--color-orange-text);
  }

  .registration-text p{
	  font-size: 16px;
  }


  .retrieve-message-error-wrapper .text-1{
	font-weight: 500;
	color: var(--color-orange-text);
  }

  .retrieve-message-error-wrapper a{
	color: var(--color-orange-text);
	font-weight: 500;
  }


  .retrieve-message-error-wrapper span{
	  font-weight: inherit;
  }

  .retrieve-loading-wrapper p{
	  text-align: center;
  }
.selectVehicleSpecs{
	display: flex;
	align-items:center;
	justify-content: space-between;
}

.selectVehicleSpecs  .car-insurance-title{
	width: auto;
}

.minandmaxprice{
	display: flex;
    justify-content: space-between;
	align-items: center;
	height: 100%;
    /* margin-top: 5px; */
}
/* .uploadImgWrapper{
	display: flex;
	justify-content: center;
} */
.ReactModal__Overlay.ReactModal__Overlay--after-open{
	z-index: 999;
}

.uploadModal{
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.uploadModalImageWrapper{
    width: 700px;
    height: 400px;
    /* background: #1591BA; */
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;

}
.uploadModalImageWrapper img{
	max-width:100%;
max-height:100%;
height: 100%; width: 100%; object-fit: contain;
}

.uploadModalClose img{
	width: 50px;
    margin-top: 20px;
	cursor: pointer;
}
.minandmaxprice{
	align-items: center;
}
.vehicleValue{
	margin-top: 20px;
}
.customRadioButtonsMainWrapper{
	display: flex;
	font-size: 16px;
}
.customRadioButtonsWrapper{
	position: relative;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.customRadioButtonsWrapper input{
	width: 55px;
    height: 25px;
    position: absolute;

    left: 0;
    top: 0;
}
.customRadioButtonsWrapper img{
	width: 25px;
	height: 25px;
	margin-right: 5px;
}

.customRadioButtonsMainWrapper  .radio-btn-wrapper{
	width: auto;
	height: auto;
}

.inputNoBackground{
	background: none !important;

}
.toolTipMainWrapper{
	position: relative;
}

.toolTipMainWrapperFirst{
	z-index: 5;
}
.toolTipMainWrapperLast{
	z-index: 4;
}
.toolTipMainWrapper .toolTipWrapper{
    position: absolute;
    top: 16px;
    right: -25px;
    z-index: 1;
	/* margin-top: -3px; */
	/* top: 50%; */
    /* transform: translate(0%, -50%); */
}
.calendar .react-datepicker-popper{
	z-index: 250;
    position: relative;
}

.nodata{
	margin-top: 10px;
}