﻿@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: "HelvCondensed";
  src: url("fonts/RN00145Condensed-W02.eot?#iefix");
  src: url("fonts/RN00145Condensed-W02.eot?#iefix") format("eot"),url("fonts/RN00145Condensed-W02.woff") format("woff"),url("fonts/RN00145Condensed-W02.ttf") format("truetype"),url("fonts/RN00145Condensed-W02.svg#RN00145Condensed-W02") format("svg");
}

@font-face {
  font-family: "HelvCondensedLight";
  src: url("fonts/RN00145CondensedLight-W02.eot?#iefix");
  src: url("fonts/RN00145CondensedLight-W02.eot?#iefix") format("eot"),url("fonts/RN00145CondensedLight-W02.woff") format("woff"),url("fonts/RN00145CondensedLight-W02.ttf") format("truetype"),url("fonts/RN00145CondensedLight-W02.svg#RN00145CondensedLight-W02") format("svg");
}

@font-face {
  font-family: "HelvCondensedBold";
  src: url("fonts/RN00145CondensedBold-W02.eot?#iefix");
  src: url("fonts/RN00145CondensedBold-W02.eot?#iefix") format("eot"),url("fonts/RN00145CondensedBold-W02.woff") format("woff"),url("fonts/RN00145CondensedBold-W02.ttf") format("truetype"),url("fonts/RN00145CondensedBold-W02.svg#RN00145CondensedBold-W02") format("svg");
}

@font-face {
  font-family: "HelvCondensedMedium";
  src: url("fonts/RN00145CondensedMedium-W02.eot?#iefix");
  src: url("fonts/RN00145CondensedMedium-W02.eot?#iefix") format("eot"),url("fonts/RN00145CondensedMedium-W02.woff") format("woff"),url("fonts/RN00145CondensedMedium-W02.ttf") format("truetype"),url("fonts/RN00145CondensedMedium-W02.svg#RN00145CondensedMedium-W02") format("svg");
}

@font-face {
  font-family: "HelvCondensedThin";
  src: url("fonts/RN00145CondensedThin-W02.eot?#iefix");
  src: url("fonts/RN00145CondensedThin-W02.eot?#iefix") format("eot"),url("fonts/RN00145CondensedThin-W02.woff") format("woff"),url("fonts/RN00145CondensedThin-W02.ttf") format("truetype"),url("fonts/RN00145CondensedThin-W02.svg#RN00145CondensedThin-W02") format("svg");
}

@font-face {
  font-family: "HelvThinItalic";
  src: url("fonts/RN00145ThinItalic-W02.eot?#iefix");
  src: url("fonts/RN00145ThinItalic-W02.eot?#iefix") format("eot"),url("fonts/RN00145ThinItalic-W02.woff") format("woff"),url("fonts/RN00145ThinItalic-W02.ttf") format("truetype"),url("fonts/RN00145ThinItalic-W02.svg#RN00145ThinItalic-W02") format("svg");
}

@font-face {
  font-family: "Helv";
  src: url("fonts/RN00145Roman-W02.eot?#iefix");
  src: url("fonts/RN00145Roman-W02.eot?#iefix") format("eot"),url("fonts/RN00145Roman-W02.woff") format("woff"),url("fonts/RN00145Roman-W02.ttf") format("truetype"),url("fonts/RN00145Roman-W02.svg#RN00145Roman-W02") format("svg");
}

@font-face {
  font-family: "HelvBold";
  src: url("fonts/RN00145Bold-W02.eot?#iefix");
  src: url("fonts/RN00145Bold-W02.eot?#iefix") format("eot"),url("fonts/RN00145Bold-W02.woff") format("woff"),url("fonts/RN00145Bold-W02.ttf") format("truetype"),url("fonts/RN00145Bold-W02.svg#RN00145Bold-W02") format("svg");
}

