.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    text-align: center;
}

.product-item {
    flex: 0 1 31%;
    box-sizing: border-box;
    margin: 10px;
    padding: 15px;
    border: 2px solid #e1e1e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-info {
    display: inline-block;
    text-align: center;
    margin-right: 5px;
    margin-left: 13px;
}

.page-layout-2columns-left .column.main {
    width: 100% !important;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

.product-wizard {
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #f9f9f9;
}

.wizard-step {
    margin-bottom: 20px;
}

.wizard-navigation {
    text-align: right;
}

.wizard-navigation button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.wizard-navigation button:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #ccc;
    border-top-color: #000;
    animation: spin 1s linear infinite;
}
.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Optional: spacing between items */
    align-items: center;
}

.horizontal label {
    margin-right: 15px; /* Optional: spacing between label and radio button */
}

.horizontal input[type="radio"] {
    margin-right: 5px; /* Optional: spacing between radio button and label text */
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.page-loader.hidden {
    display: none;
}

.questions-content.hidden {
    display: none;
}

@media (min-width: 769px),
print {
    .page-layout-2columns-left .column.main {
        width: 100%;
        float: right;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }
}