﻿/* checkout */
#payment-details {
    padding-top: 64px;
    padding-bottom: 64px;
}

#payment-methods .payment-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e8e8e8;
    position: relative;
    margin-bottom: 24px;
    padding: 18px;
}

    #payment-methods .payment-wrapper.selected {
        border-color: #F87DA9;
    }

    #payment-methods .payment-wrapper:not(.selected) {
        cursor: pointer;
    }

    #payment-methods .payment-wrapper.selected h3 {
        cursor: default;
    }

    #payment-methods .payment-wrapper .checkbox {
        width: 24px;
        height: 24px;
        border: 1px solid #e8e8e8;
        position: relative;
    }

    #payment-methods .payment-wrapper.selected .checkbox .checkmark {
        left: 7px;
        top: 0px;
        width: 8px;
        height: 18px;
        border: solid #F87DA9;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
    }

    #payment-methods .payment-wrapper.selected .checkbox {
        width: 24px;
        height: 24px;
        border: 1px solid #F87DA9;
    }

    #payment-methods .payment-wrapper .header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-content: center;
    }

        #payment-methods .payment-wrapper .header .fee {
            display: flex;
            justify-content: end;
            align-items: center;
        }


            #payment-methods .payment-wrapper .header .fee h6 {
                margin-bottom: 0;
                font-weight: bold;
            }

    #payment-methods .payment-wrapper .content {
        width: 100%;
        font-size: 14px;
    }

#review-order h6 {
    text-transform: uppercase;
    margin-bottom: 12px;
}

#review-order hr {
    border-top-color: #e8e8e8;
}

#review-order thead th {
    border: none;
    background-color: #f6f6f6;
    font-size: 12px;
}

    #review-order thead th:not(:first-of-type), #review-order tbody td:not(:first-of-type) {
        width: 1%;
        white-space: nowrap;
    }

#review-order tbody td {
    border-color: #e8e8e8;
}

#review-order tbody tr.no-border td {
    border: none;
}

#review-order tbody tr:last-of-type td:not(.no-border) {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.checkout {
    padding-top: 64px;
    padding-bottom: 64px;
}

        .checkout h3.your-order {
            text-align: left;
            color: #434b1c;
            text-transform: uppercase;
            font-weight: 100;
            font-size: 22px;
            margin-bottom: 18px;
        }

    .checkout .step label {
        font-size: 12px;
    }

    .checkout .step {
        margin-top: 24px;
        margin-bottom: 24px;
    }

        .checkout .step a:hover {
            text-decoration: none;
        }

        .checkout .step .step-wrapper {
            color: #d3d3d3;
            border-bottom: 1px solid #d3d3d3;
            padding-left: 8px;
            padding-right: 8px;
            margin-bottom: 12px;
        }

            .checkout .step .step-wrapper .number {
                margin-bottom: 2px;
            }

            .checkout .step .step-wrapper .name {
                text-transform: uppercase;
                margin-bottom: 10px;
            }

            .checkout .step .step-wrapper:hover, .checkout .step .step-wrapper.completed, .checkout .step .step-wrapper.active {
                border-bottom-color: #e8e8e8;
            }

                .checkout .step .step-wrapper:hover p, .checkout .step .step-wrapper.completed p, .checkout .step .step-wrapper.active p {
                    color: #e8e8e8;
                    font-weight: 600;
                }

    .checkout .order-item .details {
        width: 100%;
    }

        .checkout .order-item .details .attributes {
            font-size: 14px;
            display: flex;
            justify-content: space-between;
        }

            .checkout .order-item .details .attributes p {
                margin-bottom: 0;
            }

    .checkout .order-item {
        border-bottom: 1px solid #e8e8e8;
    }

        .checkout .order-item h6 {
            font-size: 18px;
        }


        .checkout .order-item .name h6 {
            font-weight: 300;
        }

        .checkout .order-item .value h6 {
            font-weight: 300;
            text-align: right;
        }

    .checkout p.shipping-address a, .checkout p.billing-address a {
        color: #e8e8e8;
    }

.panel-group.accordion {
    border: 1px solid #e8e8e8;
    border-radius: 0;
}
.panel-group.accordion .card-header {
    position: relative;
}
a.accordion-a::after {
    position: absolute;
    right: 15px;
    top: 10px;
    content: "\e912";
    display: inline-block;
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #dcdcdc;
    font-size: 15px;
    line-height: 30px;
    font-family: 'icomoon';
    color: #F87DA9;
    font-weight: bold;
}
a.accordion-a[aria-expanded="true"]::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

tr.vertical-middle td {
    vertical-align: middle;
}