.fk-overlay-container {
    position: absolute;
}

.fk-overlay-parent-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
}

.fk-overlay-wrapper {
    position: fixed!important;
    display: flex;
    z-index: 1200;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
  
.fk-overlay-child {
    pointer-events: auto;
    @include height-fit-content();
}

.fk-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
    opacity: 0.5
}
  