/*
Theme Name:  Rideshare
Version:     1.0.0
Description: Custom WordPress Responsive Multi-Purpose Theme.
Theme URI:   #
Author:      Affimedia
Author URI:  #
License:     Custom license
License URI: #
Text Domain: affi
*/
* {
    font-family: 'Poppins', sans-serif;
}
body{
    position: relative;
    outline: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 1;
    min-height: 100vh; 
    font-family: 'Poppins', sans-serif;
}
.relative {position: relative;display: inline-block;}
section.hero-img {
    margin: 0px;
}
section.hero-img main {
    width: 767px;
    overflow: hidden;
    background: #fff;
    margin: 0px auto 0px auto;
    padding: 0px 0px;
}
section.hero-img .container {
    padding: 0px;
}
section.hero-img .container .row {
    margin: 0px;
    padding: 0px;
}
.page-content {margin-top: 30px; margin-bottom: 30px}
.logo-warp {
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
        padding: 15px 15px 10px 15px;
    background: transparent;
    position: relative;
}

.logo-warp img:nth-child(1) {
    width: 30%;
}
.logo-warp img:nth-child(2) {
    width: 35%;
}
.logo-warp .right-title {
    max-width: 50%;
}
.logo-warp .right-title h2 {
    color: red;
    font-weight: 700;
}

.first_page{
    /*background: linear-gradient(rgba(30, 37, 82, 0.7) 0%, rgba(30, 37, 82, 1) 30%), url(./img/RideShare_LCA.png);*/
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}
.main-content {
    text-align: center;
    padding: 100px 30px 10px; 
    position: relative;
}
.main-content-overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.main-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 100px;
    margin-top: 20px;
    color: white;
    position: relative;
    z-index: 1;
}
.main-content h1 span {
    font-size: 40px;
    color: #BC0E10;
}
.main-content h3 {
    font-size: 28px;
        margin-bottom: 25px;
}

.main-content .inner-form {
    background: white;
    width: 80%;
    margin: 0px auto;
    border-radius: 30px;
    position: relative;
}
.main-content .inner-form .form-top img{width: 80%; height: auto;border-radius: inherit;margin: auto;}
.main-content .inner-form .form-top{
    position: absolute;
    width: 120px;
    left: 50%;
    bottom: calc(100% - 35px);
    background: white;
    border-radius: 10px;
    transform: translateX(-50%);
    padding: 10px 10px 10px 10px;
    z-index: 1;
}
.main-content .inner-form::after {
    content: "";
    position: absolute;
    background: url(assets/img/arrow-preview.png);
    width: 100px;
    height: 180px;
    background-size: 100% 100%;
    top: -130px;
    right: -20px;
}
.main-content .inner-form h4 {
    color: #1e2552;
    font-size: 36px;
    font-weight: 700;
    padding-top: 40px;
}
.main-content .inner-form .num-steps{
    display: flex;
    justify-content: center;
    gap: var(--gap);
    margin-top: 30px;
}
.main-content .inner-form .num-steps span{
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid #1e2552;
    color: #1e2552;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s alle ease;
    font-size: 14px;
    position: relative;
}
.main-content .inner-form .num-steps span:not(:last-child)::after{
    content: '';
    position: absolute;
    display: block;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    left: calc(100% + 3px);
    width: calc(var(--gap) - 3px);
    height: 2px;
    background: #b5b5b5;
}
.main-content .inner-form .num-steps span.completed{
    cursor: pointer;
}
.main-content .inner-form .num-steps span.completed::after,
.main-content .inner-form .num-steps span.active::after{
    background: #1e2552;
}
.main-content .inner-form .num-steps span.completed,
.main-content .inner-form .num-steps span.active{
    background: #1e2552;
    color: white;
}

