﻿body.modal-open {
    overflow: hidden;
}

.fullPopupModalWrapper {
    display: block;
    width: 100%;
    height: calc(100% - 157px); /* Subtract header height */
    position: fixed;
    left: 0;
    top: 157px;
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 200;
    background-color: unset;
    overflow: auto;
}

.fullPopupModal {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    height: 0;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    pointer-events: all;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .fullPopupModal.open {
        height: 100%;
        display: flex;
    }

.fullPopupModalContent {
    flex: 1;
    background-color: white;
}

.fullPopupModal_Search {
    left: unset;
    right: 0;
    height: 0;
    width: 100%;
    max-width: 400px;
    max-height: 100px;
    box-shadow: 0 70px 21px rgba(0, 0, 0, 0.1);
}

.WrapperOpen {
    pointer-events: unset;
}
