.big-dialog {
	display: flex;
    justify-content: center;
    align-items: center;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: +1;
}

.big-dialog[item-style="dark"] {
	background-color: rgba(0, 0, 0, 0.9);
}

.big-dialog[item-style="dark"] .big-dialog-inner {
	background-color: transparent;
}

.big-dialog[item-style="dark"] .big-dialog-title {
	color: #ffffff;
}

.big-dialog[item-style="dark"] .big-dialog-content {
	color: #ffffff;
}

.big-dialog[item-style="dark"] .big-dialog-footer {
	margin-left: auto;
	margin-right: auto;
	width: 230px;
}

.big-dialog[item-fullscreen="yes"] .big-dialog-inner {
	height: calc(100% - 20px);
}

.big-dialog[item-loading="yes"] .big-dialog-content {
	display: none !important;
}

.big-dialog[item-loading="yes"] .big-dialog-footer {
	display: none !important;
}

.big-dialog[item-loading="yes"] .big-dialog-inner:after {
	content: "";
	flex-grow: 1;
	min-height: 200px;
	background-image: url(../images/dialog/preloader.svg);
	background-repeat: no-repeat;
	background-size: 64px 64px;
	background-position: center;
	width: 100%;
	height: 100%;
}

.big-dialog[item-closing="1"] {
	background-color: transparent;
}

.big-dialog[item-closing="2"] {
	background-image: url(../images/dialog/icon-checked.svg);
	background-size: 70% 70%;
	background-repeat: no-repeat;
	background-position: center center;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin-left: -90px;
	margin-top: -90px;
	background-color: #11d96f;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.big-dialog[item-closing="2"] .big-dialog-inner {
	display: none;
}

.big-dialog-inner {
	display: flex;
	flex-direction: column;
	width: 300px;
	min-width: 260px;
	max-width: 400px;
	max-height: calc(100% - 20px);
	background-color: #ffffff;
	margin-left: 20px;
    margin-right: 20px;
	overflow: hidden;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

@media all and (max-width: 360px) {
	.big-dialog-inner {
		width: 100%;
	}
}

.big-dialog-header {
	position: relative;
	height: 55px;
}

.big-dialog-back {
	position: absolute;
	left: 0px;
	top: 0px;
	background-image: url(../images/icon-back.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px 24px;
	width: 55px;
	height: 55px;
}

.big-dialog-title {
	font-size: 17px;
	color: #1e1e1e;
	height: 55px;
	line-height: 55px;
	text-align: center;
}

.big-dialog-content {
	flex-grow: 1;
	overflow-y: auto;
}

.big-dialog-footer {
	padding: 16px;
}

.big-dialog-footer[footer-layout="vertical"] .big-dialog-button:first-of-type {
	margin-bottom: 8px;
}

.big-dialog-footer[footer-layout="horizontal"] {
	display: flex;
}

.big-dialog-footer[footer-layout="horizontal"] .big-dialog-button {
	width: auto !important;
	flex-grow: 1;
}

.big-dialog-footer[footer-layout="horizontal"] .big-dialog-button:not(:last-child){
	margin-right: 8px;
}

.big-dialog-button {
	display: inline-block;
	width: 100%;
	padding: 8px;
	padding-left: 12px;
	padding-right: 12px;
	border: none;
	font-size: 17px;
	background-color: #0dcc67;
	color: #ffffff;
	cursor: pointer;
	
	-webkit-border-radius: 25px;
    border-radius: 25px;
}

.big-dialog-button[button-style="light"] {
	background-color: #cccccc !important;
    color: #3a3a3a !important;;
}

.big-dialog-button[button-style="red"] {
	background-color: #f10737  !important;
    color: #ffffff !important;;
}

.big-dialog-button:hover {
	opacity: 0.7;
}