/*modify-section*/
.main-content.modify-section .step-1 {display: none;}
.main-content.modify-section .step-all {display: block;}
.main-content.modify-section .num-steps {padding-top: 40px;}
.main-content.modify-section .inner-form::after {
    height: 180px;
    top: -160px;
    right: -70px;
}
.tooltip-area{
    cursor: pointer;
}
.tooltip-area .tooltip{
    position: relative;
    margin-left: 20px;
    opacity: 1;
    z-index: 1;
}
.tooltip-area .tooltip-content{
    position: absolute;
    bottom: 100%;
    left: -9999px;
    transform: translateX(-50%);
    background: #1e2552;
    color: white;
    border-radius: 3px;
    width: max-content;
    padding: 3px 5px;
    transition: 0.3s bottom ease, 0.3s opacity ease;
    max-width: 300px;
    opacity: 0;
}
.tooltip-area .tooltip-content::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1e2552;
}
.tooltip-area:hover .tooltip-content {
    left: 50%;
    opacity: 1;
    bottom: calc(100% + 15px);
}
.tooltip-area {margin-top: 20px;display: flex; justify-content: center; align-items: center;}
.tooltip-area p {font-size: 22px; font-weight: 300;}
.tooltip-area img {
    width: 28px;
    height: 28px;
    position: relative;
    top: -9px;
}

@media only screen and (max-width: 600px){
    .tooltip-area:hover .tooltip-content{
        left: calc(50% - 50px);
    }
}
.radio-group.multiple .input-radio {
    padding: 15px 15px;
}
.with-logo .radio-group.multiple .input-radio {
    padding-top: 5px;
    padding-bottom: 5px;
}
.with-logo .radio-group.multiple .input-radio.make-bigger {
    padding-top: 11px;
    padding-bottom: 11px;
}
.radio-group.multiple .input-radio span {
    font-size: 22px;
    font-weight: 500;
}
.dropdown select {
    height: 64px;
    padding: 0 5px;
    font-size: 24px;
    color: #1e2552;
    border: 4px solid #1e2552;
    border-radius: 10px;
}
@media only screen and (max-width: 991px){
    .main-content .inner-form .num-steps span{
        width: 20px;
        height: 20px;
        font-size: 12px;
        border-width: 1px;
    }
    .main-content .inner-form .num-steps span:not(:last-child)::after{
        height: 1px;
    }
}
.main-content .inner-form h5 {
    color: #b5b5b5;
    font-size: 16px;
    font-weight: 300;
    padding: 8px 0px 15px 0px;
}
.main-content .inner-form h5 i{
    margin-right: 5px;
}
.main-content .inner-form .inner-field-warp {
    background: #fff;
    border-radius: 30px;
    padding: 40px 15px 30px 15px;
    position: relative;
}

