﻿
#waitCursorOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.1);
    z-index: 9998;
}

#waitCursor {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    font-size: 40px;
}

.noValueOptionSelected {
    background-color: var(--AlertColor);
}

.productAttributeTextFieldError,
.productAttributeRadioButtonError {
    color: var(--AlertColor);
    display: none;
}

.is-invalid .productAttributeTextFieldError,
.is-invalid .productAttributeRadioButtonError {
    display: inline-block;
}

#shopSearchContainer {
    position: relative;
    margin-bottom: 30px;
}

#shopSearchButton {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
}

#shopSearchInput {
    height: 40px;
}

/* Product count*/

#shopProductCountContainer
{
    margin: 0 0 15px 0;
}

/* Product sort filter */
#sortDropdown.dropdown {
    position: relative;
    width: 250px;
    margin: 0 0 30px 0;
}

#sortDropdown .dropdown-toggle {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 12px 0;
    cursor: pointer;
    font-size: 16px;
}

#sortDropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: none;
    flex-direction: column;
}

#sortDropdown.dropdown.open .dropdown-menu {
    display: flex;
}

#sortDropdown .dropdown-option {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sortDropdown .dropdown-option:hover {
    background: #f0f0f0;
}

#sortDropdown .dropdown-option.selected {
    font-weight: bold;
}