.accordion [role="region"] {
    overflow: hidden;
    height: 0;
    transition: height 300ms ease;
}
@keyframes accordion-up {
    0% {
        height: var(--radix-accordion-content-height)
    }

    to {
        height: 0
    }
}

.data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
    animation: accordion-up .2s ease-out
}

@keyframes accordion-down {
    0% {
        height: 0
    }

    to {
        height: var(--radix-accordion-content-height)
    }
}

.data-\[state\=open\]\:animate-accordion-down[data-state=open] {
    animation: accordion-down .2s ease-out
}

.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction=vertical] {
    flex-direction: column
}
/* width */
/* ::-webkit-scrollbar {
  width: 5px;
} */

/* Track */
/* .iframe-wrap ::-webkit-scrollbar-track,
.iframe-wrap ::-webkit-scrollbar-thumb,
.iframe-wrap ::-webkit-scrollbar-thumb:hover {
    opacity: 0;
}
.iframe-wrap {
    max-height: 560px;
    height: 100vh;
    overflow-y: scroll;    
}
.iframe-wrap:hover ::-webkit-scrollbar-track {
  background: #f1f1f1;
  opacity: 1;
}
.iframe-wrap:hover ::-webkit-scrollbar-thumb {
  background: hsl(var(--secondary));
  opacity: 1;
}
.iframe-wrap:hover ::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--secondary));
  opacity: 1;
} */
/* .iframe-wrap iframe {
    min-height: 941px !important;
    max-height: 500px;
    height: 108vh;
} */