.input-grput label {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}
.step[data-step="6"] label.qualify {
    font-size: 27px;
}
.step[data-step="6"] label.qualify small img {
    width: 45px;
    height: 45px;
}
.radio-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.radio-group .input-radio {
    width: 60%;
    position: relative;
    background: transparent;
    margin-bottom: 20px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #1e2552;
    border-radius: 10px;
    cursor: pointer;
    border: 4px solid #1e2552;
}
.radio-group .input-radio.blue {
    background: #5897fb;
}
.radio-group .input-radio.red {
    background: #BC0E10;
}
.radio-group .input-radio input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.radio-group .input-radio input[type="radio"]:checked + span {
    font-size: 26px;
    font-weight: 700;
}
.step[data-step="4"] .radio-group.multiple .input-radio span {font-size: 20px;}
.main-content h6 {
    font-size: 26px;
    font-weight: 700;
    margin: 15px 0px 15px 0px;
}
.main-content h6 span {
    font-size: 30px;
    font-weight: 700;
    color: #BC0E10;
}
.input-field select {
    font-size: 25px;
    padding: 15px 20px;
    border-radius: 30px;
    border: 2px solid #1D2552;
    max-width: 100%;
}
.input-field input[type="text"], .input-field input[type="email"], .input-field textarea {
    border: 2px solid;
    width: 80%;
    height: 50px;
    border-radius: 10px;
    padding: 0px 15px;
}
.input-field textarea[name="description"]{
    height: 100px;
}
.step .submit.button-next {
    width: 270px;
    font-size: 22px;
    font-weight: 800;
    background: #01BF62;
    border: none;
    color: #fff;
    border-radius: 10px;
    margin-top: 35px;
    padding: 8px 0px;
}
.input-grput.left-text label {
    width: 80%;
    text-align: left;
    padding-left: 0px;
}
.inner-field-warp .step {
    display: none;
}
.inner-field-warp .step.active {
    display: block;
}
.input-grput.error_field .input-field input[type="text"], 
.input-grput.error_field .input-field input[type="email"] {
    border-color: #BC0E10;
}
.inner-field-warp .step[data-step="5"] .input-grput label {
    font-size: 32px;
}
.inner-field-warp .step[data-step="5"] .submit.button-next {
    margin-top: 10px;
}
.thank_you_page {
    padding-top: 80px;
    display: none;
    background: linear-gradient( rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) ), url(assets/img/rideshare.webp);
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}
.thank_you_page .logo {
    max-height: none;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 70px;
}
.thank_you_page .logo {
    max-height: none;
    padding: 0px 10px;
    text-align: center; 
    margin-bottom: 70px;
}
.thank_you_page .logo img {
    width: 300px;
}
.thank_you_page h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}
.thank_you_page p {
    font-size: 28px;
    margin-bottom: 40px;
}
.thank_you_page a.final_button {
    display: inline-block;
    background: #01BF62;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    padding: 20px 40px;
    border-radius: 25px;
    margin-bottom: 60px;
    text-decoration: none;
}
.select2-container .select2-selection.select2-selection--single {
    height: 60px;
    border-radius: 10px;
    border-width: 4px;
    border-color: #1e2552;
}
.select2-container .select2-selection.select2-selection--single span.select2-selection__rendered {
    line-height: 52px;
    font-size: 20px;
    padding-left: 18px;
    padding-right: 30px;
    color: #1e2552;
}
.select2-container .select2-selection.select2-selection--single span.select2-selection__arrow {
    top: 17px;
    right: 10px;
}
.select2-container .select2-selection.select2-selection--single span.select2-selection__arrow b {
    border-width: 8px 6px 0 6px;
    border-top-color: #1e2552;
}
.input-grput.error_field span.select2-selection.select2-selection--single {
    border-color: #BC0E13;
}

