﻿.pangea-common-widgets-modal-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pangea-common-widgets-modal-wrap:before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #acacac;
    opacity: 0.6;
}


.pangea-common-widgets-modal-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    max-height: 100%;
    background-color: white;
    padding: 1em;
    padding-right: 0.5em;
    display: flex;
    flex-direction: column;
    z-index: 9991;
    border-radius: 0 !important;
}

.pangea-common-widgets-modal-dialog-small {
    min-height: auto;
    max-height: none;
    top: 30%;
}

.pangea-common-widgets-modal-dialog .pangea-common-widgets-modal-dialog {
    min-height: 100% !important;
    z-index: 9999;
}

.pangea-common-widgets-modal-dialog .pangea-common-widgets-modal-wrap::before {
    visibility: hidden;
}


.pangea-common-widgets-modal-dialog-title {
    float: left;
    width: calc(100% + 1.5em);
    margin-top: -1em;
    margin-left: -1em;
    height: auto;
    padding: 1em;
    padding-bottom: 0.5em;
    padding-right: 1em;
    color: white;
    background: var(--pangea-brand-colour);
}

.pangea-common-widgets-modal-dialog-title h3 {
    float: left;
    width: calc(100% - 5em);
    font-weight: bold;
    text-decoration: none !important;
}

#pangea-common-widgets-modal-dialog-close {
    float: right;
    width: 2em;
    height: 2em;
    margin-top: -0.25em;
    margin-right: -0.25em;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-size: 1.25em;
}

.pangea-common-widgets-modal-dialog-image {
    float: left;
    width: 100%;
    height: auto;
    max-height:30em;
    min-width: 20em;
    min-height: 20em;
    -o-object-fit: contain;
    object-fit: contain;
    background: #ededed;
}

.pangea-common-widgets-modal-dialog-body {
    float: left;
    width: 100%;
    height: auto;
    min-height: calc(100% - 3.5em);
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 1em;
}

.pangea-common-widgets-modal-dialog-body-wrap {
    float: left;
    width: calc(100% - 0.5em);
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}





@media (min-width: 768px) {

    .pangea-common-widgets-modal-dialog {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40em;
        height: 80vh;
        min-height: 80vh;
        max-height: 80vh;
        border-radius: 5px;
        -webkit-box-shadow: 0 10px 1px rgb(0 0 0 / 30%);
        -moz-box-shadow: 0 10px 1px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding-box;
        background-clip: padding-box;
   }

    .pangea-common-widgets-modal-dialog-small {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .pangea-common-widgets-modal-dialog .pangea-common-widgets-modal-dialog {
        min-height: 100% !important;
    }

}