body#checkout section.checkout-step .delivery-options .delivery-option {

    border: 1px solid #E2E2E2;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 0.5rem;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;

    @media screen and (max-width: 480px) {
        padding: 1rem;
    }

    .carrier-price {
        font-weight: bold;
    }

    .carrier-delay {
        color: #EB6909;
    }

    .delivery-option-left {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-right: auto;
        width: 100%;
        flex: 1;
        padding-left: 0;
        .delivery-information-left-input{
            padding-left: 0;
        }
    }

    .delivery-information-left-option {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px
    }
    .delivery-information-left-option > div:nth-child(1){
        width: 93px;
        .carrier-hasLogo{
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 0;
            .carrier-logo {
                padding: 0;
                width: 100%;
                text-align: center;
                img {
                    width: 93px;
                    height: 32px;
                    object-fit: contain;
                }
            }
        }
    }
    .delivery-information-left-option > div:nth-child(2){
        flex: 1;
    }

    @media screen and (max-width: 480px) {
        .price-carrier {
            align-self: baseline;
        }
        .delivery-option-left {
            flex-direction: column;
            align-items: baseline;
            padding: 0;
            gap: 10px;

            .delivery-information-left-input {
                padding: 0;
            }
            .delivery-information-left-option {
                padding: 0 0;
            }
        }
    }
}

body#checkout section.checkout-step .delivery-options .delivery-option.checked {
    border: 2px solid #EB6909;
}