/*
    CSS for Missing Details dialog popup
    Created on : 03-Jun-2019
    Author     : andrew.robinson
*/

#detailsdialog {
    display: none;
    max-height: 600px;
    border-style: solid;
    border-top: 1px solid #e6e6e6;
}

.detailsdialog-wrapper{
    padding:0px !important;
    border-radius: 0px;
}

.detailsdialog-wrapper .ui-dialog {
    box-shadow: 0px 4px 6px 4px rgba(0, 0, 0, 0.2);
    padding: 0px 0px 10px 0px !important;
}

.detailsdialog-wrapper .ui-dialog-titlebar-close {
    right: 6px;
    left: auto;
    min-width: auto;
    background: #a0a1a7 !important;
    padding: 10px;
    border-radius: 3px;
    top: 6px;
    margin: 0 0 0 0;
    line-height: 0;
    font-size: 0;
    height: auto;
    min-height: 0;
}

.detailsdialog-wrapper .ui-dialog .ui-dialog-titlebar-close, .ui-icon-closethick {
    width: 16px !important;
    height: 16px !important;
}

.detailsdialog-wrapper .ui-dialog-title {
    font-size: 22px;
    color: #000;
    margin:0px 0px;
}

.detailsdialog-wrapper .ui-dialog-content{
    padding:1.1em 1em;
}

.detailsdialog-wrapper .ui-dialog-titlebar{
    height:35px !important;
}
.detailsdialog-wrapper .detailsdialog-wrapper .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
    height: 35px;
}

.detailsdialog-wrapper .ui-dialog button {
    border-style: solid;
    border-top: 1px solid #c0c0c0;
}

.detailsdialog-wrapper .ui-dialog  .ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    /*background: #5CA644;*/
}

.detailsdialog-wrapper .ui-dialog-buttonset .save-button {
    background: #000;
    color: #000;
    background-color: #f2f2f2 !important;
    border-style: none;
    position: center;
}

.detailsdialog-wrapper .ui-dialog-buttonset .close-button {
    background: #a0a1a7 !important;
    color: #fff;
}

.detailsdialog-wrapper .ui-dialog .ui-dialog-titlebar-close {
    display: none;
}

.detailsdialog-wrapper .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
    background: #fff;
    border-radius: 0;
    background: none repeat scroll 0% 0% #f2f2f2 !important;
}

.detailsdialog-wrapper .ui-widget-header {
    border-width: 0 0 1px 0;
    border-bottom-style: solid;
    border-left: none;
    border-color: lightgrey;
}

.detailsdialog-wrapper .hand {
    cursor: pointer;
}

.detailsdialog-wrapper button{
    left:auto;
    background-color: #292b36;
}
.detailsdialog-wrapper button {
    background-color: #404352 !important;
    border-radius:0;
}
@media only screen and (max-width: 900px) {
    .detailsdialog-wrapper .ui-dialog-buttonset .save-button, .detailsdialog-wrapper .ui-dialog-buttonset .close-button  {
        max-width: none;
        width: 100%;
    }

    .detailsdialog-wrapper .ui-dialog-buttonpane .ui-dialog-buttonset{
        float: none;
    }

    .detailsdialog-wrapper .ui-dialog-buttonpane{
        padding: .5em 1em .5em 1em
    }
}
@media only screen and (min-width: 900px) {
    .detailsdialog-wrapper{
        width: 600px !important;
    }
}