#gd_toast_notification {
    position: fixed;
    background-color: #fff;
    border-color: #bbb;
    box-shadow: 0 2px 6px rgb(3 3 3 / 20%);
    /*padding-left: 68px;*/
    margin-bottom: 5px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    z-index: 9999;
    /*font-size: 20px;*/
    display: none;
    min-height: 40px;
    /*line-height: 40px;*/
}
#gd_toast_notification_close{
    float: right;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 16px;
    margin-left: auto;
}
#gd_toast_notification .check-mark {
    float: left;
}
#gd_toast_notification .icon {
    color: #fff;
    box-shadow: 2px 0 5px -2px rgb(3 3 3 / 20%);
    left: -1px;
    text-align: center;
    top: 0px;
    position: relative;
    width: 53px;
    min-height: 40px;
    height: 100%;
    font-size: 22px;
    margin-right: 15px;
    display: inline-block;
}
#gd_toast_notification .icon span{
    width: 22px;
    font-size: 12px;
    height: 22px;
    line-height: 20px;
    border: 2px solid #fff;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#gd_toast_notification .icon.warning span{
    font-size: 22px;
    height: auto;
    width: auto;
    line-height: unset;
    border:none;
}
#gd_toast_notification_text{
    position: relative;
    top: 0px;
    color: #363636;
    font-weight: 600;
    padding: 10px 0px;
    font-size: 14px;
}
#gd_toast_notification .icon.info {
    background-color: #8b8d8f;
}
#gd_toast_notification .icon span i {
    position: relative;
    top: -1px;
    left: 1px;
}
#gd_toast_notification .icon.confirm {
    background-color: #3f9c35;
}
#gd_toast_notification .icon.warning {
    background-color: #ec7a08;
}
#gd_toast_notification .icon.wait {
    background-color: #0096dc;
}
#gd_toast_notification .icon.alert_icon {
    background-color: #c00;
}
/*#gd_toast_notification[style="display: block;"]{
    display: flex !important;
}*/
#gd_toast_notification>div{
    display: flex !important;
}
.dialog_div{
	display:none;
	position: fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	border: 1px solid #999;
    background-color: rgba(0, 0, 0, 0.69);
	font-size: large;
	z-index:1000;
}
.dialog_frame{
	border: 1px solid #999;
	color: #000;
	position:relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    padding: 15px 15px;
	height:200px;
	width:440px;
	background-color: #FFF;
}
.dialog_frame img {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 3px;
    left: 3px;
}
.dialog_frame span{
	position:static;
	display: block;
	margin-left:10px;
	margin-top:20px;
	width:95%;
	height:60px;
	text-align:center;
}
.dialog_frame #yes_btn{
	position:absolute;
	left:110px;
	bottom: 15px;
	width:100px;
	height:45px;
	border: 1px solid #666;
	display:none;
	text-align:center;
	padding-top:10px;
}
.dialog_frame #no_btn{
	position:absolute;
	left:215px;
	bottom: 15px;
	width:100px;
	height:45px;
	border: 1px solid #666;
	display:none;
	text-align:center;
	padding-top:10px;
}
.alert_message_gestionale{
	color: #FFF;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    overflow: auto;
    position: fixed;
    z-index: auto;
    height: 50px;
    width: 100%;
    bottom: -15px;
    background-color: #F17412;
    border: 1px solid #2C2C2C;
    cursor: pointer;
}

/*POPUP MODALE*/
.gd-modal-dialog {
    width: 100%;
    height: calc(100% - 40px);
    position: relative;
    background-color: rgba(255, 255, 255, 0.87);
    left: 0px;
    top: 0px;
    margin-left: auto;
    margin-top: 20px;
    z-index: 1000;
    border: 2px solid #0096dc;
    border-radius: 1px;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-right: auto;
    max-width: 1240px;
}

.gd-modal-dialog .gd-modal-title {
    color: #ffffff;
    background-color: #0096dc;
    padding: 8px 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    min-height: 33px;
}

.gd-modal-dialog .gd-modal-title .action_ico {
    float: right;
    cursor: pointer;
    padding: 6px 6px 6px 6px;
    font-weight: bolder;
    position: relative;
    top: -5px;
}

.gd-modal-dialog iframe {
    width:100%;
    height:100%;
    height: calc(100% - 40px);
    overflow-x: scroll; /* scroll su PC, visible su ipad */
    overflow-y: scroll; /* scroll su PC, visible su ipad */
}

.gd-modal-body {
    width: 100%;
    height: 96%;
}
@media only screen and (max-width : 640px) {
    .gd-modal-dialog {
            height: 100%;
            margin-top: 0px;
    }
}