@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
}

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

:root {
 --shell-red: #DD1D21;
 --shell-yellow: #FFC600;
 --shell-dark-grey: #404040;
}

* {
 margin: 0;
 padding: 0;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}


body {
 font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif ;
 color: var(--shell-dark-grey);
 overflow-x: hidden;

 /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
     -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
*/

}


/* Chrome 
-ms-overflow-style:none;
scrollbar-width:none;

body::-webkit-scrollbar{
width : 0px;
} */

.main-container {
 max-width: 800px;
 width: 100%;
 background: #fff;
 margin: 1rem auto 0 auto;
 overflow: hidden;
 text-align: center;
 -webkit-transition: height 0.7s ease;
 -o-transition: height 0.7s ease;
 transition: height 0.7s ease;
 z-index: 10;
 margin-bottom: 2rem;
 margin-top: 0px;
}


.banner-image {
 width: 100%;
  height: auto;
}

.indicates {
 font-weight: bolder !important;
}

small {
 color: var(--shell-dark-grey);
 -webkit-transition: 0.6s ease;
 -o-transition: 0.6s ease;
 transition: 0.6s ease;
 font-size: 14px;
}



label,
legend {
 color: var(--shell-dark-grey);
 font-size: 14px;
 display: inline-block;
 margin-bottom: 8px;
 text-align: left;
 font-weight: 500;
}



.container {
 font-weight: normal !important;
 cursor: pointer;
}




/* BUTTONS */

.button-container {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-pack: distribute;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 30px;
 margin: 1rem 2rem;
}

button,
input[type=submit] {
 font-weight: bold;
 font-size: 16px;
 width: 200px;
 padding: 1rem;
 border: 1px solid transparent;
 -webkit-transition: background-color .15s ease-in, color .15s ease-in;
 -o-transition: background-color .15s ease-in, color .15s ease-in;
 transition: background-color .15s ease-in, color .15s ease-in;
 cursor: pointer;
 border-radius: 24px;
}

.back {
 background-color: var(--shell-red);
 color: #fff;
 border: 2px solid var(--shell-red)
}

.next {
 background-color: var(--shell-yellow);
 color: var(--shell-dark-grey);
 border: 2px solid transparent;
}

.back:hover,
.back:focus {
 background-color: #fff;
 color: var(--shell-red);
 outline: none;
}




.next:hover,
.next:focus {
 background-color: #f6f6f6;;
 outline: none;
 border: 2px solid #B38C00;
}






/*TOP-LEVEL FORM*/

.form-container {
 overflow: hidden;
 margin: 0 20px;

}

form {
 /* display: flex;
    width: 400%; */
}

.form-part {
 /* width: 25%; */
 padding: 0 5px;
 -webkit-transition: 0.8s ease;
 -o-transition: 0.8s ease;
 transition: 0.8s ease;
}

h1,
h2,
h3 {
 text-align: center;
}

h1,
.main-heading {
margin-top: 20px;
    margin-bottom: 15px;
 font-weight: bold;
 border-bottom: 4px solid var(--shell-yellow);
 display: inline-block;
 color: inherit;
}


h3 {
 margin-bottom: 1.5rem;
}

h2 {
 font-size: 22px;
}

h3 {
 font-size: 16px;
 font-weight: bold;
}

p {
 color: var(--shell-red);
 font-size: 12px;
 font-weight: bold;
 margin-top: 10px;
 opacity: 0;
 text-align: left;
}




.headers {
 margin: 2rem;
 margin-top: 1rem;
}

.headers>p {
 opacity: 1;
 text-align: center;
 margin: -1rem;
}



/* PERSONAL & COMPANY INFO */

.input-container-personal_company {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 row-gap: 5px;
 text-align: left;
}



/* FLEET INFO */

.input-container-fleet {
 display: -ms-grid;
 display: grid;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -ms-grid-columns: 30% 70%;
 grid-template-columns: 30% 70%;
}


.input-container-fleet h3 {
 display: inline-block;
 -ms-grid-column-span: 2;
 grid-column: span 2;
 padding: 2rem 0 0.3rem;
}

.input-container-fleet>img {
 width: 80%;
 margin: auto;
}

.fleet-selectors {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
}

