@charset "utf-8";

.rightBlock .contents {background-color: #fff;}
#dimentionView {width: 960px; height: 500px; margin: 50px 0 0; padding: 0;}
.selectors {
	width: 960px;
	height: 190px;
	background-color: var(--baseColor);
	padding: 20px;
}
.selectors .inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: 920px;
	height: 150px;
	overflow-y: auto;
}
.selectors .inner .selector {
	position: relative;
	width: 440px;
	font-size: 16px;
	padding-top: 3px;
}

label {
  position: relative;
  cursor: pointer;
  padding-left: 36px;
}
label::before,
label::after {
  content: "";
  display: block; 
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
label::before {
  background-color: #fff;
  border: 1px solid var(--selectedColor);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0px;
}
label::after {
  background-color: var(--selectedColor);
  border-radius: 50%;
  opacity: 0;
  width: 15px;
  height: 15px;
  left: 3px
}
input:checked + label::after {
  opacity: 1;
}
.visually-hidden {
 position: absolute;
 white-space: nowrap;
 border: 0;
 clip: rect(0 0 0 0);
 clip-path: inset(50%);
 overflow: hidden;
 height: 1px;
 width: 1px;
 margin: -1px;
 padding: 0;
}