footer {
    background: #1e2552;
    padding: 10px 10px;
    text-align: center;
    position: relative;
}
footer * {
    color: #fff;
}
footer p:nth-child(1) span, footer p:nth-child(2) span {
    font-weight: 600;
}
.select2-container {
    width: 70% !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
footer p {
    font-size: 14px;
}
label.tcpadesclaimer {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 1.3em;
    font-weight: 300;
}
@media only screen and (max-width:767px) {
    .main-content h1 br, .main-content h2 br, .main-content h3 br, .main-content h4 br, .main-content h5 br, .main-content h6 br {
        display: none;
    }
    .main-content h1 span {
        display: inline-block;
    }
    .main-content .inner-form { 
        width: 95%; 
    }
    .radio-group .input-radio {
        width: 80%;
    }
    .thank_you_page h2 br {
        display: none;
    }
    footer p {
        font-size: 12px; 
    }
    footer p:nth-child(1), footer p:nth-child(2) {
        font-size: 12px;
        margin-bottom: 12px;
    }
}
@media only screen and (max-width:500px) {
    .main-content {
        text-align: center;
        padding: 10px 20px;
    }
    .main-content .inner-form { 
        width: 100%; 
    }
    .radio-group .input-radio { 
        padding: 10px 15px;
        margin-bottom: 5px;
        width: 70%;
        font-size: 20px;
    }
    .radio-group .input-radio:first-child, .radio-group .input-radio:nth-child(2) {
        margin-bottom: 10px;
    }
    .main-content h1 {
        font-size: 25px;
        margin-bottom: 50px;
        margin-top: 30px;
    }
    .main-content h1 span {
        font-size: 26px;
    }
    .main-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .main-content .inner-form h4 {
        width: 90%;
        margin: auto;
        font-size: 18px; 
    }
    .input-grput label {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .main-content .inner-form .inner-field-warp {
        padding: 30px 20px 10px; 
    }
    .main-content .inner-form h5 {
        font-size: 12px;
        padding: 10px 0px 10px 0px;
    }
    .input-field select {
        font-size: 18px;
        padding: 13px 18px;
    }
    .inner-field-warp .step[data-step="5"] .input-grput label { 
        font-size: 18px;
    }
    .main-content .inner-form::after { 
        width: 80px;
        height: 80px;
        background-size: 100% 100%;
        top: -35px;
        right: -15px;
    }
    .main-content h6 {
        font-size: 22px; 
    }
    .main-content h6 span {
        font-size: 27px;
    }
    .select2-container {
        display: block;
    }
    .thank_you_page {
        padding-top: 20px;
    }
    .thank_you_page .logo { 
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .thank_you_page .logo img {
        width: 180px;
    }
    .thank_you_page h2 {
        font-size: 24px;
        font-weight: 700; 
        margin-bottom: 15px;
    }
    .thank_you_page p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .thank_you_page a.final_button {
        font-size: 18px; 
        padding: 16px 30px;
    }
    .select2-container {
        width: auto !important;
        margin-left: auto;
        margin-right: auto;
    }
    .inner-field-warp .step[data-step="1"] .radio-group .input-radio {
        width: 90%;
        padding: 10px 15px;
        font-size: 16px;
        line-height: 18px;
    }
    .logo-warp img:nth-child(2) {
        width: 35%;
    }
    .with-logo .radio-group.multiple .input-radio.make-bigger {
        padding-top: 19px;
        padding-bottom: 18px;
    }
    .tooltip-area p {
        font-size: 18px;
    }
    .tooltip-area img {
        width: 24px;
        height: 24px;
    }
}
@media only screen and (max-width:390px) {
    .main-content .inner-form::after { 
        width: 70px;
        height: 70px; 
        top: -30px;
        right: -12px;
    }
    .main-content h6 {
        font-size: 22px; 
    }
    .main-content h6 span {
        font-size: 27px;
    }
    .input-field input[type="text"], .input-field input[type="email"] { 
        width: 90%; 
        height: 45px;
    }
    .select2-container {
        display: block;
    }
    .thank_you_page h2 {
        font-size: 20px; 
    }
    .thank_you_page p {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .thank_you_page a.final_button {
        font-size: 16px;
        padding: 16px 22px;
    }
    
}
.thank_you_page.secend p {
    padding: 0 60px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.thank_you_page.secend h5 {
    font-weight: 600;
    font-size: 24px;
}
.thank_you_page.secend p.sub-title {
    margin-bottom: 100px;
    font-size: 20px;
}
.thank_you_page.secend h2 {
    text-shadow: none;
    margin-bottom: 0px;
}
.thank_you_page.secend p {
    padding: 0 60px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.thank_you_page.secend a.final_button {
    margin-bottom: 25px;
}
.button-group a.final_button.red, .red {
    background: red;
}
.thank_you_page.secend a.final_button.red {
    margin-bottom: 60px;
}
.button-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width:767px) {
    .thank_you_page.secend p.sub-title {
        margin-bottom: 20px;
    }
    .thank_you_page.secend p {
        padding: 0 20px;
        margin-bottom:10px;
    }
    .button-group a.final_button {
        width: 80%;
    }
    .thank_you_page a.final_button {
        font-size: 18px;
        padding: 16px 30px;
    }
}
ul.question-point {
text-align: left;
width: 70%;
margin-left: auto;
margin-right: auto;
margin-top: -16px;
margin-bottom: 24px;
font-weight: 600;
}

.form-step .input-grput label {
margin-bottom: 4px;
margin-top: 25px;
font-weight: 300;
}

.input-grput.bulletins label {
margin-bottom: 10px !important;
}

.bulletins ul.question-point {
margin-top: 1px !important;
}
small {
font-size: 80% !important;
font-weight: 500;
}

/* ------------- Datepicker css start ---------------*/
.btn-group.date-group .btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn-group.date-group .btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-group.date-group {
margin-top: 15px;
}

@media only screen and (min-width:400px) {
.btn-group.date-group select.btn{
    border: 0px solid black;
    border-right-width: 15px;
    border-color: transparent;
    outline: solid 1px #ccc;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 15px 15px 15px;
}
.btn-group.date-group select.btn:nth-child(1) { 
    padding: 15px 0px 15px 10px;
}
.btn-group.date-group select.btn:nth-child(2) { 
    padding: 15px 20px 15px 22px;
}
.btn-group.date-group select.btn:nth-child(3) { 
    padding: 15px 20px 15px 22px;
}
}

@supports (-webkit-touch-callout: none) { 
/* CSS specific to iOS devices */ 
.btn-group.date-group .btn {
  -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
}
.btn-group.date-group select.btn { 
    padding: 15px 20px !important;
}
}

@media only screen and (max-width:399px) {
.btn-group.date-group select.btn{
    border: 0px solid black;
    border-right-width: 10px;
    border-color: transparent;
    outline: solid 1px #ccc;
    font-weight: 600;
    font-size: 16px;
    /*padding: 10px 15px 10px 15px;*/
}
.btn-group.date-group select.btn:nth-child(1) { 
    padding: 15px 0px;
}
.btn-group.date-group select.btn:nth-child(2) { 
    padding: 15px 8px 15px 12px;
}
.btn-group.date-group select.btn:nth-child(3) { 
    padding: 15px 8px 15px 12px;
}
}

@media only screen and (max-width:350px) {
.btn-group.date-group select.btn{
    border: 0px solid black;
    border-right-width: 10px;
    border-color: transparent;
    outline: solid 1px #ccc;
    font-weight: 600;
    font-size: 16px;
    /*padding: 10px 15px 10px 15px;*/
}
.btn-group.date-group select.btn:nth-child(1) { 
    padding: 15px 0px;
}
.btn-group.date-group select.btn:nth-child(2) { 
    padding: 15px 8px 15px 12px;
}
.btn-group.date-group select.btn:nth-child(3) { 
    padding: 15px 8px 15px 12px;
}
}
/* ------------- Datepicker css end ---------------*/



/* Style for active hint */
.When_Did_Accident_Occur_hint {
    cursor: pointer;
    transition: all 0.3s ease;
}

.When_Did_Accident_Occur_hint.active {
    /*color: #5700d7;*/
    font-weight: 800;
}

.When_Did_Accident_Occur_hint.active::before {
    content: '✓';
    margin-left: 5px;
    color: #5700d7;
    font-size: 20px;
}

.var-btns {
    list-style: none;
    text-align: left;
    margin-top: 8px !important;
    line-height: 30px;
    padding-left: 10px;
}

.var-btns li {
    font-weight: 600;
    border: 4px solid #1e2552;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    position: relative;
    background: transparent;
    margin-bottom: 17px;
    padding: 15px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    color: #1e2552;
    cursor: pointer;
}

.var-btns .When_Did_Accident_Occur_hint.active::before {
    content: '✓';
    color: #1d2553;
    font-size: 20px;
    margin-right: 10px;
}

.var-btns .When_Did_Accident_Occur_hint.active {
    font-weight: 800;
}
.step-all {display: none;}
.dtpcnt {
    opacity: 0;
}
.wpcf7-spinner {
    position: absolute;
    top: 48px;
    right: -15px;
}
footer#colophon {
    padding: 0;
    position: relative;
    background: none;
}
.phone-valid {position: relative;}
.error_tooltip {
  position: absolute;
    bottom: -15px;
    width: 100%;
    right: 10%;
    text-align: right;
    font-size: 12px;
    color: red;
}
.phone-valid.phn_ajax_loading {
    position: relative;
}
.phn_ajax_loading::after {
    content: '';
    background: url(assets/img/ajax-loader.gif) no-repeat;
    background-size: 17px 17px;
    background-position: center center;
    width: 17px;
    height: 17px;
    bottom: 8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: 60px;
    z-index: 99;
}