﻿/* Disable DW font-logo in the loginbox and in the webclient for all organizations */

.dw-logo:before, .dw-logo:after {
	color: transparent;
}

body #loginBox .dw-logo {
	color: transparent;
}

.dw-logo {
	background-position: 0 8px;
}

/* Place a default logo in case no organization is written in the loginBox formfield */

body #loginBox {
	background-image: url('custom_logo.svg') !important;
	background-repeat: no-repeat;
	background-size: 100px 25px;
}


/* Place a custom image logo in the loginbox and webclient for organization with ID 1 */

body.orgid_ba59372a-af22-470e-a88d-0f97c6abcd28 #loginBox,
div.orgid_ba59372a-af22-470e-a88d-0f97c6abcd28 .dw-logo {
	background-image: url('BLKREDlogo.svg') !important;
	background-repeat: no-repeat;
	background-size: 118px 25px;
}


/* Place a custom image logo in the loginbox and webclient for organization with ID 2 */

body.org_Test_Organization_Inc #loginBox,
div.orgid_2.org_Test_Organization_Inc .dw-logo {
	background-image: url('test_organization_inc.svg') !important;
	background-repeat: no-repeat;
	background-size: 140px 25px;
}


/*NOTIFICATIONS POSITIONING*/

/* Hide notifications - all except confirm*/
/*
.toast-container:not(#toast-confirm-container){
	display: none !important;
}
*/

/*Notification - top-right*/
/*
.toast-container:not(#toast-confirm-container){
	right: 12px !important;
    top: 12px !important;
}
*/

/*Notification - top-left*/
/*
.toast-container:not(#toast-confirm-container){
	left: 12px !important;
    top: 12px !important;
}
*/

/*Notification - bottom-right*/
/*
.toast-container:not(#toast-confirm-container){
	top: auto !important;
	left: auto !important;
	bottom: 12px !important;
    right: 12px !important;
}
*/

/*Notification - bottom-left*/
/*
.toast-container:not(#toast-confirm-container){
	top: auto !important;
	right: auto !important;
	bottom: 12px !important;
    left: 12px !important;
}
*/

/*Notification - center*/
/*
.toast-container:not(#toast-confirm-container){
    position: fixed !important;
	right: auto !important;
	bottom: auto !important;
    top: 50% !important;
    left: 50% !important;
    height: auto !important;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
*/

