/*
* Shoptimizer Extra Features:
* Product Shipping
*/
.sef-product-shipping {
    display: flex;
    margin: 0.5rem 0;
}

#sef-product-shipping-postal-code.sef-product-shipping-postal-code {
    width: 65px;
    height: 45px;
    font-size: 1rem;
    padding: 0.5rem;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    outline: 0;
    text-align: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

input.sef-product-shipping-button.button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	background-color: #e6e3dd;
	color: #000;
	font-size: 14px;
	font-weight: normal;
}

input.sef-product-shipping-button.button:hover {
	background-color: #e6e3dd;
	color: #000;
}

#sef-product-shipping-postal-code.sef-product-shipping-postal-code:focus {
    border-color: #ccc;
}

#sef-product-shipping-form {
    margin-bottom: 1.5rem;
}

#sef-product-shipping-form p {
    margin: 0;
}

.sef-error-shipping {
    color: #e2401c;
}

.sef-warning-shipping {
    color: #e27c1c;
}

/* For spinner */

.sef-product-shipping-loading.sef-spinner {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: auto 1rem;
}

.sef-spinner {
    border-radius: 50%;
    border-top: 2px solid #888;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    animation: sef-spin 0.8s linear infinite;
}

@keyframes sef-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}