﻿/* ================================ CSS Reset  ================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*============================== General Styles ======================================*/
body{
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

*{
    box-sizing: border-box;
    /*user-select: none;*/
}

button{
    background: transparent;
    border:none;
    outline: none;
}

b {
    font-weight: bold;
}

strong {
    font-weight: bold;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
    background-color: #fff;
    margin-top: 10px;
    color: #000 !important;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
}

#myNavbar > ul:first-child
{
	color: #777;
	}

.navbar-brand img 
{
	margin-left: -30px;
	}

@media (max-width: 768px)
{
	.navbar-brand img 
	{
		margin-left: 0;
		}
	
	}

.btn-bg-yellow{
    padding: 10px 40px 10px 40px;
    background-color: #ffc600 !important;
    font-size: 16px !important;
    border-radius:  0;
    color: #000;
    margin-bottom: 10px;
}

.btn-bg-dark{
    padding: 10px 40px 10px 40px;
    background-color: #a4a4a4 !important;
    font-size: 16px !important;
    border-radius:  0;
    color: #000;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-bg-darker{
    padding: 10px 40px 10px 40px;
    background-color: #423c3c !important;
    font-size: 16px !important;
    border-radius:  0;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-bg-darker:hover 
{
	color: #fff !important;
	}

.right-inner-addon {
    position: relative;
}
.right-inner-addon input {
    padding-right: 30px;    
}
.right-inner-addon span {
    position: absolute;
    right: 0px;
    padding: 10px 25px;
    pointer-events: none;
    color: #dbdbdb;
}

.dropdown-img{
    right: 20px;
    transform: translateY(20%);
    position: absolute;
}

.notes {
    font-size: 12px;
    font-style: italic;
    display:block;
    margin-top: 3px;
}

.color-yellow
{
	color: #ffc600 !important;
	}
	
.color-red
{
	color: #ff0000 !important;
	}
	
.border-bottom-yellow
{
	border-bottom: 5px solid 
	}
	
.display-none
{
	display:none !important;
	}

.yellow-line
{
	height: 5px; 
	background-color: #ffc600;
	width: 200px;
	margin-left:auto;
	margin-right:auto;
	}

.panel{
    border-radius: 0px;
    border: none;
    margin-bottom: 0;
}

.panel-heading{
    background-color: #423c3c !important;
    color:  #fff !important;
    border-radius: 0;
    font-size: 20px;
    font-weight: 900;
    padding-left: 50px;
    width: 100%;
    position: relative;
}

.panel-body{
    /*padding-left: 50px;*/
    padding-right: 40px;
    border-radius: 0;
    border: none;
    background-color: #f9f9f9 !important;
}

@media (max-width : 768px){
    
    .panel-body {
		padding-left: 20px;
		padding-right: 20px;
		border-radius: 0;
		border: none;
		background-color: #f9f9f9 !important;
	}
	
	.panel-heading{
		background-color: #423c3c !important;
		color:  #fff !important;
		border-radius: 0;
		font-size: 20px;
		font-weight: 900;
		padding-left: 20px;
		width: 100%;
		position: relative;
	}
}

.navbar-toggle {
    border-radius: 0;
}

/*============================== Scroller Styles  ======================================*/
.scroller 
{
	z-index: 1000;
	position: fixed;
	bottom: 80px;
	right: 10px;
	padding: 10px 5px;
	background-color: #ffc600 !important;
	display: flex;
	align-items:center;
	justify-content:center;
	/*opacity: 0.7;*/
	border-radius: 5px;
	border: solid 1px #fff;
	display: none;
	cursor: pointer;
	}
	
.scroller img 
{
	transform: rotate(180deg);
	}
	
/************** SELECT 2 Styles ***************/
.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
    height: 40px;
}

.select2-container--bootstrap .select2-selection--single {
    height: 40px;
    line-height: 2;
    padding: 6px 24px 6px 12px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
    margin: 8px 0 0 6px;
    font-size: 16px;
}

.select2 {
	width:100%!important;
	height: 40px !important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background-color: #ffc600;
    color: #fff;
}

/*============================== Default Banner Styles  ======================================*/
.default-banner
{
	/*
    font-family: 'Lato', sans-serif;
    padding: 100px 20px 10px 20px;
    margin-top: 120px;
    margin-bottom: 10px;
    height: 450px;
    background-image: url('../assets/images/Auto_ApplicationPage_Banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
	*/
	padding: 50px 0;
    margin-top: 0;
    margin-bottom: 0;
    height: 400px;
    background-image: url('../assets/images/ProductsPage_VehicleInsurance_Bannerv1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #fff !important;
}
.default-banner h1
{
	line-height: 1.2;
	font-size: 32px !important;
	font-family: 'DroidSans-Bold';
	margin-bottom: 8px;
	}

.default-banner h3 
{
	/*font-size: 22px !important; 
	line-height: 38px; 
	font-family: 'DroidSans-Regular', Sans-Serif; 
	margin-bottom: 8px; 
	padding: 10px 0 20px 0*/
	font-size: 20px !important; 
	line-height: 28px; 
	font-family: 'DroidSans-Regular', Sans-Serif; 
	margin-bottom: 8px; 
	padding: 10px 100px 20px 0
	}
	
.default-banner h2{
    font-size: 40px;
    font-weight: 900;
    text-align: center;
}

.default-banner p{
    line-height: 25px;
    max-width: 640px;
    margin: 0 auto 0 auto;
    text-align: justify;
}

@media (max-width : 768px)
{
	.default-banner
	{
		/*
        padding: 10px 20px 10px 20px;
        margin-top: 100px;
        margin-bottom: 10px;
        height: 450px;
        background-image: url('../assets/images/Auto_ApplicationPage_Banner.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 80% 100%;
        display: flex;
        align-items: center;
        justify-content: center;
		*/
		padding: 50px 0;
        margin-top: 0;
        margin-bottom: 0;
        height: auto;
        background-image: url('../assets/images/ProductsPage_VehicleInsurance_Bannerv1.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
    }
    
    .default-banner h2{
        font-size: 40px;
        font-weight: 900;
        text-align: center;
    }

    .default-banner p{
        line-height: 20px;
        font-size: 15px;
        text-align: justify;
        background-color: rgba(255,255,255,0.8);
        padding:15px;
    }
}

/*============================== Default Lower Banner Styles  ======================================*/
.default-lower-banner 
{
	padding: 20px 40px 20px 40px;
	/*font-family: 'Lato', sans-Serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	}

.default-lower-inner
{
	padding: 20px;
	}
	
.default-lower-banner h3
{
	color: #000 !important;
	font-weight: 400;
	font-size: 23px;
	margin-bottom: 10px;
	margin-top: 15px;
	font-family: 'Droidsans-bold';
	}
	
.default-lower-banner p
{
	font-size: 16px;
	line-height: 25px;
	text-align: justify;
	font-family: 'Droidsans-regular', sans-Serif;
	}

@media (max-width: 768px)
{
	.default-lower-banner 
	{
		padding: 20px 20px 20px 20px;
		}
		
	.default-body-inner .yellow-line 
	{
		width: 200px;
		}
	
	.default-body-inner h2
	{
		font-size: 30px;
		font-weight: 700;
		margin-top: 15px;
		margin-bottom: 10px;
		}
}

/*============================== Default Body Styles  ======================================*/
.default-body
{
	padding-top: 20px;
	padding-bottom: 20px;
	/*font-family: 'Lato', sans-Serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	background-color: #fcfaec !important;
	}

.default-body-inner
{
	padding: 20px;
	}

.default-body-inner h2
{
    font-family: 'Droidsans-bold';
	font-size: 32px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 10px;
	}
	
.default-body-inner .yellow-line 
{
	width: 400px;
	}
	
.default-body-inner .form-group
{
	margin-bottom: 30px;
	}
	

.default-body .form-control
{
	border-radius: 7px;
    height: 40px;
	}

.default-body-inner .control-label{
    margin-bottom: 10px;
    margin-top: 10px;
}

.default-body .premium-holder
{
	margin-left:auto;
	margin-right: auto;
	max-width: 400px;
	padding: 20px;
	/*background-color : #fff !important;*/
	margin-bottom : 30px;
	}

.premium-holder p
{
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	}

@media (max-width: 768px)
{
    .default-body-inner {
        padding: 5px;
    }

	.default-lower-banner 
	{
		padding: 20px 20px 20px 20px;
		}
		
	.default-body-inner .yellow-line 
	{
		width: 200px;
		}
	
	.default-body-inner h2
	{
		font-size: 30px;
		font-weight: 700;
		margin-top: 15px;
		margin-bottom: 10px;
		}
	
	.default-body-inner .form-horizontal .form-group
    {
	    margin-left: 0;
	    margin-right: 0;
	}
	
}

@media (min-width: 768px)
{
	.default-body-inner .form-horizontal .form-group .control-label
    {
	    text-align: left !important;
	}
}

/*============================== Default Benefits Styles  ======================================*/
.default-benefits-body 
{
	padding-top: 20px;
	padding-bottom: 20px;
	/*font-family: 'Lato', sans-Serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	}

.default-benefits-body h2
{
	font-size: 36px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 10px;
	font-family: 'DroidSans-Bold';
	}
	
.default-benefits-body .yellow-line
{
	width: 380px;
	}

.default-benefits-content
{
	padding: 20px;
	}
	

.default-benefits-body img 
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
	
.default-benefits-body h3 
{
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	}
	
.default-benefits-body h4 
{
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 20px;
	}

.default-benefits-body p 
{
	font-size: 15px;
	text-align: justify;
	line-height: 20px;
	}

@media (max-width: 768px)
{	
	.default-benefits-body .yellow-line 
	{
		width: 200px;
		}

	.default-benefits-body h2
	{
		font-size: 30px;
		font-weight: 700;
		margin-top: 15px;
		margin-bottom: 10px;
		}
}


/*============================== Contact Us Styles  ======================================*/

.default-contact-us 
{
	padding-top: 20px;
	padding-bottom: 20px;
	/*font-family: 'Lato', sans-Serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	}

.default-contact-us h2
{
	font-size: 36px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 10px;
	}
	
.default-contact-us p
{
	font-size: 17px;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 10px;
	}
	
.default-contact-us h4
{
	font-size: 20px;
	font-weight: 900;
	line-height: 20px;
	margin-bottom: 10px;
	}


@media (max-width: 768px)
{
	.default-contact-us h2
	{
		font-size: 30px;
		font-weight: 700;
		margin-top: 15px;
		margin-bottom: 10px;
		}
	}
/****************** MODAL LOG IN Styles********************/

#MODALLOGIN .modal-content  {
    background-color: #fff;
    border: 0;
    border-radius: 0 !important;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    outline: 0;
    /*font-family: 'Lato', Sans-Serif;*/
    font-family: 'DroidSans-Regular', sans-serif;
    margin-top: auto;
    margin-left: auto;
}

#MODALLOGIN .modal-body 
{
	margin-top: 20%;
	}
	
#MODALLOGIN .btn-close 
{
	position : absolute;
	top: 0;
	right:0;
	font-size: 20px;
	background-color: transparent;
	padding: 10px;
	font-weight: 900;
	}
	
.log-in-wrapper 
{
	padding: 20px;
	}
	
.log-in-title 
{
	font-size: 25px;
	font-weight: 900;
	padding-bottom: 10px;
	}

.log-in-subtitle 
{
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 900;
	padding-bottom: 10px;
	padding-top: 20px;
	}

.log-in-content 
{
	padding: 30px 0px 0px 0px;
	}
	
.log-in-content img
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	}
	
.log-in-content .form-group .form-control 
{
	text-align: center;
	height: 40px;
	border-radius: 0;
	background-color: #ddd !important;
	font-weight: 700;
	font-size: 20px;
	}

@media (max-width: 600px)
{
	#MODALLOGIN .modal-body 
	{
		margin-top: 10%;
		}
    }

/*============================== Footer Styles  ======================================*/
.f-gr
{
    border-left: 4px solid #ffc600;
    padding-left: 5px;
    }

.footer 
{
	/*border-top : 4px solid #ccc;*/
	margin-top: 50px;
	background-color : #222222 !important;
	color: #fff;
    }
    
.inner-footer 
{
	padding: 10px 30px 30px 30px;
	text-align: justify;
	}
	
.sub-inner-footer
{
    padding: 10px 30px 0px 30px;
    font-size: 14px;
    }
    
.sub-inner-footer p{
    margin-bottom: 10px;
    font-weight: 900;
}
	
@media (max-width: 600px)
{
	.inner-footer 
	{
		padding: 10px 10px 10px 10px;
		text-align: justify;
		}
    }
	
.inner-footer h4
{
    font-weight:700;
    margin-top: 10px;
    margin-bottom: 10px;
	}
	
.inner-footer p
{
    color: #989898;
	}

.footer .container .inner-footer ul li 
{
	list-style-type: none;
    line-height: 28px;
	}
	
.footer .container .inner-footer a 
{
	color: #efefef;
    }
    
.policy-viewer 
{
	padding: 0 0 20px 0;
	/*font-family: 'Lato', sans-serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	min-height: 50vh;
	}

.policy-viewer-inner 
{
	padding: 20px;
	}
	
.policy-viewer > .nav-tabs > li a, .nav-tabs > li a:focus, .nav-tabs > li a:hover {
    padding: 15px 30px 11px 30px;
    background-color: transparent;
    border: 0;
    color: #000;
    border-bottom: 4px solid #ffc600;
}

.policy-viewer > .nav-tabs > li.active a, .nav-tabs > li.active a:focus, .nav-tabs > li.active a:hover {
    border: 0;
    background-color: transparent;
    border-radius: 7px 7px 0 0;
    border-bottom: 4px solid #ffc600;
    background-color: #ffc600;
    color: #fff;
}

.policy-viewer-btn-holder 
{
	padding: 20px 0 20px 0;
	/*font-family: 'Lato', sans-serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	width : 100%;
	}
	
.policy-viewer-buttons 
{
	padding: 15px;
    font-size: 16px !important;
    color: #000;
    margin-left: 20px;
    float: right !important;
	}
	
.policy-viewer-buttons:hover
{
	text-decoration: none;
	color: #000;
	}
	
.policy-viewer-buttons a:active
{
	text-decoration: none;
	color: #000;
	}
	
/*****INFOSITE****/
.default-banner .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.default-banner .justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.default-banner .product-row {
    align-items: center;
}

@media (min-width: 992px) {
	.default-banner > .col-lg-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	
	.default-banner > .col-lg-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

@media (min-width: 768px) {
	.default-banner > .col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 576px) {
	.default-banner > .col-sm-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}


.D250x250
{
	width: 250px;
	height: 250px;
	}
	
@media (max-width: 768px)
{
	.D250x250
	{
		width: 250px;
		height: auto;
		}
	}
	
.btn-etiqa 
{
	width: 150px;
	margin-top: 10px; 
	background-color: #ffbf00 !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	color: #333333 !important;
	}
	
.btn-etiqa-100
{
	margin-top: 10px; 
	background-color: #ffbf00 !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	color: #333333 !important;
	}
	
.btn-etiqa-dark 
{
	width: 150px;
	margin-top: 10px; 
	background-color: #423c3c !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	color: #fff !important;
	}
	
.btn-etiqa-dark-100
{
	margin-top: 10px; 
	background-color: #423c3c !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	color: #fff !important;
	}
	
.btn-etiqa-gray 
{
	width: 150px;
	margin-top: 10px; 
	background-color: #939598 !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	color: #333333 !important;
	}

.btn-etiqa-gray-100
{
	margin-top: 10px; 
	background-color: #a4a4a4 !important; 
	font-family: 'DroidSans-Bold'; 
	line-height: 1.25; 
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	color: #333333 !important;
	}

@media (max-width: 768px)
	{
	    .btn-etiqa 
            {
	           /*width: 100px;*/
	        }
	   /* .btn-etiqa-gray 
            {
               width: 100px;
            }
        .btn-etiqa-dark 
            {
              width: 100px;
            }  
        .btn-premium  
            {
                   width: 170px;
            }*/
         .font-slider
            {
                font-size:10px;
            }     
	}
	
.text-white {
    color: #ffffff !important;
}

.font-14 {
    font-size: 14px !important;
}

.no-deco 
{
	text-decoration: none !important;
	}
	
.quotation-banner .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.quotation-banner .justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.quotation-banner .product-row {
    align-items: center;
}

@media (min-width: 992px) {
	.quotation-banner > .col-lg-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	
	.quotation-banner > .col-lg-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

@media (min-width: 768px) {
	.quotation-banner > .col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 576px) {
	.quotation-banner > .col-sm-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*============================== Quotation Styles  ======================================*/
/************** MODALS OVERWRITE ***************/
#BREAKDOWN .modal-content  {
    background-color: #fff;
    border: 0;
    border-radius: 0 !important;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    outline: 0;
    /*font-family: 'Lato', Sans-Serif;*/
    font-family: 'DroidSans-Regular', sans-serif;
}


@media (min-width: 992px){
#BREAKDOWN .modal-lg 
{
    width: 768px;
	}
}

#BREAKDOWN h2
{
	margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 900;
    font-size : 20px;
	}

#BREAKDOWN h1
{
	margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 900;
    font-size : 20px;
	}

#BREAKDOWN .summary-body 
{
	/*padding: 0 35px 0 35px;*/
	font-size: 12px;
	/*font-family: 'Lato', sans-serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	text-align:left;
	}
	
#BREAKDOWN .summary-body p
{
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	}
	
#BREAKDOWN .premium-holder
{
	padding: 10px 10px 10px 10px;
	font-size: 20px;
	font-weight:900;
	max-width:630px;
	color: #fff;
	}
	
#BREAKDOWN .premium-holder .col-md-6
{
	margin-bottom: 0;
	}
	
#BREAKDOWN ._dark-holder 
{
	background-color: #a4a4a4 !important;
	}

#BREAKDOWN ._darker-holder 
{
	background-color: #423c3c !important;
	}

#BREAKDOWN .summary-body .p2
{
	text-align:right;
	}

@media (max-width: 600px)
{
	/*#BREAKDOWN .summary-body 
	{
		padding: 0 35px 0 35px;
		}*/
		
	#BREAKDOWN .summary-body p
	{
		font-size: 13px;
		line-height: 15px;
		}
	#BREAKDOWN .summary-body .col-md-6
	{
		padding: 0;
		}
		
	#BREAKDOWN .summary-body .col-md-3
	{
		padding: 0;
		}
		
	#BREAKDOWN .premium-holder
	{
		padding: 10px 10px 10px 10px;
		font-size: 16px;
		font-weight:900;
		color: #fff;
		}
}


.summary-body 
{
	padding: 0 35px 0 35px;
	font-size: 16px;
	/*font-family: 'Lato', sans-serif;*/
	font-family: 'DroidSans-Regular', sans-serif;
	}
	
.summary-heading
{
	background-color: #423c3c !important;
    color:  #fff !important;
    border-radius: 0;
    font-size: 20px;
    font-weight: 900;
    width: 100%;
    position: relative;
    padding: 10px 15px;
	}

.summary-body p
{
	padding-top: 10px;
	}
.summary-body .panel-body
{
	background-color: #fff !important;
	}
	
.summary-body .control-label
{
	color: #a4a4a4 !important;
	font-weight: 500;
	}

.summary-inner-body
{
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
    border: none;
	}
	
@media(max-width: 768px)
{
    #formPad
    {
        padding: 15px 0px 25px 0px !important;
    }
    
	.summary-body 
	{
		padding: 0 25px 0 25px;
		font-size: 16px;
		/*font-family: 'Lato', sans-serif;*/
        font-family: 'DroidSans-Regular', sans-serif;
		}
	
	}

.se-pre-con 
    {  
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: url(../images/LoadingIconGIFv2.gif) center no-repeat #fff;
    background-size: 200px 200px;
    }

@media (max-width: 768px)
{
    .btn-etiqa-gray {
        width: 110px;
    }

	.se-pre-con 
    {  
    background-size: 150px 150px;
    }
}

.dataTables_filter
    {   
        text-align:right;
    }
    
.fontBold
   {
       font-family: 'DroidSans-Bold'!important;
   }
   
.fontRegular
   {
       font-family: 'DroidSans-Regular', sans-serif;
   }
   
.helpline-wrapper
{
      z-index: 99998;
      position: fixed;
      bottom: 70px;
      right: 80px;
      background-color: #fff !important;
      /*opacity: 0.7;*/
      border-radius: 8px;
      width: 230px;
      height: auto;
      border: 2px solid #939598 !important;
      color: #ffbf00 !important;
      }
      
.helpline-header 
{
      background-color: #000 !important;
      color: #fff !important;
      padding: 8px 20px;
      border-top-left-radius: 7px;
      border-top-right-radius: 7px;
      font-family: "DroidSans-Bold";
      position: relative;
      }
      
.helpline-close 
{
      position: absolute;
      right: 10px;
      color: #fff;
      font-family: "DroidSans-Bold";
      cursor: pointer;
      }

.helpline-body 
{
      padding: 20px 10px;
      transition: ease .5s;
      }

.helpline-icon 
{
      height: 50px;
      width: 50px;
      border-radius: 50%;
      background-color: #ffbf00;
      color: #fff !important;
      font-family: "DroidSans-Bold";
      font-size: 30px;
      display: flex;
      justify-content: center;
      align-items:center;
      }

.helpline-right-content 
{
      font-size: 14px;
      text-align: left;
      color: #000 !important;
      height:50px;
      vertical-align:middle;
      font-family: "DroidSans-Bold";
      }

.helpline-body .col-xs-4
{
      padding-right: 5px;
      }

.helpline-body .col-xs-8
{
      padding-left: 5px;
      }

.helpline-numbers 
{
      color: #000 !important;
      font-size: 14px;
      font-family: "DroidSans-Bold";
      }

#MODALMESSAGEADVISORY 
{
       top: 30%;
       }

#MODALMESSAGEADVISORY .modal-content  {
    background-color: #fff;
    border: 0;
    border-radius: 0 !important;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    outline: 0;
    font-family: 'DroidSans-Regular', Sans-Serif;
}
       
#MODALMESSAGEADVISORY .modal-body .advisory-content
{
       padding: 10px;
       }

#MODALMESSAGEADVISORY .modal-body .text-advisory
{
       color: #ffbf00 !important;
       }

#MODALMESSAGEADVISORY .advisory-content p 
{
       line-height: 20px;
       text-align: justify;
       }

/**** ERROR PAGE ****/
.error-wrapper 
 {
	min-height:80vh;
	display: flex;
	justify-content:center;
	width: 100%;
	align-items: center;
	font-family: "DroidSans-Regular", Sans-Serif;
	font-size: 16px;
	padding: 20px;
}

.error-wrapper .center 
  {
      width: 800px;
      padding-top: 50px;
      padding-bottom: 50px;
    }
    
.error-wrapper  img 
 {
	margin-left: auto;
	margin-right: auto;
	display: block;
 }

.error-wrapper .center  h1 
{
	font-family: 'DroidSans-Bold';
	font-size: 120px;
	padding-top: 50px;
	letter-spacing: 15px;
	margin-bottom: 15px;
	}
	
.error-wrapper .center  p 
{
	margin-bottom: 20px;
	line-height: 25px;
	}
	
.error-wrapper .text-yellow 
{
	color: #ffbf00;
	font-family: 'DroidSans-Bold';
	font-size: 20px;
	}

@font-face {
    font-family: "DroidSans-Bold";
    src: url('../fonts/DroidSans-Bold_0.ttf');
    font-display: fallback;
}

@font-face {
    font-family: "DroidSans-Regular";
    src: url('../fonts/DroidSans-Regular_0.ttf');
    font-display: fallback;
}

.default-flexbox 
{
	width: 100%; 
	display:flex;
	}
	
	
.default-flexbox-item 
{
	flex-grow: 1; 
	flex-shrink: 1;
	border: 1px solid;
	width: 33.3%;
	}
	
@media (max-width : 768px) 
{
    #fvalue 
    {
        font-size: 12px;
        }
        
    #mvalue 
    {
        font-size: 12px;
        }
        
    #lvalue 
    {
        font-size: 12px;
        }
    }
    
/*============================== Wizard Steps Styles  ======================================*/

.wizard-steps
{
	height: 100px; display: flex; flex-wrap: wrap; position : relative; width: 100%; margin-left: auto; margin-right: auto;
	}
	
.fa-steps 
{
	height: 100%; flex: 1; display: flex; justify-content: center; position: unset; 
	/*align-items: center; flex-direction: column;*/
	}

.fa-right-line 
{
	position: absolute; top: 37%; right: 0; height: 3px; background-color: #ffbf00; width: 30%; z-index: 1;
	}

.fa-left-line 
{
	position: absolute; top: 37%; left: 0; height: 3px; background-color: #ffbf00; width: 30%; z-index: 1;
	}
	
.fa-full-line 
{
	position: absolute; top: 37%; height: 3px; background-color: #ffbf00; width: 100%; z-index: 1;
	}

.fa-icon 
{
	border-radius: 50%; height: 40px; width: 40px;  border: solid 3px #fff ; z-index: 2 ; background-color: #ddd; text-align: center; display: flex; justify-content: center; align-items: center;
	}
	
.fa-icon > :first-child
{
	color: #fff !important; font-size: 20px !important;
	}

.fa-steps .active 
{
	/*background-color: #ffbf00 !important;*/
	border-radius: 0; height: 40px; width: 40px;  border: none ; z-index: 2 ; background-color: transparent; background-image: url('../assets/icons/Calculator Car Wheel.png'); background-repeat: no-repeat; background-size: cover;
	}
	
.fa-steps p 
{
	font-family: 'DroidSans-Bold'; font-size: 12px; padding-top: 10px;
	}

@media (max-width: 768px) 
{
	.wizard-steps {
		height: 50px;
		width: 100%;
	}
	
	.fa-steps p 
	{
		display : none;
	}
		
	.fa-right-line 
	{
		top: 48%;
		width: 20%;
	}

	.fa-left-line 
	{
		top: 48%;
		width: 20%;
	}
		
	.fa-full-line 
	{
		top: 48%;
		width: 20%;
	}
}

#MODALSAVEFORLATER2 img {
    display: block;
    height: 150px;
    width: 150px;
    margin: 20px auto;
}



/************** Helpline Styles ***************/

.helpline-wrapper
{
	z-index: 1000;
	position: fixed;
	bottom: 70px;
	right: 60px;
	background-color: #fff !important;
	/*opacity: 0.7;*/
	border-radius: 8px;
	width: 180px;
	height: auto;
	border: 2px solid #939598 !important;
	color: #ffbf00 !important;
	
	}
	
.helpline-header 
{
	background-color: #000 !important;
	color: #fff !important;
	padding: 8px 20px;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	font-family: "DroidSans-Bold";
	position: relative;
	font-size:14px;
	}
	
.helpline-close 
{
	position: absolute;
	right: 10px;
	color: #fff;
	font-family: "DroidSans-Bold";
	cursor: pointer;
	}
con
.helpline-body 
{
	padding: 20px 10px;
	transition: ease .5s;
	}

.helpline-icon 
{
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: #ffbf00;
	color: #fff !important;
	font-family: "DroidSans-Bold";
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items:center;
	}

.helpline-right-content 
{
	font-size: 12px;
	text-align: left;
	color: #000 !important;
	height:50px;
	vertical-align:middle;
	font-family: "DroidSans-Bold";
	font-size:0.6rem
	}

.helpline-body .col-xs-4
{
	padding-right: 5px;
	display: flex;
	justify-content: center;
	}

.helpline-body .col-xs-8
{
	padding-left: 5px;
	}

.helpline-numbers 
{
	color: #000 !important;
	font-size: 0.7rem;
	font-family: "DroidSans-Bold";
	word-break:break-all
	}
	/************** Helpline Styles ***************/
/***** LABEL ERROR VALIDATION start  ******/
.error-validation-fields
{
	padding:5px;
	color: #bb5151;
    display:flex;
    margin:auto;
    align-items:center;
    justify-content:center;
}

.error-validation-label
{
	color: #bb5151;
	font-size: 11px;
    margin: 0 auto;
}

#lblValidation_Departuredate i
{
	font-size: 17px;
}


.img-alert
{
	margin-bottom: -2px;	
}

.error-validation-dependent
{
	white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1020px)
{
	.error-validation-dependent
	{
		width: 100% !important;
	}
}
/***** LABEL ERROR VALIDATION  end ******/


/************** Conversion Counter Styles ***************/	

#secondCounter_viewNoCount{
    width:360px;
	height: auto;
	z-index: 1;

	bottom: 110px;
	right: 60px;
	padding: 15px 30px;
	border-radius: 8px;
	background-color: #fff !important;
	box-shadow: 1px 1px 3px 0px #303030;
	font-family: "DroidSans-Bold";

}
.conversion-counter-close1{
	position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 5px 10px;
	font-size: 18px;
}
	
	
.conversion-counter-close{
	position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 5px 10px;
	font-size: 18px;
}


.conversion-counter
{
	width: 360px;
	height: auto;
	z-index: 1;
	position: fixed;
	bottom: 110px;
	right: 60px;
	padding: 15px 30px;
	border-radius: 8px;
	background-color: #fff !important;
	box-shadow: 1px 1px 3px 0px #303030;
	font-family: "DroidSans-Bold";
	margin:10px;

}
	
#lbl_Counter
{
    background-color: black;
    color: white;
    font-size: 44px;
    display: block;
    text-align: center;
    border-radius: 8px;
    padding: 4px 0px;
    width: 100%;
}

.conversion-counter-label
{
	padding: 0px;
}

.conversion-desc
{
	padding: 0px;
    padding-left: 15px;
}


#viewCounter
{
	display: flex;
	align-items: center;
}

#viewReturnUser .conversion-desc, viewNoCount .conversion-desc
{
	padding: 0px 15px !important;
}

@media (max-width: 990px){
	.conversion-counter-close
	{
		display: block !important;
	}
}

@media (max-width: 500px){
	.conversion-form-mobile
	{
		bottom: 60px !important;
		right: 0 !important;
		left: 0;
		margin: auto;
		width: 95%;
		font-size: 14px;
	}

	.conversion-home-mobile
	{
		right: 0 !important;
		left: 0;
		margin: auto;
		width: 74%;
		font-size: 14px;
	}
}

@media (max-width: 410px){
	.conversion-home-mobile
	{
		width: 69%;
	}
}

@media (max-width: 360px){
	#secondCounter_viewNoCount
	{
		width: 95% !important;
	}
}

/***** LABEL ERROR VALIDATION start  ******/
.error-validation-fields
{
	padding:5px;
	color: #bb5151;
    display:flex;
    margin:auto;
    align-items:center;
    justify-content:center;
}
#lblValidation_ddlBrandName
{
	padding:5px;
	color: #bb5151;
}
.error-validation-label
{
	color: #bb5151;
	font-size: 11px;
    margin: 0 auto;
}

#lblValidation_Departuredate i
{
	font-size: 17px;
}


.img-alert
{
	margin-bottom: -2px;	
}

.error-validation-dependent
{
	white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1020px)
{
	.error-validation-dependent
	{
		width: 100% !important;
	}
}
/***** LABEL ERROR VALIDATION  end ******/

/***********/
.default-body .form-control {
    border-radius: 7px;
    height: 40px;
    text-align: center;
}
#InputLink
{
	color:#ffbf00;
}

/****secondformInputfield****/



/****Renewal Form****/

.default-policy-viewer h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: "DroidSans-Bold";
    margin-top:2%;
    
}
#renewalheader
{
	margin-top:2%;
}
/****Renewal Form****/
#RenewalPnelbody
{
	padding-left: 5vw !important;
	padding-right:5vw !important;
	
}
#MODALDATAPRIVACY
{
padding: 10px;
align-items:center !important;
margin: 0 auto;
}
    
/****DATA PRIVACY MODAL} ****/


/****MODAL PAYNAMICS PROCEED ****/
/****MAYBANK QR  ****/

@media (max-width: 280px)
{
	#btnProceed_Back
{
  margin-right:0px!important;
}
	
}
@media (max-width: 700px)
{
	div.row.cards-row	
{
	 display:flex !important;
	 flex-direction:column!important;
     place-content: center;
     
}

div.cards	
{
	margin:2%;
}

div.payment-container
{
   display: flex;
    justify-content: center;
}

    
}


   #cards_PDCS,#cards_ADA,#cards_OTP	
{
 width: 11rem;
 height:12rem; box-shadow:#fff;
 box-shadow: 1px 5px 6px 0px #808080;
 background-color: #fff; 
 border-radius: 10px 10px;
    
}
   
@media(max-width:780px)
{
		
   #cards_PDCS:hover,#cards_ADA:hover,#cards_OTP:hover	
{
   transform:scale(1.1);
    transition: all .1s;
    column-gap:5%;
    border:solid;
    border-color:#ffbf00;
    
}

	}

#cards_PDCS:hover,#cards_ADA:hover,#cards_OTP:hover	
{
  transform:scale(1.1);
    transition: all .1s;
    column-gap:5%;
    border:solid;
    border-color:#ffbf00;
    
}



.cards-body
{
	font-size:10px;
	height:10px; 
	margin-bottom:10px;
}
@media(max-width:500px)
{
	#cards_VrfyPDCS,#cards_VrfyADA,#cards_VrfyOTP
{
	width: 300px !important;
    box-shadow: #fff;
    box-shadow: 0 0 4px 0px;
    background-color: #eaeaea66;
    border-radius: 10px 10px;
    filter: drop-shadow(2px 4px 100px #ffbf0042);
    display: flex !important;
    flex-direction: column!important;
    place-content: center;
}
}

@media (max-width: 400px)
{
	#cards_VrfyPDCS,#cards_VrfyADA,#cards_VrfyOTP
{
	width: 300px !important;
    box-shadow: #fff;
    box-shadow: 0 0 4px 0px;
    background-color: #eaeaea66;
    border-radius: 10px 10px;
    filter: drop-shadow(2px 4px 100px #ffbf0042);
     display: flex !important;
    flex-direction: column!important;
    place-content: center;
}
}


@media (max-width: 320px)
{
	#cards_VrfyPDCS,#cards_VrfyADA,#cards_VrfyOTP
{
	width: 280px !important;
    box-shadow: #fff;
    box-shadow: 0 0 4px 0px;
    background-color: #eaeaea66;
    border-radius: 10px 10px;
    filter: drop-shadow(2px 4px 100px #ffbf0042);
     display: flex !important;
    flex-direction: column!important;
    place-content: center;
}
}

@media (max-width: 280px)
{
	#cards_VrfyPDCS,#cards_VrfyADA,#cards_VrfyOTP
{
	width: 250px !important;
    box-shadow: #fff;
    box-shadow: 0 0 4px 0px;
    background-color: #eaeaea66;
    border-radius: 10px 10px;
    filter: drop-shadow(2px 4px 100px #ffbf0042);
     display: flex !important;
    flex-direction: column!important;
    place-content: center;
}
}

@media(max-width: 250px)
{
	#cards_VrfyPDCS,#cards_VrfyADA,#cards_VrfyOTP
{
	width: 250px !important;
    box-shadow: #fff;
    box-shadow: 0 0 4px 0px;
    background-color: #eaeaea66;
    border-radius: 10px 10px;
    filter: drop-shadow(2px 4px 100px #ffbf0042);
     display: flex !important;
    flex-direction: column!important;
    place-content: center;
}
}
/****MAYBANK QR  ****/