#order-confirmation {

    #order-details > ul > li{
        color: #211F1F;
        font-family: Gotham;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 24px;
    }
    #order-details > ul > li b{
        font-weight: 500;
    }

    #wrapper {
        padding: 0;

        .container {
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 100%;

            .row {
                margin: 0;
                padding: 0;

                #content-wrapper {
                    padding: 0;
                }
            }
        }
    }

    
    #content-hook_order_confirmation {
        padding-left: 15px;
        padding-right: 15px;
        background-color: #FBF4ED;
        display: flex;
        justify-content: center;

        .card-block {
            background-color: white;
            border: 1px solid #E3DAD1;
            border-radius: 8px;
            margin: 32px;
            width: 50%;

            @media screen and (max-width: 767px) {
                padding: 1.25rem 1.25rem .5rem;
                width: 100%;
                margin: 25px 20px;
            }

            .card-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                font-size: 14px;

                .card-title {
                    margin-top: 10px;
                    font-family: Gotham;
                    font-size: 32px;
                    font-weight: 500;
                    letter-spacing: 0;
                    line-height: 35px;
                    text-align: center;
                    text-transform: capitalize;
                    font-size: 32px;
                }

                p {
                    text-align: center;
                    font-size: 14px;
                }
                a {
                    color: black;
                    text-decoration: underline;
                }
            }
        }
    }

    #content {
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        justify-content: center;

        .card-block {
            width: 50%;
            padding-left: 0;
            padding-right: 0;

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            #order-items {
                padding: 0;
                border: none;

                .card-title {
                    text-transform: initial;
                    border: none;
                    margin-top: 10px;
                    font-family: Gotham;
                    font-size: 18px;
                    font-weight: 500;
                    letter-spacing: 0;
                    line-height: 20px;
                                        
                }

                .order-confirmation-table {
                    margin-top: 20px;

                    .order-line {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: row;
                        margin-bottom: 2rem;

                        .bold {
                            font-family: Gotham;
                            font-size: 14px;
                            font-weight: 500;
                            letter-spacing: 0;
                            line-height: 20px;
                        }

                        .details {
                            margin: 0;
                        }

                        .qty {
                            padding: 0;
                            margin: 0;
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;

                            .col-sm-5 {
                                padding: 0;
                            }

                            @media screen and (max-width: 576px) {
                                padding-left: 15px;
                            }
                        }

                        @media screen and (max-width: 576px) {
                            .details, .qty, .unit-price {
                                margin-top: 10px;
                            }
                        }
                    }

                    .text-and-price {
                        display: flex;
                        flex-direction: row;
                        flex-wrap: wrap;
                        width: 100%;
                        justify-content: center;
                        align-items: center;
                    }

                    .subtotal-line {
                        display: flex;
                        justify-content: space-between;
                        margin-bottom: 20px;
                    }

                    .totals {
                        margin-bottom: 2rem;
                    }

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

                hr {
                    border-top: 1px solid #E3DAD1;
                }
            }

            #order-details {
                padding: 0;

                .card-title {
                    text-transform: initial;
                    
                }
            }
        }
    }

    #content-hook_payment_return .card-block{
        margin: auto;
        width: 50%;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    #content-hook_payment_return .card-block > .row > div{
        padding: 0;
    }
    #content-hook_payment_return .card-block > .row > div a{
        color: #EB6909;
        text-decoration: underline;
    }
    #content-hook_payment_return p{
        font-family: Gotham;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 24px;
    }

    #content-hook_payment_return p b{
        font-weight: 500;
    }

}