.button-portlet {

	.square {
		position: relative;
		width: auto;
		height: 100%;
		aspect-ratio: 1/1;
		border: 2px solid transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center; 

			div {
				text-align: center;		
			}
		}
	}

	.rectangle {
		position: relative;
		width: auto;
		height: 100%;
		aspect-ratio: 16/9;
		border: 2px solid transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center; 
		
			div {
				text-align: center;		
			}
		}
	}

	.circle {
		position: relative;
		width: auto;
		height: 100%;
		aspect-ratio: 1/1;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		border: 2px solid transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center; 

			div {
				text-align: center;		
			}
		}
	}

	.oval {
		position: relative;
		width: auto;
		height: 100%;
		aspect-ratio: 16/9;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		border: 2px solid transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center; 

			div {
				text-align: center;		
			}
		}
	}

	.image {
		position: relative;
		width: auto;
		height: auto;
		border: 2px solid transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			height: 100%;
		
			div {
			}
		}
	}

	.bar {
		position: relative;
		width: auto;
		height: 36px;
		border: 2px solid transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			text-align: center;		
		
			div {
				line-height: 36px;
				vertical-align: middle;
			}
		}
	}

	.theme {
		position: relative;
		width: auto;
		height: 36px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		border: 2px solid transparent;
		box-shadow: 0 1px 2px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.4);

		.child {
			position: relative;
			text-align: center;		
		
			div {
				line-height: 36px;
				vertical-align: middle;
			}
		}
	}

	.button-title a {
		text-decoration: none;
	}
		
	.button-title a:hover {
		text-decoration: none;
	}

}