.btn {
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.5625rem 0.8125rem 0.5625rem 3rem;
  font-size: 0.875rem;
  font-weight: bold;
  min-height: 2.25rem;
  background: #dddddd;
  color: #000;
  position: relative;
  text-decoration: none !important;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  transform: perspective(1px) translateZ(0);
}

  .btn:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #b1b1b1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

  .btn:hover {
    text-decoration: none;
    cursor: pointer;
  }

    .btn:hover:after {
      -webkit-transform: scaleX(1);
      transform: scaleX(1);
    }

    .btn:hover:before {
      animation-name: icon;
      animation-duration: 0.5s;
    }

  .btn:before {
    content: "\f105";
    font-family: "FontAwesome";
    display: inline-block;
    font-size: 1em;
    font-weight: normal;
    position: absolute;
    left: 0;
    margin: auto;
    border-right: 1px solid #9a9a9a;
    font-size: 1.25rem;
    width: 2.25rem;
    text-align: center;
    height: calc(100% - 12px);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1em;
    font-weight: bold;
    overflow: hidden;
    top: 0;
    bottom: 0;
  }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background-color: #333333;
  background-image: none;
  border: none;
}

.ui-datepicker-days-cell-over {
  background-color: #F45000 !important;
}

  .ui-datepicker-days-cell-over a {
    background-color: #F45000 !important;
    color: #FFFFFF !important;
  }

.ui-datepicker-today {
  background: none !important;
}

  .ui-datepicker-today span {
    border: 1px solid #333333;
  }

a.ui-state-hover, a.ui-state-focus {
  background-color: #888888;
  color: #FFFFFF !important;
}

.ui-datepicker-next-hover {
  background-color: transparent !important;
}

.ui-datepicker-prev-hover {
  background-color: transparent !important;
}

.ui-datepicker-close {
  color: #333333 !important;
  background-position: left 2px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  color: #888888;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  color: #888888;
}

.locationTypeLabel {
  color: #333333;
}

p.locationTypeLabel_1 {
  background-image: url(../images/icon_airport_renault.png);
  background-position: 2px top;
  background-repeat: no-repeat;
}

p.locationTypeLabel_2, p.locationTypeLabel_3 {
  background-image: url(../images/icon_city_renault.png);
  background-position: 6px top;
  background-repeat: no-repeat;
}

p.locationTypeLabel_4 {
  background-image: url(../images/icon_port_renault.png);
  background-position: 5px top;
  background-repeat: no-repeat;
}

p.locationTypeLabel_5 {
  background-image: url(../images/icon_gare_renault.png);
  background-position: 5px top;
  background-repeat: no-repeat;
}

span.locationTypeImage_1 {
  background-image: url(../images/icon_airport_renault.png);
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 23px;
  padding-top: 2px;
}

span.locationTypeImage_2, span.locationTypeImage_3 {
  background-image: url(../images/icon_city_renault.png);
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 23px;
  padding-top: 2px;
}

span.locationTypeImage_4, span.locationTypeImage_22 {
  background-image: url(../images/icon_port_renault.png);
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 23px;
  padding-top: 2px;
}

span.locationTypeImage_5 {
  background-image: url(../images/icon_gare_renault.png);
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 23px;
  padding-top: 2px;
}

.ui-menu-item.itemSubItem a {
  color: #888888;
}

.ui-datepicker-close {
  background-image: url(../images/img_ico_fermer_renault.gif);
}

.ui-datepicker-calendar .ui-datepicker-current-day, .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-active {
  color: #FFF !important;
  background-color: #F45000 !important;
}

.ui-datepicker-calendar .ui-datepicker-days-cell-over, .ui-datepicker-calendar .ui-datepicker-days-cell-over a {
  background-color: transparent !important;
  color: #222 !important;
}

.modelSelectionList .categoryName {
  color: #888888;
}

.Step3_CarMoreDetails a {
  color: #FFF;
}


