.plugin-wrapper {
	width: calc(100% - 15px);
}

.padded-element {
	padding: 15px;
	box-sizing: border-box;
	border: 2px solid #000;
	background-color: #fcfcfc;
	margin-top: 15px;
	margin-bottom: 15px;

	h1, h2, h3, p {
		max-width: 650px;

		&:first-child {
			margin-top: 0;
			padding-top: 0;
		}
	}

	.settings-row {
		.col {
			border: 2px solid #f0f0f0 !important;
			background-color: #f0f0f0 !important;

			p:first-child {
				margin-top: 10px;
			}
		}
	}
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.tua-button {
	padding: 10px 20px;
	border: 2px solid #000;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	transition: all .25s ease-in-out;
	cursor: pointer;
	margin-top: 20px;
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	line-height: 16px;
	box-sizing: border-box;

	&:hover,
	&:active,
	&:focus {
		color: #000;
		background-color: #fff;
	}

	&[disabled] {
		background-color: $form-field-border-color;
		border-color: $form-field-border-color;
		color: #fff;
		cursor: not-allowed;
	}
}

.hidden {
	display: none !important;
}