/* Floating label styles for form fields */
.floating-label-group {
    position: relative;
}
.floating-label {
    position: absolute;
    top: -13px;
    left: 20px;
    font-size: 13px;
    color: #888;
    background: var(--secondary-color);
    padding: 0 4px;
    pointer-events: none;
    transition: 0.2s;
    opacity: 0.8;
    z-index: 2;
}
.floating-label-group input:not(:placeholder-shown),
.floating-label-group input:focus {
    padding-top: 22px;
}
.floating-label-group input:not(:placeholder-shown) + .floating-label,
.floating-label-group input:focus + .floating-label {
    top: -10px;
    left: 10px;
    font-size: 11px;
    color: #333;
    background: #fff;
    opacity: 1;
}
/* HTML: <div class="loader"></div> */
.buttonLoader {
    width: 25px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%, #182237) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
        radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: l4 1s infinite steps(10);
}

@keyframes l4 {
    to {
        transform: rotate(1turn)
    }
}

#tableLoaderBox {
    display: flex;
    /* Enable flexbox layout */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    height: 100px;
    /* Example height for the loader box */
}

.tableLoader {
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%, #399385) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
        radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: l4 1s infinite steps(10);
}

@keyframes l4 {
    to {
        transform: rotate(1turn)
    }
}

.disabledButton {
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.6 !important;
}

.sidebar-right {
    display: none !important;
}

.product-row .card img,
.product-row .card video {
    object-fit: contain;
    height: 200px;
    width: 100%;
}

.product-row .card {
    margin: 10px 5px;
    background: rgb(235, 234, 234);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-row .card:hover img {
    filter: grayscale(40%);
}

.product-row .card .circle {
    height: 20px;
    width: 20px;
    border: 1px solid black;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    cursor: pointer;
}

.product-row .card:hover .circle {
    display: flex;
}

.product-row .card .circle:hover i {
    display: block;
}

.product-row .card .circle i {
    display: none;
    font-size: 10px;
}

.product-row .card .circle_active {
    background: #46b3e6;
    display: flex;
    border: none;
}

.product-row .card .circle_active i {
    display: block;
    color: white;
}

.product-row .card button {
    position: absolute;
    top: 20px;
    right: 20px;
}
.social-link{
    font-size: 18px;
    color: white;
    margin: 5px;
}

