/* set theme color */
:root {
	--cassiopeia-color-primary: #9b7d66;
	--cassiopeia-color-hover: #9b7d66;
	--cassiopeia-color-link: #9b7d66;
}

/* set color of article title */
h1 {
	color: var(--cassiopeia-color-primary);
}

/* fix issue in gallery that all images uses the same size */
/*
.pg-item-box-image {
	width: 256px;
	height: 200px;
	display: flex;
	justify-content: center;
}
*/

/* disable border in list of gallery */
.pg-item-box {
  border: 0px;
}

/* center items in gallery */
.pg-category-items-box {
	justify-content: center;
}

/* disable share button in gallery */
.pswp__button--share {
	display: none !important;
}

/* don't show paging in gallery */
.pagination {
	display: none;
}

/* registration form add red bordeer for invalid fields */
.text_area:invalid {
	outline: 1px solid red;
}


/* set width of registration form */
form[name="regi"] {
	max-width: 600px;
}

/* set space between rows in  registration form */
form[name="regi"] table {
	border-collapse: separate;
 	border-spacing: 0 5px;
}
