﻿/* NxConfirm v6.0.0
   Author:hirano3
   v6.0.0 新規作成 2016/11/18 hirano3
   v7.7.0 ダイアログの階層化 2017/10/26 hirano3
   v11.12.0 重複項目を削除 2021/11/26 hirano3
*/

.__NxConfirm_DlgOverlay
{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: #000000;
    opacity: 0.7;
}

.__NxConfirm_DlgContaints
{
    position: fixed;
    left: 50%;
    top: 50%;
    height: auto;
    margin-top: 5px;
    background-color: #f2f9fe;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f9fe), to(#d6f0fd));
    background-image: -webkit-linear-gradient(top, #f2f9fe, #d6f0fd);
    background-image: -moz-linear-gradient(top, #f2f9fe, #d6f0fd);
    background-image: -ms-linear-gradient(top, #f2f9fe, #d6f0fd);
    background-image: -o-linear-gradient(top, #f2f9fe, #d6f0fd);
    background-image: linear-gradient(to bottom, #f2f9fe, #d6f0fd);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f2f9fe, endColorstr=#d6f0fd);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    color: #000000;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    padding-right: 8px;
    font-family: lucida Grande;
    font-size: 14px;
    border: 2px solid #999;
    display: block;
    line-height: 1.25;
}

.__NxConfirm_Dlgtitle
{
    font-weight: bold;
    text-align: center;
	font-size: 12px;
	padding-bottom: 10px;
}
.__NxConfirm_Dlgmessage
{
	font-size: 12px;
}

.__NxConfirm_DlgbtnTbl
{
    width: 100%;
    margin-top: 20px;
}
.__NxConfirm_DlgbtnTbl td
{
    position: relative;
    height: 22px;
}

.__NxConfirm_Dlgbutton
{
    position: absolute;
    left: 50%;
    margin-top: -10px;
	display: inline-block;
	border: 1px solid #7eb9d0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 12px;
	font-family: arial, helvetica, sans-serif;
	padding: 2px 4px 2px 4px;
	text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
	font-weight: bold;
	color: #FFFFFF;
	background-color: #a7cfdf;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a7cfdf), to(#23538a));
	background-image: -webkit-linear-gradient(top, #a7cfdf, #23538a);
	background-image: -moz-linear-gradient(top, #a7cfdf, #23538a);
	background-image: -ms-linear-gradient(top, #a7cfdf, #23538a);
	background-image: -o-linear-gradient(top, #a7cfdf, #23538a);
	background-image: linear-gradient(to bottom, #a7cfdf, #23538a);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#a7cfdf, endColorstr=#23538a);
}
.__NxConfirm_Dlgbutton:hover
{
	border: 1px solid #5ca6c4;
	background-color: #82bbd1;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#82bbd1), to(#193b61));
	background-image: -webkit-linear-gradient(top, #82bbd1, #193b61);
	background-image: -moz-linear-gradient(top, #82bbd1, #193b61);
	background-image: -ms-linear-gradient(top, #82bbd1, #193b61);
	background-image: -o-linear-gradient(top, #82bbd1, #193b61);
	background-image: linear-gradient(to bottom, #82bbd1, #193b61);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#82bbd1, endColorstr=#193b61);
    cursor: pointer;
}