/* DIALOG */
.Dialog_Title {
  color: #333333;
}

  .Dialog_Title .Dialog_Close, .Dialog_Title .Dialog_Print {
    color: #888888;
  }

    .Dialog_Title .Dialog_Close:hover, .Dialog_Title .Dialog_Print:hover {
      color: #C94200;
    }

  .Dialog_Title .Dialog_Close {
    font-size: 0;
    height: 100%;
    line-height: normal;
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
    cursor: pointer;
    border: none;
    color: #b4b4b4;
    text-align: center;
    padding: 0;
    width: 50px;
  }

    .Dialog_Title .Dialog_Close, .Dialog_Title .Dialog_Close .Icon {
      background-image: none !important;
    }

      .Dialog_Title .Dialog_Close .Icon {
        background: none;
        position: static;
        width: 100%;
        height: 100%;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 24px;
      }

        .Dialog_Title .Dialog_Close .Icon:after {
          content: "\f00d";
          font-family: FontAwesome;
          display: block;
          text-indent: 0;
          color: #b4b4b4;
        }

        .Dialog_Title .Dialog_Close .Icon:hover:after {
          color: #444444;
        }

div.loading {
  color: #231f20;
}

  div.loading .header {
    height: 50px;
  }

    div.loading .header img {
      width: 50px;
      height: 50px;
    }

    div.loading .header .title {
      font-size: 24px;
      letter-spacing: -1px;
      position: relative;
      border: 1px solid #918f90;
      padding: 12px;
      height: 24px;
      width: 474px;
    }

    div.loading .header .subtitle img {
      position: absolute;
      bottom: -1px;
      right: -1px;
      margin: 0;
      padding: 0;
      width: 28px;
      height: 28px;
    }
		
		.loadingState span{
			font-family: HelvCondensed, sans-serif;
    font-weight: normal;
		}

.ThankYou_Title {
  color: #000;
}

/* Model Selection */

.ModelSelectionButton.Blue {
  color: #fff;
  background: #888888;
  border: none;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  text-align: center;
}

  .ModelSelectionButton.Blue:hover {
    background: #6d6d6d;
  }

/* Tarmes et conditions */
.terms .carEquivalent .spanForBroker {
  font-family: "HelvCondensedBold", sans-serif;
}

.terms .carEquivalent .carEquivalentName {
  font-family: "HelvCondensedBold", sans-serif;
}

.Step2_Message {
  background: #FFFFFF;
  color: #F45000;
  border: solid 1px #F45000;
}
.StepContentSearch .Step1Summary .Step1ProceedButton {
  background: #F45000;
  border-color: #F45000;
}
	.StepContentSearch .Step1Summary .Step1ProceedButton:hover {
		background-color: #C94200;
		border-color: #C94200;
		color: #FFFFFF;
	}
.Step1Summary .desktop .contentSticky .content_Sticky_Btn .BtnShowSearch {
  background: #F45000;
  border-color: #F45000;
  color: #FFFFFF;
  border-radius: 10000px;
}
	.Step1Summary .desktop .contentSticky .content_Sticky_Btn .BtnShowSearch:hover {
		background: #C94200;
		color: #FFFFFF;
		text-decoration: none;
	}
.closeSticky {
	color: #333333;
}
.closeSticky {
	color: #333333;
}
.step.active {
	color: #333333;
}

  .step.active:before {
    background: #F45000;
    color: #FFFFFF;
  }
.Step1_Main_Title{
	display:none;
}

.Step1_Title {
  font-family: HelvCondensedMedium;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}

.Step1ProceedButton, .Step2_CarButton, .ThankYou_Button a, .Step2ActionBtn {
  background: #F45000;
  color: #FFFFFF;
  border-radius: 1000px;
  text-decoration: none;
  border: none;
}

.Step1ProceedButton:hover, .Step2_CarButton:hover, .ThankYou_Button a:hover, .Step2ActionBtn:hover {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #C94200;
}

