﻿.checkout-review .inner-wrapper {
    padding: 6px 20px 60px 20px;
    color: #262626;
}


.checkout-review .item-container {
    display: table;
    width: 100%;
    margin: 10px 0 6px;
}

.checkout-review .item {
    display: table-row;
}

.checkout-review .image-wrapper,
.checkout-review .tree-name-wrapper {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 10px;
}

.checkout-review .image-wrapper {
    width: 1px;
    padding-right: 10px;
}

    .checkout-review .image-wrapper img {
        width: 50px;
    }

.checkout-review .tree-name {
    color: #484c46;
    font-weight: 600;
    font-size: 16px;
}

.checkout-review .estimate-savings {
    color: #a6a8ac;
    font-weight: normal;
    font-size: 12px;
}

.checkout-review .dollar-amount {
    color: #5a7c38;
    font-weight: normal;
    font-size: 14px;
}

.checkout-review .your-trees { 
    padding: 0;
}

.checkout-review .personal-info {
    margin: 40px 0;
    font-size: 16px;
    padding-right: 0;
}

    .checkout-review .personal-info label:not(.first) {
        margin-top: 20px;
    }

    .checkout-review .personal-info button {
        margin-top: 16px;
    }

.checkout-review .checkbox-wrapper {
    white-space: nowrap;
    margin-top: 10px;
}

    .checkout-review .checkbox-wrapper label {
        white-space: normal;
        padding-top: 4px;
        font-style: italic;
        color: #6d6e71;
    }

.checkout-review .addition-info {
    display: inline-block;
    margin-top: 20px;
}

.checkout-review .davey-info {
    margin-top: 40px;
}

.checkout-review .radio-wrapper {
    padding-left: 16px;
}

.checkout-review h3.davey {
    margin-top: 20px;
}

.checkout-review p.davey {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #4A5570;
}

    .checkout-review p.davey.title {
        font-weight: 600;
        color: #000;
    }

.checkout-review .submit-wrapper {
    text-align: center;
    margin-top: 60px;
}

.checkout-review .submit-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1002;
    background: rgba(0,0,0,0);
    visibility: collapse;
    transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0ms linear 200ms;
}

    .checkout-review .submit-overlay.show {
        visibility: visible;
        background: rgba(0,0,0,0.7);
        transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0ms linear 0ms;
    }

    .checkout-review .submit-overlay .message-container {
        top: 50%;
        left: 0;
        right: 0;
        position: absolute;
        margin-top: -30px;
        text-align: center;
        transform: scale(.85, 0.85);
        opacity: 0;
        transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
    }

        .checkout-review .submit-overlay.show .message-container {
            opacity: 1;
            transform: scale(1,1);
        }

    .checkout-review .submit-overlay .message-wrapper {
        display: inline-block;
        background: #fff;
        border: 1px solid #27527e;
        border-radius: 10px;
        padding: 10px 20px 10px 10px;
        text-align: left;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,0.25);
        font-size: 16px;
    }

.checkout-review .spinner-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

    .checkout-review .spinner-wrapper .center-tree {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -22px;
        margin-left: -20px;
        width: 40px;
    }

.checkout-review .spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 47;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 47;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}





@media (min-width: 768px) {
    #checkout-review-container {
        width: 60%;
        max-width: 960px;
        min-width: 870px;
    }

    .checkout-review .additional-info {
        display: inline-block;
        margin-top: 60px;
    }

    .checkout-review .davey-info {
        margin-top: 0;
    }

    .checkout-review .personal-info {
        margin: 10px 0;
        padding: 10px 20px 20px;
        background: #F8FAED;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        -moz-box-shadow: 0 4px 3px 0 rgba(0,0,0,0.35);
        -webkit-box-shadow: 0 4px 3px 0 rgba(0,0,0,0.35);
        box-shadow: 0 4px 3px 0 rgba(0,0,0,0.35);
        display: inline-block;
        width: 100%;
    }
}