.mileage-container {
 -ms-grid-column-span: 2;
 grid-column: span 2;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 row-gap: 10px;
}

.fleet-selectors label {
 text-align: left;
 font-size: 16px;
 margin-bottom: .5rem;
 font-size: 12px;
}

.input-container_products {
 display: -ms-grid;
 display: grid;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 grid-gap: 30px;
 -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
 grid-template-columns: repeat(6, 1fr);
 width: 100%;
 margin: auto;
 margin-top: 20px;
 margin-bottom: 30px;
}


.input-container-personal_company input[type='text'],
.input-container-personal_company input[type='email'],
.input-container-personal_company input[type='tel'],
.input-container-fleet input[type='text'],
.input-container-fleet input[type='email'],
.input-container-fleet input[type='tel'],
input[type='number'],
input[type='date'],
textarea, select {
 border: 2px solid transparent;
 padding: .7rem .5rem;
 width: 100%;
 color: var(--shell-dark-grey);
 background-color: #f5f6f6;
 border-radius: 8px;
}


.input-container-personal_company input[type='text']:hover, .input-container-personal_company input[type='text']:focus,
.input-container-personal_company input[type='email']:hover,.input-container-personal_company input[type='email']:focus,
.input-container-personal_company input[type='tel']:hover,.input-container-personal_company input[type='tel']:focus,
.input-container-fleet input[type='text']:hover,.input-container-fleet input[type='text']:focus,
.input-container-fleet input[type='email']:hover,.input-container-fleet input[type='email']:focus,
.input-container-fleet input[type='tel']:hover,.input-container-fleet input[type='tel']:focus,
input[type='number']:hover,input[type='number']:focus,
input[type='date']:hover,input[type='date']:focus,
textarea:hover, select:hover, textarea:focus, select:focus {
 outline: none;
 border: 2px solid #8C8C8C;
 background-color: #f6f6f6 !important;
}



select {
 background: url(https://image.fleetsolutions.shell.com/lib/fe3711717564047d7c1372/m/1/fb58e831-05b6-444c-8ac8-4fa426c63840.png) no-repeat right #f5f6f6;
 -webkit-appearance: none;
}





/* PRODUCT INFO */

.product-container {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 10px;
}

.product-container small {
 font-size: 12px;
 margin: 0 auto;
}


.label-container {
 position: relative;
 cursor: pointer;
 margin: auto;
 width: 100px;
 height: 80px;
 border-radius: 10px;
 -webkit-transition: -webkit-box-shadow 0.2s ease;
 transition: -webkit-box-shadow 0.2s ease;
 -o-transition: box-shadow 0.2s ease;
 transition: box-shadow 0.2s ease;
 transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
 -webkit-box-shadow: -2px -2px 5px rgba(255, 255, 255, 1), 3px 3px 5px rgba(0, 0, 0, 0.3);
 box-shadow: -2px -2px 5px rgba(255, 255, 255, 1), 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.label-container:hover,
.label-container:focus {
 box-shadow: 0px 0px 5px 3px rgb(51, 99, 160);
 -webkit-box-shadow: 0px 0px 5px 3px #8C8C8C;
}

.product-container>input:focus~.label-container {
 box-shadow: 0px 0px 5px 3px #8C8C8C;
 -webkit-box-shadow: 0px 0px 5px 3px #8C8C8C;
}


.checkbox {
 font-weight: normal !important;
 cursor: pointer;
}

/* CUSTOM CHECKBOX FOR PRODUCTS */

/* Hide the browser's default checkbox */
.product-container input[type="checkbox"] {
 position: absolute;
 opacity: 0;
 cursor: pointer;
 height: 0;
 width: 0;
}



/* Custom checkbox */
.product-image {
 position: absolute;
 top: 0;
 left: 0;
 width: 100px;
 height: 80px;

 border-radius: 10px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}


/* Checked States */
.product-container input:checked~label {
 -webkit-box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 1), inset 3px 3px 5px rgba(0, 0, 0, 0.3);
 box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 1), inset 3px 3px 5px rgba(0, 0, 0, 0.3);
 background: var(--shell-yellow);
}

.product-container input:checked~label .product-image>img {
 -webkit-transform: scale(0.95);
 -ms-transform: scale(0.95);
 transform: scale(0.95);
}