.Step1ProceedButton:after, .Step2_CarButton:before, .ThankYou_Button a:after, .Step2ActionBtn:before {
  background: #F45000;
}
.Step1ProceedButton:hover:after {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.Step1ProceedButton:active, .Step2_CarButton:active, .ThankYou_Button a:active, .Step2ActionBtn:active {
  background: #C94200;
  border-color: #C94200;
}

a.Step3_ProceedPayment {
  background-color: #F45000 !important;
  border: none !important;
}

a.Step3_ProceedPayment:hover {
  background-color: #C94200 !important;
}

a.Step3_ProceedButton.Step3_AvantDepart {
  background-color: #F45000 !important;
  border: none !important;
}

a.Step3_ProceedButton.Step3_AvantDepart:hover {
  background-color: #C94200 !important;
}

a.Step3_ProceedPaymentButton {
  background-color: #F45000 !important;
  border: none !important;
}

a.Step3_ProceedPaymentButton:hover {
  background-color: #C94200 !important;
}

a.Step3_estimate.Gray {
  background: #F45000 !important;
  border-color: #F45000 !important;
}

.termsAndConditions .carText h2 {
  color: #333333;
}

.Step3_TermAndConditionAcceptationRow a {
  color: #333333;
}

.Step2_CarBestOffer, .Step2_CarBestOffer .Step2_CarTopPart {
  background: #333333;
}
.Step3_Button a.Gray {
	border-color: #ababab;
	color: #4a4a4a;
	background: #dddddd;
}
	.Step3_Button a.Gray:hover {
		color: #4a4a4a;
	}
		.Step3_Button a.Gray:hover:after {
			-webkit-transform: scaleX(0);
			transform: scaleX(0);
		}
/* 2017 */

.bgDialog {
  background-image: url(../images/bg-renault-loading.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #e6e6e6 !important;
}

.loadingState {
  color: #FFFFFF;
  background: #F45000;
}

.loadingMessage {
  background: #333333;
  color: #FFF;
}

  .loadingMessage ul li:before {
    color: #F45000;
  }

.terms .Dialog_Title {
  color: #333333;
}

  .terms .Dialog_Title .Dialog_Print {
    color: #444444;
  }

    .terms .Dialog_Title .Dialog_Print:hover {
      background: #FFF;
      color: #444444;
    }

  .terms .Dialog_Title .Dialog_Close .Icon:hover:after {
    color: #444444;
  }

.terms_content {
  background: #ebebeb;
}

.terms .Step2_CarTopPart {
  background: #3b3b3b;
}

  .terms .Step2_CarTopPart .Step2_CarName, .terms .Step2_CarTopPart .Step2_CarModel, .terms .Step2_CarTopPart .Step2_CarModel .Step2_CarOrEquivalent {
    color: #FFF;
  }

.termsFeatures .features .featureName {
  background: #333;
  font-family: "HelvCondensedMedium", sans-serif;
  color: #FFF;
  -webkit-print-color-adjust: exact;
}


.carAddInfos .carTitle {
  background: #333;
  font-family: "HelvCondensedMedium", sans-serif;
  color: #FFF;
}

  .carAddInfos .carTitle:hover {
    background: #000;
  }

.carAddInfos .carTexte .withBullet:before {
  color: #919393;
}

.ThankYou_CommentsBox .comments .wrapSubmit input:hover {
  background: #000;
  color: #FFF;
}

.ThankYou_Cta.cta_infolettre {
  background-color: #333333;
  background-image: url(../Images/bg-cta-infolettre-renault.jpg);
}

.ThankYou_Cta.cta_links {
  background-color: #333333;
  background-image: url(../Images/bg-cta-links-renault.jpg);
}

.ThankYou_Cta .cta_content h3 {
  font-family: "HelvCondensedMedium";
  font-weight: normal;
}
.Step1_BlockContainer {
  background: #F5F5F6;
  border-radius: 12px;
  padding: 23px 25px;
  width: 470px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0,0,0,0.25);
}
.Step1_Notice {
	display: none;
}

.Step2_CarMoreDetails a{
color: #000;
}

.popinCarChooser .closePopin {
  background: none;
  font-size: 1.25rem;
}

  .popinCarChooser .closePopin:before {
    content: "\f00d";
    font-family: FontAwesome;
    display: block;
    color: #FFF;
  }

div.lightbox {
  background: #000;
}

.combobox_button div {
  background-image: url(../Images/fake_select_renault.png);
  background-repeat: no-repeat;
  border: none;
  background-position: 5px;
}

#PickUpDate, #DropOffDate {
  background-image: url(../Images/bg-select-date_renault.png);
  background-position-x: 92%;
}

