/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .request-form-container{
    max-width: 1080px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 140px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}
.request-title{
    font-family: "Nissan Brand W01", Sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 0.92em;
    margin-bottom: 0px;
}
.req-des{
    font-family: "Nissan Brand W01", Sans-serif;
    font-size: 16px;
}
.req-section{
margin-top:60px;
}
.req-form-label{
    gap: 0;
    font-family: "Nissan Brand W01", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    color: #000;
    margin-bottom: 10px;
}
.req-section .req-control{
outline: none !important;
    box-shadow: none;
    height: auto;
    border: 1px solid #e4e4e4;
    border-radius: 0;
    padding: 12px 20px;
    background: #f2f2f2;
    font-family: "Nissan Brand W01", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    color: #000;
    margin-top: 0px !important;
}
.req-row{
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px
}
.input-container.req-group.quote-3 {
    width: 48%;
    margin-bottom: 20px;
    position: relative;
}
.req-footer{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.req-footer .btn{
    border: 2px solid #000;
    border-radius: 30px;
    width: 201px;
    padding: 16px 20px 15px;
    background: #fff;
    font-family: "Nissan Brand W01", sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: .35s;
}
.req_description,.error{
    margin-top: 10px !important;
    font-family: "Nissan Brand W01", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    color: #c3002f;
    
}
.req_description {
    text-align: right;
    font-style: italic;
   
}
span.error{
    font-style: italic;
}
.req{
     font-family: "Nissan Brand W01", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    color: #c3002f;
    text-align: right;
}
.input-container.req-group.quote-3.error-row{
    margin-bottom: 10px;
}
.dowc-custom-error1{
    margin-top: 10px !important;
    font-family: "Nissan Brand W01", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    color: #c3002f;
}
.req-footer .btn:hover,
.req-footer .btn:active,
.req-footer .btn:focus{
        background: #000;
        border: 2px solid #000;
}
.req-control.error{
    border: 1px solid #c3002f;
}
.sub-title{
    font-family: "Nissan Brand W01", Sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 0.92em;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid #dbdbdb;
    padding-top: 3rem;
}
.page-100 {
    width: 100%;
    font-size: 20px;
    margin-bottom: 0px;
    font-family: "Nissan Brand W01", sans-serif;
    margin-bottom: 20px;
}
.state-city-value {
    font-weight: 500;
    font-size: 12px;
    display: inline;
}
.req-loader{
    width:100%;
    position:absolute;
    left:0px;
    right:0px;
    top:0px;
    bottom:0px;
    margin:auto;
    height: 100%;
    background-color: #f9f9f9c2;
    display: none;
}
.req-section{
    position:relative;
}
.req-section .req-control:focus{
    border-color: #e4e4e4;
}
#dealer-details{
    font-size: 12px;
}
#dealer-details > span span:nth-of-type(1){
    font-weight: 500;
}
#success-section{
    color: #089108;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    text-align: center;
}
#success-section p{
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}
.border-top {
    border-top: 1px solid #e4e4e4;
    padding-top: 2rem;
}
/* checkbox */
/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Nissan Brand W01", sans-serif;
    line-height: 1;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #000000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* end checkbox */
@media(max-width:700px) {
    .input-container.req-group.quote-3 {
        width: 100%;
    }

    .request-form-container {
        padding-top: 60px;
    }

    .request-title {
        font-size: 30px;
    }

    .req-section {
        margin-top: 30px;
    }
}