.product-image img {
 width: 100%;
}




/*----TERMS----*/


.terms-container {
 border-top: 3px solid var(--shell-yellow);
 margin-top: 0.5rem;
 
}

.marketingComms-container {
 margin-bottom: 0;
 margin-top: 1.5rem;
}



.terms-container>div>label>p {
 margin-top: 5px;
 font-size: 10px;
}






/* ERROR STYLES */

.mandatory {
 color: var(--shell-red);
 font-weight: 500;
}

.error_message {
 font-size: 12px;
 color: var(--shell-red);
 opacity: 1;
 -webkit-transition: opacity 0.7s ease-in;
 -o-transition: opacity 0.7s ease-in;
 transition: opacity 0.7s ease-in;
 outline: none;
}

.error_hide {
 display: none;
}

.error_border {
 border: 2px solid #dd1d21 !important;
}




/* MEDIA QUERIES */

@media only screen and (max-height: 823px) {

 body {
  height: 100%;
 }

}

@media only screen and (max-width: 600px) {

 .button-container {
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
 }

 .input-container_products {
  grid-gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
 }

 .step-row {
  height: 40px;
 }

 #progressBar::after {
  content: '';
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  right: -15px;
  top: 0;
  border-left: 15px solid var(--shell-red);
 }

}

@media only screen and (max-width: 480px) {

 /* .main-container {
        height: 830px;
    } */

 .privacy-container,
 .marketingComms-container {
  margin-left: 0;
  margin-right: 0;
 }

 h1,
 .main-heading {
  font-size: 22px;
 }

 h2 {
  font-size: 16px;
 }

 h3 {
  font-size: 14px;
 }

 small {
  font-size: 12px;
 }

}


#countries_list::-webkit-calendar-picker-indicator {
 opacity: 100;
}

.d-flex {
 display: flex;
 justify-content: space-between;
}

.radio-label {
 margin-bottom: 0px;
}

.flex-div {

 width: 49%;
}

.thank-you-img {
 margin-top: 20px;
 margin-bottom: 20px;
}

.thank-you-text {
 opacity: 1;
 color: var(--shell-dark-grey);
 font-size: 14px;
 font-weight: normal;
 text-align: center;
}

.data-privacy-text {
 color: var(--shell-dark-grey);
 font-size: 12px;
 display: block;
 margin-bottom: 8px;
 text-align: left;
 margin-left: 25px;
}

.ml-25 {
 margin-left: 25px;
}

#thank_you_page {
 margin-left: 10px;
 margin-right: 10px;
}

.privacy-statement {
 color: var(--shell-dark-grey);
 font-size: 12px;
 font-weight: bold;
 margin-top: 10px;
 opacity: 1;
 text-align: center;
 display: block;
}

.indicates {
 font-color: var(--shell-red);
 font-size: 12px;
 font-weight: normal;
 margin-top: 10px;
 opacity: 1;
 text-align: center;
 display: block;
}

#header {
 position: sticky;
 top: 0;
 width: 100%;
 z-index: 99999;
}

.header {
 padding-top: 15px;
 padding-bottom: 15px;
 padding-left: 3%;
 background-color: #fbce07;
}

.logo-container {
 margin: 0 auto;
 max-width: 960px;
}

.shell-logo {
 max-width: 320px;
}

/* form input[type='checkbox'] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        border: 3px solid var(--shell-yellow);;
        vertical-align: middle;
        margin-right: 10px;
        }

       form input[type='checkbox']:checked {
        background-color: #fbce07;
        box-shadow: 0 0 10px rgb(0 0 0 / 10%);
        border: 3px solid var(--shell-yellow);;
        }
        #marketing_comms_block {
            display: flex;
        }
        .marketing-text {
            max-width: 90%;;
        }
        #marketing-comms-wrapper {
            display: none;
        } */



/* Common styles for checkboxes and radio buttons */
input[type="checkbox"], input[type="radio"] {
 appearance: none;
 -webkit-appearance: none;
 -moz-appearance: none;
 background-color: #f6f6f6;
 border: 2px solid #949494;
 outline: none;
 cursor: pointer;
 width: 22px;
 height: 22px;
 margin-right: 8px;
 display: inline-block;
 vertical-align: middle;
}

