
.dialog-backdrop, .select-backdrop {
    position: fixed;
    display: flex;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,40,0.15);
    user-select: none;
    z-index: 9999;
}

.select-backdrop {
    background-color: rgba(0,0,155,0.0);
}

.dialog-hide {
    display:none;
}

.dialog-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    width: clamp(90%, 60%, 900px);
    max-width: 900px;
    height:fit-content;
    background-color: rgb(247,247,247);
    border-radius: 6px;
    box-shadow: 15px 14px 20px 0px rgba(30, 33, 37, 0.5);
    -webkit-box-shadow: 15px 14px 20px 0px rgba(30, 33, 37, 0.5);
    -moz-box-shadow: 15px 14px 20px 0px rgba(30, 33, 37, 0.5);
}

.dialog-container-small {
    width: clamp(90%, 60%,600px);
    max-width: 600px;
}

.dialog-head {
    display:flex;
    justify-content: space-between;
    font-size: 1.3em;
    font-weight: 600;
    padding: 20px;
    background-color: rgba(0,0,0,0.08)
}

.dialog-cross-close-btn {
    color:black;
    width:fit-content;
    font-size: 1.4em;
    line-height: 0;
    padding:1px;
    border:none;
    cursor: pointer;
    background-color: transparent;
    cursor: pointer;
}

.dialog-cross-close-btn:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.dialog-content {
    display:flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 20px 0px 20px;;
    min-height: 120px;
}

.dialog-content-create-new-gob-user {
    display:flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 40px 40px;
    min-height: 120px;
}

.dialog-content-edit-tt-props {
    display:flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    padding: 30px 30px;
    min-height: 120px;
}

.dialog-content-edit-tt-props-list-container {
    display:flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    padding: 30px 30px;
    min-height: 120px;
}

.dialog-scroll-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 140px;
    overflow-y: scroll;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.12);
}

.dialog-confirm-content-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 140px;
    padding: 30px;
}

.dialog-confirm-hint-text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.dialog-confirm-item-text {
    font-weight: 600;
    font-size: 1.1em;
}

.dialog-content-shadow {
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.1);
}

.dialog-foot {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
    gap: 12px;
    /* padding: 0px 20px 20px 20px; */
}

.dialog-foot-left {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    gap: 12px;
    padding: 20px 0px 0px 0px;
    padding: 20px 20px;
}

.dialog-foot-buttons {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
    gap: 12px;
    padding: 20px 0px 0px 0px;
    padding: 20px 20px;
}
