h1{
    border-bottom: 1px solid #b5b7b9;
    font-size: 42px;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.form-control:focus {
    /* color: var(--bs-body-color); */
    /* background-color: var(--bs-body-bg); */
    border-color: #86b7fe;
    outline: 0;
    border: 1px solid #86b7fe;
    /* box-shadow: 0 0 0 .25rem rgba(13,110,253,.25); */
}
.checkout{
    padding-block: 100px;
}
.required-section {
    color: #e02b25;
    margin: 0 0 30px;
    padding: 10px 0 0;
    text-align: right;
}



.checkout-separator{
    position: absolute;
    left: -25px;
    top: 10%;
    background-color: white;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    text-transform: uppercase;
    font-weight: bold;
}

.form-group__label--required:after {
    content: "*";
    color: #e02b25!important;
}
.form-group:not(:last-of-type){
    margin-bottom: 20px;
}
.forgotten-password-link,
.forgotten-password-link a{
    text-align: right;
    text-transform: uppercase;
    color: #10218b;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}
.forgotten-password-link a:hover{
    text-decoration: underline;
}
.checkbox.consent{
    position: relative;
}
.checkbox.consent:not(:last-of-type){
    margin-bottom: 20px;
}
.checkbox.consent input[type="checkbox"]{
    display: inline-block;
    position: absolute;
    top: 5px;
}
.checkbox.consent label{
    padding-left: 20px;
}
.checkbox.consent label a{
    display: inline-block;
    text-decoration: none;
    color: #10218b;
}
.checkbox.consent label a:hover{
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .sign-up{
        padding-top: 50px;
    }
}

@media screen and (min-width: 768px) {
    .login-or-sign-up{
        display: flex;
        justify-content: center;
    }
    .login{
        width: 50%;
        padding-right: 50px;
    }
    .sign-up{
        width: 50%;
        border-left: 1px solid #90949c;
        padding-left: 50px;
        position: relative;
    }
    .forgotten-password-link a{
        font-size: 14px;
    }
    .forgotten-password-link{
        padding-bottom: 20px;
    }
}


/* TROLLEY PAGE */

.trolley .inner-trolley{
    background-color: #f1f3f5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step {
    background-color: #10218b;
    font-size: 18px;
    color: #ffffff;
    display: grid;
    align-items: center;
    grid-template-columns: min-content 1fr min-content;
    padding: 8px 20px;
    column-gap: 10px;
}
.step__number {
    font-size: 22px;
    padding-right: 20px;
    border-right: 1px solid white;
}
.step__name {
    text-decoration: none;
    display: block;
    color: #fff;
    /* padding-inline: 10px; */
}
.checkout-section__step-header > *{
    color: #ffffff;
}
.checkout-section__secure {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
}
.checkout-section__secure-icon {
    color: #d9e3ec;
}
.checkout-section__step-content>:not(:last-child) {
    margin-bottom: 25px;
}
.checkout-section__step-content>:first-of-type{
    margin-top: 25px;
}
.js-address-finder-fields-container{
    margin-block: 25px;
}
.checkout-section__step-body{
    margin-bottom: 50px;
}
.ccs{
    display: flex;
    width: 100px;
}
.paypal, .bpay{
    width: 60px;
}
.zip{
    width: 60px;
}
.bpay, .zip{
    padding-left: 20px;
}
.payment-method__container{
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
.checkout-summary__headline{
    font-size: 18px;
}
.checkout-summary__section-title{
    font-weight: bold;
}

@media screen and (min-width: 992px) {
    .checkout .inner-content{
        display: flex;
        gap: 25px;
    }
    .inner-content .checkout-section{
        width: 60%;
    }
    .trolley{
        flex-grow: 1;
    }
}

/* CUSTOMER DETAILS PAGE */
.form-group select,
.list-group{
    border-radius: unset;
}
input[type=radio] {
    border-radius: 50%!important;
}
.shipping-method img{
    width: 30px;
}
.shipping-method{
    display: grid;
    grid-template-columns: min-content 50px 1fr 2fr 80px;
    column-gap: 10px;
    align-items: center;
}
.shipping-cost{
    font-weight: bold;
}
.shipping-method__container button,
.payment-method__container button{
    margin-top: 25px;
}
.step--completed{
    background-color: #81838a;
}
.checkout-section__step-header{
    border-bottom: 1px solid white;
}
.step--inactive{
    background-color: #d9e3ec;
}
.step--inactive > *{
    color: #1c1c1c;
}
.proceed-to-payment{
    margin-top: 25px;
}
.cart-item{
    justify-content: space-between;
}
.checkout-summary__list:has(.ship-method-cost){
    display: flex;
    justify-content: space-between;
    padding-block: 20px;
}
.checkout-summary__row.ship-method-image{
    width: 20%;
    text-align: center;
}
.checkout-summary__row:has(.ship-method-cost){
    width: 70%;
}
.ship-method-image img{
    width: 40%;
}
.ship-method-cost,
.total span:not(.gst),
.all-items-total{
    font-weight: bold;
}
.gst{
    display: block;
}
.checkout-summary__list:has(.user-street-address){
    text-transform: capitalize;
}
.back-to-trolley::after{
    left: -15px;
    transform: translateY(-50%) rotate(180deg) scale(1)!important;
}