/*
Theme Name:     Enfold Child
Theme URI:      https://example.com/enfold-child
Description:    Enfold Child theme
Author:         A2
Author URI:     https://example.com
Template:       enfold
Version:        1.0.0
*/

.calc-method-wrap {
    display: flex;
    gap: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 8px;
    align-items: center;
}

.calc-method {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #888;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.calc-method:checked {
    background-color: #307ecc;
    border-color: #307ecc;
}

.calc-method:checked::after {
    content: '✓';
    color: white;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 4px;
    font-weight: bold;
}

.calc-method:hover {
    border-color: #307ecc;
}

.calc-loader {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #307ecc !important;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#top .post-18277 .thumbnail_container img,
#top .post-18280 .thumbnail_container img {
    max-width: 500px;
}

li.product.type-product.post-18280,
li.product.type-product.post-18277 {
    list-style: none;
}

.dot-loader span {
    width: 14px;
    height: 14px;
    background-color: #3498db;
    border-radius: 50%;
    display: inline-block;
    animation: dotMove 1s infinite ease-in-out;
}

.dot-loader span:nth-child(1) { animation-delay: 0s; }
.dot-loader span:nth-child(2) { animation-delay: 0.2s; }
.dot-loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotMove {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.calc-auth-btn {
    appearance: none;
    border: none;
    padding: 0.85rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #000;
    background: #3399ff;
    border-radius: 0.6rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.20);
    cursor: pointer;
    transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
a.calc-auth-btn {
    display: inline-block;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}