input[type="checkbox"]:hover:not(:checked), input[type="radio"]:hover:not(:checked),
input[type="checkbox"]:focus:not(:checked), input[type="radio"]:focus:not(:checked) {
 border: 3px solid #8C8C8C; /* Original hover color */
}

input[type="checkbox"]:checked, input[type="radio"]:checked {
 border: 3px solid #8C8C8C; /* Slightly darker shade */
 background-color: #f6f6f6;
}

input[type="checkbox"]:checked:hover, input[type="radio"]:checked:hover,
input[type="checkbox"]:checked:focus, input[type="radio"]:checked:focus {
 border: 3px solid #AA7100; /* Darker shade */
}

/* Specific styles for checkboxes */
input[type="checkbox"] {
 border-radius: 8px;
 position: relative;
}

input[type="checkbox"]:checked::before {
 content: '✔';
 display: block;
 text-align: center;
 color: #000;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

/* Specific styles for radio buttons */
input[type="radio"] {
 border-radius: 50%;
 position: relative;
}

input[type="radio"]:checked::before {
 content: '✔';
 display: block;
 text-align: center;
 color: #000;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

/* Label styles to ensure new line and proper alignment */
label {
 display: flex;
 align-items: center;
 margin-bottom: 10px;
}
.privacy-policy-link:hover,   
.privacy-policy-link:focus {

 color: var(--shell-red);



}

#form {
 margin-top: 20px;
}

.warning-text {
 opacity: 0;
 margin-top: 0px;
 text-align: center;
}


#SKDSInputWrap {
 display: none;
}

#bankNameInputWrap {
 display: none;
}

#fullNameInputWrap {
 display: none;
}

#politicalExposureWrap {
 display: none;
}



.products-container {

 border-top: none;
}


.legal-info {
 margin-top: 30px;
}

.text-bold {
 font-weight: bold;
}

.privacy-label {
 margin-bottom: 30px !important;
}





.products-container .checkmark {
 border-radius: 4px;
}

::placeholder {
 font-size: 12px;
color: #707070 !important;
}

@media screen and (max-width: 500px) {
 input::placeholder {
  font-size: 0.5em;
  /* Adjust font size smaller for zoomed-in views */
 }


 .d-flex {
  display: block;
 }

 .flex-div {

  width: 100%;
 }

 #cardAccountNumberInput::placeholder {
  font-size: 0.35em;
 }

 select {
  font-size: 0.4em;
 }
}

fieldset {
 border: none;
 /* Remove the default border */
}

#privacyPolicyLink, .privacy-policy-link {
 text-decoration: underline;
 color: #1C809E;
 font-weight: 500;
}   

#privacyPolicyLink:hover, #privacyPolicyLink:focus, .privacy-policy-link:hover, .privacy-policy-link:focus {
 color: #dd1d21;
 text-decoration: none;
}


.fade-in {
    animation: fadeIn 0.5s forwards;
}

.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}


/* PROGRESS BAR */

.step-row {
    width: 100%;
    height: 40px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* -webkit-box-shadow: 0 -1px 5px -1px #000;
               box-shadow: 0 -1px 5px -1px #000; */
    position: relative;
    margin-top: 40px;
    margin-bottom: 25px;
    border-radius: 24px;
    background-color: #ebebeb;
    font-weight: bolder;
   }
   
   .step-column {
    z-index: 1;
   }
   
   small {
    color: var(--shell-dark-grey);
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
    font-size: 14px;
   }
   
   .step1 {
    color: #404040;
    font-weight: bolder;
   }
   
   
   #progressBar {
    position: absolute;
    left: 0;
    height: 100%;
    width: 33%;
    background: #ffc600;
    /* background: -webkit-gradient(linear, left top, right top, from(var(--shell-red)), to(var(--shell-yellow)));
      background: -o-linear-gradient(left, var(--shell-red), var(--shell-yellow));
       background: linear-gradient(to right, var(--shell-red), var(--shell-yellow)); */
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
    border-radius: 24px;
   }
   
   
.form-container {
    overflow: hidden;
    margin: 0 20px;
   
   }
   
   form {
    display: flex;
    width: 400%;
   }
   
   .form-part {
    width: 25%;
    padding: 0 5px;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
   }
   