.Step2_CarTeamChoice, .Step2_CarNewModel {
  background-color: #FFFFFF !important;
  color: #F45000 !important;
  border: solid 1px #F45000;
}

.Step2_CarLimitedQuantity {
  background-color: #A61222 !important;  
}

#PickUpDateSummary, #DropOffDateSummary {
  background-image: url(../Images/bg-select-date_renault.png);
  background-position-x: 92%;
}

.Step3_discount {
  background: #F45000;
}

.Step2_CarNotice .Step2_CarModel_Of_The_Month {
  background-color: #FFFFFF !important;
  color: #F45000 !important;
  border: solid 1px #F45000;
}

@media screen and (min-width: 768px) {
  .Step3_Button .Step3_estimate.Gray {
    color: #F45000 !important;
  }

  .ui-datepicker .ui-datepicker-next span {
    background-image: url(../images/img_fleche_next_renault.png);
    background-size: contain;
  }

  .ui-datepicker .ui-datepicker-prev span {
    background-image: url(../images/img_fleche_back_renault.png);
    background-size: contain;
  }

  .ui-datepicker .ui-datepicker-next span:hover {
    background-image: url(../images/img_fleche_next_renault_hover.png);
    background-size: contain;
  }

  .ui-datepicker .ui-datepicker-prev span:hover {
    background-image: url(../images/img_fleche_back_renault_hover.png);
    background-size: contain;
  }
}

@media screen and (max-width: 767px) {
  .combobox_button div:before {
    color: #333;
  }

  .termsFeatures .features .featureName:hover {
    background: #000;
    cursor: pointer;
  }

  .Dialog_Title .Dialog_Close span {
    display: -ms-flexbox!important;
    display: -webkit-flex!important;
    display: flex!important;
    background-image: none!important;
}

  .Step3_CarMoreDetails a {
    color: #000;
  }
	.ui-datepicker .ui-datepicker-buttonpane button {
		background: #F45000;
		border: 2px solid #C94200;
		color: #FFFFFF !important;
	}

	body .ui-datepicker-today span {
		border: 1px solid #C94200;
	}

	body .ui-datepicker-calendar .ui-datepicker-current-day,
	body .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-active {
		background: #F45000 !important;
		color: #FFFFFF!important;
	}

	boby .ui-datepicker-today span {
		border: 1px solid #C94200;
	}

  .Step1ProceedButton, .Step2_CarButton, .Step3_Button a.Step3_ProceedPaymentButton, .ThankYou_Button a, .Step2ActionBtn {
    background: #F45000;
    color: #FFFFFF;
    border-radius: 1000px;
    border: #F45000;
  }

  .Step1ProceedButton:after, .Step2_CarButton:before, .Step3_Button a.Step3_ProceedPaymentButton:after, .ThankYou_Button a:after, .Step2ActionBtn:before {
    background: #F45000;
    position: relative;
  }

  .Step1_BlockContainer {
    margin: auto;
  }

  .Select_Arrow div {
    background-image: url(../Images/fake_select_renault.png);
    background-repeat: no-repeat;
    border: none;
    background-position: 5px;
  }

  .Step2, .Index_Centered {
    width: fit-content;
  }

  .Step3_Button .Step3_estimate.Gray {
    color: #FFFFFF !important;
  }
}
