﻿





.grid-cell.visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 600ms;
}

.grid-cell.hidden {
    visibility: hidden;
    opacity: 0;
}

.data-grid-options {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.options-toggle {
    position: absolute;
    top: -2px;
    z-index: 9999;
    background-color: white;
    box-shadow: 0 5px 15px rgb(0 0 0 / 15%), 0 2px 6px rgb(0 0 0 / 3%);
    height: calc(max-content + 2);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: black;
    border: 1px solid #E5E5E5;
    font-weight: normal;
    left: 0;
    transform: translateX(calc(-100% + 5px));
}

    .options-toggle.fade-out {
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s linear 150ms, opacity 150ms;
    }

    .options-toggle.fade-in {
        visibility: visible;
        opacity: 1;
        transition: visibility 0s linear 0s, opacity 300ms;
    }

.options-toggle-row {
    height: 31px;
    line-height: 31px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 3px;
}

    .options-toggle-row:hover {
        background-color: #f8f8f8;
    }

.options-toggle-triangle {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ff7878;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 10000;
    right: -11px;
    top: 5.5px;
    transform: rotate(90deg);
}

@media screen and (max-width: 1536px) {
    .options-toggle {
        height: calc(max-content + 1);
    }

    .options-toggle-row {
        height: 25px;
        line-height: 25px;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 2px;
    }

    .options-toggle-triangle {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 4px solid #ff7878;
        width: 8px;
        height: 8px;
        right: -9px;
        top: 4.5px;
    }
}
