.spinner {
    width: 40px;
    height: 40px;
    margin: 100px auto;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.product-add-form {
    display: inline-block;
    margin-bottom: 10px;
}

#CotaFrete-shipping-quote-app #CotaFrete-shipping-quote-form .field.zipcode {
    max-width: 320px;
}

#CotaFrete-shipping-quote-app #CotaFrete-shipping-quote-form .control-cep {
    position: relative;
    min-height: 42px;
}

#CotaFrete-shipping-quote-app #CotaFrete-shipping-quote-form .control-cep input {
    height: 42px;
    padding-right: 150px;
}

#CotaFrete-shipping-quote-app #CotaFrete-shipping-quote-form .control-cep .action.subscribe {
    position: absolute;
    top: 4px;
    right: 4px;
    transform: none;
    margin: 0;
    height: 34px;
    min-height: 34px;
    max-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
}

#CotaFrete-shipping-quote-app #CotaFrete-shipping-quote-form .control-cep .action.subscribe span {
    line-height: 1;
}

#CotaFrete-shipping-quote-app .panel.is-hidden {
    display: none;
}

#CotaFrete-shipping-quote-app .panel {
    margin-top: 12px;
    border: 1px solid #d9e1ea;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

#CotaFrete-shipping-quote-app .panel-body {
    padding: 14px;
}

#quote-itens {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

#quote-itens .quote-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

#quote-itens .quote-item__service {
    color: #334155;
    font-size: 14px;
    line-height: 1.4;
}

#quote-itens .quote-item__price {
    color: #0f766e;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

#quote-itens .quote-item--error {
    display: block;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fff1f2;
    color: #b91c1c;
}

form#CotaFrete-shipping-quote-form{
    margin-top: 3%;
}