﻿.waitting_shipping_fee {
    height: 20px;
    width: 20px;
}


.field__input-wrapper{
    margin-bottom: 10px;
}

.shipping_fee_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    padding: .94em .8em;
    border: 1px #d9d9d9 solid;
    height: 44px;
    background-color: #fff;
    color: #999;
    font-weight: 600;
}

.field__input-wrapper input {
    border-radius: 4px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: .94em .8em;
    border: 1px #d9d9d9 solid;
    height: 44px;
    background-color: #fff;
    color: #999;
    font-weight: 600;
}

    .field__input-wrapper label {
        color: #d80000;
    }

    .field__input-wrapper select {
        border-radius: 4px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        padding: .94em .8em;
        border: 1px #d9d9d9 solid;
        height: 44px;
        background-color: #fff;
        color: #999;
        font-weight: 600;
    }


    .field__input-wrapper input::placeholder {
        color: #999 !important;
        font-weight: 600 !important;
    }

.order_notes textarea {
    width: 100%;
    padding: 10px;
    border: 1px #d9d9d9 solid;
    border-radius: 4px;
    color: #999;
    font-weight: 600;
}

    .order_notes textarea::placeholder {
        color: #999 !important;
        font-weight: 600 !important;
    }

.product {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaedff;
}

.product .product_image img {  
    border-radius: 14px;
}

    .product .product_image .product-thumbnail__wrapper {
        position: relative;
        width: 50px;
    }

        .product .product_image .product-thumbnail__wrapper img {
            width: 50px !important;
            height: 50px !important;
            object-fit: cover;
        }

    .product .product-thumbnail__quantity {
        position: absolute;
        top: -10px;
        left: -10px;
        height: 24px;
        width: 24px;
        background: var(--mainColor3);
        border-radius: 50%;
        text-align: center;
        color: white;
    }

    .product .product_description .product_description_name {
        display: -webkit-box;
        color: #cf6824;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 600;
        color: black;
    }

.product .product_description .product_description_property {
    font-size: 14px;
}

.product .product-price {
    padding: 0;
    text-align: end;
    vertical-align: middle;
    font-weight: 600;
    white-space: nowrap;
}

.discount_code {
    margin-top: 10px;
}

.checkout_order_subtotal {
    font-size: 1rem;
    font-weight: 600;
}

.checkout_order_total {
    font-size: 1.25rem;
    font-weight: 600;
}

.checkout_order_total span{
    font-size: 1.5rem;
    color: var(--mainColor2);
    font-weight: 600;
}
.action .back_to_cart a span {
    font-size: .9rem;
}

.action .back_to_cart a i {
    font-size: .9rem;
}

.action .back_to_cart a:hover + i {
    transform: translateX(-4px);
}

.shipping_container {
    height: 15px;
    width: 105px;
    display: flex;
    position: relative;
}

    .shipping_container .circle {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #ccc;
        animation: move 500ms linear 0ms infinite;
        margin-right: 30px;
    }

        .shipping_container .circle:first-child {
            position: absolute;
            top: 0;
            left: 0;
            animation: grow 500ms linear 0ms infinite;
        }

        .shipping_container .circle:last-child {
            position: absolute;
            top: 0;
            right: 0;
            margin-right: 0;
            animation: grow 500ms linear 0s infinite reverse;
        }

@keyframes grow {
    from {
        transform: scale(0, 0);
        opacity: 0;
    }

    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}

@keyframes move {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(45px);
    }
}

.content-box {
    padding: 10px !important;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

