mirror of
https://github.com/tuxitop/chessview.git
synced 2026-07-22 06:27:57 +00:00
2049 lines
754 KiB
CSS
2049 lines
754 KiB
CSS
/* ============================================================================
|
|
CHESSGROUND BASE STYLES
|
|
============================================================================ */
|
|
|
|
.cg-wrap {
|
|
box-sizing: content-box;
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
cg-container {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
top: 0;
|
|
}
|
|
|
|
cg-board {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
line-height: 0;
|
|
background-size: cover;
|
|
cursor: pointer;
|
|
}
|
|
|
|
cg-board square {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 12.5%;
|
|
height: 12.5%;
|
|
pointer-events: none;
|
|
}
|
|
|
|
cg-board square.move-dest {
|
|
background: radial-gradient(
|
|
rgba(20, 85, 30, 0.5) 22%,
|
|
#208530 0,
|
|
rgba(0, 0, 0, 0.3) 0,
|
|
rgba(0, 0, 0, 0) 0
|
|
);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
cg-board square.oc.move-dest {
|
|
background: radial-gradient(
|
|
transparent 0%,
|
|
transparent 80%,
|
|
rgba(20, 85, 0, 0.3) 80%
|
|
);
|
|
}
|
|
|
|
cg-board square.last-move {
|
|
will-change: transform;
|
|
background-color: rgba(155, 199, 0, 0.41);
|
|
}
|
|
|
|
cg-board square.selected {
|
|
background-color: rgba(20, 85, 30, 0.5);
|
|
}
|
|
|
|
cg-board square.check {
|
|
background: radial-gradient(
|
|
ellipse at center,
|
|
rgba(255, 0, 0, 0.9) 0%,
|
|
rgba(231, 0, 0, 0.8) 25%,
|
|
rgba(169, 0, 0, 0) 89%
|
|
);
|
|
}
|
|
|
|
.cg-wrap piece {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 12.5%;
|
|
height: 12.5%;
|
|
background-size: cover;
|
|
z-index: 2;
|
|
will-change: transform;
|
|
pointer-events: none;
|
|
}
|
|
|
|
cg-board piece.dragging {
|
|
cursor: move;
|
|
z-index: 11;
|
|
}
|
|
|
|
cg-board piece.anim {
|
|
z-index: 8;
|
|
}
|
|
|
|
cg-board piece.fading {
|
|
z-index: 1;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.cg-wrap piece.ghost {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.cg-wrap cg-auto-pieces,
|
|
.cg-wrap .cg-shapes,
|
|
.cg-wrap .cg-custom-svgs {
|
|
overflow: visible;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cg-wrap cg-auto-pieces {
|
|
z-index: 2;
|
|
}
|
|
|
|
.cg-wrap .cg-shapes {
|
|
overflow: hidden;
|
|
opacity: 0.6;
|
|
z-index: 12;
|
|
}
|
|
|
|
.cg-wrap .cg-custom-svgs {
|
|
z-index: 13;
|
|
}
|
|
|
|
.cg-wrap .cg-custom-svgs svg {
|
|
overflow: visible;
|
|
}
|
|
|
|
/* ============================================================================
|
|
COORDINATES
|
|
============================================================================ */
|
|
|
|
.cg-wrap coords {
|
|
position: absolute;
|
|
display: flex;
|
|
pointer-events: none;
|
|
opacity: 0.85;
|
|
font-family: 'Segoe UI', Arial, sans-serif;
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
z-index: 3;
|
|
}
|
|
|
|
.cg-wrap coords.ranks {
|
|
left: 0;
|
|
top: 0;
|
|
flex-flow: column-reverse;
|
|
height: 100%;
|
|
}
|
|
|
|
.cg-wrap coords.ranks.black {
|
|
flex-flow: column;
|
|
}
|
|
|
|
.cg-wrap coords.ranks coord {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
padding: 1px 0 0 2px;
|
|
}
|
|
|
|
.cg-wrap coords.files {
|
|
bottom: 0;
|
|
left: 0;
|
|
flex-flow: row;
|
|
width: 100%;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.cg-wrap coords.files.black {
|
|
flex-flow: row-reverse;
|
|
}
|
|
|
|
.cg-wrap coords.files coord {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: flex-end;
|
|
padding: 0 2px 1px 0;
|
|
}
|
|
|
|
.chessview {
|
|
--cv-coord-on-light: var(--cv-dark);
|
|
--cv-coord-on-dark: var(--cv-light);
|
|
}
|
|
|
|
.cg-wrap coords.ranks:not(.black) coord:nth-child(odd) {
|
|
color: var(--cv-coord-on-dark);
|
|
}
|
|
|
|
.cg-wrap coords.ranks:not(.black) coord:nth-child(even) {
|
|
color: var(--cv-coord-on-light);
|
|
}
|
|
|
|
.cg-wrap coords.files:not(.black) coord:nth-child(odd) {
|
|
color: var(--cv-coord-on-dark);
|
|
}
|
|
|
|
.cg-wrap coords.files:not(.black) coord:nth-child(even) {
|
|
color: var(--cv-coord-on-light);
|
|
}
|
|
|
|
.cg-wrap coords.ranks.black coord:nth-child(odd) {
|
|
color: var(--cv-coord-on-light);
|
|
}
|
|
|
|
.cg-wrap coords.ranks.black coord:nth-child(even) {
|
|
color: var(--cv-coord-on-dark);
|
|
}
|
|
|
|
.cg-wrap coords.files.black coord:nth-child(odd) {
|
|
color: var(--cv-coord-on-light);
|
|
}
|
|
|
|
.cg-wrap coords.files.black coord:nth-child(even) {
|
|
color: var(--cv-coord-on-dark);
|
|
}
|
|
|
|
/* ============================================================================
|
|
BOARD THEME
|
|
============================================================================ */
|
|
|
|
.chessview .cg-wrap cg-board {
|
|
background-color: var(--cv-light, #f0d9b5);
|
|
background-image: var(--cv-board-svg, none);
|
|
background-size: cover;
|
|
}
|
|
|
|
/* ============================================================================
|
|
CBURNETT PIECE SET (default, embedded)
|
|
============================================================================ */
|
|
|
|
.cg-wrap piece.white.pawn {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><path d="M22.5 9c-2.21 0-4 1.79-4 4 0 .89.29 1.71.78 2.38C17.33 16.5 16 18.59 16 21c0 2.03.94 3.84 2.41 5.03-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47 1.47-1.19 2.41-3 2.41-5.03 0-2.41-1.33-4.5-3.28-5.62.49-.67.78-1.49.78-2.38 0-2.21-1.79-4-4-4z" fill="%23fff" stroke="%23000" stroke-width="1.5" stroke-linecap="round"/></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.white.knight {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21" fill="%23fff"/><path d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.042-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4.003 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-.994-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-1.992 2.5-3c1 0 1 3 1 3" fill="%23fff"/><path d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.433-9.75a.5 1.5 30 1 1-.866-.5.5 1.5 30 1 1 .866.5z" fill="%23000"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.white.bishop {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><g fill="%23fff" stroke-linecap="butt"><path d="M9 36c3.39-.97 10.11.43 13.5-2 3.39 2.43 10.11 1.03 13.5 2 0 0 1.65.54 3 2-.68.97-1.65.99-3 .5-3.39-.97-10.11.46-13.5-1-3.39 1.46-10.11.03-13.5 1-1.354.49-2.323.47-3-.5 1.354-1.94 3-2 3-2z"/><path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z"/><path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z"/></g><path d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5" stroke-linejoin="miter"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.white.rook {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="%23fff" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M9 39h27v-3H9v3zm3-3v-4h21v4H12zm-1-22V9h4v2h5V9h5v2h5V9h4v5" stroke-linecap="butt"/><path d="M34 14l-3 3H14l-3-3"/><path d="M31 17v12.5H14V17" stroke-linecap="butt" stroke-linejoin="miter"/><path d="M31 29.5l1.5 2.5h-20l1.5-2.5"/><path d="M11 14h23" fill="none" stroke-linejoin="miter"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.white.queen {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="%23fff" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0zm16.5-4.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM41 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM16 8.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM33 9a2 2 0 1 1-4 0 2 2 0 1 1 4 0z"/><path d="M9 26c8.5-1.5 21-1.5 27 0l2-12-7 11V11l-5.5 13.5-3-15-3 15-5.5-14V25L7 14l2 12z" stroke-linecap="butt"/><path d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z" stroke-linecap="butt"/><path d="M11.5 30c3.5-1 18.5-1 22 0M12 33.5c6-1 15-1 21 0" fill="none"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.white.king {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M22.5 11.63V6M20 8h5" stroke-linejoin="miter"/><path d="M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5" fill="%23fff" stroke-linecap="butt" stroke-linejoin="miter"/><path d="M11.5 37c5.5 3.5 15.5 3.5 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10V37z" fill="%23fff"/><path d="M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.black.pawn {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><path d="M22.5 9c-2.21 0-4 1.79-4 4 0 .89.29 1.71.78 2.38C17.33 16.5 16 18.59 16 21c0 2.03.94 3.84 2.41 5.03-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47 1.47-1.19 2.41-3 2.41-5.03 0-2.41-1.33-4.5-3.28-5.62.49-.67.78-1.49.78-2.38 0-2.21-1.79-4-4-4z" fill="%23000" stroke="%23000" stroke-width="1.5" stroke-linecap="round"/></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.black.knight {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21" fill="%23000"/><path d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.042-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4.003 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-.994-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-1.992 2.5-3c1 0 1 3 1 3" fill="%23000"/><path d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.433-9.75a.5 1.5 30 1 1-.866-.5.5 1.5 30 1 1 .866.5z" fill="%23fff"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.black.bishop {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><g fill="%23000" stroke-linecap="butt"><path d="M9 36c3.39-.97 10.11.43 13.5-2 3.39 2.43 10.11 1.03 13.5 2 0 0 1.65.54 3 2-.68.97-1.65.99-3 .5-3.39-.97-10.11.46-13.5-1-3.39 1.46-10.11.03-13.5 1-1.354.49-2.323.47-3-.5 1.354-1.94 3-2 3-2z"/><path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z"/><path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z"/></g><path d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5" stroke="%23fff" stroke-linejoin="miter"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.black.rook {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M9 39h27v-3H9v3zm3.5-7l1.5-2.5h17l1.5 2.5h-20zm-.5 4v-4h21v4H12z" stroke-linecap="butt"/><path d="M14 29.5v-13h17v13H14z" stroke-linecap="butt" stroke-linejoin="miter"/><path d="M14 16.5L11 14h23l-3 2.5H14zM11 14V9h4v2h5V9h5v2h5V9h4v5H11z" stroke-linecap="butt"/><path d="M12 35.5h21m-20-4h19m-18-2h17m-17-13h17M11 14h23" fill="none" stroke="%23fff" stroke-width="1" stroke-linejoin="miter"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.black.queen {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><g stroke="none"><circle cx="6" cy="12" r="2.75"/><circle cx="14" cy="9" r="2.75"/><circle cx="22.5" cy="8" r="2.75"/><circle cx="31" cy="9" r="2.75"/><circle cx="39" cy="12" r="2.75"/></g><path d="M9 26c8.5-1.5 21-1.5 27 0l2.5-12.5L31 25l-.3-14.1-5.2 13.6-3-14.5-3 14.5-5.2-13.6L14 25 6.5 13.5 9 26z" stroke-linecap="butt"/><path d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z" stroke-linecap="butt"/><path d="M11.5 30c3.5-1 18.5-1 22 0M12 33.5c6-1 15-1 21 0" fill="none" stroke="%23fff"/></g></svg>');
|
|
}
|
|
|
|
.cg-wrap piece.black.king {
|
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M22.5 11.63V6" stroke-linejoin="miter"/><path d="M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5" fill="%23000" stroke-linecap="butt" stroke-linejoin="miter"/><path d="M11.5 37c5.5 3.5 15.5 3.5 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10V37z" fill="%23000"/><path d="M20 8h5" stroke-linejoin="miter"/><path d="M32 29.5s8.5-4 6.03-9.65C34.15 14 25 18 22.5 24.5l.01 2.1-.01-2.1C20 18 9.906 14 6.997 19.85c-2.497 5.65 4.853 9 4.853 9" stroke="%23fff"/><path d="M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0" stroke="%23fff"/></g></svg>');
|
|
}
|
|
|
|
/* ============================================================================
|
|
CHESS VIEWER LAYOUT
|
|
============================================================================ */
|
|
|
|
.chessview {
|
|
--cv-light: #f0d9b5;
|
|
--cv-dark: #b58863;
|
|
|
|
--cv-nag-brilliant: #26c2a3;
|
|
--cv-nag-good: #749bbf;
|
|
--cv-nag-interesting: #e69d00;
|
|
--cv-nag-inaccuracy: #f7c631;
|
|
--cv-nag-mistake: #ffa459;
|
|
--cv-nag-blunder: #fa412d;
|
|
--cv-nag-miss: #ff7769;
|
|
--cv-nag-neutral: #888;
|
|
--cv-nag-positional: #4a90d9;
|
|
|
|
--cv-puzzle-success: #4caf50;
|
|
--cv-puzzle-fail: #f44336;
|
|
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.chessview-container {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.chessview-error {
|
|
padding: 1em;
|
|
background: rgba(255, 0, 0, 0.1);
|
|
border: 1px solid rgba(255, 0, 0, 0.3);
|
|
border-radius: 4px;
|
|
color: #c00;
|
|
}
|
|
|
|
/* Container — width set by content, not 100% */
|
|
.cv-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: var(--background-secondary);
|
|
width: fit-content;
|
|
max-width: 100%;
|
|
}
|
|
|
|
/* ============================================================================
|
|
HEADER
|
|
============================================================================ */
|
|
|
|
.cv-header {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.cv-header-line1 {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cv-header-line2 {
|
|
margin-top: 2px;
|
|
font-size: 12px;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
.cv-header-players {
|
|
font-weight: 600;
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.cv-header-secondary {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.cv-header-label {
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
padding: 1px 6px;
|
|
border-radius: 3px;
|
|
background: var(--interactive-accent);
|
|
color: var(--text-on-accent);
|
|
letter-spacing: 0.5px;
|
|
text-transform: uppercase;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.cv-header-puzzle-status {
|
|
font-weight: 700;
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.cv-header-puzzle-status.cv-puzzle-solved {
|
|
color: var(--cv-puzzle-success);
|
|
}
|
|
|
|
.cv-header-puzzle-status.cv-puzzle-failed {
|
|
color: var(--cv-puzzle-fail);
|
|
}
|
|
|
|
/* ============================================================================
|
|
CONTENT LAYOUT
|
|
============================================================================ */
|
|
|
|
.cv-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
min-width: 0;
|
|
}
|
|
|
|
.cv-content.cv-content-vertical {
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Board column */
|
|
.cv-board-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-shrink: 0;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cv-board-section {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* ============================================================================
|
|
BOARD SIZES
|
|
============================================================================ */
|
|
|
|
.cv-board.cg-wrap {
|
|
width: 360px;
|
|
height: 360px;
|
|
}
|
|
|
|
.cv-board.cv-board-small {
|
|
width: 280px;
|
|
height: 280px;
|
|
}
|
|
|
|
.cv-board.cv-board-medium {
|
|
width: 360px;
|
|
height: 360px;
|
|
}
|
|
|
|
.cv-board.cv-board-large {
|
|
width: 480px;
|
|
height: 480px;
|
|
}
|
|
|
|
.cv-board.cv-board-auto {
|
|
width: 100%;
|
|
height: auto !important;
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-small) {
|
|
width: 280px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-medium) {
|
|
width: 360px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-large) {
|
|
width: 480px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-auto) {
|
|
width: 480px;
|
|
max-width: 100%;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
/* ============================================================================
|
|
PROMOTION DIALOG
|
|
============================================================================ */
|
|
|
|
.cv-promotion-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 20;
|
|
background: rgba(0, 0, 0, 0.45);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.cv-promotion-piece {
|
|
width: 20%;
|
|
height: 20%;
|
|
max-width: 80px;
|
|
max-height: 80px;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
cursor: pointer;
|
|
border-radius: 6px;
|
|
background-color: var(--background-primary);
|
|
border: 2px solid var(--background-modifier-border);
|
|
transition:
|
|
transform 0.1s,
|
|
box-shadow 0.1s;
|
|
}
|
|
|
|
.cv-promotion-piece:hover {
|
|
transform: scale(1.15);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
border-color: var(--interactive-accent);
|
|
}
|
|
|
|
/* ============================================================================
|
|
NAG OVERLAY
|
|
============================================================================ */
|
|
|
|
.cv-nag-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: 14;
|
|
}
|
|
|
|
.cv-nag-glyph {
|
|
position: absolute;
|
|
width: 12.5%;
|
|
height: 12.5%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-end;
|
|
pointer-events: none;
|
|
padding-top: 1.5%;
|
|
padding-right: 2%;
|
|
}
|
|
|
|
.cv-nag-glyph-inner {
|
|
width: 22px;
|
|
height: 22px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
font-size: 12px;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
color: #fff;
|
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
|
|
transform: translate(30%, -30%);
|
|
font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.cv-nag-glyph.nag-brilliant .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-brilliant);
|
|
}
|
|
.cv-nag-glyph.nag-good .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-good);
|
|
}
|
|
.cv-nag-glyph.nag-interesting .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-interesting);
|
|
}
|
|
.cv-nag-glyph.nag-inaccuracy .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-inaccuracy);
|
|
}
|
|
.cv-nag-glyph.nag-mistake .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-mistake);
|
|
}
|
|
.cv-nag-glyph.nag-blunder .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-blunder);
|
|
}
|
|
.cv-nag-glyph.nag-miss .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-miss);
|
|
}
|
|
|
|
.cv-nag-glyph.nag-forced .cv-nag-glyph-inner,
|
|
.cv-nag-glyph.nag-equal .cv-nag-glyph-inner,
|
|
.cv-nag-glyph.nag-unclear .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-neutral);
|
|
}
|
|
|
|
.cv-nag-glyph.nag-white-slight .cv-nag-glyph-inner,
|
|
.cv-nag-glyph.nag-white-better .cv-nag-glyph-inner,
|
|
.cv-nag-glyph.nag-white-winning .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-positional);
|
|
}
|
|
|
|
.cv-nag-glyph.nag-black-slight .cv-nag-glyph-inner,
|
|
.cv-nag-glyph.nag-black-better .cv-nag-glyph-inner,
|
|
.cv-nag-glyph.nag-black-winning .cv-nag-glyph-inner {
|
|
background: var(--cv-nag-positional);
|
|
}
|
|
|
|
/* NAG last-move highlights */
|
|
.chessview[data-nag-highlight='brilliant'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-brilliant) 35%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='good'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-good) 35%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='interesting'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-interesting) 30%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='inaccuracy'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-inaccuracy) 30%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='mistake'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-mistake) 35%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='blunder'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-blunder) 35%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='miss'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-miss) 35%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='forced'] cg-board square.last-move,
|
|
.chessview[data-nag-highlight='equal'] cg-board square.last-move,
|
|
.chessview[data-nag-highlight='unclear'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-neutral) 30%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='white-slight'] cg-board square.last-move,
|
|
.chessview[data-nag-highlight='white-better'] cg-board square.last-move,
|
|
.chessview[data-nag-highlight='white-winning'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-positional) 30%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
.chessview[data-nag-highlight='black-slight'] cg-board square.last-move,
|
|
.chessview[data-nag-highlight='black-better'] cg-board square.last-move,
|
|
.chessview[data-nag-highlight='black-winning'] cg-board square.last-move {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--cv-nag-positional) 30%,
|
|
transparent
|
|
) !important;
|
|
}
|
|
|
|
/* ============================================================================
|
|
MOVES SECTION — right layout
|
|
============================================================================ */
|
|
|
|
.cv-moves-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 200px;
|
|
flex-shrink: 0;
|
|
max-height: var(--cv-board-height, 360px);
|
|
border-left: 1px solid var(--background-modifier-border);
|
|
overflow: hidden;
|
|
--cv-comment-height: calc(var(--cv-board-height, 360px) * 0.4);
|
|
}
|
|
|
|
/* ============================================================================
|
|
BOTTOM MOVES SECTION
|
|
============================================================================ */
|
|
|
|
.cv-bottom-moves {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
max-height: 180px;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
--cv-comment-height: 60px;
|
|
}
|
|
|
|
.cv-bottom-moves.cv-bottom-moves-puzzle {
|
|
height: 120px;
|
|
max-height: none;
|
|
}
|
|
/* ============================================================================
|
|
SCROLLABLE MOVE LIST
|
|
============================================================================ */
|
|
|
|
.cv-moves {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* ============================================================================
|
|
MOVE LIST
|
|
============================================================================ */
|
|
|
|
.cv-moves-tree {
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
.cv-moves-row {
|
|
display: grid;
|
|
grid-template-columns: 36px 1fr 1fr;
|
|
gap: 0;
|
|
align-items: center;
|
|
}
|
|
|
|
.cv-moves-grid {
|
|
display: grid;
|
|
grid-template-columns: 36px 1fr 1fr;
|
|
gap: 0;
|
|
padding: 6px 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.cv-move-num {
|
|
color: var(--text-muted);
|
|
text-align: center;
|
|
padding: 2px 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.cv-move {
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
font-family: var(--font-monospace);
|
|
font-size: 13px;
|
|
transition: background-color 0.15s;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.cv-move:hover {
|
|
background: var(--background-modifier-hover);
|
|
}
|
|
|
|
.cv-move.active {
|
|
background: var(--interactive-accent);
|
|
color: var(--text-on-accent) !important;
|
|
}
|
|
|
|
.cv-move.active.has-annotation {
|
|
background: var(--interactive-accent);
|
|
}
|
|
|
|
.cv-move.active .cv-move-nag {
|
|
color: var(--text-on-accent) !important;
|
|
}
|
|
|
|
.cv-move-nag {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
margin-left: 1px;
|
|
vertical-align: super;
|
|
line-height: 1;
|
|
}
|
|
|
|
.cv-move-nag.nag-brilliant {
|
|
color: var(--cv-nag-brilliant);
|
|
}
|
|
.cv-move-nag.nag-good {
|
|
color: var(--cv-nag-good);
|
|
}
|
|
.cv-move-nag.nag-interesting {
|
|
color: var(--cv-nag-interesting);
|
|
}
|
|
.cv-move-nag.nag-inaccuracy {
|
|
color: var(--cv-nag-inaccuracy);
|
|
}
|
|
.cv-move-nag.nag-mistake {
|
|
color: var(--cv-nag-mistake);
|
|
}
|
|
.cv-move-nag.nag-blunder {
|
|
color: var(--cv-nag-blunder);
|
|
}
|
|
.cv-move-nag.nag-miss {
|
|
color: var(--cv-nag-miss);
|
|
}
|
|
|
|
.cv-move-nag.nag-forced,
|
|
.cv-move-nag.nag-equal,
|
|
.cv-move-nag.nag-unclear {
|
|
color: var(--cv-nag-neutral);
|
|
}
|
|
|
|
.cv-move.has-comment {
|
|
text-decoration: underline;
|
|
text-decoration-style: dotted;
|
|
text-underline-offset: 2px;
|
|
}
|
|
|
|
.cv-move.has-annotation {
|
|
background: rgba(100, 160, 255, 0.1);
|
|
}
|
|
|
|
/* ============================================================================
|
|
VARIATION LINES
|
|
============================================================================ */
|
|
|
|
.cv-variation {
|
|
margin-left: 12px;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
padding-left: 6px;
|
|
border-left: 2px solid var(--interactive-accent-hover);
|
|
border-radius: 0 4px 4px 0;
|
|
background: color-mix(in srgb, var(--background-primary-alt) 50%, transparent);
|
|
}
|
|
|
|
.cv-variation .cv-variation {
|
|
background: color-mix(in srgb, var(--background-modifier-hover) 30%, transparent);
|
|
}
|
|
|
|
.cv-variation .cv-variation .cv-variation {
|
|
background: color-mix(in srgb, var(--background-primary-alt) 25%, transparent);
|
|
}
|
|
|
|
.cv-variation-row .cv-move {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.cv-variation-row .cv-move-num {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.cv-variation-deep {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
/* ============================================================================
|
|
COMMENT AREA — inside moves section, never grows container
|
|
============================================================================ */
|
|
|
|
.cv-comment {
|
|
padding: 0;
|
|
background: var(--background-primary-alt);
|
|
font-size: 12.5px;
|
|
font-style: italic;
|
|
color: var(--text-faint);
|
|
flex-shrink: 0;
|
|
max-height: var(--cv-comment-height, 60px);
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
line-height: 1.5;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.cv-comment:not(:empty) {
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.cv-comment-text {
|
|
display: block;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.cv-comment-nag {
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
padding: 1px 8px;
|
|
border-radius: 3px;
|
|
margin-right: 6px;
|
|
color: #fff;
|
|
vertical-align: middle;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.cv-comment-nag.nag-brilliant {
|
|
background: var(--cv-nag-brilliant);
|
|
}
|
|
.cv-comment-nag.nag-good {
|
|
background: var(--cv-nag-good);
|
|
}
|
|
.cv-comment-nag.nag-interesting {
|
|
background: var(--cv-nag-interesting);
|
|
}
|
|
.cv-comment-nag.nag-inaccuracy {
|
|
background: var(--cv-nag-inaccuracy);
|
|
}
|
|
.cv-comment-nag.nag-mistake {
|
|
background: var(--cv-nag-mistake);
|
|
}
|
|
.cv-comment-nag.nag-blunder {
|
|
background: var(--cv-nag-blunder);
|
|
}
|
|
.cv-comment-nag.nag-miss {
|
|
background: var(--cv-nag-miss);
|
|
}
|
|
|
|
.cv-comment-nag.nag-forced,
|
|
.cv-comment-nag.nag-equal,
|
|
.cv-comment-nag.nag-unclear {
|
|
background: var(--cv-nag-neutral);
|
|
}
|
|
|
|
.cv-comment-nag.nag-white-slight,
|
|
.cv-comment-nag.nag-white-better,
|
|
.cv-comment-nag.nag-white-winning {
|
|
background: var(--cv-nag-positional);
|
|
}
|
|
|
|
.cv-comment-nag.nag-black-slight,
|
|
.cv-comment-nag.nag-black-better,
|
|
.cv-comment-nag.nag-black-winning {
|
|
background: var(--cv-nag-positional);
|
|
}
|
|
|
|
/* ============================================================================
|
|
FOOTER
|
|
============================================================================ */
|
|
|
|
.cv-footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 6px;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
gap: 4px 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cv-footer-left {
|
|
display: flex;
|
|
gap: 2px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cv-footer-right {
|
|
display: flex;
|
|
gap: 2px;
|
|
align-items: center;
|
|
}
|
|
|
|
.cv-btn {
|
|
touch-action: manipulation;
|
|
width: 30px;
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 4px;
|
|
background: var(--background-primary);
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
color: var(--text-normal);
|
|
transition: all 0.15s;
|
|
font-family: 'Segoe UI', 'Apple Color Emoji', 'Noto Sans', Arial, sans-serif;
|
|
line-height: 1;
|
|
padding: 0;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
.cv-btn-disabled {
|
|
opacity: 0.3;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cv-btn:hover {
|
|
background: var(--background-modifier-hover);
|
|
border-color: var(--background-modifier-border-hover);
|
|
}
|
|
|
|
.cv-btn:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.cv-btn.cv-play-btn {
|
|
background: var(--interactive-accent);
|
|
color: var(--text-on-accent);
|
|
border-color: var(--interactive-accent);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.cv-btn.cv-play-btn:hover {
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.cv-btn.cv-puzzle-action {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.cv-counter {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
min-width: 40px;
|
|
text-align: center;
|
|
font-family: var(--font-monospace);
|
|
}
|
|
|
|
/* ============================================================================
|
|
MENU
|
|
============================================================================ */
|
|
|
|
.cv-menu-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.cv-menu-dropdown {
|
|
display: none;
|
|
position: absolute;
|
|
bottom: 100%;
|
|
right: 0;
|
|
margin-bottom: 4px;
|
|
min-width: 180px;
|
|
background: var(--background-primary);
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 6px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
z-index: 100;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cv-menu-dropdown.visible {
|
|
display: block;
|
|
}
|
|
|
|
.cv-menu-item {
|
|
display: block;
|
|
padding: 8px 12px;
|
|
font-size: 13px;
|
|
color: var(--text-normal);
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
transition: background-color 0.1s;
|
|
}
|
|
|
|
.cv-menu-item:hover {
|
|
background: var(--background-modifier-hover);
|
|
}
|
|
|
|
.cv-menu-item + .cv-menu-item {
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
/* ============================================================================
|
|
PUZZLE
|
|
============================================================================ */
|
|
|
|
.cv-puzzle-ui {
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.cv-move-wrong {
|
|
color: var(--cv-puzzle-fail) !important;
|
|
text-decoration: line-through;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.cv-move-played {
|
|
background: color-mix(in srgb, var(--cv-puzzle-success) 15%, transparent);
|
|
}
|
|
|
|
.cv-move-unplayed {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.cv-move-placeholder {
|
|
color: var(--text-muted);
|
|
padding: 2px 6px;
|
|
}
|
|
|
|
.cv-moves-empty {
|
|
grid-column: 1 / -1;
|
|
padding: 20px;
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
font-style: italic;
|
|
}
|
|
|
|
/* ============================================================================
|
|
ERROR DISPLAY
|
|
============================================================================ */
|
|
|
|
.cv-error {
|
|
padding: 16px;
|
|
background: rgba(255, 0, 0, 0.1);
|
|
border: 1px solid rgba(255, 0, 0, 0.3);
|
|
border-radius: 8px;
|
|
color: var(--text-error);
|
|
}
|
|
|
|
.cv-error strong {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
color: #c00;
|
|
}
|
|
|
|
.cv-error p {
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
.cv-error details {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.cv-error summary {
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.cv-error pre {
|
|
margin-top: 8px;
|
|
padding: 8px;
|
|
background: var(--background-secondary);
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
overflow-x: auto;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
/* Focus */
|
|
.chessview:focus {
|
|
outline: 2px solid var(--interactive-accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.chessview:focus:not(:focus-visible) {
|
|
outline: none;
|
|
}
|
|
|
|
/* ============================================================================
|
|
MOBILE (≤600px)
|
|
============================================================================ */
|
|
|
|
@media (max-width: 600px) {
|
|
.cv-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.cv-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.cv-board-column {
|
|
width: 100% !important;
|
|
max-width: none !important;
|
|
}
|
|
|
|
.cv-board.cg-wrap {
|
|
width: 100% !important;
|
|
max-width: none !important;
|
|
height: auto !important;
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
|
|
.cv-moves-section {
|
|
width: 100% !important;
|
|
max-height: none !important;
|
|
border-left: none;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
--cv-comment-height: 60px;
|
|
}
|
|
|
|
.cv-moves-section-puzzle .cv-moves {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.cv-variation {
|
|
margin-left: 8px;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.cv-bottom-moves {
|
|
max-height: 160px;
|
|
}
|
|
|
|
.cv-header {
|
|
padding: 6px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.cv-nag-glyph-inner {
|
|
width: 16px;
|
|
height: 16px;
|
|
font-size: 9px;
|
|
}
|
|
|
|
.cv-branch-return {
|
|
font-size: 11px;
|
|
padding: 4px 10px;
|
|
}
|
|
|
|
.cv-promotion-piece {
|
|
width: 22%;
|
|
height: 22%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 360px) {
|
|
.cv-counter {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* ============================================================================
|
|
LARGER SCREENS
|
|
============================================================================ */
|
|
|
|
@media (min-width: 700px) {
|
|
.cv-board.cv-board-medium {
|
|
width: 400px;
|
|
height: 400px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-medium) {
|
|
width: 400px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-auto) {
|
|
width: 480px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 900px) {
|
|
.cv-board.cv-board-medium {
|
|
width: 440px;
|
|
height: 440px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-medium) {
|
|
width: 440px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-auto) {
|
|
width: 520px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1100px) {
|
|
.cv-board.cv-board-large {
|
|
width: 520px;
|
|
height: 520px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-large) {
|
|
width: 520px;
|
|
}
|
|
|
|
.cv-board-column:has(.cv-board-auto) {
|
|
width: 560px;
|
|
}
|
|
}
|
|
|
|
/* ============================================================================
|
|
DARK MODE
|
|
============================================================================ */
|
|
|
|
.theme-dark .cv-move.has-comment {
|
|
text-decoration-color: var(--text-accent);
|
|
}
|
|
|
|
.theme-dark .cv-comment {
|
|
background: var(--background-secondary-alt);
|
|
}
|
|
|
|
.theme-dark .cv-nag-glyph-inner {
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
.theme-dark .cv-promotion-piece {
|
|
background-color: var(--background-secondary);
|
|
border-color: var(--background-modifier-border);
|
|
}
|
|
|
|
.theme-dark .cv-menu-dropdown {
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.theme-dark .cv-variation {
|
|
border-left-color: var(--interactive-accent);
|
|
background: color-mix(in srgb, var(--background-secondary-alt) 40%, transparent);
|
|
}
|
|
|
|
.theme-dark .cv-variation .cv-variation {
|
|
background: color-mix(in srgb, var(--background-secondary) 30%, transparent);
|
|
}
|
|
|
|
/* === AUTO-GENERATED PIECE SETS — do not edit below === */
|
|
|
|
/* alpha */
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m501.6 1811 48.4-354.4-260-269.2s-166.4-288.2 29.9-481C582.2 448.7 826 727.2 826 727.2l195.6-165.7 184 165.7s216.4-232.5 430.4-76c214 156.5 255.4 317.6 117.4 531.6-138.1 214-250.9 280.7-250.9 280.7L1558 1811z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M977 298v-95h94v95h107v95h-107v153q-48-16-94 0V393H870v-95zm47 314q-47 0-136 121-31-36-50-55 93-140 186-140 92 0 186 140-20 19-50 55-90-121-136-121zm-447 907-26 156 145-84zm410-206q-1-147-36.5-274.5T870 845q-45-88-131.5-153T570 627q-103 0-208 93T257 949q0 109 86.5 236T546 1408q212-88 441-95zm37 530H448l61-365q-325-280-326-535-1-159 125-274.5T575 553q78 0 158.5 47T876 719q61 74 98.5 164.5T1024 1034q12-60 49-150.5t99-164.5q61-72 142-119t159-47q140 0 266 115.5T1865 943q-2 255-326 535l61 365zm0-74h489l-50-298q-216-84-439-84t-439 84l-50 298zm447-250 26 156-145-84zm-410-206q229 7 441 95 115-96 202-223t87-236q0-136-105.5-229T1478 627q-83 0-169.5 65T1178 845q-46 66-81.5 193.5T1061 1313zm-176 233 141-84 137 86-141 84z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m508.5 1815.6 48.4-356.7-216.3-554.6-135.8-20.7-16.1-126.5 112.7-43.8 78.3 73.7-18.4 99 246.2 197.8 112.8-568.3L635 428l78.3-108 112.8 43.7-23 161 223.2 474 244-490-66.8-105.9 92-92 105.9 73.6L1337 534l103.5 529.2 260-161-16-142.7 131-46 57.6 131.1-207 103.6-175 529.2 48.4 308.4z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M1024 1769h478q-53-130-43-280-100-39-213-67.5t-222-28.5q-110 0-223 28.5T589 1489q9 150-43 280zm0-450q111 0 223.5 26.5T1468 1413q17-105 60.5-212.5T1634 988l-220 155-123-601-267 555-267-555-123 601-220-155q61 105 104.5 212.5T580 1413q108-41 220.5-67.5T1024 1319zm0 524H441q114-231 57.5-456.5T296 937q-12 2-19 2-54 0-92.5-38.5T146 808t38.5-92.5T277 677t92.5 38.5T408 808q0 20-6 38-4 14-15 33l196 139 100-486q-64-31-72-103-5-44 29-91t88-53q54-5 96 29t48 88q7 68-46 114l198 412 198-412q-54-46-46-114 6-54 48-88t96-29q54 6 87.5 53t29.5 91q-9 72-72 103l100 486 196-139q-12-19-15-33-6-18-6-38 0-54 38.5-92.5T1771 677t92.5 38.5T1902 808t-38.5 92.5T1771 939q-7 0-19-2-147 224-203 449.5t58 456.5zM276 746q-62 0-62 62t62 62q63 0 63-62t-63-62zm466-394q-62 0-62 62t62 62 62-62-62-62zM590 1519l119 72-134 86q19-86 15-158zm1182-773q-63 0-63 62t63 62q62 0 62-62t-62-62zm-466-394q-62 0-62 62t62 62 62-62-62-62zm152 1167-119 72 134 86q-20-86-15-158zm-573 47 139-83 139 86-139 84z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m435 1804 16-212 152-115 51-688-148-115-7-276 210-2 4 138 198 2 7-140 212-3 14 145 193-4 5-138h204l-7 285-145 106 42 693 172 124 19 207z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M1024 1501H643l5-74h752l5 74zm0-661H692l5-74h654l5 74zm0 1003H383l29-264 159-118 50-659-149-107-17-341h289v147h137V354h286v147h137V354h289l-17 341-149 107 50 659 159 118 29 264zm0-74h557l-15-149-161-119-54-735 152-109 13-230h-138v148h-285V427H955v148H670V427H532l13 230 152 109-54 735-161 119-15 149z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m948 366 1-139 148-7 1 147zM564 860c114-267 456-443 456-443s392 176 476 502c-9 209-183 332-183 332l27 221-653 6 46-233s-230-171-169-385zm-101 790c175 6 355 23 425-142h92s0 190-88 246c-163 103-625 38-625 38s-15-146 196-142zm631 37-36-185 102 5s22 153 315 131c381-17 318 153 318 153l-483 5z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M1024 356q66 0 64-66 1-55-64-55-66 0-64 55-3 66 64 66zm0 1204q0 114-101 199t-223 84H205q0-117 65-179t142-62h250q51 0 88-7t71-60l10-16h76q-7 21-3 13-45 105-109 125t-146 19H409q-52 0-86 40t-34 53h424q66 0 159-65t93-185H624q67-116 72-229-114-119-162-223t-6-224q33-96 118-189t312-247q-17-11-46-36t-29-79q0-58 41-96t100-38q58 0 100 38t41 96q0 54-29 79t-46 36q226 153 311 247t119 189q42 119-6 224t-162 223q4 113 72 229h-341q0 120 93 185t159 65h424q0-13-34-53t-86-40h-240q-83 0-146-19t-109-125q4 8-3-13h76l10 16q33 53 70 60t89 7h250q76 0 142 62t65 179h-495q-123 0-223-84t-101-199zm0-114h283q-28-84-29-154-120-41-254-38-135-3-254 38-2 70-29 154zm0-267q159-1 285 42 189-180 142-346-60-193-427-431-368 238-427 431-48 166 142 346 125-43 285-42zm-47-361V714h94v104h95v89h-95v165h-94V907h-95v-89z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m352 861 787-569 94 148s336 103 398 388c63 286 51 974 51 974l-1088 9s-37-290 184-460c221-171 221-212 221-212s-226-71-295-16-117 138-117 138l-129-67 74-85-88-97-94 56z%22/%3E%3Cpath fill=%22%23101010%22 d=%22m1151 178-115 154c-74 50-147 98-220 144-73 45-112 81-116 107L304 846l12 297 122-86 51 50-115 82 217 121 56-102c37-68 135-88 292-60l-55 85c-25 37-63 60-115 71a608 608 0 0 0-183 238c-32 82-45 182-39 301h1242c-23-55-42-118-57-190-15-73-17-152-5-237 29-239 13-440-47-603-61-164-205-303-433-418l-96-217zm-17 145 59 133a664 664 0 0 1 262 188c55 72 100 150 134 234 27 97 40 181 41 253 0 71-3 140-9 205-7 65-11 131-13 199-2 67 9 145 32 234H621c-4-84 12-158 48-223s85-124 146-177c78-22 129-56 152-102s53-90 90-131c13-10 27-15 38-15 10-1 21 0 33-2 52-7 95-36 129-85 33-49 51-104 52-165l-19-67c-37 159-99 245-188 257l-45 6c-16 1-33 10-52 26-41-25-87-35-138-31-74 6-129 15-165 27l-108 73-39 45-47-28 78-65-138-144-64 41-4-125 366-241c15-34 58-74 131-120l208-131 49-69zM960 564c-6 0-12 2-18 7L826 671l212 2c23 0 17-21-16-63-24-31-44-46-62-46zM502 868l-33 4-33 56 57 26 46-55-37-31z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m734 981 196-193s-189-82-79-288c79-149 303-114 361 50 63 179-113 240-113 240l226 197Zm-235 799s-8-107 50-154c196-173 338-386 371-599l210 2c33 206 182 447 321 561 101 59 99 199 99 199z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M520 1769h1008q8-97-132-182-132-101-196-239t-80-309H928q-15 170-79 309t-197 239q-141 85-132 182zm504 74H446v-74q-4-80 42-137t125-108q117-91 172-217t78-268H576l284-239q-86-74-86-188 0-103 73-177t177-74q103 0 177 74t73 177q0 114-86 188l284 239h-287q23 141 78 268t172 217q79 51 125 108t42 137v74zM756 974h536l-225-191q134-31 134-171 0-76-52-126t-125-51q-73 0-125 51t-52 126q0 140 134 171z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m553 1485-55 320 1048 5-48-335s324-313 330-467c7-153-35-331-241-406-183-67-372 121-372 121l-182-161-190 160S658 586 587 592a373 373 0 0 0-362 333c10 331 328 560 328 560z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M1024 1769h489l-12-73H547l-12 73zm0-921q-25-60-62-111 31-48 62-65 30 17 62 65-38 51-62 111zm-97 454q-154 11-303 58-123-108-200-213t-77-202q0-89 74-159t148-70q67 0 135 63t102 130q30 54 75 175t46 218zm-350 217-26 156 145-84zm447-907q-47 0-136 121-31-36-50-55 93-140 186-140 92 0 186 140-20 19-50 55-90-121-136-121zm0 775q-1-126-42-267t-84-227l-14-27-12-23q-28-43-48-69-51-63-120-105t-134-42q-103 0-208 93T257 949q0 120 99 255t249 259q201-74 419-76zm0 456H448l61-365q-325-280-326-535-1-159 125-274t267-116q78 0 159 47t142 119q61 74 99 165t49 150q12-60 49-150t99-165q61-72 142-119t159-47q140 0 266 116t126 274q-2 255-326 535l61 365zm97-541q0-97 45-218t76-175q34-68 102-130t135-63q74 0 148 70t74 159q0 96-77 202t-200 213q-150-47-303-58zm350 217-119 72 145 84zm-447-132q217 2 419 76 150-125 249-259t99-255q0-136-105-229t-208-93q-66 0-135 42t-119 105q-21 26-48 69l-12 23-14 27q-44 85-85 227t-41 267zm-139 159 139 86 139-84-139-86zm92-1248v-95h94v95h107v95h-107v153q-48-16-94 0V393H870v-95z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m520 1801.8 41.5-448.7 474-128.9 458 133.5 34.4 446.4z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M590 1519q4 72-15 158l134-86zm434 324H441q114-231 57.5-456.5T296 937q-12 2-19 2-54 0-92.5-38.5T146 808t38.5-92.5T277 677t92.5 38.5T408 808q0 20-6 38-4 14-15 33l196 139 100-486q-64-31-72-103-5-44 29-91t88-53q54-5 96 29t48 88q7 68-46 114l198 412 198-412q-54-46-46-114 6-54 48-88t96-29q54 6 87.5 53t29.5 91q-9 72-72 103l100 486 196-139q-12-19-15-33-6-18-6-38 0-54 38.5-92.5T1771 677t92.5 38.5T1902 808t-38.5 92.5T1771 939q-7 0-19-2-147 224-203 449.5t58 456.5zm0-450q109 0 222 28.5t213 67.5q2-41 11-89-108-42-221.5-68t-224.5-26-225 26-221 68q8 48 11 89 99-39 212-67.5t223-28.5zm0 376h478q-15-34-24-73H570q-10 39-24 73zm434-250-119 72 134 86q-20-86-15-158zm-573 47 139 87 139-84-139-86z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22m674 732-76 807 851 14-75-833z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M1024 1843H383l29-264 159-118 50-659-149-107-17-341h289v147h137V354h286v147h137V354h289l-17 341-149 107 50 659 159 118 29 264zm0-989h333l-6-88H697l-6 88zm0 647h381l-6-87H649l-6 87z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22M732 1290 628 993l386-417 421 375-132 380 49 152-658-9z%22/%3E%3Cpath fill=%22%23101010%22 d=%22M768 1365q-5 39-26 82h564q-18-36-26-82zm495-73 46-73q-142-49-285-47-144-2-285 47l46 73q118-40 239-38 120-2 239 38zm-432 227H624q67-116 72-229-114-119-162-223t-6-224q33-96 118-189t312-247q-17-11-46-36t-29-79q0-58 41-96t100-38q58 0 100 38t41 96q0 54-29 79t-46 36q226 153 311 247t119 189q42 119-6 224t-162 223q4 113 72 229h-207l10 16q33 53 70 60t89 7h250q76 0 142 62t65 179h-495q-123 0-223-84t-101-199q0 114-101 199t-223 84H205q0-117 65-179t142-62h250q51 0 88-7t71-60l10-16zm146-701h-95v89h95v165h94V907h95v-89h-95V714h-94z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23f9f9f9%22 d=%22M1658 1806c-408-301-71-920-452-1343l60-16s296 167 320 257c182 468 41 691 135 1077zM972 523l120 176-312-3zM498 981l-93-41 42-93 127 28z%22/%3E%3Cpath fill=%22%23101010%22 d=%22m502 868-52 1-26 64 69 21 46-55zm536-187q34 1-16-68t-80-42L826 680zm-338-98q6-39 116-107t220-144l115-154 96 217q342 172 433 418t47 603q-18 128 5 236t57 190l-1242 1q-9-178 39-301t183-238q50-11 83-39t53-59l63-1 138-29 139-97 66-207q0-17-8-34t-12-37q-62 228-161 289t-191 58q-236-42-292 60l-56 102-217-121 115-82-51-50-122 86-12-297zm981 1192q-102-130-85-308t27-363-50-351-316-276q220 164 253 342t16 351-12 329 167 276z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='alpha'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 2048 2048%22%3E%3Cpath fill=%22%23101010%22 d=%22M1024 1843H446v-74q-4-80 42-137t125-108q117-91 172-217t78-268H576l284-239q-86-74-86-188 0-103 73-177t177-74q103 0 177 74t73 177q0 114-86 188l284 239h-287q23 141 78 268t172 217q79 51 125 108t42 137v74z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* california */
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 viewBox=%22-50 -60 478.77 511.58%22%3E%3Cdefs%3E%3Cpath id=%22a%22 d=%22M0 0h388.77v431.58H0Zm0 0%22/%3E%3C/defs%3E%3Cdefs%3E%3CclipPath id=%22b%22%3E%3Cpath d=%22M44 356h301v75.58H44Zm0 0%22/%3E%3C/clipPath%3E%3CclipPath id=%22c%22%3E%3Cpath d=%22M241 127h147.77v195H241Zm0 0%22/%3E%3C/clipPath%3E%3CclipPath id=%22d%22%3E%3Cuse xlink:href=%22%23a%22/%3E%3C/clipPath%3E%3CclipPath id=%22e%22%3E%3Cuse xlink:href=%22%23a%22/%3E%3C/clipPath%3E%3CclipPath id=%22f%22%3E%3Cuse xlink:href=%22%23a%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%23ccc%22 d=%22M319.38 396.58h-250a10 10 0 0 1-10-10v-25a10 10 0 0 1 10-10h250a10 10 0 0 1 10 10v25a10 10 0 0 1-10 10%22/%3E%3Cpath fill=%22%23fff%22 d=%22M95.38 393.58h-36v-45h36Zm0 0%22/%3E%3Cg clip-path=%22url(%23b)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M74.38 401.58h240v-15h-240Zm245 30h-250c-13.78 0-25-11.22-25-25v-25c0-13.79 11.22-25 25-25h250c13.79 0 25 11.21 25 25v25c0 13.78-11.21 25-25 25%22/%3E%3C/g%3E%3Cpath fill=%22%23ccc%22 d=%22M328.38 351.58h-268a10 10 0 0 1-10-10v-46a10 10 0 0 1 10-10h268a10 10 0 0 1 10 10v46a10 10 0 0 1-10 10%22/%3E%3Cpath fill=%22%23fff%22 d=%22M88.38 339.58h-35v-45h35Zm0 0%22/%3E%3Cpath d=%22M65.38 336.58h258v-36h-258Zm263 30h-268c-13.78 0-25-11.22-25-25v-46c0-13.79 11.22-25 25-25h268c13.79 0 25 11.21 25 25v46c0 13.78-11.21 25-25 25%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M194.38 118.17V-5m-36 36h72%22/%3E%3Cpath fill=%22%23ccc%22 d=%22M207.38 77.88h-24.16c-5.16 0-9.83 3.07-11.88 7.8l-14.99 34.63a12.97 12.97 0 0 0 0 10.28l14.99 34.63a12.95 12.95 0 0 0 11.88 7.8h24.16c5.16 0 9.83-3.06 11.88-7.8l14.98-34.63a12.97 12.97 0 0 0 0-10.28l-14.98-34.63a12.96 12.96 0 0 0-11.88-7.8%22/%3E%3Cpath d=%22M184.57 158.02h21.46l14.1-32.57-14.1-32.58h-21.46l-14.1 32.58Zm22.8 30h-24.15a27.93 27.93 0 0 1-25.65-16.85l-14.98-34.62a28.07 28.07 0 0 1 0-22.2l14.98-34.62a27.94 27.94 0 0 1 25.65-16.86h24.15a27.94 27.94 0 0 1 25.66 16.86L248 114.35a28.07 28.07 0 0 1 0 22.2l-14.98 34.62a27.93 27.93 0 0 1-25.66 16.85%22/%3E%3Cpath fill=%22%23ccc%22 d=%22M315.15 121.6c32.37 0 58.62 24.1 58.62 53.85 0 62.83-48.85 98.73-58.62 107.71-9.77 8.98-58.62 0-58.62 0V175.45c0-29.74 26.24-53.86 58.62-53.86%22/%3E%3Cpath fill=%22%23fff%22 d=%22M367.38 128.58c-23 44-67-5-85 144 0 0 11 26.95-7 1s2-74.05 2-100c0-25.95 22-42.13 40-50.78 18-8.65 54 5.78 50 5.78%22/%3E%3Cg clip-path=%22url(%23c)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M271.53 290.9c15.06 1.95 29.43 2.46 34.19 1 .84-.75 1.8-1.57 2.86-2.48 13.72-11.8 50.19-43.12 50.19-93.97 0-21.75-19.57-39.44-43.62-39.44-24.06 0-43.62 17.7-43.62 39.44Zm24.16 30.68c-4.42 0-9.34-.24-14.82-.7a311.55 311.55 0 0 1-27.16-3.56l-12.18-2.24V195.45c0-37.64 33.03-68.27 73.62-68.27 40.6 0 73.62 30.63 73.62 68.27 0 63.76-45.31 102.68-60.2 115.47-1.28 1.1-2.38 2.04-3.06 2.66-5.92 5.45-15.17 8-29.82 8%22/%3E%3C/g%3E%3Cpath fill=%22%23ccc%22 d=%22M253 118c32.38 0 58.62 24.1 58.62 53.85 0 62.83-48.85 98.74-58.62 107.71-9.77 8.98-58.62 0-58.62 0v-107.7c0-29.75 26.25-53.86 58.62-53.86%22/%3E%3Cpath fill=%22%23fff%22 d=%22M289.38 128.58c-39 22-56 1-61 154 0 0-8 14.95-26-11s-7-72.05-7-98c0-25.95 22-42.13 40-50.78 18-8.65 54 5.78 54 5.78%22/%3E%3Cpath d=%22M209.38 267.3c15.06 1.95 29.44 2.46 34.19 1a247.7 247.7 0 0 1 2.86-2.48c13.73-11.79 50.2-43.11 50.2-93.97 0-21.74-19.58-39.44-43.63-39.44-24.05 0-43.62 17.7-43.62 39.44Zm24.17 30.68c-4.43 0-9.35-.23-14.82-.69a309.2 309.2 0 0 1-27.16-3.57l-12.19-2.24V171.85c0-37.64 33.03-68.27 73.62-68.27s73.62 30.63 73.62 68.27c0 63.76-45.31 102.68-60.2 115.47-1.28 1.1-2.38 2.04-3.06 2.66-5.92 5.45-15.17 8-29.81 8%22/%3E%3Cpath fill=%22%23ccc%22 d=%22M73.62 121.6C41.25 121.6 15 145.7 15 175.44c0 62.83 48.85 98.73 58.62 107.71 9.77 8.98 58.62 0 58.62 0v-107.7c0-29.74-26.25-53.86-58.62-53.86%22/%3E%3Cpath fill=%22%23fff%22 d=%22M81.38 119.92c-63 38.66-31 96.1 14 156.66 0 0-23 16.33-41-9.61-18-25.95-45-60.55-45-86.5 0-25.95 18-51.9 36-60.55 18-8.65 36 0 36 0%22/%3E%3Cpath d=%22M83.05 271.9c4.75 1.46 19.13.95 34.19-1v-95.45c0-21.75-19.57-39.44-43.62-39.44-24.05 0-43.62 17.7-43.62 39.44 0 50.86 36.46 82.18 50.2 93.97l2.85 2.47m10.02 29.69c-14.64 0-23.89-2.55-29.82-8a137.7 137.7 0 0 0-3.06-2.66C45.31 278.12 0 239.2 0 175.45c0-37.64 33.03-68.27 73.62-68.27 40.6 0 73.62 30.63 73.62 68.27v119.63l-12.19 2.24c-.53.1-13.13 2.4-27.16 3.57-5.47.45-10.39.69-14.82.69%22/%3E%3Cpath fill=%22%23ccc%22 d=%22M135.77 118c-32.38 0-58.63 24.1-58.63 53.85 0 62.83 48.85 98.74 58.62 107.71 9.77 8.98 58.62 0 58.62 0v-107.7c0-29.75-26.24-53.86-58.61-53.86%22/%3E%3Cpath fill=%22%23fff%22 d=%22M152.38 118.58c-36 33.43-30 93.45 15 154 0 0-18 26.22-36 .27s-49-70.32-49-96.27c0-25.95 22-42.13 40-50.78 18-8.65 30-7.22 30-7.22%22/%3E%3Cpath d=%22M145.2 268.3c4.76 1.47 19.14.96 34.18-1v-95.45c0-21.74-19.56-39.44-43.61-39.44-24.06 0-43.63 17.7-43.63 39.44 0 50.86 36.47 82.18 50.2 93.97 1.06.91 2.01 1.73 2.85 2.48m10.03 29.68c-14.65 0-23.9-2.55-29.82-8-.68-.62-1.78-1.57-3.05-2.66-14.9-12.79-60.2-51.71-60.2-115.47 0-37.64 33.02-68.27 73.61-68.27 40.6 0 73.62 30.63 73.62 68.27v119.63l-12.18 2.24c-.53.1-13.13 2.4-27.17 3.57-5.46.46-10.39.69-14.81.69%22/%3E%3Cpath fill=%22%23fff%22 d=%22m104.38 285.58 31.85 69%22/%3E%3Cg clip-path=%22url(%23d)%22 transform=%22translate(0 -20)%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22m104.38 305.58 31.86 69%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22m178.7 285.58 31.86 69%22/%3E%3Cg clip-path=%22url(%23e)%22 transform=%22translate(0 -20)%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22m178.7 305.58 31.86 69%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22m253.03 285.58 31.85 69%22/%3E%3Cg clip-path=%22url(%23f)%22 transform=%22translate(0 -20)%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22m253.03 305.58 31.85 69%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -90 498 528%22%3E%3Cpath fill=%22%23ccc%22 d=%22M319.3 373H88.7a79.8 79.8 0 0 0 17.7-49.5c0-7-1-28.7-17.7-49.5h230.6a79.8 79.8 0 0 0-17.7 49.5c0 7 1 28.7 17.7 49.5%22/%3E%3Cpath fill=%22%23fff%22 d=%22M140 373c3.6-10.3 11.4-25.8 12-45 .7-23.8-8.1-41.7-12-53-10.7 0-27.3-1-38-1l15.6 54L93 373Zm0 0%22/%3E%3Cpath d=%22M113.5 358h181a92.9 92.9 0 0 1 0-69h-181a92.9 92.9 0 0 1 0 69m205.8 30H88.7c-5.4 0-10.3-3.5-12.5-8.8a16.1 16.1 0 0 1 2.2-16.1 63.8 63.8 0 0 0 14.3-39.6c0-8.2-1.9-24.1-14.3-39.6a16.1 16.1 0 0 1-2.2-16c2.2-5.4 7-8.9 12.5-8.9h230.6c5.4 0 10.3 3.5 12.5 8.8a16 16 0 0 1-2.2 16.1 63.8 63.8 0 0 0-14.3 39.6c0 8.2 1.9 24.1 14.3 39.6a16 16 0 0 1 2.2 16 13.7 13.7 0 0 1-12.5 8.9%22/%3E%3Cpath fill=%22%23ccc%22 d=%22m91.1 234.3-35.4-127c3.3 2 50.5 69 74.2 54.2 18.8-11.8 14.9-84.2 16.4-112.5 8.3 26.2 36.1 93.8 57.7 93.8s49.4-67.6 57.7-93.8c.5 3.2-7.9 97.2 24.7 112.5 18.6 8.8 59.9-51.5 65.9-54.2-6.2 35.2-28.8 83.8-35 126.8a46.2 46.2 0 0 1-45.5 39.9H136.6A46.1 46.1 0 0 1 91 234.3%22/%3E%3Cpath fill=%22%23fff%22 d=%22M86.8 139C153 172 93 259 230 259l-100 15a148.2 148.2 0 0 1-43.2-72c-6.6-27-3.2-49.7 0-63%22/%3E%3Cpath d=%22M203.7 127.8Zm.6 0Zm-81.4 20.8Zm-38 11.7 19.3 69.6.5 2a32.1 32.1 0 0 0 31.9 27.1h135.2c16 0 29.7-11.7 32-27.2a429.6 429.6 0 0 1 18.8-71.4c-14.9 13.7-28.7 21-41.7 14.9-16.6-7.9-27.2-28.6-31.4-61.7-16 30.1-30.5 44.2-45.5 44.2s-29.6-14.2-45.7-44.6v-.2c-2.2 30.2-7.4 52.6-21.6 61.5a26.6 26.6 0 0 1-14.4 4.2c-12.4 0-25.5-8-37.5-18.4m187 128.7H136.6A58.7 58.7 0 0 1 98 274.4a62 62 0 0 1-20.3-36.6L42.6 111.7c-1.6-5.8.1-12.2 4.5-16a12.8 12.8 0 0 1 15.2-1.5 36 36 0 0 1 9.1 9.4c6.4 7.9 18.4 22.5 30.5 33.1 13.5 11.8 19.9 12.4 21 11.8.5-.5 4.6-5.3 7-27 1.8-16.1 2-35.4 2.2-50.9.1-8.8.2-16.4.5-22.5.4-7.1 5.4-13 11.9-14s12.7 3.2 14.8 10a365 365 0 0 0 21.6 51.8c12.2 23.6 20.5 30.8 23.1 31.8 2.6-1 11-8.2 23.1-31.8a365.3 365.3 0 0 0 21.6-51.8c2-6.5 7.8-10.6 14-10 6.3.5 11.4 5.6 12.5 12.3.3 2 .2 3.4 0 8.2-2.8 73.4 10.4 89.3 15.8 92.7 1.5-.5 6.3-2.5 16-11.8 8.3-8 16.7-17.8 23.4-25.7 9-10.5 12.2-14.4 16.7-16.4 4.7-2 10-1.1 13.9 2.3a16 16 0 0 1 4.8 14.5c-3 17-9.3 36.1-16 56.4a426.2 426.2 0 0 0-19 69.8 62 62 0 0 1-20.3 38 58.7 58.7 0 0 1-38.7 14.6%22/%3E%3Cpath fill=%22%23f2f2f2%22 d=%22M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0%22/%3E%3Cpath fill=%22%23f2f2f2%22 d=%22M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0%22/%3E%3Cpath fill=%22%23f2f2f2%22 d=%22M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0%22/%3E%3Cpath fill=%22%23f2f2f2%22 d=%22M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm36.2 252h197.6%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -100 386.8 503%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 0h296.8v373H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%23ccc%22 d=%22M49.3 162.3C49.8 94 5.8 37.2 18.8-3.7H278c13 40.9-31 97.6-30.6 166 .5 72.3 44 132.3 30.6 174.5H18.8c-13.4-42.2 30-102.3 30.5-174.5%22/%3E%3Cpath fill=%22%23fff%22 d=%22M92.9-2c-9.8 55.2 6 125.3 6 173 0 46.5-18.3 101-15 166l-60.4-.2L43 171 23.5-4.2Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M251.3 281.8c-9.3-29.3-19.8-62.4-20-99.3-.3-35.8 10.4-67.8 19.9-96 7-20.7 13.1-39.2 13-54H32.6c0 14.8 6.1 33.3 13 54 9.5 28.2 20.2 60.2 20 96-.3 36.9-10.8 70-20 99.3-7.2 22.6-13.6 42.8-13.1 58.7h231.9c.4-16-6-36.1-13.1-58.7m-248 79.9c-8.5-27 1.1-57.5 11.3-89.7 8.6-27 18.3-57.7 18.5-89.8.2-30.4-9.2-58.3-18.2-85.3C4.7 66.4-5.1 37.5 3.3 11.3A16.2 16.2 0 0 1 18.8 0H278c7 0 13.3 4.6 15.5 11.3 8.2 26.2-1.4 55-11.7 85.6-9 27-18.4 55-18.1 85.3.2 32 9.9 62.7 18.4 89.8 10.2 32.2 19.9 62.7 11.4 89.7A16.2 16.2 0 0 1 278 373H18.8a16.2 16.2 0 0 1-15.5-11.3%22/%3E%3C/g%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M98.6 4.5v58.2m99.7-58.2v58.2m-175 215.6h250.2M40.4 120.8h216%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -60 381.3 511.7%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 70h291.3v361.7H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%23fff%22 d=%22M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0Zm0 0%22/%3E%3Cpath fill=%22%23ccc%22 d=%22M248.1 149.9C191.6 165.2 154 261.3 154 261.3s4.7-86.5 44.8-160.1c-27.9-22.3-52.6-36-52.6-36s-132 72-131.1 154.6c1 82.6 66.2 147 58 164.3-8 17.2 154.3 16.3 146.1 0-8.1-16.4 56.3-82.6 57.2-164.3.3-24.7-11.5-48.6-28.2-70%22/%3E%3Cpath fill=%22%23fff%22 d=%22M150.3 71.8c-50.5 87-62.5 126-62.5 153 0 56.9 51 148 26.5 162h-36l-45-90-18-63 9-54 36-45Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M88.7 397.5a289 289 0 0 0 55.8 4.2h1.7c27.9-.1 47.8-2.3 57.4-4.4 1.3-10.4 8-22.6 17.4-39.4 16.8-30.3 39.8-71.7 40.3-118.2.2-16.1-6-33.5-18.6-51.8-36.1 17.6-65.9 76-74.9 98.9a15 15 0 0 1-17.1 9.1 15 15 0 0 1-11.8-15.4 446 446 0 0 1 40.8-155.1 439.6 439.6 0 0 0-33.7-22.9c-11.2 6.8-34 21.4-56.4 40.7C62.2 167 29.6 203 30 239.7c.5 47 23.8 87.9 40.8 117.8 9.7 17.1 16.7 29.5 17.9 40m55.9 34.2c-16.5 0-32.3-.8-45-2.2-22.6-2.4-30-6.3-34.4-9.7-6.4-5-8.9-12.8-6.6-20-1-5-8.2-17.4-14-27.5C27.2 341.4.7 294.7 0 240c-.4-38.9 23.3-79.2 70.4-119.8A417.4 417.4 0 0 1 139 72a15 15 0 0 1 14.5 0c1 .6 26.1 14.7 54.7 37.5a15 15 0 0 1 3.8 18.9 342 342 0 0 0-28.4 71.9c19.3-24.1 39.6-39.2 60.7-45a15 15 0 0 1 15.8 5.3c21 27.1 31.6 53.8 31.3 79.4-.6 54.1-26.7 101.2-44 132.4-5.6 10.1-12.5 22.5-13.7 27.5 2.2 6.9 0 14.4-6.1 19.4-4.2 3.4-11.5 7.3-34 9.9a428.5 428.5 0 0 1-46.8 2.4h-2.1%22/%3E%3C/g%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M47.3 324.3c15.6 24.3 181.5 28.8 198 0%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -92.5 398 510%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 0h308v395H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%23ccc%22 d=%22M39.1 343.3a388.4 388.4 0 0 0 115.2 16.3 388.3 388.3 0 0 0 107.3-16.3l-2-8c-3-13.4-7.4-41.5 2-71.1 12.8-40.7 45.9-91.3 23.5-166C261.4 19.1 150.7-4.6 150.7-4.6l1.8 37-129.3 93.8a18.9 18.9 0 0 0-4.6 25.7c2.7 4 5.4 8.6 7.7 13.2s13 21 19.7 25.4a15.7 15.7 0 0 0 17.7-.5c8-5.7 18-18.3 46-15.6 74 12.6 92.5-27.8 92.5-27.8s-11.8 24.1-59.5 46.6c-49.8 19-82.4 51.6-99 106.7-7.8 26.2-4.6 43.4-4.6 43.4%22/%3E%3Cpath fill=%22%23fff%22 d=%22m27.4 160 156-85.6s18.6-9.2 9.3-27.8c-4.1-8.2-35.8-44-35.8-44v37L18.1 141.5Zm188.2-6.2c-32 53.5-70.1 81.4-91.7 106-18 20.7-31 69.5-30 90 .6 12.4-51.1-9.9-51.1-9.9l13.4-63.7 27.7-52.5 45.3-32.9Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M54 351.5a371.7 371.7 0 0 0 189.3.9c-3.5-19-5.1-45.4 3.6-72.9 2.7-8.6 6.2-17.4 9.9-26.7 14-35.4 29.9-75.5 13.5-130.1-15-50.3-72.4-76-103.2-86.5l.8 15.5a15.4 15.4 0 0 1-6.4 13.3L32.3 158.7a3.5 3.5 0 0 0-.8 4.7c3.4 5.1 6.3 10.1 8.6 14.8a93.5 93.5 0 0 0 14.6 19.3l3-2.4c8.1-6.6 23.3-19 53.4-16h1.1c45.8 7.9 65.6-6.7 72.7-14.6 2.5-3 3.5-4.9 3.6-5l-.2.3 6.9-.7c9.4-1 18.2 4.8 21 13.9l-.1.3a20.9 20.9 0 0 1-.4.8 46 46 0 0 1-2.9 4.7c-6.6 9.6-24 29.7-63.6 48.3l-1 .5c-47.4 18.1-75 48-89.7 96.7a105 105 0 0 0-4.6 27.2m96.4 43.5a403.4 403.4 0 0 1-115.6-17A15.4 15.4 0 0 1 24 366.3a114 114 0 0 1 5-50.8c14.7-48.7 41.3-82.6 82.8-105a201.6 201.6 0 0 1-4.2-.7c-17-1.6-23.8 4-30.4 9.3l-4.5 3.6a31 31 0 0 1-35 .9C26.4 216.2 14 195 12.5 192a97 97 0 0 0-6.7-11.6 34.2 34.2 0 0 1 8.4-46.7l122.5-88.8-1.4-28.7A15.4 15.4 0 0 1 153.9.3c4.9 1 120 26.6 146 113.5 19.4 64.9-.1 114.3-14.4 150.3-3.5 8.8-6.8 17.1-9.2 24.7a124.8 124.8 0 0 0 .1 70.4 15.4 15.4 0 0 1-10.4 18.9 403.6 403.6 0 0 1-115.7 17%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M55 292a333 333 0 0 0 100.2 14.1 332.8 332.8 0 0 0 91.4-14%22/%3E%3Cpath d=%22M169.7 93.6a15.2 15.2 0 1 1-30.3 0 15.2 15.2 0 0 1 30.3 0%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -100 345.8 506.5%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 0h255.8v376.5H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%23ccc%22 d=%22M239.5 320.4c0-90.3-74.4-119.9-65.9-176.2A81 81 0 0 0 129.3-3.7a81.2 81.2 0 0 0-48.2 147.8c9.5 56.4-64.8 86.4-64.8 176.3 33 9.9 54.4 19.7 112.2 19.7s78-9.8 111-19.7%22/%3E%3Cpath fill=%22%23fff%22 d=%22M126 10.4s-25 26-26 64c-1 38.1 14 60.6 14 66 0 5.5.4 28.4-5 48s-36 89-34 136c1.4 32.8-55.6-10.4-55.6-10.4l7.6-56.6 56.6-82.6-4.3-34.9-33.8-52.2 19.6-62Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M239.5 340.4ZM33.1 328.5l1.9.6c26 8.2 46.6 14.7 93.5 14.7 46.3 0 66.2-6.3 91.4-14.4l2.8-.9c-3-36.4-20-61-36.3-84.9-16.7-24.2-33.9-49.2-29-81.9a16.3 16.3 0 0 1 6.9-11 64.8 64.8 0 1 0-74 0 16.3 16.3 0 0 1 6.8 10.7c5.6 33-11.5 58.3-28.2 82.8-16 23.8-32.7 48.3-35.8 84.3m95.4 48c-52 0-77-8-103.3-16.3L11.6 356A16.3 16.3 0 0 1 0 340.4c0-52.7 23.2-87 42-114.5 15-22.3 24.1-36.6 23.6-53A97.6 97.6 0 0 1 129.7 0a97 97 0 0 1 66.5 28.6 97 97 0 0 1-7 144.2c0 17.3 10.8 33 24 52.3 19 27.7 42.6 62 42.6 115.3 0 7.2-4.7 13.6-11.6 15.6l-14.4 4.5c-25.7 8.2-50 16-101.3 16%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -60 478.77 521.58%22%3E%3Cdefs%3E%3Cpath id=%22a%22 d=%22M0 0h388.77v431.58H0Zm0 0%22/%3E%3C/defs%3E%3Cdefs%3E%3CclipPath id=%22b%22%3E%3Cpath d=%22M44 356h301v75.58H44Zm0 0%22/%3E%3C/clipPath%3E%3CclipPath id=%22c%22%3E%3Cpath d=%22M241 127h147.77v195H241Zm0 0%22/%3E%3C/clipPath%3E%3CclipPath id=%22d%22%3E%3Cuse xlink:href=%22%23a%22/%3E%3C/clipPath%3E%3CclipPath id=%22e%22%3E%3Cuse xlink:href=%22%23a%22/%3E%3C/clipPath%3E%3CclipPath id=%22f%22%3E%3Cuse xlink:href=%22%23a%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%234d4d4d%22 d=%22M319.38 396.58h-250a10 10 0 0 1-10-10v-25a10 10 0 0 1 10-10h250a10 10 0 0 1 10 10v25a10 10 0 0 1-10 10%22/%3E%3Cpath fill=%22gray%22 d=%22M95.38 393.58h-36v-45h36Zm0 0%22/%3E%3Cg clip-path=%22url(%23b)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M74.38 401.58h240v-15h-240Zm245 30h-250c-13.78 0-25-11.22-25-25v-25c0-13.79 11.22-25 25-25h250c13.79 0 25 11.21 25 25v25c0 13.78-11.21 25-25 25%22/%3E%3C/g%3E%3Cpath fill=%22%234d4d4d%22 d=%22M328.38 351.58h-268a10 10 0 0 1-10-10v-46a10 10 0 0 1 10-10h268a10 10 0 0 1 10 10v46a10 10 0 0 1-10 10%22/%3E%3Cpath fill=%22gray%22 d=%22M88.38 339.58h-35v-45h35Zm0 0%22/%3E%3Cpath d=%22M65.38 336.58h258v-36h-258Zm263 30h-268c-13.78 0-25-11.22-25-25v-46c0-13.79 11.22-25 25-25h268c13.79 0 25 11.21 25 25v46c0 13.78-11.21 25-25 25%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M194.38 118.17V-5m-36 36h72%22/%3E%3Cpath fill=%22%23666%22 d=%22M207.38 77.88h-24.16c-5.16 0-9.83 3.07-11.88 7.8l-14.99 34.63a12.97 12.97 0 0 0 0 10.28l14.99 34.63a12.95 12.95 0 0 0 11.88 7.8h24.16c5.16 0 9.83-3.06 11.88-7.8l14.98-34.63a12.97 12.97 0 0 0 0-10.28l-14.98-34.63a12.96 12.96 0 0 0-11.88-7.8%22/%3E%3Cpath d=%22M184.57 158.02h21.46l14.1-32.57-14.1-32.58h-21.46l-14.1 32.58Zm22.8 30h-24.15a27.93 27.93 0 0 1-25.65-16.85l-14.98-34.62a28.07 28.07 0 0 1 0-22.2l14.98-34.62a27.94 27.94 0 0 1 25.65-16.86h24.15a27.94 27.94 0 0 1 25.66 16.86L248 114.35a28.07 28.07 0 0 1 0 22.2l-14.98 34.62a27.93 27.93 0 0 1-25.66 16.85%22/%3E%3Cpath fill=%22%234d4d4d%22 d=%22M315.15 121.6c32.37 0 58.62 24.1 58.62 53.85 0 62.83-48.85 98.73-58.62 107.71-9.77 8.98-58.62 0-58.62 0V175.45c0-29.74 26.24-53.86 58.62-53.86%22/%3E%3Cpath fill=%22gray%22 d=%22M367.38 128.58c-23 44-67-5-85 144 0 0 11 26.95-7 1s2-74.05 2-100c0-25.95 22-42.13 40-50.78 18-8.65 54 5.78 50 5.78%22/%3E%3Cg clip-path=%22url(%23c)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M271.53 290.9c15.06 1.95 29.43 2.46 34.19 1 .84-.75 1.8-1.57 2.86-2.48 13.72-11.8 50.19-43.12 50.19-93.97 0-21.75-19.57-39.44-43.62-39.44-24.06 0-43.62 17.7-43.62 39.44Zm24.16 30.68c-4.42 0-9.34-.24-14.82-.7a311.55 311.55 0 0 1-27.16-3.56l-12.18-2.24V195.45c0-37.64 33.03-68.27 73.62-68.27 40.6 0 73.62 30.63 73.62 68.27 0 63.76-45.31 102.68-60.2 115.47-1.28 1.1-2.38 2.04-3.06 2.66-5.92 5.45-15.17 8-29.82 8%22/%3E%3C/g%3E%3Cpath fill=%22%234d4d4d%22 d=%22M253 118c32.38 0 58.62 24.1 58.62 53.85 0 62.83-48.85 98.74-58.62 107.71-9.77 8.98-58.62 0-58.62 0v-107.7c0-29.75 26.25-53.86 58.62-53.86%22/%3E%3Cpath fill=%22gray%22 d=%22M289.38 128.58c-39 22-56 1-61 154 0 0-8 14.95-26-11s-7-72.05-7-98c0-25.95 22-42.13 40-50.78 18-8.65 54 5.78 54 5.78%22/%3E%3Cpath d=%22M209.38 267.3c15.06 1.95 29.44 2.46 34.19 1a247.7 247.7 0 0 1 2.86-2.48c13.73-11.79 50.2-43.11 50.2-93.97 0-21.74-19.58-39.44-43.63-39.44-24.05 0-43.62 17.7-43.62 39.44Zm24.17 30.68c-4.43 0-9.35-.23-14.82-.69a309.2 309.2 0 0 1-27.16-3.57l-12.19-2.24V171.85c0-37.64 33.03-68.27 73.62-68.27s73.62 30.63 73.62 68.27c0 63.76-45.31 102.68-60.2 115.47-1.28 1.1-2.38 2.04-3.06 2.66-5.92 5.45-15.17 8-29.81 8%22/%3E%3Cpath fill=%22%234d4d4d%22 d=%22M73.62 121.6C41.25 121.6 15 145.7 15 175.44c0 62.83 48.85 98.73 58.62 107.71 9.77 8.98 58.62 0 58.62 0v-107.7c0-29.74-26.25-53.86-58.62-53.86%22/%3E%3Cpath fill=%22gray%22 d=%22M81.38 119.92c-63 38.66-31 96.1 14 156.66 0 0-23 16.33-41-9.61-18-25.95-45-60.55-45-86.5 0-25.95 18-51.9 36-60.55 18-8.65 36 0 36 0%22/%3E%3Cpath d=%22M83.05 271.9c4.75 1.46 19.13.95 34.19-1v-95.45c0-21.75-19.57-39.44-43.62-39.44-24.05 0-43.62 17.7-43.62 39.44 0 50.86 36.46 82.18 50.2 93.97l2.85 2.47m10.02 29.69c-14.64 0-23.89-2.55-29.82-8a137.7 137.7 0 0 0-3.06-2.66C45.31 278.12 0 239.2 0 175.45c0-37.64 33.03-68.27 73.62-68.27 40.6 0 73.62 30.63 73.62 68.27v119.63l-12.19 2.24c-.53.1-13.13 2.4-27.16 3.57-5.47.45-10.39.69-14.82.69%22/%3E%3Cpath fill=%22%234d4d4d%22 d=%22M135.77 118c-32.38 0-58.63 24.1-58.63 53.85 0 62.83 48.85 98.74 58.62 107.71 9.77 8.98 58.62 0 58.62 0v-107.7c0-29.75-26.24-53.86-58.61-53.86%22/%3E%3Cpath fill=%22gray%22 d=%22M152.38 118.58c-36 33.43-30 93.45 15 154 0 0-18 26.22-36 .27s-49-70.32-49-96.27c0-25.95 22-42.13 40-50.78 18-8.65 30-7.22 30-7.22%22/%3E%3Cpath d=%22M145.2 268.3c4.76 1.47 19.14.96 34.18-1v-95.45c0-21.74-19.56-39.44-43.61-39.44-24.06 0-43.63 17.7-43.63 39.44 0 50.86 36.47 82.18 50.2 93.97 1.06.91 2.01 1.73 2.85 2.48m10.03 29.68c-14.65 0-23.9-2.55-29.82-8-.68-.62-1.78-1.57-3.05-2.66-14.9-12.79-60.2-51.71-60.2-115.47 0-37.64 33.02-68.27 73.61-68.27 40.6 0 73.62 30.63 73.62 68.27v119.63l-12.18 2.24c-.53.1-13.13 2.4-27.17 3.57-5.46.46-10.39.69-14.81.69%22/%3E%3Cpath fill=%22%23fff%22 d=%22m104.38 285.58 31.85 69%22/%3E%3Cg clip-path=%22url(%23d)%22 transform=%22translate(0 -20)%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22m104.38 305.58 31.86 69%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22m178.7 285.58 31.86 69%22/%3E%3Cg clip-path=%22url(%23e)%22 transform=%22translate(0 -20)%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22m178.7 305.58 31.86 69%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22m253.03 285.58 31.85 69%22/%3E%3Cg clip-path=%22url(%23f)%22 transform=%22translate(0 -20)%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22m253.03 305.58 31.85 69%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -90 498 528%22%3E%3Cpath fill=%22%234d4d4d%22 d=%22M319.3 373H88.7a79.8 79.8 0 0 0 17.7-49.5c0-7-1-28.7-17.7-49.5h230.6a79.8 79.8 0 0 0-17.7 49.5c0 7 1 28.7 17.7 49.5%22/%3E%3Cpath fill=%22gray%22 d=%22M140 373c3.6-10.3 11.4-25.8 12-45 .7-23.8-8.1-41.7-12-53-10.7 0-27.3-1-38-1l15.6 54L93 373Zm0 0%22/%3E%3Cpath d=%22M113.5 358h181a92.9 92.9 0 0 1 0-69h-181a92.9 92.9 0 0 1 0 69m205.8 30H88.7c-5.4 0-10.3-3.5-12.5-8.8a16.1 16.1 0 0 1 2.2-16.1 63.8 63.8 0 0 0 14.3-39.6c0-8.2-1.9-24.1-14.3-39.6a16.1 16.1 0 0 1-2.2-16c2.2-5.4 7-8.9 12.5-8.9h230.6c5.4 0 10.3 3.5 12.5 8.8a16 16 0 0 1-2.2 16.1 63.8 63.8 0 0 0-14.3 39.6c0 8.2 1.9 24.1 14.3 39.6a16 16 0 0 1 2.2 16 13.7 13.7 0 0 1-12.5 8.9%22/%3E%3Cpath fill=%22%234d4d4d%22 d=%22m91.1 234.3-35.4-127c3.3 2 50.5 69 74.2 54.2 18.8-11.8 14.9-84.2 16.4-112.5 8.3 26.2 36.1 93.8 57.7 93.8s49.4-67.6 57.7-93.8c.5 3.2-7.9 97.2 24.7 112.5 18.6 8.8 59.9-51.5 65.9-54.2-6.2 35.2-28.8 83.8-35 126.8a46.2 46.2 0 0 1-45.5 39.9H136.6A46.1 46.1 0 0 1 91 234.3%22/%3E%3Cpath fill=%22gray%22 d=%22M86.8 139C153 172 93 259 230 259l-100 15a148.2 148.2 0 0 1-43.2-72c-6.6-27-3.2-49.7 0-63%22/%3E%3Cpath d=%22M203.7 127.8Zm.6 0Zm-81.4 20.8Zm-38 11.7 19.3 69.6.5 2a32.1 32.1 0 0 0 31.9 27.1h135.2c16 0 29.7-11.7 32-27.2a429.6 429.6 0 0 1 18.8-71.4c-14.9 13.7-28.7 21-41.7 14.9-16.6-7.9-27.2-28.6-31.4-61.7-16 30.1-30.5 44.2-45.5 44.2s-29.6-14.2-45.7-44.6v-.2c-2.2 30.2-7.4 52.6-21.6 61.5a26.6 26.6 0 0 1-14.4 4.2c-12.4 0-25.5-8-37.5-18.4m187 128.7H136.6A58.7 58.7 0 0 1 98 274.4a62 62 0 0 1-20.3-36.6L42.6 111.7c-1.6-5.8.1-12.2 4.5-16a12.8 12.8 0 0 1 15.2-1.5 36 36 0 0 1 9.1 9.4c6.4 7.9 18.4 22.5 30.5 33.1 13.5 11.8 19.9 12.4 21 11.8.5-.5 4.6-5.3 7-27 1.8-16.1 2-35.4 2.2-50.9.1-8.8.2-16.4.5-22.5.4-7.1 5.4-13 11.9-14s12.7 3.2 14.8 10a365 365 0 0 0 21.6 51.8c12.2 23.6 20.5 30.8 23.1 31.8 2.6-1 11-8.2 23.1-31.8a365.3 365.3 0 0 0 21.6-51.8c2-6.5 7.8-10.6 14-10 6.3.5 11.4 5.6 12.5 12.3.3 2 .2 3.4 0 8.2-2.8 73.4 10.4 89.3 15.8 92.7 1.5-.5 6.3-2.5 16-11.8 8.3-8 16.7-17.8 23.4-25.7 9-10.5 12.2-14.4 16.7-16.4 4.7-2 10-1.1 13.9 2.3a16 16 0 0 1 4.8 14.5c-3 17-9.3 36.1-16 56.4a426.2 426.2 0 0 0-19 69.8 62 62 0 0 1-20.3 38 58.7 58.7 0 0 1-38.7 14.6%22/%3E%3Cpath fill=%22gray%22 d=%22M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0%22/%3E%3Cpath fill=%22gray%22 d=%22M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0%22/%3E%3Cpath fill=%22gray%22 d=%22M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0%22/%3E%3Cpath fill=%22gray%22 d=%22M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm36.2 252h197.6%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -100 386.8 503%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 0h296.8v373H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%234d4d4d%22 d=%22M49.3 162.3C49.8 94 5.8 37.2 18.8-3.7H278c13 40.9-31 97.6-30.6 166 .5 72.3 44 132.3 30.6 174.5H18.8c-13.4-42.2 30-102.3 30.5-174.5%22/%3E%3Cpath fill=%22gray%22 d=%22M92.9-2c-9.8 55.2 6 125.3 6 173 0 46.5-18.3 101-15 166l-60.4-.2L43 171 23.5-4.2Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M251.3 281.8c-9.3-29.3-19.8-62.4-20-99.3-.3-35.8 10.4-67.8 19.9-96 7-20.7 13.1-39.2 13-54H32.6c0 14.8 6.1 33.3 13 54 9.5 28.2 20.2 60.2 20 96-.3 36.9-10.8 70-20 99.3-7.2 22.6-13.6 42.8-13.1 58.7h231.9c.4-16-6-36.1-13.1-58.7m-248 79.9c-8.5-27 1.1-57.5 11.3-89.7 8.6-27 18.3-57.7 18.5-89.8.2-30.4-9.2-58.3-18.2-85.3C4.7 66.4-5.1 37.5 3.3 11.3A16.2 16.2 0 0 1 18.8 0H278c7 0 13.3 4.6 15.5 11.3 8.2 26.2-1.4 55-11.7 85.6-9 27-18.4 55-18.1 85.3.2 32 9.9 62.7 18.4 89.8 10.2 32.2 19.9 62.7 11.4 89.7A16.2 16.2 0 0 1 278 373H18.8a16.2 16.2 0 0 1-15.5-11.3%22/%3E%3C/g%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M98.6 4.5v58.2m99.7-58.2v58.2m-175 215.6h250.2M40.4 120.8h216%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -60 381.3 511.7%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 70h291.3v361.7H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22gray%22 d=%22M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0Zm0 0%22/%3E%3Cpath fill=%22%234d4d4d%22 d=%22M248.1 149.9C191.6 165.2 154 261.3 154 261.3s4.7-86.5 44.8-160.1c-27.9-22.3-52.6-36-52.6-36s-132 72-131.1 154.6c1 82.6 66.2 147 58 164.3-8 17.2 154.3 16.3 146.1 0-8.1-16.4 56.3-82.6 57.2-164.3.3-24.7-11.5-48.6-28.2-70%22/%3E%3Cpath fill=%22gray%22 d=%22M150.3 71.8c-50.5 87-62.5 126-62.5 153 0 56.9 51 148 26.5 162h-36l-45-90-18-63 9-54 36-45Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M88.7 397.5a289 289 0 0 0 55.8 4.2h1.7c27.9-.1 47.8-2.3 57.4-4.4 1.3-10.4 8-22.6 17.4-39.4 16.8-30.3 39.8-71.7 40.3-118.2.2-16.1-6-33.5-18.6-51.8-36.1 17.6-65.9 76-74.9 98.9a15 15 0 0 1-17.1 9.1 15 15 0 0 1-11.8-15.4 446 446 0 0 1 40.8-155.1 439.6 439.6 0 0 0-33.7-22.9c-11.2 6.8-34 21.4-56.4 40.7C62.2 167 29.6 203 30 239.7c.5 47 23.8 87.9 40.8 117.8 9.7 17.1 16.7 29.5 17.9 40m55.9 34.2c-16.5 0-32.3-.8-45-2.2-22.6-2.4-30-6.3-34.4-9.7-6.4-5-8.9-12.8-6.6-20-1-5-8.2-17.4-14-27.5C27.2 341.4.7 294.7 0 240c-.4-38.9 23.3-79.2 70.4-119.8A417.4 417.4 0 0 1 139 72a15 15 0 0 1 14.5 0c1 .6 26.1 14.7 54.7 37.5a15 15 0 0 1 3.8 18.9 342 342 0 0 0-28.4 71.9c19.3-24.1 39.6-39.2 60.7-45a15 15 0 0 1 15.8 5.3c21 27.1 31.6 53.8 31.3 79.4-.6 54.1-26.7 101.2-44 132.4-5.6 10.1-12.5 22.5-13.7 27.5 2.2 6.9 0 14.4-6.1 19.4-4.2 3.4-11.5 7.3-34 9.9a428.5 428.5 0 0 1-46.8 2.4h-2.1%22/%3E%3C/g%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M47.3 324.3c15.6 24.3 181.5 28.8 198 0%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -92.5 398 510%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 0h308v395H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%234d4d4d%22 d=%22M39.1 343.3a388.4 388.4 0 0 0 115.2 16.3 388.3 388.3 0 0 0 107.3-16.3l-2-8c-3-13.4-7.4-41.5 2-71.1 12.8-40.7 45.9-91.3 23.5-166C261.4 19.1 150.7-4.6 150.7-4.6l1.8 37-129.3 93.8a18.9 18.9 0 0 0-4.6 25.7c2.7 4 5.4 8.6 7.7 13.2s13 21 19.7 25.4a15.7 15.7 0 0 0 17.7-.5c8-5.7 18-18.3 46-15.6 74 12.6 92.5-27.8 92.5-27.8s-11.8 24.1-59.5 46.6c-49.8 19-82.4 51.6-99 106.7-7.8 26.2-4.6 43.4-4.6 43.4%22/%3E%3Cpath fill=%22gray%22 d=%22m27.4 160 156-85.6s18.6-9.2 9.3-27.8c-4.1-8.2-35.8-44-35.8-44v37L18.1 141.5Zm188.2-6.2c-32 53.5-70.1 81.4-91.7 106-18 20.7-31 69.5-30 90 .6 12.4-51.1-9.9-51.1-9.9l13.4-63.7 27.7-52.5 45.3-32.9Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M54 351.5a371.7 371.7 0 0 0 189.3.9c-3.5-19-5.1-45.4 3.6-72.9 2.7-8.6 6.2-17.4 9.9-26.7 14-35.4 29.9-75.5 13.5-130.1-15-50.3-72.4-76-103.2-86.5l.8 15.5a15.4 15.4 0 0 1-6.4 13.3L32.3 158.7a3.5 3.5 0 0 0-.8 4.7c3.4 5.1 6.3 10.1 8.6 14.8a93.5 93.5 0 0 0 14.6 19.3l3-2.4c8.1-6.6 23.3-19 53.4-16h1.1c45.8 7.9 65.6-6.7 72.7-14.6 2.5-3 3.5-4.9 3.6-5l-.2.3 6.9-.7c9.4-1 18.2 4.8 21 13.9l-.1.3a20.9 20.9 0 0 1-.4.8 46 46 0 0 1-2.9 4.7c-6.6 9.6-24 29.7-63.6 48.3l-1 .5c-47.4 18.1-75 48-89.7 96.7a105 105 0 0 0-4.6 27.2m96.4 43.5a403.4 403.4 0 0 1-115.6-17A15.4 15.4 0 0 1 24 366.3a114 114 0 0 1 5-50.8c14.7-48.7 41.3-82.6 82.8-105a201.6 201.6 0 0 1-4.2-.7c-17-1.6-23.8 4-30.4 9.3l-4.5 3.6a31 31 0 0 1-35 .9C26.4 216.2 14 195 12.5 192a97 97 0 0 0-6.7-11.6 34.2 34.2 0 0 1 8.4-46.7l122.5-88.8-1.4-28.7A15.4 15.4 0 0 1 153.9.3c4.9 1 120 26.6 146 113.5 19.4 64.9-.1 114.3-14.4 150.3-3.5 8.8-6.8 17.1-9.2 24.7a124.8 124.8 0 0 0 .1 70.4 15.4 15.4 0 0 1-10.4 18.9 403.6 403.6 0 0 1-115.7 17%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-miterlimit=%2210%22 stroke-width=%2230%22 d=%22M55 292a333 333 0 0 0 100.2 14.1 332.8 332.8 0 0 0 91.4-14%22/%3E%3Cpath d=%22M169.7 93.6a15.2 15.2 0 1 1-30.3 0 15.2 15.2 0 0 1 30.3 0%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='california'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22 viewBox=%22-50 -100 345.8 506.5%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath d=%22M0 0h255.8v376.5H0Zm0 0%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cpath fill=%22%234d4d4d%22 d=%22M239.5 320.4c0-90.3-74.4-119.9-65.9-176.2A81 81 0 0 0 129.3-3.7a81.2 81.2 0 0 0-48.2 147.8c9.5 56.4-64.8 86.4-64.8 176.3 33 9.9 54.4 19.7 112.2 19.7s78-9.8 111-19.7%22/%3E%3Cpath fill=%22gray%22 d=%22M126 10.4s-25 26-26 64c-1 38.1 14 60.6 14 66 0 5.5.4 28.4-5 48s-36 89-34 136c1.4 32.8-55.6-10.4-55.6-10.4l7.6-56.6 56.6-82.6-4.3-34.9-33.8-52.2 19.6-62Zm0 0%22/%3E%3Cg clip-path=%22url(%23a)%22 transform=%22translate(0 -20)%22%3E%3Cpath d=%22M239.5 340.4ZM33.1 328.5l1.9.6c26 8.2 46.6 14.7 93.5 14.7 46.3 0 66.2-6.3 91.4-14.4l2.8-.9c-3-36.4-20-61-36.3-84.9-16.7-24.2-33.9-49.2-29-81.9a16.3 16.3 0 0 1 6.9-11 64.8 64.8 0 1 0-74 0 16.3 16.3 0 0 1 6.8 10.7c5.6 33-11.5 58.3-28.2 82.8-16 23.8-32.7 48.3-35.8 84.3m95.4 48c-52 0-77-8-103.3-16.3L11.6 356A16.3 16.3 0 0 1 0 340.4c0-52.7 23.2-87 42-114.5 15-22.3 24.1-36.6 23.6-53A97.6 97.6 0 0 1 129.7 0a97 97 0 0 1 66.5 28.6 97 97 0 0 1-7 144.2c0 17.3 10.8 33 24 52.3 19 27.7 42.6 62 42.6 115.3 0 7.2-4.7 13.6-11.6 15.6l-14.4 4.5c-25.7 8.2-50 16-101.3 16%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* cardinal */
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur result=%22blur%22 stdDeviation=%220.01 0.01%22/%3E%3C/filter%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.6%22/%3E%3CfeOffset dx=%221.6%22 dy=%221.4%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%222986.4%22 x2=%223128.4%22 y1=%221623.8%22 y2=%221623.8%22 gradientTransform=%22matrix(.27141 0 0 .27218 -804.81 -417.45)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23e6e6e6%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-width=%221.1%22 d=%22M23.28 5.55v3.24h-3.36v2.92h3.36v1.76c-3.36 2.12-3 5.74-3 5.74-11-8.52-20.67 7.56-7.94 13.05v8.73c0 .95 5.67 2.46 12.66 2.46s12.66-1.5 12.66-2.46v-8.73c12.72-5.49 3.06-21.57-7.95-13.05 0 0 .38-3.62-3-5.74V11.7h3.37V8.79h-3.36V5.55H25z%22 filter=%22url(%23b)%22/%3E%3Cellipse cx=%2271.08%22 cy=%22131.54%22 class=%22st15%22 filter=%22url(%23c)%22 rx=%2232.13%22 ry=%222.84%22 transform=%22matrix(.28533 0 0 .3223 4.72 -1.98)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.4%22 d=%22M27.03 30.27c1.5-12.1 11.94-12.44 13.37-7.38 1.42 5.06-4.74 7.38-4.74 7.38s-4.87-.64-10.66-.64-10.66.64-10.66.64-6.16-2.32-4.73-7.38 11.87-4.73 13.36 7.38%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur result=%22blur%22 stdDeviation=%220.01 0.01%22/%3E%3C/filter%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%22-71.64%22 x2=%22-30.68%22 y1=%22-83.32%22 y2=%22-83.32%22 gradientTransform=%22matrix(.97643 0 0 .99287 74.95 107.73)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23e6e6e6%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.1%22 d=%22M25 6.55v0c-1.57 0-2.84 1.18-2.84 2.63 0 1.2.87 2.23 2.12 2.54-.69 4.45-1.97 9.72-2.63 14.11L17.58 12.9a2.62 2.62 0 0 0 1.58-2.35c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 1.2.9 2.25 2.16 2.55l-.44 13.25-5.48-10.6a2.62 2.62 0 0 0 1.55-2.35c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 1.34 1.09 2.46 2.52 2.61l2.76 16.51 4.05 5.26-1 3.63c-.04.66 4.85 2.03 11.12 2.04 6.27-.01 11.16-1.38 11.12-2.04l-1-3.63 4.05-5.26 2.76-16.5a2.74 2.74 0 0 0 2.52-2.62c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 .99.6 1.9 1.55 2.34l-5.48 10.61-.44-13.25a2.68 2.68 0 0 0 2.16-2.55c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 1 .61 1.9 1.58 2.35l-4.07 12.93c-.67-4.39-1.94-9.66-2.63-14.11a2.68 2.68 0 0 0 2.12-2.54c0-1.45-1.27-2.63-2.84-2.63v0h0z%22 filter=%22url(%23b)%22/%3E%3Cellipse cx=%224708.7%22 cy=%22-2517.6%22 class=%22st15%22 filter=%22url(%23c)%22 rx=%2232.13%22 ry=%222.84%22 transform=%22matrix(.25939 0 0 .29298 -1196.4 778.12)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%222%22 d=%22M15.17 34.08s2.7-1.25 9.8-1.26c7.1-.01 9.8 1.26 9.8 1.26%22 paint-order=%22stroke fill markers%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%224501.5%22 x2=%224594.6%22 y1=%22-572.4%22 y2=%22-572.4%22 gradientTransform=%22matrix(.34208 0 0 .2837 -1530.8 187.39)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23e6e6e6%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23010101%22 stroke-width=%221.14%22 d=%22M21.93 6.55v2.93h-4.09V6.89h-5.8v7.98L16.58 18v12.57l-3.85 2.48v5.21H9.66v5.18h30.68v-5.18h-3.07v-5.2l-3.85-2.5V18.05l4.53-3.2V6.88h-5.8v2.59h-4.42V6.55h-2.9z%22 class=%22st14%22 filter=%22url(%23b)%22 transform=%22matrix(1.0055 0 0 .9198 -.14 3.5)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.4%22 d=%22M18.83 31.44h12M18.83 20h12%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur result=%22blur%22 stdDeviation=%220.01 0.01%22/%3E%3C/filter%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%2213197%22 x2=%2213341%22 y1=%22-9591%22 y2=%22-9591%22 gradientTransform=%22translate(-3485.7 2562.6) scale(.26458)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23e6e6e6%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.1%22 d=%22M25 6.55c-.88 0-1.65.29-2.26.9a2.86 2.86 0 0 0-.95 2.16c0 1.23.58 2.13 1.76 2.74-2.97 3.29-8.7 5.82-8.81 10.83 0 2.67 1.46 4.76 3.3 6.8l-1.1 5.83c1.69.54 3.08.94 4.82 1.13-3.88 4.58-10.79-1.74-15.21 2.93l2.33 3.58c5.6-3.96 13.38 3.67 16.12-3.96 2.75 7.63 10.53 0 16.12 3.96l2.33-3.58c-4.42-4.67-11.33 1.65-15.2-2.93a23.1 23.1 0 0 0 4.82-1.13l-1.12-5.83c1.85-2.04 3.3-4.13 3.31-6.8-.1-5-5.84-7.54-8.8-10.83 1.17-.61 1.75-1.51 1.75-2.74 0-.84-.3-1.55-.95-2.16-.6-.61-1.38-.9-2.26-.9z%22 filter=%22url(%23b)%22/%3E%3Cellipse cx=%222720.3%22 cy=%22-271.4%22 class=%22st15%22 filter=%22url(%23c)%22 rx=%2216.3%22 ry=%222.5%22 transform=%22matrix(.33232 0 0 .24998 -879.01 102.47)%22/%3E%3Cellipse cx=%2225%22 cy=%229.61%22 class=%22st15%22 rx=%221.14%22 ry=%221.15%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.4%22 d=%22M21.33 23.27h7.34M25 19.93v6.75%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%22-455.39%22 x2=%22-419.41%22 y1=%22-338.23%22 y2=%22-338.23%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fcfcf8%22/%3E%3Cstop offset=%221%22 stop-color=%22%23e7e7e3%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.6%22/%3E%3CfeOffset dx=%221.6%22 dy=%221.4%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-width=%221.1%22 d=%22M-443.92-332.95c2.1-1.2 3.32-1.18 5.46-2.2.23 7.43-9.9 7.46-8.08 15.36h26.4s3.1-32.27-16.78-33.62c0 0-1.91-3.6-3.93-3.25 0 0-1.06.84-.45 3.2l-2.3.75s-3.22-2.07-4.13-1.27c-.86.37 1.1 3.28 1.88 3.99-.8 1.14-8.55 12.1-8.96 15.68-.27 2.28 2.02 3.52 3.71 4.12.97.34 1.74.47 1.74.47 1.42-.25 3.34-2.03 5.44-3.23z%22 filter=%22url(%23b)%22 transform=%22matrix(1.0008 0 0 1.0001 462.75 363.26)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.1%22 d=%22M23.94 28.09s4.43-1.87 4.22-5.84%22/%3E%3Cpath stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.4%22 d=%22M19.1 18.47s.6-1.84 3.46-2.3%22/%3E%3Cellipse cx=%2221.03%22 cy=%2218%22 paint-order=%22markers fill stroke%22 rx=%221.24%22 ry=%221.17%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.4%22 d=%22M9.17 29.24s.25-.68.92-1.12%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.2%22 d=%22M11.64 32.28c.69-.88 1.58-1.32 2.38-1.95%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.4%22 d=%22M30.8 14.87c4.31 2.64 8.47 9.25 8.12 26.08%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%224127.3%22 x2=%224235.7%22 y1=%22-2558.4%22 y2=%22-2558.4%22 gradientTransform=%22matrix(.27677 0 0 .27555 -1132.3 731.96)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23e6e6e6%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-linecap=%22square%22 stroke-linejoin=%22round%22 stroke-width=%221.14%22 d=%22M25.02 43.4h-13.9c-2.55-5.88 4.21-11.34 8.97-13.2-5.69-3.15-2.6-11.21 2.27-11.87-1.16-.76-1.74-2.39-1.74-3.7 0-1.09.46-2.07 1.27-2.83a4.43 4.43 0 0 1 3.13-1.2c1.16 0 2.2.44 3.14 1.2a3.84 3.84 0 0 1 1.27 2.83c0 1.31-.58 2.94-1.74 3.7 5.34 2.07 7.26 9.7 2.27 11.88 6.5 2.29 11.06 8.07 8.97 13.2z%22 class=%22st31%22 filter=%22url(%23b)%22 transform=%22matrix(.96658 0 0 .97245 .83 1.24)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur result=%22blur%22 stdDeviation=%220.01 0.01%22/%3E%3C/filter%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.6%22/%3E%3CfeOffset dx=%221.6%22 dy=%221.4%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%222986.4%22 x2=%223128.4%22 y1=%221623.8%22 y2=%221623.8%22 gradientTransform=%22matrix(.27141 0 0 .27218 -804.81 -417.45)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%233c3c3c%22/%3E%3Cstop offset=%221%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23e6e6e6%22 stroke-width=%221.1%22 d=%22M23.28 5.55v3.24h-3.36v2.92h3.36v1.76c-3.36 2.12-3 5.74-3 5.74-11-8.52-20.67 7.56-7.94 13.05v8.73c0 .95 5.67 2.46 12.66 2.46s12.66-1.5 12.66-2.46v-8.73c12.72-5.49 3.06-21.57-7.95-13.05 0 0 .38-3.62-3-5.74V11.7h3.37V8.79h-3.36V5.55H25z%22 filter=%22url(%23b)%22/%3E%3Cellipse cx=%2271.08%22 cy=%22131.54%22 fill=%22%23e6e6e6%22 class=%22st15%22 filter=%22url(%23c)%22 rx=%2232.13%22 ry=%222.84%22 transform=%22matrix(.28533 0 0 .3223 4.72 -1.98)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23e6e6e6%22 stroke-width=%221.4%22 d=%22M27.03 30.27c1.5-12.1 11.94-12.44 13.37-7.38 1.42 5.06-4.74 7.38-4.74 7.38s-4.87-.64-10.66-.64-10.66.64-10.66.64-6.16-2.32-4.73-7.38 11.87-4.73 13.36 7.38%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur result=%22blur%22 stdDeviation=%220.01 0.01%22/%3E%3C/filter%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.498%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%22-71.637%22 x2=%22-30.678%22 y1=%22-83.325%22 y2=%22-83.325%22 gradientTransform=%22matrix(.97644 0 0 .99286 74.952 107.73)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%233c3c3c%22/%3E%3Cstop offset=%221%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23e6e6e6%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.1%22 d=%22M24.994 6.549v0c-1.568.006-2.835 1.181-2.836 2.63.002 1.193.873 2.235 2.122 2.539-.688 4.45-1.967 9.726-2.634 14.112l-4.07-12.927c.968-.444 1.58-1.356 1.58-2.353 0-1.453-1.275-2.63-2.847-2.63s-2.847 1.177-2.847 2.63c.002 1.205.89 2.255 2.157 2.547l-.44 13.258-5.482-10.611c.951-.45 1.55-1.354 1.55-2.34 0-1.453-1.275-2.63-2.847-2.63-1.573 0-2.847 1.177-2.847 2.63 0 1.334 1.084 2.456 2.519 2.61l2.76 16.507 4.05 5.258-1.004 3.634c-.042.656 4.848 2.028 11.122 2.04 6.273-.012 11.164-1.384 11.122-2.04l-1.005-3.634 4.05-5.258 2.76-16.507c1.435-.154 2.519-1.276 2.52-2.61 0-1.453-1.275-2.63-2.847-2.63-1.573 0-2.847 1.177-2.847 2.63 0 .986.598 1.89 1.55 2.34l-5.484 10.61-.439-13.257c1.266-.292 2.155-1.342 2.157-2.547 0-1.453-1.275-2.63-2.847-2.63s-2.847 1.177-2.847 2.63c0 .997.612 1.909 1.58 2.353l-4.07 12.927c-.667-4.386-1.946-9.662-2.634-14.112 1.249-.304 2.12-1.346 2.122-2.54 0-1.448-1.268-2.623-2.836-2.629v0h-.011z%22 filter=%22url(%23b)%22/%3E%3Cellipse cx=%224708.7%22 cy=%22-2517.6%22 fill=%22%23e6e6e6%22 class=%22st15%22 filter=%22url(%23c)%22 rx=%2232.126%22 ry=%222.844%22 transform=%22matrix(.25939 0 0 .29298 -1196.4 778.12)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23e6e6e6%22 stroke-linejoin=%22round%22 stroke-width=%222%22 d=%22M15.172 34.076s2.7-1.249 9.802-1.256c7.103-.01 9.801 1.256 9.801 1.256%22 paint-order=%22stroke fill markers%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%224501.5%22 x2=%224594.6%22 y1=%22-572.4%22 y2=%22-572.4%22 gradientTransform=%22matrix(.34208 0 0 .2837 -1530.8 187.39)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%233c3c3c%22/%3E%3Cstop offset=%221%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23e6e6e6%22 stroke-width=%221.14%22 d=%22M21.93 6.55v2.93h-4.09V6.89h-5.8v7.98L16.58 18v12.57l-3.85 2.48v5.21H9.66v5.18h30.68v-5.18h-3.07v-5.2l-3.85-2.5V18.05l4.53-3.2V6.88h-5.8v2.59h-4.42V6.55h-2.9z%22 class=%22st14%22 filter=%22url(%23b)%22 transform=%22matrix(1.0055 0 0 .9198 -.2 3.5)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23e6e6e6%22 stroke-width=%221.4%22 d=%22M18.8 31.4h12M18.8 20h12%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur result=%22blur%22 stdDeviation=%220.01 0.01%22/%3E%3C/filter%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%2213197%22 x2=%2213341%22 y1=%22-9591.1%22 y2=%22-9591.1%22 gradientTransform=%22translate(-3485.7 2562.6) scale(.26458)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%233c3c3c%22/%3E%3Cstop offset=%221%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23e6e6e6%22 stroke-linejoin=%22round%22 stroke-width=%221.1%22 d=%22M25 6.55c-.88 0-1.65.29-2.26.9a2.86 2.86 0 0 0-.95 2.16c0 1.23.58 2.13 1.76 2.74-2.97 3.29-8.7 5.82-8.81 10.83 0 2.67 1.46 4.76 3.3 6.8l-1.1 5.83c1.69.54 3.08.94 4.82 1.13-3.88 4.58-10.79-1.74-15.21 2.93l2.33 3.58c5.6-3.96 13.38 3.67 16.12-3.96 2.75 7.63 10.53 0 16.12 3.96l2.33-3.58c-4.42-4.67-11.33 1.65-15.2-2.93a23.1 23.1 0 0 0 4.82-1.13l-1.12-5.83c1.85-2.04 3.3-4.13 3.31-6.8-.1-5-5.84-7.54-8.8-10.83 1.17-.61 1.75-1.51 1.75-2.74 0-.84-.3-1.55-.95-2.16a3.1 3.1 0 0 0-2.26-.9z%22 filter=%22url(%23b)%22/%3E%3Cellipse cx=%222720.3%22 cy=%22-271.4%22 fill=%22%23e6e6e6%22 class=%22st15%22 filter=%22url(%23c)%22 rx=%2216.3%22 ry=%222.5%22 transform=%22matrix(.33232 0 0 .24998 -879.01 102.47)%22/%3E%3Cellipse cx=%2225%22 cy=%229.61%22 fill=%22%23e6e6e6%22 class=%22st15%22 rx=%221.14%22 ry=%221.15%22/%3E%3Cpath fill=%22none%22 stroke=%22%23e6e6e6%22 stroke-width=%221.4%22 d=%22M21.33 23.27h7.34M25 19.93v6.75%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%22-455.39%22 x2=%22-419.41%22 y1=%22-338.23%22 y2=%22-338.23%22 gradientTransform=%22matrix(1.0008 0 0 1.0001 462.75 363.26)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%233c3c3c%22/%3E%3Cstop offset=%221%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.5%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.6%22/%3E%3CfeOffset dx=%221.6%22 dy=%221.4%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23e6e6e6%22 stroke-width=%221.1%22 d=%22M18.47 30.29c2.1-1.2 3.33-1.19 5.47-2.2.22 7.42-9.9 7.45-8.1 15.36h26.43s3.1-32.27-16.79-33.63c0 0-1.92-3.6-3.93-3.25 0 0-1.06.84-.46 3.21l-2.3.75s-3.22-2.08-4.13-1.27c-.86.37 1.1 3.28 1.88 3.98-.8 1.15-8.55 12.11-8.97 15.69-.26 2.27 2.03 3.51 3.72 4.12a11.91 11.91 0 0 0 1.74.47c1.42-.26 3.34-2.04 5.45-3.24z%22 filter=%22url(%23b)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23e6e6e6%22 stroke-linecap=%22round%22 stroke-width=%221.1%22 d=%22M23.94 28.09s4.43-1.87 4.22-5.84%22/%3E%3Cpath stroke=%22%23e6e6e6%22 stroke-linecap=%22round%22 stroke-width=%221.4%22 d=%22M19.1 18.47s.6-1.84 3.46-2.3%22/%3E%3Cellipse cx=%2221.03%22 cy=%2218%22 fill=%22%23e6e6e6%22 paint-order=%22markers fill stroke%22 rx=%221.24%22 ry=%221.17%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23e6e6e6%22 stroke-linecap=%22round%22 stroke-width=%221.4%22 d=%22M9.17 29.24s.25-.68.92-1.12%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23e6e6e6%22 stroke-linecap=%22round%22 stroke-width=%221.2%22 d=%22M11.64 32.28c.69-.88 1.58-1.32 2.38-1.95%22/%3E%3Cpath fill=%22none%22 stroke=%22%23e6e6e6%22 stroke-linejoin=%22round%22 stroke-width=%221.4%22 d=%22M30.8 14.87c4.31 2.64 8.47 9.25 8.12 26.08%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cardinal'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%224127.2%22 x2=%224235.7%22 y1=%22-2558.3%22 y2=%22-2558.3%22 gradientTransform=%22matrix(.26749 0 0 .26799 -1093.5 713.11)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%233c3c3c%22/%3E%3Cstop offset=%221%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-color=%22%23000%22 flood-opacity=%22.498%22 result=%22flood%22/%3E%3CfeComposite in=%22flood%22 in2=%22SourceGraphic%22 operator=%22in%22 result=%22composite1%22/%3E%3CfeGaussianBlur in=%22composite1%22 result=%22blur%22 stdDeviation=%22.3%22/%3E%3CfeOffset dx=%221%22 dy=%221%22 result=%22offset%22/%3E%3CfeComposite in=%22SourceGraphic%22 in2=%22offset%22 result=%22composite2%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23e6e6e6%22 stroke-linecap=%22square%22 stroke-linejoin=%22round%22 stroke-width=%221.1%22 d=%22M25.019 43.45H11.58c-2.466-5.724 4.072-11.03 8.668-12.832-5.493-3.074-2.515-10.911 2.192-11.547-1.12-.742-1.681-2.327-1.681-3.6 0-1.06.448-2.013 1.233-2.755.785-.742 1.793-1.166 3.026-1.166 1.121 0 2.13.424 3.026 1.166.785.742 1.233 1.696 1.233 2.756 0 1.272-.56 2.857-1.681 3.599 5.156 2.014 7.012 9.427 2.193 11.547 6.276 2.226 10.685 7.85 8.667 12.832z%22 class=%22st31%22 filter=%22url(%23b)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* cburnett */
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath stroke-linejoin=%22miter%22 d=%22M22.5 11.63V6M20 8h5%22/%3E%3Cpath fill=%22%23fff%22 stroke-linecap=%22butt%22 stroke-linejoin=%22miter%22 d=%22M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5%22/%3E%3Cpath fill=%22%23fff%22 d=%22M11.5 37c5.5 3.5 15.5 3.5 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10V37z%22/%3E%3Cpath d=%22M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22%23fff%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath d=%22M8 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0zm16.5-4.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM41 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM16 8.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM33 9a2 2 0 1 1-4 0 2 2 0 1 1 4 0z%22/%3E%3Cpath stroke-linecap=%22butt%22 d=%22M9 26c8.5-1.5 21-1.5 27 0l2-12-7 11V11l-5.5 13.5-3-15-3 15-5.5-14V25L7 14l2 12z%22/%3E%3Cpath stroke-linecap=%22butt%22 d=%22M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z%22/%3E%3Cpath fill=%22none%22 d=%22M11.5 30c3.5-1 18.5-1 22 0M12 33.5c6-1 15-1 21 0%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22%23fff%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath stroke-linecap=%22butt%22 d=%22M9 39h27v-3H9v3zm3-3v-4h21v4H12zm-1-22V9h4v2h5V9h5v2h5V9h4v5%22/%3E%3Cpath d=%22m34 14-3 3H14l-3-3%22/%3E%3Cpath stroke-linecap=%22butt%22 stroke-linejoin=%22miter%22 d=%22M31 17v12.5H14V17%22/%3E%3Cpath d=%22m31 29.5 1.5 2.5h-20l1.5-2.5%22/%3E%3Cpath fill=%22none%22 stroke-linejoin=%22miter%22 d=%22M11 14h23%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cg fill=%22%23fff%22 stroke-linecap=%22butt%22%3E%3Cpath d=%22M9 36c3.39-.97 10.11.43 13.5-2 3.39 2.43 10.11 1.03 13.5 2 0 0 1.65.54 3 2-.68.97-1.65.99-3 .5-3.39-.97-10.11.46-13.5-1-3.39 1.46-10.11.03-13.5 1-1.35.49-2.32.47-3-.5 1.35-1.94 3-2 3-2z%22/%3E%3Cpath d=%22M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z%22/%3E%3Cpath d=%22M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z%22/%3E%3C/g%3E%3Cpath stroke-linejoin=%22miter%22 d=%22M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath fill=%22%23fff%22 d=%22M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.042-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4.003 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-.994-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-1.992 2.5-3c1 0 1 3 1 3%22/%3E%3Cpath fill=%22%23000%22 d=%22M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.433-9.75a.5 1.5 30 1 1-.866-.5.5 1.5 30 1 1 .866.5z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.5%22 d=%22M22.5 9c-2.21 0-4 1.79-4 4 0 .89.29 1.71.78 2.38C17.33 16.5 16 18.59 16 21c0 2.03.94 3.84 2.41 5.03-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47 1.47-1.19 2.41-3 2.41-5.03 0-2.41-1.33-4.5-3.28-5.62.49-.67.78-1.49.78-2.38 0-2.21-1.79-4-4-4z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath stroke-linejoin=%22miter%22 d=%22M22.5 11.6V6%22/%3E%3Cpath fill=%22%23000%22 stroke-linecap=%22butt%22 stroke-linejoin=%22miter%22 d=%22M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5%22/%3E%3Cpath fill=%22%23000%22 d=%22M11.5 37a22.3 22.3 0 0 0 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10V37z%22/%3E%3Cpath stroke-linejoin=%22miter%22 d=%22M20 8h5%22/%3E%3Cpath stroke=%22%23ececec%22 d=%22M32 29.5s8.5-4 6-9.7C34.1 14 25 18 22.5 24.6v2.1-2.1C20 18 9.9 14 7 19.9c-2.5 5.6 4.8 9 4.8 9%22/%3E%3Cpath stroke=%22%23ececec%22 d=%22M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cg stroke=%22none%22%3E%3Ccircle cx=%226%22 cy=%2212%22 r=%222.75%22/%3E%3Ccircle cx=%2214%22 cy=%229%22 r=%222.75%22/%3E%3Ccircle cx=%2222.5%22 cy=%228%22 r=%222.75%22/%3E%3Ccircle cx=%2231%22 cy=%229%22 r=%222.75%22/%3E%3Ccircle cx=%2239%22 cy=%2212%22 r=%222.75%22/%3E%3C/g%3E%3Cpath stroke-linecap=%22butt%22 d=%22M9 26c8.5-1.5 21-1.5 27 0l2.5-12.5L31 25l-.3-14.1-5.2 13.6-3-14.5-3 14.5-5.2-13.6L14 25 6.5 13.5 9 26z%22/%3E%3Cpath stroke-linecap=%22butt%22 d=%22M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z%22/%3E%3Cpath fill=%22none%22 stroke-linecap=%22butt%22 d=%22M11 38.5a35 35 1 0 0 23 0%22/%3E%3Cpath fill=%22none%22 stroke=%22%23ececec%22 d=%22M11 29a35 35 1 0 1 23 0m-21.5 2.5h20m-21 3a35 35 1 0 0 22 0m-23 3a35 35 1 0 0 24 0%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath stroke-linecap=%22butt%22 d=%22M9 39h27v-3H9v3zm3.5-7 1.5-2.5h17l1.5 2.5h-20zm-.5 4v-4h21v4H12z%22/%3E%3Cpath stroke-linecap=%22butt%22 stroke-linejoin=%22miter%22 d=%22M14 29.5v-13h17v13H14z%22/%3E%3Cpath stroke-linecap=%22butt%22 d=%22M14 16.5 11 14h23l-3 2.5H14zM11 14V9h4v2h5V9h5v2h5V9h4v5H11z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23ececec%22 stroke-linejoin=%22miter%22 stroke-width=%221%22 d=%22M12 35.5h21m-20-4h19m-18-2h17m-17-13h17M11 14h23%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cg fill=%22%23000%22 stroke-linecap=%22butt%22%3E%3Cpath d=%22M9 36c3.4-1 10.1.4 13.5-2 3.4 2.4 10.1 1 13.5 2 0 0 1.6.5 3 2-.7 1-1.6 1-3 .5-3.4-1-10.1.5-13.5-1-3.4 1.5-10.1 0-13.5 1-1.4.5-2.3.5-3-.5 1.4-2 3-2 3-2z%22/%3E%3Cpath d=%22M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z%22/%3E%3Cpath d=%22M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z%22/%3E%3C/g%3E%3Cpath stroke=%22%23ececec%22 stroke-linejoin=%22miter%22 d=%22M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22%3E%3Cpath fill=%22%23000%22 d=%22M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21%22/%3E%3Cpath fill=%22%23000%22 d=%22M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.04-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-1-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-2 2.5-3c1 0 1 3 1 3%22/%3E%3Cpath fill=%22%23ececec%22 stroke=%22%23ececec%22 d=%22M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.43-9.75a.5 1.5 30 1 1-.86-.5.5 1.5 30 1 1 .86.5z%22/%3E%3Cpath fill=%22%23ececec%22 stroke=%22none%22 d=%22m24.55 10.4-.45 1.45.5.15c3.15 1 5.65 2.49 7.9 6.75S35.75 29.06 35.25 39l-.05.5h2.25l.05-.5c.5-10.06-.88-16.85-3.25-21.34-2.37-4.49-5.79-6.64-9.19-7.16l-.51-.1z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='cburnett'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 45 45%22%3E%3Cpath stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.5%22 d=%22M22.5 9a4 4 0 0 0-3.22 6.38 6.48 6.48 0 0 0-.87 10.65c-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47a6.46 6.46 0 0 0-.87-10.65A4.01 4.01 0 0 0 22.5 9z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* chess7 */
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath d=%22M39.6 57.14q-3.53 3.52-3.85 3.7-1.6 1.48-3.39 0-.38-.18-3.84-3.83l-4.48.25-3.97 4.36h27.84l-4.03-4.16zm6.01-5.06q-.96-.58-1.86-1.02-.9-.45-1.53-.84-1.28-.57-4.1-.76-2.75-.2-3.77-.26-.96.06-3.4.38-2.36.32-5.37 1.22-3.14 1.15-3.84 1.54l2.05 2.04 4.73-.32 3.84-4.03q1.73-1.6 3.4 0l4.03 4.03 3.9.32zm-25.4 2.88-.33 2.5 1.73-1.41zm0-5.18q.7-.39 1.72-.77 1.02-.45 2.75-.96 2.3-.77 4.35-1.15 2.12-.39 3.65-.52L32.55 35Q31.4 29.04 30 23.8q-1.4-5.25-3.9-6.01-2.88-.77-6.72-.45-3.78.32-5 .9-1.34.7-3.38 2.62Q9 22.7 8.23 25q-.83 2.43-1.08 4.35l-.32 3.14q0 2.5 1.08 7.1.64 2.3 1.73 3.97 1.15 1.66 3.33 3.39 1.92 1.66 3.71 2.18 1.8.44 3.52.64zm13.88-21.44q.58-2.7 1.22-5.12.7-2.5 1.66-4.42 0-.64-.58-1.8-.5-.95-1.15-1.78-.57-.84-1.02-1.8-1.6 2.18-2.3 3.59-.58 1.02-.71 1.47-.06.45-.06.83 1.72 3.52 2.94 9.03zm16.26 24.19 1.28 12.16H16.04l1.41-12.16q-1.54-.32-3.07-.96-1.54-.7-3.4-2.11-2.55-2.12-3.9-4.16-1.34-2.05-2.11-4.93-1.22-4.74-1.22-8 .07-1.35.32-3.52.32-2.18 1.41-4.93.9-2.88 3.46-5.25t4.22-3.07q1.47-.77 5.95-1.22 4.48-.44 7.75.45 1.53.64 1.98 1.22.77-1.35 1.8-2.82l2.04-2.88V9.26h-2.94V6.2h2.94V3.31h2.95V6.2h2.75v3.07h-2.75v1.1q.9 1.34 1.85 2.8 1.03 1.42 1.8 2.76.44-.32.89-.58.51-.25.96-.5 3.33-.9 7.74-.46 4.48.45 6.15 1.22 1.47.7 4.03 3.07 2.56 2.37 3.65 5.25.9 2.75 1.21 4.93.32 2.17.32 3.52.13 3.2-1.21 8-.77 2.88-2.11 4.93-1.28 2.04-3.9 4.16-1.93 1.53-3.53 2.24-1.6.64-3.13.83zm-16.13-.32-3.2 3.26 3.2 3.2 3.07-3.2zm13.25 2.3-1.54 1.22 1.86 1.73zm-12.04-8.13q1.6 0 4.16.26t3.84.83l2.05 1.03q1.15.57 2.3 1.28 1.73-.13 3.46-.58 1.8-.51 3.9-2.24 3.91-3.26 4.93-7.36 1.22-4.54 1.1-7.1 0-1.22-.26-3.14-.26-1.92-1.16-4.35-.83-2.3-2.88-4.16-2.04-1.92-3.26-2.63-1.34-.57-5-.9-3.64-.31-6.52.46-2.56.76-3.97 6.01-1.34 5.25-2.5 11.2z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M22.03 59.55a68.95 68.95 0 0 1 2.04-2.15c.08-.06 1.1-.16 2.27-.21l2.12-.1 2 1.95c1.1 1.08 2.2 2.1 2.45 2.26.42.28.03.3-6.16.3h-6.6zm-1.97-2.96c.07-.4.12-.9.12-1.14v-.41l.65.48c.7.54.67.68-.34 1.4l-.54.38zM32.6 57l-1.5-1.5 1.6-1.58 1.59-1.58 1.48 1.6 1.5 1.6-1.5 1.49c-.82.81-1.53 1.48-1.58 1.48s-.77-.68-1.59-1.5zm2.8 4.2c.29-.2 1.35-1.2 2.35-2.18l1.83-1.8 2.08.13 2.08.12 1.79 1.75c.98.96 1.87 1.89 1.96 2.06.16.3-.19.32-6.22.32h-6.4zm11.39-4.74-.75-.77.7-.5.7-.5.13 1.19c.07.66.09 1.23.05 1.27s-.42-.27-.83-.69zm-5.64-2.3-1.32-.13-2.36-2.33-2.36-2.34 2.13.13c2.93.16 4.31.5 6.18 1.46.88.46 1.71.9 1.85 1 .2.13.07.39-.64 1.26-.99 1.22-.85 1.18-3.48.94zm-18.38-.8-.97-.98 1.34-.56a28.4 28.4 0 0 1 4.5-1.49c1.25-.32 4.6-.9 5.2-.91.1 0-.84 1.03-2.1 2.3L28.47 54l-1.82.15c-2.97.25-2.8.28-3.88-.8zM18.2 49.4c-.95-.2-2.14-.55-2.64-.78-1.94-.9-5-3.7-6.16-5.63-1.14-1.9-2.18-5.88-2.41-9.2-.19-2.78.7-7.75 1.78-9.88.87-1.75 3.23-4.17 5.18-5.33 2.02-1.2 8.74-1.63 11.96-.78 1.13.3 2.45 1.76 3.18 3.52.67 1.6 1.83 6.04 2.82 10.8l.65 3.13V46.3l-.68.1c-4.1.64-8.75 1.9-10.81 2.94a4.8 4.8 0 0 1-1 .42c-.08 0-.92-.18-1.87-.37zm27.8-.65c-2.91-1.64-4.44-2.06-8.58-2.33l-1.94-.13.1-5.67.1-5.66.71-3.36c1.96-9.23 3.1-12.29 4.97-13.35.9-.52 1.25-.6 3.4-.83 1.88-.2 5.16.02 7.33.47 1.62.33 2.75 1.08 4.92 3.25 1.84 1.85 2.49 2.97 3.25 5.66a22.9 22.9 0 0 1-.53 13.65 13.48 13.48 0 0 1-3.4 5.28c-2.16 2.15-3.75 3.12-5.82 3.58-2.44.54-2.6.52-4.5-.56zM33.93 27.42a49.49 49.49 0 0 0-1.95-6.27c-.53-1.32-.7-2-.65-2.46.1-.7 1.22-2.83 2.24-4.24l.64-.88.6.97 1.14 1.88c1.05 1.7 1.08 2.04.35 3.86a54.72 54.72 0 0 0-1.97 6.68l-.26 1.1z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 -2.0 68 68%22%3E%3Cpath d=%22m21.088 51.312-1.664 5.184 3.648-3.328zm25.088.128L44 53.296l3.264 2.752zm-17.728 2.176-2.752.576-3.392 4.16h22.464q-.704-.64-3.392-4.16l-2.304-.448-3.52 3.52q-1.792 1.792-3.52 0zm-9.344-5.568q-2.816-6.08-5.504-12.16-2.624-6.144-5.248-12.16-1.408.384-2.304-.576L4.64 21.616q-1.92-1.664 0-3.584l1.408-1.344q1.664-2.048 3.52 0l1.536 1.344q1.536 1.92 0 3.584l-.768.768L21.28 30.96l-.96-13.824q-.832-.192-1.408-.768l-1.344-1.408q-1.984-1.792 0-3.52l1.344-1.536q1.792-1.664 3.584 0l1.536 1.536q1.536 1.728 0 3.52l-1.536 1.408 6.592 11.264 3.52-12.928q.192 0-.576-.32l-1.408-1.536q-1.728-1.792 0-3.584l1.408-1.536q1.728-1.408 3.52 0l1.408 1.536q1.984 1.792 0 3.584l-1.408 1.536q-.32.32-.64.32l3.584 13.056 6.592-11.072-1.536-1.536q-1.536-1.856 0-3.712l1.408-1.408q1.856-1.536 3.648 0l1.408 1.408q1.856 1.856 0 3.712l-1.408 1.344-1.216.768-.768 13.568 11.264-9.984-.96-.768q-1.536-1.856 0-3.712l1.536-1.408q1.792-1.664 3.584 0l1.344 1.408q1.856 1.856 0 3.712l-1.344 1.344q-1.088 1.088-2.368.768l-11.2 26.304 3.072 12.48H14.624zm0-7.36q6.592-3.84 14.912-3.84 7.552 0 14.336 4.16l5.376-12.352-9.216 6.848-.64-10.816-6.336 7.872-3.648-10.624-4.352 10.624-5.696-7.872-.512 10.816-9.28-6.208zm14.784 8-3.264 3.2 3.264 3.264 3.072-3.264zM20.32 43.632q.32.704.64 1.344.384.64.576 1.216 2.688-1.216 5.824-2.304 3.2-1.088 6.656-1.088 3.328 0 5.824.832t6.336 2.752l1.088-2.624q-3.456-1.92-6.528-2.88-3.072-.96-6.72-.96-3.584 0-7.296.96-3.648.896-6.4 2.752zM7.84 18.8l-1.024 1.088 1.024 1.088 1.088-1.088zm12.928-6.72-1.088 1.088 1.088 1.024 1.088-1.024zm13.12-2.048L32.8 11.12l1.088 1.088.896-1.088zm12.928 2.176-1.088 1.088 1.088 1.088 1.024-1.088zm13.376 4.928-1.088 1.088 1.088 1.088 1.088-1.088zM44.32 49.008q-3.008-1.6-5.184-2.432-2.112-.832-5.12-.832t-5.888 1.088q-2.88 1.024-5.184 2.176l2.304 2.304 2.944-.64 3.84-4.16q1.728-1.408 3.52 0l4.032 4.16 2.56.64z%22/%3E%3Cg fill=%22%23fff%22 fill-rule=%22evenodd%22%3E%3Cpath d=%22M19.748 55.859c0-.065.298-1.082.663-2.26l.663-2.144.974.841.974.841-1.5 1.41c-1.409 1.324-1.774 1.594-1.774 1.312zm3.069 1.981a74.71 74.71 0 0 1 1.634-2.043l1.268-1.543 1.333-.295 1.332-.294 2.289 2.246c2.102 2.064 2.343 2.246 2.966 2.246.978 0 1.254-.188 3.473-2.37l2-1.968 1.112.214c1.1.213 1.128.234 2.252 1.67.627.8 1.39 1.72 1.696 2.045l.556.591H22.45z%22/%3E%3Cpath d=%22m32.233 53.465-1.607-1.618 1.569-1.436c.862-.79 1.656-1.435 1.764-1.435s.807.67 1.554 1.491l1.357 1.492-1.515 1.562-1.516 1.563zm13.279 1.088-1.418-1.214.958-.853c.527-.47 1.002-.811 1.055-.759.151.151 1.052 4.068.931 4.054-.06-.008-.746-.56-1.526-1.228zm-4.822-3.632c-1.117-.28-1.2-.343-3.134-2.41-1.093-1.169-2.254-2.256-2.58-2.417l-.592-.292.546.002c.975.004 3.245.486 4.454.945.99.377 4.486 2.04 4.703 2.238.113.104-1.873 2.254-2.066 2.237-.1-.01-.699-.145-1.33-.303zm-16.477-.751c-.594-.602-1.044-1.127-1-1.166.197-.178 1.391-.725 3.213-1.47 2.043-.838 4.204-1.449 5.777-1.634l.909-.108-.546.336c-.3.186-1.42 1.276-2.49 2.425-1.88 2.019-1.978 2.095-3 2.316-.58.126-1.219.266-1.419.312-.263.06-.664-.221-1.444-1.011z%22/%3E%3Cpath d=%22M44.02 45.334c-4.423-2.152-8.085-2.907-11.985-2.468-2.56.288-4.195.738-7.604 2.09L21.57 46.09l-.549-1.173c-.403-.862-.497-1.235-.354-1.408.31-.372 3.041-1.657 4.59-2.157 3.73-1.206 8.52-1.649 12.102-1.119 2.695.399 4.49.974 7.436 2.383 2.286 1.094 2.4 1.174 2.244 1.574-.352.901-.916 2.148-.965 2.132-.029-.008-.952-.453-2.052-.989z%22/%3E%3Cpath d=%22M46.203 39.811a28.308 28.308 0 0 0-7-2.504c-2.205-.472-8.862-.476-11.091-.006-2.449.517-5.027 1.366-7.075 2.33-1.041.491-1.92.866-1.951.834-.128-.127-4.787-10.737-4.738-10.786.03-.03 2.034 1.266 4.455 2.878 2.42 1.612 4.442 2.892 4.49 2.843.05-.049.201-2.356.339-5.126s.285-5.074.33-5.118c.044-.044 1.294 1.592 2.778 3.636 1.484 2.045 2.755 3.682 2.825 3.639s1.06-2.366 2.2-5.163c1.14-2.796 2.126-4.988 2.19-4.87.063.118.878 2.444 1.812 5.17s1.753 4.935 1.82 4.91c.068-.027 1.442-1.684 3.054-3.684s2.996-3.658 3.073-3.685c.078-.026.272 2.249.431 5.056.16 2.807.336 5.15.393 5.206.056.057 2.044-1.337 4.417-3.097s4.35-3.165 4.393-3.122c.096.095-4.926 11.728-5.055 11.708-.05-.008-.99-.48-2.09-1.049zM7.327 20.375l-.49-.512.512-.49.511-.49.49.512.49.511-.511.49-.512.49zm12.909-6.727-.49-.512.512-.49.511-.49.49.511.49.512-.511.49-.511.49zm13.088-2.005-.487-.507.513-.491.513-.491.412.439c.327.348.374.512.226.79-.398.743-.66.8-1.177.26zm13.003 2.277c-.5-.533-.498-.696.024-1.185.53-.499.525-.5.988.127l.386.522-.5.48-.5.48zm13.364 4.818-.49-.511.511-.49.512-.49.49.511.49.512-.511.49-.512.49z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath d=%22m48.46 25 2.44 19.53 2.62 6.01v12.93H14.16V50.54l2.62-6.01L19.22 25l-4.93-10.75 3.07-9.73H26v8.32h3.71V4.53h8.77v8.32h3.65V4.53h8.64l3.07 9.73zM16.91 52.2v8.65H50.9V52.2zm.77-2.74H50l-1.4-3.4H19.08zm17.86-19.52 4.16 4.16h7.23l-.96-7.88h-24l-1.03 7.88h6.92l4.41-4.16q1.41-1.8 3.27 0zm-7.36 6.9h-7.56l-.96 6.8h28.36l-.77-6.8H39.5l-3.96 3.98q-1.86 1.85-3.27 0zM17.04 14.07l4.67 9.54H46.3l4.8-9.54-2.18-6.9h-4.16v8.44h-8.9V7.15h-3.58v8.45h-8.9V7.15h-4.03zm13.25 21.25 3.52 3.71 3.71-3.7-3.71-3.53z%22/%3E%3Cg fill=%22%23fff%22 fill-rule=%22evenodd%22%3E%3Cpath d=%22M17.04 56.6v-4.27h33.81v8.54H17.04zm1.11-8.14.67-1.63.27-.69h29.49l.67 1.64.67 1.64H17.77zm1.61-5.03c0-.08.2-1.57.46-3.28l.45-3.2c0-.04 1.7-.08 3.75-.08h3.76l2.5 2.46c2.65 2.6 2.9 2.75 3.96 2.2a28.4 28.4 0 0 0 2.67-2.46l2.18-2.2h3.86c2.97 0 3.87.06 3.87.23 0 .13.16 1.58.36 3.23l.36 3.13c0 .08-6.34.14-14.09.14-8.3 0-14.09-.07-14.09-.17z%22/%3E%3Cpath d=%22m32 37.08-1.67-1.78 1.71-1.7 1.71-1.71.5.44a73.02 73.02 0 0 1 1.83 1.71l1.32 1.28-1.77 1.78a24.1 24.1 0 0 1-1.86 1.76c-.06 0-.85-.8-1.77-1.78z%22/%3E%3Cpath d=%22M21.1 33.37a185.6 185.6 0 0 0 .5-3.82l.4-3.22h11.97c6.59 0 11.98.04 11.98.1 0 .2.72 6.17.83 6.85l.1.68h-7.21l-1.91-1.93c-2.38-2.4-3.14-2.98-3.94-2.98-.67 0-.94.22-4.26 3.4l-1.57 1.51h-7zm-1.68-14.54-2.32-4.78 1.12-3.36 1.12-3.36 2.03-.05 2.03-.06v8.38h8.9V7.24h3.46v8.36h9.1V7.22l2.02.06 2.03.05 1.05 3.34L51 14.01l-2.4 4.8-2.39 4.79H21.75l-2.33-4.77z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath d=%22M27.98 55.47q-2.75-.06-4.54-.06-1.8-.07-1.92-.26-.83-.77-.9-1.85-.06-1.1.77-1.8.07-.12 1.09-1.53 1.02-1.47 2.43-3.59-2.43-3.07-4.6-6.01-2.18-3.01-2.63-3.52-1.4-1.22-1.4-3.01 0-1.86 1.4-3.26.38-.39 2.3-2.95 1.99-2.56 4.23-5.57 2.3-3 4.22-5.56 1.99-2.63 2.24-2.88.26-.26.39-.45-.7-.77-1.48-1.47-.7-.7-.83-.96-2.05-1.8 0-3.59.2-.32 1.73-1.79 1.6-1.47 1.86-1.86 1.72-1.66 3.32 0l1.86 1.86q1.47 1.47 1.86 1.8 1.79 1.78 0 3.58l-1.03.96q-.77.7-1.4 1.47.06 0 .06.13.06.06.25.06.45.51 2.37 3.14 1.92 2.56 4.1 5.56 2.24 3.01 4.1 5.57 1.91 2.56 2.3 2.95 1.34 1.4 1.34 3.26 0 1.8-1.34 3-.45.52-2.56 3.4-2.05 2.82-4.35 5.89 1.6 2.11 2.68 3.71 1.16 1.54 1.35 1.66 1.73 1.8-.2 3.65-.12.2-2.1.26-1.93 0-4.8.06-.2 1.41-.13 1.41.32.32 2.17.32l4.1-.13q2.24-.07 4.29-.06 2.1-.07 2.94.19 2.11.7 2.94 3.26.84 2.5 1.41 4.87H40.78q-1.34 0-2.56-.07-1.15-.12-2.36-.7-1.16-.58-1.48-.83-.32-.32-.38-.7 0 .38-.26.7-.25.25-1.4.83-1.35.58-2.56.7-1.22.07-2.37.07H10.13q.7-2.37 1.66-4.87 1.03-2.56 3.14-3.26.77-.26 2.75-.2 2.05 0 4.16.07l3.9.13q1.8 0 2.12-.32.32-.2.19-.38-.07-.26-.07-1.03zm6.92-.13q0 3.97 1.08 5.06.58.83.58.96t.51.45q2.05.77 3.52.77h13.25q-.13-.32-.38-1.28t-1.16-1.35q-.7-.19-2.81-.13-2.05 0-4.35.13-2.3.07-4.3.07-1.91-.07-2.36-.52-1.09-.9-1.09-1.92 0-1.08.13-2.24zm-1.8 1.92q0-1.92-.06-1.92h-2.56q.06 1.16.06 2.18 0 .96-1.15 1.98-.45.45-2.37.52-1.92 0-4.22-.07-2.3-.13-4.42-.13-2.1-.06-2.81.13-.83.39-1.15 1.35-.32.96-.39 1.28h13.38q1.6 0 3.52-.77.57-.32.51-.45 0-.13.7-.96.96-1.22.96-3.14zm2.44-22.2v11.07h-2.95V35.06h-3.52V32.1h3.52v-4.29h2.95v4.3h3.52v2.94zm-6.92 11.32q-1.98 2.95-3.52 4.87l-1.53 1.92q.06.13 3.39.19t7.3.06q3.96 0 7.3-.06 3.38-.06 3.51-.2-.13-.06-1.79-2.04-1.6-1.98-3.71-5 2.62-3.64 5.25-7.22 2.68-3.59 3.2-4.16 1.08-.84 0-1.99-.52-.45-2.44-3-1.92-2.63-4.16-5.57-2.17-3.01-4.1-5.57-1.85-2.63-2.23-3.14-.45-.45-.96-.45-.7 0-1.03.45-.5.51-2.5 3.14-1.91 2.56-4.22 5.57-2.24 2.94-4.16 5.56-1.92 2.56-2.36 3.01-1.28 1.15 0 1.99.38.57 3.13 4.22 2.82 3.65 5.63 7.42zM34 5.62q-.26.38-1.6 1.72l-1.47 1.54q.19.38 1.47 1.73 1.34 1.28 1.6 1.47l1.54-1.47 1.72-1.73q-.38-.2-1.72-1.54Q34.19 6 34 5.62z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M14.23 62.05c.31-1.03.63-1.59 1.06-1.87.41-.27 1.13-.3 6.88-.24 7.2.07 7.16.08 7.99-1.25.35-.57.42-.9.4-2l-.03-1.32h2.56L33 57.14c-.09 1.85-.18 2.12-1.12 3.53-1.11 1.67-1.8 1.78-10.54 1.79H14.1zm24.9.32A43.32 43.32 0 0 0 37.9 62c-.96-.26-1.1-.37-1.7-1.33a7.03 7.03 0 0 1-1.16-4.09v-1.22h2.36v1.4c0 1.63.34 2.37 1.31 2.9.55.3 1.11.33 7.07.27l6.47-.06.5.42c.26.24.6.82.74 1.3l.26.86-7.22-.02c-3.97 0-7.3-.04-7.4-.08zM24.8 53.23c-.57-.04-1.05-.12-1.05-.17s.48-.68 1.07-1.4a69.44 69.44 0 0 0 3.68-5.06c.12-.24-.75-1.5-4.02-5.82-2.3-3.03-4.42-5.82-4.72-6.18-.3-.37-.55-.76-.55-.87 0-.1.27-.5.6-.87.34-.38 1.62-2.04 2.86-3.69a710.68 710.68 0 0 1 9.93-13.02c.43-.51.93-.97 1.12-1.02.79-.2 1.33.36 4.69 4.95 5.1 6.97 8.46 11.45 9.31 12.42.75.86.97 1.61.56 1.87-.2.12-6.1 7.98-7.87 10.48-.52.74-.81 1.32-.73 1.46.44.76 2.55 3.57 3.77 5.02.78.93 1.37 1.75 1.3 1.82-.13.13-18.23.2-19.95.08zm10.73-12.56.05-5.5h3.45V32.1h-3.46v-4.36H32.5v4.36h-3.45v3.1h3.45v5.42c0 2.98.06 5.48.13 5.55.07.07.75.1 1.5.08l1.37-.06zm-3.12-30.22L31 9.01l.91-1.05c.5-.58 1.19-1.3 1.52-1.6l.6-.55 1.58 1.6 1.57 1.6-1.54 1.4c-.85.78-1.6 1.43-1.67 1.46s-.77-.6-1.55-1.4z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath d=%22M24.85 39.73q-.39.7.19 1.28.58.57-.2 1.47-.7 1.02-2.62 2.75-1.85 1.73-3.2 2.3-2.17 1.29-4.48.2-1.15-.58-2.88-2.24-1.66-1.67-2.3-2.69-.77-1.02-.58-1.73.2-.7.07-1.66 0-.77-.39-1.09-.38-.38.39-2.5.77-1.92 3.26-6.33 2.5-4.42 3.2-6.53.7-1.92-.25-1.73-.9.13-.52-.9.39-1.15 1.41-3.07 1.03-1.98 1.86-2.94.9-.9 1.85-.7 1.03.12 1.8-1.16.7-1.21 1.34-3.77.7-2.56 1.47-4.67.96 1.98 2.05 3.77 1.09 1.8 2.24 2.24 2.88-1.09 6.91-.51 5.76.77 8.51 2.3 2.76 1.48 6.6 6.21 1.47 1.86 2.36 3.97.9 2.05 1.6 4.48.7 2.43 1.1 5.57.44 3.13.63 5.63 0 2.69-.19 5-.13 2.23 0 4.54v3.77q0 1.41.51 3.78.32 1.98 1.28 4.41.96 2.44 1.8 4.8h-40.2q-.83-1.66-.57-3.64 0-1.28.32-3.14t1.02-3.52q.58-1.47 1.54-2.82.96-1.4 2.04-2.68 2.05-3.2 3.84-5.12 1.54-1.73 3.27-3.2 1.79-1.48 3.33-3.4 1.34-2.1 1.66-3.7.2-.97-.06-2.63-.2-1.73-.52-1.67-.25.13-1.02 2.37t-1.47 3.01q-.7 1.09-1.54 1.54-.77.38-1.34.76-.77.39-1.22.39-.38 0-.96.38-.7.51-1.66 1.35-.9.76-1.28 1.47zm2.62 7.49-3.84 5.24 8.45.64 3.84-4.03q1.92-1.92 3.9 0l4.1 4.16 9.4-.64q0-3.26.26-7.74.32-4.55.2-6.98-.13-2.5-.52-5.44-.32-3-1.02-5.18-1.28-4.29-3.65-7.43-1.4-1.53-2.62-2.75-1.15-1.21-2.95-2.62-2.1-.9-3.96-1.6-1.8-.7-3.9-.83-3.91-.45-6.6.57-2.11-.77-2.69-1.66-.51-.9-.83-1.86 0 2.75-1.4 4.48-.71.83-2 1.22-1.2.32-1.98 1.21-.83.96-1.66 2.5-.77 1.47-1.15 2.43-.2 1.09.64 1.09.83-.06.13 1.86-.7 1.98-3.27 6.52-2.5 4.48-3.2 6.4-.77 1.99-.32 1.92.51-.06.51.52 0 .57-.32 1.08-.25.45.32 1.1.58.82 2.12 2.3 1.53 1.4 2.36 1.85.77.45.96.45.2-.06 1.16-.64.76-.38 2.56-1.92t2.36-2.37q.7-.9.07-1.28-.58-.45-.2-1.15.39-.77 1.6-1.92 1.22-1.22 1.93-1.8.76-.57 1.28-.5.57 0 1.15-.39t1.09-.51q.5-.2 1.08-.9.45-.64 1.1-1.98.7-1.4 1.08-2.5.2-.9.45-1.66.32-.83 0-1.54-.51-.76-2.11-1.66-1.6-.9-1.41-1.28.06-.32 1.79-.32t2.82.77q.76.77 1.79 2.5t1.4 3.07q1.1 3.2.52 5.37-.51 2.3-2.37 4.48-1.28 1.99-3 3.59t-3.46 3.32q-1.41 1.41-1.99 2.44zm-5.05 8.5q-.39 1.35-.64 3.02t.32 2.81h33.2l-1.66-5.7-9.73.65-4.1 4.1q-1.98 1.72-3.9 0l-3.97-4.3zm15.55-4.34-3.4 3.39 3.4 3.52 3.39-3.52zm-15.23-28.3q.64.26 1.02.33.45.06.32.77 0 .25-.58.44-.5.13-.96.32-.44.26-1.08.45-.58.2-.77.32-1.09.32-1.54-.19-.25-.26-.25-1.22.06-.32.44-.83.45-.51.9-.51 1.73 0 2.5.13zm-10.3 14.28q.57 0 1.34.2.76.18.96.57 0 .51-.84 1.47-.83.9-1.21.7 0-.19.13-.57.12-.39.06-.77 0-.96-.45-1.6z%22/%3E%3Cg fill=%22%23fff%22 fill-rule=%22evenodd%22%3E%3Cpath d=%22M22 61.13c-.27-.69-.22-2.15.12-3.85l.3-1.5 1.2.1c1.91.15 6.95.45 7.65.45.59 0 .81.2 2.73 2.3 1.36 1.49 2.34 2.4 2.82 2.63.72.33.65.33-6.96.34h-7.69zm16.9.16c.36-.17 1.67-1.3 2.92-2.52l2.27-2.21 4.7-.3c2.6-.17 4.74-.28 4.78-.24.06.06.6 1.84 1.4 4.63l.28.95h-8.49c-8.1 0-8.46-.02-7.85-.31zm-2.63-4.78-1.63-1.64 1.68-1.68L38 51.51l1.63 1.63 1.63 1.62-1.51 1.64a17.3 17.3 0 0 1-1.68 1.69c-.1.03-.9-.68-1.8-1.58z%22/%3E%3Cpath d=%22M41.89 51.14c-2.68-2.88-3.76-3.45-5.15-2.73a22 22 0 0 0-2.58 2.47l-2.08 2.2-4.08-.3a97.38 97.38 0 0 1-4.15-.37c-.03-.03.94-1.43 2.16-3.11a49.32 49.32 0 0 1 5.61-6.52c5.6-5.7 7.13-8.3 6.87-11.63-.23-2.92-2.3-7.42-4.03-8.74-.72-.55-2.38-.88-3.58-.72-1.34.19-1.19.58.71 1.85 2.03 1.35 2.2 1.68 1.76 3.31a24.19 24.19 0 0 1-2.13 5.11c-.5.84-.8 1.11-1.86 1.68a6.1 6.1 0 0 1-1.72.68c-.62.01-1.31.47-2.8 1.85-1.3 1.18-2.3 2.53-2.3 3.08 0 .17.13.4.28.53.71.6 0 1.66-2.55 3.79-.93.78-2.11 1.64-2.61 1.91l-.92.5-.69-.36a20.63 20.63 0 0 1-4.22-3.68c-.78-.98-.86-1.28-.55-2.08.22-.58.07-1.17-.3-1.17a.27.27 0 0 1-.25-.27c0-.8 1.64-4.28 4.37-9.27 1.73-3.16 2.74-5.48 2.78-6.35.03-.63-.03-.73-.43-.83-.71-.18-.66-.86.2-2.58 1.5-2.98 2.4-3.99 4.18-4.61a5.97 5.97 0 0 0 1.37-.73c.72-.54 1.65-2.39 1.81-3.59l.12-.87.36.69c.53 1 1.01 1.46 2.06 1.95.93.44.94.44 2 .13.82-.23 1.74-.3 3.72-.28 3.12.02 4.2.24 7.44 1.52a10.2 10.2 0 0 1 3.75 2.15c2.84 2.42 5.34 5.58 6.47 8.16 2.34 5.36 3.12 11.52 2.62 20.9-.15 2.89-.28 5.8-.28 6.46v1.22l-.59.1c-.32.05-2.02.17-3.77.28s-3.6.23-4.11.29l-.93.1zM13.98 39.5c.93-1.01.96-1.47.12-1.83a3.76 3.76 0 0 0-1.2-.26c-.51 0-.53.02-.33.4.12.23.21.88.2 1.46 0 1.3.2 1.33 1.2.23zm8.2-14.32c1.71-.7 1.91-.82 1.91-1.23 0-.6-.94-.91-2.87-.96-1.36-.04-1.45-.01-1.87.47-.6.69-.61 1.8-.04 2.21.57.4.73.37 2.87-.5z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 -3.0 68 68%22%3E%3Cpath d=%22M23 44.75q1.34-.64 2.17-2.5.9-2.17 1.98-4.86 1.09-2.75 2.18-5.63-.26-.2-.51-.32-.2-.13-.26-.26-1.8-1.98 0-3.39l.7-.7 1.16-1.15q-2.24-1.03-3.72-3.14-1.4-2.18-1.4-4.74 0-3.52 2.56-6.14 2.62-2.62 6.08-2.62 3.52 0 6.01 2.62 2.56 2.62 2.56 6.14 0 2.56-1.47 4.74-1.4 2.11-3.58 3.14.57.57 1.08 1.15.52.51.77.7 1.6 1.41 0 3.4-.13.12-.38.25-.2.13-.39.32 1.16 2.88 2.18 5.63 1.02 2.69 1.98 4.87.77 1.85 2.12 2.5 1.4.57 4.16 2.23 2.75 1.6 3.26 2.95.45 1.28.58 3.7.19 2.44.32 5.06H14.86q0-2.62.13-5.05t.64-3.71q.39-1.35 3.2-2.95 2.82-1.66 4.16-2.24zm10.74-18.5q0 .13-1.34 1.54l-1.54 1.54q.2.38 1.48 1.73 1.34 1.28 1.6 1.47l1.47-1.47 1.73-1.73q-.39-.2-1.86-1.54zm5.7-8.31q0-2.3-1.6-3.9-1.6-1.67-3.9-1.67-2.24 0-3.9 1.73-1.67 1.66-1.67 3.96 0 2.12 1.34 3.65t3.27 1.73q.9.58 1.85 0 1.92-.2 3.27-1.73 1.34-1.53 1.34-3.77zm-21.06 32.9q-.44 1.98-.44 4.8h32q0-2.31-.45-4.8-.39-.78-2.37-1.67-1.98-.96-4.03-1.92-1.99-1.03-3.14-3.9-.96-1.93-1.92-4.3-.9-2.36-1.79-4.8-.26.13-.38.33-.13.12-.26.12-1.66 2.05-3.4 0-.12 0-.25-.12-.13-.2-.32-.32-.96 2.43-1.92 4.8-.9 2.36-1.79 4.28-1.15 2.88-3.2 3.9-2.05.97-4.03 1.93-1.99.9-2.3 1.66z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M17.95 55.14c0-1.02.4-4 .59-4.35.3-.59.58-.76 3.89-2.39 2.48-1.23 3.27-1.7 3.88-2.37.92-1 2.15-3.54 4.02-8.29l1.33-3.4.46.42c1.37 1.25 1.98 1.31 3.2.3l.89-.73.22.59c1.24 3.3 2.8 7.07 3.53 8.56 1.3 2.67 1.83 3.14 5.53 4.94 1.7.83 3.28 1.7 3.5 1.95.44.46.63 1.36.86 3.91l.12 1.32H17.95zm14.42-24.2a8.62 8.62 0 0 1-1.33-1.6c0-.11.6-.8 1.34-1.54 1.55-1.54 1.28-1.57 3.34.37l1.28 1.2-1.49 1.48c-.81.81-1.55 1.48-1.64 1.48-.1 0-.76-.63-1.5-1.4zm-.22-7.74c-3.73-1.15-4.9-5.87-2.2-8.94a4.7 4.7 0 0 1 3.66-1.72c1.76-.1 2.77.24 3.93 1.3a5.66 5.66 0 0 1 .86 7.34 5.28 5.28 0 0 1-3.22 2.16c-1.22.32-1.6.3-3.03-.14z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath d=%22m23.91 54.38.32 2.88q1.16 0 2.18-.06 1.02-.06 2.11-.2v-2.94q-2.05 0-4.6.32zm19.97 0q-.96 0-2.11-.12-1.09-.2-1.98-.2v3.08q.96 0 1.85.06.9.06 1.99.06zm-23.68-4.6q.7-.39 1.73-.77 1.02-.45 2.75-.96 2.3-.77 4.35-1.15 2.12-.39 3.65-.52V35Q31.4 29.04 30 23.8q-1.4-5.25-3.9-6.01-2.88-.77-6.72-.45-3.78.32-5 .9-1.34.7-3.38 2.62Q9 22.7 8.23 25q-.83 2.43-1.08 4.35l-.32 3.14q0 2.5 1.08 7.1.64 2.3 1.73 3.97 1.15 1.66 3.33 3.39 1.92 1.66 3.71 2.18 1.8.44 3.52.64zm13.9-21.44q.58-2.7 1.22-5.12.7-2.5 1.66-4.42 0-.64-.58-1.8-.5-.95-1.15-1.78-.57-.84-1.02-1.8-1.6 2.18-2.3 3.59-.58 1.02-.71 1.47-.06.45-.06.83 1.72 3.52 2.94 9.03zm16.26 24.19q.5 5.5 1.28 12.16h-35.6q.39-3.33.7-6.47.33-3.13.71-5.7-1.54-.31-3.07-.95-1.54-.7-3.4-2.11-2.55-2.12-3.9-4.16-1.34-2.05-2.11-4.93-1.22-4.74-1.22-8 .07-1.35.32-3.52.32-2.18 1.41-4.93.9-2.88 3.46-5.25t4.22-3.07q1.47-.77 5.95-1.22 4.48-.44 7.75.45 1.53.64 1.98 1.22.77-1.35 1.8-2.82l2.04-2.88V9.26h-2.94V6.2h2.94V3.31h2.95V6.2h2.75v3.07h-2.75v1.1q.9 1.34 1.85 2.8 1.03 1.42 1.8 2.76.44-.32.89-.58.51-.25.96-.5 3.33-.9 7.74-.46 4.48.45 6.15 1.22 1.47.7 4.03 3.07 2.56 2.37 3.65 5.25.9 2.75 1.21 4.93.32 2.17.32 3.52.13 3.2-1.21 8-.77 2.88-2.11 4.93-1.28 2.04-3.9 4.16-1.93 1.53-3.53 2.24-1.6.64-3.13.83zm-16.13-.32-1.73 1.73-1.47 1.53q.19.39 1.47 1.73 1.34 1.28 1.73 1.47.06-.19 1.34-1.47l1.73-1.73q-.38-.19-1.73-1.53-1.28-1.35-1.34-1.73zm1.21-5.83q1.6 0 4.16.26t3.84.83l2.05 1.03q1.15.57 2.3 1.28 1.73-.13 3.46-.58 1.8-.51 3.9-2.24 3.91-3.26 4.93-7.36 1.22-4.54 1.1-7.1 0-1.22-.26-3.14-.26-1.92-1.16-4.35-.83-2.3-2.88-4.16-2.04-1.92-3.26-2.63-1.34-.57-5-.9-3.64-.31-6.52.46-2.56.76-3.97 6.01-1.34 5.25-2.69 11.2zm-16.32-.19-2.17-.9q-2.11-.89-3.01-2.3-1.34-1.28-2.62-4.16-1.1-2.43-1.22-6.33-.26-2.05.51-4.74.77-2.69 1.6-3.84 1.92-2.69 5.89-3.4 2.05-.18 4.16-.06 2.18.07 2.88.84.38.44 1.02 2.5t1.28 4.47q.7 2.43 1.22 4.74.51 2.24.64 3.07.32 1.73.26 3.71-.07 1.92-.07 3.52zm30.02.32-10.3-2.75q0-1.6-.13-3.52-.07-1.98.32-3.9.06-.84.57-3.08t1.16-4.6q.64-2.44 1.28-4.42.7-2.05 1.08-2.5.7-.76 2.88-.9 2.24-.18 4.23.14 4.1.5 5.82 3.39.77 1.15 1.54 3.84.83 2.69.64 4.8-.2 3.84-1.22 6.14-.51 1.41-1.34 2.56-.83 1.15-1.28 1.73-.96 1.28-3.14 2.18zM22.06 58.03l-.58-3.07-2.17.64-.2 3.4zm23.55-.13 3.07.9-.32-3.2-2.11-.64z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M19.28 57.29v-1.63l1.04-.29a5.72 5.72 0 0 1 1.09-.24c.14.13.54 2.76.44 2.86-.06.06-.57.26-1.12.43l-1.23.4c-.17.07-.22-.31-.22-1.53zm5.01-.26c-.04-.14-.12-.75-.19-1.36-.09-.89-.05-1.14.16-1.22.14-.06 1.17-.16 2.28-.23l2.01-.13v1.38a4.4 4.4 0 0 1-.14 1.47c-.08.05-1.02.14-2.09.22-1.58.1-1.96.08-2.02-.13zm8.2.01-1.45-1.47 1.52-1.53c.84-.84 1.57-1.51 1.62-1.49.05.03.75.73 1.54 1.55l1.45 1.51-1.44 1.45c-.8.8-1.53 1.45-1.63 1.45-.1 0-.83-.66-1.62-1.47zm8.1.06-.77-.07V54.1l1.32.12a46.88 46.88 0 0 1 2.02.24c.7.1.7.11.6.76-.07.36-.12.96-.12 1.34v.68l-1.14-.03a38.58 38.58 0 0 1-1.9-.1zm6.36 1.18c-.95-.27-1.3-.45-1.23-.62.05-.14.2-.78.31-1.43.17-.93.28-1.16.5-1.1 1.8.51 1.84.53 1.84.93 0 .22.05.9.12 1.51.06.63.04 1.11-.05 1.1-.09 0-.76-.18-1.49-.39zM46 48.75c-2.91-1.64-4.43-2.06-8.59-2.34l-1.95-.13V35.1l.82-3.52c2.3-9.8 3.24-12.28 5.08-13.32.9-.52 1.25-.6 3.4-.83 1.88-.2 5.16.02 7.33.47 1.62.33 2.75 1.08 4.92 3.25 1.84 1.85 2.49 2.97 3.25 5.66a22.9 22.9 0 0 1-.53 13.65 13.48 13.48 0 0 1-3.4 5.28c-2.16 2.15-3.75 3.12-5.82 3.58-2.44.54-2.6.52-4.5-.56zm4.82-2.88a8.78 8.78 0 0 0 4.23-3.25c1.9-2.5 2.78-4.93 3.14-8.6.24-2.42.06-4.01-.74-6.45-.94-2.89-2.07-4.56-3.72-5.53-1.71-1-5.73-1.58-8.24-1.19-1.7.27-2.3.59-2.73 1.43-.9 1.75-3.2 10.23-3.76 13.78-.2 1.25-.27 2.75-.23 4.8l.05 2.97 4.91 1.33c2.7.73 5.07 1.33 5.27 1.33s1.02-.27 1.81-.62zM18.19 49.4c-.95-.2-2.14-.55-2.64-.78-1.94-.9-5-3.7-6.16-5.63-1.14-1.9-2.18-5.88-2.41-9.2-.19-2.78.7-7.75 1.78-9.89.87-1.75 3.23-4.17 5.18-5.32 2.01-1.2 8.77-1.64 11.93-.78.4.1 1.08.52 1.52.93 1.52 1.4 2.34 3.7 4.24 11.92l.92 3.97v11.7l-.68.1c-4.1.62-8.75 1.88-10.81 2.93a4.8 4.8 0 0 1-1 .42c-.08 0-.92-.18-1.87-.37zm6.24-4.6c2.69-.75 4.93-1.4 4.99-1.46.21-.21.26-4.83.06-6.29-.42-3.1-2.9-12.68-3.86-14.92a2.11 2.11 0 0 0-1.23-1.3c-.76-.37-1.1-.41-3.48-.41-2.9 0-3.99.2-5.76 1.03-2.35 1.1-3.76 3.12-4.7 6.79-.44 1.67-.47 2.02-.37 4.36.06 1.6.24 3.11.47 4.06.68 2.82 3.13 6.8 4.83 7.86.98.6 3.74 1.79 3.97 1.7.1-.04 2.4-.68 5.08-1.43zm9.5-17.38a49.49 49.49 0 0 0-1.95-6.27c-.53-1.32-.7-2-.65-2.46.1-.7 1.22-2.83 2.24-4.24l.64-.88.6.97 1.14 1.88c1.05 1.7 1.08 2.04.35 3.85a54.72 54.72 0 0 0-1.97 6.7l-.26 1.08z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 -2.0 68 68%22%3E%3Cpath d=%22m21.09 51.31-1.67 5.19 3.65-3.33zm25.09.13L44 53.3l3.26 2.75zM28 50.67l-2.62.64.32 2.88 2.62-.45zm14.14.64-2.56-.64-.5 3.07 2.49.32zM19.1 48.05 8.35 23.73q-1.4.38-2.3-.58l-1.41-1.53q-1.92-1.67 0-3.59l1.4-1.34q1.67-2.05 3.53 0l1.53 1.34q1.54 1.92 0 3.59l-.76.76 10.94 8.58-.96-13.82q-.83-.2-1.4-.77l-1.35-1.41q-1.99-1.8 0-3.52L18.9 9.9q1.8-1.66 3.59 0l1.53 1.54q1.54 1.73 0 3.52l-1.53 1.4 6.59 11.27L32.6 14.7l-.58-.32-1.4-1.53q-1.73-1.8 0-3.59l1.4-1.53q1.73-1.41 3.52 0l1.41 1.53q1.98 1.8 0 3.59l-1.4 1.53-.65.32 3.59 13.06 6.59-11.07-1.54-1.54q-1.53-1.85 0-3.71l1.41-1.4q1.86-1.54 3.65 0l1.4 1.4q1.86 1.86 0 3.71l-1.4 1.35-1.22.76-.77 13.57 11.27-9.98-.96-.77q-1.54-1.86 0-3.71l1.53-1.41q1.8-1.66 3.59 0l1.34 1.4q1.86 1.86 0 3.72l-1.34 1.34q-1.09 1.1-2.37.77l-11.2 26.3 3.07 12.49H14.62zm14.79.64-3.27 3.2 3.27 3.26 3.07-3.26zm-13.57-5.06 1.22 2.56q2.68-1.21 5.82-2.3 3.2-1.09 6.66-1.09 3.32 0 5.82.83t6.34 2.75l1.08-2.62q-3.45-1.92-6.52-2.88-3.08-.96-6.72-.96-3.59 0-7.3.96-3.65.9-6.4 2.75zM7.72 18.67 6.3 19.9l1.41 1.4 1.22-1.4zm13.05-6.78-1.35 1.28 1.35 1.34 1.28-1.34zm13.12-2.3-1.54 1.53 1.54 1.54 1.34-1.54zm12.93 2.3-1.41 1.4 1.4 1.41 1.22-1.4zm13.37 4.93-1.28 1.28 1.28 1.34 1.28-1.34z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M19.75 55.86c0-.07.3-1.08.66-2.26l.66-2.14.98.84.97.84-1.5 1.4c-1.4 1.33-1.77 1.6-1.77 1.32zm5.91-2.73-.15-1.41c-.03-.3.18-.4 1.19-.66l1.22-.31.1.84.19 1.5.08.66-1.03.13c-.56.07-1.13.17-1.25.22-.16.06-.27-.23-.35-.97zm6.57.34-1.6-1.62 1.57-1.44a11 11 0 0 1 1.76-1.43c.1 0 .8.67 1.55 1.49l1.36 1.49-1.51 1.56-1.52 1.56zm7.65.37c-.77-.08-.77-.07-.47-1.85l.2-1.24 1.2.31c.82.21 1.2.4 1.18.57a35.11 35.11 0 0 1-.24 1.3c-.23 1.15-.12 1.1-1.87.91zm5.63.71-1.42-1.21.96-.85c.53-.47 1-.81 1.06-.76.15.15 1.05 4.07.93 4.05-.06 0-.75-.56-1.53-1.23zm-1.49-9.22c-4.42-2.15-8.09-2.9-11.98-2.46-2.57.29-4.2.73-7.63 2.1l-2.89 1.14-.53-1.17c-.4-.89-.48-1.24-.33-1.42.31-.38 3.03-1.66 4.6-2.17a29.02 29.02 0 0 1 12.1-1.12c2.7.4 4.49.98 7.43 2.39 2.29 1.1 2.4 1.17 2.25 1.57-.35.9-.92 2.15-.97 2.13-.03 0-.95-.45-2.05-.99zm15.47-26.67-.46-.59.58-.6.57-.59.6.57.58.57-.49.62c-.27.33-.58.6-.7.6s-.42-.26-.67-.58zm-13.38-4.77-.61-.64.62-.65.63-.64.6.65.6.65-.49.63c-.26.35-.54.63-.6.63-.08 0-.4-.28-.75-.63zm-12.96-2.06-.68-.69.74-.72.74-.71.6.72.62.73-.58.66c-.31.37-.61.68-.67.69-.05 0-.4-.3-.77-.68zm-13.08 1.89-.49-.6.59-.57.59-.57.57.57.57.58-.46.6c-.25.34-.55.6-.67.6-.11-.01-.43-.28-.7-.61zm-13.04 6.9-.62-.64.52-.55c.65-.67.8-.68 1.42-.03l.5.51-.6.68-.6.69z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath d=%22m30.29 35.31 3.52 3.71 3.71-3.7-3.71-3.53zm18.17-10.3 2.44 19.52 2.81 6.01v12.93H14.16V50.54l2.62-6.01L19.22 25l-4.93-10.75 3.07-9.73H26v8.32h3.71V4.53h8.77v8.32h3.65V4.53h8.64l3.07 9.73zM19.1 46.38l-1.41 3.08H50l-1.54-3.08zM46.3 23.6H21.7l.58 2.94h23.68z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M22.13 25.46c-.1-.57-.24-1.23-.29-1.45l-.08-.41h24.37v.61c0 .34-.06 1-.12 1.45l-.12.85H22.33zM32 37.08l-1.67-1.78 1.71-1.7 1.71-1.71.5.44a73.02 73.02 0 0 1 1.83 1.71l1.32 1.28-1.77 1.78a24.1 24.1 0 0 1-1.86 1.76c-.06 0-.85-.8-1.77-1.78zM18.2 48.46l.66-1.45.23-.5h29.4l.73 1.45.73 1.46H17.77z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 viewBox=%220 0 68 68%22%3E%3Cdefs%3E%3Cpath id=%22a%22 d=%22M27.98 55.47q-2.75-.06-4.54-.06-1.8-.07-1.92-.26-.83-.77-.9-1.85-.06-1.1.77-1.8.07-.12 1.09-1.53 1.02-1.47 2.43-3.59-2.43-3.07-4.6-6.01-2.18-3.01-2.63-3.52-1.4-1.22-1.4-3.01 0-1.86 1.4-3.26.38-.39 2.3-2.95 1.99-2.56 4.23-5.57 2.3-3 4.22-5.56 1.99-2.63 2.24-2.88.26-.26.39-.45-.7-.77-1.48-1.47-.7-.7-.83-.96-2.05-1.8 0-3.59.2-.32 1.73-1.79 1.6-1.47 1.86-1.86 1.72-1.66 3.32 0l1.86 1.86q1.47 1.47 1.86 1.8 1.79 1.78 0 3.58l-1.03.96q-.77.7-1.4 1.47.06 0 .31.19.45.51 2.37 3.14 1.92 2.56 4.1 5.56 2.24 3.01 4.1 5.57 1.91 2.56 2.3 2.95 1.34 1.4 1.34 3.26 0 1.8-1.34 3-.45.52-2.56 3.4-2.05 2.82-4.35 5.89 1.6 2.11 2.68 3.71 1.16 1.54 1.35 1.66 1.73 1.8-.2 3.65-.12.2-2.1.26-1.93 0-4.8.06-.2 1.41-.13 1.41.32.32 2.17.32l4.1-.13q2.24-.07 4.29-.06 2.1-.07 2.94.19 2.11.7 2.94 3.26.84 2.5 1.41 4.87H40.78q-1.34 0-2.56-.07-1.15-.12-2.36-.7-1.16-.58-1.48-.83-.32-.32-.38-.7 0 .38-.26.7-.25.25-1.4.83-1.35.58-2.56.7-1.22.07-2.37.07H10.13q.7-2.37 1.66-4.87 1.03-2.56 3.14-3.26.77-.26 2.75-.2 2.05 0 4.16.07l3.9.13q1.8 0 2.12-.32.32-.2.19-.38-.07-.26-.07-1.03zm7.56-20.41h3.52V32.1h-3.52v-4.29h-2.95v4.3h-3.52v2.94h3.52v11.07h2.95zM34 5.62q-.26.38-1.6 1.72l-1.47 1.54q.19.38 1.47 1.73 1.34 1.28 1.6 1.47l1.54-1.47 1.72-1.73q-.38-.2-1.72-1.54Q34.19 6 34 5.62zm-2.94 49.72h5.88l.58-2.5h-7.04z%22/%3E%3Cpath id=%22b%22 fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M30.89 54.44c-.4-1.75-.67-1.62 3.17-1.62h3.39l-.12.58c-.06.32-.2.9-.3 1.27l-.19.7H31.1zm1.78-13.9V35h-3.45v-2.9h3.45v-4.2h2.73v4.18h3.64V35l-1.77.05-1.78.05-.05 5.5-.04 5.5h-2.73v-5.54zm-.25-30.08L31 9l.91-1.04c.5-.58 1.19-1.3 1.52-1.6l.6-.55 1.58 1.6 1.57 1.6-1.54 1.4c-.85.78-1.6 1.43-1.67 1.46-.08.03-.77-.6-1.55-1.4z%22/%3E%3C/defs%3E%3Cuse xlink:href=%22%23a%22/%3E%3Cuse xlink:href=%22%23b%22 fill-rule=%22evenodd%22/%3E%3Cuse xlink:href=%22%23a%22/%3E%3Cuse xlink:href=%22%23b%22 fill-rule=%22evenodd%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 68 68%22%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 d=%22M42 50.73c-.07 1.97.34 3.9.73 5.81l.36 1.64c.06.06.14.1.18.18.03.06-.05.16 0 .18.11.06.24 0 .37 0h7.63c.3 0 .61.03.91 0 .37-.03.73-.13 1.1-.18.11-.01.24.02.36 0 .24-.04.48-.14.72-.18.25-.03 1.09.05 1.28 0 .06-.01-.06-.18 0-.18s0 .24 0 .18v-2.36c0-.06.03-.13 0-.19-.1-.14-.27-.22-.37-.36-.03-.05 0-.12 0-.18-.12-.12-.27-.22-.36-.36-.03-.05 0-.12 0-.19v-1.09c0-.12.03-.24 0-.36-.03-.13-.15-.23-.18-.36-.03-.12.05-.26 0-.37-.03-.05-.19.06-.19 0 0-.05.6.12 0-.18-.05-.03-.13.04-.18 0-.04-.04-.06-.18 0-.18.12 0 .67.97 0-.37-.04-.07-.24-.12-.18-.18s.18.27.18.18a.97.97 0 0 0-.18-.54c-.03-.05-.12 0-.18 0h-.18c.12 0 .47.05.36 0-.22-.11-.49-.1-.73-.18l-.36-.18c-.55-.06-1.1-.1-1.64-.19-.19-.03-.35-.16-.54-.18-.36-.04-.73 0-1.1 0H48c-.18 0-.37.03-.55 0-1.78-.25.46-.18-1.63-.18-.93 0 .36.02-1.46-.18-.18-.02-.36 0-.54 0-.06 0-.13-.03-.18 0-.2.1-.35.27-.55.36-.35.16-.9.03-1.09.37-.16.28.31.58.36.9.02.09-.18.1-.18.19 0 .06.12 0 .18 0%22/%3E%3Cpath d=%22M24.85 39.73q-.39.7.19 1.28.58.57-.2 1.47-.7 1.02-2.62 2.75-1.85 1.73-3.2 2.3-2.17 1.29-4.48.2-1.15-.58-2.88-2.24-1.66-1.67-2.3-2.69-.77-1.02-.58-1.73.2-.7.07-1.66 0-.77-.39-1.09-.38-.38.39-2.5.77-1.92 3.26-6.33 2.5-4.42 3.2-6.53.7-1.92-.25-1.73-.9.13-.52-.9.39-1.15 1.41-3.07 1.03-1.98 1.86-2.94.9-.9 1.85-.7 1.03.12 1.8-1.16.7-1.21 1.34-3.77.7-2.56 1.47-4.67.96 1.98 2.05 3.77 1.09 1.8 2.24 2.24 2.88-1.09 6.91-.51 5.76.77 8.51 2.3 2.76 1.48 6.6 6.21 1.47 1.86 2.36 3.97.9 2.05 1.6 4.48.7 2.43 1.1 5.57.44 3.13.63 5.63 0 2.69-.19 5-.13 2.23 0 4.54v3.77q0 1.41.51 3.78.32 1.98 1.28 4.41.96 2.44 1.8 4.8h-40.2q-.83-1.66-.57-3.64 0-1.28.32-3.14t1.02-3.52q.58-1.47 1.54-2.82.96-1.4 2.04-2.68 2.05-3.2 3.84-5.12 1.54-1.73 3.33-3.27 1.86-1.6 3.4-3.45 1.27-1.86 1.72-3.4.32-1.02-.06-2.75-.39-1.79-.7-1.73-.26.13-1.03 2.37t-1.47 3.01q-.7 1.09-1.54 1.54-.77.38-1.34.76-.77.39-1.22.39-.38 0-.96.38-.7.51-1.66 1.35-.9.76-1.28 1.47zm-2.3 16.25q1.6.39 4.92.39 3.4-.07 4.48-.07l.13-3.2q-.96 0-3.97-.12-2.94-.13-4.29-.39zm21.56.52q2.05-.13 4.87-.39 2.88-.25 4.99-.38l-.64-3.27q-1.73.39-5.06.58-3.33.13-4.35.2zm-6.14-5.12-3.4 3.39 3.4 3.52 3.39-3.52zm-15.23-28.3q-.77-.12-2.5-.12-.45 0-.9.51-.38.51-.44.83v.9q.06.64.44.96.13.13 1.35.13.38-.07.96-.32.57-.32 1.09-.58 1.34-.7 1.34-1.21.13-.7-.32-.77-.38-.07-1.02-.32zm-12.16 13.7q1.08 1.1 1.08 2.3.07.26-.12 1.29-.2.96-.2 1.02.2.26 1.35-1.09 1.21-1.34 1.09-1.85 0-.39-1.28-1.09-1.28-.7-1.92-.58zm19.2-25.08q3.84.57 8 1.72 4.16 1.1 6.9 3.84 2.5 2.88 3.4 4.23.9 1.28 2.05 3.9.9 3.01 1.34 6.34.51 3.33.77 6.27.2 2.5.2 4.93 0 2.37 1.53 6.78-.2-3.26 0-6.01.25-2.82.13-5.83-.13-3.33-.84-7.49T51.8 24.3q-.96-2.36-2.56-4.41-1.53-2.05-3.45-4.16-1.73-1.86-3.78-2.69-2.05-.9-5.31-1.47-2.18-.45-3.65-.2-1.4.26-3.26.33z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22M23.78 56.16a3.2 3.2 0 0 1-.97-.24 5.6 5.6 0 0 1 .47-1.69l.6-1.57.57.11c.48.09 6.13.45 7.23.46.27 0 .32.19.32 1.26 0 1.98.3 1.84-3.8 1.81a60.94 60.94 0 0 1-4.42-.14zm12.5.35-1.64-1.64 1.68-1.68L38 51.51l1.63 1.63 1.63 1.62-1.51 1.64a17.3 17.3 0 0 1-1.68 1.69c-.1.03-.9-.68-1.8-1.58zm10.76-.3c.13-.05.37-.06.55 0s.07.08-.23.08c-.3 0-.44-.03-.32-.08zm6.16-9.16c-.43-1.57-.55-2.48-.68-5.18-.35-6.94-1.39-13.84-2.52-16.78a21.87 21.87 0 0 0-3.55-5.77c-2.28-2.81-3.94-4.14-6.49-5.19a52.99 52.99 0 0 0-7.56-2c-.73-.12-1.25-.3-1.17-.38s1.05-.2 2.15-.26c2.23-.12 4.37.22 7.42 1.2 2.82.91 4.37 2.18 7.58 6.22 2.7 3.38 3.77 5.8 4.6 10.33.99 5.37 1.19 9.44.86 17.09l-.11 2.63zM19.64 26.17c-.81-.23-.96-1.72-.26-2.56.43-.51.56-.56 1.59-.55 1.67 0 2.92.37 3 .88.09.6-.26.9-1.87 1.69-1.47.71-1.67.76-2.46.54zm-8.06 13.7c.09-1.53.06-1.68-.37-2.32-.38-.54-.41-.68-.18-.68.4 0 2.45 1.12 2.55 1.4.19.49-.16 1.16-1.1 2.19l-.98 1.05.09-1.64z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='chess7'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 -3.0 68 68%22%3E%3Cpath d=%22M27.8 29.33q0-1.09.76-1.67.45-.19 1.86-1.79-2.24-1.02-3.72-3.07-1.4-2.11-1.4-4.8 0-3.58 2.56-6.08 2.62-2.56 6.08-2.56 3.52 0 6.01 2.56 2.56 2.5 2.56 6.08 0 2.69-1.47 4.8-1.4 2.05-3.58 3.07 1.34 1.6 1.85 1.8.64.57.64 1.66t-.64 1.73l-.77.76q1.16 2.82 2.18 5.5 1.02 2.7 1.98 4.8.77 1.93 2.12 2.5l1.4.58 2.76 1.66q2.75 1.67 3.26 3.01.45 1.28.58 3.71.19 2.37.32 5.06H14.86q0-2.69.13-5.06.13-2.43.64-3.7.39-1.35 3.2-3.02l2.82-1.66 1.34-.58q1.35-.57 2.18-2.5.9-2.1 1.98-4.8 1.09-2.68 2.18-5.5l-.77-.76q-.77-.64-.77-1.73zm5.94-3.01q-2.68 2.88-2.88 3.07.2.26 1.48 1.6 1.34 1.28 1.6 1.6.19-.32 1.47-1.6 1.34-1.34 1.73-1.6-.39-.19-1.86-1.6-1.4-1.47-1.54-1.47z%22/%3E%3Cpath fill=%22%23fff%22 fill-rule=%22evenodd%22 d=%22m32.42 30.93-1.44-1.51 1.27-1.4a12.7 12.7 0 0 1 1.45-1.46c.1-.03.88.61 1.74 1.44l1.54 1.5-1.56 1.48-1.57 1.47z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* dubrovny */
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%227.912%22 x2=%2221.068%22 y1=%22517.06%22 y2=%22517.06%22 gradientTransform=%22matrix(.80851 0 0 1.0928 13.286 -555.45)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-1.147%22 x2=%2230.124%22 y1=%22533.13%22 y2=%22533.13%22 gradientTransform=%22translate(10.511 -506.91)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%221.063%22 x2=%2227.915%22 y1=%22547.33%22 y2=%22547.33%22 gradientTransform=%22translate(10.511 -506.91)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fbf6dc%22/%3E%3Cstop offset=%221%22 stop-color=%22%23aa9445%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M22.968 12.421h5.472m-3.437-9.229s-3.762 4.102-3.79 6.018a3.787 3.787 0 0 0 1.755 3.21h-1.405c-.756 0-1.364.793-1.364 1.776 0 .984.608 1.775 1.364 1.775h6.877c.755 0 1.364-.791 1.364-1.775 0-.983-.609-1.775-1.364-1.775h-1.403a3.788 3.788 0 0 0 1.755-3.211c-.027-1.916-3.79-6.018-3.79-6.018z%22/%3E%3Cpath d=%22M25.003 3.192s.524-.633 0 0c.066 3.234 4.215 6.946.186 9.943h1.402c.756 0 1.364.078 1.364 1.061 0 .984-.608 1.775-1.364 1.775h-1.564c-.297.107-.616.19-.948.246.297.05.606.08.924.08.673 0 1.31-.124 1.873-.326h1.564c.756 0 1.364-.791 1.364-1.775 0-.983-.617-1.925-1.364-1.775l-1.402.282c1.09-.688 1.753-2.175 1.754-3.493-.027-1.916-3.789-6.018-3.789-6.018z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M39.886 20.265C38.504 17.129 32.506 14.93 25 14.93c-7.505 0-13.504 2.199-14.886 5.335-1.382 3.136 7.614 17.25 7.614 17.25h14.543s8.997-14.114 7.615-17.25z%22/%3E%3Cpath d=%22M27.739 14.984c14.749 4.252 2.27 21.326-4.162 22.462l8.694.07s8.997-15.193 7.615-18.33c-1.04-2.7-6.29-4.03-12.147-4.202z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.97 15.595c-3.885-.253-14.106 1.842-13.321 6.24.817 3.728 2.918 7.08 4.672 10.341-5.153-10.335-5.764-14.834 8.649-16.58zM25.106 4.052c-1.728 1.838-2.562 3.24-3.052 4.234-.402.816-.33 1.15-.231 1.61.17.793.742 1.419.913 1.547-.825-.745-.854-3.977 2.365-7.414m-4.34 10.526s-.193-1.374.76-1.432c.953-.059 2.993 0 2.993 0s-3.127-.176-3.753 1.432z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fbf6dc%22/%3E%3Cstop offset=%221%22 stop-color=%22%23aa9445%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22362.07%22 x2=%22371.04%22 y1=%22-82.569%22 y2=%22-82.569%22 gradientTransform=%22matrix(.87923 0 0 .85197 -297.28 78.005)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-491.54%22 x2=%22-471.01%22 y1=%22249.26%22 y2=%22249.26%22 gradientTransform=%22matrix(1.0387 0 0 .99256 524.95 -231.03)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-1890.6%22 x2=%22-1767.4%22 y1=%221054.4%22 y2=%221054.4%22 gradientTransform=%22matrix(.29405 0 0 .26262 562.83 -250.81)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22-20.75%22 x2=%226.102%22 y1=%22544.53%22 y2=%22544.53%22 gradientTransform=%22translate(32.324 -504.1)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.002 4.677a2.981 3.417 90 0 0-3.417 2.982 2.981 3.417 90 0 0 3.417 2.98 2.981 3.417 90 0 0 3.417-2.98 2.981 3.417 90 0 0-3.417-2.982z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.002 10.639c-6.8 0-10.027 6.96-10.027 11.468h20.13c0-4.508-3.303-11.468-10.103-11.468z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M16.397 17.927c1.044-2.713 3.664-6.797 8.65-6.697-1.13-.17-7.652 3.63-8.65 6.697z%22/%3E%3Cpath d=%22M24.874 4.59s.048.24 0 0c2.591 1.137 1.924 4.305.636 6.017 7.684 3.833 3.915 11.115 3.914 11.114h2.823c1.793 1.568 5.811-5.135-5.61-11.115 3.926-3.048.464-6.191-1.763-6.017z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 14.657c-3.446 1.605-4.22 3.87-5.534 6.806-5.438-4.847-11.9-4.084-11.9-4.084 10.546 11.903 9.202 21.195 9.202 21.195h16.464s-1.344-9.293 9.203-21.195c0 0-6.463-.763-11.902 4.084-1.314-2.937-2.087-5.2-5.533-6.806z%22/%3E%3Cpath fill=%22%23111%22 d=%22M40.566 17.38c-11.59 10.231-7.477 17.283-16.618 21.194h9.285s-1.344-9.293 9.202-21.195c-1.223-.082-.614-.049-1.869 0z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24.796 5.326c-.612-.182-3.779 1.09-2.135 3.638-.406-1.456.437-3.272 2.135-3.638zM8.874 17.955c3.715 4.32 7.138 10.199 8.069 15.288-.368-5.503-3.972-12.467-7.24-15.232-.434-.093-.829-.056-.829-.056zM20.081 21.702c1.027-2.684 5.547-5.794 4.893-6.364-1.68.591-3.991 3.11-4.893 6.364zm10.797.249c1.582.618 3.698-2.728 8.645-3.867-1.227-.105-5.953 1.289-8.645 3.867z%22/%3E%3Cpath fill=%22url(%23e)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.221-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.768 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.15%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-497.73%22 x2=%22-408.14%22 y1=%222174.5%22 y2=%222174.5%22 gradientTransform=%22translate(144.84 -551.98) scale(.26458)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-134.61%22 x2=%22-107.76%22 y1=%22598.91%22 y2=%22598.91%22 gradientTransform=%22translate(146.19 -558.49)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fbf6dc%22/%3E%3Cstop offset=%221%22 stop-color=%22%23aa9445%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-width=%221.2%22 d=%22M14.371 8.674c-1.032 3.17-1.144 10.538 2.59 10.565v2.796h2.673l-3.381 16.01h17.494l-3.381-16.01h2.674v-2.796c3.733-.027 3.621-7.396 2.589-10.565h-4.066v2.736h-3.871V8.674h-5.384v2.736h-3.87V8.674z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23323232%22 stroke-width=%221.2%22 d=%22M16.961 19.239H33.04m-13.406 2.796h11.261%22/%3E%3Cpath fill=%22%23070705%22 d=%22M33.217 8.674c.911 3.222.571 7.135 0 9.92H16.961c4.33.953 11.559-.02 12.303 3.441H16.961c16.079 0 10.825 6.801 12.059 16.01h4.727l-2.852-16.01h2.144v-3.44h1.747c2.622-3.15 1.17-8.233.766-9.922z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M14.821 9.27s-.784 3.408-.375 5.56c-.122-2.734 2.128-5.56 2.128-5.56zm8.078-.025V12l1.182-2.737zm9.269.031v2.753l.761-2.746zM17.575 21.433v-1.596h5.705s-5.598-.157-5.705 1.596z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-657.83%22 x2=%22-639.01%22 y1=%22113.63%22 y2=%22113.63%22 gradientTransform=%22matrix(1.2079 0 0 1.0576 808.26 -95.246)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-49.253%22 x2=%22-22.402%22 y1=%22508.57%22 y2=%22508.57%22 gradientTransform=%22translate(60.827 -468.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fbf6dc%22/%3E%3Cstop offset=%221%22 stop-color=%22%23aa9445%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx=%2224.704%22 cy=%229.252%22 fill=%22%23b82f14%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 rx=%222.513%22 ry=%222.524%22/%3E%3Cpath d=%22M24.704 6.728a2.513 2.524 0 0 0-.88.161 2.513 2.524 0 0 1 1.638 2.363 2.513 2.524 0 0 1-1.634 2.363 2.513 2.524 0 0 0 .876.161 2.513 2.524 0 0 0 2.513-2.524 2.513 2.524 0 0 0-2.513-2.524z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M18.771 38.045s-13.46-25.8 6.23-26.216c19.69.416 6.23 26.216 6.23 26.216z%22/%3E%3Cpath d=%22M24.704 11.829c-.577.012-1.123.048-1.643.103 16.224-.585 9.827 22.905.91 26.113l7.26-.001c8.96-17.768 5.67-25.493-6.527-26.215z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M17.743 34.208s-4.7-15.724 2.723-21.015c-5.489 1.527-7.763 8.612-2.723 21.015z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24.555 7.314c-.468-.096-2.765 1.103-1.085 3.428-.417-1.494-.113-2.685 1.085-3.428z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-523.92%22 x2=%22-501.54%22 y1=%22113.91%22 y2=%22113.91%22 gradientTransform=%22matrix(1.1144 0 0 1.1133 595.36 -102.86)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-69.739%22 x2=%22-42.888%22 y1=%22523.66%22 y2=%22523.66%22 gradientTransform=%22translate(81.39 -483.23)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fbf6dc%22/%3E%3Cstop offset=%221%22 stop-color=%22%23aa9445%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M14.978 8.725s-.126.003-.305.047c-.479.007-.004.879-.482.887l-2.092.309s1.827 3.836 1.827 4.546c0 .71-1.237 1.733-1.237 1.733v12.094l2.564 2.164 4.109-.929-1.582-2.31 5.623-4.9c2.667 12.989-10.494 4.92-9.057 17.005h21.46c.005-.227-1.718-2.69-.787-7.182 3.413-21.949-3.9-24.57-19.998-23.42a18.138 18.138 0 0 0-.043-.042z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%22.8%22 d=%22M14.91 17.622a1.464 1.383 0 0 0 1.464 1.383 1.464 1.383 0 0 0 1.464-1.383 1.464 1.383 0 0 0-1.464-1.383 1.464 1.383 0 0 0-1.464 1.383zm4.756-1.383h-3.292%22 opacity=%22.4%22 paint-order=%22stroke fill markers%22/%3E%3Cellipse cx=%22-14.309%22 cy=%2227.333%22 opacity=%22.4%22 paint-order=%22stroke fill markers%22 rx=%22.787%22 ry=%22.715%22 transform=%22scale(-1 1)%22/%3E%3Cellipse cx=%22-16.346%22 cy=%2217.632%22 opacity=%22.4%22 paint-order=%22stroke fill markers%22 rx=%22.415%22 ry=%22.418%22 transform=%22scale(-1 1)%22/%3E%3Cpath d=%22M35.807 38.823c.065.012-1.708-1.844-.789-6.634C37.52 14.244 34.875 8.466 20.05 8.551a64.995 64.995 0 0 0-5.069.175c.041.043 1.497 1.258 1.86 1.73l.122-.009 2.435 2.63s-1.336-2.106.208-2.474c21.364-3.203 15.787 28.43 2.52 28.154%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e9e0ba%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M17.166 13.338c3.401-3.238-2.489-6.17-2.489-6.17l.086 4.982%22/%3E%3Cpath fill=%22%23f6f1a7%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%22.8%22 d=%22m16.645 30.19.022-2.151%22 opacity=%22.4%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.076 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324-2.404-1.57-10.983-1.619-10.983-1.619z%22/%3E%3Cpath d=%22M25.076 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148 2.405-1.571 10.983-1.62 10.983-1.62s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265-2.405-1.571-10.983-1.619-10.983-1.619z%22 opacity=%22.15%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%22.265%22 d=%22M22.921 14.92c7.739 3.863-5.122 12.364-5.14 12.345l1.58 2.31-4.108.929.339-2.868c.017-.003 12.535-8.583 7.329-12.716%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22m13.301 28.081.008-11.576c1.933-1.653 1.367-2.23-.302-6.04 2.888 4.268 3.04 3.651 1.104 6.478zm1.618 8.935c-.202-6.963 10.544-3.125 9.412-12.978 2.115 9.645-8.713 7.491-9.412 12.978z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fbf6dc%22/%3E%3Cstop offset=%221%22 stop-color=%22%23aa9445%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-144.63%22 x2=%22-118.08%22 y1=%22495%22 y2=%22495%22 gradientTransform=%22matrix(.93894 0 0 .97636 148.33 -447.95)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%221247.8%22 x2=%221265.1%22 y1=%221156.6%22 y2=%221156.6%22 gradientTransform=%22matrix(.99908 0 0 1.0007 -1230.3 -1137)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M22.106 26.305c-.932 11.619-9.006 8.663-9.006 18.094h23.8c0-9.431-8.075-6.475-9.007-18.094H25z%22/%3E%3Cpath d=%22M23.919 26.305c.932 11.619 9.006 8.663 9.006 18.094H36.9c0-9.431-8.075-6.476-9.006-18.094H25z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.748 43.78c.02-7.22 6.582-6.13 8.602-14.757.06 8.34-7.056 7.432-8.602 14.757z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 12.599c-3.423 0-6.198 2.628-6.198 5.87 0 1.95 1.023 3.77 2.728 4.862l-4.574 5.04h16.088l-4.572-5.04c1.704-1.091 2.727-2.913 2.727-4.862 0-3.242-2.775-5.87-6.198-5.87z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M22.907 13.556c-.846.217-5.48 2.941-2.58 7.82 0 0-1.146-4.158 2.58-7.82z%22/%3E%3Cpath d=%22M25 12.6a6.51 6.51 0 0 0-1.503.175c2.696.636 4.693 2.945 4.693 5.695 0 1.95-1.022 3.77-2.726 4.862l4.573 5.035h3.008l-4.574-5.035c1.705-1.091 2.727-2.913 2.727-4.862 0-3.242-2.774-5.87-6.197-5.87z%22 opacity=%22.15%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-634.64%22 x2=%22-621.56%22 y1=%2280.576%22 y2=%2280.576%22 gradientTransform=%22matrix(.80851 0 0 1.0928 532.83 -78.564)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23c23014%22/%3E%3Cstop offset=%221%22 stop-color=%22%23171717%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-643.74%22 x2=%22-612.47%22 y1=%2296.732%22 y2=%2296.732%22 gradientTransform=%22translate(653.11 -70.509)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-14.174%22 x2=%2212.677%22 y1=%22509.16%22 y2=%22509.16%22 gradientTransform=%22translate(25.749 -468.73)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M22.968 12.421h5.472m-3.437-9.229s-3.762 4.102-3.79 6.018a3.787 3.787 0 0 0 1.755 3.21h-1.405c-.756 0-1.364.793-1.364 1.776 0 .984.608 1.775 1.364 1.775h6.877c.755 0 1.364-.791 1.364-1.775 0-.983-.609-1.775-1.364-1.775h-1.403a3.788 3.788 0 0 0 1.755-3.211c-.027-1.916-3.79-6.018-3.79-6.018z%22/%3E%3Cpath d=%22M25.003 3.192s.524-.633 0 0c.066 3.234 4.215 6.946.186 9.943h1.402c.756 0 1.364.078 1.364 1.061 0 .984-.608 1.775-1.364 1.775h-1.564c-.297.107-.616.19-.948.246.297.05.606.08.924.08.673 0 1.31-.124 1.873-.326h1.564c.756 0 1.364-.791 1.364-1.775 0-.983-.617-1.925-1.364-1.775l-1.402.282c1.09-.688 1.753-2.175 1.754-3.493-.027-1.916-3.789-6.018-3.789-6.018z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M39.886 20.265C38.504 17.129 32.506 14.93 25 14.93c-7.505 0-13.504 2.199-14.886 5.335-1.382 3.136 7.614 17.25 7.614 17.25h14.543s8.997-14.114 7.615-17.25z%22/%3E%3Cpath d=%22M27.739 14.984c14.749 4.252 2.27 21.326-4.162 22.462l8.694.07s8.997-15.193 7.615-18.33c-1.04-2.7-6.29-4.03-12.147-4.202z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.97 15.595c-3.885-.253-14.106 1.842-13.321 6.24.817 3.728 2.918 7.08 4.672 10.341-5.153-10.335-5.764-14.834 8.649-16.58zM25.106 4.052c-1.728 1.838-2.562 3.24-3.052 4.234-.402.816-.33 1.15-.231 1.61.17.793.742 1.419.913 1.547-.825-.745-.854-3.977 2.365-7.414m-4.34 10.526s-.193-1.374.76-1.432c.953-.059 2.993 0 2.993 0s-3.127-.176-3.753 1.432z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23c23014%22/%3E%3Cstop offset=%221%22 stop-color=%22%23171717%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22362.07%22 x2=%22371.04%22 y1=%22-82.569%22 y2=%22-82.569%22 gradientTransform=%22matrix(.87923 0 0 .85197 -297.28 78.005)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-491.54%22 x2=%22-471.01%22 y1=%22249.26%22 y2=%22249.26%22 gradientTransform=%22matrix(1.0387 0 0 .99256 524.95 -231.03)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-1890.6%22 x2=%22-1767.4%22 y1=%221054.4%22 y2=%221054.4%22 gradientTransform=%22matrix(.29405 0 0 .26262 562.83 -250.81)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22-20.75%22 x2=%226.102%22 y1=%22544.53%22 y2=%22544.53%22 gradientTransform=%22translate(32.324 -504.1)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.002 4.677a2.981 3.417 90 0 0-3.417 2.982 2.981 3.417 90 0 0 3.417 2.98 2.981 3.417 90 0 0 3.417-2.98 2.981 3.417 90 0 0-3.417-2.982z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.002 10.639c-6.8 0-10.027 6.96-10.027 11.468h20.13c0-4.508-3.303-11.468-10.103-11.468z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M16.397 17.927c1.044-2.713 3.664-6.797 8.65-6.697-1.13-.17-7.652 3.63-8.65 6.697z%22 opacity=%22.25%22/%3E%3Cpath d=%22M24.874 4.59s.048.24 0 0c2.591 1.137 1.924 4.305.636 6.017 7.684 3.833 3.915 11.115 3.914 11.114h2.823c1.793 1.568 5.811-5.135-5.61-11.115 3.926-3.048.464-6.191-1.763-6.017z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 14.657c-3.446 1.605-4.22 3.87-5.534 6.806-5.438-4.847-11.9-4.084-11.9-4.084 10.546 11.903 9.202 21.195 9.202 21.195h16.464s-1.344-9.293 9.203-21.195c0 0-6.463-.763-11.902 4.084-1.314-2.937-2.087-5.2-5.533-6.806z%22/%3E%3Cpath fill=%22%23111%22 d=%22M40.566 17.38c-11.59 10.231-7.477 17.283-16.618 21.194h9.285s-1.344-9.293 9.202-21.195c-1.223-.082-.614-.049-1.869 0z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24.796 5.326c-.612-.182-3.779 1.09-2.135 3.638-.406-1.456.437-3.272 2.135-3.638zM8.874 17.955c3.715 4.32 7.138 10.199 8.069 15.288-.368-5.503-3.972-12.467-7.24-15.232-.434-.093-.829-.056-.829-.056zM20.081 21.702c1.027-2.684 5.547-5.794 4.893-6.364-1.68.591-3.991 3.11-4.893 6.364zm10.797.249c1.582.618 3.698-2.728 8.645-3.867-1.227-.105-5.953 1.289-8.645 3.867z%22 opacity=%22.25%22/%3E%3Cpath fill=%22url(%23e)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.221-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.768 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-497.73%22 x2=%22-408.14%22 y1=%222176.5%22 y2=%222176.5%22 gradientTransform=%22translate(144.84 -551.98) scale(.26458)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23c23014%22/%3E%3Cstop offset=%221%22 stop-color=%22%23171717%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-112.68%22 x2=%22-85.833%22 y1=%22500.27%22 y2=%22500.27%22 gradientTransform=%22translate(124.26 -459.84)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-width=%221.2%22 d=%22M14.371 8.674c-1.032 3.17-1.144 10.538 2.59 10.565v2.796h2.673l-3.381 16.01h17.494l-3.381-16.01h2.674v-2.796c3.733-.027 3.621-7.396 2.589-10.565h-4.066v2.736h-3.871V8.674h-5.384v2.736h-3.87V8.674z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.2%22 d=%22M19.634 22.035h10.732m-13.405-2.796H33.04%22/%3E%3Cpath fill=%22%23070705%22 d=%22M33.217 8.674c.911 3.222.571 7.135 0 9.92H16.961c4.33.953 11.559-.02 12.303 3.441H16.961c16.079 0 10.825 6.801 12.059 16.01h4.727l-2.852-16.01h2.144v-3.44h1.747c2.622-3.15 1.17-8.233.766-9.922z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z%22/%3E%3Cpath d=%22M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M14.821 9.27s-.784 3.408-.375 5.56c-.122-2.734 2.128-5.56 2.128-5.56zm8.078-.025V12l1.182-2.737zm9.269.031v2.753l.761-2.746zM17.575 21.433v-1.596h5.705s-5.598-.157-5.705 1.596z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-657.83%22 x2=%22-639.01%22 y1=%22113.63%22 y2=%22113.63%22 gradientTransform=%22matrix(1.2079 0 0 1.0576 808.26 -95.25)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23c23014%22/%3E%3Cstop offset=%221%22 stop-color=%22%23171717%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-49.25%22 x2=%22-22.4%22 y1=%22508.57%22 y2=%22508.57%22 gradientTransform=%22translate(60.83 -468.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cellipse cx=%2224.7%22 cy=%229.25%22 fill=%22%23cbbc87%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 rx=%222.51%22 ry=%222.52%22/%3E%3Cpath d=%22M24.7 6.73a2.51 2.52 0 0 0-.88.16 2.51 2.52 0 0 1 1.64 2.36 2.51 2.52 0 0 1-1.63 2.36 2.51 2.52 0 0 0 .87.17 2.51 2.52 0 0 0 2.52-2.53 2.51 2.52 0 0 0-2.52-2.52z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M18.77 38.05S5.31 12.25 25 11.83c19.7.42 6.23 26.22 6.23 26.22z%22/%3E%3Cpath d=%22M24.7 11.83c-.57.01-1.12.05-1.64.1 16.23-.58 9.83 22.9.91 26.12h7.26c8.96-17.77 5.67-25.5-6.53-26.22z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-8.58.04-10.98 1.62c-1.63 1.06-2 3.65-1.79 6.32h25.54c.22-2.67-.16-5.26-1.79-6.32C33.58 36.5 25 36.46 25 36.46z%22/%3E%3Cpath d=%22M25 36.46s-8.58.04-10.98 1.62c-1.63 1.06-2 2.59-1.79 5.26h.09c.22-1.38.75-2.53 1.7-3.15C16.42 38.62 25 38.57 25 38.57s8.58.05 10.98 1.62c.95.62 1.48 1.77 1.7 3.15h.09c.22-2.67-.16-4.2-1.79-5.26C33.58 36.5 25 36.46 25 36.46z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M17.74 34.2s-4.68-15.8 2.74-21.09c-5.12 1.02-7.9 8.9-2.74 21.1z%22 opacity=%22.25%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24.54 7.34a1.93 1.93 0 0 0-1.07 3.4c-.42-1.5-.13-2.65 1.07-3.4z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-523.92%22 x2=%22-501.54%22 y1=%22113.91%22 y2=%22113.91%22 gradientTransform=%22matrix(1.1144 0 0 1.1133 595.36 -102.86)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23c23014%22/%3E%3Cstop offset=%221%22 stop-color=%22%23171717%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-69.74%22 x2=%22-42.89%22 y1=%22523.66%22 y2=%22523.66%22 gradientTransform=%22translate(81.39 -483.23)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M14.98 8.72s-.13 0-.3.05c-.49 0-.01.88-.49.89l-2.1.3s1.84 3.84 1.84 4.55-1.24 1.74-1.24 1.74v12.1l2.56 2.15 4.11-.92-1.58-2.31 5.62-4.9c2.67 12.99-10.5 4.92-9.05 17H35.8c0-.23-1.72-2.69-.8-7.18 3.42-21.95-3.9-24.57-19.99-23.42a18.14 18.14 0 0 0-.04-.04z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%22.8%22 d=%22M14.91 17.62A1.46 1.38 0 0 0 16.37 19a1.46 1.38 0 0 0 1.47-1.38 1.46 1.38 0 0 0-1.47-1.38 1.46 1.38 0 0 0-1.46 1.38zm4.76-1.38h-3.3%22 opacity=%22.4%22 paint-order=%22stroke fill markers%22/%3E%3Cellipse cx=%22-14.31%22 cy=%2227.33%22 opacity=%22.4%22 paint-order=%22stroke fill markers%22 rx=%22.79%22 ry=%22.71%22 transform=%22scale(-1 1)%22/%3E%3Cellipse cx=%22-16.35%22 cy=%2217.63%22 opacity=%22.4%22 paint-order=%22stroke fill markers%22 rx=%22.41%22 ry=%22.42%22 transform=%22scale(-1 1)%22/%3E%3Cpath d=%22M35.8 38.82c.07.02-1.7-1.84-.78-6.63 2.5-17.95-.15-23.72-14.97-23.64a65 65 0 0 0-5.07.18c.04.04 1.5 1.25 1.86 1.73l.12-.01 2.44 2.63s-1.34-2.1.2-2.48c21.37-3.2 15.8 28.43 2.53 28.16%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23a32b15%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M17.17 13.34c3.4-3.24-2.5-6.17-2.5-6.17l.1 4.98%22/%3E%3Cpath fill=%22%23f6f1a7%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%22.8%22 d=%22m16.64 30.19.03-2.15%22 opacity=%22.4%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.08 36.46s-8.58.04-10.99 1.62c-1.62 1.06-2 3.65-1.78 6.32h25.53c.22-2.67-.16-5.26-1.78-6.32-2.4-1.57-10.98-1.62-10.98-1.62z%22/%3E%3Cpath d=%22M25.08 36.46s-8.58.04-10.99 1.62c-1.62 1.06-2 2.59-1.78 5.26h.08c.23-1.38.75-2.53 1.7-3.15 2.4-1.57 10.99-1.62 10.99-1.62s8.58.05 10.98 1.62c.95.62 1.47 1.77 1.7 3.15h.08c.22-2.67-.16-4.2-1.78-5.26-2.4-1.57-10.98-1.62-10.98-1.62z%22 opacity=%22.2%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%22.26%22 d=%22M22.92 14.92c7.74 3.86-5.12 12.36-5.14 12.35l1.58 2.3-4.1.93.33-2.86c.02 0 12.54-8.59 7.33-12.72%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.3 28.08V16.51c1.94-1.66 1.38-2.24-.3-6.05 2.9 4.27 3.05 3.66 1.11 6.48zm1.62 8.94c-.2-6.97 10.54-3.13 9.41-12.98 2.12 9.64-8.71 7.49-9.41 12.98z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='dubrovny'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23c23014%22/%3E%3Cstop offset=%221%22 stop-color=%22%23171717%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-144.63%22 x2=%22-118.08%22 y1=%22495%22 y2=%22495%22 gradientTransform=%22matrix(.93894 0 0 .97636 148.33 -447.95)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%221247.8%22 x2=%221265.1%22 y1=%221156.6%22 y2=%221156.6%22 gradientTransform=%22matrix(.99908 0 0 1.0007 -1230.3 -1137)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M22.1 26.3c-.93 11.62-9 8.67-9 18.1h23.8c0-9.43-8.07-6.48-9-18.1H25z%22/%3E%3Cpath d=%22M23.92 26.3c.93 11.62 9 8.67 9 18.1h3.98c0-9.43-8.07-6.48-9-18.1H25z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.75 43.78c.02-7.22 6.58-6.13 8.6-14.76.06 8.34-7.06 7.44-8.6 14.76z%22 opacity=%22.25%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 12.6c-3.42 0-6.2 2.63-6.2 5.87a5.79 5.79 0 0 0 2.73 4.86l-4.57 5.04h16.08l-4.57-5.04a5.8 5.8 0 0 0 2.73-4.86c0-3.24-2.78-5.87-6.2-5.87z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M22.9 13.56c-.84.21-5.47 2.94-2.57 7.82 0 0-1.15-4.16 2.58-7.82z%22 opacity=%22.25%22/%3E%3Cpath d=%22M25 12.6a6.5 6.5 0 0 0-1.5.17c2.7.64 4.69 2.95 4.69 5.7a5.8 5.8 0 0 1-2.73 4.86l4.58 5.04h3l-4.57-5.04a5.79 5.79 0 0 0 2.73-4.86c0-3.24-2.78-5.87-6.2-5.87z%22 opacity=%22.2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* fantasy */
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22king%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}.fill-color{fill:%23fff}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%23fff%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%23bfd3d7%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient2272%22 x1=%22297.55%22 x2=%22368.56%22 y1=%22427.05%22 y2=%22521.22%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient2274%22 x1=%22495.3%22 x2=%22595.97%22 y1=%22448.55%22 y2=%22528.55%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22base-gradient%22 x1=%22221.55%22 x2=%22633.49%22 y1=%22774.94%22 y2=%22859.35%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient2476%22 x1=%22342.53%22 x2=%22549.85%22 y1=%22145.67%22 y2=%22282.34%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22cross-gradient%22 x1=%22379.2%22 x2=%22579.85%22 y1=%22160.25%22 y2=%22286.92%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-base-gradient%22 x1=%22368.47%22 x2=%22494.55%22 y1=%22319.27%22 y2=%22319.27%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22crown-lower-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22background-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bar1and5-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bar3-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient598%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M479.86 63.92c-16.08-.25-32.8 1.82-42.39 6.4-4.04 18.82 16.84 70.79 10.79 88.03-17.08-2.29-78.86-17.22-106.85-8.7-12.51 18.6-7.07 52.47 1.63 68.22 30.92 6.7 78.63-14.24 101.47-12.43 3.63 12-2.39 44.22-8.1 67.46-16.25 5-28.93 15.03-30.34 30.68a290.4 290.4 0 0 0-.93 14.46c-4.83 3.76-8.5 8.14-10.27 13.23a127.09 127.09 0 0 0-2.52 8.1l.12-.48c-18.65-12-43.48-20.62-71.76-22.29-8.44-.5-17.02-.71-25.61-.6C212 317 125.8 347.23 113.56 423.7 95.7 535.27 194.5 601.03 230.06 719.06c112.87-64.37 373.15-60.27 481.3-4.64 28.7-91.23 143.1-197.86 117.51-290.87-23.7-86.13-138.9-111.33-214.92-107.03-30.81 1.75-60.39 11.72-82.6 25.43l.03.21a80.28 80.28 0 0 0-2.28-9.64c-1.86-6.15-5.96-11.31-11.57-15.54.11-4.65.04-9.75-.3-15.44-.86-15.16-14.85-25.1-32.57-29.61-5.36-22.14-11.09-52.46-3.94-66.87 24.04-4.76 81.73 11.63 103.52 4.37 14.22-19.52 12.31-50.07 3.5-67.17-20.45-3.98-80.32 12.3-99.54 13.29.7-16.41 29.55-64.42 30.27-84.18-7.08-4.66-22.53-7.22-38.61-7.46zm113.1 341.52c19.46.15 37.21 1.87 47.75 7.83 49.02 27.73 56.43 121.52-29.14 163.98 2.2-40.6 13.33-89.65 8.67-117.47-3.46-20.68-13.94-39.33-27.28-54.34zm-257.6 3.64c-9.92 13.32-17.45 28.85-20.28 45.76-4.5 26.84 5.74 73.47 8.45 113.17-84.82-55.96-76.27-140.76-2.05-157.72 3.25-.74 8.1-1.08 13.89-1.21zm179.18 16.03c15.47 15.64 40.75 26.97 50.66 51.17 10.9 26.63 12.2 66.1 1.1 100.02-2.22-1.26-4.87-2.7-7.2-4.01-40.07-30.45-41.29-64.79-47.02-112.73-1.5-12.51-.13-23.78 2.46-34.45zm-106.71 6.18c1.93 8.5 3.36 18.06 3.76 29.34 1.35 38.1-12.44 84.08-41.67 113.37-12.07-34.48-10.98-75.34.2-102.67 7.46-18.2 23.55-29.1 37.7-40.04zm64.37 265.1c-79.44-.05-159.75 12.71-211.15 39.39 14.4 45.5 20.16 96.16 20.16 96.16 93.8-29.12 284.35-30.29 376.44 4.24 0 0 9.5-68.23 20.5-102.32-47.93-24.57-126.5-37.43-205.95-37.48zm-2.04 136.49c-65.91-.27-132.11 6.29-168.34 19.24 89.9 10.73 233.52 12.5 334.99 2.41-35.1-14.31-100.73-21.4-166.65-21.65z%22 class=%22base stroke-color%22/%3E%3Cpath id=%22bar2%22 fill=%22url(%23linearGradient2272)%22 d=%22M315.06 626.8c23.73-34.29-7.21-128.77.02-171.97 11.74-70.1 103.85-117.15 116.15-76.5 14.58 48.2-44.63 52.76-61.1 93-15.14 36.97-11.9 98.73 17.56 135.9%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bar4%22 fill=%22url(%23linearGradient2274)%22 d=%22M620.26 631.74c-23.73-34.29 7.22-128.77-.02-171.96-11.74-70.1-103.85-117.16-116.14-76.51-14.59 48.2 44.62 52.76 61.1 93 15.13 36.97 11.9 98.74-17.57 135.9%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cross%22 fill=%22url(%23cross-gradient)%22 d=%22M430.27 294.88c5.38-15.35 19.34-72.58 14.24-89.44-22.84-1.8-70.54 19.14-101.46 12.43-8.71-15.75-14.15-49.62-1.64-68.22 28-8.52 89.77 6.41 106.85 8.7 6.05-17.24-14.83-69.21-10.79-88.03 19.19-9.17 66.84-8.26 81 1.06-.72 19.76-29.57 67.77-30.27 84.18 19.22-.99 79.1-17.27 99.53-13.3 8.82 17.1 10.73 47.66-3.49 67.18-21.79 7.26-79.48-9.13-103.52-4.37-10.13 20.44 5.62 73.2 9.5 88.63%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22top-base%22 fill=%22url(%23top-base-gradient)%22 d=%22M437.63 380.54c-25.32-21.91-36.47-22.1-31.55-76.95 4.2-46.85 108.73-44.43 111.16-2.04 3.05 53.15-14.62 57.14-26.91 82.87%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22background%22 fill=%22url(%23background-gradient)%22 d=%22M296.98 849.69 231.5 648.87l482.2-2.11-76.63 209.08Z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bar1and5%22 fill=%22url(%23bar1and5-gradient)%22 d=%22M586.13 587.45c-29.43-15.9-91.25-54.79-124.8-56.17-25.66-1.06-78.6 33.23-105.83 54.32-117.95-53.7-116.54-156.46-34.02-175.3 13.44-3.08 53.45.47 79.88-.74-8.42-23.25-17.6-39.73-8.89-70.67-18.65-12-43.48-20.61-71.76-22.3-8.44-.5-17.02-.7-25.61-.6-83.1 1.03-169.3 31.25-181.54 107.7-17.86 111.6 80.94 177.35 116.5 295.38 112.87-64.37 373.15-60.27 481.3-4.64 28.7-91.23 143.1-197.86 117.51-290.87-23.7-86.13-138.9-111.33-214.92-107.03-30.81 1.75-60.39 11.72-82.6 25.43 4.3 24.53-4.42 44.58-11.64 65.78 35.14.01 96.8-8.16 121 5.53 53.45 30.23 57.52 139.06-54.58 174.18z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bar3%22 fill=%22url(%23bar3-gradient)%22 d=%22M355.84 585.91c38.88-27.3 57.3-81.51 55.75-125.28-2.24-63.11-36-74.12-16.72-129.36 13.07-37.46 121.94-39.39 134.23 1.26 14.59 48.21-22.86 78.23-17.02 127.03 6.8 56.94 7.23 94.68 73.98 129.52%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22crown-lower%22 fill=%22url(%23crown-lower-gradient)%22 d=%22M678.15 733.86c-95.86-49.13-314.3-51.44-417.1 1.92 14.4 45.5 20.16 96.16 20.16 96.16 93.8-29.13 284.34-30.29 376.44 4.24 0 0 9.5-68.23 20.5-102.32z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22base%22 fill=%22url(%23base-gradient)%22 d=%22M301.82 852.12c89.9 10.73 233.52 12.49 334.99 2.42-70.2-28.64-262.53-28.32-335-2.42z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22jewel-center%22 d=%22M466.59 737.77a17.3 16.48 0 0 0-17.3 16.48 17.3 16.48 0 0 0 17.3 16.48 17.3 16.48 0 0 0 17.3-16.48 17.3 16.48 0 0 0-17.3-16.48z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3Cpath id=%22jewel-right%22 d=%22M562.95 753.43a18.85 12.36 9.22 0 0-15.7 9.54 18.85 12.36 9.22 0 0 16.63 15.22 18.85 12.36 9.22 0 0 20.58-9.18 18.85 12.36 9.22 0 0-16.62-15.22 18.85 12.36 9.22 0 0-4.89-.36z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3Cpath id=%22jewel-left%22 d=%22M367.89 753.35a12.36 19.34 79.73 0 0-5 .48 12.36 19.34 79.73 0 0-16.83 15.6 12.36 19.34 79.73 0 0 21.23 8.72 12.36 19.34 79.73 0 0 16.83-15.6 12.36 19.34 79.73 0 0-16.23-9.2z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22queen%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%23fff%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%23bfd3d7%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair5-grad%22 x1=%22785.14%22 x2=%22840.91%22 y1=%22294.76%22 y2=%22363.09%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair4-grad%22 x1=%22649.86%22 x2=%22711.12%22 y1=%22171.18%22 y2=%22227.75%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair3-grad%22 x1=%22406.01%22 x2=%22470.83%22 y1=%22103.53%22 y2=%22132.99%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair2-grad%22 x1=%22167.87%22 x2=%22234.62%22 y1=%22175%22 y2=%22175%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair1-grad%22 x1=%2223.46%22 x2=%2287.37%22 y1=%22337.86%22 y2=%22315.46%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot1-grad%22 x1=%22339.47%22 x2=%22514.54%22 y1=%22530.61%22 y2=%22571.59%22 gradientTransform=%22translate(-93.77 -199.5) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot3-grad%22 x1=%22339.47%22 x2=%22495.02%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(117.23 -251.5) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot4-grad%22 x1=%22339.47%22 x2=%22487.21%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(325.24 -191.5) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot5-grad%22 x1=%22339.47%22 x2=%22498.93%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(447.85 -65.75) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot2-grad%22 x1=%22339.47%22 x2=%22510.64%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(-219.1 -48.92) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22filler-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22crown-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22fullhair-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22cross-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22base-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M660.68 718.33c10.94-94.74 43.2-209.42 102.48-299.25a39.97 39.97 0 0 0 21.82 6.51c21.68 0 39.25-17.12 39.25-38.24a37.4 37.4 0 0 0-3.3-15.3c21.54.22 36.23 4.98 54.63-.16 2.68-13.83-12.17-18.27-26.41-37.32-13.28 5.43-27.97 11.58-41.09 21.86a39.95 39.95 0 0 0-23.08-7.32c-21.68 0-39.25 17.12-39.25 38.24a37.61 37.61 0 0 0 8.08 23.07c-51.19 44.95-112.72 143.43-151.22 164.96-29.6-62.18 12.69-205.2 44.46-278.64a40.14 40.14 0 0 0 15.32 3.1c21.67 0 39.25-17.13 39.25-38.25a37.6 37.6 0 0 0-7.87-22.95c20.21-5.83 40.26-11.12 51.15-12.64-4.71-5.65-1.7-16-40-37.05l-29.33 36.63a40.18 40.18 0 0 0-13.2-2.23c-21.68 0-39.25 17.12-39.25 38.24a37.78 37.78 0 0 0 11.93 27.33c-50.57 60.7-120.62 188.65-144.45 255.12-35.85-80.11-34.18-218.8-33.46-304.4 20.51-1.42 36.42-18.02 36.47-38.05 0-14.97-8.97-28.56-22.95-34.78 15.35-22.32 32.59-48.04 33.96-64.3-8.56.2-34.94 4.63-50.8 12.54-3.3 8.32-3.13 27.74-1.92 48.47-20.64 1.27-36.73 17.92-36.78 38.07.04 16.37 10.76 30.9 26.67 36.14-28.48 79.66-58.76 208.18-62.36 303.52C310.98 489.94 280 365.6 258.95 288.64c14.35-6.05 23.65-19.82 23.67-35.05 0-19.7-15.36-36.16-35.47-38.06 6.22-12.28 5.72-18.25 9.47-41.01-10.56-11.82-22.9-10.12-50.75-14.21.8 27.72 14.54 39.02 26.06 56.73-16.51 4.9-27.8 19.73-27.81 36.55 0 21.12 17.57 38.24 39.25 38.24.49-.02.98-.06 1.47-.1-3.38 94.8 13.8 225.09 25.7 282.34-41.7-28.13-88.76-82.84-132-137.35a38.04 38.04 0 0 0 18.73-32.54c0-21.12-17.57-38.24-39.25-38.24a40.23 40.23 0 0 0-10.94 1.52c-4.97-22.4-17.15-46.04-26.82-57.68-13.44 2.8-14.58 30.31-18.8 44.43 8.72 9.6 17.51 16.83 25.93 26.19a37.63 37.63 0 0 0-8.61 23.78c0 21.12 17.57 38.24 39.24 38.24a40.25 40.25 0 0 0 7.11-.71c49.02 116.08 72.23 169.42 99.97 276.2m15.22 18.27c12.59 30.53 15.92 93 15.92 93m371.88 4.18s2.31-66.7 14.6-97.08m-368.15 109c88.83 10.6 232.73 14.35 332.96 4.4%22 class=%22base stroke-color%22/%3E%3Cpath id=%22hair5%22 fill=%22url(%23hair5-grad)%22 d=%22M875.56 371.9c2.67-13.84-12.17-18.28-26.41-37.33-19.84 8.12-42.82 17.8-59 40.52 40.86-8.43 59.44 4.06 85.41-3.2z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair4%22 fill=%22url(%23hair4-grad)%22 d=%22M744.9 226c-4.71-5.65-1.7-16-40-37.05l-48.86 61.03c27.41-8.55 70.77-21.46 88.86-23.98z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair3%22 fill=%22url(%23hair3-grad)%22 d=%22M504.62 102.52c-8.56.19-34.94 4.62-50.8 12.53-4.8 12.1-2.31 47.6.13 76.64 15.19-24.37 48.74-66.26 50.67-89.17z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair2%22 fill=%22url(%23hair2-grad)%22 d=%22M256.62 174.52c-10.56-11.81-22.9-10.12-50.75-14.21.97 33.73 21.1 43.13 33.08 69.38 15.19-24.37 12.74-25.26 17.67-55.17z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair1%22 fill=%22url(%23hair1-grad)%22 d=%22M80.26 309.78c-13.44 2.8-14.58 30.31-18.8 44.43 15.06 16.6 30.37 26.05 43.52 51.72 14.06-25.04-8.76-76.94-24.72-96.15z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22filler%22 fill=%22url(%23filler-grad)%22 d=%22m273.94 844.89-50.38-166.21L657.32 680l-49.51 169.68z%22/%3E%3Cpath id=%22crown%22 fill=%22url(%23crown-grad)%22 d=%22M642.71 736.28c-122.2-43.67-283.4-43.92-402.4-.1 12.6 30.53 15.93 93 15.93 93 100.72-28.18 271.95-27.32 371.88 4.18 0 0 2.31-66.7 14.6-97.08z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22fullhair%22 fill=%22url(%23fullhair-grad)%22 d=%22M225.1 717.91c121.85-52.68 312.58-53.52 435.58.41 12.13-105.03 50.35-234.69 122.68-327.7C728.52 412.1 648.88 549.5 602.6 575.4c-36.3-76.27 35.54-274.2 63.48-316.13-46.9 28.21-146.15 203.01-175.47 284.78-42.27-94.44-32.38-271.08-33.39-345.1-31.8 69.55-73.51 229.37-77.78 342.3-81.2-60.86-109.85-225.26-131.5-290.4-11.93 93.8 8.88 257.17 22.62 323.23-52.8-35.6-114.44-113.92-165.61-180.3C170 549.33 193.54 596.45 225.1 717.91z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cross%22 fill=%22url(%23cross-grad)%22 d=%22M437.76 719.78c-19-.1-8.58 14.64-12.32 21.12-8.53 4.95-36.24-3.83-27.32 14.34 6.32 12.87 15.76 6.81 26.37 10.96 5.28 7.27-3.64 29.36 15.04 28.9 15.43-.38 7.02-22.43 10.32-28.37 9.32-6.1 21.56 2.16 27.73-13.45 4.69-11.86-18.51-7.46-27.67-12.57-3.84-5.73 7.62-20.82-12.15-20.93z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22path37%22 fill=%22url(%23base-grad)%22 d=%22M274.57 845.27c88.83 10.6 232.72 14.36 332.96 4.41-56.57-25.28-259.89-25.07-332.96-4.4z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cellipse id=%22hairknot2%22 cx=%22243.37%22 cy=%22253.59%22 fill=%22url(%23hairknot1-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot1%22 cx=%22118.02%22 cy=%22404.18%22 fill=%22url(%23hairknot2-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot3%22 cx=%22454.37%22 cy=%22201.59%22 fill=%22url(%23hairknot3-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot4%22 cx=%22662.37%22 cy=%22261.59%22 fill=%22url(%23hairknot4-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot5%22 cx=%22784.98%22 cy=%22387.35%22 fill=%22url(%23hairknot5-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22rook%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%23fff%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%23bfd3d7%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22upper-back-gradient%22 x1=%227.34%22 x2=%22689.75%22 y1=%22207.66%22 y2=%22274.33%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22body-gradient%22 x1=%22218.5%22 x2=%22906.1%22 y1=%22521.53%22 y2=%22643.2%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22upper-wall-gradient%22 x1=%22153.41%22 x2=%22966.59%22 y1=%22229.07%22 y2=%22400.73%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22tower-base-gradient%22 x1=%22193.15%22 x2=%22878.6%22 y1=%22715.41%22 y2=%22782.07%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M468.91 119.08c-30.68-.25-61.62 1.07-71.44 4.28-3.39 33.65.9 51.98-1.82 81.9a197.55 197.55 0 0 1-30.64 5.88c.91-16.5 1.94-32.57 1.75-43.34-22.83-3.32-53.78-3.52-81.93-1.78.78-7.47 1.46-14.92 1.17-23.98-17.52-4.78-126.91 18.93-143.45 24 5.44 29.7 9.56 57.87 14.83 100.53 33.87 23.54 52.83 31.76 56.45 71.2.84-.15 1.94-.27 2.8-.41 10.96 5.29 29.17 9.84 52.39 13.59-2.92 92.32-3.7 349.07-2.77 386.38-25.97 24.61-77.23 48.98-114.08 56.75-5.47 18-10.86 38.83.25 61.22 134.5 1.22 489.67-.34 618.19-.79 6.93-24.97 12.17-43.03 5.24-62.66-38.9-7.68-85.72-19.26-120.9-54.51-2.94-65.39-2.6-320.4-2.47-385.93 23.79-3.7 44.08-8.3 59.01-13.88l.1-.51c.93.13 2.16.25 3.06.38 6.43-35.55 16.95-41.62 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.62-121.91-35.56-135.13-30.97-4.7 27.77 1.95 51.64-4.24 77.76-4.27.2-8.47.36-12.65.49-.09-14.7.25-30.26 1.6-44.17-24.98-10.7-73.24-11.03-105.79-9.63.23-12.68.64-24.4 1.5-38.05-8.75-3.1-39.15-4.94-69.83-5.2z%22 class=%22base stroke-color%22/%3E%3Cpath id=%22upper-back%22 fill=%22url(%23upper-back-gradient)%22 d=%22M214.93 336.6s3.43-123.38 18.64-164.39c31.78-6.84 94.34-10.06 133.2-4.4.43 25.08-5.74 77.85-1.68 101.98 35.3-1.67 106.84 2.6 152.36-2.5 1.02-29.43-7.67-71.1.94-103.91 28.9-2.17 94.22-4.46 124.64 8.57-4.06 41.98.6 99.69.6 99.69l79.74 2.75-11.88 63.14c-99.56 37.2-434.27 31.67-496.56-.94z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22tower-base%22 fill=%22url(%23tower-base-gradient)%22 d=%22M268.16 735.55c-25.33 25.2-78.25 50.57-115.99 58.53-5.47 18.01-10.86 38.83.26 61.22 134.5 1.22 489.66-.34 618.18-.79 6.93-24.97 12.17-43.03 5.24-62.66-39.57-7.81-87.36-19.6-122.73-56.3%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22lower-line%22 fill=%22none%22 d=%22M212.54 805.16c157.8.07 329.05-5.8 497.82.6%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22body%22 fill=%22url(%23body-gradient)%22 d=%22M270.3 323.45c-3.98 47.2-5.13 375.99-4.03 415.15 58.25-4.91 329-5.22 388.7-.6-3.38-73.7-2.45-413.51-2.45-413.51%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bricks%22 fill=%22none%22 d=%22M372.03 395.73c-20.05-.08-34.74 1.05-60.48 3.84l69.45-3.73a593.8 593.8 0 0 0-8.97-.11zm22.2 60.6c-31.6-.1-52.54 1.48-84 4.07l107.85-3.73c-8.69-.21-16.55-.32-23.85-.35zM357.15 487c.42 15.17-.33-7.04.48 16.8zm114.1 34.8c-82.58 1.18-84.73.62-161.03 5.88zm-55.3 32.72c.37 13.37-.33-7.2.47 16.15zm47.33 35.54c-61.2-.13-106.74 1.73-153.62 6.23l180.85-6.05c-9.43-.1-18.49-.16-27.23-.18zm16.92 20.28.38 14.57c-.01-1.42-.1-4.94-.38-14.57zm.38 14.57c.05 3.25-.28-5.52.36 13.4zm-123.43-3.4c.42 15.17-.33-7.04.48 16.8zm110.81 38.17c-67.75-.19-125.29 2.36-156.87 4.68l227.46-3.47a2419.13 2419.13 0 0 0-70.59-1.2zm-52.28 22.99.38 14.57c-.02-1.42-.1-4.95-.38-14.57zm.38 14.57c.04 3.24-.29-5.52.36 13.4z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22upper-wall%22 fill=%22url(%23upper-wall-gradient)%22 d=%22M142.55 166.03c5.44 29.7 9.56 57.88 14.83 100.54 33.87 23.54 52.83 31.76 56.45 71.2 101.73-18.27 408.56-14.06 500.82-.37 6.43-35.55 16.95-41.63 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.61-121.91-35.56-135.13-30.97-4.7 27.78 1.95 51.64-4.24 77.76-40.06 2-75.75.48-117.2-10.28.2-34.91.15-54.06 1.87-81.08-17.5-6.22-121.64-7.32-141.28-.91-3.39 33.65.9 51.98-1.82 81.9-35.56 10.03-69.29 7.43-111.74 9.8-3.42-35.57 2.9-48.05 2.09-73.02-17.52-4.78-126.91 18.93-143.45 24z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22upper-line%22 fill=%22none%22 d=%22M202.72 272.29c156.95-15.47 389.07-16.43 523.78 3.73%22 class=%22base stroke-color stroke-medium%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22bishop%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}.fill-color{fill:%23fff}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%23fff%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%23bfd3d7%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22shoulders-gradient%22 x1=%22136.1%22 x2=%22784.78%22 y1=%22629.62%22 y2=%22865.1%22 gradientTransform=%22matrix(1.2051 0 0 1.18532 -52.88 -98.27)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-deco-1-gradient%22 x1=%22321.16%22 x2=%22395.43%22 y1=%2290.16%22 y2=%22128.46%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-deco-2-gradient%22 x1=%22321.16%22 x2=%22395.43%22 y1=%2290.16%22 y2=%22128.46%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 155.72 -4.82)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-2-gradient%22 x1=%22192.3%22 x2=%22825.78%22 y1=%22446.01%22 y2=%22717.34%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22crown-base-gradient%22 x1=%22192.3%22 x2=%22825.78%22 y1=%22446.01%22 y2=%22717.34%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-1-gradient%22 x1=%22721.62%22 x2=%22541.27%22 y1=%22220.04%22 y2=%22599.38%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M560.57 141.42c-18.93-19.68 19.55-33.92 5.48-50.34-4.87-5.69-11.66-8.32-18.49-8.42a28.41 28.41 0 0 0-18.8 6.7c-18.08 15.62 16.5 29.9 3.1 52.27m-120.8 3.9c-18.94-19.68 19.54-33.92 5.47-50.34-4.87-5.7-11.65-8.32-18.49-8.42a28.4 28.4 0 0 0-18.79 6.7c-18.09 15.62 16.49 29.9 3.1 52.27m226.43 633.58s-2.1-38.02 4.38-54.66a14.5 14.5 0 0 0-2.33-9.62c4.54.7 8.62 1.42 12.17 2.14a336.04 336.04 0 0 0 10.05-48.9l1.6 4.42c21.99-24.41 57.8-90.4 56.74-157.4-1.06-67-5.3-95.18-25.75-157.89a515.64 515.64 0 0 0-20.28-51.83c9.8-19.13 19.48-38.3 29.35-57.4 14.58-21.22 42.26-28.33 58.6-47.94 10.41-11.23 17.07-26.11 15.4-41.53-1.08-25.65-16.18-53.41-43.17-59.52a59.47 59.47 0 0 0-17-1.55c-22.1.2-38.59 18.05-47.75 36.18-6.06 11.51-16.76 19.9-22.7 31.4-1.25 6.92 8.8 9.17 14.09 7.68 12.93-2.7 23.18-12.75 27.55-24.84 5.18-12.44 16.88-22.23 30.75-23.13 13.62-2.36 26.2 8.17 28.95 20.98 3.96 13.43 2.17 29.25-8.83 39-17.15 17.7-43.18 25.62-57.62 46.15-7.52 14.6-15.01 29.22-22.53 43.82-26.08-50.12-57.53-94.11-82.96-117.63-31.37 17.7-61.79 51.73-73.4 71l.9 2.47c-23.42-26.75-49.24-50.48-78.17-71.03-80.28 69.5-158.69 226.2-173.12 307.28-14.42 81.1.1 153.4 24.73 188.18 15.44 21.78 33.25 55.94 57.7 64.47a113.27 113.27 0 0 1 6.11-2.07 13.6 13.6 0 0 0-1.6 10.29c10.64 23.1 2.24 52.82 2.24 52.82s25.52-3.48 62.8-6.16m-9.47 19.61c-6.3.79-12.64 1.54-18.82 2.48-31.81 4.84-42.26 13.36-62.67 20.08-36.01 11.87-163.07-17.53-173.06 11.61-10 29.15 136.77 26.5 218.52 25.6 2.94-.02 5.73-.21 8.54-.38-1.25 2.89-2.54 5.75-3.77 8.65-1.89 7.18-7.56 15.13-4.52 22.6 4.8 3.66 10.84-2 15-4.49 9.86-8.86 17.12-19.88 23.73-31.33 42.09-10.36 67.11-33.43 90.45-33.47 29.78-.04 56.95 37.5 129.37 37.63 38.86.07 243.43 4.09 232.06-26.41-11.37-30.5-140.56 10.46-183.82-11.23-22.64-11.36-29.29-14.05-58.58-18.41%22 class=%22base stroke-color%22/%3E%3Cpath id=%22shoulders%22 fill=%22url(%23shoulders-gradient)%22 d=%22M330.18 853.89c67.27-.74 99.66-38.38 129.43-38.43 29.78-.04 56.95 37.51 129.37 37.63 38.86.07 243.43 4.09 232.06-26.41-11.37-30.5-140.56 10.46-183.82-11.23-22.64-11.36-29.29-14.05-58.58-18.41-79.01-11.78-159.8-11.3-231.25-.45-31.81 4.84-42.26 13.36-62.67 20.08-36 11.87-163.07-17.53-173.06 11.61-10 29.15 136.77 26.5 218.52 25.6z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22crown-base%22 fill=%22url(%23crown-base-gradient)%22 d=%22M613.16 724.66c6.48-56.45-315.7-52.28-302.53 3.18 10.65 23.1 2.25 52.82 2.25 52.82s74.36-10.38 157.13-9.08c82.76 1.29 138.77 7.74 138.77 7.74s-2.1-38.02 4.38-54.66z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hat-1%22 fill=%22url(%23hat-1-gradient)%22 d=%22M474.1 228.25c11.6-19.27 42.02-53.3 73.39-71 38.89 35.96 91.92 119.7 118.15 200.16 20.45 62.71 24.69 90.9 25.75 157.89 1.07 67-34.75 132.99-56.74 157.4%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hat-2%22 fill=%22url(%23hat-2-gradient)%22 d=%22M306.14 719.62c-24.46-8.53-42.27-42.69-57.7-64.47-24.64-34.78-39.16-107.09-24.74-188.18 14.43-81.09 92.84-237.78 173.12-307.28 97.86 69.5 160.96 174.58 210.76 314.6 26.65 74.93 39.88 156.93 15.42 242.9-57.08-11.6-250.37-22.58-316.86 2.43z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22jewel%22 fill=%22none%22 d=%22M468.53 751.36c-10.23-2.71-13.36 2.07-17.11-.99-4.6-3.75-4.34-19.36-1.29-23.32 2.6-3.4 36.1-3.82 39.39-.7 3.06 2.91-.1 21.82-2.93 26.6%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cross%22 d=%22M415.5 367.29c-12.27 1.91-18.38 15.14-16.84 26.36-.21 9.6 4.06 21.95-3.96 29.46-10.85 3.55-22.6-.9-33.65-1.82-9.1-.82-20.08-4.2-28.17 1.56-6.2 7.22 1.04 18.12 9.02 20.55 16.05 6.87 35.1 3.29 50.55 11.42 5.33 4.84 4.24 13.26 5.87 19.7 5.02 38.32 4.75 77.72 16.54 114.84 3.08 8.15 7.9 19.46 18.2 19.54 7.97-2.68 6.97-13.08 7.39-19.8-.97-42.1-12.84-83.13-14.73-125.14-.2-4.14.17-9.33 5.6-9.77 19.29-5.46 41.81.62 59.34-10.92 7.2-3.84 13.21-18.15 1.55-20.02-20.57-2.98-41.35 5.74-61.8 1.94-6.32-2.2-5.76-10.82-6.5-16.23-1.2-12.75 2.74-26.33-2.18-38.5a6.45 6.45 0 0 0-6.24-3.17z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3Cpath id=%22top-deco-1%22 fill=%22url(%23top-deco-1-gradient)%22 d=%22M382.34 145.74c13.4-22.37-21.18-36.65-3.1-52.28 10.17-8.78 27.54-9.65 37.3 1.73 14.06 16.42-24.42 30.66-5.49 50.34%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22top-deco-2%22 fill=%22url(%23top-deco-2-gradient)%22 d=%22M531.86 141.63c13.4-22.37-21.18-36.65-3.1-52.28 10.16-8.77 27.54-9.65 37.3 1.73 14.06 16.42-24.42 30.66-5.49 50.34%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22stick%22 d=%22M688.53 97.64c-22.1.2-38.58 18.05-47.74 36.18-6.06 11.51-16.76 19.9-22.7 31.39-1.25 6.93 8.8 9.18 14.09 7.69 12.93-2.7 23.18-12.75 27.54-24.84 5.19-12.44 16.89-22.23 30.76-23.13 13.62-2.36 26.2 8.17 28.95 20.98 3.96 13.43 2.17 29.25-8.83 39-17.15 17.7-43.18 25.62-57.62 46.15-79.27 153.86-158.41 307.81-236.61 462.2-27.77 56-57.1 111.36-81.42 168.89-1.89 7.18-7.57 15.14-4.52 22.6 4.8 3.66 10.84-2 15-4.49 17.09-15.35 26.56-37.03 37.9-56.58 47.73-91.1 92.47-183.7 138.94-275.45 50.45-100.19 100.9-200.41 152.44-300.04 14.58-21.23 42.26-28.34 58.6-47.95 10.41-11.23 17.07-26.11 15.4-41.53-1.08-25.65-16.18-53.41-43.17-59.52a59.47 59.47 0 0 0-17-1.55z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22knight%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%23fff%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%23bfd3d7%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair4-gradient%22 x1=%22705.29%22 x2=%22787.13%22 y1=%22378.29%22 y2=%22465.62%22 gradientTransform=%22translate(7.03 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair3-gradient%22 x1=%22667.03%22 x2=%22739.15%22 y1=%22299.33%22 y2=%22348.42%22 gradientTransform=%22translate(11.16 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair2-gradient%22 x1=%22598.68%22 x2=%22705.53%22 y1=%22209.76%22 y2=%22232.29%22 gradientTransform=%22translate(7.03 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair1-gradient%22 x1=%22493.79%22 x2=%22625.85%22 y1=%22157.91%22 y2=%22159.49%22 gradientTransform=%22translate(11.16 8.17) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22body-gradient%22 x1=%22265.65%22 x2=%22753.21%22 y1=%22255.94%22 y2=%22854.33%22 gradientTransform=%22translate(7.03 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M392.06 80.14c-18.36-3-11.42 61.28-21.76 85.2-17.72-16.27-32.58-55.02-71.12-61.9-9.76 32.5 17.09 82.29 6.86 95.1-54.43 68.26-43.29 69.9-71.7 145.17-14.11 37.42-50.6 102.3-86.53 144.44-34.5 40.45-39.45 90.11-23.43 107.38 33.01 35.59 72.53 20.25 92.67-3.13-6.86 14.01-12.93 31.98-4.28 38.68 20.07 15.53 145.3-98.02 159.1-92.74 90.13 34.42 181.5-33.94 181.28-112.96 2.6 58.75-8.3 98.14-67.92 138.21-58.04 39.02-176.52 117.76-204.58 230.25-5.88 23.58 8.24 63.05 38.75 63.54 125.9 2 275.79 2.53 400.98.2 101.42-1.87 104.4-582.63-258.52-694.3-30.3-24.46-51.43-80.14-69.8-83.14Zm237.78 99.9c18.83 1.19-51.66-28.11-60.85-39.83-3.99-5.09-15.8-6.83-29.74-6.7-30.68.26-71.73 9.56-62.7 12.2m227.08 126.66c15.36 9.78 30.78-29.67 21-29.67-14.7 0-39.67 6.9-35.15-9.7 4.96-18.23-17.98-23.86-41.15-24.18-23.16-.3-46.56 4.7-42.53 7.77m161.56 163.73c22 7.32-1.02-18.93-12.12-32.43s7.58-19.55 6.28-28.11c-3.17-20.71-37.87-24.1-58.33-23.88m72.27 181.67c7.77 15.35 39.03 13.35 52.5 8.84 18.16-6.07-43.9-24.93-29.92-53.67 7.75-15.92-43.91-31.7-55.05-32.1%22 class=%22base stroke-color%22/%3E%3Cpath id=%22body%22 fill=%22url(%23body-gradient)%22 d=%22M553.15 425.38c.22 79.03-91.15 147.38-181.28 112.95-13.8-5.27-139.03 108.28-159.1 92.75-15.83-12.26 17.55-62.79 15.12-56.33-11.55 30.73-62.56 64.93-103.51 20.78-16.02-17.27-11.07-66.93 23.43-107.38 35.93-42.13 72.42-107.01 86.54-144.43 28.4-75.27 17.26-76.91 71.69-145.17 10.23-12.82-16.62-62.6-6.86-95.1 38.54 6.87 53.4 45.63 71.13 61.89 10.33-23.92 3.39-88.2 21.75-85.2 18.37 3 39.5 58.68 69.8 83.13C824.77 274.95 821.8 855.71 720.38 857.6c-125.2 2.32-275.07 1.8-400.98-.21-30.5-.49-44.63-39.96-38.74-63.54 28.05-112.5 146.53-191.23 204.57-230.25 59.61-40.07 70.53-79.46 67.92-138.21z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22eyebrow%22 fill=%22none%22 d=%22M363.48 314.1c-30.04-5.55-56.38 3.17-78.13 24.82%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22eye%22 fill=%22none%22 d=%22M315.06 346.85c10.79 11 24.52 11.45 26.78-7.23%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22nose%22 fill=%22none%22 d=%22M162.8 545.72c-14.31-4.94-24.67 18.12-15.54 19.06%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cheek1%22 fill=%22none%22 d=%22m334.42 500.28 9.8 12.18%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cheek2%22 fill=%22none%22 d=%22m553.32 391.72.3-25.74%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22ear-right%22 fill=%22none%22 d=%22m343.72 178.28-10.45 5.46%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22ear-left%22 fill=%22none%22 d=%22M398.88 122.72c31.15 43.52 42.4 52.32 5.36 46.08%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22leg-line%22 fill=%22none%22 d=%22m459.7 763.94-26.63 63.53%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair1%22 fill=%22url(%23hair1-gradient)%22 d=%22M476.55 145.72c89.44 26.22 74.35 7.3 93.22 38.01 10.57 17.21 25.21-5.86 60.07-3.68 18.83 1.18-51.66-28.13-60.85-39.84-12.76-16.27-105.57 1.66-92.44 5.5z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair2%22 fill=%22url(%23hair2-gradient)%22 d=%22M605.8 216.59c28.1 21.35 48.68-.34 47.57 36.72-.77 25.45 33.58 8.45 50.26 19.06 15.37 9.78 30.78-29.67 21-29.67-14.7 0-39.67 6.9-35.15-9.7 9.91-36.45-91.75-22.55-83.68-16.41z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair3%22 fill=%22url(%23hair3-gradient)%22 d=%22M688.43 297.17c5.47 1.91 35.26 22.07 33.88 31.66-7.11 49.46 29.36 46.26 45.05 51.49 22 7.32-1.02-18.93-12.12-32.43s7.58-19.55 6.28-28.11c-4.6-30.13-75.94-23.61-73.08-22.61z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair4%22 fill=%22url(%23hair4-gradient)%22 d=%22M740.98 401.45c5.23 9.1 17.48 19.43 21.36 33.72 3.89 14.3 5.35 27.04 13.12 42.4 7.77 15.35 39.02 13.35 52.5 8.84 18.16-6.07-43.9-24.92-29.92-53.67 8.85-18.2-59.88-36.21-57.06-31.3z%22 class=%22base stroke-color stroke-medium%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22pawn%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%23fff%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%23bfd3d7%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22head-gradient%22 x1=%22586.53%22 x2=%221126.02%22 y1=%22328.04%22 y2=%22534.2%22 gradientTransform=%22matrix(.73447 0 0 .736 -84.66 58.44)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22shoulders-gradient%22 x1=%22275.24%22 x2=%22862.65%22 y1=%22458.66%22 y2=%22560.75%22 gradientTransform=%22translate(36 28)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22pawn-body-gradient%22 x1=%22300.27%22 x2=%22774.05%22 y1=%22623.78%22 y2=%22764.9%22 gradientTransform=%22translate(36 28)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M473.54 222.8a122.41 110.4 0 0 0-122.41 110.4 122.41 110.4 0 0 0 122.4 110.4 122.41 110.4 0 0 0 122.42-110.4 122.41 110.4 0 0 0-122.41-110.4Zm-3.72 223.77c-30.33.31-58.7 5.23-93.47 14.16-74.2 19.07-100.1 66.02-100.1 66.02h156.33c-9 144.95-88.58 191.26-127.13 218.5-34.2 24.18-25.46 82.35 19.9 85.32 28.12 1.84 276.62 2.36 305.66-.85 51.38-5.67 52.84-66.7 19.69-87.3-49.35-30.68-125.94-65-137.16-215.67H685.1s-43.43-51.83-110.03-66.68c-42.62-9.5-74.9-13.8-105.24-13.5z%22 class=%22base stroke-color%22/%3E%3Cellipse id=%22head%22 cx=%22473.54%22 cy=%22333.21%22 fill=%22url(%23head-gradient)%22 class=%22base stroke-color stroke-medium%22 rx=%22122.41%22 ry=%22110.4%22/%3E%3Cpath id=%22pawn-body%22 fill=%22url(%23pawn-body-gradient)%22 d=%22M433.42 495.01c1.47 170.18-86.74 221.1-127.97 250.25-34.2 24.17-25.46 82.34 19.9 85.3 28.12 1.85 276.62 2.37 305.66-.84 51.38-5.67 52.84-66.7 19.69-87.3-52.61-32.71-136.2-69.54-138.5-247.1-.44-33.3-79.04-30-78.78-.3z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22shoulders%22 fill=%22url(%23shoulders-gradient)%22 d=%22M376.35 460.74c-74.2 19.06-100.1 66.01-100.1 66.01h408.84s-43.43-51.83-110.03-66.68c-85.23-19-129.17-17.2-198.7.67z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22lower-line%22 fill=%22none%22 d=%22M379.12 739.67h187.9%22 class=%22base stroke-color stroke-medium%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22king%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}.fill-color{fill:%237f899b}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%237f899b%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%231c1c2f%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient2272%22 x1=%22297.55%22 x2=%22368.56%22 y1=%22427.05%22 y2=%22521.22%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient2274%22 x1=%22495.3%22 x2=%22595.97%22 y1=%22448.55%22 y2=%22528.55%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22base-gradient%22 x1=%22221.55%22 x2=%22633.49%22 y1=%22774.94%22 y2=%22859.35%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient2476%22 x1=%22342.53%22 x2=%22549.85%22 y1=%22145.67%22 y2=%22282.34%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22cross-gradient%22 x1=%22379.2%22 x2=%22579.85%22 y1=%22160.25%22 y2=%22286.92%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-base-gradient%22 x1=%22368.47%22 x2=%22494.55%22 y1=%22319.27%22 y2=%22319.27%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22crown-lower-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22background-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bar1and5-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bar3-gradient%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientTransform=%22translate(19.7 .05) scale(1.02329)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22linearGradient598%22 x1=%22129.96%22 x2=%22812.37%22 y1=%22428.66%22 y2=%22836.31%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M479.86 63.92c-16.08-.25-32.8 1.82-42.39 6.4-4.04 18.82 16.84 70.79 10.79 88.03-17.08-2.29-78.86-17.22-106.85-8.7-12.51 18.6-7.07 52.47 1.63 68.22 30.92 6.7 78.63-14.24 101.47-12.43 3.63 12-2.39 44.22-8.1 67.46-16.25 5-28.93 15.03-30.34 30.68a290.4 290.4 0 0 0-.93 14.46c-4.83 3.76-8.5 8.14-10.27 13.23a127.09 127.09 0 0 0-2.52 8.1l.12-.48c-18.65-12-43.48-20.62-71.76-22.29-8.44-.5-17.02-.71-25.61-.6C212 317 125.8 347.23 113.56 423.7 95.7 535.27 194.5 601.03 230.06 719.06c112.87-64.37 373.15-60.27 481.3-4.64 28.7-91.23 143.1-197.86 117.51-290.87-23.7-86.13-138.9-111.33-214.92-107.03-30.81 1.75-60.39 11.72-82.6 25.43l.03.21a80.28 80.28 0 0 0-2.28-9.64c-1.86-6.15-5.96-11.31-11.57-15.54.11-4.65.04-9.75-.3-15.44-.86-15.16-14.85-25.1-32.57-29.61-5.36-22.14-11.09-52.46-3.94-66.87 24.04-4.76 81.73 11.63 103.52 4.37 14.22-19.52 12.31-50.07 3.5-67.17-20.45-3.98-80.32 12.3-99.54 13.29.7-16.41 29.55-64.42 30.27-84.18-7.08-4.66-22.53-7.22-38.61-7.46zm113.1 341.52c19.46.15 37.21 1.87 47.75 7.83 49.02 27.73 56.43 121.52-29.14 163.98 2.2-40.6 13.33-89.65 8.67-117.47-3.46-20.68-13.94-39.33-27.28-54.34zm-257.6 3.64c-9.92 13.32-17.45 28.85-20.28 45.76-4.5 26.84 5.74 73.47 8.45 113.17-84.82-55.96-76.27-140.76-2.05-157.72 3.25-.74 8.1-1.08 13.89-1.21zm179.18 16.03c15.47 15.64 40.75 26.97 50.66 51.17 10.9 26.63 12.2 66.1 1.1 100.02-2.22-1.26-4.87-2.7-7.2-4.01-40.07-30.45-41.29-64.79-47.02-112.73-1.5-12.51-.13-23.78 2.46-34.45zm-106.71 6.18c1.93 8.5 3.36 18.06 3.76 29.34 1.35 38.1-12.44 84.08-41.67 113.37-12.07-34.48-10.98-75.34.2-102.67 7.46-18.2 23.55-29.1 37.7-40.04zm64.37 265.1c-79.44-.05-159.75 12.71-211.15 39.39 14.4 45.5 20.16 96.16 20.16 96.16 93.8-29.12 284.35-30.29 376.44 4.24 0 0 9.5-68.23 20.5-102.32-47.93-24.57-126.5-37.43-205.95-37.48zm-2.04 136.49c-65.91-.27-132.11 6.29-168.34 19.24 89.9 10.73 233.52 12.5 334.99 2.41-35.1-14.31-100.73-21.4-166.65-21.65z%22 class=%22base stroke-color%22/%3E%3Cpath id=%22bar2%22 fill=%22url(%23linearGradient2272)%22 d=%22M315.06 626.8c23.73-34.29-7.21-128.77.02-171.97 11.74-70.1 103.85-117.15 116.15-76.5 14.58 48.2-44.63 52.76-61.1 93-15.14 36.97-11.9 98.73 17.56 135.9%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bar4%22 fill=%22url(%23linearGradient2274)%22 d=%22M620.26 631.74c-23.73-34.29 7.22-128.77-.02-171.96-11.74-70.1-103.85-117.16-116.14-76.51-14.59 48.2 44.62 52.76 61.1 93 15.13 36.97 11.9 98.74-17.57 135.9%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cross%22 fill=%22url(%23cross-gradient)%22 d=%22M430.27 294.88c5.38-15.35 19.34-72.58 14.24-89.44-22.84-1.8-70.54 19.14-101.46 12.43-8.71-15.75-14.15-49.62-1.64-68.22 28-8.52 89.77 6.41 106.85 8.7 6.05-17.24-14.83-69.21-10.79-88.03 19.19-9.17 66.84-8.26 81 1.06-.72 19.76-29.57 67.77-30.27 84.18 19.22-.99 79.1-17.27 99.53-13.3 8.82 17.1 10.73 47.66-3.49 67.18-21.79 7.26-79.48-9.13-103.52-4.37-10.13 20.44 5.62 73.2 9.5 88.63%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22top-base%22 fill=%22url(%23top-base-gradient)%22 d=%22M437.63 380.54c-25.32-21.91-36.47-22.1-31.55-76.95 4.2-46.85 108.73-44.43 111.16-2.04 3.05 53.15-14.62 57.14-26.91 82.87%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22background%22 fill=%22url(%23background-gradient)%22 d=%22M296.98 849.69 231.5 648.87l482.2-2.11-76.63 209.08Z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bar1and5%22 fill=%22url(%23bar1and5-gradient)%22 d=%22M586.13 587.45c-29.43-15.9-91.25-54.79-124.8-56.17-25.66-1.06-78.6 33.23-105.83 54.32-117.95-53.7-116.54-156.46-34.02-175.3 13.44-3.08 53.45.47 79.88-.74-8.42-23.25-17.6-39.73-8.89-70.67-18.65-12-43.48-20.61-71.76-22.3-8.44-.5-17.02-.7-25.61-.6-83.1 1.03-169.3 31.25-181.54 107.7-17.86 111.6 80.94 177.35 116.5 295.38 112.87-64.37 373.15-60.27 481.3-4.64 28.7-91.23 143.1-197.86 117.51-290.87-23.7-86.13-138.9-111.33-214.92-107.03-30.81 1.75-60.39 11.72-82.6 25.43 4.3 24.53-4.42 44.58-11.64 65.78 35.14.01 96.8-8.16 121 5.53 53.45 30.23 57.52 139.06-54.58 174.18z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bar3%22 fill=%22url(%23bar3-gradient)%22 d=%22M355.84 585.91c38.88-27.3 57.3-81.51 55.75-125.28-2.24-63.11-36-74.12-16.72-129.36 13.07-37.46 121.94-39.39 134.23 1.26 14.59 48.21-22.86 78.23-17.02 127.03 6.8 56.94 7.23 94.68 73.98 129.52%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22crown-lower%22 fill=%22url(%23crown-lower-gradient)%22 d=%22M678.15 733.86c-95.86-49.13-314.3-51.44-417.1 1.92 14.4 45.5 20.16 96.16 20.16 96.16 93.8-29.13 284.34-30.29 376.44 4.24 0 0 9.5-68.23 20.5-102.32z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22base%22 fill=%22url(%23base-gradient)%22 d=%22M301.82 852.12c89.9 10.73 233.52 12.49 334.99 2.42-70.2-28.64-262.53-28.32-335-2.42z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22jewel-center%22 d=%22M466.59 737.77a17.3 16.48 0 0 0-17.3 16.48 17.3 16.48 0 0 0 17.3 16.48 17.3 16.48 0 0 0 17.3-16.48 17.3 16.48 0 0 0-17.3-16.48z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3Cpath id=%22jewel-right%22 d=%22M562.95 753.43a18.85 12.36 9.22 0 0-15.7 9.54 18.85 12.36 9.22 0 0 16.63 15.22 18.85 12.36 9.22 0 0 20.58-9.18 18.85 12.36 9.22 0 0-16.62-15.22 18.85 12.36 9.22 0 0-4.89-.36z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3Cpath id=%22jewel-left%22 d=%22M367.89 753.35a12.36 19.34 79.73 0 0-5 .48 12.36 19.34 79.73 0 0-16.83 15.6 12.36 19.34 79.73 0 0 21.23 8.72 12.36 19.34 79.73 0 0 16.83-15.6 12.36 19.34 79.73 0 0-16.23-9.2z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22queen%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%237f899b%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%231c1c2f%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair5-grad%22 x1=%22785.14%22 x2=%22840.91%22 y1=%22294.76%22 y2=%22363.09%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair4-grad%22 x1=%22649.86%22 x2=%22711.12%22 y1=%22171.18%22 y2=%22227.75%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair3-grad%22 x1=%22406.01%22 x2=%22470.83%22 y1=%22103.53%22 y2=%22132.99%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair2-grad%22 x1=%22167.87%22 x2=%22234.62%22 y1=%22175%22 y2=%22175%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair1-grad%22 x1=%2223.46%22 x2=%2287.37%22 y1=%22337.86%22 y2=%22315.46%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot1-grad%22 x1=%22339.47%22 x2=%22514.54%22 y1=%22530.61%22 y2=%22571.59%22 gradientTransform=%22translate(-93.77 -199.5) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot3-grad%22 x1=%22339.47%22 x2=%22495.02%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(117.23 -251.5) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot4-grad%22 x1=%22339.47%22 x2=%22487.21%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(325.24 -191.5) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot5-grad%22 x1=%22339.47%22 x2=%22498.93%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(447.85 -65.75) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hairknot2-grad%22 x1=%22339.47%22 x2=%22510.64%22 y1=%22530.61%22 y2=%22584.76%22 gradientTransform=%22translate(-219.1 -48.92) scale(.85393)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22filler-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22crown-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22fullhair-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22cross-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22base-grad%22 x1=%22153.6%22 x2=%22761.36%22 y1=%22380.54%22 y2=%22682.21%22 gradientTransform=%22translate(30 20)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M660.68 718.33c10.94-94.74 43.2-209.42 102.48-299.25a39.97 39.97 0 0 0 21.82 6.51c21.68 0 39.25-17.12 39.25-38.24a37.4 37.4 0 0 0-3.3-15.3c21.54.22 36.23 4.98 54.63-.16 2.68-13.83-12.17-18.27-26.41-37.32-13.28 5.43-27.97 11.58-41.09 21.86a39.95 39.95 0 0 0-23.08-7.32c-21.68 0-39.25 17.12-39.25 38.24a37.61 37.61 0 0 0 8.08 23.07c-51.19 44.95-112.72 143.43-151.22 164.96-29.6-62.18 12.69-205.2 44.46-278.64a40.14 40.14 0 0 0 15.32 3.1c21.67 0 39.25-17.13 39.25-38.25a37.6 37.6 0 0 0-7.87-22.95c20.21-5.83 40.26-11.12 51.15-12.64-4.71-5.65-1.7-16-40-37.05l-29.33 36.63a40.18 40.18 0 0 0-13.2-2.23c-21.68 0-39.25 17.12-39.25 38.24a37.78 37.78 0 0 0 11.93 27.33c-50.57 60.7-120.62 188.65-144.45 255.12-35.85-80.11-34.18-218.8-33.46-304.4 20.51-1.42 36.42-18.02 36.47-38.05 0-14.97-8.97-28.56-22.95-34.78 15.35-22.32 32.59-48.04 33.96-64.3-8.56.2-34.94 4.63-50.8 12.54-3.3 8.32-3.13 27.74-1.92 48.47-20.64 1.27-36.73 17.92-36.78 38.07.04 16.37 10.76 30.9 26.67 36.14-28.48 79.66-58.76 208.18-62.36 303.52C310.98 489.94 280 365.6 258.95 288.64c14.35-6.05 23.65-19.82 23.67-35.05 0-19.7-15.36-36.16-35.47-38.06 6.22-12.28 5.72-18.25 9.47-41.01-10.56-11.82-22.9-10.12-50.75-14.21.8 27.72 14.54 39.02 26.06 56.73-16.51 4.9-27.8 19.73-27.81 36.55 0 21.12 17.57 38.24 39.25 38.24.49-.02.98-.06 1.47-.1-3.38 94.8 13.8 225.09 25.7 282.34-41.7-28.13-88.76-82.84-132-137.35a38.04 38.04 0 0 0 18.73-32.54c0-21.12-17.57-38.24-39.25-38.24a40.23 40.23 0 0 0-10.94 1.52c-4.97-22.4-17.15-46.04-26.82-57.68-13.44 2.8-14.58 30.31-18.8 44.43 8.72 9.6 17.51 16.83 25.93 26.19a37.63 37.63 0 0 0-8.61 23.78c0 21.12 17.57 38.24 39.24 38.24a40.25 40.25 0 0 0 7.11-.71c49.02 116.08 72.23 169.42 99.97 276.2m15.22 18.27c12.59 30.53 15.92 93 15.92 93m371.88 4.18s2.31-66.7 14.6-97.08m-368.15 109c88.83 10.6 232.73 14.35 332.96 4.4%22 class=%22base stroke-color%22/%3E%3Cpath id=%22hair5%22 fill=%22url(%23hair5-grad)%22 d=%22M875.56 371.9c2.67-13.84-12.17-18.28-26.41-37.33-19.84 8.12-42.82 17.8-59 40.52 40.86-8.43 59.44 4.06 85.41-3.2z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair4%22 fill=%22url(%23hair4-grad)%22 d=%22M744.9 226c-4.71-5.65-1.7-16-40-37.05l-48.86 61.03c27.41-8.55 70.77-21.46 88.86-23.98z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair3%22 fill=%22url(%23hair3-grad)%22 d=%22M504.62 102.52c-8.56.19-34.94 4.62-50.8 12.53-4.8 12.1-2.31 47.6.13 76.64 15.19-24.37 48.74-66.26 50.67-89.17z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair2%22 fill=%22url(%23hair2-grad)%22 d=%22M256.62 174.52c-10.56-11.81-22.9-10.12-50.75-14.21.97 33.73 21.1 43.13 33.08 69.38 15.19-24.37 12.74-25.26 17.67-55.17z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair1%22 fill=%22url(%23hair1-grad)%22 d=%22M80.26 309.78c-13.44 2.8-14.58 30.31-18.8 44.43 15.06 16.6 30.37 26.05 43.52 51.72 14.06-25.04-8.76-76.94-24.72-96.15z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22filler%22 fill=%22url(%23filler-grad)%22 d=%22m273.94 844.89-50.38-166.21L657.32 680l-49.51 169.68z%22/%3E%3Cpath id=%22crown%22 fill=%22url(%23crown-grad)%22 d=%22M642.71 736.28c-122.2-43.67-283.4-43.92-402.4-.1 12.6 30.53 15.93 93 15.93 93 100.72-28.18 271.95-27.32 371.88 4.18 0 0 2.31-66.7 14.6-97.08z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22fullhair%22 fill=%22url(%23fullhair-grad)%22 d=%22M225.1 717.91c121.85-52.68 312.58-53.52 435.58.41 12.13-105.03 50.35-234.69 122.68-327.7C728.52 412.1 648.88 549.5 602.6 575.4c-36.3-76.27 35.54-274.2 63.48-316.13-46.9 28.21-146.15 203.01-175.47 284.78-42.27-94.44-32.38-271.08-33.39-345.1-31.8 69.55-73.51 229.37-77.78 342.3-81.2-60.86-109.85-225.26-131.5-290.4-11.93 93.8 8.88 257.17 22.62 323.23-52.8-35.6-114.44-113.92-165.61-180.3C170 549.33 193.54 596.45 225.1 717.91z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cross%22 fill=%22url(%23cross-grad)%22 d=%22M437.76 719.78c-19-.1-8.58 14.64-12.32 21.12-8.53 4.95-36.24-3.83-27.32 14.34 6.32 12.87 15.76 6.81 26.37 10.96 5.28 7.27-3.64 29.36 15.04 28.9 15.43-.38 7.02-22.43 10.32-28.37 9.32-6.1 21.56 2.16 27.73-13.45 4.69-11.86-18.51-7.46-27.67-12.57-3.84-5.73 7.62-20.82-12.15-20.93z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22path37%22 fill=%22url(%23base-grad)%22 d=%22M274.57 845.27c88.83 10.6 232.72 14.36 332.96 4.41-56.57-25.28-259.89-25.07-332.96-4.4z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cellipse id=%22hairknot2%22 cx=%22243.37%22 cy=%22253.59%22 fill=%22url(%23hairknot1-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot1%22 cx=%22118.02%22 cy=%22404.18%22 fill=%22url(%23hairknot2-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot3%22 cx=%22454.37%22 cy=%22201.59%22 fill=%22url(%23hairknot3-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot4%22 cx=%22662.37%22 cy=%22261.59%22 fill=%22url(%23hairknot4-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3Cellipse id=%22hairknot5%22 cx=%22784.98%22 cy=%22387.35%22 fill=%22url(%23hairknot5-grad)%22 class=%22base stroke-color stroke-medium%22 rx=%2239.25%22 ry=%2238.24%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22rook%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%237f899b%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%231c1c2f%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22upper-back-gradient%22 x1=%227.34%22 x2=%22689.75%22 y1=%22207.66%22 y2=%22274.33%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22body-gradient%22 x1=%22218.5%22 x2=%22906.1%22 y1=%22521.53%22 y2=%22643.2%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22upper-wall-gradient%22 x1=%22153.41%22 x2=%22966.59%22 y1=%22229.07%22 y2=%22400.73%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22tower-base-gradient%22 x1=%22193.15%22 x2=%22878.6%22 y1=%22715.41%22 y2=%22782.07%22 gradientTransform=%22matrix(1.10352 0 0 1.06757 -32.26 -16.14)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M468.91 119.08c-30.68-.25-61.62 1.07-71.44 4.28-3.39 33.65.9 51.98-1.82 81.9a197.55 197.55 0 0 1-30.64 5.88c.91-16.5 1.94-32.57 1.75-43.34-22.83-3.32-53.78-3.52-81.93-1.78.78-7.47 1.46-14.92 1.17-23.98-17.52-4.78-126.91 18.93-143.45 24 5.44 29.7 9.56 57.87 14.83 100.53 33.87 23.54 52.83 31.76 56.45 71.2.84-.15 1.94-.27 2.8-.41 10.96 5.29 29.17 9.84 52.39 13.59-2.92 92.32-3.7 349.07-2.77 386.38-25.97 24.61-77.23 48.98-114.08 56.75-5.47 18-10.86 38.83.25 61.22 134.5 1.22 489.67-.34 618.19-.79 6.93-24.97 12.17-43.03 5.24-62.66-38.9-7.68-85.72-19.26-120.9-54.51-2.94-65.39-2.6-320.4-2.47-385.93 23.79-3.7 44.08-8.3 59.01-13.88l.1-.51c.93.13 2.16.25 3.06.38 6.43-35.55 16.95-41.62 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.62-121.91-35.56-135.13-30.97-4.7 27.77 1.95 51.64-4.24 77.76-4.27.2-8.47.36-12.65.49-.09-14.7.25-30.26 1.6-44.17-24.98-10.7-73.24-11.03-105.79-9.63.23-12.68.64-24.4 1.5-38.05-8.75-3.1-39.15-4.94-69.83-5.2z%22 class=%22base stroke-color%22/%3E%3Cpath id=%22upper-back%22 fill=%22url(%23upper-back-gradient)%22 d=%22M214.93 336.6s3.43-123.38 18.64-164.39c31.78-6.84 94.34-10.06 133.2-4.4.43 25.08-5.74 77.85-1.68 101.98 35.3-1.67 106.84 2.6 152.36-2.5 1.02-29.43-7.67-71.1.94-103.91 28.9-2.17 94.22-4.46 124.64 8.57-4.06 41.98.6 99.69.6 99.69l79.74 2.75-11.88 63.14c-99.56 37.2-434.27 31.67-496.56-.94z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22tower-base%22 fill=%22url(%23tower-base-gradient)%22 d=%22M268.16 735.55c-25.33 25.2-78.25 50.57-115.99 58.53-5.47 18.01-10.86 38.83.26 61.22 134.5 1.22 489.66-.34 618.18-.79 6.93-24.97 12.17-43.03 5.24-62.66-39.57-7.81-87.36-19.6-122.73-56.3%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22lower-line%22 fill=%22none%22 d=%22M212.54 805.16c157.8.07 329.05-5.8 497.82.6%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22body%22 fill=%22url(%23body-gradient)%22 d=%22M270.3 323.45c-3.98 47.2-5.13 375.99-4.03 415.15 58.25-4.91 329-5.22 388.7-.6-3.38-73.7-2.45-413.51-2.45-413.51%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22bricks%22 fill=%22none%22 d=%22M372.03 395.73c-20.05-.08-34.74 1.05-60.48 3.84l69.45-3.73a593.8 593.8 0 0 0-8.97-.11zm22.2 60.6c-31.6-.1-52.54 1.48-84 4.07l107.85-3.73c-8.69-.21-16.55-.32-23.85-.35zM357.15 487c.42 15.17-.33-7.04.48 16.8zm114.1 34.8c-82.58 1.18-84.73.62-161.03 5.88zm-55.3 32.72c.37 13.37-.33-7.2.47 16.15zm47.33 35.54c-61.2-.13-106.74 1.73-153.62 6.23l180.85-6.05c-9.43-.1-18.49-.16-27.23-.18zm16.92 20.28.38 14.57c-.01-1.42-.1-4.94-.38-14.57zm.38 14.57c.05 3.25-.28-5.52.36 13.4zm-123.43-3.4c.42 15.17-.33-7.04.48 16.8zm110.81 38.17c-67.75-.19-125.29 2.36-156.87 4.68l227.46-3.47a2419.13 2419.13 0 0 0-70.59-1.2zm-52.28 22.99.38 14.57c-.02-1.42-.1-4.95-.38-14.57zm.38 14.57c.04 3.24-.29-5.52.36 13.4z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22upper-wall%22 fill=%22url(%23upper-wall-gradient)%22 d=%22M142.55 166.03c5.44 29.7 9.56 57.88 14.83 100.54 33.87 23.54 52.83 31.76 56.45 71.2 101.73-18.27 408.56-14.06 500.82-.37 6.43-35.55 16.95-41.63 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.61-121.91-35.56-135.13-30.97-4.7 27.78 1.95 51.64-4.24 77.76-40.06 2-75.75.48-117.2-10.28.2-34.91.15-54.06 1.87-81.08-17.5-6.22-121.64-7.32-141.28-.91-3.39 33.65.9 51.98-1.82 81.9-35.56 10.03-69.29 7.43-111.74 9.8-3.42-35.57 2.9-48.05 2.09-73.02-17.52-4.78-126.91 18.93-143.45 24z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22upper-line%22 fill=%22none%22 d=%22M202.72 272.29c156.95-15.47 389.07-16.43 523.78 3.73%22 class=%22base stroke-color stroke-medium%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22bishop%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}.fill-color{fill:%237f899b}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%237f899b%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%231c1c2f%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22shoulders-gradient%22 x1=%22136.1%22 x2=%22784.78%22 y1=%22629.62%22 y2=%22865.1%22 gradientTransform=%22matrix(1.2051 0 0 1.18532 -52.88 -98.27)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-deco-1-gradient%22 x1=%22321.16%22 x2=%22395.43%22 y1=%2290.16%22 y2=%22128.46%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-deco-2-gradient%22 x1=%22321.16%22 x2=%22395.43%22 y1=%2290.16%22 y2=%22128.46%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 155.72 -4.82)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-2-gradient%22 x1=%22192.3%22 x2=%22825.78%22 y1=%22446.01%22 y2=%22717.34%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22crown-base-gradient%22 x1=%22192.3%22 x2=%22825.78%22 y1=%22446.01%22 y2=%22717.34%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-1-gradient%22 x1=%22721.62%22 x2=%22541.27%22 y1=%22220.04%22 y2=%22599.38%22 gradientTransform=%22matrix(1.07338 0 0 1.05577 6.2 -.71)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M560.57 141.42c-18.93-19.68 19.55-33.92 5.48-50.34-4.87-5.69-11.66-8.32-18.49-8.42a28.41 28.41 0 0 0-18.8 6.7c-18.08 15.62 16.5 29.9 3.1 52.27m-120.8 3.9c-18.94-19.68 19.54-33.92 5.47-50.34-4.87-5.7-11.65-8.32-18.49-8.42a28.4 28.4 0 0 0-18.79 6.7c-18.09 15.62 16.49 29.9 3.1 52.27m226.43 633.58s-2.1-38.02 4.38-54.66a14.5 14.5 0 0 0-2.33-9.62c4.54.7 8.62 1.42 12.17 2.14a336.04 336.04 0 0 0 10.05-48.9l1.6 4.42c21.99-24.41 57.8-90.4 56.74-157.4-1.06-67-5.3-95.18-25.75-157.89a515.64 515.64 0 0 0-20.28-51.83c9.8-19.13 19.48-38.3 29.35-57.4 14.58-21.22 42.26-28.33 58.6-47.94 10.41-11.23 17.07-26.11 15.4-41.53-1.08-25.65-16.18-53.41-43.17-59.52a59.47 59.47 0 0 0-17-1.55c-22.1.2-38.59 18.05-47.75 36.18-6.06 11.51-16.76 19.9-22.7 31.4-1.25 6.92 8.8 9.17 14.09 7.68 12.93-2.7 23.18-12.75 27.55-24.84 5.18-12.44 16.88-22.23 30.75-23.13 13.62-2.36 26.2 8.17 28.95 20.98 3.96 13.43 2.17 29.25-8.83 39-17.15 17.7-43.18 25.62-57.62 46.15-7.52 14.6-15.01 29.22-22.53 43.82-26.08-50.12-57.53-94.11-82.96-117.63-31.37 17.7-61.79 51.73-73.4 71l.9 2.47c-23.42-26.75-49.24-50.48-78.17-71.03-80.28 69.5-158.69 226.2-173.12 307.28-14.42 81.1.1 153.4 24.73 188.18 15.44 21.78 33.25 55.94 57.7 64.47a113.27 113.27 0 0 1 6.11-2.07 13.6 13.6 0 0 0-1.6 10.29c10.64 23.1 2.24 52.82 2.24 52.82s25.52-3.48 62.8-6.16m-9.47 19.61c-6.3.79-12.64 1.54-18.82 2.48-31.81 4.84-42.26 13.36-62.67 20.08-36.01 11.87-163.07-17.53-173.06 11.61-10 29.15 136.77 26.5 218.52 25.6 2.94-.02 5.73-.21 8.54-.38-1.25 2.89-2.54 5.75-3.77 8.65-1.89 7.18-7.56 15.13-4.52 22.6 4.8 3.66 10.84-2 15-4.49 9.86-8.86 17.12-19.88 23.73-31.33 42.09-10.36 67.11-33.43 90.45-33.47 29.78-.04 56.95 37.5 129.37 37.63 38.86.07 243.43 4.09 232.06-26.41-11.37-30.5-140.56 10.46-183.82-11.23-22.64-11.36-29.29-14.05-58.58-18.41%22 class=%22base stroke-color%22/%3E%3Cpath id=%22shoulders%22 fill=%22url(%23shoulders-gradient)%22 d=%22M330.18 853.89c67.27-.74 99.66-38.38 129.43-38.43 29.78-.04 56.95 37.51 129.37 37.63 38.86.07 243.43 4.09 232.06-26.41-11.37-30.5-140.56 10.46-183.82-11.23-22.64-11.36-29.29-14.05-58.58-18.41-79.01-11.78-159.8-11.3-231.25-.45-31.81 4.84-42.26 13.36-62.67 20.08-36 11.87-163.07-17.53-173.06 11.61-10 29.15 136.77 26.5 218.52 25.6z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22crown-base%22 fill=%22url(%23crown-base-gradient)%22 d=%22M613.16 724.66c6.48-56.45-315.7-52.28-302.53 3.18 10.65 23.1 2.25 52.82 2.25 52.82s74.36-10.38 157.13-9.08c82.76 1.29 138.77 7.74 138.77 7.74s-2.1-38.02 4.38-54.66z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hat-1%22 fill=%22url(%23hat-1-gradient)%22 d=%22M474.1 228.25c11.6-19.27 42.02-53.3 73.39-71 38.89 35.96 91.92 119.7 118.15 200.16 20.45 62.71 24.69 90.9 25.75 157.89 1.07 67-34.75 132.99-56.74 157.4%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hat-2%22 fill=%22url(%23hat-2-gradient)%22 d=%22M306.14 719.62c-24.46-8.53-42.27-42.69-57.7-64.47-24.64-34.78-39.16-107.09-24.74-188.18 14.43-81.09 92.84-237.78 173.12-307.28 97.86 69.5 160.96 174.58 210.76 314.6 26.65 74.93 39.88 156.93 15.42 242.9-57.08-11.6-250.37-22.58-316.86 2.43z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22jewel%22 fill=%22none%22 d=%22M468.53 751.36c-10.23-2.71-13.36 2.07-17.11-.99-4.6-3.75-4.34-19.36-1.29-23.32 2.6-3.4 36.1-3.82 39.39-.7 3.06 2.91-.1 21.82-2.93 26.6%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cross%22 d=%22M415.5 367.29c-12.27 1.91-18.38 15.14-16.84 26.36-.21 9.6 4.06 21.95-3.96 29.46-10.85 3.55-22.6-.9-33.65-1.82-9.1-.82-20.08-4.2-28.17 1.56-6.2 7.22 1.04 18.12 9.02 20.55 16.05 6.87 35.1 3.29 50.55 11.42 5.33 4.84 4.24 13.26 5.87 19.7 5.02 38.32 4.75 77.72 16.54 114.84 3.08 8.15 7.9 19.46 18.2 19.54 7.97-2.68 6.97-13.08 7.39-19.8-.97-42.1-12.84-83.13-14.73-125.14-.2-4.14.17-9.33 5.6-9.77 19.29-5.46 41.81.62 59.34-10.92 7.2-3.84 13.21-18.15 1.55-20.02-20.57-2.98-41.35 5.74-61.8 1.94-6.32-2.2-5.76-10.82-6.5-16.23-1.2-12.75 2.74-26.33-2.18-38.5a6.45 6.45 0 0 0-6.24-3.17z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3Cpath id=%22top-deco-1%22 fill=%22url(%23top-deco-1-gradient)%22 d=%22M382.34 145.74c13.4-22.37-21.18-36.65-3.1-52.28 10.17-8.78 27.54-9.65 37.3 1.73 14.06 16.42-24.42 30.66-5.49 50.34%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22top-deco-2%22 fill=%22url(%23top-deco-2-gradient)%22 d=%22M531.86 141.63c13.4-22.37-21.18-36.65-3.1-52.28 10.16-8.77 27.54-9.65 37.3 1.73 14.06 16.42-24.42 30.66-5.49 50.34%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22stick%22 d=%22M688.53 97.64c-22.1.2-38.58 18.05-47.74 36.18-6.06 11.51-16.76 19.9-22.7 31.39-1.25 6.93 8.8 9.18 14.09 7.69 12.93-2.7 23.18-12.75 27.54-24.84 5.19-12.44 16.89-22.23 30.76-23.13 13.62-2.36 26.2 8.17 28.95 20.98 3.96 13.43 2.17 29.25-8.83 39-17.15 17.7-43.18 25.62-57.62 46.15-79.27 153.86-158.41 307.81-236.61 462.2-27.77 56-57.1 111.36-81.42 168.89-1.89 7.18-7.57 15.14-4.52 22.6 4.8 3.66 10.84-2 15-4.49 17.09-15.35 26.56-37.03 37.9-56.58 47.73-91.1 92.47-183.7 138.94-275.45 50.45-100.19 100.9-200.41 152.44-300.04 14.58-21.23 42.26-28.34 58.6-47.95 10.41-11.23 17.07-26.11 15.4-41.53-1.08-25.65-16.18-53.41-43.17-59.52a59.47 59.47 0 0 0-17-1.55z%22 class=%22base stroke-color stroke-medium fill-color%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22knight%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%237f899b%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%231c1c2f%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair4-gradient%22 x1=%22705.29%22 x2=%22787.13%22 y1=%22378.29%22 y2=%22465.62%22 gradientTransform=%22translate(7.03 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair3-gradient%22 x1=%22667.03%22 x2=%22739.15%22 y1=%22299.33%22 y2=%22348.42%22 gradientTransform=%22translate(11.16 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair2-gradient%22 x1=%22598.68%22 x2=%22705.53%22 y1=%22209.76%22 y2=%22232.29%22 gradientTransform=%22translate(7.03 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hair1-gradient%22 x1=%22493.79%22 x2=%22625.85%22 y1=%22157.91%22 y2=%22159.49%22 gradientTransform=%22translate(11.16 8.17) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22body-gradient%22 x1=%22265.65%22 x2=%22753.21%22 y1=%22255.94%22 y2=%22854.33%22 gradientTransform=%22translate(7.03 14.37) scale(1.03317)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M392.06 80.14c-18.36-3-11.42 61.28-21.76 85.2-17.72-16.27-32.58-55.02-71.12-61.9-9.76 32.5 17.09 82.29 6.86 95.1-54.43 68.26-43.29 69.9-71.7 145.17-14.11 37.42-50.6 102.3-86.53 144.44-34.5 40.45-39.45 90.11-23.43 107.38 33.01 35.59 72.53 20.25 92.67-3.13-6.86 14.01-12.93 31.98-4.28 38.68 20.07 15.53 145.3-98.02 159.1-92.74 90.13 34.42 181.5-33.94 181.28-112.96 2.6 58.75-8.3 98.14-67.92 138.21-58.04 39.02-176.52 117.76-204.58 230.25-5.88 23.58 8.24 63.05 38.75 63.54 125.9 2 275.79 2.53 400.98.2 101.42-1.87 104.4-582.63-258.52-694.3-30.3-24.46-51.43-80.14-69.8-83.14Zm237.78 99.9c18.83 1.19-51.66-28.11-60.85-39.83-3.99-5.09-15.8-6.83-29.74-6.7-30.68.26-71.73 9.56-62.7 12.2m227.08 126.66c15.36 9.78 30.78-29.67 21-29.67-14.7 0-39.67 6.9-35.15-9.7 4.96-18.23-17.98-23.86-41.15-24.18-23.16-.3-46.56 4.7-42.53 7.77m161.56 163.73c22 7.32-1.02-18.93-12.12-32.43s7.58-19.55 6.28-28.11c-3.17-20.71-37.87-24.1-58.33-23.88m72.27 181.67c7.77 15.35 39.03 13.35 52.5 8.84 18.16-6.07-43.9-24.93-29.92-53.67 7.75-15.92-43.91-31.7-55.05-32.1%22 class=%22base stroke-color%22/%3E%3Cpath id=%22body%22 fill=%22url(%23body-gradient)%22 d=%22M553.15 425.38c.22 79.03-91.15 147.38-181.28 112.95-13.8-5.27-139.03 108.28-159.1 92.75-15.83-12.26 17.55-62.79 15.12-56.33-11.55 30.73-62.56 64.93-103.51 20.78-16.02-17.27-11.07-66.93 23.43-107.38 35.93-42.13 72.42-107.01 86.54-144.43 28.4-75.27 17.26-76.91 71.69-145.17 10.23-12.82-16.62-62.6-6.86-95.1 38.54 6.87 53.4 45.63 71.13 61.89 10.33-23.92 3.39-88.2 21.75-85.2 18.37 3 39.5 58.68 69.8 83.13C824.77 274.95 821.8 855.71 720.38 857.6c-125.2 2.32-275.07 1.8-400.98-.21-30.5-.49-44.63-39.96-38.74-63.54 28.05-112.5 146.53-191.23 204.57-230.25 59.61-40.07 70.53-79.46 67.92-138.21z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22eyebrow%22 fill=%22none%22 d=%22M363.48 314.1c-30.04-5.55-56.38 3.17-78.13 24.82%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22eye%22 fill=%22none%22 d=%22M315.06 346.85c10.79 11 24.52 11.45 26.78-7.23%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22nose%22 fill=%22none%22 d=%22M162.8 545.72c-14.31-4.94-24.67 18.12-15.54 19.06%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cheek1%22 fill=%22none%22 d=%22m334.42 500.28 9.8 12.18%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22cheek2%22 fill=%22none%22 d=%22m553.32 391.72.3-25.74%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22ear-right%22 fill=%22none%22 d=%22m343.72 178.28-10.45 5.46%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22ear-left%22 fill=%22none%22 d=%22M398.88 122.72c31.15 43.52 42.4 52.32 5.36 46.08%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22leg-line%22 fill=%22none%22 d=%22m459.7 763.94-26.63 63.53%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair1%22 fill=%22url(%23hair1-gradient)%22 d=%22M476.55 145.72c89.44 26.22 74.35 7.3 93.22 38.01 10.57 17.21 25.21-5.86 60.07-3.68 18.83 1.18-51.66-28.13-60.85-39.84-12.76-16.27-105.57 1.66-92.44 5.5z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair2%22 fill=%22url(%23hair2-gradient)%22 d=%22M605.8 216.59c28.1 21.35 48.68-.34 47.57 36.72-.77 25.45 33.58 8.45 50.26 19.06 15.37 9.78 30.78-29.67 21-29.67-14.7 0-39.67 6.9-35.15-9.7 9.91-36.45-91.75-22.55-83.68-16.41z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair3%22 fill=%22url(%23hair3-gradient)%22 d=%22M688.43 297.17c5.47 1.91 35.26 22.07 33.88 31.66-7.11 49.46 29.36 46.26 45.05 51.49 22 7.32-1.02-18.93-12.12-32.43s7.58-19.55 6.28-28.11c-4.6-30.13-75.94-23.61-73.08-22.61z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22hair4%22 fill=%22url(%23hair4-gradient)%22 d=%22M740.98 401.45c5.23 9.1 17.48 19.43 21.36 33.72 3.89 14.3 5.35 27.04 13.12 42.4 7.77 15.35 39.02 13.35 52.5 8.84 18.16-6.07-43.9-24.92-29.92-53.67 8.85-18.2-59.88-36.21-57.06-31.3z%22 class=%22base stroke-color stroke-medium%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='fantasy'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22pawn%22 version=%221.0%22 viewBox=%220 0 933.33 933.33%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 stop-color=%22%237f899b%22 stop-opacity=%221%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 stop-color=%22%231c1c2f%22 stop-opacity=%221%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22head-gradient%22 x1=%22586.53%22 x2=%221126.02%22 y1=%22328.04%22 y2=%22534.2%22 gradientTransform=%22matrix(.73447 0 0 .736 -84.66 58.44)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22shoulders-gradient%22 x1=%22275.24%22 x2=%22862.65%22 y1=%22458.66%22 y2=%22560.75%22 gradientTransform=%22translate(36 28)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22pawn-body-gradient%22 x1=%22300.27%22 x2=%22774.05%22 y1=%22623.78%22 y2=%22764.9%22 gradientTransform=%22translate(36 28)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 fill=%22none%22 stroke-width=%2235%22 d=%22M473.54 222.8a122.41 110.4 0 0 0-122.41 110.4 122.41 110.4 0 0 0 122.4 110.4 122.41 110.4 0 0 0 122.42-110.4 122.41 110.4 0 0 0-122.41-110.4Zm-3.72 223.77c-30.33.31-58.7 5.23-93.47 14.16-74.2 19.07-100.1 66.02-100.1 66.02h156.33c-9 144.95-88.58 191.26-127.13 218.5-34.2 24.18-25.46 82.35 19.9 85.32 28.12 1.84 276.62 2.36 305.66-.85 51.38-5.67 52.84-66.7 19.69-87.3-49.35-30.68-125.94-65-137.16-215.67H685.1s-43.43-51.83-110.03-66.68c-42.62-9.5-74.9-13.8-105.24-13.5z%22 class=%22base stroke-color%22/%3E%3Cellipse id=%22head%22 cx=%22473.54%22 cy=%22333.21%22 fill=%22url(%23head-gradient)%22 class=%22base stroke-color stroke-medium%22 rx=%22122.41%22 ry=%22110.4%22/%3E%3Cpath id=%22pawn-body%22 fill=%22url(%23pawn-body-gradient)%22 d=%22M433.42 495.01c1.47 170.18-86.74 221.1-127.97 250.25-34.2 24.17-25.46 82.34 19.9 85.3 28.12 1.85 276.62 2.37 305.66-.84 51.38-5.67 52.84-66.7 19.69-87.3-52.61-32.71-136.2-69.54-138.5-247.1-.44-33.3-79.04-30-78.78-.3z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22shoulders%22 fill=%22url(%23shoulders-gradient)%22 d=%22M376.35 460.74c-74.2 19.06-100.1 66.01-100.1 66.01h408.84s-43.43-51.83-110.03-66.68c-85.23-19-129.17-17.2-198.7.67z%22 class=%22base stroke-color stroke-medium%22/%3E%3Cpath id=%22lower-line%22 fill=%22none%22 d=%22M379.12 739.67h187.9%22 class=%22base stroke-color stroke-medium%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* gioco */
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-825.75%22 x2=%22-704.44%22 y1=%222712.8%22 y2=%222712.8%22 gradientTransform=%22matrix(.26458 0 0 .25357 227.43 -666.55)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23bba38a%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-215.24%22 x2=%22-184.86%22 y1=%22731.78%22 y2=%22731.78%22 gradientTransform=%22translate(225.05 -690.53)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M25.006 3.868c-1.803.1-3.228 1.234-3.228 2.618 0 .565.244 1.644.693 2.097h-5.766v5.106h6.306l-2.61 2.833 2.673 2.167c-5.584.362-12.02 1.643-13.154 3.997-1.268 2.638 6.215 15.6 6.215 15.6h17.73s7.484-12.963 6.215-15.6c-1.133-2.357-7.594-3.64-13.179-3.999l2.71-2.165-2.61-2.833h6.306V8.583H27.54c.449-.453.693-1.531.693-2.097 0-1.384-1.425-2.518-3.228-2.618z%22 style=%22paint-order:fill markers stroke%22/%3E%3Cpath d=%22m31.289 38.283 2.573-.005s7.482-12.428 6.214-15.065c-4.136-3.824-13.18-4.525-13.18-4.525 11.05 2.822 12.618 5.028 4.393 19.595z%22 opacity=%22.1%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.242 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M13.283 31.138s-3.074-6.555-2.666-8.092c.408-1.536 5.987-2.736 5.987-2.736-6.486 2.71-4.786 4.558-3.321 10.828zM17.521 12.884v-3.52l1.532-.011c-.891.007-1.532 2.147-1.532 3.531zM24.798 4.67s-2.614.92-1.53 3.522c-.178-.007-2.142-2.72 1.53-3.522z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-540.02%22 x2=%22-501.82%22 y1=%22-470.59%22 y2=%22-470.59%22 gradientTransform=%22translate(545.92 492.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23bba38a%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-536.12%22 x2=%22-505.75%22 y1=%22-451.55%22 y2=%22-451.55%22 gradientTransform=%22translate(545.92 492.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M25 6.122c-2.635 0-4.771 2.098-4.771 4.685.002 1.855 1.118 3.534 2.846 4.283-.369 2.286-1.51 7.558-4.68 8.009-2.355.334-3.855-1.287-4.88-3.144a4.19 4.19 0 0 0 1.767-3.4c0-2.327-1.921-4.214-4.291-4.214S6.699 14.228 6.7 16.555c0 2.142 1.64 3.943 3.809 4.183l4.973 17.54h19.036l4.973-17.54c2.169-.24 3.807-2.041 3.809-4.183 0-2.327-1.922-4.214-4.292-4.214s-4.29 1.887-4.29 4.214a4.19 4.19 0 0 0 1.766 3.4c-1.025 1.857-2.525 3.478-4.88 3.144-3.17-.45-4.31-5.723-4.68-8.01 1.729-.748 2.845-2.427 2.847-4.282 0-2.587-2.136-4.685-4.77-4.685z%22/%3E%3Cpath d=%22M39.002 12.342a4.348 4.348 0 0 0-1.567.296c4.741 1.678 3.877 6.805.591 7.316L30.414 38.28h4.2l4.87-17.541c2.17-.241 3.808-2.042 3.81-4.184 0-2.327-1.922-4.214-4.292-4.213z%22 opacity=%22.1%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.227 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684H39.36l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M9.515 13.489c-.794 1.17-1.726 2.667-1.554 4.779 0 0-1.604-3.01 1.554-4.779zM23.659 7.23c-.853.874-2.37 2.934-2.133 5.374-.207-.084-1.73-3.893 2.133-5.374zM12.062 23.328l5.244 14.111-1.17.023z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-570.82%22 x2=%22-544.4%22 y1=%22-468.61%22 y2=%22-468.61%22 gradientTransform=%22translate(582.87 492.95)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23bba38a%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-573.06%22 x2=%22-542.69%22 y1=%22-451.71%22 y2=%22-451.71%22 gradientTransform=%22translate(582.87 492.95)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M12.855 10.383v7.663c0 3.268 6.53 3.774 6.53 3.774-.352 9.864-5.036 16.486-5.036 16.486l21.428-.039s-4.651-6.62-5-16.446c0 0 6.896-.507 6.896-3.774v-7.663h-4.72s.459 2.25-.47 3.26c-1.035 1.126-2.418 1.126-3.454 0-.928-1.01-.47-3.26-.47-3.26h-6.59s.459 2.25-.47 3.26c-1.122 1.22-2.699 1.22-3.82 0-.929-1.01-.47-3.26-.47-3.26z%22/%3E%3Cpath d=%22m37.543 10.462.014 7.585c.263 3.48-24.58 2.135-24.523 1.03 2.098 2.532 4.445 2.613 6.352 2.744 7.292.498 9.8 8.89 13.306 16.446h2.97s-4.65-6.62-5-16.446c2.547-.395 2.954-.812 4.037-1.058h.018l-.002-.004c1.023-.236 2.81-1.376 2.842-2.713v-7.663z%22 opacity=%22.1%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.239 38.286c-1.437 0-2.627 1.216-2.627 2.685v.544l.013 2.685h28.75l.012-2.685v-.544c0-1.469-1.19-2.685-2.627-2.685H25z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M13.656 11.168v5.54c.48-1.867.299-4.088 1.554-5.54zM22.877 11.163c.055.896-.154 1.748-.269 2.616.48-1.866 1.823-2.616 1.823-2.616zM16.947 35.312c.875-1.143 3.603-10.333 3.233-13.244.7.39.658 10.057-3.233 13.244zM33.863 11.209c.005.598-.055 1.226-.187 2.02.48-1.867 1.295-2.04 1.295-2.04z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%223341.2%22 x2=%223366.2%22 y1=%22-469.26%22 y2=%22-469.26%22 gradientTransform=%22matrix(1.019 0 0 1.0751 -3392.3 527.45)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23bba38a%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-177.63%22 x2=%22-151.24%22 y1=%22156.68%22 y2=%22156.68%22 gradientTransform=%22matrix(1.1509 0 0 1.1499 214.24 -138.92)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M26.87 8.223c-5.797-2.298-6.952 2.527-4.668 5.86-9.898 10.6-11.253 16.425-6.195 24.204h17.99c6.084-6.912 2.558-14.515-4.823-22.3-2.883 4.119-3.274 7.35-3.946 11.131l-3.62-.071c-.66-6.006 7.622-15.14 5.261-18.823z%22/%3E%3Cpath d=%22M24.933 7.654c-.625.02-.207.197-.771.567 0 .003.01.006.01.008 3.582-.311-2.369 11.772-3.394 18.894.536-3.014 1.325-5.68 3.082-8.725 2.003-4.351 4.237-8.681 3.008-10.169-.411-.38-1.144-.601-1.934-.575zm4.24 8.338c-.6.856-.517.67-.972 1.462 6.004 6.049 8.728 13.787 3.097 20.838h2.696c6.085-6.912 2.56-14.515-4.822-22.3z%22 opacity=%22.1%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M14.895 34.327c-.716-1.396-3.266-6.812 4.513-15.739-2.1 4.86-5.958 8.69-4.513 15.739z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-462.21%22 x2=%22-434.18%22 y1=%22-469.84%22 y2=%22-469.84%22 gradientTransform=%22translate(474.35 493.34)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23bba38a%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-464.54%22 x2=%22-434.16%22 y1=%22-452.1%22 y2=%22-452.1%22 gradientTransform=%22translate(474.35 493.34)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22m25.987 23.546-11.592 1.097-1.454-5.216 14.468-6.815 1.763-3.9 10.2 11.892-4.116 17.678H14.74c.245-11.292 9.64-8.1 11.247-14.736z%22 class=%22st28%22/%3E%3Cpath d=%22m29.173 8.72-.879 1.945.426-.943c2.692 3.722 5.608 7.279 8.45 10.888l-5.285 17.671h3.372l4.117-17.671z%22 opacity=%22.1%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23323232%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.748l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M15.62 37.633c.159-4.472 2.145-6.971 8.667-9.837-.987 1.107-6.405 2.237-8.667 9.837zM14.418 21.67l-.523-1.803L28.03 13.21l1.217-2.764-.671 3.558-14.35 5.921z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%22-639.4%22 x2=%22-612.91%22 y1=%22-465.15%22 y2=%22-465.15%22 gradientTransform=%22matrix(.94331 0 0 1 615.66 493.37)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23bba38a%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23323232%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M25 12.264c-3.56 0-6.447 2.655-6.447 5.93 0 1.705.799 3.326 2.19 4.45h-1.666c-1.312 0-2.4.978-2.4 2.158v.438c0 1.18 1.088 2.157 2.4 2.157h2.376c0 7.293-9.342 6.457-8.689 16.78L25 44.167l12.236.008c.653-10.323-8.689-9.486-8.689-16.779h2.376c1.312 0 2.4-.978 2.4-2.157v-.438c0-1.18-1.087-2.157-2.4-2.157h-1.666c1.391-1.125 2.19-2.747 2.19-4.45 0-3.276-2.886-5.93-6.446-5.931z%22/%3E%3Cpath d=%22M24.999 12.264c-.521 0-1.028.058-1.513.166 6.257.692 7.675 6.466 4.917 9.222-2.016 1.69-7.662.993-7.662.993 2.56.443 4.97 1.954 7.252 2.488-6.033 11.435 9.7 9.026 9.242 19.043.995-10.592-7.673-8.148-8.689-16.78h2.377c1.312 0 2.398-.977 2.398-2.156v-.438c0-1.18-1.086-2.158-2.398-2.158h-1.667c1.391-1.125 2.191-2.746 2.19-4.449 0-3.276-2.886-5.932-6.447-5.932z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M22.959 13.401c-1.77 1.602-2.968 3.612-3.476 6.19 0 0-1.16-4.235 3.476-6.19zM13.342 43.419c.273-5.321 2.572-6.184 7.538-11.434-1.03 3.566-7.387 5.868-7.538 11.434z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-825.75%22 x2=%22-704.44%22 y1=%222712.8%22 y2=%222712.8%22 gradientTransform=%22matrix(.26458 0 0 .25357 227.43 -666.55)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23796c60%22/%3E%3Cstop offset=%221%22 stop-color=%22%234b403b%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-215.24%22 x2=%22-184.86%22 y1=%22731.78%22 y2=%22731.78%22 gradientTransform=%22translate(225.05 -690.53)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M25.006 3.868c-1.803.1-3.228 1.234-3.228 2.618 0 .565.244 1.644.693 2.097h-5.766v5.106h6.306l-2.61 2.833 2.673 2.167c-5.584.362-12.02 1.643-13.154 3.997-1.268 2.638 6.215 15.6 6.215 15.6h17.73s7.484-12.963 6.215-15.6c-1.133-2.357-7.594-3.64-13.179-3.999l2.71-2.165-2.61-2.833h6.306V8.583H27.54c.449-.453.693-1.531.693-2.097 0-1.384-1.425-2.518-3.228-2.618z%22 style=%22paint-order:fill markers stroke%22/%3E%3Cpath d=%22m31.289 38.283 2.573-.005s7.482-12.428 6.214-15.065c-4.136-3.824-13.18-4.525-13.18-4.525 11.05 2.822 12.618 5.028 4.393 19.595z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.242 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M13.283 31.138s-3.074-6.555-2.666-8.092c.408-1.536 5.987-2.736 5.987-2.736-6.486 2.71-4.786 4.558-3.321 10.828zM17.521 12.884v-3.52l1.532-.011c-.891.007-1.532 2.147-1.532 3.531zM24.798 4.67s-2.614.92-1.53 3.522c-.178-.007-2.142-2.72 1.53-3.522z%22 opacity=%22.25%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-647.27%22 x2=%22-525.69%22 y1=%22418.44%22 y2=%22418.44%22 gradientTransform=%22translate(209.27 -109.27) scale(.31419)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23796c60%22/%3E%3Cstop offset=%221%22 stop-color=%22%234b403b%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-177.63%22 x2=%22-151.24%22 y1=%22156.68%22 y2=%22156.68%22 gradientTransform=%22matrix(1.1509 0 0 1.1499 214.23 -138.92)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M25 6.122c-2.635 0-4.771 2.098-4.771 4.685.002 1.855 1.118 3.534 2.846 4.283-.369 2.286-1.51 7.558-4.68 8.009-2.355.334-3.855-1.287-4.88-3.144a4.19 4.19 0 0 0 1.767-3.4c0-2.327-1.921-4.214-4.291-4.214S6.699 14.228 6.7 16.555c0 2.142 1.64 3.943 3.809 4.183l4.973 17.54h19.036l4.973-17.54c2.169-.24 3.807-2.041 3.809-4.183 0-2.327-1.922-4.214-4.292-4.214s-4.29 1.887-4.29 4.214a4.19 4.19 0 0 0 1.766 3.4c-1.025 1.857-2.525 3.478-4.88 3.144-3.17-.45-4.31-5.723-4.68-8.01 1.729-.748 2.845-2.427 2.847-4.282 0-2.587-2.136-4.685-4.77-4.685z%22/%3E%3Cpath d=%22M39.002 12.342a4.348 4.348 0 0 0-1.567.296c4.741 1.678 3.877 6.805.591 7.316L30.414 38.28h4.2l4.87-17.541c2.17-.241 3.808-2.042 3.81-4.184 0-2.327-1.922-4.214-4.292-4.213z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.227 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684H39.36l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M9.515 13.489c-.794 1.17-1.726 2.667-1.554 4.779 0 0-1.604-3.01 1.554-4.779zM23.659 7.23c-.853.874-2.37 2.934-2.133 5.374-.207-.084-1.73-3.893 2.133-5.374zM12.062 23.328l5.244 14.111-1.17.023z%22 opacity=%22.25%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%2212797%22 x2=%2212909%22 y1=%22-1764.6%22 y2=%22-1764.6%22 gradientTransform=%22matrix(.23554 0 0 .25454 -3002.1 473.49)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23796c60%22/%3E%3Cstop offset=%221%22 stop-color=%22%234b403b%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-30.611%22 x2=%22-.235%22 y1=%2242.165%22 y2=%2242.165%22 gradientTransform=%22translate(40.423 -.922)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M12.855 10.383v7.663c0 3.268 6.53 3.774 6.53 3.774-.352 9.864-5.036 16.486-5.036 16.486l21.428-.039s-4.651-6.62-5-16.446c0 0 6.896-.507 6.896-3.774v-7.663h-4.72s.459 2.25-.47 3.26c-1.035 1.126-2.418 1.126-3.454 0-.928-1.01-.47-3.26-.47-3.26h-6.59s.459 2.25-.47 3.26c-1.122 1.22-2.699 1.22-3.82 0-.929-1.01-.47-3.26-.47-3.26z%22/%3E%3Cpath d=%22m37.543 10.462.014 7.585c.263 3.48-24.58 2.135-24.523 1.03 2.098 2.532 4.445 2.613 6.352 2.744 7.292.498 9.8 8.89 13.306 16.446h2.97s-4.65-6.62-5-16.446c2.547-.395 2.954-.812 4.037-1.058h.018l-.002-.004c1.023-.236 2.81-1.376 2.842-2.713v-7.663z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.239 38.286c-1.437 0-2.627 1.216-2.627 2.685v.544l.013 2.685h28.75l.012-2.685v-.544c0-1.469-1.19-2.685-2.627-2.685H25z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M13.656 11.168v5.54c.48-1.867.299-4.088 1.554-5.54zM22.877 11.163c.055.896-.154 1.748-.269 2.616.48-1.866 1.823-2.616 1.823-2.616zM16.947 35.312c.875-1.143 3.603-10.333 3.233-13.244.7.39.658 10.057-3.233 13.244zM33.863 11.209c.005.598-.055 1.226-.187 2.02.48-1.867 1.295-2.04 1.295-2.04z%22 opacity=%22.25%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%223341.2%22 x2=%223366.2%22 y1=%22-469.28%22 y2=%22-469.28%22 gradientTransform=%22matrix(1.019 0 0 1.0751 -3392.3 527.45)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23796c60%22/%3E%3Cstop offset=%221%22 stop-color=%22%234b403b%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-177.63%22 x2=%22-151.24%22 y1=%22156.68%22 y2=%22156.68%22 gradientTransform=%22matrix(1.1509 0 0 1.1499 214.24 -138.92)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M26.87 8.223c-5.797-2.298-6.952 2.527-4.668 5.86-9.898 10.6-11.253 16.425-6.195 24.204h17.99c6.084-6.912 2.558-14.515-4.823-22.3-2.883 4.119-3.274 7.35-3.946 11.131l-3.62-.071c-.66-6.006 7.622-15.14 5.261-18.823z%22/%3E%3Cpath d=%22M24.933 7.654c-.625.02-.207.197-.771.567 0 .003.01.006.01.008 3.582-.311-2.369 11.772-3.394 18.894.536-3.014 1.325-5.68 3.082-8.725 2.003-4.351 4.237-8.681 3.008-10.169-.411-.38-1.144-.601-1.934-.575zm4.24 8.338c-.6.856-.517.67-.972 1.462 6.004 6.049 8.728 13.787 3.097 20.838h2.696c6.085-6.912 2.56-14.515-4.822-22.3z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M14.895 34.327c-.716-1.396-3.266-6.812 4.513-15.739-2.1 4.86-5.958 8.69-4.513 15.739z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%223295.1%22 x2=%223321.5%22 y1=%22-411.88%22 y2=%22-411.88%22 gradientTransform=%22matrix(1.0621 0 0 1.0589 -3487.5 459.63)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23796c60%22/%3E%3Cstop offset=%221%22 stop-color=%22%234b403b%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-177.63%22 x2=%22-151.24%22 y1=%22156.68%22 y2=%22156.68%22 gradientTransform=%22matrix(1.1509 0 0 1.1499 214.24 -138.92)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22m25.987 23.546-11.592 1.097-1.454-5.216 14.468-6.815 1.763-3.9 10.2 11.892-4.116 17.678H14.74c.245-11.292 9.64-8.1 11.247-14.736z%22 class=%22st28%22/%3E%3Cpath d=%22m29.173 8.72-.879 1.945.426-.943c2.692 3.722 5.608 7.279 8.45 10.888l-5.285 17.671h3.372l4.117-17.671z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.748l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M15.62 37.633c.159-4.472 2.145-6.971 8.667-9.837-.987 1.107-6.405 2.237-8.667 9.837zM14.418 21.67l-.523-1.803L28.03 13.21l1.217-2.764-.671 3.558-14.35 5.921z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='gioco'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%22-639.4%22 x2=%22-612.91%22 y1=%22-465.15%22 y2=%22-465.15%22 gradientTransform=%22matrix(.94331 0 0 1 615.66 493.37)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23796c60%22/%3E%3Cstop offset=%221%22 stop-color=%22%234b403b%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.6%22 d=%22M25 12.264c-3.56 0-6.447 2.655-6.447 5.93 0 1.705.799 3.326 2.19 4.45h-1.666c-1.312 0-2.4.978-2.4 2.158v.438c0 1.18 1.088 2.157 2.4 2.157h2.376c0 7.293-9.342 6.457-8.689 16.78L25 44.167l12.236.008c.653-10.323-8.689-9.486-8.689-16.779h2.376c1.312 0 2.4-.978 2.4-2.157v-.438c0-1.18-1.087-2.157-2.4-2.157h-1.666c1.391-1.125 2.19-2.747 2.19-4.45 0-3.276-2.886-5.93-6.446-5.931z%22/%3E%3Cpath d=%22M24.999 12.264c-.521 0-1.028.058-1.513.166 6.257.692 7.675 6.466 4.917 9.222-2.016 1.69-7.662.993-7.662.993 2.56.443 4.97 1.954 7.252 2.488-6.033 11.435 9.7 9.026 9.242 19.043.995-10.592-7.673-8.148-8.689-16.78h2.377c1.312 0 2.398-.977 2.398-2.156v-.438c0-1.18-1.086-2.158-2.398-2.158h-1.667c1.391-1.125 2.191-2.746 2.19-4.449 0-3.276-2.886-5.932-6.447-5.932z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M22.959 13.401c-1.77 1.602-2.968 3.612-3.476 6.19 0 0-1.16-4.235 3.476-6.19zM13.342 43.419c.273-5.321 2.572-6.184 7.538-11.434-1.03 3.566-7.387 5.868-7.538 11.434z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* governor */
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22b%22%3E%3Cstop offset=%220%22 stop-color=%22%23edebea%22/%3E%3Cstop offset=%221%22 stop-color=%22%23edebea%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientTransform=%22translate(-906.01 261.29)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientTransform=%22translate(-906.01 261.29)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23b%22 id=%22e%22 x1=%22563.37%22 x2=%22575.09%22 y1=%22-261.47%22 y2=%22-257.21%22 gradientTransform=%22matrix(1.1146 0 0 1 -224.87 -76.89)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23b%22 id=%22f%22 x1=%22422.39%22 x2=%22423.02%22 y1=%22-437.94%22 y2=%22-437.94%22 gradientTransform=%22matrix(1.1146 0 0 1 -59.405 84.556)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%22417.93%22 x2=%22422.16%22 y1=%22-441.6%22 y2=%22-441.6%22 gradientTransform=%22matrix(1.1146 0 0 1 -59.405 84.556)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22h%22 x1=%22422.03%22 x2=%22425.95%22 y1=%22-445.5%22 y2=%22-445.5%22 gradientTransform=%22matrix(1.1146 0 0 1 -59.405 84.556)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg transform=%22translate(430.27 160.86)%22%3E%3Cpath fill=%22%23e7cd98%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m-415.05-121.83-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22m-394.77-120.68-20.994.009.884-.542 19.247-.015z%22/%3E%3Cpath d=%22m-394.77-120.68-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e7cd98%22 stroke=%22%23191919%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M-415.05-117.13v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22-414.42%22 y=%22-116.49%22 fill=%22url(%23d)%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%231a1a1a%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M-414.58-121.83c.57-6.697-6.698-15.67-6.698-15.67s4.201-5.968 16.008-5.968c11.807 0 16.008 5.968 16.008 5.968s-7.27 8.973-6.699 15.67h-9.31z%22/%3E%3Cpath fill=%22%23020202%22 fill-opacity=%22.902%22 fill-rule=%22nonzero%22 d=%22M-402.13-142.69c8.656.89 10.117 5.094 10.044 5.205 0 0-7.176 8.349-6.606 15.046h2.073c-.178-6.58 6.57-15.01 6.57-15.01-.41-1.345-6.44-5.15-12.081-5.241z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23e)%22 fill-rule=%22nonzero%22 d=%22M406.3-338.98c1.878 3 5.263 8.793 5.107 13.822l1.412.004c1.201-11.109-10.072-15.69 9.81-17.465 3.737-.634 1.183-1.732-.228-1.902-5.276-.667-10.953.158-15.39 3.22-1.253.85-1.017 1.588-.711 2.321z%22 transform=%22translate(-824.44 202.67)%22/%3E%3Cg transform=%22translate(-819.294 207.721)%22%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M411-363.73v4.529h-4.718v4.825h4.415v3.181h6.651v-3.18h4.414v-4.826h-4.717v-4.529h-3.022z%22/%3E%3Cpath fill=%22url(%23f)%22 d=%22M411.4-351.79v-3.192h.71v2.597c0 .016-.71.595-.71.595z%22/%3E%3Cpath fill=%22url(%23g)%22 d=%22M406.97-354.98v-3.605h4.71v.521h-4.056v2.265z%22/%3E%3Cpath fill=%22url(%23h)%22 d=%22m411.68-358.58.006-4.52h3.79v.549h-3.112v3.02z%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22m415.76-351.78.99-.018.007-3.171 4.346.006v-3.63h-.944v2.775h-4.387z%22 opacity=%22.15%22/%3E%3Crect width=%22.873%22 height=%224.413%22 x=%22415.57%22 y=%22-363.09%22 fill-opacity=%22.902%22 opacity=%22.15%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%221603.1%22 x2=%221608.3%22 y1=%22-390.27%22 y2=%22-390.27%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%221632.5%22 x2=%221637.6%22 y1=%22-392.63%22 y2=%22-392.63%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%221656.6%22 x2=%221665.2%22 y1=%22-391.34%22 y2=%22-391.75%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%221679.6%22 x2=%221691.8%22 y1=%22-382.86%22 y2=%22-382.86%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22391.15%22 x2=%22395.21%22 y1=%22-332.31%22 y2=%22-332.31%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22h%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22i%22 x1=%221609.3%22 x2=%221624.2%22 y1=%22-310.48%22 y2=%22-279.45%22 gradientTransform=%22matrix(.21285 0 0 .21284 114.26 -321.28)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg stroke-width=%221.054%22%3E%3Cg stroke-width=%221.11%22 transform=%22matrix(.2644 0 0 .26425 -408.036 125.22)%22%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%224.54%22 d=%22M1637.8-451.4c-3.467.026-6.265 2.833-6.265 6.286 0 3.232 2.46 5.936 5.687 6.256l-7.106 67.183c-2.958.14-5.876.364-8.728.664l-20.683-63.315a6.29 6.29 0 0 0 4.595-6.048c0-3.471-2.826-6.286-6.312-6.286-3.485 0-6.311 2.815-6.311 6.286 0 3.472 2.826 6.287 6.311 6.287.297 0 .594-.021.888-.062l3.31 66.417a74.941 74.941 0 0 0-5.043 1.558l-31.28-56.64a6.286 6.286 0 0 0 3.763-5.75c0-3.473-2.826-6.287-6.312-6.287s-6.311 2.814-6.312 6.286c0 3.472 2.826 6.287 6.312 6.287.482 0 .963-.056 1.432-.165l17.01 73.509c2.936 10.1 10.961 19.11 24.552 22.752h60.985c13.591-3.642 21.616-12.651 24.553-22.752l17.01-73.51c.468.11.95.165 1.431.166 3.486 0 6.312-2.815 6.312-6.287s-2.826-6.286-6.312-6.286c-3.485 0-6.311 2.814-6.311 6.286a6.286 6.286 0 0 0 3.763 5.752l-31.281 56.639a74.88 74.88 0 0 0-5.043-1.558l3.31-66.417c.294.041.591.062.888.062 3.485 0 6.311-2.815 6.312-6.287 0-3.471-2.827-6.286-6.312-6.286-3.486 0-6.311 2.815-6.312 6.286a6.29 6.29 0 0 0 4.595 6.048l-20.683 63.315c-2.851-.3-5.77-.523-8.728-.664l-7.106-67.183c3.228-.32 5.685-3.024 5.685-6.256 0-3.453-2.796-6.26-6.263-6.286z%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22url(%23b)%22 d=%22m1605.7-367.96 2.61.131-5.198-48.888z%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22m1632.5-371.73 5.081-47.365-2.51 48.918z%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22m1656.6-370.29 15.57-47.552c-5.98 19.434-8.41 29.224-13.462 49.002z%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m1679.6-365.3 23.017-40.51-21.476 41.904z%22/%3E%3Cg fill=%22%23fff%22%3E%3Cellipse cx=%221562.5%22 cy=%22-429.61%22 rx=%222.024%22 ry=%221.924%22 style=%22paint-order:markers fill stroke%22/%3E%3Cellipse cx=%221597.3%22 cy=%22-441.57%22 rx=%221.945%22 ry=%221.865%22 style=%22paint-order:markers fill stroke%22/%3E%3Cellipse cx=%221636.4%22 cy=%22-446.47%22 rx=%221.885%22 ry=%222.025%22 style=%22paint-order:markers fill stroke%22/%3E%3Cellipse cx=%221675%22 cy=%22-442.23%22 rx=%221.491%22 ry=%221.566%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3Cellipse cx=%221709.9%22 cy=%22-430.59%22 fill=%22%23fff%22 rx=%221.464%22 ry=%221.51%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3Cg stroke-width=%221.232%22%3E%3Cpath d=%22M7122.4-1814.1c9.445 8.768-8.948 8.401-2.548 12.038-15.954 38.4-7.679 101.82-86.184 96.632h45.738c13.592-3.642 21.616-12.65 24.553-22.753l17.009-73.51c.469.108.95.164 1.432.164 3.486 0 6.312-2.813 6.311-6.285 0-3.471-2.826-6.286-6.311-6.286z%22 opacity=%22.15%22 style=%22paint-order:markers fill stroke%22 transform=%22matrix(.2644 0 0 .26425 -1838.724 489.69)%22/%3E%3Cpath d=%22m34.171 28.051-2.141-.05 2.675-10.234zM27.033 26.889l-1.67.57.51-11.126zM20.66 27.18l-1.385.234-2.662-12.343zM14.527 28.474l-.982.674-5.242-11.675z%22 opacity=%22.15%22/%3E%3C/g%3E%3Cg stroke-width=%221.232%22%3E%3Cpath d=%22M35.278 7.267s2.691 1.255.069 2.94c.03-.008.957-1.782-.069-2.94zM25.038 6.222s2.692 1.255.07 2.94c.029-.008.956-1.782-.07-2.94zM14.69 7.249s2.692 1.255.07 2.94c.03-.008.956-1.782-.07-2.94zM5.713 10.555s2.691 1.255.069 2.94c.03-.008.957-1.782-.069-2.94z%22 opacity=%22.15%22/%3E%3C/g%3E%3C/g%3E%3Cpath fill=%22url(%23f)%22 d=%22m394.01-327.17 1.195.02-4.055-11.366z%22 transform=%22translate(-383.47 356.738)%22/%3E%3Cg transform=%22translate(-475.293 422.159)%22%3E%3Cpath fill=%22%23e7cd98%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23g)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e7cd98%22 stroke=%22%23191919%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23h)%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3Cpath fill=%22url(%23i)%22 d=%22M461.41-384.6c-5.05.015-8.319 1.434-8.319 1.434-1.689.594-3.045 1.233-3.201 2.29-.147.992.69 1.931 1.123 2.498 1.291 1.69 2.337 2.41 3.32 2.836 1.44.459.983-1.009.522-1.874-2.59-4.469 6.83-6.09 10.958-5.871 3.209.251 6.433.767 8.86 1.398-1.813-1.167-7.063-2.268-12.267-2.676-.327-.025-.66-.036-.996-.035z%22 transform=%22translate(-438.1 412.49)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22284.57%22 x2=%22288.14%22 y1=%22-399.25%22 y2=%22-399.25%22 gradientTransform=%22matrix(1.013 0 0 1.0128 -6.496 54.052)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22293.02%22 x2=%22296.47%22 y1=%22-400.76%22 y2=%22-400.76%22 gradientTransform=%22matrix(1.013 0 0 1.0128 -6.496 54.052)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22301.35%22 x2=%22304.9%22 y1=%22-400.73%22 y2=%22-400.73%22 gradientTransform=%22matrix(1.013 0 0 1.0128 -6.496 54.052)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22285.93%22 x2=%22292.3%22 y1=%22-383.26%22 y2=%22-383.26%22 gradientTransform=%22matrix(1.013 0 0 1.0128 -5.973 54.052)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg stroke=%22%231a1a1a%22 stroke-width=%221.2%22%3E%3Cpath fill=%22%23e7cd97%22 stroke-linejoin=%22round%22 d=%22M14.08 9.23v7.587l4.103 3.105L15.39 39.03H34.61l-2.791-19.108 4.103-3.105V9.23h-4.85v3.33H27.37V9.23h-4.738v3.33H18.93V9.23z%22/%3E%3Cpath fill=%22%23514b46%22 fill-opacity=%22.902%22 d=%22M18.18 19.92h13.635M35.92 16.81H14.079%22/%3E%3C/g%3E%3Cpath fill=%22url(%23b)%22 d=%22M281.79-347.11v-6.36h3.612v.483h-3.023v4.776z%22 transform=%22translate(-267.09 363.29)%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22M290.34-350.16v-3.31h3.494v.523h-2.957v2.277z%22 transform=%22translate(-267.09 363.29)%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M298.79-350.13v-3.31h3.6v.432h-3.168v2.276z%22 transform=%22translate(-267.09 363.29)%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m286.34-342.22-2.651 17.305h6.428s1.112-16.545-3.777-17.305z%22 transform=%22translate(-267.09 363.29)%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22m33.91 38.38-2.623-18.36H19.569s12.24.523 14.342 18.36z%22 opacity=%22.15%22/%3E%3Cg transform=%22translate(-475.75 422.149)%22%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%231a1a1a%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23f)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%231a1a1a%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23g)%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22381.9%22 x2=%22387.68%22 y1=%22-386.04%22 y2=%22-386.02%22 gradientTransform=%22translate(.53)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22391.1%22 x2=%22393.27%22 y1=%22-401.61%22 y2=%22-401.61%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22395.53%22 x2=%22401.31%22 y1=%22-387.49%22 y2=%22-387.49%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg transform=%22translate(-368.06 412.37)%22%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M393.07-404.07a2.66 2.503 0 0 0-2.659 2.504 2.66 2.503 0 0 0 1.063 2.001c-16.923 14.771-5.84 26.84-5.84 26.84h14.872s7.78-8.476.342-19.915l-5.546 7.742-2.995-2.144 6.215-8.674a38.64 38.64 0 0 0-3.856-3.85 2.66 2.503 0 0 0 1.063-2.001 2.66 2.503 0 0 0-2.659-2.504z%22/%3E%3Cpath fill=%22url(%23b)%22 d=%22M386.47-373.35s-10.266-12.757 6.618-26.134c-4.083 5.062-10.216 13.857-1.513 26.129z%22/%3E%3Cellipse cx=%22392.19%22 cy=%22-401.61%22 fill=%22url(%23c)%22 rx=%221.083%22 ry=%221.199%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M395.53-384.07c.094 0 5.262-7.413 5.262-7.413s.357.38.52.847l-5.02 7.144z%22/%3E%3Cpath fill-opacity=%22.902%22 stroke=%22%23000%22 stroke-width=%22.265%22 d=%22M402.5-388.01c2.846 8.943-2.293 14.667-2.293 14.667h-3.391c2.263-.08 6.966-8.42 5.684-14.667z%22 opacity=%22.15%22/%3E%3Cg transform=%22translate(-107.69 9.782)%22%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23f)%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%222197%22 x2=%222212.6%22 y1=%22-1410.1%22 y2=%22-1410.1%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%222213.6%22 x2=%222220.4%22 y1=%22-1411.9%22 y2=%22-1411.9%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%222201.3%22 x2=%222204.8%22 y1=%22-1392.2%22 y2=%22-1391.4%22 gradientTransform=%22translate(.479)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.086%22 d=%22M366.35-375.17s-3.488-9.303 1.268-17.927l-1.418-8.664s-3.768-.79-6.352-1.385c-.908 1.052-1.713 1.945-1.713 1.945l-12.65 1.653s-1.928.22-1.613 5.243c1.905-.19 2.707-.245 2.882.916l-2.48.311s.124 2.527 1.722 2.551c2.616-.145 6.416-2.123 8.814 2.752-1.826 3.008-7.556 5.75-6.163 12.606z%22 transform=%22matrix(1.1051 0 0 1.1045 -370.081 454.039)%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22M27.943 18.347c-4.454 7.13-5.789 1.128-16.74 2.854 0 0 .01 1.031 1.254 1.141 1.326-.034 6.92-2.423 9.59 2.465 3.145 2.057 5.816-5.142 5.897-6.46z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.086%22 d=%22M360.97-400.57c.086-.122.411-.857.411-.857l7.06-.029c-.173 3.601-5.418 4.298-5.418 4.298%22 transform=%22matrix(1.1051 0 0 1.1045 -370.081 454.039)%22/%3E%3Cg stroke-width=%221.046%22%3E%3Cpath fill=%22%23191919%22 fill-opacity=%22.902%22 d=%22M11.952 14.78c-.602.451-.637.909-.607 1.322.628.216 1.828-.481 1.766-1.533l-1.159.21z%22/%3E%3Cpath d=%22M35.49 16.988c-6.83 1.811-4.474 13.41-5.072 22.296l3.859-.011c-.692.058-3.768-11.733 1.305-19.575l-.489-2.59z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23b)%22 d=%22M2197-1408.2s.181-1.902 1.135-2.251l12.532-1.552 1.972-.064-14.465 2.156s-.584.35-1.174 1.711z%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.279 1571.13)%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22m2213.7-1411.3.474-.995 6 .016-5.71.409z%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.279 1571.13)%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M2202.1-1387.2c-.613-6.495 3.668-7.712 5.86-11.277-1.846 3.608-5.9 6.422-1.98 11.306z%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.279 1571.13)%22/%3E%3Cpath fill=%22%23191919%22 fill-opacity=%22.902%22 d=%22m2211.9-1410.8-.245.516-.92.102c.06.093.063.137.072.242-.134 1.193-2.095 1.087-2.21.176a.52.52 0 0 1 .026-.239l-.55-.182-.857-.283c.077 0 4.684-.332 4.684-.332z%22 style=%22paint-order:normal%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.279 1571.13)%22/%3E%3C/g%3E%3Cg transform=%22translate(-475.75 422.154)%22%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23f)%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22318.32%22 x2=%22324.86%22 y1=%22-327.52%22 y2=%22-327.52%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22317.4%22 x2=%22324.5%22 y1=%22-336.99%22 y2=%22-336.99%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22320.17%22 x2=%22324.51%22 y1=%22-354.41%22 y2=%22-352.55%22 gradientTransform=%22translate(.482)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg stroke-width=%22.911%22 transform=%22matrix(1.0979 0 0 1.0966 -333.172 403.921)%22%3E%3Cg fill=%22%23e7cd97%22 stroke=%22%23191919%22 stroke-linejoin=%22round%22 stroke-width=%221.094%22%3E%3Cpath stroke-width=%221.093%22 d=%22M323.13-345.24c-.106 9.418-6.796 13.016-6.796 13.016v2.992l1.437.834h16.904l1.437-.834v-2.992s-6.69-3.598-6.796-13.016h-3.093z%22/%3E%3Cpath stroke-linecap=%22round%22 d=%22M326.2-359.4c-3.628.015-6.56 2.822-6.56 6.281 0 2.165 1.168 4.177 3.093 5.325-2.24.33-3.625.95-3.625 1.623-.001 1.03 3.187 1.334 7.12 1.334 3.933 0 7.121-.305 7.12-1.334 0-.672-1.386-1.293-3.626-1.623 1.925-1.148 3.094-3.16 3.094-5.325 0-3.469-2.95-6.28-6.588-6.281h-.028z%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath stroke-linecap=%22round%22 d=%22M317.77-328.4v1.743h16.904v-1.743z%22 style=%22paint-order:normal%22/%3E%3C/g%3E%3Crect width=%226.545%22 height=%22.631%22 x=%22318.32%22 y=%22-327.84%22 fill=%22url(%23b)%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22M323.88-342.06c-.578 2.362-1.672 7-6.488 10.148l6.112-.008s1.96-7.566.376-10.14z%22/%3E%3Cpath d=%22M334.08-333.77c-4.244-3.064-4.816-11.458-4.769-11.471-1.953.705-6.19.29-6.19.29 3.484.812 4.464 5.06 10.96 11.181z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M325.15-358.13c-.047-.006-1.68-.089-2.961 1.287-1.333 1.432-2.287 3.89-.744 6.478 2.032 1.52 8.464-7.558 3.705-7.765z%22/%3E%3Cpath d=%22m335.82-332.06.027 2.666-1.176.683-6.34.028s2.275-1.199 1.477-3.361c0-.004 4.353-.013 6.012-.016zM331.21-357.23c.308-.09 4.4 6.01-1.49 9.433-1.058-.448 3.862-3.866 1.49-9.433zM320.43-345.27s8.13.87 11.66-.019c.329-.096 2.32-1.132.477-1.73-.258-.171-.74 1.634-12.137 1.749z%22 opacity=%22.15%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22b%22%3E%3Cstop offset=%220%22 stop-color=%22%23edebea%22/%3E%3Cstop offset=%221%22 stop-color=%22%23edebea%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientTransform=%22translate(-906.01 261.29)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientTransform=%22translate(-906.01 261.29)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23b%22 id=%22e%22 x1=%22563.37%22 x2=%22575.09%22 y1=%22-261.47%22 y2=%22-257.21%22 gradientTransform=%22matrix(1.1146 0 0 1 -224.87 -76.89)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23b%22 id=%22f%22 x1=%22422.39%22 x2=%22423.02%22 y1=%22-437.94%22 y2=%22-437.94%22 gradientTransform=%22matrix(1.1146 0 0 1 -59.405 84.556)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%22417.93%22 x2=%22422.16%22 y1=%22-441.6%22 y2=%22-441.6%22 gradientTransform=%22matrix(1.1146 0 0 1 -59.405 84.556)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22h%22 x1=%22422.03%22 x2=%22425.95%22 y1=%22-445.5%22 y2=%22-445.5%22 gradientTransform=%22matrix(1.1146 0 0 1 -59.405 84.556)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg transform=%22translate(430.27 160.86)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m-415.05-121.83-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22m-394.77-120.68-20.994.009.884-.542 19.247-.015z%22 opacity=%22.5%22/%3E%3Cpath d=%22m-394.77-120.68-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M-415.05-117.13v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22-414.42%22 y=%22-116.49%22 fill=%22url(%23d)%22 opacity=%22.5%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M-414.58-121.83c.57-6.697-6.698-15.67-6.698-15.67s4.201-5.968 16.008-5.968c11.807 0 16.008 5.968 16.008 5.968s-7.27 8.973-6.699 15.67h-9.31z%22/%3E%3Cpath fill=%22%23020202%22 fill-opacity=%22.902%22 fill-rule=%22nonzero%22 d=%22M-402.13-142.69c8.656.89 10.117 5.094 10.044 5.205 0 0-7.176 8.349-6.606 15.046h2.073c-.178-6.58 6.57-15.01 6.57-15.01-.41-1.345-6.44-5.15-12.081-5.241z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23e)%22 fill-rule=%22nonzero%22 d=%22M406.3-338.98c1.878 3 5.263 8.793 5.107 13.822l1.412.004c1.201-11.109-10.072-15.69 9.81-17.465 3.737-.634 1.183-1.732-.228-1.902-5.276-.667-10.953.158-15.39 3.22-1.253.85-1.017 1.588-.711 2.321z%22 opacity=%22.5%22 transform=%22translate(-824.44 202.67)%22/%3E%3Cg transform=%22translate(-819.294 207.721)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M411-363.73v4.529h-4.718v4.825h4.415v3.181h6.651v-3.18h4.414v-4.826h-4.717v-4.529h-3.022z%22/%3E%3Cpath fill=%22url(%23f)%22 d=%22M411.4-351.79v-3.192h.71v2.597c0 .016-.71.595-.71.595z%22 opacity=%22.5%22/%3E%3Cpath fill=%22url(%23g)%22 d=%22M406.97-354.98v-3.605h4.71v.521h-4.056v2.265z%22 opacity=%22.5%22/%3E%3Cpath fill=%22url(%23h)%22 d=%22m411.68-358.58.006-4.52h3.79v.549h-3.112v3.02z%22 opacity=%22.5%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22m415.76-351.78.99-.018.007-3.171 4.346.006v-3.63h-.944v2.775h-4.387z%22 opacity=%22.2%22/%3E%3Crect width=%22.873%22 height=%224.413%22 x=%22415.57%22 y=%22-363.09%22 fill-opacity=%22.902%22 opacity=%22.2%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%221603.1%22 x2=%221608.3%22 y1=%22-390.27%22 y2=%22-390.27%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%221632.5%22 x2=%221637.6%22 y1=%22-392.63%22 y2=%22-392.63%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%221656.6%22 x2=%221665.2%22 y1=%22-391.34%22 y2=%22-391.75%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%221679.6%22 x2=%221691.8%22 y1=%22-382.86%22 y2=%22-382.86%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22391.15%22 x2=%22395.21%22 y1=%22-332.31%22 y2=%22-332.31%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22h%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22i%22 x1=%221609.3%22 x2=%221624.2%22 y1=%22-310.48%22 y2=%22-279.45%22 gradientTransform=%22matrix(.21285 0 0 .21284 114.26 -321.28)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg stroke-width=%221.054%22%3E%3Cg stroke-width=%221.11%22 transform=%22matrix(.2644 0 0 .26425 -408.036 125.22)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%224.54%22 d=%22M1637.8-451.4c-3.467.026-6.265 2.833-6.265 6.286 0 3.232 2.46 5.936 5.687 6.256l-7.106 67.183c-2.958.14-5.876.364-8.728.664l-20.683-63.315a6.29 6.29 0 0 0 4.595-6.048c0-3.471-2.826-6.286-6.312-6.286-3.485 0-6.311 2.815-6.311 6.286 0 3.472 2.826 6.287 6.311 6.287.297 0 .594-.021.888-.062l3.31 66.417a74.941 74.941 0 0 0-5.043 1.558l-31.28-56.64a6.286 6.286 0 0 0 3.763-5.75c0-3.473-2.826-6.287-6.312-6.287s-6.311 2.814-6.312 6.286c0 3.472 2.826 6.287 6.312 6.287.482 0 .963-.056 1.432-.165l17.01 73.509c2.936 10.1 10.961 19.11 24.552 22.752h60.985c13.591-3.642 21.616-12.651 24.553-22.752l17.01-73.51c.468.11.95.165 1.431.166 3.486 0 6.312-2.815 6.312-6.287s-2.826-6.286-6.312-6.286c-3.485 0-6.311 2.814-6.311 6.286a6.286 6.286 0 0 0 3.763 5.752l-31.281 56.639a74.88 74.88 0 0 0-5.043-1.558l3.31-66.417c.294.041.591.062.888.062 3.485 0 6.311-2.815 6.312-6.287 0-3.471-2.827-6.286-6.312-6.286-3.486 0-6.311 2.815-6.312 6.286a6.29 6.29 0 0 0 4.595 6.048l-20.683 63.315c-2.851-.3-5.77-.523-8.728-.664l-7.106-67.183c3.228-.32 5.685-3.024 5.685-6.256 0-3.453-2.796-6.26-6.263-6.286z%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22url(%23b)%22 d=%22m1605.7-367.96 2.61.131-5.198-48.888z%22 opacity=%22.5%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22m1632.5-371.73 5.081-47.365-2.51 48.918z%22 opacity=%22.5%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22m1656.6-370.29 15.57-47.552c-5.98 19.434-8.41 29.224-13.462 49.002z%22 opacity=%22.5%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m1679.6-365.3 23.017-40.51-21.476 41.904z%22 opacity=%22.5%22/%3E%3Cg fill=%22%23fefefe%22%3E%3Cellipse cx=%221562.1%22 cy=%22-429.79%22 opacity=%22.5%22 rx=%222.024%22 ry=%221.924%22 style=%22paint-order:markers fill stroke%22/%3E%3Cellipse cx=%221596.5%22 cy=%22-441.61%22 opacity=%22.5%22 rx=%221.945%22 ry=%221.865%22 style=%22paint-order:markers fill stroke%22/%3E%3Cellipse cx=%221636.2%22 cy=%22-447.06%22 opacity=%22.5%22 rx=%221.885%22 ry=%222.025%22 style=%22paint-order:markers fill stroke%22/%3E%3Cellipse cx=%221674.8%22 cy=%22-442.51%22 opacity=%22.5%22 rx=%221.491%22 ry=%221.566%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3Cellipse cx=%221709.9%22 cy=%22-430.59%22 fill=%22%23fff%22 opacity=%22.5%22 rx=%221.464%22 ry=%221.51%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3Cg stroke-width=%221.232%22%3E%3Cpath d=%22M7122.4-1814.1c9.445 8.768-8.948 8.401-2.548 12.038-15.954 38.4-7.679 101.82-86.184 96.632h45.738c13.592-3.642 21.616-12.65 24.553-22.753l17.009-73.51c.469.108.95.164 1.432.164 3.486 0 6.312-2.813 6.311-6.285 0-3.471-2.826-6.286-6.311-6.286z%22 opacity=%22.2%22 style=%22paint-order:markers fill stroke%22 transform=%22matrix(.2644 0 0 .26425 -1838.724 489.69)%22/%3E%3Cpath d=%22m34.171 28.051-2.141-.05 2.675-10.234zM27.033 26.889l-1.67.57.51-11.126zM20.66 27.18l-1.385.234-2.662-12.343zM14.527 28.474l-.982.674-5.242-11.675z%22 opacity=%22.2%22/%3E%3C/g%3E%3Cg stroke-width=%221.232%22%3E%3Cpath d=%22M35.278 7.267s2.691 1.255.069 2.94c.03-.008.957-1.782-.069-2.94zM25.038 6.222s2.692 1.255.07 2.94c.029-.008.956-1.782-.07-2.94zM14.69 7.249s2.692 1.255.07 2.94c.03-.008.956-1.782-.07-2.94zM5.713 10.555s2.691 1.255.069 2.94c.03-.008.957-1.782-.069-2.94z%22 opacity=%22.2%22/%3E%3C/g%3E%3C/g%3E%3Cpath fill=%22url(%23f)%22 d=%22m394.01-327.17 1.195.02-4.055-11.366z%22 opacity=%22.5%22 transform=%22translate(-383.47 356.738)%22/%3E%3Cg transform=%22translate(-475.293 422.159)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23g)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22 opacity=%22.5%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23h)%22 opacity=%22.5%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3Cpath fill=%22url(%23i)%22 d=%22M461.41-384.6c-5.05.015-8.319 1.434-8.319 1.434-1.689.594-3.045 1.233-3.201 2.29-.147.992.69 1.931 1.123 2.498 1.291 1.69 2.337 2.41 3.32 2.836 1.44.459.983-1.009.522-1.874-2.59-4.469 6.83-6.09 10.958-5.871 3.209.251 6.433.767 8.86 1.398-1.813-1.167-7.063-2.268-12.267-2.676-.327-.025-.66-.036-.996-.035z%22 opacity=%22.5%22 transform=%22translate(-438.1 412.49)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22284.57%22 x2=%22288.14%22 y1=%22-399.25%22 y2=%22-399.25%22 gradientTransform=%22matrix(1.0258 0 0 1.0253 -14.96 3.762)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22293.02%22 x2=%22296.47%22 y1=%22-400.76%22 y2=%22-400.76%22 gradientTransform=%22matrix(1.0258 0 0 1.0253 -14.96 3.762)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22301.35%22 x2=%22304.9%22 y1=%22-400.73%22 y2=%22-400.73%22 gradientTransform=%22matrix(1.0258 0 0 1.0253 -14.96 3.762)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22285.93%22 x2=%22292.3%22 y1=%22-383.26%22 y2=%22-383.26%22 gradientTransform=%22matrix(1.0258 0 0 1.0253 -14.43 3.762)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg stroke-width=%221.012%22%3E%3Cg fill=%22%23514b46%22 stroke=%22%23000%22 stroke-width=%221.215%22%3E%3Cpath stroke-linejoin=%22round%22 d=%22M276.32-409.42v7.68l4.154 3.144-2.826 19.346h19.46l-2.827-19.346 4.155-3.143v-7.681h-4.91v3.372h-3.749v-3.372h-4.798v3.372h-3.748v-3.372z%22 transform=%22matrix(.98758 0 0 .98775 -258.811 413.63)%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22M280.48-398.59h13.807M298.44-401.74h-22.116%22 transform=%22matrix(.98758 0 0 .98775 -258.811 413.63)%22/%3E%3C/g%3E%3Cpath fill=%22url(%23b)%22 d=%22M276.95-402.38v-6.44h3.658v.49h-3.062v4.835z%22 opacity=%22.5%22 transform=%22matrix(.98758 0 0 .98775 -258.811 413.63)%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22M285.62-405.47v-3.351h3.538v.53h-2.995v2.304z%22 opacity=%22.5%22 transform=%22matrix(.98758 0 0 .98775 -258.811 413.63)%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M294.16-405.44v-3.351h3.644v.437h-3.207v2.305z%22 opacity=%22.5%22 transform=%22matrix(.98758 0 0 .98775 -258.811 413.63)%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m281.56-397.43-2.684 17.52h6.509s1.126-16.751-3.825-17.52z%22 opacity=%22.5%22 transform=%22matrix(.98758 0 0 .98775 -258.811 413.63)%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22m33.908 38.384-2.624-18.36H19.566s12.24.522 14.341 18.36z%22 opacity=%22.2%22/%3E%3C/g%3E%3Cg transform=%22translate(-475.74 422.151)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23f)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22 opacity=%22.4%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23g)%22 opacity=%22.4%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22381.9%22 x2=%22388.19%22 y1=%22-386.04%22 y2=%22-386.21%22 gradientTransform=%22translate(.53)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22391.1%22 x2=%22393.27%22 y1=%22-401.61%22 y2=%22-401.61%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22393.32%22 x2=%22401.31%22 y1=%22-388.47%22 y2=%22-387.49%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg transform=%22translate(-368.06 412.37)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M393.07-404.07a2.66 2.503 0 0 0-2.659 2.504 2.66 2.503 0 0 0 1.063 2.001c-16.923 14.771-5.84 26.84-5.84 26.84h14.872s7.78-8.476.342-19.915l-5.546 7.742-2.995-2.144 6.215-8.674a38.64 38.64 0 0 0-3.856-3.85 2.66 2.503 0 0 0 1.063-2.001 2.66 2.503 0 0 0-2.659-2.504z%22/%3E%3Cpath fill=%22url(%23b)%22 d=%22M386.47-373.35s-10.266-12.757 6.618-26.134c-4.083 5.062-10.216 13.857-1.513 26.129z%22 opacity=%22.5%22/%3E%3Cellipse cx=%22392.19%22 cy=%22-401.61%22 fill=%22url(%23c)%22 opacity=%22.5%22 rx=%221.083%22 ry=%221.199%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M395.53-384.07c.094 0 5.262-7.413 5.262-7.413s.357.38.52.847l-5.02 7.144z%22 opacity=%22.5%22/%3E%3Cpath fill-opacity=%22.902%22 stroke=%22%23000%22 stroke-width=%22.265%22 d=%22M402.5-388.01c2.846 8.943-2.293 14.667-2.293 14.667h-3.391c2.263-.08 6.966-8.42 5.684-14.667z%22 opacity=%22.2%22/%3E%3Cg transform=%22translate(-107.69 9.782)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22 opacity=%22.5%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23f)%22 opacity=%22.5%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%222197%22 x2=%222212.6%22 y1=%22-1410.1%22 y2=%22-1410.1%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%222213.6%22 x2=%222220.4%22 y1=%22-1411.9%22 y2=%22-1411.9%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%222201.3%22 x2=%222204.8%22 y1=%22-1392.2%22 y2=%22-1391.4%22 gradientTransform=%22translate(.479)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22490.24%22 x2=%22511.24%22 y1=%22-382.24%22 y2=%22-382.24%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22491.59%22 x2=%22499.17%22 y1=%22-377.43%22 y2=%22-377.43%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.086%22 d=%22M366.35-375.17s-3.488-9.303 1.268-17.927l-1.418-8.664s-3.768-.79-6.352-1.385c-.908 1.052-1.713 1.945-1.713 1.945l-12.65 1.653s-1.928.22-1.613 5.243c1.905-.19 2.707-.245 2.882.916l-2.48.311s.124 2.527 1.722 2.551c2.616-.145 6.416-2.123 8.814 2.752-1.826 3.008-7.556 5.75-6.163 12.606z%22 transform=%22matrix(1.1051 0 0 1.1045 -370.071 454.039)%22/%3E%3Cpath fill-opacity=%22.902%22 d=%22M27.953 18.347c-4.454 7.13-5.789 1.128-16.74 2.854 0 0 .01 1.031 1.254 1.141 1.326-.034 6.92-2.423 9.59 2.465 3.145 2.057 5.816-5.142 5.897-6.46z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.086%22 d=%22M360.97-400.57c.086-.122.411-.857.411-.857l7.06-.029c-.173 3.601-5.418 4.298-5.418 4.298%22 transform=%22matrix(1.1051 0 0 1.1045 -370.071 454.039)%22/%3E%3Cg stroke-width=%221.046%22%3E%3Cpath d=%22M11.962 14.78c-.602.451-.637.909-.607 1.322.628.216 1.828-.481 1.766-1.533l-1.159.21z%22/%3E%3Cpath d=%22M35.5 16.988c-6.83 1.811-4.474 13.41-5.072 22.296l3.859-.011c-.692.058-3.768-11.733 1.305-19.575l-.489-2.59z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23b)%22 d=%22M2197-1408.2s.181-1.902 1.135-2.251l12.532-1.552 1.972-.064-14.465 2.156s-.584.35-1.174 1.711z%22 opacity=%22.5%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.269 1571.13)%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22m2213.7-1411.3.551-.986 6.075-.048-5.81.42z%22 opacity=%22.5%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.269 1571.13)%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M2202.1-1387.2c-.613-6.495 3.668-7.712 5.86-11.277-1.846 3.608-5.9 6.422-1.98 11.306z%22 opacity=%22.5%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.269 1571.13)%22/%3E%3Cpath d=%22m2211.9-1410.8-.245.516-.92.102c.06.093.063.137.072.242-.134 1.193-2.095 1.087-2.21.176a.52.52 0 0 1 .026-.239l-.55-.182-.857-.283c.077 0 4.684-.332 4.684-.332z%22 style=%22paint-order:normal%22 transform=%22matrix(1.1051 0 0 1.1045 -2417.269 1571.13)%22/%3E%3C/g%3E%3Cg transform=%22translate(-475.74 422.154)%22%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22m490.96-383.12-1.27.788v3.129l1.27.788h19.564l1.27-.788v-3.13l-1.27-.787h-9.782z%22/%3E%3Cpath fill=%22url(%23e)%22 d=%22m511.24-381.97-20.994.009.884-.542 19.247-.015z%22 opacity=%22.5%22/%3E%3Cpath d=%22m511.24-381.97-.008 2.404-.866.523-8.44-.01s2.95-.628 1.94-2.894c-.001-.004 5.277-.02 7.374-.023z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23514b46%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M490.96-378.42v1.96h19.564v-1.96z%22 style=%22paint-order:normal%22/%3E%3Crect width=%227.576%22 height=%22.709%22 x=%22491.59%22 y=%22-377.79%22 fill=%22url(%23f)%22 opacity=%22.5%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='governor'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22318.32%22 x2=%22324.86%22 y1=%22-327.52%22 y2=%22-327.52%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22317.4%22 x2=%22324.5%22 y1=%22-336.99%22 y2=%22-336.99%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22320.17%22 x2=%22324.12%22 y1=%22-354.41%22 y2=%22-353.2%22 gradientTransform=%22translate(.482)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cg stroke-width=%22.911%22 transform=%22matrix(1.0979 0 0 1.0966 -333.172 403.921)%22%3E%3Cg stroke=%22%23000%22 stroke-linejoin=%22round%22 stroke-width=%221.094%22%3E%3Cpath fill=%22%23514b46%22 stroke-width=%221.093%22 d=%22M323.13-345.24c-.106 9.418-6.796 13.016-6.796 13.016v2.992l1.437.834h16.904l1.437-.834v-2.992s-6.69-3.598-6.796-13.016h-3.093z%22/%3E%3Cpath fill=%22%23514b46%22 stroke-linecap=%22round%22 d=%22M326.2-359.4c-3.628.015-6.56 2.822-6.56 6.281 0 2.165 1.168 4.177 3.093 5.325-2.24.33-3.625.95-3.625 1.623-.001 1.03 3.187 1.334 7.12 1.334 3.933 0 7.121-.305 7.12-1.334 0-.672-1.386-1.293-3.626-1.623 1.925-1.148 3.094-3.16 3.094-5.325 0-3.469-2.95-6.28-6.588-6.281h-.028z%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22%234d4742%22 stroke-linecap=%22round%22 d=%22M317.77-328.4v1.743h16.904v-1.743z%22 style=%22paint-order:normal%22/%3E%3C/g%3E%3Crect width=%226.545%22 height=%22.631%22 x=%22318.32%22 y=%22-327.84%22 fill=%22url(%23b)%22 opacity=%22.5%22 ry=%220%22 style=%22paint-order:markers fill stroke%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22M323.88-342.06c-.578 2.362-1.672 7-6.488 10.148l6.112-.008s1.96-7.566.376-10.14z%22 opacity=%22.5%22/%3E%3Cpath d=%22M334.08-333.77c-4.244-3.064-4.816-11.458-4.769-11.471-1.953.705-6.19.29-6.19.29 3.484.812 4.464 5.06 10.96 11.181z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23d)%22 d=%22M325.15-358.13c-.047-.006-1.68-.089-2.961 1.287-1.333 1.432-2.287 3.89-.744 6.478 2.032 1.52 8.464-7.558 3.705-7.765z%22 opacity=%22.5%22/%3E%3Cpath d=%22m335.82-332.06.027 2.666-1.176.683-6.34.028s2.275-1.199 1.477-3.361c0-.004 4.353-.013 6.012-.016zM331.21-357.23c.308-.09 4.4 6.01-1.49 9.433-1.058-.448 3.862-3.866 1.49-9.433zM320.43-345.27s8.13.87 11.66-.019c.329-.096 2.32-1.132.477-1.73-.258-.171-.74 1.634-12.137 1.749z%22 opacity=%22.2%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* horsey */
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cg stroke=%22%23000%22 stroke-width=%227.44%22%3E%3Cpath d=%22M103.88 363.1c0-1.41 2.36-3.14 5.74-4.2l5.75-1.82-4.43-6.67c-7.9-11.89-10.44-24.68-10.47-52.67-.01-14.69.87-31.05 1.97-36.35l1.99-9.64h-5.55c-3.05 0-6.85.55-8.45 1.23-2.34 1-3.77.79-7.24-1.05-3.56-1.88-4.15-3.46-3.33-8.9.86-5.65 3-8.34 14.8-18.48 7.75-6.66 19.78-15.06 27.42-19.14 10.04-5.35 15.46-9.46 20.62-15.62 3.85-4.6 8.6-9.68 10.53-11.3 3.8-3.17 3.87-3.13-8.63-4.32-13-1.23-8.94-10 6.06-13.08l7.61-1.56-6.75-7.55C134.17 132.62 118.48 95 123.2 84.12c1.33-3.04 3.14-3.93 11.19-5.51 5.28-1.03 14.24-1.9 19.92-1.92 15.97-.05 20.62-.87 20.62-3.63 0-1.32 1.58-3.72 3.5-5.33 4.27-3.56 1.24-3.85-9.86-.93-10.76 2.83-17.76 2.58-20.67-.75-4.1-4.68-5.21-9.41-3.64-15.4 1.8-6.86 4.41-7.6 18.97-5.34 5.72.89 10.76 1.45 11.22 1.25.45-.2-.77-1.68-2.72-3.3a19.47 19.47 0 0 1-4.97-6.82c-1.31-3.54-.9-3.97 5.09-5.17 8.17-1.64 55.64-2.56 60.36-1.17 3.02.89 2.99 1.67-.23 6.73-2 3.15-4.5 6.59-5.53 7.64-1.6 1.6-1.22 1.78 2.52 1.09 14.88-2.73 24.32-3.7 26.56-2.73 3.93 1.7 4.96 17.13 1.34 20-2.78 2.2-4.44 2.46-15.03 2.27-6.54-.12-11.9 0-11.9.28s2.1 2.28 4.67 4.46c2.57 2.17 4.06 4.38 3.3 4.9-.81.57 3.8.96 11.45.96 7.05 0 16.4.64 20.8 1.43l7.97 1.44-1.21 13.65c-2.09 23.39-7.19 38.46-19.69 58.15-2.53 3.99-3.47 7.05-2.2 7.23 1.2.18 4.81 1.21 8.03 2.3 8.22 2.8 7.82 7.08-1.03 10.9-5.89 2.54-6.87 3.7-6.84 8.08.02 2.81 1.54 8.17 3.37 11.9 3.08 6.27 4.5 7.3 19.21 13.99 22.69 10.3 30.57 17.79 31.74 30.15 1.22 12.93-3.23 16.13-18.6 13.34-3.81-.7-4.17-.47-2.84 1.8 4.37 7.53 9.05 33.01 9.2 50.15.18 19.22-2.4 29.28-11.23 43.94-2.8 4.63-2.66 5.27 1.68 8.31 4.24 2.97 4.36 3.45 1.18 4.82-3.11 1.35-4.3 1.35-10.21.08-4.77-1.02-8.3-1.17-12.25-.5-12.89 2.16-70.96 5.01-104.11 5.12-27.16.08-36.25.46-43.26 1.8-12 2.3-15.19 2.17-15.19-.68z%22 transform=%22matrix(.83537 0 0 1 39.07 -.05)%22/%3E%3Cpath d=%22M270.13 98.91c1.32-14.53 1.04-18.04-1.52-18.95-1.86-.67-15.01-1.26-32.18-1.46-15.97-.18-29.83-.67-30.8-1.09-3.14-1.36 3.08-2.92 13.8-3.44 5.78-.28 10.51-.69 10.51-.9 0-1.28-7.63-7.96-10.8-9.48-6.61-3.15-.62-3.82 15.19-1.7 8.04 1.09 15.24 1.7 16 1.38 2.27-.98 2.86-15.67.68-17.05-1.6-1.03-5.14-.74-17.26 1.4-8.38 1.49-15.9 2.42-16.7 2.07-.8-.34.73-2.98 3.4-5.86 2.69-2.87 5.56-6.74 6.4-8.59l1.51-3.36-23.85.55c-13.12.3-25.64.86-27.84 1.24-5.08.88-3.6 3.96 5.42 11.3 3.63 2.95 6.6 5.73 6.6 6.18 0 1.37-5.5.91-20.5-1.72-7.92-1.39-15.06-2.24-15.85-1.9-2.05.89-1.83 13.27.3 16.55l1.76 2.72 13.85-3.01c8.12-1.78 15.62-2.78 18.12-2.44 4.12.56 4.1.76-.58 5.62-4.6 4.78-4.66 5.19-1.03 7.91 4.61 3.47 4.88 3.42-22.2 4.21-11.22.33-23.08 1.15-26.36 1.82-5.25 1.08-6.04 1.9-6.65 6.91-1.98 16.41 19.75 59.52 35.11 69.64 4.68 3.08 2.92 5.27-4.24 5.27-7.79 0-17.57 3.62-17.57 6.5 0 2.01 1.4 2.48 9.16 3.01 11.47.8 11.57 1.66 1.46 12.49-10.96 11.72-25.6 31.37-32.35 43.39-11.36 20.23-13.61 31.29-13.58 66.65.03 34.4 1.97 43.67 12.1 57.71l4.42 6.13-6.65 1.49c-3.66.81-6.65 1.68-6.65 1.93 0 .63 11.9-1.4 15.3-2.62 1.83-.66 11.66-.77 27.76-.32 25.57.71 62.57-.76 101.86-4.07 12.75-1.07 18.98-1.2 22.2-.46 7.18 1.66 8.24 1.2 2.9-1.24l-4.96-2.28 5.55-10.6c9-17.18 11.27-27.99 9.72-46.1-2.4-27.94-6.87-41.35-26.76-80.18-8.4-16.37-13.68-29.1-14.09-33.9-.61-7.26-.3-7.83 5.57-10.18 8.79-3.51 8.5-7.69-.66-9.33-8.62-1.54-8.73-3.12-1.01-15.63 6.66-10.8 11.6-18.92 12.56-26.65 2.8-7.35 2.55-9.75 3.44-19.56z%22 transform=%22matrix(.83537 0 0 1 39.07 -.05)%22/%3E%3Cpath d=%22M99.94 248.2c3.43 1.49 3.83 1.32 5.14-2.12 5.14-13.46 17.35-34.3 22.93-39.12.77-.66-1.84.35-5.79 2.26-10.16 4.9-34.19 26.21-35.87 31.82-.76 2.55-.66 5.88.23 7.4l1.6 2.76 4.02-2.3c3.71-2.12 4.31-2.17 7.74-.7zm203.3-11.85c.06-10.82-10.86-21.8-29.22-29.39l-6.66-2.75 7.59 15.12c7.95 15.84 14.82 25 18.74 25 1.28 0 3.12.34 4.09.76 3.38 1.46 5.43-1.82 5.47-8.74z%22 transform=%22matrix(.83537 0 0 1 39.07 -.05)%22/%3E%3C/g%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M140.8 352.64c-5.33-8.9-7.83-15.74-9.21-25.21-1.1-7.52-1.68-31.34-1.15-46.96.74-21.32 2.04-29.4 6.72-41.79 5.32-14.07 17.33-34.52 30.8-52.42 6.42-8.55 7.6-11.05 6.21-13.23-.84-1.34-2.17-1.74-7.78-2.4-2.86-.32-5.6-.76-6.07-.97-.82-.37-.8-.44.38-1.44 2.02-1.73 6.4-3.23 10.89-3.74 6.02-.7 6.96-1 7.93-2.55 1.18-1.9.6-3.22-2.92-6.52-10.35-9.74-24.1-39.11-27.38-58.52-.94-5.56-.66-11.81.58-13.02 1.81-1.75 9.24-2.59 31.26-3.52 13.37-.56 15.02-.87 15.44-2.89.24-1.14 0-1.62-1.68-3.38-1.08-1.12-1.97-2.24-1.96-2.47 0-.23 1.21-2.02 2.7-3.97 3.05-4 3.42-5 2.4-6.5-1.5-2.23-7.45-1.77-20.65 1.6-4.26 1.09-8 1.98-8.3 1.98-1.48 0-2.96-7.97-2.44-13.05l.28-2.71 2.65.3c1.46.16 6.84 1.1 11.97 2.1 10.96 2.12 14.82 2.4 15.85 1.18 1.28-1.53.38-3.05-5.08-8.66-5.66-5.8-7.06-7.71-6.16-8.38.3-.21 2.74-.54 5.45-.73 4.58-.31 29.8-1.27 34.32-1.3l2.03-.01-.9 1.9a44.17 44.17 0 0 1-3.23 5.17c-3.72 5.19-4.78 7.1-4.78 8.63 0 1.12.24 1.5 1.1 1.76 1.59.47 6.05-.08 14.49-1.8 4.05-.82 8.63-1.64 10.17-1.83 2.56-.31 2.84-.25 3.27.7.58 1.3.6 9.31.02 11.82-.54 2.32-.11 2.3-11.99.62-11-1.55-15.3-1.63-16.68-.3-.86.83-.92 1.1-.48 2.24a5.8 5.8 0 0 0 2.13 2.3c.9.55 3.02 2.32 4.71 3.93l3.07 2.93-2.27.34c-1.25.2-4.64.58-7.54.87-6.09.6-9.52 1.66-9.88 3.01-.38 1.44.14 2.47 1.56 3.06.77.32 9.37.75 21.34 1.06 25.4.66 30.73 1.05 31.55 2.32 1.2 1.88-.37 26.18-2.15 33.22-.55 2.21-1.35 5.38-1.75 7.05-1.11 4.5-3.13 9.3-7.64 18.22-4.95 9.76-6.49 13.5-6.49 15.83 0 3.32 1.15 4.34 6.53 5.79 1.61.43 3.38 1.14 3.93 1.57.96.75.97.8.21 1.82-.42.57-2.3 1.9-4.2 2.95-4.58 2.56-5.2 3.57-5.2 8.48 0 7.29 2.64 15.46 13.2 40.75 14.43 34.58 17.8 45.88 20.1 67.2 2.08 19.3 1.38 30.7-2.6 42.78A376.2 376.2 0 0 1 268.4 350c-.69 1.45-.7 1.71-.15 2.14.43.33-.8.49-3.8.5-2.42 0-6.5.23-9.05.49-31.01 3.21-50.1 4.2-82.4 4.25l-29.34.05z%22/%3E%3Cpath d=%22M112.59 247.95c-.5-1.1-.5-1.12-.5-3.43.01-1.69.08-2.53.26-3.08.58-1.81 2.4-4.43 6.42-9.23a153.86 153.86 0 0 1 14.86-15.43c3.35-3.01 7.75-6.42 7.96-6.17.04.05-.18.52-.5 1.05a175.7 175.7 0 0 0-7.78 14.94c-1.8 3.86-5.56 13-6.6 16.05-1.78 5.22-1.65 4.9-2.05 4.85-.2-.03-1.1-.4-2-.84-2.93-1.4-3.8-1.29-7.2.98a29 29 0 0 1-2.25 1.42c-.06 0-.34-.5-.62-1.11zm175.2-4.42c-.43-.19-1.53-.46-2.45-.6-1.5-.24-1.75-.33-2.47-.92-2.7-2.23-6.75-9.16-11.26-19.26-1.97-4.43-6.53-15.43-6.44-15.54.1-.13 3.35 1.49 6.03 3.02 8.99 5.12 15.39 11.5 18.25 18.17a18 18 0 0 1 1.68 7.32c.16 4.71-.75 8.2-2.11 8.16-.25-.01-.8-.17-1.23-.35z%22/%3E%3C/g%3E%3Cpath stroke=%22%23000%22 stroke-width=%221.83%22 d=%22M260.08 123.35c-1.63 2.65-14.8 5.87-24.14 5.9-8.3.02-16.1-3.5-18.08-8.16-1.12-2.63-.46-3.49 4.47-5.76 10.05-4.64 33.03-5.78 37-1.84.8.79 1.96 2.28 2.53 4.93-.47 1.41-1.05 3.75-1.78 4.93zm-60.91 18.07c-1.72-1.43 4.02-7.02 8.47-8.25 3.9-1.08 4.99-.83 10.8 2.45 6.15 3.46 7.23 5.52 3.24 6.18-.99.16-3.78-1.29-6.21-3.23-3.61-2.87-4.93-3.3-7.18-2.33-1.52.65-2.76 1.74-2.76 2.42 0 1.6-5.1 3.81-6.36 2.76zm-20.09-11.87c-5.55-.55-11.83-5.74-11.84-9.78 0-1.69 1.96-4.58 4.36-6.43 3.75-2.88 5.62-3.4 13.03-3.65 7.8-.27 9.56.11 17.65 3.79 4.95 2.25 8.99 4.68 8.99 5.4 0 3.2-20.06 11.8-26.25 11.24l-5.94-.57zm-10.44-25.6c-2.8-1.45 1.92-3.58 15.27-6.9 9.4-2.33 15.03-3.23 16.26-2.6 2.1 1.08-11.32 6.28-22.36 8.66-7.55 1.63-7.62 1.64-9.17.84zm75.93-2.4c-10.05-2.58-17.49-6.56-14.84-7.93 1.32-.68 3.62-.32 7.14 1.1 2.85 1.16 8.71 3.08 13.01 4.25 13.34 3.64 8.31 6.09-5.31 2.58z%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-width=%222%22 d=%22M155.76 116.46c-.43-2.66.38-5.78 1.8-6.92 2.29-1.85 1.95-2.08-2.97-2.08-6.35 0-12.95 3.65-12.95 7.16 0 2.99 6.1 6.69 11.01 6.69 3.23 0 3.75-.82 3.1-4.85zm23.57-1.46c1.92-1.34 1.25-2.07-3.31-3.58l-5.73-1.89-1.23 4.3c-.67 2.36-2.73 5.12-4.58 6.13-2.18 1.2-.58.94 4.54-.72 4.34-1.4 8.98-3.31 10.3-4.24zM236.15 119.18c5-1.13 7.75-5.58 4.72-7.67-1.26-.87-5.9-1.71-10.32-1.87-7.89-.3-8.06-.22-9.4 4-.76 2.36-2.09 5.1-2.97 6.1-1.42 1.59-.72 1.7 6.2 1.07 4.28-.4 9.58-1.13 11.77-1.63zm-25.65-6.15c2.09-2.77 2.02-2.8-3-1.34-4.88 1.43-5.54 3.27-2.37 6.65 1.08 1.16 1.6 1.05 2.32-.5.5-1.08 1.88-3.25 3.05-4.8z%22 transform=%22matrix(.83537 0 0 1 54.66 5)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath stroke=%22%23000%22 stroke-width=%2210%22 d=%22m150.84 369.29-35.71-1.96-15.28-.85 1.75-4.25c.96-2.33 1.73-5.16 1.7-6.27-1.3-56.45 1.29-66.52 23.77-92.15 5.54-6.32 9.46-11.83 8.7-12.25-1.96-1.1-38.06 8.77-42.62 11.66-3.16 2-24.5 9.51-25.49 8.97-1.9-1.07 16.76-13.36 33.13-21.84 23.51-12.17 30.65-15.19 44.04-18.63 29.74-7.63 29-7.3 33.13-14.7 2.25-4.04 4.1-12.43 4.34-19.72.4-11.9.08-12.85-5.3-15.23-13.34-5.9-27.7-14.56-32.15-19.38-2.63-2.84-5.59-5.5-6.57-5.91-.99-.4-2.86-11.3-4.17-24.22-1.3-12.91-4.1-29.23-6.2-36.26-4.22-14.11-8.44-39.33-6.74-40.32.6-.35 3.8 1.32 7.13 3.7 5.59 4 10.91 5.73 10.23 3.32-1.15-4.08.75-13.79 2.7-13.79 1.31 0 2.4.86 2.4 1.9 0 2.26 12.09 12.9 14.65 12.9.98 0 2.49-1.78 3.34-3.96 1.15-2.93.2-5-3.66-7.92-3.94-2.99-4.82-4.97-3.6-8.08 3.68-9.4 18.38-15.02 39.24-15.02 16.67 0 22.06 3.55 24.53 16.13 2.7 13.8 4.65 14.07 15.45 2.12 3.72-4.12 7.71-7.48 8.88-7.48 1.16 0 2.11 3.93 2.11 8.74 0 10.67 3.84 11.49 10.96 2.33l4.95-6.36-.54 54.22c-.63 61.95-.6 61.82-20.65 74.98-7.01 4.6-11.23 8.55-10.55 9.86.63 1.21 3.4 7.65 6.15 14.31 7.88 19.06 10.92 22.46 27.25 30.46 26.38 12.93 59.35 33.6 59.35 37.2 0 .7 2.25 2.87 5 4.82 7.87 5.6 4.24 6.84-6.26 2.13-17.79-7.96-37.38-14.92-40.85-14.49-2.75.34-1.48 3.7 6.2 16.52 13.45 22.41 17.37 37.77 16.32 64-.61 15.49.88 24.7-1.45 25.98-2.66 1.45-5.46-2.27-3.8-7.86 3.14-10.55 1.51-46.03-2.62-57.11-5.78-15.52-21.4-41.38-36.2-59.94-17.7-22.17-32.49-48.95-32.49-58.8 0-1.34 4.2-4.55 9.33-7.14 5.13-2.6 11.82-7.9 14.86-11.77 5.43-6.93 5.53-7.93 5.7-56.63.16-49.23.13-49.53-4.26-43.9-5.62 7.21-8.54 5.62-9.36-5.1-.35-4.6-1.39-8.36-2.3-8.37-.9 0-5.1 3.92-9.34 8.73-4.23 4.81-8.5 8.75-9.49 8.75-.98 0-2.53-3.32-3.44-7.38-.9-4.06-2.49-7.67-3.52-8.03-1.9-.65-7.77 8.48-8.56 13.31-.85 5.26-5.6 3.4-8.48-3.33-4.48-10.46-7.69-7.15-9.48 9.8-.32 2.94-4.29.24-7.94-5.38-8.27-12.76-11.72-12.84-13.34-.3-.57 4.42-1.89 8.04-2.92 8.04-1.04 0-5.83-3.33-10.66-7.4-4.82-4.07-9.4-7.4-10.18-7.4-.78 0-.8 3.33-.05 7.4 1.58 8.54-1.85 9.87-8.72 3.36-9-8.54-9.2-4.79-1.37 26.24a268.58 268.58 0 0 1 6.16 38.34c1.02 14.04 2.57 21.02 5.56 24.92 4.85 6.34 29.06 21.44 38.96 24.3 5.24 1.52 6.56 2.69 5.61 4.97-.68 1.65-1.68 7.83-2.21 13.75-1.48 16.28-6.35 22.18-41.1 49.78-28.6 22.7-41.39 51.52-38.53 86.78.81 9.99 2.03 19.18 2.7 20.42.7 1.3-.6 2.85-3.1 3.67-3.74 1.24-3.84 1.6-.7 2.77 1.98.74 5.77 1.37 8.41 1.4 2.65.02 15.08.66 27.64 1.4 43.87 2.64 149.27 1.11 159.23-2.3 1-.33 1.8-.02 1.8.7 0 4.47-96.85 7.09-151.41 4.1z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M171.08 367.3c-28.63-.56-57.8-2-63.3-3.13-3.86-.8-4.51-1.83-1.63-2.58 2.85-.73 3.67-2.68 2.78-6.59-1.65-7.23-2.97-26.55-2.35-34.36 1.79-22.35 9.82-40.93 24.66-57.03 2.33-2.53 12.48-11.5 22.56-19.92 26.75-22.37 30.53-27.43 32.66-43.8l1.56-11.83.59-4.35-6.17-2.29c-12.54-4.66-35.78-19.65-39.43-25.43-1.72-2.73-3.88-13.54-4.65-23.3-.9-11.38-3.83-28.67-7.53-44.3-4.02-16.97-4.9-23.44-3.19-23.44.67 0 3.44 1.72 6.16 3.83 2.71 2.1 5.33 3.82 5.81 3.82 2.47 0 3.2-2.42 2.56-8.42-.36-3.37-.36-6.12 0-6.12.35 0 4.38 2.92 8.96 6.5 10.94 8.52 11.7 8.84 13.32 5.6.7-1.4 1.56-4.56 1.93-7.05.66-4.5 2.12-8.11 3.27-8.11 1.25 0 5.52 4.34 8.3 8.44 3.32 4.87 6.2 7.63 7.99 7.63.85 0 1.55-1.98 2.23-6.32 1.07-6.77 2.42-10.52 3.8-10.52.76 0 4.8 6.17 4.8 7.34 0 .25.87 1.46 1.93 2.69 1.98 2.27 5.32 2.98 5.95 1.26 2.79-7.63 3.81-9.81 5.77-12.27 1.27-1.6 2.7-2.7 3.18-2.46.48.24 1.32 1.9 1.88 3.67 2.8 8.91 3.85 11.25 5.06 11.25.71 0 5.15-3.99 9.85-8.87s8.77-8.7 9.04-8.48c.26.21 1.08 3.9 1.8 8.2.74 4.29 1.57 8.1 1.85 8.48 1.16 1.54 4.24.48 7.1-2.43 2.63-2.68 3.14-2.92 3.71-1.73.97 2.01.9 79.72-.07 87.98-.51 4.3-1.55 8.13-2.7 10-2.67 4.28-9.84 10.57-15.95 14a59.73 59.73 0 0 0-7.9 5.24c-2.4 2.08-2.6 2.65-1.99 5.63 2.35 11.55 14.58 32.87 32.18 56.15 11.42 15.08 18.85 26.21 25.66 38.44 7.85 14.06 10.55 20.4 12.26 28.8 2.07 10.16 2.86 36.83 1.38 46.66-.87 5.79-.92 8.36-.18 9.5.95 1.45.69 1.59-3.85 2.03-17.79 1.74-81.17 2.78-121.65 1.99z%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%222.9%22 d=%22M193.05 151.47c-2.54-3.25-2.3-3.27 5.61-.57 5.18 1.76 7.46 1.84 13.6.5 4.06-.89 9.3-2.81 11.67-4.28 2.36-1.47 5.44-2.4 6.85-2.09 1.53.35-.93 2.32-6.06 4.86-7.12 3.52-10.47 4.27-19.1 4.27-8.45 0-10.87-.52-12.57-2.7zM191.08 138c0-.74.88-1.34 1.97-1.34 1.08 0 1.97.6 1.97 1.34s-.89 1.35-1.97 1.35-1.97-.6-1.97-1.35zm22.97-2.24c-2.26-1.55-1.43-3.14 1.65-3.14 1.62 0 2.95.9 2.95 2.02 0 2.1-2.33 2.67-4.6 1.12z%22 transform=%22matrix(1.15657 0 0 1.57167 -40.18 -81.97)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M186.89 52.31c4.7-8.2 9.04-8.93 11.06-1.85 1.44 5.01 5.76 7.83 5.76 3.75 0-.96 2.19-4.13 4.86-7.06 4.05-4.46 4.4-5.94 2.07-9.08-3.43-4.64-8.84-6.35-20.1-6.35-9.65 0-19.52 2.42-25.86 6.34-5.29 3.27-7.53 9.87-4.25 12.5 2.2 1.77 2.92 1.73 5.74-.34 4.44-3.24 4.98-3.08 9.9 3.03 2.39 2.96 4.99 5.38 5.78 5.38s3.06-2.85 5.04-6.31zm128.55 212.5c-13.54-11.92-54.54-36.83-57.71-35.05-.77.43 2.71 5.52 7.74 11.3 8.45 9.72 10.7 11.16 29.58 18.87 11.23 4.6 21.36 8.4 22.5 8.47 1.15.06.2-1.55-2.11-3.59zm-191.46-13.7c14.72-4.62 26.69-9.37 29.4-11.67 2.5-2.14 6.33-5.25 8.51-6.91 3.71-2.84 3.69-3.03-.4-3.03-8.79 0-38.8 11.57-60.5 23.32-23.77 12.87-28.7 17.07-12.04 10.26 5.61-2.3 21.38-7.69 35.03-11.97z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%2210.48%22 d=%22M137.16 359.73c0-.65-2-5.13-4.45-9.96-13.02-25.76-27.48-69.96-34.5-105.48-9.6-48.63-12.63-88.76-9.3-123.27 1.47-15.36 1.78-28.51.76-32.57a35.2 35.2 0 0 0-2.5-6.14c-1-1.94-1.83-3.82-1.83-4.18 0-1.34 2.47-2.91 6.08-3.88 5.14-1.37 17.24-3.39 20.37-3.39 3.72 0 4.98 1.35 6.06 6.43a90.66 90.66 0 0 0 1.85 7.12l1.06 3.33 5.7-.08c3.14-.04 8.6-.51 12.12-1.05 8.49-1.28 8.35-1.12 7.8-8.85-.6-8.14-.48-12.52.33-13.3.43-.43 2.85-.84 6.85-1.16 7.36-.6 36.86-2.08 37.08-1.86.08.08.4 4.22.7 9.18.3 4.97.63 9.48.74 10.03.19.93.7 1.03 7.68 1.57 12.53.96 21.02 1.16 25.1.57 4.14-.59 7.29-1.87 8.2-3.33.31-.5.79-3.56 1.06-6.78.58-7.04 1.06-8.9 2.67-10.41 2.02-1.9 6.9-1.8 24.25.47a884.8 884.8 0 0 0 15.33 1.94c.41 0 .55 4 .56 15.57 0 15.83.57 32.75 1.42 42.2 1.12 12.57 6.82 70.3 8.32 84.38 3.28 30.83 4.16 45.89 4.16 71.78 0 27.1-1.52 46.41-4.93 62.33l-.47 2.19-7.94.28c-5.41.2-10.73.74-16.73 1.72-20.87 3.42-74.23 9.79-101.97 12.16-9.77.84-13.08 1.31-16 2.28a33.9 33.9 0 0 1-3.85 1c-1.67.3-1.78.25-1.78-.84z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M136.67 345.07c-30.07-63.3-47.68-155.17-42.38-221.02.67-8.32 1.24-19.97 1.25-25.89.03-10.24-.05-10.94-1.74-14.58l-1.77-3.82 3.42-.73c4.83-1.04 16.09-2.82 16.31-2.58.1.11.95 3.07 1.88 6.59.94 3.5 2.02 7.22 2.41 8.23l.71 1.85 7.58-.01c4.17 0 10.45-.42 13.97-.93 12.52-1.78 13.79-3.22 13.54-15.3l-.17-7.83 6.26-.44c10.7-.75 27.08-1.56 27.32-1.34.13.11.5 3.57.84 7.68.67 8.33 1.13 9.64 3.95 11.1 4.48 2.31 33.14 3.24 39.74 1.28 7.08-2.1 8.87-4.46 9.65-12.7.24-2.59.61-5.56.81-6.6l.38-1.9 4.47.44c6.56.64 20.89 2.3 23.8 2.75l2.53.39v14.56c.03 24.76.76 34.24 9.06 116.76 3.23 32.17 4.12 44.45 4.73 65.55.64 22.33-1.2 55.91-3.72 67.67l-.73 3.4-6.8.44c-3.75.25-11.67 1.18-17.62 2.09-21.73 3.29-66.11 8.6-93.17 11.13-8.32.78-16.34 1.7-17.81 2.03-1.48.33-3.1.61-3.58.62-.5.01-2.8-3.99-5.12-8.89z%22/%3E%3Cg stroke=%22%23000%22 stroke-width=%221.78%22%3E%3Cpath d=%22M214.75 186.15c-3.08-1.85-1.41-3.38 2.81-2.58 4.49.86 18.97-2.47 26.04-5.99 4.37-2.18 7.75-1.34 5.09 1.26-2.04 1.98-23.8 8.2-28.79 8.22-2 0-4.31-.4-5.15-.9zM114.1 169.71c-5.25-1.72-6.3-2.98-6.3-7.58 0-16.56 24.5-29.76 44.57-24.02 10.3 2.95 15.68 8.03 14.57 13.75-.63 3.27-.06 4.33 2.07 3.84 4.2-.97 3.67.65-1.99 6.17-8.98 8.76-37.29 12.95-52.92 7.84z%22/%3E%3Cpath d=%22M151.6 166.76c1.76-1.06 1.75-2.29-.04-4.3-3.53-3.98-3.26-19.18.36-19.98 4.76-1.07-8.8-3.62-14.65-2.76-7.38 1.08-15.3 5.6-20.52 11.74-5.67 6.66-5.52 11.44.48 15.05 4.11 2.48 6.88 2.83 18.37 2.33 7.44-.32 14.64-1.26 16-2.08zm72.56 2.97c-7.15-2.34-15.56-10.03-11-10.03 1.54 0 7.62 3.7 10.22 5.16 7.76 4.33 15.6 4.26 24.9-.23 6.37-3.08 6.39-3.14 2.57-7.74-2.88-3.48-3.55-6.86-2.67-13.48 1.12-8.4.92-8.88-4.24-9.66-13.63-2.06-29.41 9-29.13 20.41.17 6.6-2.09 8.72-4.78 4.5-2.48-3.89-1.4-9.43 2.94-15.08 6.45-8.43 14.25-12.03 27.74-12.81 11.25-.65 11.9-.49 20.96 5.25 8.87 5.62 9.28 6.26 7.94 12.27-1.64 7.38-10.85 15.99-21.87 20.46-8.88 3.61-14.79 3.85-23.58.98z%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22M124.14 167.82a14.92 14.92 0 0 1-8.42-3.75c-2.7-2.52-2.72-5.48-.03-9.51 3.96-5.96 11.43-11.21 18.9-13.27 2.04-.56 2.65-.62 6.18-.6 2.9 0 4.67.14 6.76.52 1.56.28 2.88.55 2.93.6.05.05-.2.53-.55 1.07-1.1 1.65-1.56 3.78-1.7 7.78-.21 5.85.64 9.87 2.67 12.54a7.07 7.07 0 0 1 1.06 1.7c0 1.4-5.84 2.41-16.87 2.94-5.8.28-8.38.28-10.93-.02zm108.27-.95c-3.13-.36-5.97-1.5-11.75-4.72l-5.29-2.93.16-.85c.1-.47.25-2.3.36-4.06.22-3.83.69-5.36 2.43-8.03 4.47-6.86 13.65-11.7 22.17-11.7 3.44 0 6.01.51 6.74 1.35.53.6.56.78.44 2.68-.07 1.11-.31 3.47-.53 5.24-.85 6.84-.1 9.92 3.55 14.47 1.86 2.32 1.98 2.62 1.3 3.16-.88.7-6.05 3.16-8.33 3.96a25.48 25.48 0 0 1-11.25 1.43z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath stroke=%22%23000%22 stroke-width=%2210%22 d=%22M151.04 368.14c-.57-.95.21-4.12 1.74-7.07 2.72-5.21 2.69-5.42-1.34-8.17-16.84-11.5-32.18-42.96-34.39-70.45l-1.12-14.05-4.05 2.98c-2.23 1.63-4.72 2.55-5.54 2.03-.82-.52-1.44-6.88-1.38-14.13.09-10.53 1.09-15.55 4.96-24.93 5.49-13.3 12.28-24.7 18.42-30.88 2.29-2.3 8.99-10.36 14.89-17.89 5.9-7.53 12.29-14.95 14.2-16.5 4.37-3.5 7.86-13.84 6.76-20a513.8 513.8 0 0 0-3.88-17.7c-6.5-27.83 2.7-56.57 25.32-78.98 4.8-4.76 5.62-6.3 3.77-7.05-1.3-.52-3-.96-3.76-.97-3.38-.04-4.83-5.82-2.24-8.98 5.99-7.33 31.32-3.89 31.32 4.25 0 .6-1.92 2.26-4.27 3.69l-4.27 2.6 5.06 4.02c2.78 2.2 5.28 5.29 5.56 6.84.28 1.55-1.98 7.66-5.02 13.56-4.9 9.5-9.23 21.73-7.2 20.3.41-.29 4.96-5.76 10.1-12.17 5.15-6.4 9.63-11.48 9.96-11.27 3.71 2.35 10.36 10.19 13.87 16.36 9.65 16.99 9.4 41.36-.62 59.78-5.5 10.12-4.74 13.18 7.3 29.21 9.98 13.3 13.56 18.78 23.35 35.67 4.16 7.18 3.46 5.66 10.67 23.17 4.72 11.47 5.61 15.8 5.83 28.11.22 12.83-.12 14.7-2.93 15.83-4.12 1.64-5.57.18-8.48-8.5-1.22-3.64-2.88-6.62-3.69-6.62-.8 0-1.94 1.9-2.52 4.23-12.45 49.65-24.8 85.05-29.64 85.05-2.37 0-2.02-1.94 1.9-10.64 9.37-20.7 20.46-58.04 24.15-81.26 3.1-19.54.4-45.15-6.21-58.67-4.4-9.02-17.37-28-20.75-30.37-1.41-1-3.73-5.32-5.15-9.6-2.56-7.74-2.54-7.9 3-18.54 5.14-9.9 5.59-11.98 5.68-26.56.08-11.93-.69-17.63-3.12-23.17-3.9-8.93-9.96-18.08-11.96-18.08-2.75 0-6.36 4.43-16.96 20.83-5.84 9.03-11.62 16.43-12.84 16.44-1.23.01-2.24-.8-2.24-1.8 0-2.61 8.28-23.87 14.6-37.5 2.97-6.4 4.95-12.78 4.4-14.18-.56-1.4-3.69-4.5-6.95-6.88-5.8-4.25-6.01-4.3-9.28-2.23-9.4 5.94-20.46 19.84-26.68 33.51-8.95 19.69-9.98 35.15-3.77 56.8 4.37 15.2 2.6 28-4.5 32.79-4.4 2.96-17.89 20.38-23.77 30.69-4.94 8.67-10.58 26.37-13.62 42.75-2.76 14.91-2.37 44.9.74 56.08 5.93 21.3 18.82 42.45 30.78 50.48 5.52 3.7 5.92 4.38 4.01 6.97-3.4 4.62-5.14 9.09-3.53 9.09 2.6 0 14.34-8.07 14.34-9.85 0-1.26 1.07-1.5 4.02-.92 7.72 1.54 23.75 1.94 33.32.83l9.64-1.11 6.58 4.24c7.9 5.1 15.8 8.52 17.4 7.51.63-.4-.2-3.44-1.85-6.75-3.29-6.6-3.79-9.77-1.54-9.77 2.31 0 9.55 15.15 8.26 17.29-.64 1.05-2.98 1.92-5.19 1.92-4.55 0-19.57-6.82-21.3-9.68-.94-1.55-2.6-1.74-9.6-1.07-9.8.93-26.15.95-30.71.03-2.18-.44-5.82 1.12-11.84 5.05-8.81 5.74-14.3 7.08-16.2 3.96z%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%221.5%22 d=%22M282.02 259.38c-1.23-12.03-10.05-40.97-12.48-40.97-.22 0-.12 7.25.22 16.1.51 13.38 1.35 17.48 4.95 24.21 2.38 4.45 4.33 8.9 4.33 9.89 0 .98.93 1.79 2.06 1.79 1.48 0 1.74-3.05.92-11.02zm-164.9-9.25c.68-5.1 2.82-15.17 4.77-22.37 1.94-7.2 3.2-13.31 2.78-13.57-1.24-.79-10.23 18.8-12.83 27.95a74.5 74.5 0 0 0-2.4 16.96l.01 8.47 3.23-4.08c1.8-2.28 3.76-8.15 4.45-13.36zm90.9-208.76c5.26-2.05-3.4-7.17-12.1-7.17-8.67 0-12.89 4.33-7.55 7.76 2.07 1.32 15.79.9 19.65-.6zM182.56 143.32c0-2.3 3.5-3.39 5.95-1.84 1.56.99 1.41 1.56-.6 2.37-3.77 1.5-5.35 1.35-5.35-.53zm13.1-.14c-1.62-2.68 2.2-4.57 5.6-2.78 2.12 1.11 2.3 1.83.76 3-2.68 2.04-5.03 1.96-6.35-.22z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.07%22 d=%22M237.58 349.37c-.32.24-.05.6-.15.86-.02.05-.13.06-.15.1-.04.1 0 .44 0 .58v1.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M280.2 269.57c-2.06-4.04-7.64-16.64-8.34-18.8-.49-1.5-1.06-8.99-1.28-16.63-.37-12.94-.31-13.73.9-11.45 5.36 10.08 12.61 43.77 10.04 46.67-.75.84-1 .88-1.33.21z%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23fff%22 stroke-width=%22.24%22 d=%22M109.55 262.4c-.02-7.5.9-14.86 2.6-20.7 2.05-7.1 9.46-23.91 11.72-26.61l.57-.69v.93c.03 1.11-1.11 6.31-2.72 12.47a254.65 254.65 0 0 0-5.03 23.9c-.57 3.31-1.95 7.78-3.06 9.91-.44.84-1.53 2.45-2.43 3.57l-1.64 2.04z%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23fff%22 stroke-width=%22.69%22 d=%22M187.9 41.08c-3.58-3.24.4-6.42 8.05-6.42 4.4 0 7.68.8 10.65 2.59 5.18 3.12 1.18 5.04-10.48 5.04-6.12 0-7.02-.13-8.21-1.21z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M235.2 365.45c-2.35-.94-7.42-3.65-11.27-6.03l-7.01-4.32-7.1.85c-8.9 1.07-23.58 1.08-31.46.03-7.94-1.07-7.88-1.07-8.94.86-.94 1.7-11.77 9.23-13.28 9.23-1.16 0-.08-3.12 2.42-7.01 1.17-1.83 2.13-3.68 2.13-4.11 0-.43-2.17-2.46-4.83-4.5-9.04-6.99-15.2-14.8-21.8-27.62-7.7-14.98-10.15-23.73-11.3-40.45-1.82-26.06 2.35-52.45 11.75-74.41 4.31-10.07 17.04-28.02 25.67-36.18 6.7-6.34 7.84-9.16 7.76-19.16-.04-6.33-.6-10.14-2.44-16.9-3.19-11.67-3.98-27.5-1.85-36.8 4.56-19.85 17.6-40.79 31.2-50.1l4.44-3.04 3.2 2.17c1.75 1.2 4.51 3.4 6.12 4.9 4.5 4.18 4.38 4.94-4.39 25.1-7.18 16.5-11.88 29.76-11.04 31.14.24.4 1.13.74 1.97.74 2.01 0 5.77-4.6 14.7-18 8-12.02 12.15-17.46 14.06-18.46 1.08-.57 1.53-.47 2.61.58 2.23 2.16 5.36 7.01 8.57 13.3 4.15 8.13 5.22 15.05 4.65 30.08C239.25 130 239 131 233.5 142c-4.12 8.26-4.43 10.55-2.21 16.88 1.37 3.94 3.42 7.23 8.64 13.9 8.16 10.43 15.9 22.69 18.58 29.46 4.31 10.84 7.05 30.8 6.06 44.16-1.67 22.57-12.47 62.31-24.73 91.05-4.59 10.76-4.83 14.21-1.52 21.93 2.61 6.1 3 7.78 1.83 7.78-.38 0-2.61-.77-4.96-1.7zm-46.52-221.87c1.69-1.03 1.69-1.04-.12-2.18-2.26-1.43-5.23-.98-5.98.91-1.2 3.04 2.07 3.72 6.1 1.27zm13.05.32c2.5-1.59 2.38-2.24-.7-3.69-1.78-.85-2.55-.93-4.03-.42-2.21.75-2.48 3.36-.48 4.63 1.84 1.17 2.67 1.08 5.21-.52z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cg stroke=%22%23000%22 stroke-width=%2210%22%3E%3Cpath d=%22M109.43 345.5c-4.81-.45-6.54-.7-7.86-1.13-.81-.27-1.64-.48-1.84-.48-1 0-4.11-1.03-5.56-1.84-.2-.1-.45-.2-.58-.2-.21 0-3.68-1.57-4.58-2.08-.6-.34-3.31-2.94-3.31-3.17 0-.1-.55-.67-1.22-1.25-1.15-1-2.23-2.7-2.23-3.51 0-.17-.09-.36-.19-.42s-.25-.38-.32-.7c-.07-.33-.26-.65-.42-.7-.2-.08-.3-.4-.3-.89.01-.42-.03-1.68-.1-2.8-.13-2.66.5-13.64.84-14.5.49-1.25.64-5 .94-22.92.01-.95-.09-2.9-.23-4.35-.4-4.1-.2-10.2.47-14.52.7-4.47.85-5.65 1.23-9.49.18-1.7.46-3.76.64-4.56.47-2.13.66-3.13.88-4.66.1-.75.6-2.7 1.1-4.36a183.88 183.88 0 0 0 1.22-4.22 418.71 418.71 0 0 1 2.15-7.7 788.38 788.38 0 0 0 1.7-6.1l1.57-5.67a28.2 28.2 0 0 1 1.2-3.45c.3-.68.76-1.82 1-2.54.23-.73.51-1.5.62-1.72l1.02-2.54a93.28 93.28 0 0 1 1.11-2.74 69.7 69.7 0 0 0 1.95-5.67c.34-1.1.84-2.5 1.1-3.08a30.5 30.5 0 0 0 1.71-4.53c0-.17.14-.58.31-.9a23.8 23.8 0 0 0 1.18-4.58c.28-2.23.87-4.66 1.85-7.71 1.16-3.61 1.7-5.5 1.84-6.4.17-1.13.87-3.47 1.36-4.56l.91-2c.28-.6.63-1.46.78-1.89.16-.43.42-.99.6-1.23.16-.25.3-.63.3-.86 0-.22.13-.65.29-.95.15-.3.47-1.06.71-1.7a9.8 9.8 0 0 1 .73-1.58c.17-.24.3-.62.3-.85 0-.41.22-.88 1.31-2.84l.88-1.62c.17-.33.47-.84.67-1.12.2-.28.57-.92.84-1.42l.72-1.31c.13-.23.7-1.37 1.26-2.54a26.14 26.14 0 0 1 1.93-3.35c.5-.67 1.15-1.72 1.46-2.33a42.78 42.78 0 0 1 4-5.88c.36-.4 1.17-1.4 1.79-2.24.62-.85 1.28-1.66 1.45-1.8.18-.15.33-.38.33-.5s.34-.67.76-1.19c.73-.92 1.75-2.31 2.18-2.97.99-1.53 2.22-2.94 5.51-6.25a67.96 67.96 0 0 1 4.73-4.48c1.63-1.1 2.7-2.57 2.91-4 .09-.54.03-.9-.15-1.11-.36-.4-.93-2.66-.93-3.65 0-.43-.14-1.16-.3-1.63-.2-.55-.38-2.31-.5-4.85-.23-4.4-.27-4.84-.85-8.65-.86-5.6-1.01-6.5-1.18-6.9-.1-.22-.28-1.08-.42-1.92a31.18 31.18 0 0 0-.64-2.91c-.55-1.91-.5-7.2.08-8.75.55-1.49 1.1-1.9 2.54-1.9 1.75 0 2.8.3 4.1 1.17 1.9 1.3 2.55 2.2 3.67 5.08.24.62.59 1.3.79 1.53.2.22.48.72.63 1.11.15.4.61 1.22 1.03 1.85.42.63.83 1.38.9 1.67.07.29.26.63.42.76.15.13.28.44.28.7 0 .25.33.95.74 1.54.4.6 1.18 1.97 1.73 3.05.54 1.08 1.4 2.46 1.91 3.08a8.85 8.85 0 0 1 1.4 2.47c.25.74.51 1.27.57 1.18.06-.1.11-1.22.12-2.5a40 40 0 0 1 .34-4.57l.51-3.55c.1-.72.28-2.73.39-4.46.35-5.35 1-9.93 1.72-12.17a32.8 32.8 0 0 0 1.32-5.82c0-.99.61-2.57 1.19-3.07 1.24-1.08 1.5-1.26 1.78-1.26.16 0 .35.16.43.36.07.2.34.55.58.8.25.25.52.66.6.9.08.26.35.62.6.82.25.2.56.63.7.97.14.34.34.62.44.62.1 0 .17.16.17.37 0 .4 1.42 3.1 2.28 4.35.56.8.82 1.67 1.28 4.24.15.86.37 1.74.49 1.97.12.22.22.55.22.74 0 .19.46 1.45 1.03 2.8a42.61 42.61 0 0 1 1.3 3.38c.26.94.63 2.03 1.43 4.16.25.67.56 1.63.7 2.13.13.5.37 1.28.51 1.72.15.45.39 1.4.52 2.13.14.73.4 1.55.6 1.83.2.28.42 1.03.5 1.67.1.87.24 1.19.52 1.28.31.1.34.18.15.48-.18.29-.15.47.1.85.2.26.34.7.35.99 0 .28.13.77.3 1.1.17.31.3.67.3.79s.15.38.34.58c.18.2.39.71.46 1.13.17 1.07.74 1.32 2.6 1.16.84-.07 1.9-.03 2.44.1 2.6.59 5.45 1.31 5.73 1.44.16.09.9.25 1.62.37l2.64.42c1.39.22 5.24.2 9.6-.07 2.1-.13 2.84-.26 3.73-.66 1.05-.46 1.43-.5 5.85-.62 4.76-.12 6.28 0 9.02.67 1.79.44 4.43.86 6.17.99.9.06 2.12.24 2.74.4a60.7 60.7 0 0 0 2.14.49c.56.11 1.8.47 2.74.8.95.32 2.37.7 3.15.83a564 564 0 0 1 4.16.73c1.5.28 3.51.6 4.46.72 2.33.3 4.89.8 5.35 1.05.21.11.85.27 1.42.36 1.09.16 3.67.63 6.17 1.13.81.16 1.85.3 2.32.3.89 0 2.12.2 5.13.81 1 .21 2.6.48 3.55.6l3.96.53c3.23.43 4.28.61 5.98 1.07l2.03.54c1.17.3 3.19.96 3.76 1.22.35.15 1.03.34 1.53.42.5.07 1.05.3 1.24.49.18.2.68.41 1.11.5.43.07 1.42.44 2.2.82.78.38 1.86.83 2.4 1 .55.18 1.19.46 1.42.62.23.17.6.3.8.3.22 0 .43.18.49.4.06.23.35.44.7.52.82.18 2.1 1.05 2.42 1.64.16.3.56.57 1.06.7.75.2 1.63.97 3.84 3.35a33.62 33.62 0 0 0 3 2.87c2.4 2.08 4.63 4.42 4.77 5.03.13.54 1.01 1.9 1.78 2.74.35.38.53.86.77 2.12.1.55.36 1.37.58 1.82 1 2.1 1.2 3.04 1.03 4.92-.08.98-.3 2.14-.48 2.57a4.33 4.33 0 0 0-.34 1.36c0 .31-.09.63-.2.7-.11.07-.2.44-.2.83 0 .39-.14.91-.3 1.16a9.8 9.8 0 0 0-.7 1.62c-.22.64-.54 1.41-.7 1.71a9.3 9.3 0 0 0-.94 2.32c0 .15-.3.59-.64.98a9.35 9.35 0 0 0-1.2 1.95c-.3.69-.65 1.3-.77 1.38-.12.08-.36.43-.53.79-.33.68-.43.8-3.56 4.32-1.94 2.2-8.02 8.4-8.87 9.06-.26.2-.53.35-.61.35-.09 0-.41.23-.73.5s-1.16.84-1.87 1.27c-.72.42-1.35.93-1.42 1.12-.1.33-1.69 1.17-2.2 1.17-.12 0-.53.27-.91.6-.38.32-.93.7-1.22.85-.3.15-.81.48-1.17.74a7.9 7.9 0 0 1-2 .85c-.74.22-1.5.56-1.69.77-.44.5-1.05.82-2.3 1.2-.56.16-1.49.55-2.06.86-.58.3-1.68.77-2.47 1.03-.78.25-1.96.71-2.63 1.02-1.85.83-2.9 1.21-3.42 1.21-.25 0-.64.13-.85.3a1.83 1.83 0 0 1-.9.3c-.75.03-2.87.67-3.45 1.05-.28.18-1.01.5-1.63.69a9.2 9.2 0 0 0-2.1 1.05c-.54.38-1.9 1-3.04 1.38-3.54 1.18-4.3 1.46-5.16 1.9-.46.24-1.15.43-1.53.43s-.8.13-.94.3c-.13.15-.53.35-.88.42-.35.08-.78.21-.95.3a7.7 7.7 0 0 1-2.13.6c-.21 0-.53.14-.72.31-.18.17-.85.44-1.48.6-.62.17-1.53.48-2 .7-.49.21-1.93.64-3.21.93-1.28.3-2.65.64-3.04.75-1.13.33-3.1.55-6.7.75-4.75.26-6.63.84-7.63 2.36-.3.46-.3.58.05 1.56.2.6.63 1.43.94 1.86.3.44.56.87.56.96 0 .1.23.68.52 1.31.48 1.04.72 1.98 1.03 3.94.07.4.19.8.27.91a20.3 20.3 0 0 1 1.42 4.71c0 .72.53 3.2 1.55 7.26.28 1.11.56 2.66.63 3.45.06.78.19 1.57.28 1.76.1.18.23.77.29 1.3.06.54.17 1.07.25 1.18.07.12.2.9.27 1.74.18 1.81.87 4.66 1.78 7.31.83 2.44.92 2.78 1.05 3.85.16 1.35.95 6.6 1.2 8.02.17.98.87 5.23 1.26 7.7.1.68.27 2.96.37 5.08.1 2.12.28 4.36.41 4.97.22 1.08.3 2.08.78 9.13.25 3.62.28 3.9.63 5.27.13.5.27 1.36.32 1.9.05.53.23 1.28.42 1.67.18.38.32 1.08.32 1.55-.01.62.09.92.38 1.12.24.18.39.52.39.91 0 1 .74 2.28 2 3.45a8.29 8.29 0 0 1 1.55 1.93c.22.47.46.86.52.86s.07.34.02.76c-.1.81-.43 1.27-.93 1.27-.18 0-.32.18-.32.41 0 .29-.24.5-.8.73-.43.17-.84.44-.9.6-.06.16-.25.23-.42.17-.17-.07-.7.06-1.18.28-.47.22-1.22.5-1.67.64-.45.14-1.1.38-1.45.54-.35.16-.72.28-.82.28-.1 0-.5.23-.9.5s-1.35.7-2.12.96-1.48.59-1.57.73a.64.64 0 0 1-.48.25c-.36 0-2.63 1.06-3.72 1.74-.39.25-1.46.7-2.38 1-.92.3-1.72.62-1.79.72-.06.1-.34.2-.61.2-.27 0-1.02.28-1.66.63-2.18 1.2-3 1.58-3.7 1.72-.4.07-1.01.4-1.38.71-.36.32-.75.58-.85.58-.11 0-.87.32-1.68.7-.82.38-1.76.76-2.09.83-1.15.27-3.04.99-3.78 1.45a38.33 38.33 0 0 1-6.35 2.82c-2.72.92-4 1.37-5.62 1.99-1.28.49-3.35 1.03-5.84 1.52l-2.03.4c-.5.1-1.64.38-2.54.61-.89.24-3.46.7-5.7 1.03a107.15 107.15 0 0 0-8.7 1.63 68.6 68.6 0 0 0-5.28 1.33c-1.34.37-2.89.77-3.45.89-.55.12-1.83.45-2.84.73a43.17 43.17 0 0 1-6.69 1.42c-1.34.19-2.7.43-3.04.53-1.02.3-6.64 1.15-7.62 1.15-.83 0-3.26.34-6.18.86-.56.1-1.93.24-3.04.32-1.12.07-3.41.34-5.1.59-2.78.4-3.15.51-3.86 1.07-1.14.9-3.54 1.45-7.48 1.7-4.14.24-13.74.35-15.72.17z%22/%3E%3Cpath d=%22M117.66 339.81c.78-.13 2.82-.26 4.55-.3 1.73-.04 4.01-.17 5.08-.28 1.05-.12 3.66-.3 5.78-.4 2.12-.09 4.58-.27 5.48-.4 2.88-.4 4.86-.64 5.27-.65.5-.02 4.2-.54 5.88-.82 2.3-.4 3.46-.56 5.58-.78 1.17-.12 2.45-.3 2.84-.4.4-.1 1.8-.34 3.15-.53 1.34-.19 3.66-.66 5.17-1.05 1.5-.4 3.5-.88 4.43-1.1.93-.2 2-.51 2.4-.67.68-.3 1.74-.56 4.84-1.22.89-.19 2.26-.5 3.04-.72.78-.2 1.74-.43 2.13-.5.39-.08 1.76-.44 3.04-.8a50.08 50.08 0 0 1 7.4-1.65c2.07-.3 3.75-.75 5.28-1.4 1.1-.48 4.3-1.53 4.64-1.53.19 0 .77-.21 1.3-.48a4646 4646 0 0 1 2.38-1.2 38.2 38.2 0 0 1 3.55-1.45c2.5-.88 3.46-1.35 4.58-2.27.5-.4 1.53-.9 2.64-1.26 2.6-.86 3.53-1.25 4.45-1.86 1.19-.8 1.96-1.12 4.63-1.93 1.32-.4 2.85-.94 3.4-1.22.54-.27 1.14-.5 1.34-.5.2 0 .73-.23 1.18-.5.44-.27 1.36-.78 2.03-1.12a26.94 26.94 0 0 0 3.72-2.19c.76-.53 1.85-1 3.27-1.44 1.18-.35 2.65-.88 3.29-1.18l1.15-.53-.5-.64c-.52-.7-.98-2.57-.77-3.2.12-.4-.52-3-.75-3-.06 0-.13-.3-.14-.67a4.35 4.35 0 0 0-.28-1.27c-.47-1.13-.8-3.04-.99-5.66-.1-1.45-.23-3.1-.3-3.65a6.4 6.4 0 0 1 .06-1.85c.23-.99-.2-4.54-1.07-9-.54-2.77-.69-4.32-.79-8.53-.09-3.82-.14-4.28-.62-5.6a8.78 8.78 0 0 1-.52-2.2c0-.4-.13-1.4-.29-2.2a34.69 34.69 0 0 1-.42-2.93 4.53 4.53 0 0 0-.32-1.59c-.1-.06-.18-.36-.18-.66 0-.3-.15-1.05-.32-1.66-.3-1.05-.52-2-.81-3.65-.07-.39-.36-1.29-.63-2-.54-1.39-.82-2.71-1.25-6.01-.48-3.63-.88-5.86-1.13-6.36-.26-.5-.73-2.02-1.66-5.3-.7-2.52-3.39-9.45-3.96-10.25-1.28-1.78-1.47-6.59-.37-8.93.47-1.01 3.46-4.16 3.95-4.16.13 0 .48-.23.78-.5.3-.29.74-.51.97-.51.23 0 .53-.15.66-.33.19-.25.57-.32 1.7-.3l1.71.03c1.6-.03 8.54-.81 8.72-1 .13-.12.58-.23 1-.23.41 0 .81-.09.88-.2.07-.11.32-.2.55-.2.23 0 .7-.18 1.05-.39a7.56 7.56 0 0 1 2.05-.62 17 17 0 0 0 2.03-.45c.34-.12 1.02-.33 1.52-.47.5-.15 1.19-.4 1.52-.57a19.73 19.73 0 0 1 3.76-1.46 24 24 0 0 0 5.07-1.89c1.18-.5 2.25-1 2.64-1.22.85-.49 1.24-.65 1.61-.65.23 0 1.16-.3 2.09-.69.92-.38 2.36-.83 3.2-1 .86-.18 2.2-.67 3.1-1.14 1.24-.64 1.79-.81 2.5-.78.76.02 1.09-.1 2.06-.78.64-.45 1.5-.94 1.92-1.1.42-.14.76-.33.76-.42 0-.08.2-.2.46-.28.25-.08.59-.25.76-.39a8.7 8.7 0 0 1 1.52-.72c.67-.26 1.3-.54 1.4-.64a.79.79 0 0 1 .46-.17c.14 0 .78-.34 1.41-.76 1.51-1 2.9-1.82 3.5-2.08a6.9 6.9 0 0 0 1.02-.6c.3-.2.97-.62 1.5-.9.99-.55 1.9-1.05 3.8-2.13.6-.35 1.63-.88 2.28-1.19.64-.3 1.16-.62 1.16-.7 0-.32 1.77-2.16 6.98-7.24 2.87-2.8 3.27-3.28 3.9-4.63.37-.83.69-1.56.69-1.62 0-.07.32-.51.7-.99.4-.47.72-.97.72-1.09 0-.12.13-.28.3-.34.17-.07.3-.33.3-.59 0-.26.14-.6.3-.76a4.46 4.46 0 0 0 1.13-2.13c0-.26.13-.73.3-1.05.4-.77.91-3.03 1.09-4.78.12-1.17.08-1.55-.24-2.2-.2-.43-.43-1.1-.49-1.47-.06-.37-.23-.79-.39-.91-.15-.13-.27-.35-.27-.5 0-.25-1.03-2.7-1.42-3.38-.12-.2-.2-.5-.2-.67 0-.5-3.75-4.24-5.33-5.3a15.46 15.46 0 0 1-2.84-2.65 9.2 9.2 0 0 0-1.65-1.69c-.12 0-.5-.27-.81-.6a3.8 3.8 0 0 0-1.26-.82c-1.1-.36-3.2-1.42-3.66-1.84-.48-.45-3.92-1.47-8.1-2.41a559.79 559.79 0 0 1-8.61-2c-1.4-.34-3-.66-3.55-.72a61.63 61.63 0 0 1-2.34-.33c-.72-.11-1.96-.3-2.74-.4a479.75 479.75 0 0 1-4.26-.6c-1.56-.23-3.48-.5-4.26-.6-4.46-.6-7.25-1.07-8.4-1.45a4.96 4.96 0 0 0-1.87-.32c-.34.07-.67 0-.83-.15-.53-.53-1.17-.74-2.32-.75-2.04-.03-3.24-.28-4.1-.89-.6-.4-.99-.54-1.39-.46-.3.06-.71.03-.9-.07a4.6 4.6 0 0 0-1.42-.2c-1.16-.03-2.32-.33-2.8-.72a3.19 3.19 0 0 0-1.12-.4 6.22 6.22 0 0 1-1.42-.45 3.9 3.9 0 0 0-1.58-.27 3.6 3.6 0 0 1-1.4-.2c-.53-.28-5.43-1.36-7.47-1.63a53.52 53.52 0 0 0-3.25-.32c-2.43-.14-28.18-.03-28.79.14-.28.07-.83.06-1.22-.02l-2.75-.54a37.01 37.01 0 0 1-3.15-.75c-.8-.26-1.93-.37-4.05-.4-2.63-.05-3-.01-3.5.34-.48.33-.58.35-.68.08-.07-.16-.37-.36-.69-.43-.9-.2-1.36-.88-1.7-2.53-.18-.84-.74-2.53-1.26-3.76a39.64 39.64 0 0 1-1.2-3.14 18.45 18.45 0 0 0-.52-1.52 15.6 15.6 0 0 1-.51-1.73 50.07 50.07 0 0 0-.6-2.23 32.15 32.15 0 0 1-.6-2.35 7.93 7.93 0 0 0-.41-1.5 7.64 7.64 0 0 1-.42-1.4c-.5-2.16-.67-2.72-1.26-4.16-.33-.8-.76-2-.96-2.66-.2-.67-.66-1.86-1.01-2.64a28.08 28.08 0 0 1-1.1-2.94c-.25-.84-.58-1.89-.73-2.33a11.32 11.32 0 0 1-.38-1.8c-.14-1.16-.66-2.75-1.03-3.17a5.6 5.6 0 0 1-.56-.9l-.3-.59-.44 1.44c-.24.78-.43 1.66-.43 1.95 0 .29-.09.91-.2 1.39-.3 1.35-.82 6.2-.82 7.66 0 1.28-.37 4.58-.82 7.3-.12.73-.3 2.97-.4 4.98-.12 2-.26 4.1-.32 4.63-.08.63-.03 1.16.13 1.47.21.4.21.81 0 2.23-.2 1.29-.22 1.84-.06 2.1.19.3.08.5-.65 1.22-.6.6-.91 1.09-1 1.61-.17 1.08-1.3 2.14-2.27 2.11-.8-.02-1.11-.2-.73-.44.19-.12.16-.24-.13-.5-.2-.19-.54-.91-.73-1.6l-.69-2.49c-.18-.67-.54-1.65-.8-2.18a8.23 8.23 0 0 1-.45-1.07c0-.11-.15-.45-1.33-3.04a69.58 69.58 0 0 1-1.08-2.55c-.33-.85-.88-1.94-1.2-2.44a13.03 13.03 0 0 1-.97-1.7l-.57-1.32a11.2 11.2 0 0 0-.77-1.34 5.7 5.7 0 0 1-.7-1.42 5.76 5.76 0 0 0-1.04-2.07 1.02 1.02 0 0 1-.26-.59c0-.17-.25-.6-.55-.97-1.12-1.31-1.26-1.53-1.4-2.08-.08-.3-.3-.68-.51-.82-.2-.15-.38-.4-.38-.56 0-.16-.12-.3-.27-.3-.15 0-.66-.45-1.13-1-.47-.57-.97-1.02-1.12-1.02-.38 0-.38 2.28.01 3.65a36.05 36.05 0 0 1 1.3 5.48c.1.72.4 2.82.7 4.66.76 4.84.9 6.18 1.12 10.25.1 2 .29 3.97.4 4.36.12.39.3 1.44.4 2.33.1.9.34 1.93.53 2.3s.28.8.21.98a.67.67 0 0 0 .1.6c.13.15.28.87.34 1.59.1 1.16.05 1.38-.38 1.91-.26.34-.7.95-.99 1.36-.67 1-2.65 3.13-2.9 3.13-.44 0-1.75 1.74-1.88 2.49-.09.56-.32.9-.87 1.31-.88.65-1.83 1.61-3.07 3.1-1.3 1.55-1.58 1.82-1.93 1.82-.17 0-.3.1-.3.22s-.5.73-1.12 1.35a8.14 8.14 0 0 0-1.12 1.28c0 .07-.22.38-.5.69-.28.3-.51.58-.51.62 0 .04-.48.57-1.07 1.18-.59.61-1.28 1.53-1.54 2.05-.25.51-.57.93-.7.93-.32 0-2.22 2.21-3.37 3.93a49.45 49.45 0 0 0-2.83 4.9 6.7 6.7 0 0 1-1.13 1.5c-.4.4-.72.8-.72.9 0 .32-2.72 5.68-3.4 6.7a5.3 5.3 0 0 0-.66 1.18c0 .1-.23.5-.5.86-.29.36-.51.73-.51.8 0 .09-.22.63-.5 1.2l-1.1 2.42a32.83 32.83 0 0 0-1.18 3.04c-.3.93-.7 1.91-.88 2.2-.18.27-.5.96-.7 1.51a40.85 40.85 0 0 1-1.06 2.5c-.66 1.43-1.48 4.15-1.48 4.93 0 .2-.55 2.13-1.23 4.28-.68 2.15-1.41 4.7-1.63 5.64l-.6 2.59a8.3 8.3 0 0 0-.2 1.49c0 1.02-1.9 7.14-2.94 9.41-.79 1.73-1.1 2.58-1.1 2.89 0 .16-.13.58-.28.94a32.37 32.37 0 0 0-.58 1.55c-1.15 3.3-2.17 6-2.8 7.4-.3.67-.8 1.95-1.1 2.84-.3.9-.67 1.9-.82 2.23-.88 2.01-2.14 5.72-2.14 6.3 0 .18-.22 1.08-.49 2a105.22 105.22 0 0 0-1.95 7c0 .14-.12.55-.28.9-.15.36-.53 1.6-.84 2.77-.3 1.17-.76 2.86-1 3.76-.26.89-.71 2.53-1.02 3.65-.3 1.11-.72 2.53-.93 3.14-.21.62-.49 1.76-.6 2.54l-.39 2.43a33.61 33.61 0 0 1-.48 2.36c-.18.73-.47 2.7-.64 4.36-.4 3.92-.92 7.9-1.63 12.38-.36 2.26-.39 7.98-.05 11.23.26 2.53.26 3.44-.02 16.54-.1 5.22-.27 9.13-.41 9.74-.13.55-.33 1.92-.44 3.04a96.76 96.76 0 0 1-.38 3.25 64 64 0 0 0 .14 9.23c.09.72.28 1.51.41 1.76.14.24.34.9.46 1.45.28 1.27.33 1.32 5.01 4.43 3.38 2.25 3.94 2.57 4.83 2.8.47.12.98.32 1.15.46.17.14.88.31 1.6.39.78.08 1.43.27 1.66.49.21.2.72.4 1.13.45a37 37 0 0 1 4.96.93c.32.12 1.69.23 3.05.24 1.36 0 2.63.08 2.83.16.63.25 3.88.26 5.33.01z%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22M109.6 339.31c-2.45-.13-7.43-1-9.43-1.67l-3.36-1.08c-1.1-.34-3.72-1.79-5.92-3.27-3.68-2.45-4.01-2.77-4.62-4.4-1-2.66-1.18-9.66-.38-15.18.54-3.7.64-7.08.69-22.35.05-14.34.17-18.7.6-21.48.3-1.92.72-5.06.94-6.98.86-7.72 2.34-14.08 7.12-30.56a243.51 243.51 0 0 0 1.58-5.76c.4-1.54 1.6-5.08 2.68-7.86a588.36 588.36 0 0 0 3.53-9.43c.87-2.4 2.18-5.94 2.91-7.86 1.5-3.96 2.5-7.34 3.11-10.65.24-1.25 1.1-4.63 1.93-7.5.83-2.89 1.63-5.8 1.77-6.47.14-.67.88-2.63 1.63-4.36.76-1.73 1.78-4.25 2.27-5.6a70.43 70.43 0 0 1 4.92-10.18 65.68 65.68 0 0 0 2.33-4.48c.3-.71.95-1.79 1.44-2.4.5-.6 1.71-2.46 2.7-4.13 1-1.67 2.55-3.87 3.45-4.9a288.06 288.06 0 0 0 4.4-5.16c1.5-1.82 4.17-4.74 5.91-6.49 1.74-1.74 3.26-3.48 3.38-3.86.12-.38 1.36-1.87 2.75-3.3a26.65 26.65 0 0 0 3.04-3.58c.53-1.01.5-1.3-.83-7.74a79.52 79.52 0 0 1-.89-7.3c-.46-5.87-1.58-13.76-2.44-17.32-1.27-5.23-1.2-5.97.37-4.25 3.36 3.65 11.03 18.96 13.45 26.87.98 3.19 1 3.23 2.11 3.23.79 0 1.33-.27 1.84-.92.4-.51.72-1.08.72-1.28 0-.2.37-.84.81-1.44.7-.93.81-1.46.78-3.87-.04-3.6.36-9.84 1.04-16.24l.88-8.2c.18-1.74.5-4.14.72-5.35.35-1.95.45-2.13.85-1.56.24.35.85 2.25 1.35 4.21.5 1.97 1.28 4.48 1.74 5.58 1.65 3.97 3 8.03 4.4 13.26.78 2.93 1.91 6.7 2.51 8.38a934.48 934.48 0 0 1 2 5.66c.73 2.08 1.12 2.7 2 3.19.69.39 1.25.49 1.56.3.92-.59 5.5-.33 9.47.53 3.95.85 4.04.86 17.75.65 9.43-.14 14.94-.08 17.43.2 4.18.46 10.5 1.78 14.34 2.99 1.44.45 3.43.92 4.43 1.04 1 .12 2.33.43 2.97.69.63.26 2.08.58 3.22.72 1.13.14 2.31.39 2.62.55.86.47 7.37 1.6 17.14 2.97 7.96 1.12 20.04 3.6 25.32 5.2 3.3 1 7.49 3.49 10.1 6a161.88 161.88 0 0 0 4.9 4.48c2 1.73 2.6 2.53 3.59 4.72 2.53 5.62 2.66 6.06 2.4 8.04-.46 3.49-1.47 5.94-4.42 10.83a407.22 407.22 0 0 0-1.73 2.89c-.31.53-2.82 3.24-5.59 6.03-4.42 4.46-5.4 5.27-8.35 6.86a202.56 202.56 0 0 0-6.74 3.84 82.5 82.5 0 0 1-5.94 3.24 134.69 134.69 0 0 0-4.8 2.4 22.2 22.2 0 0 1-3.68 1.57c-2.72.7-10.51 3.5-13.13 4.7a62.14 62.14 0 0 1-5.57 2.16 37.7 37.7 0 0 0-3.88 1.44c-.54.28-2.43.9-4.21 1.4a446.58 446.58 0 0 0-4.99 1.4c-2.06.6-8.97 1.5-11.7 1.53-2.41.01-4.8 1.3-7.06 3.82-2.88 3.2-3.1 7.1-.7 12.47 2.87 6.43 5.38 14.74 6.22 20.56.33 2.3.81 4.8 1.08 5.56.8 2.27 2.3 9.15 2.75 12.6.13.96.53 3.12.9 4.8.38 1.77.66 4.41.66 6.3 0 1.84.38 5.52.87 8.47.48 2.87.87 6.42.87 7.9 0 4.25.66 9.5 1.59 12.7.47 1.63.86 3.52.86 4.2 0 .68.23 1.7.52 2.25.62 1.19.64 1.16-2.67 2.29a24.46 24.46 0 0 0-3.76 1.6c-4.67 2.83-11.3 5.89-12.74 5.89-.28 0-1.57.55-2.86 1.23-1.3.67-3.43 1.6-4.73 2.08-1.31.47-2.98 1.25-3.71 1.74-.74.48-2.74 1.45-4.46 2.14-1.72.7-3.7 1.55-4.39 1.9-2.28 1.17-9.68 3.5-13.26 4.18-1.93.37-4.64.99-6.02 1.37-1.38.4-4.8 1.25-7.58 1.92-2.78.66-7.5 1.83-10.47 2.6-2.98.75-7.62 1.7-10.3 2.11-17.8 2.68-19 2.81-36.33 3.87-5.33.33-7.92.35-12.57.11z%22/%3E%3Cg stroke=%22%23000%22 stroke-width=%22.19%22%3E%3Cpath d=%22M232.75 173.15a4.87 4.87 0 0 1-1.3-.6 1.14 1.14 0 0 0-.7-.24c-.26 0-.52-.1-.59-.2-.07-.11-.28-.2-.47-.2-.2 0-.83-.49-1.41-1.08l-1.06-1.07v-1.37c0-1.3.03-1.37.56-1.58.3-.11.78-.42 1.06-.69 1.03-.97 2.24-1.02 3.28-.13.2.17 1.1.47 2 .65 2.42.5 6.64.08 7.3-.72.15-.17.59-.3 1.03-.3.58 0 .85-.13 1.14-.51.25-.35.67-.56 1.34-.69a2.64 2.64 0 0 0 1.46-.7c.27-.3.57-.54.66-.54.1 0 .56-.37 1.04-.81.48-.45.99-.81 1.12-.81.14 0 .47-.23.73-.51s.69-.5.94-.5c.32 0 .47-.14.52-.46.05-.38.21-.47.88-.52.7-.05.9.04 1.51.66.7.72.7.73.75 2.87.03 1.23.16 2.27.29 2.43.18.22.12.37-.25.68l-1.47 1.23c-.85.72-3.68 2.23-4.17 2.23-.08 0-.56.21-1.05.47s-1.2.6-1.6.74c-.39.16-.85.39-1.01.52-.45.36-5.75 1.75-7.4 1.94-2.2.26-3.96.2-5.13-.19zm-52.19-9.06a3.9 3.9 0 0 0-1.54-.18c-.48.09-.83-.03-1.55-.51-1.2-.8-4.01-3.67-4.01-4.08 0-.37-.39-.8-.7-.8-.13 0-.67.58-1.2 1.3-.8 1.06-1.11 1.3-1.66 1.37-.37.04-.8.03-.97-.03-1.54-.56-1.89-4.36-.53-5.8l.4-.44-.56-.6c-.63-.68-2.31-1.33-2.98-1.17-.27.07-.62-.04-.92-.3-.26-.23-.59-.42-.72-.42-.3 0-.98-.77-1.27-1.47-.2-.46-.17-.75.2-1.72.79-2.16 1.8-2.65 4.03-1.98 1.04.32 1.4.57 2.56 1.79l1.34 1.42.48-.6a9.97 9.97 0 0 0 .73-1.01 46.8 46.8 0 0 1 4.65-6.04 39.5 39.5 0 0 0 2.15-2.58c1.27-1.67 2.92-3.16 3.69-3.33a3.15 3.15 0 0 0 1.06-.5c.25-.2.7-.43.97-.52a4.48 4.48 0 0 0 1.02-.5c1.12-.78 4.3-1.2 5.78-.76 1.37.4 4.36 2.46 4.36 3 0 .08.26.25.57.38.31.13 1.2.85 1.95 1.6.76.74 1.67 1.5 2.01 1.66.35.17.97.8 1.37 1.42.41.61 1.11 1.41 1.56 1.77.87.7 1.43 1.94 1.48 3.3.03.83-.52 2.96-.93 3.58-.15.24-.28.6-.28.81-.01.83-.28 1.7-.53 1.7-.15 0-.6.45-1 1.01s-.81 1.02-.93 1.02c-.1 0-.2.12-.2.27 0 .15-.5.62-1.13 1.03-1.2.8-1.97 1.43-3 2.48-.85.85-3.48 2.15-4.5 2.22-.84.05-2.8.66-4.35 1.36-.86.38-3.36.9-5.18 1.07a5.16 5.16 0 0 1-1.72-.22z%22/%3E%3Cpath d=%22M183.9 159.12c.77-.4 1.46-.6 2.03-.6 1.07 0 1.47-.38 1.08-1.01a1.4 1.4 0 0 0-.72-.55c-.54-.14-1.62-1.32-1.98-2.18-.15-.35-.5-.85-.8-1.12-.34-.33-.52-.7-.52-1.13 0-.35-.13-1.04-.29-1.54-.43-1.34-.79-5.37-.51-5.87.32-.6 0-.96-.4-.43-.17.24-.64.6-1.03.8-.39.22-.8.57-.91.79-.12.22-.9 1.16-1.73 2.08-.83.92-1.58 1.83-1.65 2.03-.08.2-.65 1.25-1.28 2.34-1.22 2.1-1.2 1.98-.26 3.03.2.22.35.52.35.66 0 .15.1.27.23.27.12 0 .5.23.83.5.33.28.74.51.9.51.33 0 .88.48.88.76 0 .3 2.55 1.03 4.4 1.24.12.02.75-.24 1.39-.58zm10.14-3.88c.28-.13.56-.4.63-.6.06-.2.45-.57.86-.82.42-.26.78-.54.82-.63.04-.09.44-.63.89-1.2.52-.65.85-1.31.92-1.82.1-.7.02-.88-.7-1.65a6.37 6.37 0 0 1-1.06-1.57c-.61-1.6-.73-1.8-1.06-1.9-.2-.04-.43-.4-.53-.77a1.4 1.4 0 0 0-.72-.94c-.3-.15-.55-.4-.55-.56 0-.2-.23-.3-.73-.3-.42 0-.94-.16-1.24-.4-.28-.22-.69-.4-.9-.4-.3 0-.37.15-.37.86 0 .47.14 1.03.3 1.25.3.4.78 1.86 1.23 3.77.53 2.22.72 2.93.87 3.14.17.24.13 2.19-.08 3.7-.14 1.05-.13 1.07.38 1.07a3 3 0 0 0 1.04-.23zm50.56-3.77c-.24-.14-.8-.35-1.25-.46a10.94 10.94 0 0 1-1.62-.6 54.63 54.63 0 0 0-1.56-.7c-.9-.4-3.77-3.42-4.62-4.86a129.63 129.63 0 0 0-.91-1.55 17.24 17.24 0 0 1-1.33-3.02c0-.1-.43-.55-.95-.97a29.9 29.9 0 0 1-1.72-1.55c-.74-.73-.78-.83-.78-2.06 0-.91-.1-1.4-.32-1.62-.18-.17-.22-.32-.1-.32.11 0 .26-.25.33-.55a9.18 9.18 0 0 1 1.13-2.87c.25-.31.38-.82.38-1.44 0-.78.1-1.04.58-1.5.34-.33.74-1.06.95-1.72.5-1.58 1-2.3 2.98-4.26 2.18-2.15 4.65-3.48 6.45-3.48.68 0 1.3.12 1.53.3.21.16.6.3.84.3s.5.1.57.21c.06.11.38.2.7.2.33 0 .64.08.7.18.06.1.35.25.65.32.57.14 1.09.57 1.09.89 0 .1.3.34.68.51.38.18.8.47.94.64.14.17.37.3.5.3.26 0 2.37 2.2 3.56 3.7.4.5 1.33 1.45 2.08 2.1.75.66 1.37 1.34 1.37 1.52 0 .17.1.4.2.52.12.11.3 1.02.42 2.02.19 1.68.38 2.5.83 3.7.27.71.22 4.17-.07 4.46-.3.29-.75 1.94-.76 2.74 0 .3-.19.75-.4.99-.22.23-.54.72-.71 1.08-.17.36-.46.77-.64.92-.17.15-.46.55-.63.89-.18.34-.9 1.2-1.61 1.91-.71.7-1.3 1.37-1.3 1.47 0 .24-1.1.8-1.6.8-.23 0-.5.16-.62.37-.1.21-.36.46-.56.55-.6.27-4.9.22-5.4-.06z%22/%3E%3Cpath d=%22M248.52 144.33c0-.21.25-.57.56-.8l.55-.4-.65-.37c-.36-.2-.66-.52-.66-.69 0-.44-.47-1.4-.69-1.4-.1 0-.32.16-.5.36-.18.2-.63.5-1 .68-.56.26-.8.27-1.38.07-.93-.32-1.9-1.28-1.9-1.88 0-.26-.4-1.23-.86-2.14-.89-1.72-.86-1.6-1.2-6.02-.02-.17.02-1.27.07-2.44.1-2.1.1-2.13-.43-2.58-.29-.26-.64-.46-.76-.46-.57 0-1.84.91-2.37 1.69a78.44 78.44 0 0 1-1.06 1.53c-.28.38-.5.9-.5 1.14s-.27.8-.6 1.22c-.58.72-.83 1.72-.44 1.72.1 0 .24.24.32.53.17.7 1.46 2.4 2.62 3.49.52.48.94 1.05.94 1.26 0 .5 2.36 2.87 3.15 3.16.43.16.62.37.67.76.05.41.17.54.54.54.27 0 .54.08.6.19.38.61 2.17 1.18 3.82 1.2 1.02.03 1.16-.02 1.16-.36zm5-3.82c.26-.3.48-.68.48-.82 0-.14.19-.46.41-.7.5-.54.45-1-.15-1.27-.25-.1-.5-.45-.57-.76-.07-.3-.24-.63-.37-.71a9.82 9.82 0 0 1-1.75-2.74.7.7 0 0 0-.14-.43 1.35 1.35 0 0 1-.21-.59c-.14-.98-.48-1.68-.9-1.87-.4-.18-.58-.43-.97-1.28-.17-.4-.53-.2-.5.26.05.55.9 3.77 1.12 4.21.1.2.18.48.18.63 0 .15.22.83.5 1.52.28.68.51 1.55.51 1.93 0 .38.14.8.3.94.17.14.26.33.2.43-.06.1.12.37.4.62.35.3.48.58.4.82-.18.58.5.45 1.06-.2z%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22M180.13 159.05c-1.2-.31-1.61-.5-2.03-.96-.29-.3-.63-.56-.75-.56-.65 0-2.48-1.77-2.92-2.82-.04-.08.47-1.1 1.12-2.28 1.32-2.38 4.22-5.99 5.64-7l.8-.58.03 1.93c.01 1.07.15 2.52.31 3.24.16.72.35 1.73.43 2.23.09.62.3 1.13.66 1.57.29.36.66.92.83 1.24a5.55 5.55 0 0 0 2.01 2.12c.56.23.82.66.56.93-.1.09-.55.2-1.01.25-.47.05-1.35.32-1.96.6-1.33.59-1.73.6-3.71.09zm12.72-5.9c.09-2.14.08-2.2-.72-5.2-.44-1.66-1-3.48-1.24-4.05-.37-.88-.58-2.08-.36-2.08.04 0 .5.2 1 .43.52.24 1.1.44 1.3.44.48 0 1.61 1.06 1.84 1.73.1.28.36.63.58.78.22.14.57.72.78 1.29.21.56.74 1.45 1.16 1.97.56.68.78 1.1.78 1.5 0 .73-1.54 3.05-2.35 3.55-.33.2-.82.64-1.09.98-.34.42-.68.64-1.13.71l-.63.1zm52.33-8.96a5.3 5.3 0 0 1-1.23-.58 4 4 0 0 0-.87-.47c-.2-.06-.47-.34-.58-.62a1.5 1.5 0 0 0-.7-.7c-.62-.26-2.91-2.51-3.07-3.01-.06-.2-.74-1.08-1.5-1.94s-1.6-1.97-1.84-2.46a4.6 4.6 0 0 0-.6-.99c-.2-.12.08-.9.57-1.58.2-.28.43-.78.52-1.11a9.65 9.65 0 0 1 2.72-3.74c.95-.63 1.05-.64 1.63-.2l.43.34.02 3.37c.03 4.26.2 5.3 1.18 7.44.42.93.82 1.9.88 2.15.12.52.84 1.3 1.57 1.67.81.43 1.63.33 2.5-.28.42-.3.84-.5.93-.44.09.05.25.4.35.8.13.47.36.8.72 1.02.52.31.53.33.17.52-.2.1-.42.39-.48.62-.1.41-.17.43-1.35.42a8.5 8.5 0 0 1-1.97-.24zm7.44-3.63c0-.24-.16-.58-.37-.77-.43-.4-.6-.8-1.03-2.42a86.53 86.53 0 0 0-1-3.41c-.38-1.2-.82-2.71-.96-3.36-.28-1.2-.16-1.57.21-.68.11.27.43.67.71.87.33.24.58.64.7 1.12a11.67 11.67 0 0 0 1.83 3.88c.43.57.79 1.13.79 1.25 0 .1.24.44.54.73.33.32.5.63.43.76a7.57 7.57 0 0 1-1.47 2.2c-.35.24-.38.23-.38-.17z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath stroke=%22%23000%22 stroke-width=%2215.47%22 d=%22M153.71 357.85c-4.7-.86-15.17-3.28-23.27-5.38-13.73-3.56-14.86-4.2-16.99-9.8-6.34-16.72.02-62.74 11.03-79.78 13.73-21.26 18.82-35.65 20.12-56.91l.56-9.2-12.34-.8c-13.01-.82-15.54-1.59-11.93-3.6 2.52-1.4 11.93-13.52 11.93-15.37 0-.67-1.93-1.99-4.28-2.92-5.27-2.08-15.81-16.01-18.53-24.48-9.07-28.3.22-53.92 25.17-69.38 16.69-10.34 29.6-13.52 51.77-12.73 16.53.58 20.59 1.37 31.34 6.05 23.16 10.1 36.66 27.15 40.52 51.18 1.82 11.35 1.58 13.26-3.38 27-2.94 8.12-7.1 16.8-9.27 19.28-4.43 5.07-5 4.34 10.1 13.08 10.71 6.2 9.72 9-4.16 11.7-11.86 2.3-11.97 2.37-12.14 8.29-.39 13.72 6.03 32.07 15.99 45.75 15.68 21.54 20.4 37.8 18.3 63.03-.73 8.87-2.48 30.83-3.42 30.83-.98 0-.8-22.55-.1-33.1 1.06-16.11.69-20-3.04-31.23-2.54-7.7-8-17.98-13.6-25.67-11.59-15.92-16.81-30.52-16.81-47v-12.42l9.75-1.04c5.37-.57 10.15-1.4 10.64-1.84 1.71-1.54-1.75-4.53-9.22-7.97-9.73-4.47-10.5-6.67-4.92-14.07 2.5-3.34 6.52-11.54 8.9-18.24 8.17-22.88 1.85-46.66-16.9-63.55-14.47-13.04-27.37-17.54-50.48-17.64-20.8-.1-29.42 2.05-44.37 11.04-13.53 8.15-23.27 19.4-27.95 32.3-2.94 8.1-3.1 11.02-1.22 22.6 3.12 19.28 11.42 32.71 23.8 38.52l5.35 2.5-6.92 6.9c-3.8 3.8-6.39 7.37-5.74 7.96.65.58 5.2 1.47 10.12 1.98 8.94.93 8.94.93 9.52 8.02 1.43 17.65-7.54 45.2-19.64 60.3-2.55 3.18-5.53 8.57-6.6 11.98-4.25 13.33-7.87 40.94-7.09 53.97.74 12.2 1.33 13.91 5.9 17.2 6.3 4.52 32.8 10.93 50.49 12.22 28.86 2.1 79.03-4.86 94.74-13.15 5.85-3.1 6.27-3.12 5.7-.32-.8 3.9-25.64 11.49-45.87 14-17.58 2.18-59.44 2.13-71.56-.09z%22 transform=%22matrix(.83059 0 0 .8634 32.3 41.65)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M173.6 349.97c-11.86-.95-30.95-5.37-38.03-8.78-3.89-1.88-5.31-3.02-6.32-5.08-4.13-8.4-.3-49.13 5.8-61.64a78.2 78.2 0 0 1 4.9-8.11c6.84-9.88 12.3-24.1 14.5-37.72 1.02-6.39.8-16.68-.4-18.05-.78-.9-2.58-1.33-8.98-2.17a63 63 0 0 1-4.34-.76l-2.11-.46.72-1.45c.4-.8 2.81-3.68 5.37-6.4l4.65-4.96-4.56-2.48a30.8 30.8 0 0 1-12.17-11.39c-6.9-11.1-10.2-29.82-6.99-39.51 4.62-13.9 14.28-24.56 29.58-32.62 7.89-4.16 13.43-5.52 24.84-6.08 7.1-.35 17.21.29 22.4 1.4 9.76 2.1 16.66 5.84 24.96 13.5 14.7 13.57 20.35 32.17 15.48 51.02-1.34 5.18-5.32 14.28-8.41 19.25-4.47 7.18-4.1 8.34 4.15 12.72 4.95 2.64 7.85 4.82 7.85 5.93 0 .37-.94.81-2.34 1.11a201.1 201.1 0 0 1-14.55 1.89c-.88 0-.4 17.77.61 22.7 1.97 9.58 5.26 17.04 12.36 28.06 5.94 9.22 10.05 17.32 12.14 23.97 2.58 8.21 2.7 9.76 2.17 29.63-.25 9.76-.37 18.93-.26 20.38l.2 2.64-3.05 1.6c-15 7.85-55.56 13.85-80.17 11.86z%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%222.8%22 d=%22M192.68 177c-2.5-2.25-.24-3.34 8.99-4.35 5.48-.6 12.32-1.56 15.2-2.15 6.4-1.3 7.18 2.18.94 4.28-5.32 1.79-23.8 3.42-25.13 2.22zm-1.96-24.35c-1.59-4.5 1.85-8.38 4.95-5.58 2.52 2.27 1.62 7.69-1.44 8.6-1.22.37-2.8-1-3.51-3.02zm25.99-5.32c.35-2.21 2.17-4.25 4.1-4.58 2.7-.46 3.34.3 2.85 3.39-.35 2.21-2.17 4.25-4.1 4.58-2.7.46-3.34-.3-2.85-3.39z%22 transform=%22matrix(.83059 0 0 .8634 27.32 41.65)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cg stroke=%22%23000%22 stroke-width=%227.44%22%3E%3Cpath d=%22M103.88 363.1c0-1.41 2.36-3.14 5.74-4.2l5.75-1.82-4.43-6.67c-7.9-11.89-10.44-24.68-10.47-52.67-.01-14.69.87-31.05 1.97-36.35l1.99-9.64h-5.55c-3.05 0-6.85.55-8.45 1.23-2.34 1-3.77.79-7.24-1.05-3.56-1.88-4.15-3.46-3.33-8.9.86-5.65 3-8.34 14.8-18.48 7.75-6.66 19.78-15.06 27.42-19.14 10.04-5.35 15.46-9.46 20.62-15.62 3.85-4.6 8.6-9.68 10.53-11.3 3.8-3.17 3.87-3.13-8.63-4.32-13-1.23-8.94-10 6.06-13.08l7.61-1.56-6.75-7.55C134.17 132.62 118.48 95 123.2 84.12c1.33-3.04 3.14-3.93 11.19-5.51 5.28-1.03 14.24-1.9 19.92-1.92 15.97-.05 20.62-.87 20.62-3.63 0-1.32 1.58-3.72 3.5-5.33 4.27-3.56 1.24-3.85-9.86-.93-10.76 2.83-17.76 2.58-20.67-.75-4.1-4.68-5.21-9.41-3.64-15.4 1.8-6.86 4.41-7.6 18.97-5.34 5.72.89 10.76 1.45 11.22 1.25.45-.2-.77-1.68-2.72-3.3a19.47 19.47 0 0 1-4.97-6.82c-1.31-3.54-.9-3.97 5.09-5.17 8.17-1.64 55.64-2.56 60.36-1.17 3.02.89 2.99 1.67-.23 6.73-2 3.15-4.5 6.59-5.53 7.64-1.6 1.6-1.22 1.78 2.52 1.09 14.88-2.73 24.32-3.7 26.56-2.73 3.93 1.7 4.96 17.13 1.34 20-2.78 2.2-4.44 2.46-15.03 2.27-6.54-.12-11.9 0-11.9.28s2.1 2.28 4.67 4.46c2.57 2.17 4.06 4.38 3.3 4.9-.81.57 3.8.96 11.45.96 7.05 0 16.4.64 20.8 1.43l7.97 1.44-1.21 13.65c-2.09 23.39-7.19 38.46-19.69 58.15-2.53 3.99-3.47 7.05-2.2 7.23 1.2.18 4.81 1.21 8.03 2.3 8.22 2.8 7.82 7.08-1.03 10.9-5.89 2.54-6.87 3.7-6.84 8.08.02 2.81 1.54 8.17 3.37 11.9 3.08 6.27 4.5 7.3 19.21 13.99 22.69 10.3 30.57 17.79 31.74 30.15 1.22 12.93-3.23 16.13-18.6 13.34-3.81-.7-4.17-.47-2.84 1.8 4.37 7.53 9.05 33.01 9.2 50.15.18 19.22-2.4 29.28-11.23 43.94-2.8 4.63-2.66 5.27 1.68 8.31 4.24 2.97 4.36 3.45 1.18 4.82-3.11 1.35-4.3 1.35-10.21.08-4.77-1.02-8.3-1.17-12.25-.5-12.89 2.16-70.96 5.01-104.11 5.12-27.16.08-36.25.46-43.26 1.8-12 2.3-15.19 2.17-15.19-.68z%22 transform=%22matrix(.83537 0 0 1 39.07 -.05)%22/%3E%3Cpath d=%22M270.13 98.91c1.32-14.53 1.04-18.04-1.52-18.95-1.86-.67-15.01-1.26-32.18-1.46-15.97-.18-29.83-.67-30.8-1.09-3.14-1.36 3.08-2.92 13.8-3.44 5.78-.28 10.51-.69 10.51-.9 0-1.28-7.63-7.96-10.8-9.48-6.61-3.15-.62-3.82 15.19-1.7 8.04 1.09 15.24 1.7 16 1.38 2.27-.98 2.86-15.67.68-17.05-1.6-1.03-5.14-.74-17.26 1.4-8.38 1.49-15.9 2.42-16.7 2.07-.8-.34.73-2.98 3.4-5.86 2.69-2.87 5.56-6.74 6.4-8.59l1.51-3.36-23.85.55c-13.12.3-25.64.86-27.84 1.24-5.08.88-3.6 3.96 5.42 11.3 3.63 2.95 6.6 5.73 6.6 6.18 0 1.37-5.5.91-20.5-1.72-7.92-1.39-15.06-2.24-15.85-1.9-2.05.89-1.83 13.27.3 16.55l1.76 2.72 13.85-3.01c8.12-1.78 15.62-2.78 18.12-2.44 4.12.56 4.1.76-.58 5.62-4.6 4.78-4.66 5.19-1.03 7.91 4.61 3.47 4.88 3.42-22.2 4.21-11.22.33-23.08 1.15-26.36 1.82-5.25 1.08-6.04 1.9-6.65 6.91-1.98 16.41 19.75 59.52 35.11 69.64 4.68 3.08 2.92 5.27-4.24 5.27-7.79 0-17.57 3.62-17.57 6.5 0 2.01 1.4 2.48 9.16 3.01 11.47.8 11.57 1.66 1.46 12.49-10.96 11.72-25.6 31.37-32.35 43.39-11.36 20.23-13.61 31.29-13.58 66.65.03 34.4 1.97 43.67 12.1 57.71l4.42 6.13-6.65 1.49c-3.66.81-6.65 1.68-6.65 1.93 0 .63 11.9-1.4 15.3-2.62 1.83-.66 11.66-.77 27.76-.32 25.57.71 62.57-.76 101.86-4.07 12.75-1.07 18.98-1.2 22.2-.46 7.18 1.66 8.24 1.2 2.9-1.24l-4.96-2.28 5.55-10.6c9-17.18 11.27-27.99 9.72-46.1-2.4-27.94-6.87-41.35-26.76-80.18-8.4-16.37-13.68-29.1-14.09-33.9-.61-7.26-.3-7.83 5.57-10.18 8.79-3.51 8.5-7.69-.66-9.33-8.62-1.54-8.73-3.12-1.01-15.63 6.66-10.8 11.6-18.92 12.56-26.65 2.8-7.35 2.55-9.75 3.44-19.56z%22 transform=%22matrix(.83537 0 0 1 39.07 -.05)%22/%3E%3Cpath d=%22M99.94 248.2c3.43 1.49 3.83 1.32 5.14-2.12 5.14-13.46 17.35-34.3 22.93-39.12.77-.66-1.84.35-5.79 2.26-10.16 4.9-34.19 26.21-35.87 31.82-.76 2.55-.66 5.88.23 7.4l1.6 2.76 4.02-2.3c3.71-2.12 4.31-2.17 7.74-.7zm203.3-11.85c.06-10.82-10.86-21.8-29.22-29.39l-6.66-2.75 7.59 15.12c7.95 15.84 14.82 25 18.74 25 1.28 0 3.12.34 4.09.76 3.38 1.46 5.43-1.82 5.47-8.74z%22 transform=%22matrix(.83537 0 0 1 39.07 -.05)%22/%3E%3C/g%3E%3Cg fill=%22gray%22%3E%3Cpath d=%22M140.8 352.64c-5.33-8.9-7.83-15.74-9.21-25.21-1.1-7.52-1.68-31.34-1.15-46.96.74-21.32 2.04-29.4 6.72-41.79 5.32-14.07 17.33-34.52 30.8-52.42 6.42-8.55 7.6-11.05 6.21-13.23-.84-1.34-2.17-1.74-7.78-2.4-2.86-.32-5.6-.76-6.07-.97-.82-.37-.8-.44.38-1.44 2.02-1.73 6.4-3.23 10.89-3.74 6.02-.7 6.96-1 7.93-2.55 1.18-1.9.6-3.22-2.92-6.52-10.35-9.74-24.1-39.11-27.38-58.52-.94-5.56-.66-11.81.58-13.02 1.81-1.75 9.24-2.59 31.26-3.52 13.37-.56 15.02-.87 15.44-2.89.24-1.14 0-1.62-1.68-3.38-1.08-1.12-1.97-2.24-1.96-2.47 0-.23 1.21-2.02 2.7-3.97 3.05-4 3.42-5 2.4-6.5-1.5-2.23-7.45-1.77-20.65 1.6-4.26 1.09-8 1.98-8.3 1.98-1.48 0-2.96-7.97-2.44-13.05l.28-2.71 2.65.3c1.46.16 6.84 1.1 11.97 2.1 10.96 2.12 14.82 2.4 15.85 1.18 1.28-1.53.38-3.05-5.08-8.66-5.66-5.8-7.06-7.71-6.16-8.38.3-.21 2.74-.54 5.45-.73 4.58-.31 29.8-1.27 34.32-1.3l2.03-.01-.9 1.9a44.17 44.17 0 0 1-3.23 5.17c-3.72 5.19-4.78 7.1-4.78 8.63 0 1.12.24 1.5 1.1 1.76 1.59.47 6.05-.08 14.49-1.8 4.05-.82 8.63-1.64 10.17-1.83 2.56-.31 2.84-.25 3.27.7.58 1.3.6 9.31.02 11.82-.54 2.32-.11 2.3-11.99.62-11-1.55-15.3-1.63-16.68-.3-.86.83-.92 1.1-.48 2.24a5.8 5.8 0 0 0 2.13 2.3c.9.55 3.02 2.32 4.71 3.93l3.07 2.93-2.27.34c-1.25.2-4.64.58-7.54.87-6.09.6-9.52 1.66-9.88 3.01-.38 1.44.14 2.47 1.56 3.06.77.32 9.37.75 21.34 1.06 25.4.66 30.73 1.05 31.55 2.32 1.2 1.88-.37 26.18-2.15 33.22-.55 2.21-1.35 5.38-1.75 7.05-1.11 4.5-3.13 9.3-7.64 18.22-4.95 9.76-6.49 13.5-6.49 15.83 0 3.32 1.15 4.34 6.53 5.79 1.61.43 3.38 1.14 3.93 1.57.96.75.97.8.21 1.82-.42.57-2.3 1.9-4.2 2.95-4.58 2.56-5.2 3.57-5.2 8.48 0 7.29 2.64 15.46 13.2 40.75 14.43 34.58 17.8 45.88 20.1 67.2 2.08 19.3 1.38 30.7-2.6 42.78A376.2 376.2 0 0 1 268.4 350c-.69 1.45-.7 1.71-.15 2.14.43.33-.8.49-3.8.5-2.42 0-6.5.23-9.05.49-31.01 3.21-50.1 4.2-82.4 4.25l-29.34.05z%22/%3E%3Cpath d=%22M112.59 247.95c-.5-1.1-.5-1.12-.5-3.43.01-1.69.08-2.53.26-3.08.58-1.81 2.4-4.43 6.42-9.23a153.86 153.86 0 0 1 14.86-15.43c3.35-3.01 7.75-6.42 7.96-6.17.04.05-.18.52-.5 1.05a175.7 175.7 0 0 0-7.78 14.94c-1.8 3.86-5.56 13-6.6 16.05-1.78 5.22-1.65 4.9-2.05 4.85-.2-.03-1.1-.4-2-.84-2.93-1.4-3.8-1.29-7.2.98a29 29 0 0 1-2.25 1.42c-.06 0-.34-.5-.62-1.11zm175.2-4.42c-.43-.19-1.53-.46-2.45-.6-1.5-.24-1.75-.33-2.47-.92-2.7-2.23-6.75-9.16-11.26-19.26-1.97-4.43-6.53-15.43-6.44-15.54.1-.13 3.35 1.49 6.03 3.02 8.99 5.12 15.39 11.5 18.25 18.17a18 18 0 0 1 1.68 7.32c.16 4.71-.75 8.2-2.11 8.16-.25-.01-.8-.17-1.23-.35z%22/%3E%3C/g%3E%3Cpath stroke=%22%23000%22 stroke-width=%221.83%22 d=%22M260.08 123.35c-1.63 2.65-14.8 5.87-24.14 5.9-8.3.02-16.1-3.5-18.08-8.16-1.12-2.63-.46-3.49 4.47-5.76 10.05-4.64 33.03-5.78 37-1.84.8.79 1.96 2.28 2.53 4.93-.47 1.41-1.05 3.75-1.78 4.93zm-60.91 18.07c-1.72-1.43 4.02-7.02 8.47-8.25 3.9-1.08 4.99-.83 10.8 2.45 6.15 3.46 7.23 5.52 3.24 6.18-.99.16-3.78-1.29-6.21-3.23-3.61-2.87-4.93-3.3-7.18-2.33-1.52.65-2.76 1.74-2.76 2.42 0 1.6-5.1 3.81-6.36 2.76zm-20.09-11.87c-5.55-.55-11.83-5.74-11.84-9.78 0-1.69 1.96-4.58 4.36-6.43 3.75-2.88 5.62-3.4 13.03-3.65 7.8-.27 9.56.11 17.65 3.79 4.95 2.25 8.99 4.68 8.99 5.4 0 3.2-20.06 11.8-26.25 11.24l-5.94-.57zm-10.44-25.6c-2.8-1.45 1.92-3.58 15.27-6.9 9.4-2.33 15.03-3.23 16.26-2.6 2.1 1.08-11.32 6.28-22.36 8.66-7.55 1.63-7.62 1.64-9.17.84zm75.93-2.4c-10.05-2.58-17.49-6.56-14.84-7.93 1.32-.68 3.62-.32 7.14 1.1 2.85 1.16 8.71 3.08 13.01 4.25 13.34 3.64 8.31 6.09-5.31 2.58z%22/%3E%3Cpath fill=%22%23fff%22 stroke=%22%23000%22 stroke-width=%222%22 d=%22M155.76 116.46c-.43-2.66.38-5.78 1.8-6.92 2.29-1.85 1.95-2.08-2.97-2.08-6.35 0-12.95 3.65-12.95 7.16 0 2.99 6.1 6.69 11.01 6.69 3.23 0 3.75-.82 3.1-4.85zm23.57-1.46c1.92-1.34 1.25-2.07-3.31-3.58l-5.73-1.89-1.23 4.3c-.67 2.36-2.73 5.12-4.58 6.13-2.18 1.2-.58.94 4.54-.72 4.34-1.4 8.98-3.31 10.3-4.24zM236.15 119.18c5-1.13 7.75-5.58 4.72-7.67-1.26-.87-5.9-1.71-10.32-1.87-7.89-.3-8.06-.22-9.4 4-.76 2.36-2.09 5.1-2.97 6.1-1.42 1.59-.72 1.7 6.2 1.07 4.28-.4 9.58-1.13 11.77-1.63zm-25.65-6.15c2.09-2.77 2.02-2.8-3-1.34-4.88 1.43-5.54 3.27-2.37 6.65 1.08 1.16 1.6 1.05 2.32-.5.5-1.08 1.88-3.25 3.05-4.8z%22 transform=%22matrix(.83537 0 0 1 54.66 5)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath stroke=%22%23000%22 stroke-width=%2210%22 d=%22m150.84 369.29-35.71-1.96-15.28-.85 1.75-4.25c.96-2.33 1.73-5.16 1.7-6.27-1.3-56.45 1.29-66.52 23.77-92.15 5.54-6.32 9.46-11.83 8.7-12.25-1.96-1.1-38.06 8.77-42.62 11.66-3.16 2-24.5 9.51-25.49 8.97-1.9-1.07 16.76-13.36 33.13-21.84 23.51-12.17 30.65-15.19 44.04-18.63 29.74-7.63 29-7.3 33.13-14.7 2.25-4.04 4.1-12.43 4.34-19.72.4-11.9.08-12.85-5.3-15.23-13.34-5.9-27.7-14.56-32.15-19.38-2.63-2.84-5.59-5.5-6.57-5.91-.99-.4-2.86-11.3-4.17-24.22-1.3-12.91-4.1-29.23-6.2-36.26-4.22-14.11-8.44-39.33-6.74-40.32.6-.35 3.8 1.32 7.13 3.7 5.59 4 10.91 5.73 10.23 3.32-1.15-4.08.75-13.79 2.7-13.79 1.31 0 2.4.86 2.4 1.9 0 2.26 12.09 12.9 14.65 12.9.98 0 2.49-1.78 3.34-3.96 1.15-2.93.2-5-3.66-7.92-3.94-2.99-4.82-4.97-3.6-8.08 3.68-9.4 18.38-15.02 39.24-15.02 16.67 0 22.06 3.55 24.53 16.13 2.7 13.8 4.65 14.07 15.45 2.12 3.72-4.12 7.71-7.48 8.88-7.48 1.16 0 2.11 3.93 2.11 8.74 0 10.67 3.84 11.49 10.96 2.33l4.95-6.36-.54 54.22c-.63 61.95-.6 61.82-20.65 74.98-7.01 4.6-11.23 8.55-10.55 9.86.63 1.21 3.4 7.65 6.15 14.31 7.88 19.06 10.92 22.46 27.25 30.46 26.38 12.93 59.35 33.6 59.35 37.2 0 .7 2.25 2.87 5 4.82 7.87 5.6 4.24 6.84-6.26 2.13-17.79-7.96-37.38-14.92-40.85-14.49-2.75.34-1.48 3.7 6.2 16.52 13.45 22.41 17.37 37.77 16.32 64-.61 15.49.88 24.7-1.45 25.98-2.66 1.45-5.46-2.27-3.8-7.86 3.14-10.55 1.51-46.03-2.62-57.11-5.78-15.52-21.4-41.38-36.2-59.94-17.7-22.17-32.49-48.95-32.49-58.8 0-1.34 4.2-4.55 9.33-7.14 5.13-2.6 11.82-7.9 14.86-11.77 5.43-6.93 5.53-7.93 5.7-56.63.16-49.23.13-49.53-4.26-43.9-5.62 7.21-8.54 5.62-9.36-5.1-.35-4.6-1.39-8.36-2.3-8.37-.9 0-5.1 3.92-9.34 8.73-4.23 4.81-8.5 8.75-9.49 8.75-.98 0-2.53-3.32-3.44-7.38-.9-4.06-2.49-7.67-3.52-8.03-1.9-.65-7.77 8.48-8.56 13.31-.85 5.26-5.6 3.4-8.48-3.33-4.48-10.46-7.69-7.15-9.48 9.8-.32 2.94-4.29.24-7.94-5.38-8.27-12.76-11.72-12.84-13.34-.3-.57 4.42-1.89 8.04-2.92 8.04-1.04 0-5.83-3.33-10.66-7.4-4.82-4.07-9.4-7.4-10.18-7.4-.78 0-.8 3.33-.05 7.4 1.58 8.54-1.85 9.87-8.72 3.36-9-8.54-9.2-4.79-1.37 26.24a268.58 268.58 0 0 1 6.16 38.34c1.02 14.04 2.57 21.02 5.56 24.92 4.85 6.34 29.06 21.44 38.96 24.3 5.24 1.52 6.56 2.69 5.61 4.97-.68 1.65-1.68 7.83-2.21 13.75-1.48 16.28-6.35 22.18-41.1 49.78-28.6 22.7-41.39 51.52-38.53 86.78.81 9.99 2.03 19.18 2.7 20.42.7 1.3-.6 2.85-3.1 3.67-3.74 1.24-3.84 1.6-.7 2.77 1.98.74 5.77 1.37 8.41 1.4 2.65.02 15.08.66 27.64 1.4 43.87 2.64 149.27 1.11 159.23-2.3 1-.33 1.8-.02 1.8.7 0 4.47-96.85 7.09-151.41 4.1z%22/%3E%3Cpath fill=%22gray%22 d=%22M171.08 367.3c-28.63-.56-57.8-2-63.3-3.13-3.86-.8-4.51-1.83-1.63-2.58 2.85-.73 3.67-2.68 2.78-6.59-1.65-7.23-2.97-26.55-2.35-34.36 1.79-22.35 9.82-40.93 24.66-57.03 2.33-2.53 12.48-11.5 22.56-19.92 26.75-22.37 30.53-27.43 32.66-43.8l1.56-11.83.59-4.35-6.17-2.29c-12.54-4.66-35.78-19.65-39.43-25.43-1.72-2.73-3.88-13.54-4.65-23.3-.9-11.38-3.83-28.67-7.53-44.3-4.02-16.97-4.9-23.44-3.19-23.44.67 0 3.44 1.72 6.16 3.83 2.71 2.1 5.33 3.82 5.81 3.82 2.47 0 3.2-2.42 2.56-8.42-.36-3.37-.36-6.12 0-6.12.35 0 4.38 2.92 8.96 6.5 10.94 8.52 11.7 8.84 13.32 5.6.7-1.4 1.56-4.56 1.93-7.05.66-4.5 2.12-8.11 3.27-8.11 1.25 0 5.52 4.34 8.3 8.44 3.32 4.87 6.2 7.63 7.99 7.63.85 0 1.55-1.98 2.23-6.32 1.07-6.77 2.42-10.52 3.8-10.52.76 0 4.8 6.17 4.8 7.34 0 .25.87 1.46 1.93 2.69 1.98 2.27 5.32 2.98 5.95 1.26 2.79-7.63 3.81-9.81 5.77-12.27 1.27-1.6 2.7-2.7 3.18-2.46.48.24 1.32 1.9 1.88 3.67 2.8 8.91 3.85 11.25 5.06 11.25.71 0 5.15-3.99 9.85-8.87s8.77-8.7 9.04-8.48c.26.21 1.08 3.9 1.8 8.2.74 4.29 1.57 8.1 1.85 8.48 1.16 1.54 4.24.48 7.1-2.43 2.63-2.68 3.14-2.92 3.71-1.73.97 2.01.9 79.72-.07 87.98-.51 4.3-1.55 8.13-2.7 10-2.67 4.28-9.84 10.57-15.95 14a59.73 59.73 0 0 0-7.9 5.24c-2.4 2.08-2.6 2.65-1.99 5.63 2.35 11.55 14.58 32.87 32.18 56.15 11.42 15.08 18.85 26.21 25.66 38.44 7.85 14.06 10.55 20.4 12.26 28.8 2.07 10.16 2.86 36.83 1.38 46.66-.87 5.79-.92 8.36-.18 9.5.95 1.45.69 1.59-3.85 2.03-17.79 1.74-81.17 2.78-121.65 1.99z%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%222.9%22 d=%22M193.05 151.47c-2.54-3.25-2.3-3.27 5.61-.57 5.18 1.76 7.46 1.84 13.6.5 4.06-.89 9.3-2.81 11.67-4.28 2.36-1.47 5.44-2.4 6.85-2.09 1.53.35-.93 2.32-6.06 4.86-7.12 3.52-10.47 4.27-19.1 4.27-8.45 0-10.87-.52-12.57-2.7zM191.08 138c0-.74.88-1.34 1.97-1.34 1.08 0 1.97.6 1.97 1.34s-.89 1.35-1.97 1.35-1.97-.6-1.97-1.35zm22.97-2.24c-2.26-1.55-1.43-3.14 1.65-3.14 1.62 0 2.95.9 2.95 2.02 0 2.1-2.33 2.67-4.6 1.12z%22 transform=%22matrix(1.15657 0 0 1.57167 -40.18 -81.97)%22/%3E%3Cpath fill=%22gray%22 d=%22M186.89 52.31c4.7-8.2 9.04-8.93 11.06-1.85 1.44 5.01 5.76 7.83 5.76 3.75 0-.96 2.19-4.13 4.86-7.06 4.05-4.46 4.4-5.94 2.07-9.08-3.43-4.64-8.84-6.35-20.1-6.35-9.65 0-19.52 2.42-25.86 6.34-5.29 3.27-7.53 9.87-4.25 12.5 2.2 1.77 2.92 1.73 5.74-.34 4.44-3.24 4.98-3.08 9.9 3.03 2.39 2.96 4.99 5.38 5.78 5.38s3.06-2.85 5.04-6.31zm128.55 212.5c-13.54-11.92-54.54-36.83-57.71-35.05-.77.43 2.71 5.52 7.74 11.3 8.45 9.72 10.7 11.16 29.58 18.87 11.23 4.6 21.36 8.4 22.5 8.47 1.15.06.2-1.55-2.11-3.59zm-191.46-13.7c14.72-4.62 26.69-9.37 29.4-11.67 2.5-2.14 6.33-5.25 8.51-6.91 3.71-2.84 3.69-3.03-.4-3.03-8.79 0-38.8 11.57-60.5 23.32-23.77 12.87-28.7 17.07-12.04 10.26 5.61-2.3 21.38-7.69 35.03-11.97z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%2210.48%22 d=%22M137.16 359.73c0-.65-2-5.13-4.45-9.96-13.02-25.76-27.48-69.96-34.5-105.48-9.6-48.63-12.63-88.76-9.3-123.27 1.47-15.36 1.78-28.51.76-32.57a35.2 35.2 0 0 0-2.5-6.14c-1-1.94-1.83-3.82-1.83-4.18 0-1.34 2.47-2.91 6.08-3.88 5.14-1.37 17.24-3.39 20.37-3.39 3.72 0 4.98 1.35 6.06 6.43a90.66 90.66 0 0 0 1.85 7.12l1.06 3.33 5.7-.08c3.14-.04 8.6-.51 12.12-1.05 8.49-1.28 8.35-1.12 7.8-8.85-.6-8.14-.48-12.52.33-13.3.43-.43 2.85-.84 6.85-1.16 7.36-.6 36.86-2.08 37.08-1.86.08.08.4 4.22.7 9.18.3 4.97.63 9.48.74 10.03.19.93.7 1.03 7.68 1.57 12.53.96 21.02 1.16 25.1.57 4.14-.59 7.29-1.87 8.2-3.33.31-.5.79-3.56 1.06-6.78.58-7.04 1.06-8.9 2.67-10.41 2.02-1.9 6.9-1.8 24.25.47a884.8 884.8 0 0 0 15.33 1.94c.41 0 .55 4 .56 15.57 0 15.83.57 32.75 1.42 42.2 1.12 12.57 6.82 70.3 8.32 84.38 3.28 30.83 4.16 45.89 4.16 71.78 0 27.1-1.52 46.41-4.93 62.33l-.47 2.19-7.94.28c-5.41.2-10.73.74-16.73 1.72-20.87 3.42-74.23 9.79-101.97 12.16-9.77.84-13.08 1.31-16 2.28a33.9 33.9 0 0 1-3.85 1c-1.67.3-1.78.25-1.78-.84z%22/%3E%3Cpath fill=%22gray%22 stroke=%22gray%22 stroke-width=%22.9%22 d=%22M136.67 345.07c-30.07-63.3-47.68-155.17-42.38-221.02.67-8.32 1.24-19.97 1.25-25.89.03-10.24-.05-10.94-1.74-14.58l-1.77-3.82 3.42-.73c4.83-1.04 16.09-2.82 16.31-2.58.1.11.95 3.07 1.88 6.59.94 3.5 2.02 7.22 2.41 8.23l.71 1.85 7.58-.01c4.17 0 10.45-.42 13.97-.93 12.52-1.78 13.79-3.22 13.54-15.3l-.17-7.83 6.26-.44c10.7-.75 27.08-1.56 27.32-1.34.13.11.5 3.57.84 7.68.67 8.33 1.13 9.64 3.95 11.1 4.48 2.31 33.14 3.24 39.74 1.28 7.08-2.1 8.87-4.46 9.65-12.7.24-2.59.61-5.56.81-6.6l.38-1.9 4.47.44c6.56.64 20.89 2.3 23.8 2.75l2.53.39v14.56c.03 24.76.76 34.24 9.06 116.76 3.23 32.17 4.12 44.45 4.73 65.55.64 22.33-1.2 55.91-3.72 67.67l-.73 3.4-6.8.44c-3.75.25-11.67 1.18-17.62 2.09-21.73 3.29-66.11 8.6-93.17 11.13-8.32.78-16.34 1.7-17.81 2.03-1.48.33-3.1.61-3.58.62-.5.01-2.8-3.99-5.12-8.89z%22/%3E%3Cg stroke=%22%23000%22 stroke-width=%221.78%22%3E%3Cpath d=%22M214.75 186.15c-3.08-1.85-1.41-3.38 2.81-2.58 4.49.86 18.97-2.47 26.04-5.99 4.37-2.18 7.75-1.34 5.09 1.26-2.04 1.98-23.8 8.2-28.79 8.22-2 0-4.31-.4-5.15-.9zM114.1 169.71c-5.25-1.72-6.3-2.98-6.3-7.58 0-16.56 24.5-29.76 44.57-24.02 10.3 2.95 15.68 8.03 14.57 13.75-.63 3.27-.06 4.33 2.07 3.84 4.2-.97 3.67.65-1.99 6.17-8.98 8.76-37.29 12.95-52.92 7.84z%22/%3E%3Cpath d=%22M151.6 166.76c1.76-1.06 1.75-2.29-.04-4.3-3.53-3.98-3.26-19.18.36-19.98 4.76-1.07-8.8-3.62-14.65-2.76-7.38 1.08-15.3 5.6-20.52 11.74-5.67 6.66-5.52 11.44.48 15.05 4.11 2.48 6.88 2.83 18.37 2.33 7.44-.32 14.64-1.26 16-2.08zm72.56 2.97c-7.15-2.34-15.56-10.03-11-10.03 1.54 0 7.62 3.7 10.22 5.16 7.76 4.33 15.6 4.26 24.9-.23 6.37-3.08 6.39-3.14 2.57-7.74-2.88-3.48-3.55-6.86-2.67-13.48 1.12-8.4.92-8.88-4.24-9.66-13.63-2.06-29.41 9-29.13 20.41.17 6.6-2.09 8.72-4.78 4.5-2.48-3.89-1.4-9.43 2.94-15.08 6.45-8.43 14.25-12.03 27.74-12.81 11.25-.65 11.9-.49 20.96 5.25 8.87 5.62 9.28 6.26 7.94 12.27-1.64 7.38-10.85 15.99-21.87 20.46-8.88 3.61-14.79 3.85-23.58.98z%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22M124.14 167.82a14.92 14.92 0 0 1-8.42-3.75c-2.7-2.52-2.72-5.48-.03-9.51 3.96-5.96 11.43-11.21 18.9-13.27 2.04-.56 2.65-.62 6.18-.6 2.9 0 4.67.14 6.76.52 1.56.28 2.88.55 2.93.6.05.05-.2.53-.55 1.07-1.1 1.65-1.56 3.78-1.7 7.78-.21 5.85.64 9.87 2.67 12.54a7.07 7.07 0 0 1 1.06 1.7c0 1.4-5.84 2.41-16.87 2.94-5.8.28-8.38.28-10.93-.02zm108.27-.95c-3.13-.36-5.97-1.5-11.75-4.72l-5.29-2.93.16-.85c.1-.47.25-2.3.36-4.06.22-3.83.69-5.36 2.43-8.03 4.47-6.86 13.65-11.7 22.17-11.7 3.44 0 6.01.51 6.74 1.35.53.6.56.78.44 2.68-.07 1.11-.31 3.47-.53 5.24-.85 6.84-.1 9.92 3.55 14.47 1.86 2.32 1.98 2.62 1.3 3.16-.88.7-6.05 3.16-8.33 3.96a25.48 25.48 0 0 1-11.25 1.43z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath stroke=%22%23000%22 stroke-width=%2210%22 d=%22M151.04 368.14c-.57-.95.21-4.12 1.74-7.07 2.72-5.21 2.69-5.42-1.34-8.17-16.84-11.5-32.18-42.96-34.39-70.45l-1.12-14.05-4.05 2.98c-2.23 1.63-4.72 2.55-5.54 2.03-.82-.52-1.44-6.88-1.38-14.13.09-10.53 1.09-15.55 4.96-24.93 5.49-13.3 12.28-24.7 18.42-30.88 2.29-2.3 8.99-10.36 14.89-17.89 5.9-7.53 12.29-14.95 14.2-16.5 4.37-3.5 7.86-13.84 6.76-20a513.8 513.8 0 0 0-3.88-17.7c-6.5-27.83 2.7-56.57 25.32-78.98 4.8-4.76 5.62-6.3 3.77-7.05-1.3-.52-3-.96-3.76-.97-3.38-.04-4.83-5.82-2.24-8.98 5.99-7.33 31.32-3.89 31.32 4.25 0 .6-1.92 2.26-4.27 3.69l-4.27 2.6 5.06 4.02c2.78 2.2 5.28 5.29 5.56 6.84.28 1.55-1.98 7.66-5.02 13.56-4.9 9.5-9.23 21.73-7.2 20.3.41-.29 4.96-5.76 10.1-12.17 5.15-6.4 9.63-11.48 9.96-11.27 3.71 2.35 10.36 10.19 13.87 16.36 9.65 16.99 9.4 41.36-.62 59.78-5.5 10.12-4.74 13.18 7.3 29.21 9.98 13.3 13.56 18.78 23.35 35.67 4.16 7.18 3.46 5.66 10.67 23.17 4.72 11.47 5.61 15.8 5.83 28.11.22 12.83-.12 14.7-2.93 15.83-4.12 1.64-5.57.18-8.48-8.5-1.22-3.64-2.88-6.62-3.69-6.62-.8 0-1.94 1.9-2.52 4.23-12.45 49.65-24.8 85.05-29.64 85.05-2.37 0-2.02-1.94 1.9-10.64 9.37-20.7 20.46-58.04 24.15-81.26 3.1-19.54.4-45.15-6.21-58.67-4.4-9.02-17.37-28-20.75-30.37-1.41-1-3.73-5.32-5.15-9.6-2.56-7.74-2.54-7.9 3-18.54 5.14-9.9 5.59-11.98 5.68-26.56.08-11.93-.69-17.63-3.12-23.17-3.9-8.93-9.96-18.08-11.96-18.08-2.75 0-6.36 4.43-16.96 20.83-5.84 9.03-11.62 16.43-12.84 16.44-1.23.01-2.24-.8-2.24-1.8 0-2.61 8.28-23.87 14.6-37.5 2.97-6.4 4.95-12.78 4.4-14.18-.56-1.4-3.69-4.5-6.95-6.88-5.8-4.25-6.01-4.3-9.28-2.23-9.4 5.94-20.46 19.84-26.68 33.51-8.95 19.69-9.98 35.15-3.77 56.8 4.37 15.2 2.6 28-4.5 32.79-4.4 2.96-17.89 20.38-23.77 30.69-4.94 8.67-10.58 26.37-13.62 42.75-2.76 14.91-2.37 44.9.74 56.08 5.93 21.3 18.82 42.45 30.78 50.48 5.52 3.7 5.92 4.38 4.01 6.97-3.4 4.62-5.14 9.09-3.53 9.09 2.6 0 14.34-8.07 14.34-9.85 0-1.26 1.07-1.5 4.02-.92 7.72 1.54 23.75 1.94 33.32.83l9.64-1.11 6.58 4.24c7.9 5.1 15.8 8.52 17.4 7.51.63-.4-.2-3.44-1.85-6.75-3.29-6.6-3.79-9.77-1.54-9.77 2.31 0 9.55 15.15 8.26 17.29-.64 1.05-2.98 1.92-5.19 1.92-4.55 0-19.57-6.82-21.3-9.68-.94-1.55-2.6-1.74-9.6-1.07-9.8.93-26.15.95-30.71.03-2.18-.44-5.82 1.12-11.84 5.05-8.81 5.74-14.3 7.08-16.2 3.96z%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%221.5%22 d=%22M282.02 259.38c-1.23-12.03-10.05-40.97-12.48-40.97-.22 0-.12 7.25.22 16.1.51 13.38 1.35 17.48 4.95 24.21 2.38 4.45 4.33 8.9 4.33 9.89 0 .98.93 1.79 2.06 1.79 1.48 0 1.74-3.05.92-11.02zm-164.9-9.25c.68-5.1 2.82-15.17 4.77-22.37 1.94-7.2 3.2-13.31 2.78-13.57-1.24-.79-10.23 18.8-12.83 27.95a74.5 74.5 0 0 0-2.4 16.96l.01 8.47 3.23-4.08c1.8-2.28 3.76-8.15 4.45-13.36zm90.9-208.76c5.26-2.05-3.4-7.17-12.1-7.17-8.67 0-12.89 4.33-7.55 7.76 2.07 1.32 15.79.9 19.65-.6zM182.56 143.32c0-2.3 3.5-3.39 5.95-1.84 1.56.99 1.41 1.56-.6 2.37-3.77 1.5-5.35 1.35-5.35-.53zm13.1-.14c-1.62-2.68 2.2-4.57 5.6-2.78 2.12 1.11 2.3 1.83.76 3-2.68 2.04-5.03 1.96-6.35-.22z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.07%22 d=%22M237.58 349.37c-.32.24-.05.6-.15.86-.02.05-.13.06-.15.1-.04.1 0 .44 0 .58v1.15%22/%3E%3Cpath fill=%22gray%22 d=%22M280.2 269.57c-2.06-4.04-7.64-16.64-8.34-18.8-.49-1.5-1.06-8.99-1.28-16.63-.37-12.94-.31-13.73.9-11.45 5.36 10.08 12.61 43.77 10.04 46.67-.75.84-1 .88-1.33.21zm-170.65-7.17c-.02-7.5.9-14.86 2.6-20.7 2.05-7.1 9.46-23.91 11.72-26.61l.57-.69v.93c.03 1.11-1.11 6.31-2.72 12.47a254.65 254.65 0 0 0-5.03 23.9c-.57 3.31-1.95 7.78-3.06 9.91-.44.84-1.53 2.45-2.43 3.57l-1.64 2.04zM187.9 41.08c-3.59-3.24.4-6.43 8.04-6.43 4.4 0 7.68.8 10.65 2.6 5.18 3.11 1.18 5.04-10.48 5.04-6.12 0-7.02-.14-8.21-1.21zm47.28 324.37c-2.34-.94-7.41-3.65-11.27-6.03l-7-4.32-7.1.85c-8.9 1.07-23.58 1.08-31.46.03-7.94-1.07-7.88-1.07-8.94.86-.94 1.7-11.77 9.23-13.28 9.23-1.16 0-.08-3.12 2.42-7.01 1.17-1.83 2.13-3.68 2.13-4.11 0-.43-2.17-2.46-4.83-4.5-9.04-6.99-15.2-14.8-21.8-27.62-7.7-14.98-10.15-23.73-11.3-40.45-1.82-26.06 2.35-52.45 11.75-74.41 4.31-10.07 17.04-28.02 25.67-36.18 6.7-6.34 7.84-9.16 7.76-19.16-.04-6.33-.6-10.14-2.44-16.9-3.19-11.67-3.98-27.5-1.85-36.8 4.56-19.85 17.6-40.79 31.2-50.1l4.44-3.04 3.2 2.17c1.75 1.2 4.51 3.4 6.12 4.9 4.5 4.18 4.38 4.94-4.39 25.1-7.18 16.5-11.88 29.76-11.04 31.14.24.4 1.13.74 1.97.74 2.01 0 5.77-4.6 14.7-18 8-12.02 12.15-17.46 14.06-18.46 1.08-.57 1.53-.47 2.61.58 2.23 2.16 5.36 7.01 8.57 13.3 4.15 8.13 5.22 15.05 4.65 30.08C239.25 130 239 131 233.5 142c-4.12 8.26-4.43 10.55-2.21 16.88 1.37 3.94 3.42 7.23 8.64 13.9 8.16 10.43 15.9 22.69 18.58 29.46 4.31 10.84 7.05 30.8 6.06 44.16-1.67 22.57-12.47 62.31-24.73 91.05-4.59 10.76-4.83 14.21-1.52 21.93 2.61 6.1 3 7.78 1.83 7.78-.38 0-2.61-.77-4.96-1.7zm-46.51-221.87c1.69-1.03 1.69-1.04-.12-2.18-2.26-1.43-5.23-.98-5.98.91-1.2 3.04 2.07 3.72 6.1 1.27zm13.05.32c2.5-1.59 2.38-2.24-.7-3.69-1.78-.85-2.55-.93-4.03-.42-2.21.75-2.48 3.36-.48 4.63 1.84 1.17 2.67 1.08 5.21-.52z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cg stroke=%22%23000%22 stroke-width=%2210%22%3E%3Cpath d=%22M109.43 345.5c-4.81-.45-6.54-.7-7.86-1.13-.81-.27-1.64-.48-1.84-.48-1 0-4.11-1.03-5.56-1.84-.2-.1-.45-.2-.58-.2-.21 0-3.68-1.57-4.58-2.08-.6-.34-3.31-2.94-3.31-3.17 0-.1-.55-.67-1.22-1.25-1.15-1-2.23-2.7-2.23-3.51 0-.17-.09-.36-.19-.42s-.25-.38-.32-.7c-.07-.33-.26-.65-.42-.7-.2-.08-.3-.4-.3-.89.01-.42-.03-1.68-.1-2.8-.13-2.66.5-13.64.84-14.5.49-1.25.64-5 .94-22.92.01-.95-.09-2.9-.23-4.35-.4-4.1-.2-10.2.47-14.52.7-4.47.85-5.65 1.23-9.49.18-1.7.46-3.76.64-4.56.47-2.13.66-3.13.88-4.66.1-.75.6-2.7 1.1-4.36a183.88 183.88 0 0 0 1.22-4.22 418.71 418.71 0 0 1 2.15-7.7 788.38 788.38 0 0 0 1.7-6.1l1.57-5.67a28.2 28.2 0 0 1 1.2-3.45c.3-.68.76-1.82 1-2.54.23-.73.51-1.5.62-1.72l1.02-2.54a93.28 93.28 0 0 1 1.11-2.74 69.7 69.7 0 0 0 1.95-5.67c.34-1.1.84-2.5 1.1-3.08a30.5 30.5 0 0 0 1.71-4.53c0-.17.14-.58.31-.9a23.8 23.8 0 0 0 1.18-4.58c.28-2.23.87-4.66 1.85-7.71 1.16-3.61 1.7-5.5 1.84-6.4.17-1.13.87-3.47 1.36-4.56l.91-2c.28-.6.63-1.46.78-1.89.16-.43.42-.99.6-1.23.16-.25.3-.63.3-.86 0-.22.13-.65.29-.95.15-.3.47-1.06.71-1.7a9.8 9.8 0 0 1 .73-1.58c.17-.24.3-.62.3-.85 0-.41.22-.88 1.31-2.84l.88-1.62c.17-.33.47-.84.67-1.12.2-.28.57-.92.84-1.42l.72-1.31c.13-.23.7-1.37 1.26-2.54a26.14 26.14 0 0 1 1.93-3.35c.5-.67 1.15-1.72 1.46-2.33a42.78 42.78 0 0 1 4-5.88c.36-.4 1.17-1.4 1.79-2.24.62-.85 1.28-1.66 1.45-1.8.18-.15.33-.38.33-.5s.34-.67.76-1.19c.73-.92 1.75-2.31 2.18-2.97.99-1.53 2.22-2.94 5.51-6.25a67.96 67.96 0 0 1 4.73-4.48c1.63-1.1 2.7-2.57 2.91-4 .09-.54.03-.9-.15-1.11-.36-.4-.93-2.66-.93-3.65 0-.43-.14-1.16-.3-1.63-.2-.55-.38-2.31-.5-4.85-.23-4.4-.27-4.84-.85-8.65-.86-5.6-1.01-6.5-1.18-6.9-.1-.22-.28-1.08-.42-1.92a31.18 31.18 0 0 0-.64-2.91c-.55-1.91-.5-7.2.08-8.75.55-1.49 1.1-1.9 2.54-1.9 1.75 0 2.8.3 4.1 1.17 1.9 1.3 2.55 2.2 3.67 5.08.24.62.59 1.3.79 1.53.2.22.48.72.63 1.11.15.4.61 1.22 1.03 1.85.42.63.83 1.38.9 1.67.07.29.26.63.42.76.15.13.28.44.28.7 0 .25.33.95.74 1.54.4.6 1.18 1.97 1.73 3.05.54 1.08 1.4 2.46 1.91 3.08a8.85 8.85 0 0 1 1.4 2.47c.25.74.51 1.27.57 1.18.06-.1.11-1.22.12-2.5a40 40 0 0 1 .34-4.57l.51-3.55c.1-.72.28-2.73.39-4.46.35-5.35 1-9.93 1.72-12.17a32.8 32.8 0 0 0 1.32-5.82c0-.99.61-2.57 1.19-3.07 1.24-1.08 1.5-1.26 1.78-1.26.16 0 .35.16.43.36.07.2.34.55.58.8.25.25.52.66.6.9.08.26.35.62.6.82.25.2.56.63.7.97.14.34.34.62.44.62.1 0 .17.16.17.37 0 .4 1.42 3.1 2.28 4.35.56.8.82 1.67 1.28 4.24.15.86.37 1.74.49 1.97.12.22.22.55.22.74 0 .19.46 1.45 1.03 2.8a42.61 42.61 0 0 1 1.3 3.38c.26.94.63 2.03 1.43 4.16.25.67.56 1.63.7 2.13.13.5.37 1.28.51 1.72.15.45.39 1.4.52 2.13.14.73.4 1.55.6 1.83.2.28.42 1.03.5 1.67.1.87.24 1.19.52 1.28.31.1.34.18.15.48-.18.29-.15.47.1.85.2.26.34.7.35.99 0 .28.13.77.3 1.1.17.31.3.67.3.79s.15.38.34.58c.18.2.39.71.46 1.13.17 1.07.74 1.32 2.6 1.16.84-.07 1.9-.03 2.44.1 2.6.59 5.45 1.31 5.73 1.44.16.09.9.25 1.62.37l2.64.42c1.39.22 5.24.2 9.6-.07 2.1-.13 2.84-.26 3.73-.66 1.05-.46 1.43-.5 5.85-.62 4.76-.12 6.28 0 9.02.67 1.79.44 4.43.86 6.17.99.9.06 2.12.24 2.74.4a60.7 60.7 0 0 0 2.14.49c.56.11 1.8.47 2.74.8.95.32 2.37.7 3.15.83a564 564 0 0 1 4.16.73c1.5.28 3.51.6 4.46.72 2.33.3 4.89.8 5.35 1.05.21.11.85.27 1.42.36 1.09.16 3.67.63 6.17 1.13.81.16 1.85.3 2.32.3.89 0 2.12.2 5.13.81 1 .21 2.6.48 3.55.6l3.96.53c3.23.43 4.28.61 5.98 1.07l2.03.54c1.17.3 3.19.96 3.76 1.22.35.15 1.03.34 1.53.42.5.07 1.05.3 1.24.49.18.2.68.41 1.11.5.43.07 1.42.44 2.2.82.78.38 1.86.83 2.4 1 .55.18 1.19.46 1.42.62.23.17.6.3.8.3.22 0 .43.18.49.4.06.23.35.44.7.52.82.18 2.1 1.05 2.42 1.64.16.3.56.57 1.06.7.75.2 1.63.97 3.84 3.35a33.62 33.62 0 0 0 3 2.87c2.4 2.08 4.63 4.42 4.77 5.03.13.54 1.01 1.9 1.78 2.74.35.38.53.86.77 2.12.1.55.36 1.37.58 1.82 1 2.1 1.2 3.04 1.03 4.92-.08.98-.3 2.14-.48 2.57a4.33 4.33 0 0 0-.34 1.36c0 .31-.09.63-.2.7-.11.07-.2.44-.2.83 0 .39-.14.91-.3 1.16a9.8 9.8 0 0 0-.7 1.62c-.22.64-.54 1.41-.7 1.71a9.3 9.3 0 0 0-.94 2.32c0 .15-.3.59-.64.98a9.35 9.35 0 0 0-1.2 1.95c-.3.69-.65 1.3-.77 1.38-.12.08-.36.43-.53.79-.33.68-.43.8-3.56 4.32-1.94 2.2-8.02 8.4-8.87 9.06-.26.2-.53.35-.61.35-.09 0-.41.23-.73.5s-1.16.84-1.87 1.27c-.72.42-1.35.93-1.42 1.12-.1.33-1.69 1.17-2.2 1.17-.12 0-.53.27-.91.6-.38.32-.93.7-1.22.85-.3.15-.81.48-1.17.74a7.9 7.9 0 0 1-2 .85c-.74.22-1.5.56-1.69.77-.44.5-1.05.82-2.3 1.2-.56.16-1.49.55-2.06.86-.58.3-1.68.77-2.47 1.03-.78.25-1.96.71-2.63 1.02-1.85.83-2.9 1.21-3.42 1.21-.25 0-.64.13-.85.3a1.83 1.83 0 0 1-.9.3c-.75.03-2.87.67-3.45 1.05-.28.18-1.01.5-1.63.69a9.2 9.2 0 0 0-2.1 1.05c-.54.38-1.9 1-3.04 1.38-3.54 1.18-4.3 1.46-5.16 1.9-.46.24-1.15.43-1.53.43s-.8.13-.94.3c-.13.15-.53.35-.88.42-.35.08-.78.21-.95.3a7.7 7.7 0 0 1-2.13.6c-.21 0-.53.14-.72.31-.18.17-.85.44-1.48.6-.62.17-1.53.48-2 .7-.49.21-1.93.64-3.21.93-1.28.3-2.65.64-3.04.75-1.13.33-3.1.55-6.7.75-4.75.26-6.63.84-7.63 2.36-.3.46-.3.58.05 1.56.2.6.63 1.43.94 1.86.3.44.56.87.56.96 0 .1.23.68.52 1.31.48 1.04.72 1.98 1.03 3.94.07.4.19.8.27.91a20.3 20.3 0 0 1 1.42 4.71c0 .72.53 3.2 1.55 7.26.28 1.11.56 2.66.63 3.45.06.78.19 1.57.28 1.76.1.18.23.77.29 1.3.06.54.17 1.07.25 1.18.07.12.2.9.27 1.74.18 1.81.87 4.66 1.78 7.31.83 2.44.92 2.78 1.05 3.85.16 1.35.95 6.6 1.2 8.02.17.98.87 5.23 1.26 7.7.1.68.27 2.96.37 5.08.1 2.12.28 4.36.41 4.97.22 1.08.3 2.08.78 9.13.25 3.62.28 3.9.63 5.27.13.5.27 1.36.32 1.9.05.53.23 1.28.42 1.67.18.38.32 1.08.32 1.55-.01.62.09.92.38 1.12.24.18.39.52.39.91 0 1 .74 2.28 2 3.45a8.29 8.29 0 0 1 1.55 1.93c.22.47.46.86.52.86s.07.34.02.76c-.1.81-.43 1.27-.93 1.27-.18 0-.32.18-.32.41 0 .29-.24.5-.8.73-.43.17-.84.44-.9.6-.06.16-.25.23-.42.17-.17-.07-.7.06-1.18.28-.47.22-1.22.5-1.67.64-.45.14-1.1.38-1.45.54-.35.16-.72.28-.82.28-.1 0-.5.23-.9.5s-1.35.7-2.12.96-1.48.59-1.57.73a.64.64 0 0 1-.48.25c-.36 0-2.63 1.06-3.72 1.74-.39.25-1.46.7-2.38 1-.92.3-1.72.62-1.79.72-.06.1-.34.2-.61.2-.27 0-1.02.28-1.66.63-2.18 1.2-3 1.58-3.7 1.72-.4.07-1.01.4-1.38.71-.36.32-.75.58-.85.58-.11 0-.87.32-1.68.7-.82.38-1.76.76-2.09.83-1.15.27-3.04.99-3.78 1.45a38.33 38.33 0 0 1-6.35 2.82c-2.72.92-4 1.37-5.62 1.99-1.28.49-3.35 1.03-5.84 1.52l-2.03.4c-.5.1-1.64.38-2.54.61-.89.24-3.46.7-5.7 1.03a107.15 107.15 0 0 0-8.7 1.63 68.6 68.6 0 0 0-5.28 1.33c-1.34.37-2.89.77-3.45.89-.55.12-1.83.45-2.84.73a43.17 43.17 0 0 1-6.69 1.42c-1.34.19-2.7.43-3.04.53-1.02.3-6.64 1.15-7.62 1.15-.83 0-3.26.34-6.18.86-.56.1-1.93.24-3.04.32-1.12.07-3.41.34-5.1.59-2.78.4-3.15.51-3.86 1.07-1.14.9-3.54 1.45-7.48 1.7-4.14.24-13.74.35-15.72.17z%22/%3E%3Cpath d=%22M117.66 339.81c.78-.13 2.82-.26 4.55-.3 1.73-.04 4.01-.17 5.08-.28 1.05-.12 3.66-.3 5.78-.4 2.12-.09 4.58-.27 5.48-.4 2.88-.4 4.86-.64 5.27-.65.5-.02 4.2-.54 5.88-.82 2.3-.4 3.46-.56 5.58-.78 1.17-.12 2.45-.3 2.84-.4.4-.1 1.8-.34 3.15-.53 1.34-.19 3.66-.66 5.17-1.05 1.5-.4 3.5-.88 4.43-1.1.93-.2 2-.51 2.4-.67.68-.3 1.74-.56 4.84-1.22.89-.19 2.26-.5 3.04-.72.78-.2 1.74-.43 2.13-.5.39-.08 1.76-.44 3.04-.8a50.08 50.08 0 0 1 7.4-1.65c2.07-.3 3.75-.75 5.28-1.4 1.1-.48 4.3-1.53 4.64-1.53.19 0 .77-.21 1.3-.48a4646 4646 0 0 1 2.38-1.2 38.2 38.2 0 0 1 3.55-1.45c2.5-.88 3.46-1.35 4.58-2.27.5-.4 1.53-.9 2.64-1.26 2.6-.86 3.53-1.25 4.45-1.86 1.19-.8 1.96-1.12 4.63-1.93 1.32-.4 2.85-.94 3.4-1.22.54-.27 1.14-.5 1.34-.5.2 0 .73-.23 1.18-.5.44-.27 1.36-.78 2.03-1.12a26.94 26.94 0 0 0 3.72-2.19c.76-.53 1.85-1 3.27-1.44 1.18-.35 2.65-.88 3.29-1.18l1.15-.53-.5-.64c-.52-.7-.98-2.57-.77-3.2.12-.4-.52-3-.75-3-.06 0-.13-.3-.14-.67a4.35 4.35 0 0 0-.28-1.27c-.47-1.13-.8-3.04-.99-5.66-.1-1.45-.23-3.1-.3-3.65a6.4 6.4 0 0 1 .06-1.85c.23-.99-.2-4.54-1.07-9-.54-2.77-.69-4.32-.79-8.53-.09-3.82-.14-4.28-.62-5.6a8.78 8.78 0 0 1-.52-2.2c0-.4-.13-1.4-.29-2.2a34.69 34.69 0 0 1-.42-2.93 4.53 4.53 0 0 0-.32-1.59c-.1-.06-.18-.36-.18-.66 0-.3-.15-1.05-.32-1.66-.3-1.05-.52-2-.81-3.65-.07-.39-.36-1.29-.63-2-.54-1.39-.82-2.71-1.25-6.01-.48-3.63-.88-5.86-1.13-6.36-.26-.5-.73-2.02-1.66-5.3-.7-2.52-3.39-9.45-3.96-10.25-1.28-1.78-1.47-6.59-.37-8.93.47-1.01 3.46-4.16 3.95-4.16.13 0 .48-.23.78-.5.3-.29.74-.51.97-.51.23 0 .53-.15.66-.33.19-.25.57-.32 1.7-.3l1.71.03c1.6-.03 8.54-.81 8.72-1 .13-.12.58-.23 1-.23.41 0 .81-.09.88-.2.07-.11.32-.2.55-.2.23 0 .7-.18 1.05-.39a7.56 7.56 0 0 1 2.05-.62 17 17 0 0 0 2.03-.45c.34-.12 1.02-.33 1.52-.47.5-.15 1.19-.4 1.52-.57a19.73 19.73 0 0 1 3.76-1.46 24 24 0 0 0 5.07-1.89c1.18-.5 2.25-1 2.64-1.22.85-.49 1.24-.65 1.61-.65.23 0 1.16-.3 2.09-.69.92-.38 2.36-.83 3.2-1 .86-.18 2.2-.67 3.1-1.14 1.24-.64 1.79-.81 2.5-.78.76.02 1.09-.1 2.06-.78.64-.45 1.5-.94 1.92-1.1.42-.14.76-.33.76-.42 0-.08.2-.2.46-.28.25-.08.59-.25.76-.39a8.7 8.7 0 0 1 1.52-.72c.67-.26 1.3-.54 1.4-.64a.79.79 0 0 1 .46-.17c.14 0 .78-.34 1.41-.76 1.51-1 2.9-1.82 3.5-2.08a6.9 6.9 0 0 0 1.02-.6c.3-.2.97-.62 1.5-.9.99-.55 1.9-1.05 3.8-2.13.6-.35 1.63-.88 2.28-1.19.64-.3 1.16-.62 1.16-.7 0-.32 1.77-2.16 6.98-7.24 2.87-2.8 3.27-3.28 3.9-4.63.37-.83.69-1.56.69-1.62 0-.07.32-.51.7-.99.4-.47.72-.97.72-1.09 0-.12.13-.28.3-.34.17-.07.3-.33.3-.59 0-.26.14-.6.3-.76a4.46 4.46 0 0 0 1.13-2.13c0-.26.13-.73.3-1.05.4-.77.91-3.03 1.09-4.78.12-1.17.08-1.55-.24-2.2-.2-.43-.43-1.1-.49-1.47-.06-.37-.23-.79-.39-.91-.15-.13-.27-.35-.27-.5 0-.25-1.03-2.7-1.42-3.38-.12-.2-.2-.5-.2-.67 0-.5-3.75-4.24-5.33-5.3a15.46 15.46 0 0 1-2.84-2.65 9.2 9.2 0 0 0-1.65-1.69c-.12 0-.5-.27-.81-.6a3.8 3.8 0 0 0-1.26-.82c-1.1-.36-3.2-1.42-3.66-1.84-.48-.45-3.92-1.47-8.1-2.41a559.79 559.79 0 0 1-8.61-2c-1.4-.34-3-.66-3.55-.72a61.63 61.63 0 0 1-2.34-.33c-.72-.11-1.96-.3-2.74-.4a479.75 479.75 0 0 1-4.26-.6c-1.56-.23-3.48-.5-4.26-.6-4.46-.6-7.25-1.07-8.4-1.45a4.96 4.96 0 0 0-1.87-.32c-.34.07-.67 0-.83-.15-.53-.53-1.17-.74-2.32-.75-2.04-.03-3.24-.28-4.1-.89-.6-.4-.99-.54-1.39-.46-.3.06-.71.03-.9-.07a4.6 4.6 0 0 0-1.42-.2c-1.16-.03-2.32-.33-2.8-.72a3.19 3.19 0 0 0-1.12-.4 6.22 6.22 0 0 1-1.42-.45 3.9 3.9 0 0 0-1.58-.27 3.6 3.6 0 0 1-1.4-.2c-.53-.28-5.43-1.36-7.47-1.63a53.52 53.52 0 0 0-3.25-.32c-2.43-.14-28.18-.03-28.79.14-.28.07-.83.06-1.22-.02l-2.75-.54a37.01 37.01 0 0 1-3.15-.75c-.8-.26-1.93-.37-4.05-.4-2.63-.05-3-.01-3.5.34-.48.33-.58.35-.68.08-.07-.16-.37-.36-.69-.43-.9-.2-1.36-.88-1.7-2.53-.18-.84-.74-2.53-1.26-3.76a39.64 39.64 0 0 1-1.2-3.14 18.45 18.45 0 0 0-.52-1.52 15.6 15.6 0 0 1-.51-1.73 50.07 50.07 0 0 0-.6-2.23 32.15 32.15 0 0 1-.6-2.35 7.93 7.93 0 0 0-.41-1.5 7.64 7.64 0 0 1-.42-1.4c-.5-2.16-.67-2.72-1.26-4.16-.33-.8-.76-2-.96-2.66-.2-.67-.66-1.86-1.01-2.64a28.08 28.08 0 0 1-1.1-2.94c-.25-.84-.58-1.89-.73-2.33a11.32 11.32 0 0 1-.38-1.8c-.14-1.16-.66-2.75-1.03-3.17a5.6 5.6 0 0 1-.56-.9l-.3-.59-.44 1.44c-.24.78-.43 1.66-.43 1.95 0 .29-.09.91-.2 1.39-.3 1.35-.82 6.2-.82 7.66 0 1.28-.37 4.58-.82 7.3-.12.73-.3 2.97-.4 4.98-.12 2-.26 4.1-.32 4.63-.08.63-.03 1.16.13 1.47.21.4.21.81 0 2.23-.2 1.29-.22 1.84-.06 2.1.19.3.08.5-.65 1.22-.6.6-.91 1.09-1 1.61-.17 1.08-1.3 2.14-2.27 2.11-.8-.02-1.11-.2-.73-.44.19-.12.16-.24-.13-.5-.2-.19-.54-.91-.73-1.6l-.69-2.49c-.18-.67-.54-1.65-.8-2.18a8.23 8.23 0 0 1-.45-1.07c0-.11-.15-.45-1.33-3.04a69.58 69.58 0 0 1-1.08-2.55c-.33-.85-.88-1.94-1.2-2.44a13.03 13.03 0 0 1-.97-1.7l-.57-1.32a11.2 11.2 0 0 0-.77-1.34 5.7 5.7 0 0 1-.7-1.42 5.76 5.76 0 0 0-1.04-2.07 1.02 1.02 0 0 1-.26-.59c0-.17-.25-.6-.55-.97-1.12-1.31-1.26-1.53-1.4-2.08-.08-.3-.3-.68-.51-.82-.2-.15-.38-.4-.38-.56 0-.16-.12-.3-.27-.3-.15 0-.66-.45-1.13-1-.47-.57-.97-1.02-1.12-1.02-.38 0-.38 2.28.01 3.65a36.05 36.05 0 0 1 1.3 5.48c.1.72.4 2.82.7 4.66.76 4.84.9 6.18 1.12 10.25.1 2 .29 3.97.4 4.36.12.39.3 1.44.4 2.33.1.9.34 1.93.53 2.3s.28.8.21.98a.67.67 0 0 0 .1.6c.13.15.28.87.34 1.59.1 1.16.05 1.38-.38 1.91-.26.34-.7.95-.99 1.36-.67 1-2.65 3.13-2.9 3.13-.44 0-1.75 1.74-1.88 2.49-.09.56-.32.9-.87 1.31-.88.65-1.83 1.61-3.07 3.1-1.3 1.55-1.58 1.82-1.93 1.82-.17 0-.3.1-.3.22s-.5.73-1.12 1.35a8.14 8.14 0 0 0-1.12 1.28c0 .07-.22.38-.5.69-.28.3-.51.58-.51.62 0 .04-.48.57-1.07 1.18-.59.61-1.28 1.53-1.54 2.05-.25.51-.57.93-.7.93-.32 0-2.22 2.21-3.37 3.93a49.45 49.45 0 0 0-2.83 4.9 6.7 6.7 0 0 1-1.13 1.5c-.4.4-.72.8-.72.9 0 .32-2.72 5.68-3.4 6.7a5.3 5.3 0 0 0-.66 1.18c0 .1-.23.5-.5.86-.29.36-.51.73-.51.8 0 .09-.22.63-.5 1.2l-1.1 2.42a32.83 32.83 0 0 0-1.18 3.04c-.3.93-.7 1.91-.88 2.2-.18.27-.5.96-.7 1.51a40.85 40.85 0 0 1-1.06 2.5c-.66 1.43-1.48 4.15-1.48 4.93 0 .2-.55 2.13-1.23 4.28-.68 2.15-1.41 4.7-1.63 5.64l-.6 2.59a8.3 8.3 0 0 0-.2 1.49c0 1.02-1.9 7.14-2.94 9.41-.79 1.73-1.1 2.58-1.1 2.89 0 .16-.13.58-.28.94a32.37 32.37 0 0 0-.58 1.55c-1.15 3.3-2.17 6-2.8 7.4-.3.67-.8 1.95-1.1 2.84-.3.9-.67 1.9-.82 2.23-.88 2.01-2.14 5.72-2.14 6.3 0 .18-.22 1.08-.49 2a105.22 105.22 0 0 0-1.95 7c0 .14-.12.55-.28.9-.15.36-.53 1.6-.84 2.77-.3 1.17-.76 2.86-1 3.76-.26.89-.71 2.53-1.02 3.65-.3 1.11-.72 2.53-.93 3.14-.21.62-.49 1.76-.6 2.54l-.39 2.43a33.61 33.61 0 0 1-.48 2.36c-.18.73-.47 2.7-.64 4.36-.4 3.92-.92 7.9-1.63 12.38-.36 2.26-.39 7.98-.05 11.23.26 2.53.26 3.44-.02 16.54-.1 5.22-.27 9.13-.41 9.74-.13.55-.33 1.92-.44 3.04a96.76 96.76 0 0 1-.38 3.25 64 64 0 0 0 .14 9.23c.09.72.28 1.51.41 1.76.14.24.34.9.46 1.45.28 1.27.33 1.32 5.01 4.43 3.38 2.25 3.94 2.57 4.83 2.8.47.12.98.32 1.15.46.17.14.88.31 1.6.39.78.08 1.43.27 1.66.49.21.2.72.4 1.13.45a37 37 0 0 1 4.96.93c.32.12 1.69.23 3.05.24 1.36 0 2.63.08 2.83.16.63.25 3.88.26 5.33.01z%22/%3E%3C/g%3E%3Cpath fill=%22gray%22 d=%22M109.6 339.31c-2.45-.13-7.43-1-9.43-1.67l-3.36-1.08c-1.1-.34-3.72-1.79-5.92-3.27-3.68-2.45-4.01-2.77-4.62-4.4-1-2.66-1.18-9.66-.38-15.18.54-3.7.64-7.08.69-22.35.05-14.34.17-18.7.6-21.48.3-1.92.72-5.06.94-6.98.86-7.72 2.34-14.08 7.12-30.56a243.51 243.51 0 0 0 1.58-5.76c.4-1.54 1.6-5.08 2.68-7.86a588.36 588.36 0 0 0 3.53-9.43c.87-2.4 2.18-5.94 2.91-7.86 1.5-3.96 2.5-7.34 3.11-10.65.24-1.25 1.1-4.63 1.93-7.5.83-2.89 1.63-5.8 1.77-6.47.14-.67.88-2.63 1.63-4.36.76-1.73 1.78-4.25 2.27-5.6a70.43 70.43 0 0 1 4.92-10.18 65.68 65.68 0 0 0 2.33-4.48c.3-.71.95-1.79 1.44-2.4.5-.6 1.71-2.46 2.7-4.13 1-1.67 2.55-3.87 3.45-4.9a288.06 288.06 0 0 0 4.4-5.16c1.5-1.82 4.17-4.74 5.91-6.49 1.74-1.74 3.26-3.48 3.38-3.86.12-.38 1.36-1.87 2.75-3.3a26.65 26.65 0 0 0 3.04-3.58c.53-1.01.5-1.3-.83-7.74a79.52 79.52 0 0 1-.89-7.3c-.46-5.87-1.58-13.76-2.44-17.32-1.27-5.23-1.2-5.97.37-4.25 3.36 3.65 11.03 18.96 13.45 26.87.98 3.19 1 3.23 2.11 3.23.79 0 1.33-.27 1.84-.92.4-.51.72-1.08.72-1.28 0-.2.37-.84.81-1.44.7-.93.81-1.46.78-3.87-.04-3.6.36-9.84 1.04-16.24l.88-8.2c.18-1.74.5-4.14.72-5.35.35-1.95.45-2.13.85-1.56.24.35.85 2.25 1.35 4.21.5 1.97 1.28 4.48 1.74 5.58 1.65 3.97 3 8.03 4.4 13.26.78 2.93 1.91 6.7 2.51 8.38a934.48 934.48 0 0 1 2 5.66c.73 2.08 1.12 2.7 2 3.19.69.39 1.25.49 1.56.3.92-.59 5.5-.33 9.47.53 3.95.85 4.04.86 17.75.65 9.43-.14 14.94-.08 17.43.2 4.18.46 10.5 1.78 14.34 2.99 1.44.45 3.43.92 4.43 1.04 1 .12 2.33.43 2.97.69.63.26 2.08.58 3.22.72 1.13.14 2.31.39 2.62.55.86.47 7.37 1.6 17.14 2.97 7.96 1.12 20.04 3.6 25.32 5.2 3.3 1 7.49 3.49 10.1 6a161.88 161.88 0 0 0 4.9 4.48c2 1.73 2.6 2.53 3.59 4.72 2.53 5.62 2.66 6.06 2.4 8.04-.46 3.49-1.47 5.94-4.42 10.83a407.22 407.22 0 0 0-1.73 2.89c-.31.53-2.82 3.24-5.59 6.03-4.42 4.46-5.4 5.27-8.35 6.86a202.56 202.56 0 0 0-6.74 3.84 82.5 82.5 0 0 1-5.94 3.24 134.69 134.69 0 0 0-4.8 2.4 22.2 22.2 0 0 1-3.68 1.57c-2.72.7-10.51 3.5-13.13 4.7a62.14 62.14 0 0 1-5.57 2.16 37.7 37.7 0 0 0-3.88 1.44c-.54.28-2.43.9-4.21 1.4a446.58 446.58 0 0 0-4.99 1.4c-2.06.6-8.97 1.5-11.7 1.53-2.41.01-4.8 1.3-7.06 3.82-2.88 3.2-3.1 7.1-.7 12.47 2.87 6.43 5.38 14.74 6.22 20.56.33 2.3.81 4.8 1.08 5.56.8 2.27 2.3 9.15 2.75 12.6.13.96.53 3.12.9 4.8.38 1.77.66 4.41.66 6.3 0 1.84.38 5.52.87 8.47.48 2.87.87 6.42.87 7.9 0 4.25.66 9.5 1.59 12.7.47 1.63.86 3.52.86 4.2 0 .68.23 1.7.52 2.25.62 1.19.64 1.16-2.67 2.29a24.46 24.46 0 0 0-3.76 1.6c-4.67 2.83-11.3 5.89-12.74 5.89-.28 0-1.57.55-2.86 1.23-1.3.67-3.43 1.6-4.73 2.08-1.31.47-2.98 1.25-3.71 1.74-.74.48-2.74 1.45-4.46 2.14-1.72.7-3.7 1.55-4.39 1.9-2.28 1.17-9.68 3.5-13.26 4.18-1.93.37-4.64.99-6.02 1.37-1.38.4-4.8 1.25-7.58 1.92-2.78.66-7.5 1.83-10.47 2.6-2.98.75-7.62 1.7-10.3 2.11-17.8 2.68-19 2.81-36.33 3.87-5.33.33-7.92.35-12.57.11z%22/%3E%3Cg stroke=%22%23000%22 stroke-width=%22.19%22%3E%3Cpath d=%22M232.75 173.15a4.87 4.87 0 0 1-1.3-.6 1.14 1.14 0 0 0-.7-.24c-.26 0-.52-.1-.59-.2-.07-.11-.28-.2-.47-.2-.2 0-.83-.49-1.41-1.08l-1.06-1.07v-1.37c0-1.3.03-1.37.56-1.58.3-.11.78-.42 1.06-.69 1.03-.97 2.24-1.02 3.28-.13.2.17 1.1.47 2 .65 2.42.5 6.64.08 7.3-.72.15-.17.59-.3 1.03-.3.58 0 .85-.13 1.14-.51.25-.35.67-.56 1.34-.69a2.64 2.64 0 0 0 1.46-.7c.27-.3.57-.54.66-.54.1 0 .56-.37 1.04-.81.48-.45.99-.81 1.12-.81.14 0 .47-.23.73-.51s.69-.5.94-.5c.32 0 .47-.14.52-.46.05-.38.21-.47.88-.52.7-.05.9.04 1.51.66.7.72.7.73.75 2.87.03 1.23.16 2.27.29 2.43.18.22.12.37-.25.68l-1.47 1.23c-.85.72-3.68 2.23-4.17 2.23-.08 0-.56.21-1.05.47s-1.2.6-1.6.74c-.39.16-.85.39-1.01.52-.45.36-5.75 1.75-7.4 1.94-2.2.26-3.96.2-5.13-.19zm-52.19-9.06a3.9 3.9 0 0 0-1.54-.18c-.48.09-.83-.03-1.55-.51-1.2-.8-4.01-3.67-4.01-4.08 0-.37-.39-.8-.7-.8-.13 0-.67.58-1.2 1.3-.8 1.06-1.11 1.3-1.66 1.37-.37.04-.8.03-.97-.03-1.54-.56-1.89-4.36-.53-5.8l.4-.44-.56-.6c-.63-.68-2.31-1.33-2.98-1.17-.27.07-.62-.04-.92-.3-.26-.23-.59-.42-.72-.42-.3 0-.98-.77-1.27-1.47-.2-.46-.17-.75.2-1.72.79-2.16 1.8-2.65 4.03-1.98 1.04.32 1.4.57 2.56 1.79l1.34 1.42.48-.6a9.97 9.97 0 0 0 .73-1.01 46.8 46.8 0 0 1 4.65-6.04 39.5 39.5 0 0 0 2.15-2.58c1.27-1.67 2.92-3.16 3.69-3.33a3.15 3.15 0 0 0 1.06-.5c.25-.2.7-.43.97-.52a4.48 4.48 0 0 0 1.02-.5c1.12-.78 4.3-1.2 5.78-.76 1.37.4 4.36 2.46 4.36 3 0 .08.26.25.57.38.31.13 1.2.85 1.95 1.6.76.74 1.67 1.5 2.01 1.66.35.17.97.8 1.37 1.42.41.61 1.11 1.41 1.56 1.77.87.7 1.43 1.94 1.48 3.3.03.83-.52 2.96-.93 3.58-.15.24-.28.6-.28.81-.01.83-.28 1.7-.53 1.7-.15 0-.6.45-1 1.01s-.81 1.02-.93 1.02c-.1 0-.2.12-.2.27 0 .15-.5.62-1.13 1.03-1.2.8-1.97 1.43-3 2.48-.85.85-3.48 2.15-4.5 2.22-.84.05-2.8.66-4.35 1.36-.86.38-3.36.9-5.18 1.07a5.16 5.16 0 0 1-1.72-.22z%22/%3E%3Cpath d=%22M183.9 159.12c.77-.4 1.46-.6 2.03-.6 1.07 0 1.47-.38 1.08-1.01a1.4 1.4 0 0 0-.72-.55c-.54-.14-1.62-1.32-1.98-2.18-.15-.35-.5-.85-.8-1.12-.34-.33-.52-.7-.52-1.13 0-.35-.13-1.04-.29-1.54-.43-1.34-.79-5.37-.51-5.87.32-.6 0-.96-.4-.43-.17.24-.64.6-1.03.8-.39.22-.8.57-.91.79-.12.22-.9 1.16-1.73 2.08-.83.92-1.58 1.83-1.65 2.03-.08.2-.65 1.25-1.28 2.34-1.22 2.1-1.2 1.98-.26 3.03.2.22.35.52.35.66 0 .15.1.27.23.27.12 0 .5.23.83.5.33.28.74.51.9.51.33 0 .88.48.88.76 0 .3 2.55 1.03 4.4 1.24.12.02.75-.24 1.39-.58zm10.14-3.88c.28-.13.56-.4.63-.6.06-.2.45-.57.86-.82.42-.26.78-.54.82-.63.04-.09.44-.63.89-1.2.52-.65.85-1.31.92-1.82.1-.7.02-.88-.7-1.65a6.37 6.37 0 0 1-1.06-1.57c-.61-1.6-.73-1.8-1.06-1.9-.2-.04-.43-.4-.53-.77a1.4 1.4 0 0 0-.72-.94c-.3-.15-.55-.4-.55-.56 0-.2-.23-.3-.73-.3-.42 0-.94-.16-1.24-.4-.28-.22-.69-.4-.9-.4-.3 0-.37.15-.37.86 0 .47.14 1.03.3 1.25.3.4.78 1.86 1.23 3.77.53 2.22.72 2.93.87 3.14.17.24.13 2.19-.08 3.7-.14 1.05-.13 1.07.38 1.07a3 3 0 0 0 1.04-.23zm50.56-3.77c-.24-.14-.8-.35-1.25-.46a10.94 10.94 0 0 1-1.62-.6 54.63 54.63 0 0 0-1.56-.7c-.9-.4-3.77-3.42-4.62-4.86a129.63 129.63 0 0 0-.91-1.55 17.24 17.24 0 0 1-1.33-3.02c0-.1-.43-.55-.95-.97a29.9 29.9 0 0 1-1.72-1.55c-.74-.73-.78-.83-.78-2.06 0-.91-.1-1.4-.32-1.62-.18-.17-.22-.32-.1-.32.11 0 .26-.25.33-.55a9.18 9.18 0 0 1 1.13-2.87c.25-.31.38-.82.38-1.44 0-.78.1-1.04.58-1.5.34-.33.74-1.06.95-1.72.5-1.58 1-2.3 2.98-4.26 2.18-2.15 4.65-3.48 6.45-3.48.68 0 1.3.12 1.53.3.21.16.6.3.84.3s.5.1.57.21c.06.11.38.2.7.2.33 0 .64.08.7.18.06.1.35.25.65.32.57.14 1.09.57 1.09.89 0 .1.3.34.68.51.38.18.8.47.94.64.14.17.37.3.5.3.26 0 2.37 2.2 3.56 3.7.4.5 1.33 1.45 2.08 2.1.75.66 1.37 1.34 1.37 1.52 0 .17.1.4.2.52.12.11.3 1.02.42 2.02.19 1.68.38 2.5.83 3.7.27.71.22 4.17-.07 4.46-.3.29-.75 1.94-.76 2.74 0 .3-.19.75-.4.99-.22.23-.54.72-.71 1.08-.17.36-.46.77-.64.92-.17.15-.46.55-.63.89-.18.34-.9 1.2-1.61 1.91-.71.7-1.3 1.37-1.3 1.47 0 .24-1.1.8-1.6.8-.23 0-.5.16-.62.37-.1.21-.36.46-.56.55-.6.27-4.9.22-5.4-.06z%22/%3E%3Cpath d=%22M248.52 144.33c0-.21.25-.57.56-.8l.55-.4-.65-.37c-.36-.2-.66-.52-.66-.69 0-.44-.47-1.4-.69-1.4-.1 0-.32.16-.5.36-.18.2-.63.5-1 .68-.56.26-.8.27-1.38.07-.93-.32-1.9-1.28-1.9-1.88 0-.26-.4-1.23-.86-2.14-.89-1.72-.86-1.6-1.2-6.02-.02-.17.02-1.27.07-2.44.1-2.1.1-2.13-.43-2.58-.29-.26-.64-.46-.76-.46-.57 0-1.84.91-2.37 1.69a78.44 78.44 0 0 1-1.06 1.53c-.28.38-.5.9-.5 1.14s-.27.8-.6 1.22c-.58.72-.83 1.72-.44 1.72.1 0 .24.24.32.53.17.7 1.46 2.4 2.62 3.49.52.48.94 1.05.94 1.26 0 .5 2.36 2.87 3.15 3.16.43.16.62.37.67.76.05.41.17.54.54.54.27 0 .54.08.6.19.38.61 2.17 1.18 3.82 1.2 1.02.03 1.16-.02 1.16-.36zm5-3.82c.26-.3.48-.68.48-.82 0-.14.19-.46.41-.7.5-.54.45-1-.15-1.27-.25-.1-.5-.45-.57-.76-.07-.3-.24-.63-.37-.71a9.82 9.82 0 0 1-1.75-2.74.7.7 0 0 0-.14-.43 1.35 1.35 0 0 1-.21-.59c-.14-.98-.48-1.68-.9-1.87-.4-.18-.58-.43-.97-1.28-.17-.4-.53-.2-.5.26.05.55.9 3.77 1.12 4.21.1.2.18.48.18.63 0 .15.22.83.5 1.52.28.68.51 1.55.51 1.93 0 .38.14.8.3.94.17.14.26.33.2.43-.06.1.12.37.4.62.35.3.48.58.4.82-.18.58.5.45 1.06-.2z%22/%3E%3C/g%3E%3Cpath fill=%22%23fff%22 d=%22M180.13 159.05c-1.2-.31-1.61-.5-2.03-.96-.29-.3-.63-.56-.75-.56-.65 0-2.48-1.77-2.92-2.82-.04-.08.47-1.1 1.12-2.28 1.32-2.38 4.22-5.99 5.64-7l.8-.58.03 1.93c.01 1.07.15 2.52.31 3.24.16.72.35 1.73.43 2.23.09.62.3 1.13.66 1.57.29.36.66.92.83 1.24a5.55 5.55 0 0 0 2.01 2.12c.56.23.82.66.56.93-.1.09-.55.2-1.01.25-.47.05-1.35.32-1.96.6-1.33.59-1.73.6-3.71.09zm12.72-5.9c.09-2.14.08-2.2-.72-5.2-.44-1.66-1-3.48-1.24-4.05-.37-.88-.58-2.08-.36-2.08.04 0 .5.2 1 .43.52.24 1.1.44 1.3.44.48 0 1.61 1.06 1.84 1.73.1.28.36.63.58.78.22.14.57.72.78 1.29.21.56.74 1.45 1.16 1.97.56.68.78 1.1.78 1.5 0 .73-1.54 3.05-2.35 3.55-.33.2-.82.64-1.09.98-.34.42-.68.64-1.13.71l-.63.1zm52.33-8.96a5.3 5.3 0 0 1-1.23-.58 4 4 0 0 0-.87-.47c-.2-.06-.47-.34-.58-.62a1.5 1.5 0 0 0-.7-.7c-.62-.26-2.91-2.51-3.07-3.01-.06-.2-.74-1.08-1.5-1.94s-1.6-1.97-1.84-2.46a4.6 4.6 0 0 0-.6-.99c-.2-.12.08-.9.57-1.58.2-.28.43-.78.52-1.11a9.65 9.65 0 0 1 2.72-3.74c.95-.63 1.05-.64 1.63-.2l.43.34.02 3.37c.03 4.26.2 5.3 1.18 7.44.42.93.82 1.9.88 2.15.12.52.84 1.3 1.57 1.67.81.43 1.63.33 2.5-.28.42-.3.84-.5.93-.44.09.05.25.4.35.8.13.47.36.8.72 1.02.52.31.53.33.17.52-.2.1-.42.39-.48.62-.1.41-.17.43-1.35.42a8.5 8.5 0 0 1-1.97-.24zm7.44-3.63c0-.24-.16-.58-.37-.77-.43-.4-.6-.8-1.03-2.42a86.53 86.53 0 0 0-1-3.41c-.38-1.2-.82-2.71-.96-3.36-.28-1.2-.16-1.57.21-.68.11.27.43.67.71.87.33.24.58.64.7 1.12a11.67 11.67 0 0 0 1.83 3.88c.43.57.79 1.13.79 1.25 0 .1.24.44.54.73.33.32.5.63.43.76a7.57 7.57 0 0 1-1.47 2.2c-.35.24-.38.23-.38-.17z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='horsey'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22%3E%3Cpath stroke=%22%23000%22 stroke-width=%2215.47%22 d=%22M153.71 357.85c-4.7-.86-15.17-3.28-23.27-5.38-13.73-3.56-14.86-4.2-16.99-9.8-6.34-16.72.02-62.74 11.03-79.78 13.73-21.26 18.82-35.65 20.12-56.91l.56-9.2-12.34-.8c-13.01-.82-15.54-1.59-11.93-3.6 2.52-1.4 11.93-13.52 11.93-15.37 0-.67-1.93-1.99-4.28-2.92-5.27-2.08-15.81-16.01-18.53-24.48-9.07-28.3.22-53.92 25.17-69.38 16.69-10.34 29.6-13.52 51.77-12.73 16.53.58 20.59 1.37 31.34 6.05 23.16 10.1 36.66 27.15 40.52 51.18 1.82 11.35 1.58 13.26-3.38 27-2.94 8.12-7.1 16.8-9.27 19.28-4.43 5.07-5 4.34 10.1 13.08 10.71 6.2 9.72 9-4.16 11.7-11.86 2.3-11.97 2.37-12.14 8.29-.39 13.72 6.03 32.07 15.99 45.75 15.68 21.54 20.4 37.8 18.3 63.03-.73 8.87-2.48 30.83-3.42 30.83-.98 0-.8-22.55-.1-33.1 1.06-16.11.69-20-3.04-31.23-2.54-7.7-8-17.98-13.6-25.67-11.59-15.92-16.81-30.52-16.81-47v-12.42l9.75-1.04c5.37-.57 10.15-1.4 10.64-1.84 1.71-1.54-1.75-4.53-9.22-7.97-9.73-4.47-10.5-6.67-4.92-14.07 2.5-3.34 6.52-11.54 8.9-18.24 8.17-22.88 1.85-46.66-16.9-63.55-14.47-13.04-27.37-17.54-50.48-17.64-20.8-.1-29.42 2.05-44.37 11.04-13.53 8.15-23.27 19.4-27.95 32.3-2.94 8.1-3.1 11.02-1.22 22.6 3.12 19.28 11.42 32.71 23.8 38.52l5.35 2.5-6.92 6.9c-3.8 3.8-6.39 7.37-5.74 7.96.65.58 5.2 1.47 10.12 1.98 8.94.93 8.94.93 9.52 8.02 1.43 17.65-7.54 45.2-19.64 60.3-2.55 3.18-5.53 8.57-6.6 11.98-4.25 13.33-7.87 40.94-7.09 53.97.74 12.2 1.33 13.91 5.9 17.2 6.3 4.52 32.8 10.93 50.49 12.22 28.86 2.1 79.03-4.86 94.74-13.15 5.85-3.1 6.27-3.12 5.7-.32-.8 3.9-25.64 11.49-45.87 14-17.58 2.18-59.44 2.13-71.56-.09z%22 transform=%22matrix(.83059 0 0 .8634 32.3 41.65)%22/%3E%3Cpath fill=%22gray%22 d=%22M173.6 349.97c-11.86-.95-30.95-5.37-38.03-8.78-3.89-1.88-5.31-3.02-6.32-5.08-4.13-8.4-.3-49.13 5.8-61.64a78.2 78.2 0 0 1 4.9-8.11c6.84-9.88 12.3-24.1 14.5-37.72 1.02-6.39.8-16.68-.4-18.05-.78-.9-2.58-1.33-8.98-2.17a63 63 0 0 1-4.34-.76l-2.11-.46.72-1.45c.4-.8 2.81-3.68 5.37-6.4l4.65-4.96-4.56-2.48a30.8 30.8 0 0 1-12.17-11.39c-6.9-11.1-10.2-29.82-6.99-39.51 4.62-13.9 14.28-24.56 29.58-32.62 7.89-4.16 13.43-5.52 24.84-6.08 7.1-.35 17.21.29 22.4 1.4 9.76 2.1 16.66 5.84 24.96 13.5 14.7 13.57 20.35 32.17 15.48 51.02-1.34 5.18-5.32 14.28-8.41 19.25-4.47 7.18-4.1 8.34 4.15 12.72 4.95 2.64 7.85 4.82 7.85 5.93 0 .37-.94.81-2.34 1.11a201.1 201.1 0 0 1-14.55 1.89c-.88 0-.4 17.77.61 22.7 1.97 9.58 5.26 17.04 12.36 28.06 5.94 9.22 10.05 17.32 12.14 23.97 2.58 8.21 2.7 9.76 2.17 29.63-.25 9.76-.37 18.93-.26 20.38l.2 2.64-3.05 1.6c-15 7.85-55.56 13.85-80.17 11.86z%22/%3E%3Cpath stroke=%22%23000%22 stroke-width=%222.8%22 d=%22M192.68 177c-2.5-2.25-.24-3.34 8.99-4.35 5.48-.6 12.32-1.56 15.2-2.15 6.4-1.3 7.18 2.18.94 4.28-5.32 1.79-23.8 3.42-25.13 2.22zm-1.96-24.35c-1.59-4.5 1.85-8.38 4.95-5.58 2.52 2.27 1.62 7.69-1.44 8.6-1.22.37-2.8-1-3.51-3.02zm25.99-5.32c.35-2.21 2.17-4.25 4.1-4.58 2.7-.46 3.34.3 2.85 3.39-.35 2.21-2.17 4.25-4.1 4.58-2.7.46-3.34-.3-2.85-3.39z%22 transform=%22matrix(.83059 0 0 .8634 27.32 41.65)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* icpieces */
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M177 119c-9.676 4.311-20.692 9.206-26 19-7.143-4.404-13.92-8.674-22-11.254-23.746-7.582-56.028-2.903-70.3 19.254-3.165 4.913-5.194 10.341-6.569 16-1.648 6.784-2.522 14.02-2.041 21 1.288 18.708 10.289 36.827 20.795 52 4.54 6.558 11.66 12.883 15.09 20 2.996 6.215-2.92 8.684-5.827 13.093-5.077 7.7-1.306 17.678 6.852 20.907-1.81 5.321-6.715 8.601-8.351 14.001C75.719 312.665 78 325.93 78 336h212c0-10.07 2.28-23.335-.649-32.999-1.637-5.4-6.542-8.68-8.351-14.001 7.712-3.053 11.745-12.25 7.427-19.91-2.733-4.85-9.576-7.505-6.402-14.09 3.43-7.117 10.549-13.442 15.09-20 10.506-15.173 19.507-33.292 20.795-52 .481-6.98-.393-14.216-2.041-21-1.375-5.659-3.404-11.087-6.569-16-14.272-22.157-46.554-26.836-70.3-19.254-8.08 2.58-14.857 6.85-22 11.254-4.752-8.768-16.153-16.524-26-18 9.66-5.171 18.013-10.443 20.482-22 4.296-20.106-14.489-38.387-34.482-33.24-27.344 7.04-27.726 47.593 0 54.24z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M180 74.532c-22.588 5.346-14.405 40.237 8 34.936 22.588-5.346 14.405-40.237-8-34.936m-1 54.997c-5.952 1.373-11.599 5.528-15.98 9.645-1.86 1.748-4.325 3.991-3.689 6.826 1.318 5.871 8.998 12.787 12.244 18 3.012 4.838 5.243 10.159 8.302 14.941 1.038 1.624 2.612 3.961 4.888 3.307 4.718-1.354 8.076-12.335 10.439-16.248 2.91-4.82 6.033-9.532 9.46-14 1.492-1.944 4.165-4.343 4.133-7-.037-3.137-3.632-5.747-5.798-7.535-6.853-5.66-14.857-10.045-23.999-7.936M97 253h82v-38c0-5.9 1.146-13.175-.314-18.91-1.053-4.137-4.951-8.241-6.944-12.09-7.121-13.745-15.19-28.596-27.742-38.1-26.499-20.065-76.644-16.749-82.704 22.1-.707 4.534-1.547 9.412-1.126 14 1.63 17.717 10.041 34.679 20.257 49 5.169 7.245 12.846 13.997 16.573 22m92 0h82c3.727-8.003 11.404-14.755 16.573-22 10.216-14.321 18.627-31.283 20.256-49 .427-4.635-.492-9.437-1.264-14-1.419-8.382-4.56-16.748-10.739-22.815-18.177-17.848-53.139-13.435-71.826.715-11.961 9.057-18.763 22.351-26 35.1-2.56 4.51-7.43 10.157-8.686 15.09-1.46 5.735-.314 13.01-.314 18.91v38m-92 10c-.194 2.559-.429 4.645-2.317 6.587-1.937 1.992-6.047 3.073-6.047 6.409 0 3.348 3.983 3.769 5.931 5.588 2.147 2.005 2.283 4.683 2.433 7.416h174c.15-2.733.286-5.411 2.433-7.416 1.946-1.817 5.931-2.24 5.931-5.585 0-3.335-3.959-3.917-5.931-5.722-2.153-1.971-2.284-4.561-2.433-7.277H97z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M180.094 267.858c-10.519 4.642-2.902 21.013 7.812 16.284 10.519-4.642 2.902-21.013-7.812-16.284z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M88 326h192c0-8.157 2.812-21.479-6.005-25.972C270.293 298.141 265.027 299 261 299H108c-4.285 0-10.06-.977-13.995 1.028C85.188 304.521 88 317.843 88 326z%22 style=%22fill:%23fff;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M140 109c-6.184 26.731-20.817 51.272-27 78-8.759-10.276-15.505-22.758-23-34-3.422-5.133-9.046-11.087-10.897-17-1.162-3.713 1.93-6.671 3.043-10 2.501-7.486.168-16.567-6.19-21.362C61.633 93.834 44.485 106.704 46.106 123c.547 5.503 4.242 10.17 8.896 12.992 3.892 2.359 7.372 2.255 9.096 7.027C68.749 155.904 71.57 169.778 75.15 183c5.785 21.359 11.674 42.711 17.709 64 1.11 3.92 3.951 9.756 2.497 13.83-1.037 2.908-4.1 4.728-5.844 7.185-4.18 5.883-2.911 13.596 2.487 17.985-3.868 4.75-9.666 9.259-11.99 15-1.503 3.712-1.01 8.082-1.01 12v23h211v-22c0-3.944.45-8.243-.995-11.996-2.252-5.852-8.369-10.995-13.005-15.004 4.683-5.405 7.051-12.56 2.487-18.985-2.119-2.983-5.965-5.068-6.165-9.054-.212-4.204 1.962-8.971 3.099-12.961 2.274-7.977 4.291-16.027 6.579-24 4.863-16.944 9.614-33.957 14.116-51 2.483-9.403 4.289-20.008 8.133-28.941 1.844-4.285 6.262-4.278 9.747-6.712 6.411-4.477 9.311-11.691 7.949-19.347-2.741-15.412-23.797-20.566-33.307-7.957-3.716 4.927-4.742 12.097-2.784 17.957 1.113 3.329 4.205 6.287 3.043 10-1.641 5.242-6.534 10.455-9.564 15-7.568 11.353-16.49 22.645-22.333 35-5.849-9.228-8.58-20.808-12.424-31-5.64-14.957-12.892-30.455-16.576-46 19.236-6.558 12.638-35.92-7-35.92-20.052 0-26.642 29.242-7 35.92-6.197 15.976-12.376 31.966-18.424 48-3.296 8.74-7.989 17.777-9.576 27h-4c-1.587-9.223-6.28-18.26-9.576-27-6.048-16.034-12.227-32.024-18.424-48 19.642-6.678 13.052-35.92-7-35.92-19.638 0-26.236 29.362-7 35.92z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M145.015 83.693c-9.932 2.696-6.462 19.119 3.981 16.691 11.093-2.578 6.866-19.635-3.981-16.691m73.99-.077c-10.849 2.53-6.787 19.613 3.98 16.691 9.931-2.695 6.461-19.126-3.98-16.691m-157.961 28.13c-10.049 3.95-3.34 19.631 6.912 15.511 10.05-4.039 3.02-19.414-6.912-15.511m239.996-.089c-10.895 3.438-4.85 19.926 5.916 15.6 9.475-3.808 4.082-18.756-5.916-15.6M147 121c-6.903 20.406-14.177 40.853-21.808 61-2.932 7.741-4.173 18.57-15.152 15.682-4.965-1.306-7.744-7.738-10.373-11.682-6.889-10.333-13.722-20.705-20.667-31-.47 3.732 1.163 7.393 2.116 11 1.764 6.681 3.569 13.355 5.463 20 6.323 22.184 13.268 44.521 18.421 67h158c7.54-32.891 17.786-65.532 27-98-8.585 7.867-14.546 20.318-21 30-2.614 3.921-5.481 10.549-10.093 12.397-10.481 4.199-12.622-8.354-15.226-15.397-7.482-20.238-13.94-41.28-22.681-61-5.422 7.247-7.875 18.51-11.05 27-5.511 14.734-14.282 30.504-16.95 46h-18c-2.668-15.496-11.439-31.266-16.95-46-3.175-8.49-5.628-19.753-11.05-27m-41 141c-.073 2.997-.044 6.083-2.433 8.277-1.97 1.809-5.931 2.384-5.931 5.722 0 3.348 3.987 3.764 5.931 5.585 2.38 2.23 2.36 5.4 2.433 8.416h156c.073-3.016.052-6.186 2.433-8.416 1.944-1.821 5.931-2.237 5.931-5.585 0-3.338-3.961-3.913-5.931-5.722-2.389-2.194-2.36-5.28-2.433-8.277H106z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M180.094 267.858c-10.519 4.642-2.902 21.013 7.812 16.284 10.519-4.642 2.902-21.013-7.812-16.284z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M89 326h191c0-8.157 2.812-21.479-6.005-25.972C270.293 298.141 265.027 299 261 299H107c-3.994 0-9.323-.884-12.98 1.028C86.06 304.188 89 318.542 89 326z%22 style=%22fill:%23fff;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M87 96v31c0 4.312-.956 10.03 1.028 14 1.71 3.424 5.063 6.138 7.548 9 6.454 7.434 13.199 14.615 19.709 22 2.731 3.097 6.647 6.027 8.112 10 2.373 6.439.603 16.186.603 23 0 16.469 1.369 33.598-.059 50-.594 6.83-7.494 11.39-11.902 16-6.37 6.662-12.427 13.535-19.039 19.985-3.78 3.687-8.37 6.795-11.581 11.019C75.019 310.424 78 325.981 78 336h212c0-9.966 3.007-25.638-3.419-33.985-3.211-4.172-7.843-7.325-11.581-11.019-6.57-6.491-12.669-13.333-19.039-19.996-4.408-4.61-11.308-9.17-11.902-16-1.428-16.402-.059-33.531-.059-50 0-6.814-1.77-16.561.603-23 1.465-3.973 5.381-6.903 8.112-10 6.51-7.385 13.255-14.566 19.709-22 2.485-2.862 5.837-5.576 7.548-9 1.984-3.97 1.028-9.688 1.028-14V96h-51v19h-22V96h-47v19h-23V96H87z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M97 106v20c0 3.178-.516 6.964.603 10 2.413 6.542 10.609 12.921 15.311 17.999 2.124 2.293 4.105 5.233 7.125 6.398 6.57 2.533 16.967.603 23.961.603h90c4.771 0 11.712 1.27 15.83-1.603 5.132-3.581 9.167-9.775 13.34-14.397 2.509-2.78 5.895-5.388 7.227-9 1.119-3.036.603-6.822.603-10v-20h-31v19h-42v-19h-27v19h-43v-19H97m37 64v102h100V170H134M88 326h192c0-4.788 1.15-11.348-.742-15.83-1.532-3.629-5.535-6.457-8.258-9.171-6.217-6.197-13.094-16.018-21-19.971-4.201-2.101-10.432-1.028-15-1.028h-90c-7.641 0-18.792-2.054-26 .603-5.116 1.887-9.245 7.642-13 11.397-5.137 5.137-14.405 11.413-17.258 18.17C86.85 314.652 88 321.212 88 326z%22 style=%22fill:%23fff;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M177 100c-9.024 9.1-15.253 20.38-22.333 31-16.37 24.555-37.207 52.66-29.189 84 5.537 21.639 23.505 36.427 30.522 57-15.709 6.769-31.843 14.784-47 22.781-6.306 3.327-14.827 6.943-18.633 13.259C85.448 316.199 87 326.901 87 336h194c0-9.099 1.551-19.801-3.367-27.96-3.806-6.316-12.327-9.932-18.633-13.259-15.281-8.062-31.352-15.475-47-22.781 7.017-20.573 24.985-35.361 30.522-57 8.308-32.472-14.431-62.869-31.805-88-6.418-9.283-11.721-18.936-19.717-27 18.943-7.344 13.132-35.97-7-35.97-20.132 0-25.943 28.626-7 35.97z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M182.005 74.613c-11.341 2.725-6.334 19.166 4.952 15.953 10.125-2.883 5.033-18.353-4.952-15.953M125 298c3.959 1.661 8.74 1 13 1h105c-8.776-6.642-20.599-9.217-30-15.066-3.88-2.413-8.625-5.412-10.243-9.935-2.353-6.58 3.5-14.856 6.91-19.999 8.171-12.324 17.917-24.661 22.294-39 8.45-27.686-10.359-50.365-22.961-73h-2c-6.577 13.906-16.215 26.843-24.203 40-2.624 4.322-6.213 13.517-10.721 16.003-2.653 1.463-6.719-1.902-9.076-3.003 9.711-12.727 17.151-27.457 25.681-41 3.62-5.747 10.254-13.281 11.562-20 1.135-5.829-5.762-13.539-8.914-17.981-1.441-2.031-2.88-4.052-5.422-4.696-8.544-2.168-13.973 12.047-17.599 17.677-12.848 19.947-30.056 39.775-33.869 64-3.102 19.705 7.454 36.339 17.894 52 4.847 7.269 14.306 17.533 13.345 27-.492 4.845-4.958 8.124-8.678 10.64-9.424 6.376-21.244 11.698-32 15.36m-28 28h174c-.012-4.383.116-9.141-2.703-12.811C262.327 305.417 243.755 309 235 309H130c-8.942 0-26.573-3.617-31.427 6.04-1.706 3.394-1.563 7.27-1.573 10.96z%22 style=%22fill:%23fff;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M115 336h194c0-8.19 1.089-17.253-2.133-25-2.313-5.559-7.493-8.802-8.566-15-4.424-25.547-8.625-50.797-14.928-76-4.048-16.19-8.696-33.262-16.682-48-10.933-20.18-27.917-37.559-45.691-51.8-5.268-4.221-13.282-7.942-17.272-13.384-4.566-6.228-4.096-17.744-13.732-19.378-7.265-1.231-8.512 8.47-14.996 8.016-7.399-.52-8.893-11.1-17.999-7.444-7.207 2.894-10.228 11.469-15.055 16.99-9.413 10.767-21.186 20.996-28.98 33-3.647 5.617-3.719 12.297-6.932 18-9.703 17.226-29.74 28.561-33.418 49-1.432 7.955-1.961 19.355.947 27C78.63 245.318 96.06 255.04 110 251.756c9.159-2.157 16.545-10.242 24-15.601 6.947-4.993 14.62-8.005 22-12.159 8.172-4.6 15.417-10.134 22.996-15.613 3.144-2.273 6.62-4.291 8.286.652 1.585 4.699-1.41 10.04-3.736 13.965-6.204 10.471-14.992 19.445-23.546 28-10.017 10.018-21.248 19.859-28.768 32-3.153 5.092-3.876 10.797-6.535 16-2.599 5.084-7.188 8.268-8.769 14-1.99 7.218-.928 15.575-.928 23z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M160 98c-7.441 8.988-14.318 18.277-22.169 27-5.248 5.831-11.636 11.456-15.977 18-4.534 6.835-4.373 15.249-9.534 22-6.007 7.859-12.687 15.316-18.931 23-3.612 4.445-7.562 8.491-9.389 14 3.08.002 7.026-.525 9.768 1.179 3.038 1.889 3.039 5.753 0 7.642C90.57 212.808 85.598 212 82 212c0 9.04-.332 15.897 6 23 4.73-3.332 11.855-14.351 17.998-14.039 2.518.129 5.019 2.689 7.002 4.039-5.141 5.141-10.807 10.048-15 16 12.918 3.076 20.151-6.174 30-12.975 11.513-7.948 24.641-12.932 36-21.177 5.061-3.674 13.547-13.186 20-13.468 3.145-.137 5.912 2.616 7.956 4.663 7.498 7.511 6.982 16.85 2.721 25.957-8.955 19.139-27.634 33.802-41.767 49-7.139 7.678-15.285 15.156-16.91 26h152c-.121-14.654-4.136-29.68-7-44-6.109-30.551-12.517-65.517-31.478-91-10.118-13.597-22.386-25.73-35.522-36.389-3.874-3.143-7.819-6.19-12-8.916-2.674-1.743-6.218-3.241-7.987-6.024-2.18-3.43-2.569-8.798-4.013-12.671-7.709 3.41-14.35 8.964-22.961 3.772-2.591-1.562-4.667-3.918-7.039-5.772z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M208 143c2.447 5.789 6.846 10.772 10.333 16 6.446 9.664 12.84 19.509 17.883 30 7.803 16.232 13.802 33.332 17.335 51 1.724 8.619 1.853 17.404 3.449 26h11c0-32.978-12.801-69.344-32.152-96-7.513-10.349-16.631-20.609-27.848-27m-56 14h-18c-2.065.004-5.498-.527-7.164 1.028-3.372 3.146 2.205 11.441 6.179 11.065 2.591-.245 4.9-2.644 6.985-3.993 4.191-2.709 8.707-4.258 12-8.1z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M125 326h174c-.014-5.171-.052-10.914-4.225-14.682-3.004-2.714-7.011-2.316-10.775-2.318H159c-7 0-14.001-.045-21 .001-3.823.025-7.649.162-10.297 3.343-3.114 3.741-2.7 9.109-2.703 13.656z%22 style=%22fill:%23fff;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M151 211c-5.462 22.17-11.492 41.384-25.475 60A182.506 182.506 0 0 1 104 294.91c-4.799 4.469-10.938 8.1-14 14.094-4.194 8.207-3 18.097-3 26.996h194c0-8.899 1.194-18.789-2.999-26.996-3.063-5.994-9.202-9.625-14.001-14.094A182.506 182.506 0 0 1 242.475 271c-13.983-18.616-20.013-37.83-25.475-60 3.662-.289 7.388-.768 11-1.461 2.698-.517 5.436-1.256 7.999-2.253 1.328-.516 2.779-1.07 3.892-1.988 11.101-9.159-4.555-20.906-10.889-27.313-1.724-1.743-3.84-3.592-4.649-5.985-1.822-5.388 2.077-13.098 1.361-19-2.653-21.876-19.393-38-41.714-38-22.321 0-39.061 16.124-41.714 38-.716 5.902 3.183 13.612 1.361 19-.809 2.393-2.925 4.242-4.649 5.985-6.334 6.407-21.99 18.154-10.889 27.313 1.113.918 2.564 1.472 3.892 1.988 2.563.997 5.301 1.736 7.999 2.253 3.612.693 7.338 1.172 11 1.461z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M135 197h98c-3.873-5.497-9.016-10.319-14-14.83-2.329-2.109-6.51-4.498-7.335-7.749-.805-3.174 2.617-8.225 3.32-11.421 1.665-7.57.356-15.17-3.309-22-12.735-23.731-48.867-20.068-57.575 5-2.08 5.988-2.358 11.864-.862 18 .768 3.149 4.349 8.244 2.767 11.385-1.366 2.713-4.83 4.68-7.006 6.705-4.94 4.597-10.112 9.39-14 14.91m26 10c-.589 28.55-15.884 56.64-33.754 78C116.47 297.881 97.05 307.855 97 326h174c-.05-18.145-19.47-28.119-30.246-41-17.87-21.36-33.165-49.45-33.754-78h-46z%22 style=%22fill:%23fff;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M163 120c-5.252 2.616-9.6 6.214-13 11-24.694-17.885-69.241-18.895-90.7 5.039C46.87 149.903 44.248 168.073 45.04 186c.857 19.405 12.085 38.357 22.63 54 3.48 5.164 9.35 10.325 11.784 16 1.882 4.389-3.816 8.28-5.484 12-3.745 8.35-1.195 17.631 6.03 23-11.54 12.2-7 34.243-7 50h222v-28c0-8.389.322-15.547-7-21 6.13-6.466 9.831-14.112 6.437-23-1.54-4.032-7.825-8.491-5.891-13 1.409-3.283 4.646-6.179 6.8-9 3.665-4.801 7.037-9.873 10.229-15 14.238-22.871 23.012-50.428 14.069-77-9.87-29.327-39.482-38.695-67.644-36.075-10.95 1.019-25.054 3.905-33 12.075-4.296-4.26-8.551-8.286-14-11 4.733-6.8 10.43-12.406 11.699-21 .838-5.676.799-12.504-.92-18-6.73-21.528-35.338-29.05-52.775-15.47-10.635 8.282-14.281 22.586-11.323 35.47 1.755 7.648 6.998 12.793 11.319 19z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M179 69.519c-29.188 6.33-19.039 51.261 10 44.962 29.188-6.33 19.039-51.26-10-44.962M183 175h2c4.062-9.706 10.137-18.786 16.666-27 2.189-2.754 7.995-7.008 6.988-10.996-.841-3.333-5.007-5.86-7.654-7.644-8.526-5.747-23.025-6.752-32-1.291-3.188 1.94-9.792 5.588-9.793 9.932-.002 3.894 5.713 8.163 7.985 10.999 6.254 7.806 11.941 16.76 15.808 26m-4 78v-44c0-6.921 1.264-15.3-.637-22-3.355-11.818-12.125-24.606-19.828-34-5.895-7.19-13.192-13.556-21.535-17.73-24.673-12.345-62.964-9.126-76.392 17.73-11.992 23.984-3.004 51.763 10.445 73 4.169 6.582 8.619 12.974 13.561 19 2.12 2.585 4.482 6.061 7.671 7.397 6.763 2.832 18.424.603 25.715.603h61m10 0h61c7.378 0 18.961 2.201 25.83-.603 3.198-1.306 5.459-4.815 7.559-7.397 4.919-6.05 9.387-12.414 13.558-19 13.449-21.237 22.437-49.016 10.445-73-13.428-26.856-51.719-30.075-76.392-17.73-8.343 4.174-15.64 10.54-21.535 17.73-7.703 9.394-16.473 22.182-19.828 34-1.901 6.7-.637 15.079-.637 22v44m-97 10v4c-11.554 1.557-11.554 16.443 0 18v4h184v-4c11.554-1.557 11.554-16.443 0-18v-4H92z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M181.015 267.746c-10.629 4.039-4.549 20.505 5.97 16.508 10.629-4.039 4.549-20.505-5.97-16.508z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M83 331h202c0-6.998.094-14.003-.004-21-.048-3.442-.255-7.104-3.224-9.397C278.455 298.043 272.92 299 269 299H100c-3.885 0-9.377-.95-12.891 1.028-3.696 2.08-4.052 6.175-4.105 9.972-.098 6.997-.004 14.002-.004 21z%22 style=%22fill:%23000;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M110 175c-4.511-9.536-11.486-18.228-17.333-27-2.438-3.656-6.023-7.712-7.23-12-1.065-3.788 1.594-7.343 2.234-11 1.384-7.895-.147-16.066-5.776-21.957-14.8-15.487-43.07-3.95-41.682 17.957.412 6.506 3.798 13.169 8.88 17.236 3.716 2.973 8.694 4.12 10.658 8.808 2.496 5.957 3.63 12.746 5.39 18.956 3.865 13.637 7.487 27.344 11.283 41 2.778 9.994 5.454 20.022 8.286 30 1.721 6.065 4.433 12.722 5.127 18.985.552 4.98-5.05 8.517-6.704 13.015-2.319 6.309 1.715 12.222.23 17.961-1.361 5.262-7.847 8.353-9.563 14.039-1.424 4.723-.8 10.126-.8 15v25h222v-25c0-4.874.624-10.277-.8-15-1.716-5.686-8.202-8.777-9.563-14.039-1.485-5.739 2.549-11.652.23-17.961-1.654-4.498-7.256-8.035-6.704-13.015.694-6.263 3.406-12.92 5.127-18.985 2.832-9.978 5.508-20.006 8.286-30 3.796-13.656 7.418-27.363 11.284-41 1.76-6.21 2.893-12.999 5.389-18.956 1.965-4.689 6.943-5.831 10.658-8.808 4.952-3.969 8.47-10.884 8.88-17.236 1.415-21.916-26.895-33.43-41.682-17.957-5.629 5.891-7.16 14.062-5.776 21.957.64 3.657 3.299 7.213 2.233 11-1.206 4.288-4.792 8.344-7.229 12-5.847 8.772-12.822 17.464-17.333 27-6.705-12.722-10.693-27.509-15.681-41-2.173-5.875-6.669-13.559-6.958-19.83-.206-4.478 6.011-8.976 7.708-13.17 5.179-12.792-1.805-27.818-15.069-31.945-9.231-2.873-20.341.152-26.211 7.985-7.351 9.811-6.912 28.035 5.211 33.96-1.992 8.608-5.862 16.745-8.95 25-4.49 12.004-8.618 24.388-14.05 36-5.432-11.612-9.56-23.996-14.05-36-3.088-8.255-6.958-16.392-8.95-25 12.123-5.925 12.562-24.149 5.211-33.96-5.87-7.833-16.98-10.858-26.211-7.985-13.264 4.127-20.248 19.153-15.069 31.945 1.703 4.208 7.921 8.776 7.708 13.285-.294 6.213-4.804 13.889-6.958 19.715-4.988 13.491-8.976 28.278-15.681 41z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M144 78.562c-16.967 4.25-11.023 30.83 6 26.901 17.625-4.068 11.274-31.228-6-26.901m74-.025c-17.625 4.068-11.274 31.228 6 26.901 16.967-4.25 11.023-30.83-6-26.901M60 106.653c-16.696 5.255-8.142 31.095 9 25.694 16.668-5.252 7.819-30.988-9-25.694m239.001 0c-17.252 5.43-6.998 32.131 9.998 25.605 15.897-6.104 6.187-30.7-9.998-25.605M76 141c-10.133 2.736-2.35 17.751-.29 25 5.956 20.96 11.489 42.037 17.43 63l4.436 16c.631 2.252.96 5.474 2.988 6.972C103.317 254.006 108.778 253 112 253h141c3.981 0 9.007.809 12.856-.318 3.071-.899 3.538-3.974 4.294-6.683L274.86 229c6.22-21.947 12.43-43.945 18.256-66 1.855-7.022 8.665-19.359-1.116-22-8.926 13.232-17.478 26.717-26.333 40-2.057 3.085-5.938 11.723-10.548 11.079-4.689-.655-7.123-13.315-8.543-17.079-5.642-14.961-11.04-30.017-16.626-45-1.52-4.076-2.865-13.168-8.053-13.833-7.488-.959-9.345 10.594-11.321 15.833-5.412 14.349-10.848 28.7-16.387 43-1.652 4.266-3.15 12.398-8.244 13.677-8.525 2.142-10.721-9.866-12.895-15.677-5.249-14.033-10.766-27.962-16-42-1.563-4.193-3.222-13.341-8.179-14.677-8.173-2.205-10.258 12.278-12.295 17.677-5.516 14.628-10.835 29.336-16.257 44-1.251 3.381-3.141 13.478-7.438 14.079-4.97.694-9.643-9.723-11.881-13.079l-10-15c-5.076-7.618-9.879-15.408-15-23m25 122v4c-11.229 2.272-11.229 15.728 0 18v4h166v-4c11.229-2.272 11.229-15.728 0-18v-4H101z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M181.015 267.746c-10.629 4.039-4.549 20.505 5.97 16.508 10.629-4.039 4.549-20.505-5.97-16.508z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M83 331h202c0-6.998.094-14.003-.004-21-.048-3.442-.255-7.104-3.224-9.397C278.455 298.043 272.92 299 269 299H100c-3.885 0-9.377-.95-12.891 1.028-3.696 2.08-4.052 6.175-4.105 9.972-.098 6.997-.004 14.002-.004 21z%22 style=%22fill:%23000;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M82 91v36c0 4.828-1.183 11.564 1.028 16 1.68 3.372 4.946 6.177 7.396 9 6.476 7.461 13.334 14.585 19.861 22 2.739 3.111 6.457 6.033 7.973 10 2.375 6.219.742 15.413.742 22 0 15.482 1.284 31.581-.059 47-.558 6.414-6.69 10.749-10.941 15-10.067 10.067-21.882 19.744-30.606 31C69.314 309.425 73 328.531 73 341h222c0-12.469 3.687-31.575-4.394-42-8.724-11.256-20.539-20.933-30.606-31-4.251-4.251-10.383-8.586-10.941-15-1.343-15.419-.059-31.518-.059-47 0-6.587-1.633-15.781.742-22 1.516-3.967 5.234-6.889 7.973-10 6.527-7.415 13.385-14.539 19.861-22 2.45-2.823 5.716-5.628 7.396-9 2.211-4.436 1.028-11.172 1.028-16V91h-61v19h-13V91h-56v19h-13V91H82z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M92 101v25c0 3.751-.714 8.422.603 12 2.317 6.291 9.76 12.125 14.228 16.995 1.853 2.021 3.562 4.381 6.208 5.402 7.072 2.726 18.424.603 25.961.603h101c4.994 0 12.527 1.399 16.83-1.603 4.751-3.315 8.657-9.058 12.455-13.397 2.165-2.474 4.948-4.841 6.112-8 1.317-3.578.603-8.249.603-12v-25h-41v19h-33v-19h-36v19h-33v-19H92m37 70v99h110v-99H129M82 332h204c0-6.978 1.656-16.448-1.009-22.999-3.248-7.983-13.956-14.979-19.991-21.001-2.654-2.649-5.381-6.062-9-7.397-7.72-2.846-19.808-.603-28-.603H128c-5.077 0-12.344-1.3-17 1.028-7.289 3.644-13.09 12.368-19 17.882-3.57 3.332-7.814 6.207-9.347 11.09-2.058 6.554-.653 15.177-.653 22z%22 style=%22fill:%23000;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M168 101c-7.297 9.493-13.357 20.035-20 30-16.206 24.309-33.882 50.351-28.715 81 2.456 14.563 10.632 27.928 18.716 40 2.509 3.746 10.77 11.916 9.472 16.787-1.196 4.487-10.752 6.813-14.473 8.522-14.003 6.429-29.53 12.484-41.96 21.734C78.614 308.29 82 327.488 82 341h204c0-13.512 3.386-32.71-9.04-41.957-12.43-9.25-27.957-15.305-41.96-21.734-3.721-1.709-13.277-4.035-14.473-8.522-1.199-4.498 5.819-11.393 8.129-14.787 7.987-11.737 15.555-24.146 19.188-38 8.49-32.376-12.166-61.483-29.177-87-5.807-8.71-10.944-19.922-18.667-27 3.489-4.105 6.716-8.564 7.671-14 .728-4.141.555-8.959-.61-13C203.075 61.177 185.64 54.678 173 61c-11.147 5.576-16.109 19.44-11.521 31 1.449 3.65 3.535 6.525 6.521 9z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M180 69.653c-17.069 5.332-8.983 31.674 8 26.35 17.098-5.36 8.818-31.604-8-26.35M113 298c4.215 1.769 9.465 1 14 1h128c-9.27-7.489-23.301-11.39-34-16.753-4.445-2.228-11.655-4.894-13.073-10.262-1.107-4.195 2.464-9.578 4.537-12.985 6.188-10.172 13.817-19.35 19.277-30 12.774-24.919 6.336-49.004-7.345-72-4.026-6.766-8.296-14.959-14.396-20-11.471 21.548-27.661 40.882-38 63-2.379-1.635-6.49-3.632-6.311-7.04.245-4.677 5.919-11.058 8.361-14.96 7.475-11.941 14.842-23.958 22.153-36 2.808-4.626 9.284-11.28 6.9-17-3.78-9.066-13.25-24.181-25.063-17.972-7.588 3.988-12.741 17.023-17.373 23.972-15.273 22.909-37.269 50.428-30.998 80 3.228 15.224 12.286 28.451 21.051 41 3.372 4.829 11.062 13.511 9.353 19.985-1.336 5.057-7.869 7.65-12.073 9.767-11.437 5.76-23.058 11.615-35 16.248m-21 33h184c0-5.513 1.822-18.427-4.394-21.397-3.391-1.619-8.934-.603-12.606-.603H108c-3.414 0-8.446-.906-11.606.603C90.178 312.573 92 325.487 92 331z%22 style=%22fill:%23000;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M183 212c-7.899 22.791-31.346 38.48-46.714 56-4.85 5.53-9.325 11.33-12.501 18-1.668 3.503-2.263 7.521-4.084 10.91-3.146 5.853-7.554 9.174-9.032 16.09-1.897 8.88-.669 18.949-.669 28h204c0-9.243 1.554-20.091-1.221-29-2.146-6.891-8.454-11.936-9.605-19-4.495-27.603-9.07-55.048-16.753-82-3.844-13.487-7.706-27.544-14.311-40-8.112-15.298-19.862-28.893-32.11-40.996-9.448-9.336-21.52-16.037-30.775-25.33-7.685-7.715-6.683-23.092-21.225-22.615-2.136.07-4.144.512-5.961 1.683C179.02 85.69 176.857 88.817 174 91c-3.865-7.428-12.045-11.95-19.96-6.99-4.538 2.843-5.36 7.701-8.549 11.566-5.767 6.987-13.215 12.783-19.401 19.424-6.618 7.104-14.472 14.43-19.185 23-3.406 6.193-3.624 13.211-7.949 19-11.063 14.808-28.107 28.022-31.492 47-1.637 9.178-2.255 20.068.924 29 4.942 13.885 22.61 26.055 37.612 24.812 11.882-.985 20.839-10.01 30-16.66 8.458-6.14 18.061-9.871 27-15.167 7.033-4.167 13.097-9.672 20-13.985z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M79 202c4.167 0 10.18-1.073 13.937 1.028 2.569 1.436 3.829 4.237 1.687 6.654C91.02 213.747 81.878 212 77 212c0 11.196-.246 18.551 8 27 5.218-3.675 9.464-8.525 14-12.998 1.818-1.793 4.182-4.9 6.998-4.951 2.475-.045 5.083 2.642 7.002 3.949-6.421 6.421-13.764 12.568-19 20 17.016 7.192 27.814-7.168 41-15.564 9.031-5.75 19.245-9.411 28-15.58 5.068-3.571 9.992-7.326 15-10.978 1.958-1.428 4.362-3.607 6.996-3.135 2.267.406 4.086 2.501 5.351 4.273 5.55 7.777.422 17.035-4.045 23.984-11.042 17.175-27.5 29.691-40.726 45-6.558 7.592-13.058 14.728-14.576 25h162c-.047-17.178-4.882-35.279-8.576-52-5.1-23.093-10.043-47.699-20.694-69-12.357-24.714-35.011-46.446-57.73-61.667-2.75-1.842-5.978-3.572-7.697-6.517-2.482-4.253-2.928-15.026-9.253-15.895-2.848-.39-4.585 3.086-6.375 4.69-2.596 2.325-6.166 3.797-9.675 2.94-4.359-1.064-8.286-9.002-12.787-7.8-2.971.794-3.226 4.837-4.515 7.08-1.174 2.04-2.962 3.563-4.717 5.089-11.787 10.252-25.539 22.845-34.011 36.08-3.559 5.56-3.539 12.355-6.901 18-5.729 9.62-14.571 18.323-21.683 27-4.195 5.118-8.334 9.258-9.386 16z%22 style=%22fill:%23000;stroke:none%22/%3E%3Cpath d=%22M209 144c4.353 10.349 12.955 19.207 18.573 29 11.79 20.555 21.119 42.649 25.624 66 1.138 5.902 2.292 11.999 2.713 18 .182 2.578-.458 6.216 1.269 8.397 1.454 1.835 4.668 1.797 6.763 1.454 4.534-.743 4.203-5.187 3.773-8.851-1.029-8.746-2.567-17.497-4.866-26-8.587-31.75-23.73-70.84-53.849-88m-57 14c-5.193-2.179-12.402-1.038-17.999-.999-1.891.013-4.669-.335-6.219 1.027-3.421 3.007 1.43 10.677 5.233 10.78 2.581.07 4.966-2.405 6.985-3.708 3.911-2.523 8.107-4.533 12-7.1z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M120 331h184c0-6.57 1.71-19.302-6.055-22.397-3.73-1.486-8.998-.603-12.945-.603H137c-3.763 0-9.417-1.012-12.772 1.028C118.05 312.783 120 324.957 120 331z%22 style=%22fill:%23000;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='icpieces'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22368%22 height=%22368%22%3E%3Cpath d=%22M145 215c-4.913 25.333-17.339 46.751-34.285 66-7.659 8.699-20.346 15.447-25.387 26C80.357 317.406 82 329.803 82 341h204c0-11.197 1.643-23.594-3.328-34-5.016-10.5-17.75-17.326-25.387-26-16.946-19.249-29.372-40.667-34.285-66 3.796-.079 7.332-.638 11-1.641 2.801-.766 5.546-1.733 7.995-3.329 13.427-8.751 4.375-22.574-4.034-30.991-2.682-2.683-7.089-5.157-8.071-9.054-.791-3.137.637-6.843.94-9.985.453-4.693-.148-9.406-1.116-14-4.721-22.397-24.684-36.034-46.714-36-21.229.033-40.277 14.949-44.714 36-.968 4.594-1.569 9.307-1.116 14 .303 3.142 1.731 6.848.94 9.985-.982 3.897-5.389 6.371-8.071 9.054-8.409 8.417-17.461 22.24-4.034 30.991 2.449 1.596 5.194 2.563 7.995 3.329 3.668 1.003 7.204 1.562 11 1.641z%22 style=%22fill:%23fff;stroke:none%22/%3E%3Cpath d=%22M129 198h110c-3.602-10.681-15.6-14.379-20.071-24-1.823-3.922 1.196-9.008 1.771-13 .853-5.924-.009-12.428-2.168-18-10.484-27.064-47.997-31.384-64.743-8-5.079 7.092-7.546 16.307-6.615 25 .456 4.266 3.815 9.873 1.897 14-4.471 9.621-16.469 13.319-20.071 24m27 10c-3.347 26.46-13.618 50.244-30.46 71-5.397 6.651-11.183 13.079-17.54 18.83-4.468 4.043-10.606 7.829-13.558 13.209C91.165 317.014 92 324.448 92 331h184c0-6.552.835-13.986-2.442-19.961-2.951-5.38-9.09-9.166-13.558-13.209-6.357-5.751-12.143-12.179-17.54-18.83-16.842-20.756-27.113-44.54-30.46-71h-56z%22 style=%22fill:%23000;stroke:none%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* kosal */
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23fff}.st2{fill:%23cfcecf}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22M58 25.9c-6 0-9.1 2.6-10.6 4.1l-7 12.2-7-12.2C32 28.5 29 25.9 23 25.9c-9.4 0-14.9 7.7-14.9 15.3 0 8.6 3.7 11.5 8.6 21.7V71h47.6v-8.1c4.9-10.1 8.6-13.1 8.6-21.7 0-7.6-5.5-15.3-14.9-15.3z%22 class=%22st1%22/%3E%3Cpath d=%22m35.3 32.8 5.2 10.7 5.2-10.7-3.1-11 7.9 2.4v-7.6l-7.9 1 1.7-7.3h-7.6l1.7 7.3-7.9-1v7.6l7.9-2.4z%22 class=%22st1%22/%3E%3Cpath d=%22M64.7 27.4C71.8 40 58 58.6 45.9 59.9l19.4 2.6 6.6-13.4 1-9.9-1.7-5.2-2.6-3.6-3.9-3zm-31.1 2.7c1.1 5.4-1.6 14.6-5.4 20.5S17.7 61.4 17.7 61.4l22.8-1.6V42.6l-6.9-12.5z%22 class=%22st2%22/%3E%3Cpath d=%22M53.1 60.6v9.9H64v-7.6zm-3.6-42.9-1.3 2.8-7.1-.2 8.4 3.3h1zm-6.4-6.4L40.5 13v6.2l1.6-1zm-1.3 10.2v11.7l-1.3 7L45 34zm-1.9-.9h-9.4v3.6z%22 class=%22st2%22/%3E%3Cpath d=%22m36.4 51.2 4.1 6 4.1-6-4.1-6z%22/%3E%3Cpath d=%22M69.8 29.9c-3-3.4-7.2-5.2-11.8-5.2-4.8 0-8.6 1.5-11.5 4.5l-.5.8-1.9-6.7 7.4 2.2V15.4l-7.6 1 1.7-7.1H35.4l1.7 7.1-7.6-1v10.1l7.4-2.2-1.9 6.8-.4-.7-.1-.2v-.1c-2.9-3-6.7-4.5-11.5-4.5-10.1 0-16.1 8.4-16.1 16.6 0 6.4 2 10 4.8 14.9l.6 1c1 1.7 2.1 3.7 3.2 6v9.1h50.1v-9.1c1.2-2.3 2.2-4.3 3.2-6l.6-1c2.8-4.9 4.8-8.5 4.8-14.9 0-4.1-1.6-8.2-4.4-11.3zm-29.9-9.6-8.4 2.5v-5.1l8.2 1-1.8-7.4h5.2l-1.8 7.4 8.2-1v5.1l-8.4-2.5 3.5 12.2-4.1 7.2-4.1-7.2 3.5-12.2zM63 69.8H17.8v-6.5C21.6 62.6 31 61 40.5 61c9.3 0 18.6 1.5 22.5 2.2v6.6zm4.2-14.9c-1 1.6-3 4.7-3.8 5.9-4.1-.7-13.4-2.2-23-2.2-9.7 0-19.2 1.5-23.1 2.2-.8-1.2-2.8-4.2-3.7-5.9l-.1-.1C10.8 50 9.1 47 9.1 41.3c0-9.1 7-14 13.6-14 4 0 7.2 1.2 9.6 3.6l8 13.9 8-13.9c2.4-2.4 5.6-3.6 9.6-3.6 8.9 0 13.7 7.2 13.7 14 .1 5.7-1.6 8.7-4.4 13.6z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23fff}.st2{fill:%23cfcecf}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Ccircle cx=%2221.9%22 cy=%2216.5%22 r=%225.2%22 class=%22st1%22/%3E%3Cpath d=%22M59.1 21.8c2.9 0 5.2-2.3 5.2-5.2s-2.3-5.2-5.2-5.2-5.2 2.3-5.2 5.2 2.3 5.2 5.2 5.2z%22 class=%22st1%22/%3E%3Cpath d=%22M72.1 26.4c-2.9 0-5.2 2.3-5.2 5.2 0 1.4.6 2.8 1.5 3.7L55.2 50.5l3.3-28.7-2.1-.6-9.8 16.9-5.1-21.7h-2.2l-5.1 21.7-9.8-16.9-2.1.6 3.3 28.7-13-15.2c.9-.9 1.5-2.3 1.5-3.7 0-2.9-2.3-5.2-5.2-5.2s-5.2 2.3-5.2 5.2 2.3 5.2 5.2 5.2c.5 0 1-.1 1.5-.2L19.5 71h42.1l9.1-34.4c.5.1 1 .2 1.5.2 2.9 0 5.2-2.3 5.2-5.2s-2.4-5.2-5.3-5.2z%22 class=%22st1%22/%3E%3Ccircle cx=%2240.5%22 cy=%2211.3%22 r=%225.2%22 class=%22st1%22/%3E%3Cpath d=%22m41.4 20.3 5.3 17.9-5.3 7.3zM27.1 53.6l-3.5 6.8-9.7-22.1zm6.9-3.1-9.2-27.7 15.7 28.1zm14.2 0 9.3-24.7-3.6 27.8zm4.7 19.9 15.6-33.7 1.5.3-9.3 33.4zm20.4-33.7c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zM60 21.3c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zM10.1 36.7c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zm13-15.4c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zm18.5-5.2c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1.1 3.9 3 5.4 2.6z%22 class=%22st2%22/%3E%3Cpath d=%22m40.5 65.7-3.9-5.9 3.9-5.8 3.9 5.8z%22 style=%22fill:%23231f20%22/%3E%3Ccircle cx=%2221.9%22 cy=%2216.5%22 r=%225.2%22 class=%22st1%22/%3E%3Cpath d=%22M59.1 21.8c2.9 0 5.2-2.3 5.2-5.2s-2.3-5.2-5.2-5.2-5.2 2.3-5.2 5.2 2.3 5.2 5.2 5.2z%22 class=%22st1%22/%3E%3Cpath d=%22M72.1 26.4c-2.9 0-5.2 2.3-5.2 5.2 0 1.4.6 2.8 1.5 3.7L55.2 50.5l3.3-28.7-2.1-.6-9.8 16.9-5.1-21.7h-2.2l-5.1 21.7-9.8-16.9-2.1.6 3.3 28.7-13-15.2c.9-.9 1.5-2.3 1.5-3.7 0-2.9-2.3-5.2-5.2-5.2s-5.2 2.3-5.2 5.2 2.3 5.2 5.2 5.2c.5 0 1-.1 1.5-.2L19.5 71h42.1l9.1-34.4c.5.1 1 .2 1.5.2 2.9 0 5.2-2.3 5.2-5.2s-2.4-5.2-5.3-5.2z%22 class=%22st1%22/%3E%3Ccircle cx=%2240.5%22 cy=%2211.3%22 r=%225.2%22 class=%22st1%22/%3E%3Cpath d=%22m41.4 20.3 5.3 17.9-5.3 7.3zM27.1 53.6l-3.5 6.8-9.7-22.1zm6.9-3.1-9.2-27.7 15.7 28.1zm14.2 0 9.3-24.7-3.6 27.8zm-6.1 19.9C62 65.7 68.5 36.7 68.5 36.7l1.5.3-9.3 33.4H42.1zM73.3 36.7c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zM60 21.3c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zM10.1 36.7c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zm13-15.4c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1 3.9 3 5.4 2.6zm18.5-5.2c3.4-.9 3.9-3.4 4-6.7 0-.6-.9-1.8-1.3-1.8-.4.1-.8.1-1.2.3.3 2.5-1.3 5-3.8 5.7-1.1.3-2.1.2-3.1-.1-.6 1.1 3.9 3 5.4 2.6z%22 class=%22st2%22/%3E%3Cpath d=%22m40.5 65.7-3.9-5.9 3.9-5.8 3.9 5.8z%22/%3E%3Cpath d=%22M72.1 25.1c-3.6 0-6.4 2.9-6.4 6.5 0 1.3.4 2.6 1.1 3.7l-10.5 13 3.4-25.4c3.3-.3 5.9-3.1 5.9-6.4 0-3.6-2.9-6.5-6.5-6.5s-6.5 2.9-6.5 6.5c0 1.9.8 3.7 2.3 5l-7.8 13.4L43 17.3c2.3-1 3.9-3.4 3.9-6 0-3.6-2.9-6.4-6.4-6.4-3.6 0-6.5 2.9-6.5 6.4 0 2.6 1.5 4.9 3.9 6l-4.1 17.6L26 21.5c1.5-1.2 2.3-3.1 2.3-5 0-3.6-2.9-6.5-6.5-6.5s-6.5 2.9-6.5 6.5c0 3.3 2.6 6.1 5.9 6.4l3.4 25.4-10.4-13c.7-1 1.1-2.3 1.1-3.7 0-3.6-2.9-6.5-6.5-6.5S2.4 28 2.4 31.6 5.3 38 8.8 38h.5l9 34v.2h44l9-34.2h.5c3.6 0 6.4-2.9 6.4-6.4.1-3.6-2.6-6.5-6.1-6.5zm-59 6.5c0 2.3-1.9 4.1-4.2 4.1s-4.1-1.8-4.1-4.1 1.9-4.2 4.1-4.2c2.3 0 4.2 1.9 4.2 4.2zm8.8-10.8c-2.3 0-4.1-1.9-4.1-4.2s1.9-4.2 4.1-4.2c2.3 0 4.2 1.9 4.2 4.2 0 2.2-1.9 4.2-4.2 4.2zM55 16.5c0-2.3 1.9-4.2 4.1-4.2 2.3 0 4.2 1.9 4.2 4.2s-1.9 4.2-4.2 4.2c-2.3.1-4.1-1.8-4.1-4.2zM20.4 69.8l-8.6-32.4c.1-.1.2-.1.3-.1s.2-.1.3-.1l15.1 17.3-3.7-31.6h.1L40.3 51l.2.4 16.6-28.7h.1l-3.7 31.6L68.6 37l.6.3-8.6 32.5H20.4zm55.9-38.2c0 2.3-1.9 4.1-4.2 4.1-2.3 0-4.1-1.8-4.1-4.1s1.9-4.2 4.1-4.2c2.3 0 4.2 1.9 4.2 4.2zM40.5 46.3 35.7 38l4.7-20.2h.3L45.3 38l-4.8 8.3zm0-30.8c-2.3 0-4.2-1.9-4.2-4.2s1.9-4.1 4.2-4.1 4.2 1.9 4.2 4.1c.1 2.3-1.9 4.2-4.2 4.2z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cpath d=%22m58.7 59.4-3.2-27.3 8.6-8.2V12.8H53v8.1h-6.7v-8.1H34.7v8.1H28v-8.1H16.9v11.1l8.6 8.2-3.2 27.3h-6.6V71h49.6V59.4z%22 style=%22fill:%23fff%22/%3E%3Cpath d=%22m58.5 59.7-4.2-27.2h2.2l7.6-8.6V12.8l-5.8 4.6v8.2H32l11.6 6.9h3.2c0 12.1-2.8 21.3-11.7 27.2h13.3L54.5 70h9.9V59.7h-5.9z%22 style=%22fill:%23cfcecf%22/%3E%3Cpath d=%22m59.1 58.1-2.6-24.8 8.7-9V11.5H51.8v8.2h-4.2v-8.2H33.5v8.2h-4.2v-8.2H15.6v12.9l8.7 9-2.6 24.8h-7.3v14.1h51.8V72h.2V58.1h-7.3zM36 22.2V14h9v8.2h9.2V14h8.5v9.3L54.4 32H26.5l-8.4-8.6V14h8.6v8.2H36zm18 12.2 2.6 23.7H24.3l2.6-23.7H54zm2.9 26.2H64v9.1H17v-9.1h39.9z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22m61.4 71-11.9-9.1 10.6-14.6c0-11-4.9-19.9-11.9-26.3l-1.7-.8-7.9 14.3-1.5-1.6 7.8-14.7 2.7-5.1v-.2c0-3.6-2.9-6.6-6.6-6.6-3.6 0-6.6 2.9-6.6 6.6v.2l2.3 4.4C28 24.1 20.9 34.1 20.9 47.3l10.6 14.6L19.6 71h41.8z%22 style=%22fill:%23fff%22/%3E%3Cpath d=%22M45.6 70.7H60l-10.4-9.5h-6.8zm5.2-45.6C54.7 42.1 36 55.8 36 55.8l7.3 4.7h7.4l10.2-13.2-1.5-8.6-3.6-8.3-2.6-4.4-2.4-.9zM44.5 8.6c.8 2.4-3.4 4.4-3.4 4.4v5.1l3.3.1 3-4.3-.3-3.4L45 8.6h-.5z%22 style=%22fill:%23cfcecf%22/%3E%3Cpath d=%22M65 72.2 50.9 61.6l10.2-14v-.4c0-14.1-7.6-23.1-12.2-27.3l-2.3-2.3 2.1-3.9.1-.3v-.5c0-4.3-3.5-7.9-7.9-7.9-4.3 0-7.8 3.5-7.8 7.9v.5l1.9 3.7c-5.9 4.6-15.5 14.6-15.5 30.1v.4l10.2 14L16 72.2h49zM22.5 46.9c-.3-14.6 9.3-24 15-28.2l.9-.6-2.7-5.1c0-2.9 2.4-5.3 5.3-5.3s5.3 2.4 5.4 5.3L35.8 34.6v.1l2.2 5.8 9.3-18.8 1.1 1c4.8 4.7 10.4 12.7 10.1 24.1l-9.2 13H31.8l-9.3-12.9zm10.4 15.6H48l9.8 7.3H23.2l9.7-7.3z%22/%3E%3Cpath d=%22M36.2 18h4.9l-2.7 2.1h-3.8%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cpath d=%22M48 45.1c-3.3 1.6-7.2 1.9-11 .7l-.4-.1-.3.2c-.1.1-12 9.9-15.8 23.7l-.3.9H65L63.2 65v-.1c0-.1-.1-14.8-.1-23.8 0-16.9-7.6-25.6-15-28.6-3.7-1.4-9.2-2.5-12.4-2.5h-1.2l3.2 6.2-24.4 20.3 1 10.8 5 1.4 5.1-3.9H26l-4.3 4.5 1.1.4 6.7 1.9 5.5-6.8c3.5 1.5 7.7 1.3 12.5-.6 2.8-1.2 5.1-3.6 6.5-5.6-.9 2.8-3 5.1-6 6.5z%22 style=%22fill:%23fff%22/%3E%3Cpath d=%22m38 22.1-7.7 6.2c-.5.5-.6 1.3-.2 1.9.3.4.7.6 1.1.6.2 0 .4 0 .6-.1l9.1-3.6-2.9-5z%22/%3E%3Cpath d=%22m38.7 70.7 17.7.3h8.5s-2.1-5.2-2.1-7.2V28.6c0 8.4-2.7 18-9.5 24.8C40.5 57 38.7 70.7 38.7 70.7zm-4.1-23.4 1.3-1.8 8.8.8 4.8-2.2 3.9-3.4 2.4-6.5c-.8-1.3-2.2-2.1-4-2.8-2 7.7-8.1 12.3-16.3 10.4-.4 1.1-.7 1.9-.7 1.9l-7 .3-5.8 4.8 7 4.5 5.6-6z%22 style=%22fill:%23cfcecf%22/%3E%3Cpath d=%22M18.2 72.2h49.1l-2.5-7.5V41.1c0-6.8-.9-23.9-16-30.1-5.8-2.4-14.6-2.6-15-2.5l-1.8.1 3.7 7.2-24.2 20 1.3 12.8 14.5 4.2c-3.5 4.5-7.3 10.7-8.9 18l-.2 1.4zm18.5-25.7c1.5.5 3.1.8 4.8.8 2.4 0 4.7-.5 6.8-1.5 4.1-2 6.8-5.6 7.3-10.1l.2-1.4-.6 1.2c0 .1-3 5.8-7.9 8-3.9 1.6-8.4 2.4-12.4.4l-5.6 6.9-5.8-1.7-.4-.1 4.7-4.9h-3.7l-5 3.8-4.1-1.2-.9-9.9 24.6-20.4-2.9-5.6c2.9 0 8.3.9 12.1 2.4 5.7 2.3 14.5 9.6 14.5 27.9 0 9.1.1 23.8.1 23.8v.2l1.5 4.7H21.2c3.6-13.2 14.7-22.7 15.5-23.3z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cpath d=%22M29.7 37.8h21.6l-5.1-6h.7c2.6-1.9 4.3-5.1 4.3-8.6 0-6-4.8-10.7-10.7-10.7s-10.7 4.8-10.7 10.7c0 3.5 1.7 6.7 4.3 8.6h.7l-5.1 6zm19.7 22.7-4.3-20.7h-10l-3.5 20.7L21 69.9h39z%22 style=%22fill:%23fff%22/%3E%3Cpath d=%22M40.5 59.7 47.8 71h13.8L51.2 60l-1.4-.9-2.9-20.2h-6.4zM44.4 38h8.1l-5.3-6.5H41zm.6-24.7c3.7 5.5 1.1 17.6-10.2 17.6-.2 0 12.1.6 13.1-.3 1.9-1.9 3.1-4.4 3.1-7.3.1-6-6.2-11.2-6-10z%22 style=%22fill:%23cfcecf%22/%3E%3Cpath d=%22m31.9 60.6-10.3 9.1h37.8l-10.2-9-.1-.1L44.9 40h-9.6zM46.1 32H34.9l-4.7 5.9h20.6zm1.4-2.5c1.6-1.7 2.5-4 2.5-6.4 0-5.3-4.2-9.5-9.5-9.5-5.2 0-9.5 4.2-9.5 9.5 0 2.4.9 4.6 2.5 6.4h14z%22 style=%22fill:none%22/%3E%3Cpath d=%22M15 72.2h51L51.5 59.4l-4.2-20h8.2l-7.1-8c2.9-2.2 3.6-5.6 3.6-8.1 0-6.4-5-11.4-11.4-11.4-6.3 0-11.4 5.1-11.4 11.4 0 2.5.6 5.9 3.6 8.1l-7.1 8H33l-3.4 20L15 72.2zm16.4-48.9c0-5 4.1-9.1 9.1-9.1 5.1 0 9.1 4 9.1 9.1 0 2.3-.8 4.4-2.4 6.1H33.8c-1.5-1.7-2.4-3.9-2.4-6.1zm3.8 8.4h10.7l4.5 5.6H30.7l4.5-5.6zm.2 7.7h9.4l4.4 21.2v.1l10.2 9H21.6l10.2-9.1 3.6-21.2z%22 style=%22fill:%23010101%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23010101}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22M58.6 25.5c-6.2 0-9.3 2.6-10.9 4.2l-7.2 12.6-7.2-12.6c-1.6-1.6-4.7-4.2-10.9-4.2-9.7 0-15.3 8-15.3 15.8 0 8.8 3.8 11.9 8.9 22.3V72h49v-8.4c5.1-10.5 8.9-13.5 8.9-22.3 0-7.8-5.6-15.8-15.3-15.8zM40.5 61.6l-3.6-6.4 3.6-6.4 3.6 6.4-3.6 6.4z%22 class=%22st1%22/%3E%3Cpath d=%22M50.7 21.4v-7.7l-8 .9 1.7-7.4h-7.8l1.7 7.4-8-.9v7.7l8-2.4-3.1 8.9 5.3 11 5.3-11-3.1-8.9z%22 class=%22st1%22/%3E%3Cpath d=%22m40.5 19.9-2.9 7.6 2.9 6.4zm-17.7 9.2c-7.2 0-11.7 6.4-11.7 12.9 0 4 2.9 8.2 5.8 12 0-12.4 4.6-17.4 12.5-22.6 0 0-2-2.3-6.6-2.3zM43.5 44l7.4-12.7s3.6-2.6 8-2.6 4.5.5 4.5.5L43.5 44zM31.8 15.1l3.8 2.3-3.8 2.3zm17.4 0-6.4 1.2 4.7 1.1zm-6.6-6.2-2.1 1.9-2.1-1.9z%22 style=%22fill:%236d6e6e%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23010101}.st2{fill:%236d6e6e}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22m55.7 50.9 4-34.9-19.2 33.2L21.3 16l4.1 34.9L7.9 30.8 18.8 72h43.4l10.9-41.2-17.4 20.1zm-15.2 16-3.6-6.4 3.6-6.4 3.6 6.4-3.6 6.4z%22 class=%22st1%22/%3E%3Cpath d=%22m40.5 11.7-5.6 23.5 5.6 9.5 5.6-9.5z%22 class=%22st1%22/%3E%3Ccircle cx=%2240.5%22 cy=%2210.6%22 r=%225.4%22 class=%22st1%22/%3E%3Cpath d=%22M41.6 7.2c-.8-.4-1.7-.6-2.6-.3-1.8.5-2.9 2.4-2.4 4.2 0 .1 0 .1.1.2 2.9.3 5.3-2.8 4.9-4.1z%22 class=%22st2%22/%3E%3Ccircle cx=%2259.5%22 cy=%2216%22 r=%225.4%22 class=%22st1%22/%3E%3Cpath d=%22M60.6 12.6c-.8-.4-1.7-.6-2.6-.3-1.8.5-2.9 2.4-2.4 4.2 0 .1 0 .1.1.2 2.9.2 5.3-2.8 4.9-4.1z%22 class=%22st2%22/%3E%3Ccircle cx=%2221.5%22 cy=%2216%22 r=%225.4%22 class=%22st1%22/%3E%3Cpath d=%22M22.6 12.6c-.8-.4-1.7-.6-2.6-.3-1.8.5-2.9 2.4-2.4 4.2 0 .1 0 .1.1.2 2.9.2 5.3-2.8 4.9-4.1z%22 class=%22st2%22/%3E%3Ccircle cx=%2273.1%22 cy=%2231.4%22 r=%225.4%22 class=%22st1%22/%3E%3Cpath d=%22M74.2 28c-.8-.4-1.7-.6-2.6-.3-1.8.5-2.9 2.4-2.4 4.2 0 .1 0 .1.1.2 2.9.2 5.3-2.8 4.9-4.1z%22 class=%22st2%22/%3E%3Ccircle cx=%227.9%22 cy=%2231.4%22 r=%225.4%22 class=%22st1%22/%3E%3Cpath d=%22M9 28c-.8-.4-1.7-.6-2.6-.3-1.8.4-2.9 2.3-2.4 4.1 0 .1 0 .1.1.2 2.9.3 5.3-2.7 4.9-4zm31.5-7.1-3.1 13.4 3.1 5.3zm16.1 33.8 1.8 5.6 9.6-22zm-8.7-4.2 8-21.2-12.3 20.8zm-14.6 0L25 29.1 28.1 51zm-10.2 8.2L12.6 40.9l7.9 26.4z%22 class=%22st2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23010101}.st2{fill:%236d6e6e}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22M56.9 31.1H24.1L19.2 72h42.6z%22 class=%22st1%22/%3E%3Cpath d=%22M14.2 58.5h52.5V72H14.2z%22 class=%22st1%22/%3E%3Cpath d=%22M41.1 34.1c-.1 7.2-6.6 24.4-14.2 24.4h-2.3l3.8-24.4h12.7zM18.4 62.3h17.9v6.1H18.4z%22 class=%22st2%22/%3E%3Cpath d=%22M53.4 12v6.9h-6.9V12h-12v6.9h-6.9V12h-12v11.4l9 9.1h31.8l9-9.1V12z%22 class=%22st1%22/%3E%3Cpath d=%22M62.4 15h-6v7.2zm-18.9 0h-6v7.2zm-18.9 0h-6v7.2z%22 class=%22st2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23010101}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22M18.9 72h43.2l-11.8-9.5H30.7zM41 18.9c1.5 0 2.9-.5 4-1.3l2.8-5.2v-.3c0-3.7-3-6.8-6.8-6.8-3.7 0-6.8 3-6.8 6.8v.3l2.8 5.2c1.2.8 2.6 1.3 4 1.3%22 class=%22st1%22/%3E%3Cpath d=%22m48.4 20.4-9.7 18.2-1.7-5.9 8.1-15.2c-1-.8-2-1.5-3-2.2H39c-10 6.6-19.1 17.5-19.1 32.2l10.9 15.2h19.4l10.9-15.2c0-11.4-5.5-20.5-12.7-27.1%22 class=%22st1%22/%3E%3Cpath d=%22m48.6 27.9-7.2 13s5 1.3 7.2-1.9c2.2-3.1 1.6-10.1 0-11.1zM31.2 55.1c-1.6-13.9 1.4-28.1 7.9-34.8l-.5-.7c-7.1 6.3-14 15.6-14 26.6l6.6 8.9zM37.9 69v-5.7h-2.5L28.8 69zm4.5-61.1c-.8-.5-1.8-.6-2.7-.3-1.9.5-3 2.5-2.5 4.4 0 .1 0 .1.1.2 3 .2 5.5-2.9 5.1-4.3z%22 style=%22fill:%236d6e6e%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22M19.6 72H67l-2-6.1s-.1-17-.1-26.1c0-17.3-8.5-25.3-16-28.4-5.6-2.3-14.6-1.8-14.6-1.8l3.3 6.5L12 36.4l2 12.2 13.4 3.5 6.1-5.1c1.2.5 2.5.8 3.7 1.1v.3S22.9 57 19.6 72zm11.8-40.7c-.6.3-1.1-.5-.6-1l7.2-6.2 2.2 3.7-8.8 3.5z%22 style=%22fill:%23010101%22/%3E%3Cpath d=%22m15.8 38 1.3 7.9 4.7 1.1-.1-4.6-2.9-.5zm15-4.6 15.6-3.8 2.2-3.8s2.8 1.1 2.1 6.3-6.8 8.3-12.1 7.6c-6.9-.9-7.8-6.3-7.8-6.3zM36 67.9c5.1-16.4 16.4-13 16.8-22.4-3.3 5.9-10.7 5.6-10.7 5.6s-11.6 5.1-15.8 16.8H36z%22 style=%22fill:%236d6e6e%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='kosal'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 81 81%22%3E%3Cstyle%3E.st1{fill:%23010101}.st2{fill:%236d6e6e}.st5,.st6{display:inline;fill:%23fff}.st6{fill:%23cfcecf}%3C/style%3E%3Cpath d=%22M0 0h81v81H0z%22 style=%22fill:none%22/%3E%3Cpath d=%22M40.5 12.5c-6 0-10.7 4.8-10.7 10.7 0 3.6 1.8 6.9 4.6 8.8h12.3c2.8-1.9 4.6-5.2 4.6-8.8-.1-6-4.8-10.7-10.8-10.7%22 class=%22st1%22/%3E%3Cpath d=%22M43.2 16.4c-1.5-.9-3.3-1.1-5.2-.6-3.6 1-5.6 4.6-4.7 8.2 0 .1.1.2.1.3 5.8.7 10.6-5.2 9.8-7.9z%22 class=%22st2%22/%3E%3Cpath d=%22m34.5 31.7-.3 7.7-3.5 21.7L18.3 72h44.3L50.3 61.1 46 39.4l-.3-7.7%22 class=%22st1%22/%3E%3Cpath d=%22m37.7 39.6-3.9 22.5-6.6 7.1h7.6l5.2-5.4.1-24.2z%22 class=%22st2%22/%3E%3Cpath d=%22M26.6 38.8h27.8l-6.7-8H33.3z%22 class=%22st1%22/%3E%3Cpath d=%22M32.3 36.5h8.8l-2.1-4h-3.8z%22 class=%22st2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* leipzig */
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22m84.553 130.992-2.406-.794-1.86 1.488 2.356.794z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3Cpath d=%22M106.01 131.066q.173.52.173.992 0 1.464-1.067 2.257-.099.422-.149.844.918 1.29.918 2.083 0 2.084-4.018 3.572-4.019 1.488-9.65 1.488-5.655 0-9.673-1.488-3.994-1.488-3.994-3.572 0-.818.968-2.133-.05-.273-.149-.769-1.091-.794-1.091-2.282 0-.471.148-.967.248-.62-.099-.968-.347-.347-.794-.967-.396-1.24-.396-1.712.024-.223.074-.496.074-.273.074-.645-1.091-1.091-2.282-2.058-1.165-.993-1.835-2.382-.794-1.637-1.464-3.299-.645-1.686-.645-3.299 0-3.05 1.613-5.159 1.612-2.108 4.365-3.3 3.671-.247 3.1-.247 4.317 0 7.84 3.2v-8.707h8.458v8.731q3.522-3.224 7.887-3.224-.62 0 3.101.248 2.704 1.19 4.316 3.299 1.637 2.108 1.637 5.16 0 1.612-.67 3.274-.644 1.661-1.413 3.299-.67 1.413-1.86 2.455-1.191 1.042-2.258 2.084-.025.297.025.57.074.273.099.496.025.348-.397 1.712-.446.62-.794.967-.322.348-.099.943z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3Cpath d=%22M92.218 109.56q-2.555 0-2.555 2.555t2.555 2.555 2.555-2.555q0-2.555-2.555-2.555zM91.226 105.07l-1.762-1.71v3.794l1.762-1.414q-.075-.099-.075-.322 0-.149.075-.347zM91.796 106.385l-1.488 1.613h3.82l-1.588-1.588q-.248.05-.322.05-.248 0-.422-.075zM93.21 105.815l1.761 1.34v-3.796l-1.786 1.637q.075.199.075.422 0 .149-.05.397zM92.515 104.4l1.613-1.91h-3.82l1.513 1.936q.149-.075.397-.075.099 0 .297.05zM95.22 130.223l-3.052-1.464-2.927 1.464 3.026 1.463zM90.258 123.476q-.025-3.051-.52-6.127-.497-3.1-.993-3.77-3.076-3.399-6.945-3.399-3.324 0-5.06 2.233-1.141 1.463-1.141 3.845 0 4.96 3.696 9.276.421-.198.818-.347l.843-.297q-.223-.497-.446-.943-.223-.447-.471-1.166-.472-1.389-.372-2.63.173-.768.843-.768.298 0 .794.52-.124-.669-.124-.843 0-2.306 1.96-2.852 2.058.1 2.728 3.076.223-.744.62-.844.397-.099.52-.099.298 0 .522.149.843 1.042 1.041 3.026.05.447.05.868.025.422.1 1.19.768-.148 1.537-.098z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3Cpath d=%22M82.842 124.32q-.224-.571-.472-1.266-.223-.695-.595-1.488-.198-.397-.496-.397-.422 0-.447.694-.05.596 1.216 2.729.198-.074.397-.124.223-.075.397-.149zM85.322 123.947q-.1-3.25-.967-5.259-.298-.52-.868-.52-.72 0-.72.719-.025.025-.025.645 0 1.066 1.216 4.663 1.042-.198 1.364-.248zM87.654 123.699q.124-1.91-.199-3.225-.099-.421-.471-.52-.52-.075-.695.57-.198 1.067.348 3.299.496-.124 1.017-.124zM103.28 136.002q-.198-1.786-4.96-2.728-1.489-.298-3.002-.348-1.513-.05-3.1-.124-1.563.15-2.952.223-1.364.075-2.48.298-5.482 1.116-5.606 2.68-.199.297-.199.62 0 1.115 1.786 2.232 0-1.141.397-1.712l.447-.546.496-.595q2.232-1.34 8.16-1.19 5.805-.15 8.087 1.19.545.695.942 1.141.397.62.397 1.712 1.786-1.117 1.786-2.233 0-.322-.198-.62z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3Cpath d=%22M100.403 138.309q0-2.233-8.235-2.233-8.111 0-8.111 2.233.52 2.208 8.21 2.208 7.566 0 8.136-2.208zM100.106 130.992l1.885 1.488 2.381-.794-1.885-1.488zM105.116 125.51q3.547-4.39 3.547-9.252 0-2.382-1.14-3.845-1.762-2.233-5.06-2.233-3.895 0-6.946 3.399-.521.67-1.017 3.77-.496 3.076-.521 6.127.893-.075 1.587.099.025-.77.025-1.19.025-.422.1-.869.173-1.984 1.041-3.026.199-.149.521-.149.124 0 .521.1t.62.843q.645-2.977 2.729-3.076 1.96.546 1.96 2.852 0 .174-.125.844.472-.521.794-.521.645 0 .843.769.075 1.24-.372 2.63-.273.718-.496 1.165-.198.446-.422.893l.893.347q.472.149.918.323z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3Cpath d=%22M101.42 124.32q.15.073.348.148.223.05.446.124 1.24-2.133 1.216-2.729-.05-.694-.447-.694-.322 0-.496.397-.397.793-.645 1.488-.223.695-.422 1.265zM98.94 123.947q.298.05 1.364.248 1.216-3.597 1.216-4.663 0-.62-.025-.645 0-.72-.72-.72-.595 0-.868.521-.893 2.01-.967 5.259zM96.608 123.699q.521 0 1.017.124.521-2.232.347-3.3-.198-.644-.694-.57-.397.1-.471.521-.348 1.315-.199 3.225zM104.025 129.18q1.116-.123 1.116-1.24 0-.719-.645-1.09-2.083-.844-5.308-1.365-3.2-.546-6.995-.546-7.962 0-12.353 1.96-.545.421-.545 1.042 0 1.265 1.265 1.215 4.415-1.662 11.633-1.662 7.317 0 11.832 1.687z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3C/g%3E%3Cpath d=%22m84.553 130.992-2.406-.794-1.86 1.488 2.356.794zm21.456.074q.174.52.174.992 0 1.464-1.067 2.257-.099.422-.149.844.918 1.29.918 2.083 0 2.084-4.018 3.572-4.019 1.488-9.65 1.488-5.655 0-9.673-1.488-3.994-1.488-3.994-3.572 0-.818.968-2.133-.05-.273-.149-.769-1.091-.794-1.091-2.282 0-.471.148-.967.248-.62-.099-.968-.347-.347-.794-.967-.396-1.24-.396-1.712.024-.223.074-.496.074-.273.074-.645-1.091-1.091-2.282-2.058-1.165-.993-1.835-2.382-.794-1.637-1.464-3.299-.645-1.686-.645-3.299 0-3.05 1.613-5.159 1.612-2.108 4.365-3.3 3.671-.247 3.1-.247 4.317 0 7.84 3.2v-8.707h8.458v8.731q3.522-3.224 7.887-3.224-.62 0 3.101.248 2.704 1.19 4.316 3.299 1.637 2.108 1.637 5.16 0 1.612-.67 3.274-.644 1.661-1.413 3.299-.67 1.413-1.86 2.455-1.191 1.042-2.258 2.084-.025.297.025.57.074.273.099.496.025.348-.397 1.712-.446.62-.794.967-.322.348-.099.943zM92.218 109.56q-2.555 0-2.555 2.555t2.555 2.555 2.555-2.555q0-2.555-2.555-2.555zm-.992-4.49-1.762-1.71v3.794l1.762-1.414q-.075-.099-.075-.322 0-.149.075-.347zm.57 1.315-1.488 1.613h3.82l-1.588-1.588q-.248.05-.322.05-.248 0-.422-.075zm1.414-.57 1.761 1.34v-3.796l-1.786 1.637q.075.199.075.422 0 .149-.05.397zm-.695-1.414 1.613-1.91h-3.82l1.513 1.935q.149-.075.397-.075.099 0 .297.05zm2.704 25.822-3.05-1.464-2.928 1.464 3.026 1.463zm-4.96-6.747q-.026-3.051-.522-6.127-.496-3.1-.992-3.77-3.076-3.399-6.945-3.399-3.324 0-5.06 2.233-1.141 1.463-1.141 3.845 0 4.96 3.696 9.276.421-.198.818-.347l.843-.297q-.223-.497-.446-.943-.223-.447-.471-1.166-.472-1.389-.372-2.63.173-.768.843-.768.298 0 .794.52-.124-.669-.124-.843 0-2.306 1.96-2.852 2.058.1 2.728 3.076.223-.744.62-.844.397-.099.52-.099.298 0 .522.149.843 1.042 1.041 3.026.05.447.05.868.025.422.1 1.19.768-.148 1.537-.098zm-7.417.843q-.224-.57-.472-1.265-.223-.695-.595-1.488-.198-.397-.496-.397-.422 0-.447.694-.05.596 1.216 2.729.198-.074.397-.124.223-.075.397-.149zm2.48-.372q-.1-3.25-.967-5.259-.298-.52-.868-.52-.72 0-.72.719-.025.025-.025.645 0 1.066 1.216 4.663 1.042-.198 1.364-.248zm2.332-.248q.124-1.91-.199-3.225-.099-.421-.471-.52-.52-.075-.695.57-.198 1.067.348 3.299.496-.124 1.017-.124zm15.627 12.303q-.199-1.786-4.961-2.728-1.489-.298-3.002-.348-1.513-.05-3.1-.124-1.563.15-2.952.223-1.364.075-2.48.298-5.482 1.116-5.606 2.68-.199.297-.199.62 0 1.115 1.786 2.232 0-1.141.397-1.712l.447-.546.496-.595q2.232-1.34 8.16-1.19 5.805-.15 8.087 1.19.545.695.942 1.141.397.62.397 1.712 1.786-1.117 1.786-2.233 0-.322-.198-.62zm-2.878 2.307q0-2.233-8.235-2.233-8.111 0-8.111 2.233.52 2.208 8.21 2.208 7.566 0 8.136-2.208zm-.297-7.317 1.885 1.488 2.381-.794-1.885-1.488zm5.01-5.482q3.547-4.39 3.547-9.252 0-2.382-1.14-3.845-1.762-2.233-5.06-2.233-3.895 0-6.946 3.399-.521.67-1.017 3.77-.496 3.076-.521 6.127.893-.075 1.587.099.025-.77.025-1.19.025-.422.1-.869.173-1.984 1.041-3.026.199-.149.521-.149.124 0 .521.1t.62.843q.645-2.977 2.729-3.076 1.96.546 1.96 2.852 0 .174-.125.844.472-.521.794-.521.645 0 .843.769.075 1.24-.372 2.63-.273.718-.496 1.165-.198.446-.422.893l.893.347q.472.149.918.323zm-3.696-1.191q.15.074.348.149.223.05.446.124 1.24-2.133 1.216-2.729-.05-.694-.447-.694-.322 0-.496.397-.397.793-.645 1.488-.223.695-.422 1.265zm-2.48-.372q.298.05 1.364.248 1.216-3.597 1.216-4.663 0-.62-.025-.645 0-.72-.72-.72-.595 0-.868.521-.893 2.01-.967 5.259zm-2.332-.248q.521 0 1.017.124.521-2.232.347-3.3-.198-.644-.694-.57-.397.1-.471.521-.348 1.315-.199 3.225zm7.417 5.482q1.116-.124 1.116-1.24 0-.72-.645-1.092-2.083-.843-5.308-1.364-3.2-.546-6.995-.546-7.962 0-12.353 1.96-.545.421-.545 1.042 0 1.265 1.265 1.215 4.415-1.662 11.633-1.662 7.317 0 11.832 1.687z%22 aria-label=%22k%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-66.817 -94.95)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M86.365 126.453q-.694-.596-2.133-2.357-2.505-2.828-2.803-2.828-.248 0-.248.348 0 .446.794 1.81.694 1.96 1.14 3.597 1.117-.223 3.25-.57zM92.22 125.956q-.646-.545-1.241-1.81-.72-1.464-1.736-4.54-.397-1.215-.744-2.058-.348-.844-.497-.819-.074.025-.074.397.025.372.025.595 0 .67.62 3.399.595 2.827.595 4.043.025.744-.149 1.066 1.29-.173 3.2-.273zM98.594 125.882q-.72-.818-.943-2.753-.099-.77-.272-2.208-.15-1.463-.224-3.621-.074-1.563-.248-2.704-.173-1.141-.347-1.19-.198.049-.347 1.19-.124 1.14-.199 2.704-.124 2.158-.297 3.621-.174 1.439-.248 2.208-.224 2.083-.943 2.753.496 0 .992-.074.521-.1 1.042-.1.52 0 1.017.1.52.074 1.017.074zM104.125 126.205q-.173-.373-.173-1.042 0-1.265.62-4.043.595-2.779.595-3.399 0-.793-.025-.818-.347-.075-1.265 2.703-.942 2.878-1.736 4.54-.57 1.19-1.215 1.835 1.165.05 3.2.224zM110.079 127.023q.223-.918.496-1.81.297-.918.595-1.811.794-1.464.794-1.786 0-.348-.248-.348-.397 0-2.803 2.803-.744.868-1.265 1.489-.521.595-.868.942 1.686.223 3.299.521zM77.684 114.298q-1.662 0-1.662 1.662 0 1.687 1.662 1.687 1.686 0 1.686-1.687 0-1.662-1.686-1.662z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-71.16 -99.093)%22/%3E%3Cpath d=%22m97.775 108.196.745 8.037.793 7.987q.025.57.57.57.398-.024.547-.347 2.158-5.209 3.175-8.061 1.041-2.878 1.265-3.547-1.141-1.092-1.141-2.456 0-1.19.843-2.034.868-.868 2.084-.868 1.19 0 2.034.868.868.843.868 2.034 0 2.158-2.233 2.927l-1.81 10.815q-.124.744.52.744.521 0 .794-.273 2.977-2.976 4.267-4.613 1.314-1.638 1.835-2.283-.546-.719-.546-1.736 0-2.902 2.903-2.902 1.19 0 2.034.868.868.844.868 2.034 0 1.216-.868 2.059-.844.843-2.034.843-.372 0-.67-.074-1.985 4.291-3.175 8.78-1.017 3.647-1.265 6.921.149.695.173.72-.074-.298.1.57.099.397.099.77-.149.396-.62.892-.422.471-.62 1.86.917 1.29.917 2.084 0 2.084-4.018 3.572t-9.649 1.488q-5.655 0-9.674-1.488-3.993-1.488-3.993-3.572 0-.819.967-2.133-.298-1.414-.645-1.811-.496-.496-.645-.893 0-.322.075-.744.05-.199.074-.347.025-.174.05-.248.099-.273.198-.77-.248-3.125-1.215-6.87-1.29-4.713-3.2-8.83-.422.123-.868.123-2.903 0-2.903-2.902t2.903-2.902 2.902 2.902q0 .893-.447 1.612 1.464 1.86 2.927 3.473 1.489 1.588 3.274 3.498.224.322.645.322.72 0 .645-.744-.05-.223-.62-3.547l-1.24-7.243q-2.356-.645-2.356-2.952 0-1.19.843-2.034.868-.868 2.059-.868 2.902 0 2.902 2.902 0 1.29-.992 2.357.124.52.62 2.083.496 1.538 1.538 4.068.57 1.39 1.14 2.803.596 1.39 1.191 2.753.15.323.521.323.521-.025.595-.546.05-.298 1.514-15.999-1.762-.942-1.762-2.803 0-1.19.844-2.059.843-.868 2.059-.868 1.19 0 2.034.868.868.869.868 2.06 0 1.686-1.613 2.777z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-71.16 -99.093)%22/%3E%3Cpath d=%22M91.078 133.844q-1.314 0-1.314 1.39t1.314 1.388q1.34 0 1.34-1.389t-1.34-1.389zM83.513 128.883q.297 1.216.52 2.208.249.967.422 2.108.199.1.447.1 4.415-1.662 11.633-1.662 7.318 0 11.832 1.686.248-.05.372-.124.149-1.116.397-2.034.248-.942.546-2.182-2.828-.794-6.177-1.315-3.348-.546-6.945-.546-3.597 0-6.87.521-3.275.521-6.177 1.24zM108.417 136.4l-1.786-1.712-2.282.917 1.81 1.712z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-71.16 -99.093)%22/%3E%3Cpath d=%22m99.71 134.638-3.2-1.662-3.075 1.662 3.2 1.687zM88.995 135.63l-2.506-.843-1.984 1.563 2.48.843zM115.288 114.298q-1.687 0-1.687 1.662 0 1.687 1.687 1.687 1.661 0 1.661-1.687 0-1.662-1.661-1.662zM86.316 108.692q-1.662 0-1.662 1.687 0 1.662 1.662 1.662 1.686 0 1.686-1.662 0-1.687-1.686-1.687zM96.486 103.731q-1.662 0-1.662 1.687 0 1.662 1.662 1.662t1.662-1.662q0-1.687-1.662-1.687zM106.656 108.692q-1.687 0-1.687 1.687 0 1.662 1.687 1.662 1.661 0 1.661-1.662 0-1.687-1.661-1.687zM102.017 133.844q-1.315 0-1.315 1.39t1.315 1.388q1.34 0 1.34-1.389t-1.34-1.389zM96.56 138.284q-4.713 0-8.012.72-3.274.72-3.274 2.059 0 1.389 3.274 2.232 3.3.843 8.012.843 4.688 0 8.062-.843 3.398-.843 3.398-2.232 0-1.34-3.398-2.06-3.374-.719-8.062-.719z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-71.16 -99.093)%22/%3E%3C/g%3E%3Cpath d=%22M86.365 126.453q-.694-.596-2.133-2.357-2.505-2.828-2.803-2.828-.248 0-.248.348 0 .446.794 1.81.694 1.96 1.14 3.597 1.117-.223 3.25-.57zm5.854-.497q-.645-.545-1.24-1.81-.72-1.464-1.736-4.54-.397-1.215-.744-2.058-.348-.844-.497-.819-.074.025-.074.397.025.372.025.595 0 .67.62 3.399.595 2.827.595 4.043.025.744-.149 1.066 1.29-.173 3.2-.273zm6.375-.074q-.72-.818-.943-2.753-.099-.77-.272-2.208-.15-1.463-.224-3.621-.074-1.563-.248-2.704-.173-1.141-.347-1.19-.198.049-.347 1.19-.124 1.14-.199 2.704-.124 2.158-.297 3.621-.174 1.439-.248 2.208-.224 2.083-.943 2.753.496 0 .992-.074.521-.1 1.042-.1.52 0 1.017.1.52.074 1.017.074zm5.531.323q-.173-.373-.173-1.042 0-1.265.62-4.043.595-2.779.595-3.399 0-.793-.025-.818-.347-.075-1.265 2.703-.942 2.878-1.736 4.54-.57 1.19-1.215 1.835 1.165.05 3.2.224zm5.954.818q.223-.918.496-1.81.297-.918.595-1.811.794-1.464.794-1.786 0-.348-.248-.348-.397 0-2.803 2.803-.744.868-1.265 1.489-.521.595-.868.942 1.686.223 3.299.521zm-32.395-12.725q-1.662 0-1.662 1.662 0 1.687 1.662 1.687 1.686 0 1.686-1.687 0-1.662-1.686-1.662zm20.091-6.102.745 8.037.793 7.987q.025.57.57.57.398-.024.547-.347 2.158-5.209 3.175-8.061 1.041-2.878 1.265-3.547-1.141-1.092-1.141-2.456 0-1.19.843-2.034.868-.868 2.084-.868 1.19 0 2.034.868.868.843.868 2.034 0 2.158-2.233 2.927l-1.81 10.815q-.124.744.52.744.521 0 .794-.273 2.977-2.976 4.267-4.613 1.314-1.638 1.835-2.283-.546-.719-.546-1.736 0-2.902 2.903-2.902 1.19 0 2.034.868.868.844.868 2.034 0 1.216-.868 2.059-.844.843-2.034.843-.372 0-.67-.074-1.985 4.291-3.175 8.78-1.017 3.647-1.265 6.921.149.695.173.72-.074-.298.1.57.099.397.099.77-.149.396-.62.892-.422.471-.62 1.86.917 1.29.917 2.084 0 2.084-4.018 3.572t-9.649 1.488q-5.655 0-9.674-1.488-3.993-1.488-3.993-3.572 0-.819.967-2.133-.298-1.414-.645-1.811-.496-.496-.645-.893 0-.322.075-.744.05-.199.074-.347.025-.174.05-.248.099-.273.198-.77-.248-3.125-1.215-6.87-1.29-4.713-3.2-8.83-.422.123-.868.123-2.903 0-2.903-2.902t2.903-2.902 2.902 2.902q0 .893-.447 1.612 1.464 1.86 2.927 3.473 1.489 1.588 3.274 3.498.224.322.645.322.72 0 .645-.744-.05-.223-.62-3.547l-1.24-7.243q-2.356-.645-2.356-2.952 0-1.19.843-2.034.868-.868 2.059-.868 2.902 0 2.902 2.902 0 1.29-.992 2.357.124.52.62 2.083.496 1.538 1.538 4.068.57 1.39 1.14 2.803.596 1.39 1.191 2.753.15.323.521.323.521-.025.595-.546.05-.298 1.514-15.999-1.762-.942-1.762-2.803 0-1.19.844-2.059.843-.868 2.059-.868 1.19 0 2.034.868.868.869.868 2.06 0 1.686-1.613 2.777zm-6.697 25.648q-1.314 0-1.314 1.39t1.314 1.388q1.34 0 1.34-1.389t-1.34-1.389zm-7.565-4.96q.297 1.215.52 2.207.249.967.422 2.108.199.1.447.1 4.415-1.662 11.633-1.662 7.318 0 11.832 1.686.248-.05.372-.124.149-1.116.397-2.034.248-.942.546-2.182-2.828-.794-6.177-1.315-3.348-.546-6.945-.546-3.597 0-6.87.521-3.275.521-6.177 1.24zm24.904 7.515-1.786-1.711-2.282.917 1.81 1.712zm-8.707-1.76-3.2-1.663-3.075 1.662 3.2 1.687zm-10.715.991-2.506-.843-1.984 1.563 2.48.843zm26.293-21.332q-1.687 0-1.687 1.662 0 1.687 1.687 1.687 1.661 0 1.661-1.687 0-1.662-1.661-1.662zm-28.972-5.606q-1.662 0-1.662 1.687 0 1.662 1.662 1.662 1.686 0 1.686-1.662 0-1.687-1.686-1.687zm10.17-4.96q-1.662 0-1.662 1.686 0 1.662 1.662 1.662t1.662-1.662q0-1.687-1.662-1.687zm10.17 4.96q-1.687 0-1.687 1.687 0 1.662 1.687 1.662 1.661 0 1.661-1.662 0-1.687-1.661-1.687zm-4.639 25.152q-1.315 0-1.315 1.39t1.315 1.388q1.34 0 1.34-1.389t-1.34-1.389zm-5.457 4.44q-4.713 0-8.012.72-3.274.72-3.274 2.059 0 1.389 3.274 2.232 3.3.843 8.012.843 4.688 0 8.062-.843 3.398-.843 3.398-2.232 0-1.34-3.398-2.06-3.374-.719-8.062-.719z%22 aria-label=%22q%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-71.16 -99.093)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M102.24 112.112h3.423v3.374h5.134v-3.374h5.904v8.856l-3.994 4.613q1.29 1.638.05 3.448-.198.323-.198.596 0 .322.198.62.52.769.496 2.183 0 1.389-.52 2.182-.174.248-.174.521 0 .348.223.645 1.166 1.761-.05 3.473-.173.297-.173.57t.173.57q.546.82.546 2.283 0 1.439-.595 2.133l4.018 2.01v2.132h1.662v7.194H86.092v-7.169h1.687v-2.133l3.993-2.034q-.595-.694-.595-2.133t.546-2.257q.198-.273.198-.57 0-.249-.198-.571-1.216-1.737-.025-3.473.223-.397.223-.645t-.174-.546q-.545-.793-.57-2.182 0-1.414.52-2.183.224-.298.224-.62 0-.273-.198-.57-1.265-1.812.05-3.474l-3.994-4.588v-8.856h5.903v3.349l5.11.025v-3.374z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-76.84 -108.715)%22/%3E%3Cpath d=%22M93.087 124.366q4.242-.67 9.153-.67 4.986 0 9.227.67l1.439-1.81q-5.06-.894-10.666-.894-5.656 0-10.691.893zM87.853 150.659v3.795h28.749v-3.795zM102.24 145.599q-5.16 0-9.352.347l-3.348 1.786v1.24h25.4v-1.24l-1.687-.893q-.843-.446-1.662-.893-4.465-.347-9.351-.347zM114.94 113.8h-2.555v3.472h-8.483v-3.448h-3.349v3.448h-8.458v-3.473H89.54v6.301q3.175-.199 6.325-.372 3.175-.174 6.375-.174 6.027 0 12.7.546zM106.73 125.68q-.82.596-.82 1.687 0 1.092.82 1.687.768.595 2.282.595 1.513 0 2.306-.595.794-.595.794-1.687 0-1.091-.794-1.686-.793-.57-2.306-.57-1.514 0-2.283.57zM100.057 125.68q-.769.596-.769 1.687 0 1.092.769 1.687.744.595 2.158.595 1.439 0 2.208-.595.744-.595.744-1.687 0-1.091-.744-1.686-.77-.57-2.208-.57-1.414 0-2.158.57zM93.161 125.68q-.818.596-.818 1.687 0 1.092.818 1.687.77.595 2.258.595 1.513 0 2.331-.595.794-.595.794-1.687 0-1.091-.794-1.686-.818-.57-2.331-.57-1.489 0-2.258.57zM109.83 130.716q-.298.595-.298 1.712 0 1.09.298 1.661.273.596.868.596t.893-.596q.298-.57.298-1.661 0-1.117-.298-1.712-.297-.546-.893-.546t-.868.546zM103.48 130.716q-.744.595-.744 1.712 0 1.09.744 1.661.744.596 2.133.596 1.414 0 2.158-.596.744-.57.744-1.661 0-1.117-.744-1.712-.744-.57-2.158-.57-1.389 0-2.133.57zM96.708 130.716q-.744.595-.744 1.712 0 1.09.744 1.661.72.596 2.134.596 1.413 0 2.158-.596.719-.57.719-1.661 0-1.117-.72-1.712-.744-.57-2.157-.57-1.414 0-2.134.57zM92.888 130.716q-.297.595-.297 1.712 0 1.09.297 1.661.298.596.869.596.595 0 .893-.596.297-.57.297-1.661 0-1.117-.297-1.712-.298-.546-.893-.546-.57 0-.869.546zM109.83 140.91q-.298.571-.298 1.687 0 1.117.298 1.687.273.57.868.57t.893-.57q.298-.57.298-1.687 0-1.116-.298-1.686-.297-.546-.893-.546t-.868.546zM92.888 140.91q-.297.571-.297 1.687 0 1.117.297 1.687.298.57.869.57.595 0 .893-.57.297-.57.297-1.687 0-1.116-.297-1.686-.298-.546-.893-.546-.57 0-.869.546zM96.708 140.91q-.744.596-.744 1.787 0 1.19.744 1.587.695.397 2.183.397 1.513 0 2.109-.397.57-.397.645-1.587.074-1.19-.645-1.786-.745-.57-2.158-.57-1.414 0-2.134.57zM103.48 140.91q-.744.596-.744 1.787 0 1.19.744 1.587.72.397 2.133.397 1.439 0 2.158-.397.695-.397.72-1.587.024-1.19-.72-1.786-.744-.57-2.158-.57-1.389 0-2.133.57zM106.73 135.85q-.82.596-.82 1.712 0 1.092.82 1.662.768.595 2.282.595 1.513 0 2.306-.595.794-.57.794-1.662 0-1.116-.794-1.711-.793-.57-2.306-.57-1.514 0-2.283.57zM100.057 135.85q-.769.596-.769 1.712 0 1.092.769 1.662.744.595 2.158.595 1.439 0 2.208-.595.744-.57.744-1.662 0-1.116-.744-1.711-.77-.57-2.208-.57-1.414 0-2.158.57zM93.161 135.85q-.818.596-.818 1.712 0 1.092.818 1.662.77.595 2.258.595 1.513 0 2.331-.595.794-.57.794-1.662 0-1.116-.794-1.711-.818-.57-2.331-.57-1.489 0-2.258.57z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-76.84 -108.715)%22/%3E%3C/g%3E%3Cpath d=%22M102.24 112.112h3.423v3.374h5.134v-3.374h5.904v8.856l-3.994 4.613q1.29 1.638.05 3.448-.198.323-.198.596 0 .322.198.62.52.769.496 2.183 0 1.389-.52 2.182-.174.248-.174.521 0 .348.223.645 1.166 1.761-.05 3.473-.173.297-.173.57t.173.57q.546.82.546 2.283 0 1.439-.595 2.133l4.018 2.01v2.132h1.662v7.194H86.092v-7.169h1.687v-2.133l3.993-2.034q-.595-.694-.595-2.133t.546-2.257q.198-.273.198-.57 0-.249-.198-.571-1.216-1.737-.025-3.473.223-.397.223-.645t-.174-.546q-.545-.793-.57-2.182 0-1.414.52-2.183.224-.298.224-.62 0-.273-.198-.57-1.265-1.812.05-3.474l-3.994-4.588v-8.856h5.903v3.349l5.11.025v-3.374zm-9.153 12.254q4.242-.67 9.153-.67 4.986 0 9.227.67l1.439-1.81q-5.06-.894-10.666-.894-5.656 0-10.691.893zm-5.234 26.293v3.795h28.749v-3.795zm14.387-5.06q-5.16 0-9.352.347l-3.348 1.786v1.24h25.4v-1.24l-1.687-.893q-.843-.446-1.662-.893-4.465-.347-9.351-.347zm12.7-31.8h-2.555v3.473h-8.483v-3.448h-3.349v3.448h-8.458v-3.473H89.54v6.301q3.175-.199 6.325-.372 3.175-.174 6.375-.174 6.027 0 12.7.546zm-8.21 11.882q-.82.595-.82 1.686 0 1.092.82 1.687.768.595 2.282.595 1.513 0 2.306-.595.794-.595.794-1.687 0-1.091-.794-1.686-.793-.57-2.306-.57-1.514 0-2.283.57zm-6.673 0q-.769.595-.769 1.686 0 1.092.769 1.687.744.595 2.158.595 1.439 0 2.208-.595.744-.595.744-1.687 0-1.091-.744-1.686-.77-.57-2.208-.57-1.414 0-2.158.57zm-6.896 0q-.818.595-.818 1.686 0 1.092.818 1.687.77.595 2.258.595 1.513 0 2.331-.595.794-.595.794-1.687 0-1.091-.794-1.686-.818-.57-2.331-.57-1.489 0-2.258.57zm16.67 5.035q-.299.595-.299 1.712 0 1.09.298 1.661.273.596.868.596t.893-.596q.298-.57.298-1.661 0-1.117-.298-1.712-.297-.546-.893-.546t-.868.546zm-6.35 0q-.745.595-.745 1.712 0 1.09.744 1.661.744.596 2.133.596 1.414 0 2.158-.596.744-.57.744-1.661 0-1.117-.744-1.712-.744-.57-2.158-.57-1.389 0-2.133.57zm-6.773 0q-.744.595-.744 1.712 0 1.09.744 1.661.72.596 2.134.596 1.413 0 2.158-.596.719-.57.719-1.661 0-1.117-.72-1.712-.744-.57-2.157-.57-1.414 0-2.134.57zm-3.82 0q-.297.595-.297 1.712 0 1.09.297 1.661.298.596.869.596.595 0 .893-.596.297-.57.297-1.661 0-1.117-.297-1.712-.298-.546-.893-.546-.57 0-.869.546zm16.942 10.195q-.298.57-.298 1.686 0 1.117.298 1.687.273.57.868.57t.893-.57q.298-.57.298-1.687 0-1.116-.298-1.686-.297-.546-.893-.546t-.868.546zm-16.942 0q-.297.57-.297 1.686 0 1.117.297 1.687.298.57.869.57.595 0 .893-.57.297-.57.297-1.687 0-1.116-.297-1.686-.298-.546-.893-.546-.57 0-.869.546zm3.82 0q-.744.595-.744 1.786 0 1.19.744 1.587.695.397 2.183.397 1.513 0 2.109-.397.57-.397.645-1.587.074-1.19-.645-1.786-.745-.57-2.158-.57-1.414 0-2.134.57zm6.772 0q-.744.595-.744 1.786 0 1.19.744 1.587.72.397 2.133.397 1.439 0 2.158-.397.695-.397.72-1.587.024-1.19-.72-1.786-.744-.57-2.158-.57-1.389 0-2.133.57zm3.25-5.06q-.82.595-.82 1.711 0 1.092.82 1.662.768.595 2.282.595 1.513 0 2.306-.595.794-.57.794-1.662 0-1.116-.794-1.711-.793-.57-2.306-.57-1.514 0-2.283.57zm-6.673 0q-.769.595-.769 1.711 0 1.092.769 1.662.744.595 2.158.595 1.439 0 2.208-.595.744-.57.744-1.662 0-1.116-.744-1.711-.77-.57-2.208-.57-1.414 0-2.158.57zm-6.896 0q-.818.595-.818 1.711 0 1.092.818 1.662.77.595 2.258.595 1.513 0 2.331-.595.794-.57.794-1.662 0-1.116-.794-1.711-.818-.57-2.331-.57-1.489 0-2.258.57z%22 aria-label=%22r%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-76.84 -108.715)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M68.203 125q-2.803 0-4.787.497-1.985.496-1.985 1.19t1.985 1.191q1.984.471 4.787.471t4.787-.47q2.01-.497 2.01-1.191t-2.01-1.191Q71.006 125 68.203 125zM73.809 94.441q-1.067 0-1.067 1.042 0 1.067 1.067 1.067t1.067-1.067q0-1.042-1.067-1.042zM67.856 94.367q-1.017 0-1.017 1.017t1.017 1.017q1.017 0 1.017-1.017t-1.017-1.017zM71.899 108.48v-1.264h-3.175v-4.242h-1.265v4.242h-3.175v1.265h3.175v5.928h1.265v-5.928z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-42.63 -89.605)%22/%3E%3Cpath d=%22M72.966 109.547H69.79v5.929h-3.399v-5.929h-3.175v-3.373h3.175v-4.242h3.399v4.242h3.175zM70.485 123.041l-2.406-.992-2.381.992 2.381.992zM77.728 109.721q.273-1.34-.843-4.936-1.092-3.622-3.25-6.003-.322-.198-.57-.173-.372.05-.695.372-.297.322-.074.769 2.63 1.786 4.018 5.134 1.39 3.349 1.414 4.837z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-42.63 -89.605)%22/%3E%3Cpath d=%22M62.548 119.221q2.38-.793 5.531-.793 3.274 0 5.581.793 3.026-6.102 3.026-9.574 0-5.879-8.508-11.435-8.483 5.556-8.483 11.435 0 3.745 2.853 9.574zM73.189 121.751l-.447-1.562q-2.083-.496-4.688-.496-2.555 0-4.49.446l-.496 1.588q2.06-.546 4.986-.546 3.076 0 5.135.57zM74.082 124.405l-.546-1.76-2.208.47 2.183 1.415zM62.225 124.43l.447.1 2.182-1.414-2.108-.472z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-42.63 -89.605)%22/%3E%3Cpath d=%22M68.054 134.377q-1.835 2.654-4.96 2.654-.323 0-.646-.025-.297-.05-.595-.074-.72-.025-2.108-.248-1.39-.248-3.1-1.116-1.514-1.315-3.846-1.315-1.786 0-3.1.843-.372.174-.918.72-.992 1.066-1.612 1.165-.496-.248-.521-.843-.124-1.166 1.711-3.001-.322.05-1.215.297-.744.224-.992.224-.819.124-.868.024-.273-.272.198-1.116.397-.72 1.538-1.265.149-.074.942-.421 2.307-1.216 4.837-1.216 3.696 0 6.673 2.505 1.19.397 2.406.397 3.72 0 3.845-3.076-2.406-.223-4.019-.818-1.587-.595-1.587-1.39l1.984-6.597q-1.736-2.729-2.877-5.556-1.141-2.828-1.141-5.358 0-7.59 8.235-11.658 0-.323.074-.968-.843-.694-.843-1.761 0-2.282 2.307-2.282 2.282 0 2.282 2.282 0 .992-.72 1.662 0 .769.199 1.042.422.595 1.116.62.72-.025 1.19-.645.1-.149.2-.918-.646-.67-.646-1.662 0-2.331 2.332-2.331t2.332 2.331q0 1.315-1.141 2.034-.1.496-.05.794 4.192 4.96 3.646 11.46-.173 1.86-.57 3.67-.397 1.787-1.39 3.374-.371.844-1.165 1.91-.77 1.042-1.34 1.96l1.96 6.598q-.025.794-1.637 1.389t-4.068.818q.124 3.076 3.87 3.076 1.215 0 2.405-.397 2.952-2.505 6.673-2.505 2.53 0 4.812 1.216.298.148.52.248.224.099.447.173 1.117.57 1.538 1.265.075.223.224.57.148.348-.025.546-.075.1-.868-.024-.248 0-.993-.224-.917-.248-1.24-.297 1.836 1.86 1.736 3.001-.05.57-.545.843-.62-.099-1.613-1.165-.496-.496-.892-.72-1.39-.843-3.101-.843-2.381 0-3.87 1.315-1.711.868-3.1 1.116-1.39.223-2.084.248-.297.025-.62.074-.322.025-.62.025-3.2 0-4.986-2.654z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-42.63 -89.605)%22/%3E%3Cpath d=%22M68.054 132.566q.075 0 1.637 1.513 1.439 1.365 3.523 1.365h1.016q1.067-.075 2.035-.248.967-.199 2.306-.745 2.58-1.786 4.763-1.786.942 0 1.736.224.323.074.372.173.075.075.57.298 1.539.794.77.174-.744-.645-.57-.943.148-.322 1.14-.695 1.017-.372-1.438-.595-1.24-.422-2.58-.422-2.977 0-6.077 2.407-1.092.595-1.86.67-.745.074-1.414.024-1.935-.074-2.605-.52-.645-.472-1.166-1.043-.496-.52-.967-2.009-.248-.794-1.19-.893-.968.1-1.191.893-.447 1.488-.968 2.01-.52.57-1.19 1.041-.645.447-2.555.521-.695.05-1.464-.025-.744-.074-1.81-.67-3.15-2.406-6.078-2.406-1.364 0-2.58.422-2.48.223-1.488.595 1.017.373 1.191.695.149.298-.62.943-.744.62.818-.174.447-.223.521-.298.075-.099.397-.173.77-.224 1.761-.224 2.158 0 4.738 1.786 1.34.546 2.282.745.967.173 2.084.248h1.017q2.058 0 3.522-1.365 1.538-1.513 1.612-1.513z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-42.63 -89.605)%22/%3E%3C/g%3E%3Cpath d=%22M68.203 125q-2.803 0-4.787.497-1.985.496-1.985 1.19t1.985 1.191q1.984.471 4.787.471t4.787-.47q2.01-.497 2.01-1.191t-2.01-1.191Q71.006 125 68.203 125zm5.606-30.559q-1.067 0-1.067 1.042 0 1.067 1.067 1.067t1.067-1.067q0-1.042-1.067-1.042zm-5.953-.074q-1.017 0-1.017 1.017t1.017 1.017q1.017 0 1.017-1.017t-1.017-1.017zm4.043 14.114v-1.265h-3.175v-4.242h-1.265v4.242h-3.175v1.265h3.175v5.928h1.265v-5.928zm1.067 1.066H69.79v5.929h-3.399v-5.929h-3.175v-3.373h3.175v-4.242h3.399v4.242h3.175zm-2.48 13.494-2.407-.992-2.381.992 2.381.992zm7.242-13.32q.273-1.34-.843-4.936-1.092-3.622-3.25-6.003-.322-.198-.57-.173-.372.05-.695.372-.297.322-.074.769 2.63 1.786 4.018 5.134 1.39 3.349 1.414 4.837zm-15.18 9.5q2.38-.793 5.531-.793 3.274 0 5.581.793 3.026-6.102 3.026-9.574 0-5.879-8.508-11.435-8.483 5.556-8.483 11.435 0 3.745 2.853 9.574zm10.64 2.53-.446-1.562q-2.083-.496-4.688-.496-2.555 0-4.49.446l-.496 1.588q2.06-.546 4.986-.546 3.076 0 5.135.57zm.894 2.654-.546-1.76-2.208.47 2.183 1.415zm-11.857.025.447.1 2.182-1.414-2.108-.472zm5.83 9.947q-1.836 2.654-4.962 2.654-.322 0-.645-.025-.297-.05-.595-.074-.72-.025-2.108-.248-1.39-.248-3.1-1.116-1.514-1.315-3.846-1.315-1.786 0-3.1.843-.372.174-.918.72-.992 1.066-1.612 1.165-.496-.248-.521-.843-.124-1.166 1.711-3.001-.322.05-1.215.297-.744.224-.992.224-.819.124-.868.024-.273-.272.198-1.116.397-.72 1.538-1.265.149-.074.942-.421 2.307-1.216 4.837-1.216 3.696 0 6.673 2.505 1.19.397 2.406.397 3.72 0 3.845-3.076-2.406-.223-4.019-.818-1.587-.595-1.587-1.39l1.984-6.597q-1.736-2.729-2.877-5.556-1.141-2.828-1.141-5.358 0-7.59 8.235-11.658 0-.323.074-.968-.843-.694-.843-1.761 0-2.282 2.307-2.282 2.282 0 2.282 2.282 0 .992-.72 1.662 0 .769.199 1.042.422.595 1.116.62.72-.025 1.19-.645.1-.149.2-.918-.646-.67-.646-1.662 0-2.331 2.332-2.331t2.332 2.331q0 1.315-1.141 2.034-.1.496-.05.794 4.192 4.96 3.646 11.46-.173 1.86-.57 3.67-.397 1.787-1.39 3.374-.371.844-1.165 1.91-.77 1.042-1.34 1.96l1.96 6.598q-.025.794-1.637 1.389t-4.068.818q.124 3.076 3.87 3.076 1.215 0 2.405-.397 2.952-2.505 6.673-2.505 2.53 0 4.812 1.216.298.148.52.248.224.099.447.173 1.117.57 1.538 1.265.075.223.224.57.148.348-.025.546-.075.1-.868-.024-.248 0-.993-.224-.917-.248-1.24-.297 1.836 1.86 1.736 3.001-.05.57-.545.843-.62-.099-1.613-1.165-.496-.496-.892-.72-1.39-.843-3.101-.843-2.381 0-3.87 1.315-1.711.868-3.1 1.116-1.39.223-2.084.248-.297.025-.62.074-.322.025-.62.025-3.2 0-4.986-2.654zm0-1.81q.074 0 1.636 1.512 1.439 1.365 3.523 1.365h1.016q1.067-.075 2.035-.248.967-.199 2.306-.745 2.58-1.786 4.763-1.786.942 0 1.736.224.323.074.372.173.075.075.57.298 1.539.794.77.174-.744-.645-.57-.943.148-.322 1.14-.695 1.017-.372-1.438-.595-1.24-.422-2.58-.422-2.977 0-6.077 2.407-1.092.595-1.86.67-.745.074-1.414.024-1.935-.074-2.605-.52-.645-.472-1.166-1.043-.496-.52-.967-2.009-.248-.794-1.19-.893-.968.1-1.191.893-.447 1.488-.968 2.01-.52.57-1.19 1.041-.645.447-2.555.521-.695.05-1.464-.025-.744-.074-1.81-.67-3.15-2.406-6.078-2.406-1.364 0-2.58.422-2.48.223-1.488.595 1.017.373 1.191.695.149.298-.62.943-.744.62.818-.174.447-.223.521-.298.075-.099.397-.173.77-.224 1.761-.224 2.158 0 4.738 1.786 1.34.546 2.282.745.967.173 2.084.248h1.017q2.058 0 3.522-1.365 1.538-1.513 1.612-1.513z%22 aria-label=%22b%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-42.63 -89.605)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M93.803 122.503q-.199.248-.521.471-.695.521-.992-.099-.174-.298.024-.918.348-.297.472-.397.769-.917 1.265-1.612.248-.05.372-.025.868.15.446 1.067-.223.446-.545.818-.298.348-.521.695zM101.145 111.49q.496-1.538 1.885-1.662.943-.075 1.637-.075.695 0 1.489-.248-.794 2.233-1.811 2.902-.546.323-1.513.397-.72.05-1.117-.099-.396-.149-.57-1.215z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-83.856 -92.812)%22/%3E%3Cpath d=%22M99.508 124.686q1.19-.844 1.687-1.761.52-.943 1.413-1.786.025-.298.075-.67t.099-.794q.174-.173.273-.198.72-.223.843.645 0 .248-.05.496-.024.223.025.397.15.173 1.117.372 3.572.124 6.573-2.68 0-.024.149-.222.173-.199.198-.248.744-1.117 1.19-4.639.05-.1.274-.223.645-.223.818.645-.223 3.2-.967 4.564-.397.72-.893 1.265.422-.223.843-.422t.819-.446q1.265-.77 1.81-2.977.273-.471.794-.422.546.1.422.819-.57 3.1-2.43 4.018-.596.298-1.216.546-.596.223-1.166.447 1.463-.075 3.175-.472.322 0 .446.273.224.496-.471.893-3.497.967-4.44.868-.67 2.109-3.274 4.639-1.439 1.389-2.977 2.703-1.538 1.29-3.026 2.58-3.299 2.902-4.018 5.656 5.68.024 9.425.024h13.271q3.2-.024 7.789-.024.347 0 .272-1.24-.05-1.24-.173-2.308-1.34.15-2.53-1.389-1.19-1.562-1.092-3.571.025-5.21-.67-9.377-.67-4.192-2.678-7.267-3.274-4.961-10.393-8.434-.1.62-.224 1.141-.198.794-.744.52-.52-.173-.545-.669.099-.446.124-.67-.025-.074-.05-.173-.025-.124-.025-.223-.248-1.29-1.414-2.927-.198 1.041-.397 1.414-.198.372-.347.644-.273.397-.496.77-.198.371-.471.818-.273-.298-.596-.695-.297-.421-.545-.719-.224-.223-.447-.422-.198-.223-.794-.372.521 1.935-.272 2.654-.397.397-.869 1.067-.47.645-1.066 1.19-.347.373-.868.869-.496.471-.844 1.24-.471 1.439-1.86 2.902-1.364 1.439-3.001 2.902-3.572 3.175-4.044 4.614-.644 1.736.075 3.373.67 1.464 1.835 1.91.695.273 1.712-1.041 1.091-1.315 1.439-1.216.645.174.421.918-.124.422-.793 1.215-.695.77-.72 1.017-.124.298.496.472.77.198 2.878-1.86.248-.249.52-.447.298-.223.596-.496z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-83.856 -92.812)%22/%3E%3Cpath d=%22M100.326 125.876q-.347.372-.57.546-.199.149-.372.298-.223.198-1.588 1.637-.57.595-1.364.794-.57.148-1.463-.124-3.101-.819-4.887-3.275-.72-.917-1.017-2.207-.273-1.315.298-3.324.545-2.059 3.919-4.639 3.696-2.803 4.366-4.49.545-.967 1.24-2.132.694-1.166 1.662-2.258.595-.421 1.116-.967.546-.57 1.091-1.166v-3.05q1.39.272 1.985.793.297.322.67.595.371.273.67.596.62-1.117.793-1.86.025-.174.149-.695.149-.521.297-1.712.372-.074.645.199 1.166 1.265 2.183 2.877 4.54 1.81 8.285 4.291 3.77 2.48 5.755 5.16 5.705 7.739 5.705 22.72 0 3.15-.323 5.755H95.713q-.323-3.224 3.423-6.846 1.687-1.637 3.497-3.175 1.836-1.538 3.572-3.125 3.225-2.977 3.572-4.763-.124-.297-.471-.397-.868.521-1.737.67-.868.149-1.711.199l-1.092.05q-.52 0-1.24-.249-.967 1.092-1.662 1.885-.67.77-1.538 1.39z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-83.856 -92.812)%22/%3E%3C/g%3E%3Cpath d=%22M93.803 122.503q-.199.248-.521.471-.695.521-.992-.099-.174-.298.024-.918.348-.297.472-.397.769-.917 1.265-1.612.248-.05.372-.025.868.15.446 1.067-.223.446-.545.818-.298.348-.521.695zm7.342-11.013q.496-1.538 1.885-1.662.943-.075 1.637-.075.695 0 1.489-.248-.794 2.233-1.811 2.902-.546.323-1.513.397-.72.05-1.117-.099-.396-.149-.57-1.215zm-1.637 13.196q1.19-.844 1.687-1.761.52-.943 1.413-1.786.025-.298.075-.67t.099-.794q.174-.173.273-.198.72-.223.843.645 0 .248-.05.496-.024.223.025.397.15.173 1.117.372 3.572.124 6.573-2.68 0-.024.149-.222.173-.199.198-.248.744-1.117 1.19-4.639.05-.1.274-.223.645-.223.818.645-.223 3.2-.967 4.564-.397.72-.893 1.265.422-.223.843-.422t.819-.446q1.265-.77 1.81-2.977.273-.471.794-.422.546.1.422.819-.57 3.1-2.43 4.018-.596.298-1.216.546-.596.223-1.166.447 1.463-.075 3.175-.472.322 0 .446.273.224.496-.471.893-3.497.967-4.44.868-.67 2.109-3.274 4.639-1.439 1.389-2.977 2.703-1.538 1.29-3.026 2.58-3.299 2.902-4.018 5.656 5.68.024 9.425.024h13.271q3.2-.024 7.789-.024.347 0 .272-1.24-.05-1.24-.173-2.308-1.34.15-2.53-1.389-1.19-1.562-1.092-3.571.025-5.21-.67-9.377-.67-4.192-2.678-7.267-3.274-4.961-10.393-8.434-.1.62-.224 1.141-.198.794-.744.52-.52-.173-.545-.669.099-.446.124-.67-.025-.074-.05-.173-.025-.124-.025-.223-.248-1.29-1.414-2.927-.198 1.041-.397 1.414-.198.372-.347.644-.273.397-.496.77-.198.371-.471.818-.273-.298-.596-.695-.297-.421-.545-.719-.224-.223-.447-.422-.198-.223-.794-.372.521 1.935-.272 2.654-.397.397-.869 1.067-.47.645-1.066 1.19-.347.373-.868.869-.496.471-.844 1.24-.471 1.439-1.86 2.902-1.364 1.439-3.001 2.902-3.572 3.175-4.044 4.614-.644 1.736.075 3.373.67 1.464 1.835 1.91.695.273 1.712-1.041 1.091-1.315 1.439-1.216.645.174.421.918-.124.422-.793 1.215-.695.77-.72 1.017-.124.298.496.472.77.198 2.878-1.86.248-.249.52-.447.298-.223.596-.496zm.818 1.19q-.347.372-.57.546-.199.149-.372.298-.223.198-1.588 1.637-.57.595-1.364.794-.57.148-1.463-.124-3.101-.819-4.887-3.275-.72-.917-1.017-2.207-.273-1.315.298-3.324.545-2.059 3.919-4.639 3.696-2.803 4.366-4.49.545-.967 1.24-2.132.694-1.166 1.662-2.258.595-.421 1.116-.967.546-.57 1.091-1.166v-3.05q1.39.272 1.985.793.297.322.67.595.371.273.67.596.62-1.117.793-1.86.025-.174.149-.695.149-.521.297-1.712.372-.074.645.199 1.166 1.265 2.183 2.877 4.54 1.81 8.285 4.291 3.77 2.48 5.755 5.16 5.705 7.739 5.705 22.72 0 3.15-.323 5.755H95.713q-.323-3.224 3.423-6.846 1.687-1.637 3.497-3.175 1.836-1.538 3.572-3.125 3.225-2.977 3.572-4.763-.124-.297-.471-.397-.868.521-1.737.67-.868.149-1.711.199l-1.092.05q-.52 0-1.24-.249-.967 1.092-1.662 1.885-.67.77-1.538 1.39z%22 aria-label=%22n%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-83.856 -92.812)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M88.333 72.903h11.46q-.745-2.952-2.853-5.234-.819-.942-1.538-1.563-2.381-1.934-3.894-4.564-1.588.596-3.175.596-1.638 0-3.175-.596-1.613 2.68-3.895 4.564-.744.62-1.538 1.563-2.133 2.282-2.852 5.234zM88.333 60.476q2.803 0 4.787-1.985t1.984-4.812q0-2.307-1.438-4.142-1.662-2.133-2.555-4.515-1.489-.198-2.778-.198-1.365 0-2.779.198-1.017 2.53-2.58 4.515-1.438 1.835-1.438 4.142 0 2.828 1.984 4.812t4.813 1.985zM88.333 37.283q2.53 0 2.53-2.53t-2.53-2.53-2.53 2.53 2.53 2.53zM88.333 43.137q1.885 0 3.348.472-.57-1.042-1.19-2.307-.596-1.29-.77-2.555-.694.198-1.388.198-.745 0-1.414-.198-.199 1.265-.794 2.555-.595 1.265-1.141 2.307 1.96-.472 3.349-.472z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-62.933 -27.188)%22/%3E%3Cpath d=%22M88.333 74.565H74.814q.471-5.333 4.54-9.004.669-.62.743-.67 2.109-1.736 3.597-4.142-3.82-2.506-3.82-7.07 0-2.827 1.712-5.085.57-.72 1.215-1.637.67-.918 1.067-1.786-.596.15-1.811.472-1.19.322-1.761.545 1.711-1.587 3.25-3.77 1.562-2.183 1.835-4.639-1.265-1.29-1.265-3.026t1.215-2.976q1.24-1.24 3.002-1.24 1.711 0 2.951 1.24t1.24 2.976q0 1.761-1.264 3.026.272 2.456 1.835 4.639 1.588 2.183 3.3 3.77-.571-.223-1.812-.545-1.215-.323-1.81-.472.397.868 1.041 1.786.67.918 1.265 1.637 1.712 2.258 1.712 5.085 0 4.564-3.82 7.07 1.414 2.38 3.572 4.142.372.298.744.67 4.093 3.67 4.54 9.004z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-62.933 -27.188)%22/%3E%3C/g%3E%3Cpath d=%22M88.333 72.903h11.46q-.745-2.952-2.853-5.234-.819-.942-1.538-1.563-2.381-1.934-3.894-4.564-1.588.596-3.175.596-1.638 0-3.175-.596-1.613 2.68-3.895 4.564-.744.62-1.538 1.563-2.133 2.282-2.852 5.234zm0-12.427q2.803 0 4.787-1.985t1.984-4.812q0-2.307-1.438-4.142-1.662-2.133-2.555-4.515-1.489-.198-2.778-.198-1.365 0-2.779.198-1.017 2.53-2.58 4.515-1.438 1.835-1.438 4.142 0 2.828 1.984 4.812t4.813 1.985zm0-23.193q2.53 0 2.53-2.53t-2.53-2.53-2.53 2.53 2.53 2.53zm0 5.854q1.885 0 3.348.472-.57-1.042-1.19-2.307-.596-1.29-.77-2.555-.694.198-1.388.198-.745 0-1.414-.198-.199 1.265-.794 2.555-.595 1.265-1.141 2.307 1.96-.472 3.349-.472zm0 31.428H74.814q.471-5.333 4.54-9.004.669-.62.743-.67 2.109-1.736 3.597-4.142-3.82-2.506-3.82-7.07 0-2.827 1.712-5.085.57-.72 1.215-1.637.67-.918 1.067-1.786-.596.15-1.811.472-1.19.322-1.761.545 1.711-1.587 3.25-3.77 1.562-2.183 1.835-4.639-1.265-1.29-1.265-3.026t1.215-2.976q1.24-1.24 3.002-1.24 1.711 0 2.951 1.24t1.24 2.976q0 1.761-1.264 3.026.272 2.456 1.835 4.639 1.588 2.183 3.3 3.77-.571-.223-1.812-.545-1.215-.323-1.81-.472.397.868 1.041 1.786.67.918 1.265 1.637 1.712 2.258 1.712 5.085 0 4.564-3.82 7.07 1.414 2.38 3.572 4.142.372.298.744.67 4.093 3.67 4.54 9.004z%22 aria-label=%22p%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-62.933 -27.188)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22m71.017 116.387 2.084 1.612 2.604-.893-2.058-1.612z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-37.952 -79.85)%22/%3E%3Cpath d=%22M77.144 115.965q.174.521.174.992 0 1.464-1.067 2.258-.1.421-.149.843.918 1.29.918 2.084 0 2.083-4.018 3.571t-9.65 1.489q-5.655 0-9.673-1.489-3.994-1.488-3.994-3.571 0-.819.968-2.134-.05-.272-.15-.769-1.09-.793-1.09-2.282 0-.47.148-.967.248-.62-.099-.967-.347-.348-.794-.968-.397-1.24-.397-1.711.025-.224.075-.496.074-.273.074-.645-1.091-1.092-2.282-2.06-1.166-.991-1.835-2.38-.794-1.637-1.464-3.3-.645-1.686-.645-3.298 0-3.051 1.613-5.16 1.612-2.108 4.365-3.299 3.671-.248 3.1-.248 4.317 0 7.84 3.2v-8.706h8.457v8.73q3.523-3.224 7.888-3.224-.62 0 3.1.248 2.705 1.19 4.317 3.3 1.637 2.108 1.637 5.159 0 1.612-.67 3.274-.645 1.662-1.414 3.299-.67 1.414-1.86 2.456-1.19 1.041-2.257 2.083-.025.298.025.57.074.273.099.497.025.347-.397 1.711-.446.62-.794.968-.322.347-.099.942z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-37.952 -79.85)%22/%3E%3Cpath d=%22M73.721 123.084q-.1-.546-.347-1.19-.273-.596-.57-.794-.274-.223-.497-.57-2.505-1.588-8.905-1.415-6.499-.173-8.979 1.414-.298.298-.595.521-.273.223-.472.819-.272.62-.347 1.215-.05.794.695.794.719 0 .694-.77.223-2.48 8.905-2.48 8.756 0 9.004 2.48-.05.77.695.77.719 0 .719-.794zM66.081 108.45q.323 0 .645.049.323.025.62.025-.198-2.257.199-3.696.148-.546.545-.595.57-.1.819.62.198 1.19-.397 3.795.992.173 1.464.173.148-3.82 1.165-6.077.298-.595.993-.595.843 0 .793.819.05.05.05.768 0 1.266-1.414 5.383.72.248 1.24.199.273-.72.546-1.514.298-.818.744-1.736.199-.471.57-.471.422 0 .522.818.024.695-1.464 3.175.62.298 1.24.323.298-.595.546-1.116.273-.521.57-1.34.546-1.587.447-3.026-.198-.868-.967-.868-.372 0-.918.595.124-.794.124-.992 0-1.042-.521-1.96-.496-.942-1.712-1.29-.893.05-1.86 1.092-.967 1.042-1.29 2.456-.273-.869-.72-.993-.446-.124-.594-.124-.298 0-.57.174-.993 1.141-1.216 3.473-.075.52-.1 1.017-.024.496-.099 1.438zM60.55 108.474q-.075-.918-.1-1.414-.024-.496-.074-1.017-.298-2.38-1.215-3.472-.248-.174-.596-.174-.148 0-.62.124-.446.124-.67.967-.347-1.413-1.314-2.455-.943-1.042-1.836-1.092-1.24.372-1.736 1.315-.496.918-.496 1.96 0 .47.124.992-.595-.62-.918-.62-.794 0-.967.893-.124 1.538.446 3.001.273.819.521 1.364.273.521.595 1.116.596-.024 1.24-.322-1.512-2.456-1.463-3.175.025-.819.496-.819.372 0 .596.472.421.893.694 1.711.298.819.595 1.538.596 0 1.24-.198-1.438-4.192-1.438-5.408 0-.67.05-.744 0-.843.793-.843.695 0 1.017.62.993 2.257 1.166 6.077.496-.025 1.439-.174-.595-2.654-.372-3.795.223-.744.794-.645.421.1.545.596.397 1.562.199 3.72.397-.05 1.265-.099zM63.353 94.559q-1.216 0-2.084.868t-.868 2.083q0 1.24.868 2.109.868.843 2.084.843 2.951 0 2.951-2.952 0-2.951-2.951-2.951zM63.65 89.226q-.149-.075-.297-.075-.273 0-.397.1l-1.588-1.613h-.57v.695l1.562 1.562q-.074.15-.074.323 0 .149.074.298l-1.562 1.587v.645h.57l1.563-1.563q.174.075.422.075.198 0 .322-.05l1.563 1.538h.67v-.57L64.32 90.64q.074-.174.074-.422 0-.223-.099-.397l1.613-1.587v-.596h-.695zM66.652 115.618l-3.349-1.588-3.225 1.588 3.35 1.612zM55.886 116.387l-2.629-.893-2.059 1.612 2.605.893z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-37.952 -79.85)%22/%3E%3Cpath d=%22M75.16 114.08q1.116-.124 1.116-1.24 0-.72-.645-1.092-2.084-.843-5.308-1.364-3.2-.546-6.995-.546-7.962 0-12.353 1.96-.546.422-.546 1.042 0 1.265 1.265 1.215 4.416-1.662 11.634-1.662 7.317 0 11.832 1.687zM58.962 97.114q-2.877-3.051-6.523-3.051-3.349 0-5.085 2.232-1.117 1.414-1.117 3.845 0 1.91.546 3.646.025.496.62.496.596 0 .645-.595-.198-1.265-.198-2.257 0-2.06.967-3.25 1.39-1.885 4.316-1.885 2.877 0 5.383 2.282.496 0 .496-.918 0-.198-.05-.545zM67.62 97.114q-.05.347-.05.545 0 .918.496.918 2.48-2.282 5.407-2.282 2.877 0 4.291 1.885.968 1.19.968 3.25 0 .992-.199 2.257.025.595.645.595t.62-.496q.546-1.736.546-3.646 0-2.431-1.116-3.845-1.761-2.232-5.085-2.232-3.671 0-6.524 3.05z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-37.952 -79.85)%22/%3E%3C/g%3E%3Cpath d=%22m71.017 116.387 2.084 1.612 2.604-.893-2.058-1.612zm6.127-.422q.174.521.174.992 0 1.464-1.067 2.258-.1.421-.149.843.918 1.29.918 2.084 0 2.083-4.018 3.571t-9.65 1.489q-5.655 0-9.673-1.489-3.994-1.488-3.994-3.571 0-.819.968-2.134-.05-.272-.15-.769-1.09-.793-1.09-2.282 0-.47.148-.967.248-.62-.099-.967-.347-.348-.794-.968-.397-1.24-.397-1.711.025-.224.075-.496.074-.273.074-.645-1.091-1.092-2.282-2.06-1.166-.991-1.835-2.38-.794-1.637-1.464-3.3-.645-1.686-.645-3.298 0-3.051 1.613-5.16 1.612-2.108 4.365-3.299 3.671-.248 3.1-.248 4.317 0 7.84 3.2v-8.706h8.457v8.73q3.523-3.224 7.888-3.224-.62 0 3.1.248 2.705 1.19 4.317 3.3 1.637 2.108 1.637 5.159 0 1.612-.67 3.274-.645 1.662-1.414 3.299-.67 1.414-1.86 2.456-1.19 1.041-2.257 2.083-.025.298.025.57.074.273.099.497.025.347-.397 1.711-.446.62-.794.968-.322.347-.099.942zm-3.423 7.12q-.1-.547-.347-1.191-.273-.596-.57-.794-.274-.223-.497-.57-2.505-1.588-8.905-1.415-6.499-.173-8.979 1.414-.298.298-.595.521-.273.223-.472.819-.272.62-.347 1.215-.05.794.695.794.719 0 .694-.77.223-2.48 8.905-2.48 8.756 0 9.004 2.48-.05.77.695.77.719 0 .719-.794zm-7.64-14.636q.323 0 .645.05.323.025.62.025-.198-2.257.199-3.696.148-.546.545-.595.57-.1.819.62.198 1.19-.397 3.795.992.173 1.464.173.148-3.82 1.165-6.077.298-.595.993-.595.843 0 .793.819.05.05.05.768 0 1.266-1.414 5.383.72.248 1.24.199.273-.72.546-1.514.298-.818.744-1.736.199-.471.57-.471.422 0 .522.818.024.695-1.464 3.175.62.298 1.24.323.298-.595.546-1.116.273-.521.57-1.34.546-1.587.447-3.026-.198-.868-.967-.868-.372 0-.918.595.124-.794.124-.992 0-1.042-.521-1.96-.496-.942-1.712-1.29-.893.05-1.86 1.092-.967 1.042-1.29 2.456-.273-.869-.72-.993-.446-.124-.594-.124-.298 0-.57.174-.993 1.141-1.216 3.473-.075.52-.1 1.017-.024.496-.099 1.438zm-5.531.025q-.075-.918-.1-1.414-.024-.496-.074-1.017-.298-2.38-1.215-3.472-.248-.174-.596-.174-.148 0-.62.124-.446.124-.67.967-.347-1.413-1.314-2.455-.943-1.042-1.836-1.092-1.24.372-1.736 1.315-.496.918-.496 1.96 0 .47.124.992-.595-.62-.918-.62-.794 0-.967.893-.124 1.538.446 3.001.273.819.521 1.364.273.521.595 1.116.596-.024 1.24-.322-1.512-2.456-1.463-3.175.025-.819.496-.819.372 0 .596.472.421.893.694 1.711.298.819.595 1.538.596 0 1.24-.198-1.438-4.192-1.438-5.408 0-.67.05-.744 0-.843.793-.843.695 0 1.017.62.993 2.257 1.166 6.077.496-.025 1.439-.174-.595-2.654-.372-3.795.223-.744.794-.645.421.1.545.596.397 1.562.199 3.72.397-.05 1.265-.099zm2.803-13.915q-1.216 0-2.084.868t-.868 2.083q0 1.24.868 2.109.868.843 2.084.843 2.951 0 2.951-2.952 0-2.951-2.951-2.951zm.297-5.333q-.149-.075-.297-.075-.273 0-.397.1l-1.588-1.613h-.57v.695l1.562 1.562q-.074.15-.074.323 0 .149.074.298l-1.562 1.587v.645h.57l1.563-1.563q.174.075.422.075.198 0 .322-.05l1.563 1.538h.67v-.57L64.32 90.64q.074-.174.074-.422 0-.223-.099-.397l1.613-1.587v-.596h-.695zm3.002 26.392-3.349-1.588-3.225 1.588 3.35 1.612zm-10.766.769-2.629-.893-2.059 1.612 2.605.893zm19.274-2.307q1.116-.124 1.116-1.24 0-.72-.645-1.092-2.084-.843-5.308-1.364-3.2-.546-6.995-.546-7.962 0-12.353 1.96-.546.422-.546 1.042 0 1.265 1.265 1.215 4.416-1.662 11.634-1.662 7.317 0 11.832 1.687zM58.962 97.114q-2.877-3.051-6.523-3.051-3.349 0-5.085 2.232-1.117 1.414-1.117 3.845 0 1.91.546 3.646.025.496.62.496.596 0 .645-.595-.198-1.265-.198-2.257 0-2.06.967-3.25 1.39-1.885 4.316-1.885 2.877 0 5.383 2.282.496 0 .496-.918 0-.198-.05-.545zm8.657 0q-.05.347-.05.545 0 .918.497.918 2.48-2.282 5.407-2.282 2.877 0 4.291 1.885.968 1.19.968 3.25 0 .992-.199 2.257.025.595.645.595t.62-.496q.546-1.736.546-3.646 0-2.431-1.116-3.845-1.761-2.232-5.085-2.232-3.671 0-6.524 3.05z%22 aria-label=%22l%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-37.952 -79.85)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22m120.427 152.763.744 8.037.793 7.987q.025.57.571.57.397-.024.546-.346 2.158-5.21 3.175-8.062 1.041-2.877 1.265-3.547-1.141-1.091-1.141-2.456 0-1.19.843-2.034.868-.868 2.084-.868 1.19 0 2.034.868.868.844.868 2.034 0 2.158-2.233 2.927l-1.81 10.815q-.124.744.52.744.521 0 .794-.273 2.977-2.976 4.267-4.613 1.314-1.637 1.835-2.282-.545-.72-.545-1.737 0-2.902 2.902-2.902 1.19 0 2.034.868.868.844.868 2.034 0 1.216-.868 2.06-.844.842-2.034.842-.372 0-.67-.074-1.984 4.291-3.175 8.78-1.017 3.647-1.265 6.921.149.695.174.72-.075-.298.099.57.099.397.099.77-.149.396-.62.892-.422.471-.62 1.86.917 1.29.917 2.084 0 2.084-4.018 3.572t-9.649 1.488q-5.655 0-9.674-1.488-3.993-1.488-3.993-3.572 0-.818.967-2.133-.298-1.414-.645-1.81-.496-.497-.645-.894 0-.322.075-.744.05-.198.074-.347.025-.174.05-.248.099-.273.198-.77-.248-3.125-1.215-6.87-1.29-4.713-3.2-8.83-.422.123-.868.123-2.902 0-2.902-2.902t2.902-2.902q2.902 0 2.902 2.902 0 .893-.447 1.613 1.464 1.86 2.927 3.472 1.489 1.588 3.275 3.498.223.322.644.322.72 0 .645-.744-.05-.223-.62-3.547l-1.24-7.243q-2.356-.645-2.356-2.952 0-1.19.843-2.034.868-.868 2.059-.868 2.902 0 2.902 2.902 0 1.29-.992 2.357.124.52.62 2.083.496 1.538 1.538 4.068.57 1.39 1.14 2.803.596 1.39 1.191 2.754.15.322.521.322.521-.025.596-.546.05-.297 1.513-15.999-1.762-.942-1.762-2.803 0-1.19.844-2.058.843-.869 2.059-.869 1.19 0 2.034.869.868.868.868 2.058 0 1.687-1.613 2.778z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-93.812 -143.66)%22/%3E%3Cpath d=%22M113.73 178.362q-1.365 0-1.365 1.439 0 1.463 1.364 1.463 1.39 0 1.39-1.463 0-1.44-1.39-1.44zM106.164 173.153q.298 1.017.52 1.835.249.794.422 1.737.15.074.447.074 2.084-.62 5.11-1.091 3.05-.471 6.548-.471 3.572 0 6.648.496 3.076.47 5.16 1.091.123 0 .371-.1.15-.892.397-1.661.248-.794.546-1.836-2.828-.645-6.177-1.265t-6.945-.62-6.87.62q-3.275.596-6.177 1.19zM131.068 180.966l-1.786-1.711-2.282.918 1.81 1.711zM122.361 179.205l-3.2-1.662-3.075 1.662 3.2 1.687zM111.646 180.197l-2.506-.843-1.984 1.563 2.48.843zM124.668 178.362q-1.389 0-1.389 1.439 0 1.463 1.39 1.463t1.388-1.463q0-1.44-1.389-1.44zM130.1 186.97q-.148-.745-.347-1.241-.298-.645-.595-.843-.298-.224-.546-.571-1.315-.843-3.696-1.439-2.356-.62-5.705-.545-3.423-.075-5.755.545-2.331.596-3.621 1.439-.323.298-.62.546-.298.223-.521.843-.248.744-.347 1.265-.05.844.744.844.744 0 .744-.82.223-2.579 9.327-2.579 9.202 0 9.45 2.58-.05.819.744.819.744 0 .744-.844z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-93.812 -143.66)%22/%3E%3C/g%3E%3Cpath d=%22m120.427 152.763.744 8.037.793 7.987q.025.57.571.57.397-.024.546-.346 2.158-5.21 3.175-8.062 1.041-2.877 1.265-3.547-1.141-1.091-1.141-2.456 0-1.19.843-2.034.868-.868 2.084-.868 1.19 0 2.034.868.868.844.868 2.034 0 2.158-2.233 2.927l-1.81 10.815q-.124.744.52.744.521 0 .794-.273 2.977-2.976 4.267-4.613 1.314-1.637 1.835-2.282-.545-.72-.545-1.737 0-2.902 2.902-2.902 1.19 0 2.034.868.868.844.868 2.034 0 1.216-.868 2.06-.844.842-2.034.842-.372 0-.67-.074-1.984 4.291-3.175 8.78-1.017 3.647-1.265 6.921.149.695.174.72-.075-.298.099.57.099.397.099.77-.149.396-.62.892-.422.471-.62 1.86.917 1.29.917 2.084 0 2.084-4.018 3.572t-9.649 1.488q-5.655 0-9.674-1.488-3.993-1.488-3.993-3.572 0-.818.967-2.133-.298-1.414-.645-1.81-.496-.497-.645-.894 0-.322.075-.744.05-.198.074-.347.025-.174.05-.248.099-.273.198-.77-.248-3.125-1.215-6.87-1.29-4.713-3.2-8.83-.422.123-.868.123-2.902 0-2.902-2.902t2.902-2.902q2.902 0 2.902 2.902 0 .893-.447 1.613 1.464 1.86 2.927 3.472 1.489 1.588 3.275 3.498.223.322.644.322.72 0 .645-.744-.05-.223-.62-3.547l-1.24-7.243q-2.356-.645-2.356-2.952 0-1.19.843-2.034.868-.868 2.059-.868 2.902 0 2.902 2.902 0 1.29-.992 2.357.124.52.62 2.083.496 1.538 1.538 4.068.57 1.39 1.14 2.803.596 1.39 1.191 2.754.15.322.521.322.521-.025.596-.546.05-.297 1.513-15.999-1.762-.942-1.762-2.803 0-1.19.844-2.058.843-.869 2.059-.869 1.19 0 2.034.869.868.868.868 2.058 0 1.687-1.613 2.778zm-6.698 25.599q-1.364 0-1.364 1.439 0 1.463 1.364 1.463 1.39 0 1.39-1.463 0-1.44-1.39-1.44zm-7.565-5.21q.298 1.018.52 1.836.249.794.422 1.737.15.074.447.074 2.084-.62 5.11-1.091 3.05-.471 6.548-.471 3.572 0 6.648.496 3.076.47 5.16 1.091.123 0 .371-.1.15-.892.397-1.661.248-.794.546-1.836-2.828-.645-6.177-1.265t-6.945-.62-6.87.62q-3.275.596-6.177 1.19zm24.904 7.814-1.786-1.711-2.282.918 1.81 1.711zm-8.707-1.76-3.2-1.663-3.075 1.662 3.2 1.687zm-10.715.991-2.506-.843-1.984 1.563 2.48.843zm13.022-1.835q-1.389 0-1.389 1.439 0 1.463 1.39 1.463t1.388-1.463q0-1.44-1.389-1.44zm5.432 8.607q-.148-.744-.347-1.24-.298-.645-.595-.843-.298-.224-.546-.571-1.315-.843-3.696-1.439-2.356-.62-5.705-.545-3.423-.075-5.755.545-2.331.596-3.621 1.439-.323.298-.62.546-.298.223-.521.843-.248.744-.347 1.265-.05.843.744.843.744 0 .744-.818.223-2.58 9.327-2.58 9.202 0 9.45 2.58-.05.818.744.818.744 0 .744-.843z%22 aria-label=%22w%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-93.812 -143.66)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M100.837 95.408h3.423v3.374h5.134v-3.374h5.904v8.855l-3.994 4.614q1.29 1.637.05 3.448-.199.322-.199.595 0 .323.199.62.52.77.496 2.183 0 1.39-.52 2.183-.175.248-.175.52 0 .348.224.646 1.165 1.76-.05 3.472-.174.298-.174.571t.174.57q.546.819.546 2.283 0 1.438-.596 2.133l4.019 2.009v2.133h1.662v7.193H84.689v-7.168h1.687v-2.133l3.993-2.034q-.595-.695-.595-2.133t.545-2.258q.199-.273.199-.57 0-.248-.199-.57-1.215-1.737-.024-3.473.223-.397.223-.645t-.174-.546q-.545-.794-.57-2.183 0-1.414.52-2.183.224-.297.224-.62 0-.273-.199-.57-1.265-1.811.05-3.473l-3.993-4.589v-8.855h5.903v3.349l5.11.024v-3.373z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-75.437 -92.01)%22/%3E%3Cpath d=%22M88.137 101.709v2.158l6.325-.298q3.175-.174 6.375-.174 3.125 0 6.3.199 3.2.198 6.4.273v-2.158zM89.203 130.928q-1.066.1-1.066 1.067 0 1.067 1.066 1.067l11.634-.397 11.633.397q1.067 0 1.067-1.067 0-.967-1.067-1.067-2.902-.173-5.829-.297-2.902-.149-5.804-.149t-5.83.149q-2.902.124-5.804.297zM102.102 124.206q.72-.57 2.108-.57 1.414 0 2.158.57.744.596.744 1.786.025 1.19-.744 1.563-.794.422-2.158.422t-2.108-.422q-.794-.372-.77-1.563.026-1.19.77-1.786zM95.305 124.206q.744-.57 2.133-.57 1.39 0 2.134.57.744.596.67 1.786-.05 1.19-.67 1.563-.645.422-2.183.397-1.513-.05-2.084-.397-.595-.322-.67-1.538-.074-1.215.67-1.81z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-75.437 -92.01)%22/%3E%3Cpath d=%22M100.837 106.322q-2.357 0-5.457.323-3.1.297-3.895.545-.818.298-.744.943.075.645.744.843.67.224 2.654-.05 1.985-.272 2.456.05.447.348.447 1.637 0 1.265-.447 1.737-.471.471-2.555.124-2.059-.347-2.555-.124-.496.223-.397.818.1.57.397.844.298.297.868-.124.596-.422.893.124.298.595.298 1.711t-.298 1.662q-.297.57-.893.149-.57-.447-.868-.149-.322.323-.347.967 0 .62.347.794.323.223 2.48-.099 2.159-.347 2.63.1.447.47.447 1.661 0 1.19-.447 1.712-.471.545-2.654.173-2.158-.397-2.456-.173-.967.793 0 1.686.298.298.868-.124.596-.421.893.124.298.57.298 1.687t-.298 1.662q-.297.595-.893.174-.57-.447-.868-.174-.297.298-.471.893-.174.57.471.794.496.198 3.275-.075 2.778-.273 6.077-.273 3.274 0 6.126.224 2.853.198 3.225.124.521-.075.397-.72-.1-.67-.397-.967-.322-.273-.918.174-.57.421-.843-.174-.298-.546-.298-1.662t.298-1.687q.273-.545.868-.124t.893.124q.918-.917 0-1.686-.298-.224-2.555.124-2.257.347-2.58-.124-.322-.447-.372-1.563-.024-1.141.372-1.81.397-.67 2.58-.249 2.208.422 2.555.248.298-.149.298-.793t-.298-.968q-.322-.298-.918.149-.57.422-.843-.149-.298-.546-.298-1.662t.298-1.711q.273-.546.843-.124.596.421.918.124.298-.273.323-.844.05-.595-.323-.818-.422-.223-2.58.124t-2.555-.124q-.396-.472-.396-1.687t.396-1.687q.397-.446 2.431-.05 2.034.398 2.704.05.645-.322.695-.893.074-.595-.695-.893-.818-.248-3.944-.545-3.1-.323-5.407-.323z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-75.437 -92.01)%22/%3E%3Cpath d=%22M98.778 108.976q.694-.57 2.034-.57 1.364 0 2.083.57.72.596.72 1.687 0 1.091-.72 1.687-.719.595-2.083.595-1.34 0-2.034-.595-.72-.596-.72-1.687 0-1.091.72-1.687zM102.102 114.012q.72-.57 2.108-.57 1.414 0 2.158.57.744.595.744 1.711 0 1.092-.744 1.662-.744.595-2.158.595-1.389 0-2.108-.595-.744-.57-.744-1.662 0-1.116.744-1.711zM95.305 114.012q.744-.57 2.133-.57 1.39 0 2.134.57.744.595.744 1.711 0 1.092-.744 1.662-.744.595-2.134.595-1.389 0-2.133-.595-.744-.57-.744-1.662 0-1.116.744-1.711zM98.778 119.146q.694-.57 2.034-.57 1.364 0 2.083.57.72.596.72 1.712 0 1.091-.72 1.662-.719.595-2.083.595-1.34 0-2.034-.595-.72-.57-.72-1.662 0-1.116.72-1.712zM86.45 134.748v1.687h28.798v-1.687z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-75.437 -92.01)%22/%3E%3C/g%3E%3Cpath d=%22M100.837 95.408h3.423v3.374h5.134v-3.374h5.904v8.855l-3.994 4.614q1.29 1.637.05 3.448-.199.322-.199.595 0 .323.199.62.52.77.496 2.183 0 1.39-.52 2.183-.175.248-.175.52 0 .348.224.646 1.165 1.76-.05 3.472-.174.298-.174.571t.174.57q.546.819.546 2.283 0 1.438-.596 2.133l4.019 2.009v2.133h1.662v7.193H84.689v-7.168h1.687v-2.133l3.993-2.034q-.595-.695-.595-2.133t.545-2.258q.199-.273.199-.57 0-.248-.199-.57-1.215-1.737-.024-3.473.223-.397.223-.645t-.174-.546q-.545-.794-.57-2.183 0-1.414.52-2.183.224-.297.224-.62 0-.273-.199-.57-1.265-1.811.05-3.473l-3.993-4.589v-8.855h5.903v3.349l5.11.024v-3.373zm-12.7 6.3v2.159l6.325-.298q3.175-.174 6.375-.174 3.125 0 6.3.199 3.2.198 6.4.273v-2.158zm1.066 29.22q-1.066.1-1.066 1.067 0 1.067 1.066 1.067l11.634-.397 11.633.397q1.067 0 1.067-1.067 0-.967-1.067-1.067-2.902-.173-5.829-.297-2.902-.149-5.804-.149t-5.83.149q-2.902.124-5.804.297zm12.899-6.722q.72-.57 2.108-.57 1.414 0 2.158.57.744.596.744 1.786.025 1.19-.744 1.563-.794.422-2.158.422t-2.108-.422q-.794-.372-.77-1.563.026-1.19.77-1.786zm-6.797 0q.744-.57 2.133-.57 1.39 0 2.134.57.744.596.67 1.786-.05 1.19-.67 1.563-.645.422-2.183.397-1.513-.05-2.084-.397-.595-.322-.67-1.538-.074-1.215.67-1.81zm5.532-17.884q-2.357 0-5.457.323-3.1.297-3.895.545-.818.298-.744.943.075.645.744.843.67.224 2.654-.05 1.985-.272 2.456.05.447.348.447 1.637 0 1.265-.447 1.737-.471.471-2.555.124-2.059-.347-2.555-.124-.496.223-.397.818.1.57.397.844.298.297.868-.124.596-.422.893.124.298.595.298 1.711t-.298 1.662q-.297.57-.893.149-.57-.447-.868-.149-.322.323-.347.967 0 .62.347.794.323.223 2.48-.099 2.159-.347 2.63.1.447.47.447 1.661 0 1.19-.447 1.712-.471.545-2.654.173-2.158-.397-2.456-.173-.967.793 0 1.686.298.298.868-.124.596-.421.893.124.298.57.298 1.687t-.298 1.662q-.297.595-.893.174-.57-.447-.868-.174-.297.298-.471.893-.174.57.471.794.496.198 3.275-.075 2.778-.273 6.077-.273 3.274 0 6.126.224 2.853.198 3.225.124.521-.075.397-.72-.1-.67-.397-.967-.322-.273-.918.174-.57.421-.843-.174-.298-.546-.298-1.662t.298-1.687q.273-.545.868-.124t.893.124q.918-.917 0-1.686-.298-.224-2.555.124-2.257.347-2.58-.124-.322-.447-.372-1.563-.024-1.141.372-1.81.397-.67 2.58-.249 2.208.422 2.555.248.298-.149.298-.793t-.298-.968q-.322-.298-.918.149-.57.422-.843-.149-.298-.546-.298-1.662t.298-1.711q.273-.546.843-.124.596.421.918.124.298-.273.323-.844.05-.595-.323-.818-.422-.223-2.58.124t-2.555-.124q-.396-.472-.396-1.687t.396-1.687q.397-.446 2.431-.05 2.034.398 2.704.05.645-.322.695-.893.074-.595-.695-.893-.818-.248-3.944-.545-3.1-.323-5.407-.323zm-2.06 2.654q.695-.57 2.035-.57 1.364 0 2.083.57.72.596.72 1.687 0 1.091-.72 1.687-.719.595-2.083.595-1.34 0-2.034-.595-.72-.596-.72-1.687 0-1.091.72-1.687zm3.325 5.036q.72-.57 2.108-.57 1.414 0 2.158.57.744.595.744 1.711 0 1.092-.744 1.662-.744.595-2.158.595-1.389 0-2.108-.595-.744-.57-.744-1.662 0-1.116.744-1.711zm-6.797 0q.744-.57 2.133-.57 1.39 0 2.134.57.744.595.744 1.711 0 1.092-.744 1.662-.744.595-2.134.595-1.389 0-2.133-.595-.744-.57-.744-1.662 0-1.116.744-1.711zm3.473 5.134q.694-.57 2.034-.57 1.364 0 2.083.57.72.596.72 1.712 0 1.091-.72 1.662-.719.595-2.083.595-1.34 0-2.034-.595-.72-.57-.72-1.662 0-1.116.72-1.712zM86.45 134.748v1.687h28.798v-1.687z%22 aria-label=%22t%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-75.437 -92.01)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M105.915 151.3q-.397-.249-1.116-1.042-.124-.124-.248-.224-.124-.124-.248-.272-.199-.125-.397-.125-1.29 0-.968.968.15.223.125.198.173.174 1.19 1.117.471.446.893.644.223.15.447.15.744 0 .744-.745 0-.298-.422-.67zM107.8 138.674l-.446-1.712q-1.96-.545-4.688-.545-2.506 0-4.49.496l-.496 1.711q2.158-.57 4.986-.57 3.026 0 5.134.62zM105.097 141.378l-2.407.992-2.38-.992 2.38-.993z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-77.24 -107.445)%22/%3E%3Cpath d=%22M107.9 140.088q-2.109-.57-5.16-.57-2.852 0-5.035.52l-.348.967 2.109.472-2.183 1.389-.471-.1-.596 1.787q.521-.546 2.357-.918 1.835-.372 4.241-.372 2.357 0 4.168.372 1.835.372 2.38.893l-.62-1.786-.62.124-2.182-1.39 2.232-.47zM107.08 127.115v-2.778h-2.976v-3.87h-2.753v3.87h-3.026v2.778h3.026v5.531h2.753v-5.531zM99.367 151.3q-.273.272-.273.62 0 .744.744.744.223 0 .397-.124.421-.224.818-.62.893-.844 1.24-1.141.05-.05.05-.174 0-.967-.967-.967-.174 0-.323.148-.223.224-.545.472-.298.223-.546.52-.223.273-.595.521zM111.992 128.678q.347-1.34-.769-4.986t-3.472-6.102q-.298-.223-.62-.199-.422.025-.794.348-.372.322-.1.769 2.903 1.91 4.341 5.308 1.439 3.373 1.414 4.862z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-77.24 -107.445)%22/%3E%3Cpath d=%22M102.666 152.217q-1.836 2.654-4.961 2.654-.323 0-.645-.025-.298-.05-.596-.074-.719-.025-2.108-.248-1.389-.248-3.1-1.116-1.514-1.315-3.845-1.315-1.786 0-3.1.844-.373.173-.919.719-.992 1.066-1.612 1.166-.496-.248-.52-.844-.125-1.165 1.71-3.001-.322.05-1.215.298-.744.223-.992.223-.818.124-.868.025-.273-.273.198-1.117.397-.719 1.538-1.265.15-.074.943-.421 2.307-1.216 4.837-1.216 3.696 0 6.672 2.506 1.19.396 2.406.396 3.721 0 3.845-3.075-2.406-.224-4.018-.819-1.588-.595-1.588-1.389l1.985-6.598q-1.737-2.728-2.878-5.556-1.14-2.828-1.14-5.358 0-7.59 8.234-11.658 0-.323.075-.968-.844-.694-.844-1.76 0-2.283 2.307-2.283 2.282 0 2.282 2.282 0 .992-.72 1.662 0 .77.2 1.042.421.595 1.116.62.719-.025 1.19-.645.1-.149.199-.918-.645-.67-.645-1.662 0-2.331 2.331-2.331t2.332 2.331q0 1.315-1.141 2.034-.1.497-.05.794 4.192 4.961 3.647 11.46-.174 1.86-.57 3.671-.398 1.786-1.39 3.373-.372.844-1.166 1.91-.769 1.042-1.34 1.96l1.96 6.598q-.024.794-1.637 1.39-1.612.594-4.068.818.124 3.075 3.87 3.075 1.215 0 2.406-.396 2.952-2.506 6.672-2.506 2.53 0 4.812 1.216.298.149.521.248.224.099.447.173 1.116.57 1.538 1.265.074.224.223.571.149.347-.025.546-.074.099-.868-.025-.248 0-.992-.223-.918-.248-1.24-.298 1.835 1.86 1.736 3.001-.05.57-.546.844-.62-.1-1.612-1.166-.496-.496-.893-.72-1.39-.843-3.1-.843-2.382 0-3.87 1.315-1.712.868-3.1 1.116-1.39.223-2.084.248-.298.025-.62.074-.323.025-.62.025-3.2 0-4.986-2.654z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-77.24 -107.445)%22/%3E%3C/g%3E%3Cpath d=%22M105.915 151.3q-.397-.249-1.116-1.042-.124-.124-.248-.224-.124-.124-.248-.272-.199-.125-.397-.125-1.29 0-.968.968.15.223.125.198.173.174 1.19 1.117.471.446.893.644.223.15.447.15.744 0 .744-.745 0-.298-.422-.67zm1.885-12.626-.446-1.712q-1.96-.545-4.688-.545-2.506 0-4.49.496l-.496 1.711q2.158-.57 4.986-.57 3.026 0 5.134.62zm-2.704 2.704-2.406.992-2.38-.992 2.38-.993zm2.803-1.29q-2.108-.57-5.159-.57-2.852 0-5.035.52l-.348.967 2.109.472-2.183 1.389-.471-.1-.596 1.787q.521-.546 2.357-.918 1.835-.372 4.241-.372 2.357 0 4.168.372 1.835.372 2.38.893l-.62-1.786-.62.124-2.182-1.39 2.232-.47zm-.818-12.973v-2.778h-2.977v-3.87h-2.753v3.87h-3.026v2.778h3.026v5.531h2.753v-5.531zm-7.714 24.184q-.273.273-.273.62 0 .745.744.745.223 0 .397-.124.421-.224.818-.62.893-.844 1.24-1.141.05-.05.05-.174 0-.967-.967-.967-.174 0-.323.148-.223.224-.545.472-.298.223-.546.52-.223.273-.595.521zm12.625-22.621q.347-1.34-.769-4.986t-3.472-6.102q-.298-.223-.62-.199-.422.025-.794.348-.372.322-.1.769 2.903 1.91 4.341 5.308 1.439 3.373 1.414 4.862zm-9.326 23.54q-1.836 2.653-4.961 2.653-.323 0-.645-.025-.298-.05-.596-.074-.719-.025-2.108-.248-1.389-.248-3.1-1.116-1.514-1.315-3.845-1.315-1.786 0-3.1.844-.373.173-.919.719-.992 1.066-1.612 1.166-.496-.248-.52-.844-.125-1.165 1.71-3.001-.322.05-1.215.298-.744.223-.992.223-.818.124-.868.025-.273-.273.198-1.117.397-.719 1.538-1.265.15-.074.943-.421 2.307-1.216 4.837-1.216 3.696 0 6.672 2.506 1.19.396 2.406.396 3.721 0 3.845-3.075-2.406-.224-4.018-.819-1.588-.595-1.588-1.389l1.985-6.598q-1.737-2.728-2.878-5.556-1.14-2.828-1.14-5.358 0-7.59 8.234-11.658 0-.323.075-.968-.844-.694-.844-1.76 0-2.283 2.307-2.283 2.282 0 2.282 2.282 0 .992-.72 1.662 0 .77.2 1.042.421.595 1.116.62.719-.025 1.19-.645.1-.149.199-.918-.645-.67-.645-1.662 0-2.331 2.331-2.331t2.332 2.331q0 1.315-1.141 2.034-.1.497-.05.794 4.192 4.961 3.647 11.46-.174 1.86-.57 3.671-.398 1.786-1.39 3.373-.372.844-1.166 1.91-.769 1.042-1.34 1.96l1.96 6.598q-.024.794-1.637 1.39-1.612.594-4.068.818.124 3.075 3.87 3.075 1.215 0 2.406-.396 2.952-2.506 6.672-2.506 2.53 0 4.812 1.216.298.149.521.248.224.099.447.173 1.116.57 1.538 1.265.074.224.223.571.149.347-.025.546-.074.099-.868-.025-.248 0-.992-.223-.918-.248-1.24-.298 1.835 1.86 1.736 3.001-.05.57-.546.844-.62-.1-1.612-1.166-.496-.496-.893-.72-1.39-.843-3.1-.843-2.382 0-3.87 1.315-1.712.868-3.1 1.116-1.39.223-2.084.248-.298.025-.62.074-.323.025-.62.025-3.2 0-4.986-2.654z%22 aria-label=%22v%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-77.24 -107.445)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M120.548 117.973q.62-.124 1.39-.273.793-.174 1.686-.472.794-.248.521-.893-.174-.272-.496-.272-1.761.396-3.324.47.595-.222 1.24-.446.645-.248 1.265-.545 1.935-.918 2.555-4.019.124-.719-.471-.818-.521-.05-.819.421-.595 2.208-1.885 2.977-.421.248-.868.446-.446.199-.893.422.496-.52.918-1.265.769-1.29 1.042-4.564-.174-.868-.869-.645-.223.124-.297.223-.447 3.523-1.216 4.639-.272.273-.372.471-.223.174-.421.347l-.348.298q-.421.546-.421 1.24 0 .844.471 1.538.496.695 1.612.72z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-91.874 -87.934)%22/%3E%3Cpath d=%22M118.787 101.254q6.871 3.374 10.145 8.285 2.01 3.05 2.68 7.243.669 4.192.669 9.4-.124 2.01 1.116 3.523 1.265 1.513 2.828 1.19.471-15.08-5.358-22.993-1.786-2.381-4.986-4.614-3.2-2.232-7.143-3.993 0 .52.024 1.066.025.521.025.893zM104.202 122.016q.273-.447.62-.868.372-.447.67-.993.546-1.116-.546-1.314-.198-.05-.446.05-.72.967-1.563 1.959-.124.1-.57.496-.224.744-.025 1.141.322.744 1.215.1.447-.348.645-.571zM112.933 115.64q.075-.297.174-.594.124-.298.198-.596.224-.967-.545-.967-.273 0-.67.446l-.347.794q-.174.372-.273.695-.075.248-.223.694-.05.372.297.546.521.298 1.067-.471.173-.174.322-.546zM101.35 117.625q.247-.347.57-.694.322-.372.57-.819.497-.918-.47-1.066-.15-.025-.423.024-.595.77-1.389 1.613-.297.223-.496.397-.198.62-.024.917.297.62 1.09.1.398-.298.571-.472zM108.667 106.612q.173 1.067.57 1.215.397.15 1.117.1.967-.075 1.488-.397 1.042-.67 1.835-2.902-.793.248-1.488.248t-1.662.074q-1.364.124-1.86 1.662z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-91.874 -87.934)%22/%3E%3Cpath d=%22M108.344 120.999q-.347.372-.57.545-.199.15-.347.298-.124.124-1.613 1.637-.57.62-1.364.794-.52.149-1.463-.124-3.101-.819-4.887-3.274-.695-.918-.992-2.208-.273-1.315.273-3.324.545-2.034 3.944-4.638 3.696-2.828 4.34-4.49.546-.967 1.24-2.133.72-1.166 1.687-2.257.596-.422 1.117-.968.545-.57 1.066-1.166v-3.05q1.364.272 2.01.793.297.323.644.596.372.272.67.595.62-1.116.794-1.86.025-.174.173-.695.15-.52.298-1.712.372-.099.645.199 1.141 1.29 2.158 2.877 4.54 1.811 8.285 4.291 3.77 2.48 5.78 5.16 5.68 7.714 5.68 22.72 0 3.151-.323 5.756h-33.858q-.323-3.225 3.423-6.846 1.686-1.638 3.497-3.175 1.836-1.538 3.572-3.126 3.225-2.976 3.572-4.762-.124-.298-.471-.397-.869.52-1.737.67-.868.148-1.711.198l-1.092.05q-.52 0-1.24-.249-.967 1.092-1.662 1.886-.67.769-1.538 1.389z%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-91.874 -87.934)%22/%3E%3C/g%3E%3Cpath d=%22M120.548 117.973q.62-.124 1.39-.273.793-.174 1.686-.472.794-.248.521-.893-.174-.272-.496-.272-1.761.396-3.324.47.595-.222 1.24-.446.645-.248 1.265-.545 1.935-.918 2.555-4.019.124-.719-.471-.818-.521-.05-.819.421-.595 2.208-1.885 2.977-.421.248-.868.446-.446.199-.893.422.496-.52.918-1.265.769-1.29 1.042-4.564-.174-.868-.869-.645-.223.124-.297.223-.447 3.523-1.216 4.639-.272.273-.372.471-.223.174-.421.347l-.348.298q-.421.546-.421 1.24 0 .844.471 1.538.496.695 1.612.72zm-1.76-16.719q6.87 3.374 10.144 8.285 2.01 3.05 2.68 7.243.669 4.192.669 9.4-.124 2.01 1.116 3.523 1.265 1.513 2.828 1.19.471-15.08-5.358-22.993-1.786-2.381-4.986-4.614-3.2-2.232-7.143-3.993 0 .52.024 1.066.025.521.025.893zm-14.586 20.762q.273-.447.62-.868.372-.447.67-.993.546-1.116-.546-1.314-.198-.05-.446.05-.72.967-1.563 1.959-.124.1-.57.496-.224.744-.025 1.141.322.744 1.215.1.447-.348.645-.571zm8.731-6.375q.075-.298.174-.595.124-.298.198-.596.224-.967-.545-.967-.273 0-.67.446l-.347.794q-.174.372-.273.695-.075.248-.223.694-.05.372.297.546.521.298 1.067-.471.173-.174.322-.546zm-11.584 1.984q.248-.347.571-.694.322-.372.57-.819.497-.918-.47-1.066-.15-.025-.423.024-.595.77-1.389 1.613-.297.223-.496.397-.198.62-.024.917.297.62 1.09.1.398-.298.571-.472zm7.318-11.013q.173 1.067.57 1.215.397.15 1.117.1.967-.075 1.488-.397 1.042-.67 1.835-2.902-.793.248-1.488.248t-1.662.074q-1.364.124-1.86 1.662zm-.323 14.387q-.347.372-.57.545-.199.15-.347.298-.124.124-1.613 1.637-.57.62-1.364.794-.52.149-1.463-.124-3.101-.819-4.887-3.274-.695-.918-.992-2.208-.273-1.315.273-3.324.545-2.034 3.944-4.638 3.696-2.828 4.34-4.49.546-.967 1.24-2.133.72-1.166 1.687-2.257.596-.422 1.117-.968.545-.57 1.066-1.166v-3.05q1.364.272 2.01.793.297.323.644.596.372.272.67.595.62-1.116.794-1.86.025-.174.173-.695.15-.52.298-1.712.372-.099.645.199 1.141 1.29 2.158 2.877 4.54 1.811 8.285 4.291 3.77 2.48 5.78 5.16 5.68 7.714 5.68 22.72 0 3.151-.323 5.756h-33.858q-.323-3.225 3.423-6.846 1.686-1.638 3.497-3.175 1.836-1.538 3.572-3.126 3.225-2.976 3.572-4.762-.124-.298-.471-.397-.868.52-1.737.67-.868.148-1.711.198l-1.092.05q-.52 0-1.24-.249-.967 1.092-1.662 1.886-.67.769-1.538 1.389z%22 aria-label=%22m%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-91.874 -87.934)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='leipzig'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22192%22 height=%22191.906%22 viewBox=%220 0 50.8 50.775%22%3E%3Cpath d=%22M67.36 136.047H53.843q.472-5.333 4.54-9.004.67-.62.744-.67 2.108-1.737 3.596-4.143-3.82-2.505-3.82-7.069 0-2.828 1.712-5.085.57-.72 1.215-1.637.67-.918 1.067-1.786-.595.149-1.81.471-1.191.323-1.762.546 1.712-1.587 3.25-3.77 1.562-2.183 1.835-4.639-1.265-1.29-1.265-3.026t1.216-2.976q1.24-1.24 3-1.24 1.712 0 2.953 1.24 1.24 1.24 1.24 2.976 0 1.761-1.265 3.026.273 2.456 1.835 4.639 1.588 2.183 3.3 3.77-.571-.223-1.811-.546-1.216-.322-1.811-.47.397.867 1.042 1.785.67.918 1.265 1.637 1.711 2.257 1.711 5.085 0 4.564-3.82 7.07 1.414 2.38 3.572 4.142.372.297.744.67 4.093 3.67 4.54 9.004z%22 aria-label=%22o%22 style=%22font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal%22 transform=%22translate(-41.961 -88.67)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* maestro */
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-505.97%22 x2=%22-484.22%22 y1=%22-408.5%22 y2=%22-408.5%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22 x1=%229.241%22 x2=%2240.761%22 y1=%2227.266%22 y2=%2227.266%22 gradientTransform=%22matrix(.98495 0 0 .98605 .376 .641)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23ece9df%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f4e0c8%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-520.15%22 x2=%22-490.84%22 y1=%22-394.44%22 y2=%22-394.44%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-526.74%22 x2=%22-504.98%22 y1=%22-408.5%22 y2=%22-408.5%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22-510.08%22 x2=%22-500.85%22 y1=%22-412.72%22 y2=%22-412.72%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3Cfilter id=%22e%22 width=%221.169%22 height=%221.067%22 x=%22-.085%22 y=%22-.033%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.392%22/%3E%3C/filter%3E%3Cfilter id=%22g%22 width=%221.205%22 height=%221.063%22 x=%22-.102%22 y=%22-.031%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.172%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.117%22 height=%221.081%22 x=%22-.058%22 y=%22-.041%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.258%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 d=%22M29.132 18.792c6.387-5.74 17.544-2.606 16.851 6.813-.679 6.17-7.013 8.347-7.013 8.347s-3.827-2.228-13.94-2.228l-.014-3.993z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 d=%22m37.942 38.831 1.304 5.276S35.468 46.335 25 46.335s-14.247-2.228-14.247-2.228l1.304-5.276-.996-4.878s3.645-2.229 13.94-2.229c10.296 0 13.94 2.228 13.94 2.228z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 d=%22M10.754 44.106s3.779-2.228 14.248-2.228 14.248 2.228 14.248 2.228m-27.192-5.275s3.394-2.228 12.978-2.228 12.977 2.228 12.977 2.228%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 d=%22M20.9 18.792c-6.387-5.74-17.544-2.606-16.851 6.813.679 6.17 7.013 8.347 7.013 8.347s3.827-2.228 13.94-2.228l.014-3.993z%22/%3E%3Cpath fill=%22%2359917a%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M21.65 9.911h6.733M25.016 6.33v7.98%22/%3E%3Cpath d=%22M-494.08-417.53a11.67 11.67 0 0 0-1.732.146c9.088-.224 13.443 11.958 1.394 16.485l-1.272 4.958 1.526 5.482 2.961 1.105-1.489-5.469.987-5.207s6.273-1.781 6.934-7.82c.506-4.624-2.547-9.727-9.309-9.68z%22 filter=%22url(%23e)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22/%3E%3Cpath fill=%22url(%23f)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 d=%22m20.9 18.792 4.13 8.653 4.13-8.653s.702-4.768-4.13-4.768c-4.833 0-4.13 4.768-4.13 4.768z%22/%3E%3Cpath d=%22M-505.48-419.2c4.757.97.867 10.52.016 13.186.024.025 3.078-5.404 4.02-8.913.09-4.504-3.867-4.392-4.036-4.273z%22 filter=%22url(%23g)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22/%3E%3Cpath d=%22M-505.49-402.26v-.075l.015-3.396s-2.681-6.895-4.052-8.914c-1.333-1.963-3.778-2.93-6.565-2.784 3.972 1.765 8.937 10.029 10.602 15.169z%22 filter=%22url(%23h)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M6.314 29.527c-1.196-1.647-2.01-3.85-1.445-6.636 1.436-7.074 9.457-6.296 9.457-6.296C2.73 20.063 6.454 29.557 6.314 29.527z%22 opacity=%22.8%22/%3E%3Cpath fill=%22%23fff%22 d=%22m23.57 23.025-2.114-4.402s-.69-4.12 3.54-4.056c-4.212 1.33-1.426 8.458-1.426 8.458zm3.456 1.934 2.752-5.929s2.447-2.223 6.116-2.571c-3.947 1.032-6.33 4.875-8.868 8.5z%22/%3E%3Cpath d=%22M25.318 41.924c-10.311 0-14.564 2.183-14.564 2.183s4.253 2.182 14.564 2.182h.021c-15.44-1.99 7.315-3.803 8.284-3.81-2.173-.317-4.917-.554-8.305-.554z%22 opacity=%22.15%22/%3E%3Cpath d=%22M25 46.296c-9.241 0-13.744-2.209-13.744-2.209S15.759 41.878 25 41.878s13.744 2.21 13.744 2.21S34.241 46.295 25 46.295z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M12.528 39.169c.85-.45 1.729-.643 2.593-.962-.587.841-.634 2.724-.357 4.062 0 0-.892.125-3.232.905z%22 opacity=%22.7%22/%3E%3Cpath fill=%22%23fff%22 d=%22M12.464 38.021s.3-.288 2.416-.877c-1.59-1.601-1.4-3.446-1.575-3.516-.566.168-1.111.39-1.65.628z%22 opacity=%22.8%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%229.241%22 x2=%2240.761%22 y1=%2227.266%22 y2=%2227.266%22 gradientTransform=%22matrix(.98495 0 0 .98605 .376 .641)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23ece9df%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f4e0c8%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-25.017%22 x2=%2214.084%22 y1=%22-249.82%22 y2=%22-249.82%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.455 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-27.911%22 x2=%22-21.13%22 y1=%22-264.3%22 y2=%22-264.3%22 gradientTransform=%22matrix(.99988 0 0 .97754 29.927 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22-18.928%22 x2=%22-12.147%22 y1=%22-267.53%22 y2=%22-267.53%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.455 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22-8.857%22 x2=%22-2.076%22 y1=%22-268.55%22 y2=%22-268.55%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.455 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%221.214%22 x2=%227.995%22 y1=%22-267.53%22 y2=%22-267.53%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.455 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22h%22 x1=%2210.196%22 x2=%2216.978%22 y1=%22-264.3%22 y2=%22-264.3%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.983 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3Cfilter id=%22d%22 width=%221.19%22 height=%221.064%22 x=%22-.095%22 y=%22-.032%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.388%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.001%22 d=%22m37.159 38.874 3.17-4.809 4.239-19.826-9.653 14.798.144-17.439-6.903 16.413-3.167-17.929-3.167 17.927-6.902-16.413.144 17.44-9.654-14.8 4.24 19.827 3.36 4.809-1.41 5.385s4.397 2.039 13.4 2.039c9.005 0 13.39-2.038 13.39-2.038z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-width=%221.001%22 d=%22M9.747 34.064c1.347.18 1.645-.355 2.056-1.906 0 0 2.488 1.343 3.762 1.062 1.365-.301 2.474-2.172 2.474-2.172s2.113 1.559 3.38 1.454c1.475-.122 3.504-1.98 3.504-1.98s2.029 1.858 3.503 1.98c1.268.105 3.38-1.454 3.38-1.454s1.11 1.87 2.475 2.172c1.274.281 3.762-1.062 3.762-1.062.411 1.551.84 2.088 2.187 1.907%22/%3E%3Cellipse cx=%225.41%22 cy=%2214.238%22 fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.001%22 rx=%222.894%22 ry=%222.799%22/%3E%3Cpath d=%22M13.559-262.78c-1.191 4.726-4.701 13.531-6.049 18.221l-3.738 4.819 1.08 4.99 3.08 1.16-1.227-5.51 2.961-4.677z%22 filter=%22url(%23d)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(.99988 0 0 .97754 30.455 272.6)%22/%3E%3Cpath d=%22M24.496 41.69c-4.835 0-9.67.857-12.894 2.57 3.226 1.714 8.068 1.746 12.908 1.745-11.917-1.877 1.961-3.693 6.74-3.726-2.135-.391-4.443-.589-6.753-.589z%22 opacity=%22.15%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-width=%221.001%22 d=%22M11.601 44.26s4.388-2.136 13.392-2.136 13.392 2.136 13.392 2.136m-25.528-5.386s3.666-2.04 12.151-2.04 12.151 2.04 12.151 2.04%22/%3E%3Cellipse cx=%2214.92%22 cy=%2211.08%22 fill=%22url(%23e)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.002%22 rx=%222.894%22 ry=%222.799%22/%3E%3Cellipse cx=%2224.989%22 cy=%2210.082%22 fill=%22url(%23f)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.002%22 rx=%222.894%22 ry=%222.799%22/%3E%3Cellipse cx=%2235.059%22 cy=%2211.082%22 fill=%22url(%23g)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.002%22 rx=%222.894%22 ry=%222.799%22/%3E%3Cellipse cx=%2244.568%22 cy=%2214.239%22 fill=%22url(%23h)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.002%22 rx=%222.894%22 ry=%222.799%22/%3E%3Cpath fill=%22%23fff%22 d=%22m6.657 17.385 3.462 16.129s.794.057 1.273-2.295z%22 opacity=%22.8%22/%3E%3Cpath fill=%22%23fff%22 d=%22m15.522 14.499 2.34 15.169c-.625 1.087-1.471 2-2.163 2.17zm6.464 16.528 3.027-17.612-.139 15.757c-1.066.913-2.15 1.858-2.888 1.855zm12.473-16.422-6.78 16.182c.016-.092.467 1.394 3.83-1.244z%22 opacity=%22.9%22/%3E%3Cpath fill=%22%23fff%22 d=%22m33.921 31.807 9.219-14.326-5.598 13.346s-3.153 1.734-3.621.98z%22 opacity=%22.7%22/%3E%3Cpath fill=%22%23fff%22 d=%22M4.184 16.16s-3.017-2.692.934-4.17c.088.013-1.833 2.155-.934 4.17zm9.647-3.129s-3.018-2.692.934-4.17c.09 0-1.796 2.054-.934 4.17zm10.018-1.025s-3.018-2.692.934-4.17c.059 0-1.927 2.09-.934 4.17zm10.086.986s-3.018-2.692.934-4.17c.044-.004-1.919 2.093-.934 4.17zm9.496 3.158s-3.018-2.692.934-4.17c.046.017-1.882 2.19-.934 4.17z%22/%3E%3Cpath d=%22M24.993 46.396c-9.004 0-13.392-2.136-13.392-2.136s4.387-2.137 13.392-2.137c9.004 0 13.392 2.137 13.392 2.137s-4.388 2.136-13.392 2.136zM6.771 12.412c.08.026 2.315 1.75-.147 3.864-.074-.124 1.162-2.001.147-3.864zm9.565-3.166c.08.026 2.314 1.75-.148 3.863-.074-.124 1.162-2 .148-3.863zm10.089-.97c.08.026 2.314 1.75-.148 3.864-.074-.124 1.162-2.001.148-3.864zm10.09.992c.08.027 2.314 1.751-.148 3.864-.074-.124 1.162-2 .148-3.864zm9.544 3.297c.08.026 2.314 1.75-.148 3.864-.074-.124 1.162-2.001.148-3.864z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.514 39.223c.848-.45 1.7-.66 2.571-.878-.587.84-.616 2.64-.34 3.978 0 0-.89.125-3.224.905z%22 opacity=%22.7%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.146 38.084c.11-.016.33-.29 2.591-.951-2.014-1.585-3.55-4.075-3.55-4.075-.329.914-.773 1.514-1.415 1.58z%22 opacity=%22.8%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%229.005%22 x2=%2240.995%22 y1=%2226.762%22 y2=%2226.762%22 gradientTransform=%22translate(0 1.029)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23ece9df%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f4e0c8%22/%3E%3C/linearGradient%3E%3ClinearGradient id=%22c%22 x1=%22-36.133%22 x2=%22-9.938%22 y1=%22-313.97%22 y2=%22-313.97%22 gradientTransform=%22matrix(-1 0 0 1 1.964 333.28)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22/%3E%3Cstop offset=%221%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cfilter id=%22b%22 width=%221.223%22 height=%221.061%22 x=%22-.112%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.463%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M12.973 41.57h24.121m-24.127-4.371h24.066m-20.061-4.052H33.03M17.062 21.53h15.879m-21.038-4.432h26.196m-26.196-7.81v7.81l5.158 4.433-.09 11.618-4.003 4.051v4.371H9.505v4.726h30.99V41.57h-3.462V37.2l-4.004-4.052-.09-11.618 5.159-4.433v-7.81h-5.593v3.347h-4.613V9.286h-5.783v3.348h-4.613V9.286z%22/%3E%3Cpath d=%22M46.199-268.38v7.725l-5.02 4.386.089 11.489 4.413 4.006v4.323h2.829v4.673h2.632v-4.673h-3.358v-4.322L43.9-244.78l-.088-11.492 5.002-4.383v-7.725z%22 filter=%22url(%23b)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.031 0 0 1.0112 -12.232 280.67)%22/%3E%3Cpath fill=%22%23fff%22 d=%22m12.466 16.525-.041-6.675 3.328-.095-1.997.711v5.356l4.704.667zm5.13 5.506h7.58l-6.467 1v8.598l-1.161.922z%22 opacity=%22.8%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m14.358 36.582 2.86-2.83h1.479l-2.4 2.83zm-.84 1.212.005 3.214h1.524l-.003-3.225zm-3.451 4.31h1.015v2.66l3.872.987h-4.887z%22 opacity=%22.7%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m22.651 9.794-.017 2.433c.658-1.23 1.363-2.176 3.026-2.424z%22 opacity=%22.8%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m33.051 9.807-.017 2.433c.388-1.52 1.111-2.39 3.026-2.425z%22 opacity=%22.7%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22url(%23c)%22 d=%22M38.098 17.097H11.903l5.16 4.433H32.94z%22 opacity=%22.15%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%229.241%22 x2=%2240.761%22 y1=%2227.266%22 y2=%2227.266%22 gradientTransform=%22matrix(.98495 0 0 .98605 .376 .641)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23ece9df%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f4e0c8%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%2214.558%22 x2=%2235.921%22 y1=%2225.93%22 y2=%2225.93%22 gradientTransform=%22matrix(1.0739 0 0 1.0269 -2.26 -.38)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%2221.347%22 x2=%2229.141%22 y1=%2210.312%22 y2=%2210.312%22 gradientTransform=%22matrix(.83475 0 0 .90883 3.752 1.094)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%225.612%22 x2=%2225.919%22 y1=%2242.295%22 y2=%2242.295%22 gradientTransform=%22matrix(1.0856 0 0 .94062 -2.716 2.942)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%2224.848%22 x2=%2245.155%22 y1=%2242.295%22 y2=%2242.295%22 gradientTransform=%22matrix(1.0856 0 0 .94062 -2.716 2.942)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3Cfilter id=%22g%22 width=%221%22 height=%221%22 x=%220%22 y=%220%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur/%3E%3C/filter%3E%3Cfilter id=%22d%22 width=%221.162%22 height=%221.068%22 x=%22-.081%22 y=%22-.034%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.407%22/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22m31.016 32.267 4.726-5.943-10.19-12.975h-.7v-.01h-.712L13.95 26.312l4.726 5.943-1.543 4.867c-.03.386 3.095 2.034 7.713 2.034s7.745-1.648 7.714-2.034z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M24.826 7.698c-1.55 0-2.807 1.239-2.807 2.767s1.257 2.767 2.807 2.767 2.805-1.239 2.805-2.767c0-1.528-1.255-2.767-2.805-2.767z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M22.096 24.66h5.5m-2.75-2.75v5.5%22/%3E%3Cpath d=%22M-549.75-422.16c3.412 1.813.501 4.931-1.526 5.206.462.197.978.31 1.526.31 5.528-1.76 1.318-5.644 0-5.516zm-.688 5.518c3.092 4.115 5.848 8.46 8.724 12.71l-4.806 5.199 1.09 4.422 3 .863-1.354-4.67 4.573-5.815-9.86-12.698h-.678v-.01z%22 filter=%22url(%23d)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0334 0 0 1.0218 592.95 439.08)%22/%3E%3Cpath d=%22M26.073 35.618c-3.087.012-6.397.504-8.369 1.768 2.182 1.501 5.798 1.826 8.885 1.77-7.14-1.445 2.03-2.966 4.844-3.001-1.522-.368-3.71-.544-5.36-.537z%22 opacity=%22.15%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 d=%22M17.134 37.123s1.925-1.566 7.714-1.566 7.713 1.566 7.713 1.566m-13.885-4.867s1.863-1.021 6.175-1.022c4.312 0 6.175 1.022 6.175 1.022%22/%3E%3Cpath fill=%22%23fff%22 d=%22M18.872 31.579s.003.008 0 0l-4.17-5.259 9.735-12.43-8.076 12.384z%22 opacity=%22.8%22/%3E%3Cpath d=%22M25 39.156c-5.617 0-7.296-1.77-7.296-1.77s1.679-1.77 7.296-1.77 7.296 1.77 7.296 1.77-1.679 1.77-7.296 1.77z%22 opacity=%22.15%22/%3E%3Cpath fill=%22url(%23e)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M22.488 39.156c-5.193 6.258-11.79-2.915-18.533 3.487l1.968 3.653c4.398-5.672 18.915 5.213 18.915-7.14z%22/%3E%3Cpath fill=%22url(%23f)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M27.188 39.156c5.193 6.258 11.79-2.915 18.532 3.487l-1.968 3.653c-4.398-5.672-18.915 5.213-18.915-7.14z%22/%3E%3Cpath fill=%22%23fff%22 d=%22m4.672 42.735 1.404 2.59-.346-2.333c3.12-2.388 5.957-1.62 8.04-1.599 0 0-5.851-1.955-9.098 1.342zm40.408.034-.49.889c-1.905-2.325-3.739-2.756-5.319-2.76 0 0 3.018-.718 5.809 1.871zM23.672 12.366c-.25.066-2.603-2.42.418-3.975-.09-.01-1.758 2.142-.418 3.975z%22/%3E%3Cpath fill=%22%23fff%22 d=%22m603.76-67.566 1.05-3.309s.37-.256 1.454-.433c0 0-.745 2.224.508 3.042-2.154.336-2.536.554-3.012.7z%22 filter=%22url(%23g)%22 opacity=%22.7%22 transform=%22matrix(1.0007 0 0 .98931 -586.04 102.79)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 width=%221.128%22 height=%221.077%22 x=%22-.064%22 y=%22-.038%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.57%22/%3E%3C/filter%3E%3Cfilter id=%22e%22 width=%221.469%22 height=%221.834%22 x=%22-.234%22 y=%22-.417%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.299%22/%3E%3C/filter%3E%3Cfilter id=%22f%22 width=%221.238%22 height=%221.198%22 x=%22-.119%22 y=%22-.099%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.467%22/%3E%3C/filter%3E%3Cfilter id=%22g%22 width=%221.089%22 height=%221.104%22 x=%22-.045%22 y=%22-.052%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.073%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.641%22 height=%221.823%22 x=%22-.321%22 y=%22-.411%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%221.013%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.479%22 height=%221.139%22 x=%22-.239%22 y=%22-.07%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.279%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%229.241%22 x2=%2240.761%22 y1=%2227.266%22 y2=%2227.266%22 gradientTransform=%22matrix(.98495 0 0 .98605 .376 .641)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23ece9df%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f4e0c8%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-736.5%22 x2=%22-696.5%22 y1=%22-367.96%22 y2=%22-367.96%22 gradientTransform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-116.32%22 x2=%22-77.199%22 y1=%22299.9%22 y2=%22299.9%22 gradientTransform=%22matrix(1.1045 0 0 1.0827 130.81 -314.94)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-dashoffset=%221.852%22 stroke-linecap=%22round%22 d=%22M10.393 35.883c2.887 2.407 4.157-.702 5.178-3.053 1.398-3.953 7.128-1.826 8.733-6.795 2.83 11.085-9.865 8.393-9.264 20.26h28.386c1.913-22.102-5.002-37.42-25.957-35.287-2.083-2.176-4.992-3.558-4.992-3.558-1.13 2.085-1.012 4.716.667 5.722.439.4-3.527 2.078-2.996 7.892 0 0-3.192 5.317-5.055 8.811-1.356 2.732 1.074 6.265 4.536 6.59%22/%3E%3Cpath d=%22M16.859 17.328a.472.472 0 0 0-.053.006c-2.943.479-3.352 3.258-3.352 3.258a.55.55 0 0 0 1.079.218s.172-2.023 2.451-2.393a.549.549 0 0 0-.125-1.089z%22 color=%22%23000%22 style=%22font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:%23000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal%22/%3E%3Cpath d=%22M16.7 19.572a1.117 1.204 69.395 0 1-.943 1.366 1.117 1.204 69.395 0 1-1.401-.825 1.117 1.204 69.395 0 1 .943-1.366 1.117 1.204 69.395 0 1 1.401.825z%22 paint-order=%22markers fill stroke%22/%3E%3Cpath d=%22M8.419 29.95a.55.55 0 0 0-.384.16c-.438.436-.669.85-.78 1.172-.11.323-.093.617-.093.617a.55.55 0 0 0 .597.495c.304-.027.715-.248.687-.55 0 0-.014 0 .04-.162.056-.16.184-.42.514-.749.215-.214.028-.609-.188-.823a.552.552 0 0 0-.393-.16z%22 color=%22%23000%22 style=%22font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:%23000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal%22/%3E%3Cpath d=%22M-718.42-382.86c17.099.645 19.298 14.991 17.595 34.473h3.526c1.754-20.341-3.914-34.957-21.01-35.602z%22 filter=%22url(%23c)%22 opacity=%22.15%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M17.454 12.38s.652-4.143 3.9-4.848c0 0 2.08 1.085 1.664 5.969%22 paint-order=%22markers fill stroke%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M12.206 33.765c-.306.526-1.452 1.747-2.575 2.701%22/%3E%3Cpath fill=%22%23fff%22 d=%22m5.427 30.42 4.195-7.324 1.172-1.892s-.797-4.414 2.719-7.38c0 0 .554-.615.003-1.107-.553-.492-1.936-2.128-.753-4.336-.077-.022.274 4.806 4.353 4.864-3.919 1.25-6.11 4.99-5.15 8.582-.736 1.173-1.458 2.08-2.375 3.208-.82 1.01-1.796 2.196-3.078 3.907-.34.454-.7.944-1.085 1.478z%22 opacity=%22.8%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22M15.757 45.676c-.744-9.435 10.084-8.795 9.438-17.61 1.104 10.971-7.883 9.13-9.438 17.61z%22 opacity=%22.7%22/%3E%3Cpath fill=%22%23fff%22 d=%22M-733.97-364.25c-.015.573 1.587-1.887 3.06-.439-.597-1.43-2.217-1.902-3.06.439z%22 filter=%22url(%23e)%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M18.027 12.578s.58-3.7 3.249-4.46c-1.554 1.972-1.745 5.155-3.249 4.46z%22 opacity=%22.8%22/%3E%3Cpath d=%22M-716.03-369.64c.405-1.184.326-3.052-.03-3.612-2.96 8.671-8.246 5.492-9.102 11.347 1.64-3.708 7.813-2.42 9.132-7.735z%22 filter=%22url(%23f)%22 opacity=%22.15%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M-723.87-377.47c-3.217.615-3.405 3.277-3.405 3.277s-.499.21-.49-.328c-.231-.688 1.215-3.475 3.895-2.949z%22 filter=%22url(%23g)%22 opacity=%22.8%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M-723.63-356.13c-6.532-.827-7.581 5.84-7.581 5.84 1.11-2.066 4.294-4.784 7.581-5.84z%22 filter=%22url(%23h)%22 transform=%22matrix(.76507 0 0 .92137 575.69 349.88)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M24.304 26.035s.399-.909.744-3.487%22/%3E%3Cpath d=%22M23.987 32.169c.364-.026 5.37-6.215 1.061-9.62l-.51 4.556c.107 1.682.437 3.359-.551 5.064z%22 filter=%22url(%23i)%22 opacity=%22.15%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3ClinearGradient id=%22a%22 x1=%229.241%22 x2=%2240.761%22 y1=%2227.266%22 y2=%2227.266%22 gradientTransform=%22matrix(.98495 0 0 .98605 .376 .641)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23ece9df%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f4e0c8%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22779.03%22 x2=%22794.63%22 y1=%2254.449%22 y2=%2254.449%22 gradientTransform=%22matrix(.98131 0 0 .97235 -747.13 -34.817)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22777.73%22 x2=%22795.93%22 y1=%2263.423%22 y2=%2263.423%22 gradientTransform=%22matrix(.98131 0 0 .97235 -747.13 -34.817)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22772.83%22 x2=%22800.83%22 y1=%2274.581%22 y2=%2274.581%22 gradientTransform=%22matrix(.98131 0 0 .97235 -747.13 -34.817)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3Cfilter id=%22e%22 width=%221.099%22 height=%221.093%22 x=%22-.049%22 y=%22-.047%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.344%22/%3E%3C/filter%3E%3Cfilter id=%22f%22 width=%221.151%22 height=%221.07%22 x=%22-.075%22 y=%22-.035%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.269%22/%3E%3C/filter%3E%3C/defs%3E%3Cellipse cx=%2225%22 cy=%2218.126%22 fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 paint-order=%22markers fill stroke%22 rx=%227.161%22 ry=%226.834%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 d=%22M25 24.598c-5.228.044-7.985-.028-8.394 4.508h16.788c-.41-4.536-3.165-4.464-8.394-4.508z%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 d=%22M20.484 29.106c.496 6.787-9.303 7.996-8.706 17.19h26.444c.597-9.194-9.202-10.403-8.706-17.19H25z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M19.884 21.629c-.528.225-4.585-7.628 4.867-9.772.717-.119 1.252.64.008 1.04 0 0-7.74 3.346-4.875 8.732z%22 opacity=%22.8%22/%3E%3Cpath fill=%22%23fff%22 d=%22M12.504 45.701c-.324-1.24-.204-3.973 3.513-8.008-.37 2.437-3.065 5.393-.9 8.024z%22 opacity=%22.7%22/%3E%3Cpath fill=%22%23fff%22 d=%22M17.282 28.557s-.026-2.905 3.106-3.142c-1.079 1.212-1.462 1.906-.933 3.174z%22 opacity=%22.8%22/%3E%3Cpath d=%22M275.09-101.12c.228 6.037 18.734 9.314 16.553 17.682 1.286-7.878-9.282-10.089-8.875-17.682z%22 filter=%22url(%23e)%22 opacity=%22.1%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(.98092 0 0 .9722 -247.86 127.42)%22/%3E%3Cpath d=%22M278.37-118.34c4.975.663 6.596 10.501 1.92 13.454 0 0 3.409.512 3.967 2.688.17.66.468 2.181.468 2.181h2.202s-.196-1.54-.47-2.164c-.888-2.035-4.685-2.771-4.685-2.771 1.871-1.18 3.898-4.253 3.898-6.358.388-4.551-5.508-7.548-7.3-7.03z%22 filter=%22url(%23f)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(.98092 0 0 .9722 -248.05 126.34)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22e%22 width=%221.17%22 height=%221.07%22 x=%22-.09%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.39%22/%3E%3C/filter%3E%3Cfilter id=%22g%22 width=%221.21%22 height=%221.06%22 x=%22-.1%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.17%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.12%22 height=%221.08%22 x=%22-.06%22 y=%22-.04%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.26%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.25%22 height=%221.19%22 x=%22-.13%22 y=%22-.09%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.51%22/%3E%3C/filter%3E%3Cfilter id=%22j%22 width=%221.36%22 height=%221.15%22 x=%22-.18%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.27%22/%3E%3C/filter%3E%3Cfilter id=%22k%22 width=%221.21%22 height=%221.22%22 x=%22-.11%22 y=%22-.11%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.39%22/%3E%3C/filter%3E%3Cfilter id=%22l%22 width=%221.46%22 height=%221.33%22 x=%22-.23%22 y=%22-.17%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.34%22/%3E%3C/filter%3E%3Cfilter id=%22m%22 width=%221.45%22 height=%221.33%22 x=%22-.23%22 y=%22-.17%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.3%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%229.24%22 x2=%2240.76%22 y1=%2227.27%22 y2=%2227.27%22 gradientTransform=%22matrix(1.0155 0 0 1.0103 -.39 .48)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23737373%22/%3E%3Cstop offset=%221%22 stop-color=%22%23303030%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-505.97%22 x2=%22-484.22%22 y1=%22-408.5%22 y2=%22-408.5%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-520.15%22 x2=%22-490.84%22 y1=%22-394.44%22 y2=%22-394.44%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-526.74%22 x2=%22-504.98%22 y1=%22-408.5%22 y2=%22-408.5%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22-510.08%22 x2=%22-500.85%22 y1=%22-412.72%22 y2=%22-412.72%22 gradientTransform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 d=%22M29.13 18.8c6.39-5.75 17.55-2.61 16.85 6.8-.68 6.17-7.01 8.35-7.01 8.35s-3.83-2.23-13.94-2.23l-.01-3.99z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 d=%22m37.94 38.83 1.3 5.28S35.48 46.34 25 46.34 10.75 44.1 10.75 44.1l1.3-5.28-.99-4.88s3.65-2.23 13.94-2.23c10.3 0 13.94 2.23 13.94 2.23z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 d=%22M10.75 44.1s3.78-2.22 14.25-2.22 14.25 2.23 14.25 2.23m-27.2-5.28s3.4-2.23 12.99-2.23S38 38.83 38 38.83%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 d=%22M20.9 18.8c-6.39-5.75-17.54-2.61-16.85 6.8.68 6.17 7.01 8.35 7.01 8.35S14.9 31.72 25 31.72l.02-3.99z%22/%3E%3Cpath fill=%22%2359917a%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M21.65 9.91h6.73m-3.36-3.58v7.98%22/%3E%3Cpath d=%22M-494.08-417.53a11.67 11.67 0 0 0-1.73.15c9.09-.23 13.44 11.95 1.4 16.48l-1.28 4.96 1.53 5.48 2.96 1.1-1.5-5.46 1-5.21s6.27-1.78 6.93-7.82c.5-4.62-2.55-9.73-9.31-9.68z%22 filter=%22url(%23e)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22/%3E%3Cpath fill=%22url(%23f)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 d=%22m20.9 18.8 4.13 8.65 4.13-8.66s.7-4.77-4.13-4.77-4.13 4.77-4.13 4.77z%22/%3E%3Cpath d=%22M-505.48-419.2c4.76.97.87 10.52.02 13.19.02.02 3.07-5.4 4.02-8.92.09-4.5-3.87-4.39-4.04-4.27z%22 filter=%22url(%23g)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22/%3E%3Cpath d=%22M-505.49-402.26v-.07l.01-3.4s-2.68-6.9-4.05-8.91c-1.33-1.97-3.78-2.93-6.56-2.79 3.97 1.77 8.93 10.03 10.6 15.17z%22 filter=%22url(%23h)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0113 0 0 1.0008 536.22 433.79)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M6.31 29.53a8.15 8.15 0 0 1-1.44-6.64c1.43-7.07 9.46-6.3 9.46-6.3-11.6 3.47-7.88 12.97-8.02 12.94z%22 filter=%22url(%23i)%22 opacity=%22.3%22/%3E%3Cpath fill=%22%23fff%22 d=%22m23.57 23.02-2.11-4.4s-.7-4.12 3.54-4.05c-4.22 1.33-1.43 8.45-1.43 8.45z%22 filter=%22url(%23j)%22 opacity=%22.25%22/%3E%3Cpath fill=%22%23fff%22 d=%22m27.03 24.96 2.75-5.93s2.44-2.22 6.11-2.57c-3.94 1.03-6.33 4.87-8.86 8.5z%22 filter=%22url(%23k)%22 opacity=%22.2%22/%3E%3Cpath d=%22M25.32 41.92c-10.31 0-14.57 2.19-14.57 2.19s4.26 2.18 14.57 2.18h.02c-15.44-2 7.31-3.8 8.28-3.81a57.55 57.55 0 0 0-8.3-.55z%22 opacity=%22.15%22/%3E%3Cpath d=%22M25 46.3c-9.24 0-13.74-2.21-13.74-2.21s4.5-2.21 13.74-2.21 13.74 2.2 13.74 2.2S34.24 46.3 25 46.3z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M12.53 39.17c.85-.45 1.73-.64 2.6-.96-.6.84-.64 2.72-.37 4.06 0 0-.89.12-3.23.9z%22 filter=%22url(%23l)%22 opacity=%22.1%22/%3E%3Cpath fill=%22%23fff%22 d=%22M12.46 38.02s.3-.29 2.42-.88c-1.59-1.6-1.4-3.44-1.57-3.51-.57.17-1.12.39-1.65.63z%22 filter=%22url(%23m)%22 opacity=%22.15%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22d%22 width=%221.19%22 height=%221.06%22 x=%22-.1%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.39%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.21%22 height=%221.06%22 x=%22-.1%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.22%22/%3E%3C/filter%3E%3Cfilter id=%22j%22 width=%221.4%22 height=%221.05%22 x=%22-.2%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.2%22/%3E%3C/filter%3E%3Cfilter id=%22k%22 width=%221.33%22 height=%221.06%22 x=%22-.16%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.21%22/%3E%3C/filter%3E%3Cfilter id=%22l%22 width=%221.17%22 height=%221.07%22 x=%22-.08%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.23%22/%3E%3C/filter%3E%3Cfilter id=%22m%22 width=%221.12%22 height=%221.08%22 x=%22-.06%22 y=%22-.04%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.24%22/%3E%3C/filter%3E%3Cfilter id=%22n%22 width=%221.33%22 height=%221.16%22 x=%22-.16%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.14%22/%3E%3C/filter%3E%3Cfilter id=%22o%22 width=%221.33%22 height=%221.16%22 x=%22-.16%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.14%22/%3E%3C/filter%3E%3Cfilter id=%22p%22 width=%221.33%22 height=%221.16%22 x=%22-.17%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.14%22/%3E%3C/filter%3E%3Cfilter id=%22q%22 width=%221.33%22 height=%221.16%22 x=%22-.17%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.14%22/%3E%3C/filter%3E%3Cfilter id=%22r%22 width=%221.33%22 height=%221.16%22 x=%22-.17%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.14%22/%3E%3C/filter%3E%3Cfilter id=%22s%22 width=%221.46%22 height=%221.33%22 x=%22-.23%22 y=%22-.17%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.34%22/%3E%3C/filter%3E%3Cfilter id=%22t%22 width=%221.39%22 height=%221.38%22 x=%22-.19%22 y=%22-.19%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.4%22/%3E%3C/filter%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-25.02%22 x2=%2214.08%22 y1=%22-249.82%22 y2=%22-249.82%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.45 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22 x1=%229.24%22 x2=%2240.76%22 y1=%2227.27%22 y2=%2227.27%22 gradientTransform=%22matrix(1.0155 0 0 1.0103 -.39 .48)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23737373%22/%3E%3Cstop offset=%221%22 stop-color=%22%23303030%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22-27.91%22 x2=%22-21.13%22 y1=%22-264.3%22 y2=%22-264.3%22 gradientTransform=%22matrix(.99988 0 0 .97754 29.93 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22e%22 x1=%22-18.93%22 x2=%22-12.15%22 y1=%22-267.53%22 y2=%22-267.53%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.45 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%22-8.86%22 x2=%22-2.08%22 y1=%22-268.55%22 y2=%22-268.55%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.45 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%221.21%22 x2=%228%22 y1=%22-267.53%22 y2=%22-267.53%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.45 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22h%22 x1=%2210.2%22 x2=%2216.98%22 y1=%22-264.3%22 y2=%22-264.3%22 gradientTransform=%22matrix(.99988 0 0 .97754 30.98 272.6)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22m37.16 38.87 3.17-4.8 4.24-19.83-9.66 14.8.15-17.44-6.9 16.4-3.17-17.93L21.82 28l-6.9-16.41.14 17.44-9.65-14.8 4.24 19.82 3.36 4.81-1.41 5.39S16 46.3 25 46.3s13.39-2.04 13.39-2.04z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M9.75 34.06c1.34.18 1.64-.35 2.05-1.9 0 0 2.5 1.34 3.77 1.06 1.36-.3 2.47-2.17 2.47-2.17s2.11 1.56 3.38 1.45c1.47-.12 3.5-1.98 3.5-1.98s2.03 1.86 3.5 1.98c1.27.1 3.39-1.45 3.39-1.45s1.1 1.87 2.47 2.17c1.27.28 3.76-1.06 3.76-1.06.41 1.55.84 2.09 2.19 1.9%22/%3E%3Cellipse cx=%225.41%22 cy=%2214.24%22 fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 rx=%222.89%22 ry=%222.8%22/%3E%3Cpath d=%22M13.56-262.78c-1.2 4.73-4.7 13.53-6.05 18.22l-3.74 4.82 1.08 4.99 3.08 1.16-1.23-5.51 2.97-4.68z%22 filter=%22url(%23d)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(.99988 0 0 .97754 30.45 272.6)%22/%3E%3Cpath d=%22M24.5 41.69c-4.84 0-9.67.86-12.9 2.57 3.23 1.71 8.07 1.75 12.91 1.75-11.92-1.88 1.96-3.7 6.74-3.73-2.13-.4-4.44-.59-6.75-.59z%22 opacity=%22.15%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 d=%22M11.6 44.26S16 42.12 25 42.12s13.39 2.14 13.39 2.14m-25.53-5.39s3.66-2.04 12.15-2.04 12.15 2.04 12.15 2.04%22/%3E%3Cellipse cx=%2214.92%22 cy=%2211.08%22 fill=%22url(%23e)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 rx=%222.89%22 ry=%222.8%22/%3E%3Cellipse cx=%2224.99%22 cy=%2210.08%22 fill=%22url(%23f)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 rx=%222.89%22 ry=%222.8%22/%3E%3Cellipse cx=%2235.06%22 cy=%2211.08%22 fill=%22url(%23g)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 rx=%222.89%22 ry=%222.8%22/%3E%3Cellipse cx=%2244.57%22 cy=%2214.24%22 fill=%22url(%23h)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 rx=%222.89%22 ry=%222.8%22/%3E%3Cpath fill=%22%23fff%22 d=%22m6.39 16.87 3.73 16.64s.8.06 1.27-2.3z%22 filter=%22url(%23i)%22 opacity=%22.3%22/%3E%3Cpath fill=%22%23fff%22 d=%22m15.52 14.5 2.34 15.17c-.62 1.08-1.47 2-2.16 2.17z%22 filter=%22url(%23j)%22 opacity=%22.25%22/%3E%3Cpath fill=%22%23fff%22 d=%22M21.99 31.03 25 13.42l-.14 15.75c-1.06.92-2.15 1.86-2.88 1.86z%22 filter=%22url(%23k)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22m34.46 14.6-6.78 16.2c.02-.1.47 1.4 3.83-1.25z%22 filter=%22url(%23l)%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22m33.92 31.8 9.22-14.32-5.6 13.35s-3.15 1.73-3.62.98z%22 filter=%22url(%23m)%22 opacity=%22.1%22/%3E%3Cpath fill=%22%23fff%22 d=%22M4.18 16.16s-3.01-2.7.94-4.17c.09.01-1.83 2.15-.94 4.17z%22 filter=%22url(%23n)%22 opacity=%22.25%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.83 13.03s-3.02-2.7.93-4.17c.1 0-1.8 2.06-.93 4.17z%22 filter=%22url(%23o)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.85 12s-3.02-2.69.93-4.16c.06 0-1.92 2.09-.93 4.17z%22 filter=%22url(%23p)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M33.94 13s-3.02-2.7.93-4.18c.04 0-1.92 2.1-.93 4.17z%22 filter=%22url(%23q)%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M43.43 16.15s-3.02-2.7.93-4.17c.05.02-1.88 2.19-.93 4.17z%22 filter=%22url(%23r)%22 opacity=%22.1%22/%3E%3Cpath d=%22M25 46.4c-9.01 0-13.4-2.14-13.4-2.14S16 42.12 25 42.12s13.38 2.14 13.38 2.14S34 46.4 25 46.4zM6.77 12.41c.08.03 2.32 1.75-.15 3.87-.07-.13 1.17-2 .15-3.87zm9.57-3.16c.08.02 2.31 1.75-.15 3.86-.08-.12 1.16-2 .15-3.86zm10.09-.97c.08.02 2.3 1.75-.15 3.86-.08-.12 1.16-2 .14-3.86zm10.09.99c.07.03 2.3 1.75-.15 3.86-.08-.12 1.16-2 .14-3.86zm9.54 3.3c.08.02 2.31 1.74-.15 3.86-.07-.13 1.16-2 .15-3.87z%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.51 39.22c.85-.45 1.7-.66 2.57-.87-.58.83-.61 2.63-.33 3.97 0 0-.9.13-3.23.9z%22 filter=%22url(%23s)%22 opacity=%22.1%22/%3E%3Cpath fill=%22%23fff%22 d=%22M13.15 38.08c.1-.01.33-.29 2.59-.95a18.02 18.02 0 0 1-3.55-4.07c-.33.91-.78 1.51-1.42 1.58z%22 filter=%22url(%23t)%22 opacity=%22.15%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22b%22 width=%221.223%22 height=%221.061%22 x=%22-.112%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.463%22/%3E%3C/filter%3E%3Cfilter id=%22c%22 width=%221.255%22 height=%221.187%22 x=%22-.127%22 y=%22-.094%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.264%22/%3E%3C/filter%3E%3Cfilter id=%22d%22 width=%221.296%22 height=%221.17%22 x=%22-.148%22 y=%22-.085%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.373%22/%3E%3C/filter%3E%3Cfilter id=%22e%22 width=%221.171%22 height=%221.294%22 x=%22-.085%22 y=%22-.147%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.173%22/%3E%3C/filter%3E%3Cfilter id=%22f%22 width=%221.277%22 height=%221.177%22 x=%22-.139%22 y=%22-.088%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.119%22/%3E%3C/filter%3E%3Cfilter id=%22g%22 width=%221.164%22 height=%221.315%22 x=%22-.082%22 y=%22-.158%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.24%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.195%22 height=%221.242%22 x=%22-.097%22 y=%22-.121%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.123%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.195%22 height=%221.242%22 x=%22-.097%22 y=%22-.121%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.123%22/%3E%3C/filter%3E%3ClinearGradient id=%22a%22 x1=%229.005%22 x2=%2240.995%22 y1=%2226.762%22 y2=%2226.762%22 gradientTransform=%22translate(0 1.029)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23737373%22/%3E%3Cstop offset=%221%22 stop-color=%22%23303030%22/%3E%3C/linearGradient%3E%3ClinearGradient id=%22j%22 x1=%22-36.133%22 x2=%22-9.938%22 y1=%22-313.97%22 y2=%22-313.97%22 gradientTransform=%22matrix(-1 0 0 1 1.964 333.28)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22/%3E%3Cstop offset=%221%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%22url(%23a)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M12.973 41.57h24.121m-24.127-4.371h24.066m-20.061-4.052H33.03M17.062 21.53h15.879m-21.038-4.432h26.196m-26.196-7.81v7.81l5.158 4.433-.09 11.618-4.003 4.051v4.371H9.505v4.726h30.99V41.57h-3.462V37.2l-4.004-4.052-.09-11.618 5.159-4.433v-7.81h-5.593v3.347h-4.613V9.286h-5.783v3.348h-4.613V9.286z%22/%3E%3Cpath d=%22M46.199-268.38v7.725l-5.02 4.386.089 11.489 4.413 4.006v4.323h2.829v4.673h2.632v-4.673h-3.358v-4.322L43.9-244.78l-.088-11.492 5.002-4.383v-7.725z%22 filter=%22url(%23b)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.031 0 0 1.0112 -12.232 280.67)%22/%3E%3Cpath fill=%22%23fff%22 d=%22m12.466 16.525-.041-6.675 3.328-.095-1.997.711v5.356l4.704.667z%22 filter=%22url(%23c)%22 opacity=%22.25%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22M17.596 22.031h7.58l-6.467 1v8.598l-1.161.922z%22 filter=%22url(%23d)%22 opacity=%22.25%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m14.358 36.582 2.86-2.83h1.479l-2.4 2.83z%22 filter=%22url(%23e)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m13.518 37.794.005 3.214h1.524l-.003-3.225z%22 filter=%22url(%23f)%22 opacity=%22.1%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22M10.067 42.104h1.015v2.66l3.872.987h-4.887z%22 filter=%22url(%23g)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m22.651 9.794-.017 2.433c.658-1.23 1.363-2.176 3.026-2.424z%22 filter=%22url(%23h)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22m33.051 9.807-.017 2.433c.388-1.52 1.111-2.39 3.026-2.425z%22 filter=%22url(%23i)%22 opacity=%22.1%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22url(%23j)%22 d=%22M38.098 17.097H11.903l5.16 4.433H32.94z%22 opacity=%22.2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22d%22 width=%221.16%22 height=%221.07%22 x=%22-.08%22 y=%22-.03%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.41%22/%3E%3C/filter%3E%3Cfilter id=%22e%22 width=%221.3%22 height=%221.17%22 x=%22-.15%22 y=%22-.08%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.62%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.22%22 height=%221.44%22 x=%22-.11%22 y=%22-.22%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.42%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.29%22 height=%221.58%22 x=%22-.14%22 y=%22-.29%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.35%22/%3E%3C/filter%3E%3Cfilter id=%22j%22 width=%221.39%22 height=%221.15%22 x=%22-.2%22 y=%22-.07%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.12%22/%3E%3C/filter%3E%3Cfilter id=%22k%22 width=%221.43%22 height=%221.35%22 x=%22-.21%22 y=%22-.17%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.27%22/%3E%3C/filter%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%2214.56%22 x2=%2235.92%22 y1=%2225.93%22 y2=%2225.93%22 gradientTransform=%22matrix(1.0739 0 0 1.0269 -2.26 -.38)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22 x1=%229.24%22 x2=%2240.76%22 y1=%2227.27%22 y2=%2227.27%22 gradientTransform=%22matrix(1.0155 0 0 1.0103 -.39 .48)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23737373%22/%3E%3Cstop offset=%221%22 stop-color=%22%23303030%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%2221.35%22 x2=%2229.14%22 y1=%2210.31%22 y2=%2210.31%22 gradientTransform=%22matrix(.83475 0 0 .90883 3.75 1.1)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22f%22 x1=%225.61%22 x2=%2225.92%22 y1=%2242.3%22 y2=%2242.3%22 gradientTransform=%22matrix(1.0856 0 0 .94062 -2.56 2.94)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22g%22 x1=%2224.85%22 x2=%2245.16%22 y1=%2242.3%22 y2=%2242.3%22 gradientTransform=%22matrix(1.0856 0 0 .94062 -2.56 2.94)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22m31.02 32.27 4.72-5.95-10.19-12.97h-.7v-.01h-.71L13.95 26.3l4.73 5.95-1.55 4.86c-.03.39 3.1 2.04 7.72 2.04s7.74-1.65 7.71-2.04z%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M24.83 7.7c-1.55 0-2.81 1.24-2.81 2.77s1.26 2.76 2.8 2.76 2.81-1.24 2.81-2.77a2.79 2.79 0 0 0-2.8-2.76z%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M22.1 24.66h5.5m-2.75-2.75v5.5%22/%3E%3Cpath d=%22M-549.75-422.16c3.41 1.81.5 4.93-1.53 5.2.47.2.98.32 1.53.32 5.53-1.76 1.32-5.65 0-5.52zm-.69 5.52c3.1 4.11 5.85 8.46 8.73 12.7l-4.81 5.2 1.09 4.43 3 .86-1.35-4.67 4.57-5.81-9.86-12.7h-.68v-.01z%22 filter=%22url(%23d)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(1.0334 0 0 1.0218 592.95 439.08)%22/%3E%3Cpath d=%22M26.07 35.62c-3.08.01-6.4.5-8.37 1.77 2.19 1.5 5.8 1.82 8.89 1.77-7.14-1.45 2.03-2.97 4.84-3a25.13 25.13 0 0 0-5.36-.54z%22 opacity=%22.15%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 d=%22M17.13 37.12s1.93-1.56 7.72-1.56 7.71 1.56 7.71 1.56m-13.88-4.86s1.86-1.02 6.17-1.03c4.31 0 6.18 1.03 6.18 1.03%22/%3E%3Cpath fill=%22%23fff%22 d=%22m18.87 31.58-4.17-5.26 9.74-12.43-8.08 12.38z%22 filter=%22url(%23e)%22 opacity=%22.3%22/%3E%3Cpath d=%22M25 39.16c-5.62 0-7.3-1.77-7.3-1.77s1.68-1.77 7.3-1.77 7.3 1.77 7.3 1.77-1.68 1.77-7.3 1.77z%22 opacity=%22.2%22/%3E%3Cpath fill=%22url(%23f)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M22.65 39.16c-5.2 6.25-11.79-2.92-18.53 3.48l1.96 3.66C10.48 40.62 25 51.5 25 39.16z%22/%3E%3Cpath fill=%22url(%23g)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M27.35 39.16c5.2 6.25 11.79-2.92 18.53 3.48l-1.97 3.66C39.51 40.62 25 51.5 25 39.16z%22/%3E%3Cpath fill=%22%23fff%22 d=%22m4.83 42.73 1.4 2.6-.34-2.34c3.12-2.39 5.96-1.62 8.04-1.6 0 0-5.85-1.95-9.1 1.35z%22 filter=%22url(%23h)%22 opacity=%22.3%22/%3E%3Cpath fill=%22%23fff%22 d=%22m45.24 42.77-.49.89c-1.9-2.33-3.74-2.76-5.32-2.76 0 0 3.02-.72 5.81 1.87z%22 filter=%22url(%23i)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.67 12.37c-.25.06-2.6-2.42.42-3.98-.09 0-1.76 2.14-.42 3.98z%22 filter=%22url(%23j)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22m603.76-67.57 1.05-3.3s.37-.26 1.45-.44c0 0-.74 2.23.51 3.04-2.15.34-2.53.56-3.01.7z%22 filter=%22url(%23k)%22 opacity=%22.1%22 transform=%22matrix(1.0007 0 0 .98931 -586.04 102.79)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22c%22 width=%221.128%22 height=%221.077%22 x=%22-.064%22 y=%22-.038%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.57%22/%3E%3C/filter%3E%3Cfilter id=%22e%22 width=%221.216%22 height=%221.115%22 x=%22-.108%22 y=%22-.057%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.527%22/%3E%3C/filter%3E%3Cfilter id=%22f%22 width=%221.307%22 height=%221.167%22 x=%22-.153%22 y=%22-.083%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.612%22/%3E%3C/filter%3E%3Cfilter id=%22g%22 width=%221.469%22 height=%221.834%22 x=%22-.234%22 y=%22-.417%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.299%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.461%22 height=%221.329%22 x=%22-.231%22 y=%22-.164%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.312%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.238%22 height=%221.198%22 x=%22-.119%22 y=%22-.099%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.467%22/%3E%3C/filter%3E%3Cfilter id=%22j%22 width=%221.358%22 height=%221.415%22 x=%22-.179%22 y=%22-.207%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.292%22/%3E%3C/filter%3E%3Cfilter id=%22k%22 width=%221.641%22 height=%221.823%22 x=%22-.321%22 y=%22-.411%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%221.013%22/%3E%3C/filter%3E%3Cfilter id=%22l%22 width=%221.479%22 height=%221.139%22 x=%22-.239%22 y=%22-.07%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.279%22/%3E%3C/filter%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22-736.5%22 x2=%22-696.5%22 y1=%22-367.96%22 y2=%22-367.96%22 gradientTransform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22 x1=%229.241%22 x2=%2240.761%22 y1=%2227.266%22 y2=%2227.266%22 gradientTransform=%22matrix(1.0155 0 0 1.0103 -.389 .482)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23737373%22/%3E%3Cstop offset=%221%22 stop-color=%22%23303030%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22-116.32%22 x2=%22-77.199%22 y1=%22299.9%22 y2=%22299.9%22 gradientTransform=%22matrix(1.1045 0 0 1.0827 130.81 -314.94)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-dashoffset=%221.852%22 stroke-linecap=%22round%22 d=%22M10.393 35.883c2.887 2.407 4.157-.702 5.178-3.053 1.398-3.953 7.128-1.826 8.733-6.795 2.83 11.085-9.865 8.393-9.264 20.26h28.386c1.913-22.102-5.002-37.42-25.957-35.287-2.083-2.176-4.992-3.558-4.992-3.558-1.13 2.085-1.012 4.716.667 5.722.439.4-3.527 2.078-2.996 7.892 0 0-3.192 5.317-5.055 8.811-1.356 2.732 1.074 6.265 4.536 6.59%22/%3E%3Cpath d=%22M16.859 17.328a.472.472 0 0 0-.053.006c-2.943.479-3.352 3.258-3.352 3.258a.55.55 0 0 0 1.079.218s.172-2.023 2.451-2.393a.549.549 0 0 0-.125-1.089z%22 color=%22%23000%22 style=%22font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:%23000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal%22/%3E%3Cpath d=%22M16.7 19.572a1.117 1.204 69.395 0 1-.943 1.366 1.117 1.204 69.395 0 1-1.401-.825 1.117 1.204 69.395 0 1 .943-1.366 1.117 1.204 69.395 0 1 1.401.825z%22 paint-order=%22markers fill stroke%22/%3E%3Cpath d=%22M8.419 29.95a.55.55 0 0 0-.384.16c-.438.436-.669.85-.78 1.172-.11.323-.093.617-.093.617a.55.55 0 0 0 .597.495c.304-.027.715-.248.687-.55 0 0-.014 0 .04-.162.056-.16.184-.42.514-.749.215-.214.028-.609-.188-.823a.552.552 0 0 0-.393-.16z%22 color=%22%23000%22 style=%22font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:%23000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal%22/%3E%3Cpath d=%22M-718.42-382.86c17.099.645 19.298 14.991 17.595 34.473h3.526c1.754-20.341-3.914-34.957-21.01-35.602z%22 filter=%22url(%23c)%22 opacity=%22.2%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M17.454 12.38s.652-4.143 3.9-4.848c0 0 2.08 1.085 1.664 5.969%22 paint-order=%22markers fill stroke%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 d=%22M12.206 33.765c-.306.526-1.452 1.747-2.575 2.701%22/%3E%3Cpath fill=%22%23fff%22 d=%22m5.427 30.42 4.195-7.324 1.172-1.892s-.797-4.414 2.719-7.38c0 0 .554-.615.003-1.107-.553-.492-1.936-2.128-.753-4.336-.077-.022.274 4.806 4.353 4.864-3.919 1.25-6.11 4.99-5.15 8.582-.736 1.173-1.458 2.08-2.375 3.208-.82 1.01-1.796 2.196-3.078 3.907-.34.454-.7.944-1.085 1.478z%22 filter=%22url(%23e)%22 opacity=%22.3%22 style=%22mix-blend-mode:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22M15.757 45.676c-.744-9.435 10.084-8.795 9.438-17.61 1.104 10.971-7.883 9.13-9.438 17.61z%22 filter=%22url(%23f)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M-733.97-364.25c-.015.573 1.587-1.887 3.06-.439-.597-1.43-2.217-1.902-3.06.439z%22 filter=%22url(%23g)%22 opacity=%22.2%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M18.027 12.578s.58-3.7 3.249-4.46c-1.554 1.972-1.745 5.155-3.249 4.46z%22 filter=%22url(%23h)%22 opacity=%22.2%22/%3E%3Cpath d=%22M-716.03-369.64c.405-1.184.326-3.052-.03-3.612-2.96 8.671-8.246 5.492-9.102 11.347 1.64-3.708 7.813-2.42 9.132-7.735z%22 filter=%22url(%23i)%22 opacity=%22.2%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M-723.87-377.47c-3.217.615-3.405 3.277-3.405 3.277s-.499.21-.49-.328c-.231-.688 1.215-3.475 3.895-2.949z%22 filter=%22url(%23j)%22 opacity=%22.2%22 transform=%22matrix(.99995 0 0 .99606 740.69 393.31)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M-723.63-356.13c-6.532-.827-7.581 5.84-7.581 5.84 1.11-2.066 4.294-4.784 7.581-5.84z%22 filter=%22url(%23k)%22 opacity=%22.1%22 transform=%22matrix(.76507 0 0 .92137 575.69 349.88)%22/%3E%3Cpath fill=%22none%22 stroke=%22%23000%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 d=%22M24.304 26.035s.399-.909.744-3.487%22/%3E%3Cpath d=%22M23.987 32.169c.364-.026 5.37-6.215 1.061-9.62l-.51 4.556c.107 1.682.437 3.359-.551 5.064z%22 filter=%22url(%23l)%22 opacity=%22.2%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='maestro'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 1.5 50 50%22%3E%3Cdefs%3E%3Cfilter id=%22e%22 width=%221.46%22 height=%221.33%22 x=%22-.23%22 y=%22-.16%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.67%22/%3E%3C/filter%3E%3Cfilter id=%22f%22 width=%221.55%22 height=%221.29%22 x=%22-.27%22 y=%22-.15%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.49%22/%3E%3C/filter%3E%3Cfilter id=%22g%22 width=%221.61%22 height=%221.59%22 x=%22-.3%22 y=%22-.3%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.39%22/%3E%3C/filter%3E%3Cfilter id=%22h%22 width=%221.1%22 height=%221.09%22 x=%22-.05%22 y=%22-.05%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.34%22/%3E%3C/filter%3E%3Cfilter id=%22i%22 width=%221.15%22 height=%221.07%22 x=%22-.07%22 y=%22-.04%22 color-interpolation-filters=%22sRGB%22%3E%3CfeGaussianBlur stdDeviation=%22.27%22/%3E%3C/filter%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22b%22 x1=%22779.03%22 x2=%22794.63%22 y1=%2254.45%22 y2=%2254.45%22 gradientTransform=%22matrix(.98131 0 0 .97235 -747.13 -34.82)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient id=%22a%22 x1=%229.24%22 x2=%2240.76%22 y1=%2227.27%22 y2=%2227.27%22 gradientTransform=%22matrix(1.0155 0 0 1.0103 -.39 .48)%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23737373%22/%3E%3Cstop offset=%221%22 stop-color=%22%23303030%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22c%22 x1=%22777.73%22 x2=%22795.93%22 y1=%2263.42%22 y2=%2263.42%22 gradientTransform=%22matrix(.98131 0 0 .97235 -747.13 -34.82)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23a%22 id=%22d%22 x1=%22772.83%22 x2=%22800.83%22 y1=%2274.58%22 y2=%2274.58%22 gradientTransform=%22matrix(.98131 0 0 .97235 -747.13 -34.82)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cellipse cx=%2225%22 cy=%2218.13%22 fill=%22url(%23b)%22 stroke=%22%23000%22 stroke-linejoin=%22round%22 paint-order=%22markers fill stroke%22 rx=%227.16%22 ry=%226.83%22/%3E%3Cpath fill=%22url(%23c)%22 stroke=%22%23000%22 d=%22M25 24.6c-5.23.04-7.99-.03-8.4 4.5h16.8c-.42-4.53-3.17-4.46-8.4-4.5z%22/%3E%3Cpath fill=%22url(%23d)%22 stroke=%22%23000%22 d=%22M20.48 29.1c.5 6.8-9.3 8-8.7 17.2h26.44c.6-9.2-9.2-10.4-8.7-17.2H25z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M19.88 21.63c-.52.22-4.58-7.63 4.87-9.77.72-.12 1.25.64 0 1.04 0 0-7.73 3.34-4.87 8.73z%22 filter=%22url(%23e)%22 opacity=%22.25%22/%3E%3Cpath fill=%22%23fff%22 d=%22M12.5 45.7c-.32-1.24-.2-3.97 3.52-8-.37 2.43-3.07 5.39-.9 8.02z%22 filter=%22url(%23f)%22 opacity=%22.2%22/%3E%3Cpath fill=%22%23fff%22 d=%22M17.28 28.56s-.02-2.9 3.1-3.15c-1.07 1.22-1.45 1.91-.93 3.18z%22 filter=%22url(%23g)%22 opacity=%22.2%22/%3E%3Cpath d=%22M275.09-101.12c.23 6.04 18.73 9.31 16.55 17.68 1.29-7.88-9.28-10.09-8.87-17.68z%22 filter=%22url(%23h)%22 opacity=%22.15%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(.98092 0 0 .9722 -247.86 127.42)%22/%3E%3Cpath d=%22M278.37-118.34c4.97.66 6.6 10.5 1.92 13.45 0 0 3.4.52 3.97 2.7.17.65.47 2.17.47 2.17h2.2s-.2-1.54-.47-2.16c-.9-2.04-4.69-2.77-4.69-2.77 1.87-1.18 3.9-4.25 3.9-6.36.39-4.55-5.5-7.55-7.3-7.03z%22 filter=%22url(%23i)%22 opacity=%22.2%22 style=%22mix-blend-mode:normal%22 transform=%22matrix(.98092 0 0 .9722 -248.05 126.34)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* merida */
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.376%22 x2=%2277.641%22 y1=%2237.346%22 y2=%2237.346%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M25.821 12.022h-1.76v-3.25h-2.067c-.558 0-.838-.272-.838-.822v-.025c0-.542.28-.813.838-.813h2.066V5.004c0-.585.297-.872.89-.872.575 0 .871.287.871.872v2.108h2.134c.542 0 .813.27.813.813v.025c0 .55-.271.821-.813.821l-2.117.026zM11.03 37.744l-.813-4.64c-.017 0-.042-.033-.076-.101-.085-.119-.322-.271-.711-.457-.381-.195-.838-.517-1.346-.982a41.99 41.99 0 0 1-1.702-1.49 8.509 8.509 0 0 1-1.1-1.237C4.273 27.45 3.705 25.772 3.595 23.8c-.17-1.897.601-3.794 2.303-5.682 1.719-1.88 4.047-2.768 6.968-2.65 1.092.068 2.38.33 3.844.796.483.195.974.39 1.482.576l1.498.584c.263.136.5.271.695.398a4.38 4.38 0 0 1-.127-1.041c0-1.287.457-2.388 1.38-3.302.914-.906 2.023-1.372 3.31-1.389 1.287 0 2.388.466 3.302 1.38.906.915 1.363 2.015 1.363 3.285 0 .263-.034.61-.101 1.042.228-.144.457-.271.669-.373.762-.33 1.76-.72 3.005-1.16 1.423-.482 2.701-.753 3.844-.821 2.921-.136 5.241.753 6.943 2.65 1.668 1.888 2.447 3.785 2.328 5.681-.127 1.973-.703 3.65-1.71 5.038-.33.449-.703.863-1.118 1.253a40.5 40.5 0 0 1-1.66 1.473c-.541.466-1.007.796-1.388.982-.38.186-.6.347-.669.457a.294.294 0 0 1-.05.077c-.017.017-.026.034-.026.05l-.796 4.666 1.643 6.121c-.83.745-2.684 1.355-5.554 1.837-2.879.483-6.206.72-9.974.72-3.835 0-7.214-.254-10.118-.754-2.912-.508-4.741-1.143-5.486-1.896z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M25.796 29.532c2.845.033 5.444.203 7.806.508 2.37.304 4.225.694 5.563 1.151a126.32 126.32 0 0 0 2.057-1.651 12.018 12.018 0 0 0 1.863-1.846c.787-1.007 1.185-2.337 1.185-3.996 0-1.482-.356-2.726-1.067-3.717-1.27-1.854-3.209-2.777-5.8-2.777-1.557 0-3.149.322-4.792.965-1.439.584-2.531 1.228-3.268 1.94-1.388 1.388-2.421 3.174-3.082 5.35-.228.779-.364 1.49-.406 2.125-.042.635-.06 1.287-.06 1.947zm-13.25 6.697c3.14-.796 7.306-1.194 12.505-1.194 5.088 0 9.203.38 12.327 1.143l.618-3.65c-3.327-.871-7.67-1.312-13.047-1.312-5.41 0-9.745.45-13.022 1.338zm25.298 4.41l-.737-2.844c-3.276-.728-7.332-1.092-12.158-1.092-4.809 0-8.856.364-12.133 1.092l-.787 2.87c3.158-.923 7.468-1.388 12.946-1.388 5.444 0 9.728.457 12.869 1.363zm.652 2.338c-3.192-1.287-7.68-1.94-13.445-1.94-5.986 0-10.516.661-13.598 1.99 2.913 1.152 7.417 1.736 13.522 1.736 2.912 0 5.562-.16 7.958-.483 2.405-.321 4.25-.762 5.563-1.303zM24.077 29.532c-.008-.644-.034-1.287-.068-1.922s-.16-1.347-.372-2.126c-.677-2.21-1.702-3.996-3.082-5.35-.711-.695-1.795-1.347-3.268-1.94-1.685-.66-3.285-.99-4.792-.99-2.608 0-4.547.931-5.8 2.803-.711.99-1.067 2.235-1.067 3.716 0 1.626.398 2.955 1.186 3.997.482.61 1.092 1.227 1.837 1.837.745.61 1.44 1.168 2.083 1.66 2.895-1.042 7.34-1.6 13.343-1.685zm.872-4.615c.119-.465.212-.787.296-.965.17-.643.356-1.194.576-1.643.093-.279.237-.6.432-.973.186-.373.39-.805.61-1.279.127-.28.27-.626.415-1.033.152-.406.304-.804.448-1.202.136-.33.203-.686.203-1.067 0-.813-.296-1.498-.872-2.066-.575-.575-1.278-.863-2.108-.863-1.964 0-2.955.99-2.955 2.955 0 .38.068.736.203 1.067.365 1.075.644 1.82.839 2.235.22.474.415.906.6 1.278.179.373.34.694.466.974.22.55.398 1.092.55 1.642.035.094.128.415.297.94z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.253%22 x2=%2277.641%22 y1=%2237.224%22 y2=%2237.346%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M44.541 14.723c-.94 0-1.744-.33-2.404-.982-.66-.652-.991-1.448-.991-2.396 0-.923.33-1.719.99-2.388.66-.677 1.465-1.007 2.405-1.007.931 0 1.727.33 2.388 1.007.66.67.99 1.465.99 2.388 0 .948-.33 1.744-.99 2.396a3.28 3.28 0 0 1-2.388.982zm-4.31 29.219c-.812.71-2.633 1.304-5.46 1.786-2.828.474-6.088.72-9.771.72-3.75 0-7.053-.254-9.898-.745-2.844-.5-4.64-1.118-5.384-1.863l1.566-5.952-.694-3.895L8.405 30.2 6.297 14.774l1.21-.474 6.8 11.455.152-13.64 1.685-.296 5.182 13.716 2.776-14.757h1.72l2.776 14.706L33.73 11.82l1.71.296.153 13.64 6.824-11.48 1.16.541-2.058 15.359-2.21 3.793-.694 3.945zM14.535 11.988c-.948 0-1.752-.321-2.413-.973-.66-.652-.99-1.456-.99-2.396 0-.923.33-1.719.99-2.38s1.465-.99 2.413-.99c.923 0 1.719.33 2.38.99s.99 1.457.99 2.38c0 .94-.33 1.744-.99 2.396a3.266 3.266 0 0 1-2.38.973zM5.4 14.723c-.94 0-1.736-.33-2.388-.982-.652-.652-.982-1.448-.982-2.396 0-.923.33-1.719.982-2.388C3.664 8.28 4.46 7.95 5.4 7.95c.948 0 1.744.33 2.413 1.007.66.67.99 1.465.99 2.388 0 .948-.33 1.744-.99 2.396a3.323 3.323 0 0 1-2.413.982zm19.55-3.97c-.94 0-1.745-.33-2.397-.991-.652-.66-.974-1.465-.974-2.405 0-.931.322-1.727.974-2.387.652-.66 1.456-.99 2.396-.99.923 0 1.727.33 2.396.99a3.23 3.23 0 0 1 1 2.387c0 .94-.33 1.744-1 2.405-.669.66-1.473.99-2.396.99zm10.413 1.235c-.94 0-1.736-.321-2.387-.973-.652-.652-.983-1.456-.983-2.396 0-.923.33-1.719.983-2.38s1.447-.99 2.387-.99c.948 0 1.753.33 2.413.99s.99 1.457.99 2.38c0 .94-.33 1.744-.99 2.396-.66.652-1.465.973-2.413.973z%22 fill=%22%231f1a17%22 stroke=%22%231f1a17%22 stroke-width=%22.076%22/%3E%3Cpath d=%22M38.217 43.044c-3.023-1.253-7.417-1.88-13.166-1.88-5.876 0-10.313.644-13.327 1.931 2.896 1.143 7.316 1.71 13.25 1.71 2.845 0 5.445-.152 7.798-.465 2.363-.314 4.175-.745 5.445-1.296zM24.949 9.017c1.11 0 1.66-.56 1.66-1.66 0-1.092-.55-1.642-1.66-1.642-1.092 0-1.634.55-1.634 1.642 0 1.1.542 1.66 1.634 1.66zm12.624 24.976c-3.192-.812-7.366-1.21-12.522-1.21-5.292 0-9.517.406-12.675 1.236l.373 2.379c3.217-.762 7.323-1.143 12.302-1.143 4.944 0 8.975.372 12.099 1.117zm.618-1.49l1.617-2.853a6.432 6.432 0 0 1-2.43.474c-2.218 0-3.987-.897-5.308-2.7-.99.82-2.1 1.235-3.328 1.235-1.583 0-2.853-.618-3.793-1.862-1.058 1.16-2.32 1.744-3.793 1.744-1.194 0-2.286-.406-3.276-1.22-1.389 1.77-3.184 2.65-5.385 2.65a7.055 7.055 0 0 1-2.506-.465l1.735 2.972c3.21-.923 7.62-1.389 13.225-1.389 5.707 0 10.118.474 13.242 1.414zm-11.108-5.926l-2.108-12.133-2.109 11.989c.051-.034.161-.119.348-.254.38-.745.956-1.118 1.735-1.118.847 0 1.389.373 1.634 1.118.102.101.271.237.5.398zm6.866.474V15.56l-4.09 11.261c.314-.11.577-.262.797-.44.33-.415.779-.627 1.338-.627.66 0 1.193.297 1.591.872.043.068.102.136.17.212.067.076.135.144.194.212zm-13.936-.347L15.95 15.562v11.336c.043-.067.119-.144.22-.245.33-.694.872-1.042 1.634-1.042.627 0 1.143.263 1.541.796.449.195.67.297.67.297zm-6.3 1.388L8.38 18.89l1.363 8.382c.94.66 1.863.99 2.752.99.347 0 .753-.059 1.219-.169zm22.395.119c.381.118.805.178 1.27.178 1.008 0 1.948-.314 2.828-.94l1.363-8.585zm1.49 12.556l-.745-2.803c-3.242-.71-7.205-1.066-11.904-1.066-4.648 0-8.61.355-11.878 1.066l-.771 2.828c3.073-.931 7.298-1.388 12.675-1.388 5.24 0 9.448.448 12.623 1.363zM14.535 10.253c1.084 0 1.634-.542 1.634-1.634s-.55-1.634-1.634-1.634c-1.109 0-1.668.542-1.668 1.634s.56 1.634 1.668 1.634zm20.828 0c1.11 0 1.668-.542 1.668-1.634s-.559-1.634-1.668-1.634c-1.083 0-1.634.542-1.634 1.634s.55 1.634 1.634 1.634zM5.4 12.988c1.109 0 1.668-.55 1.668-1.643 0-1.11-.56-1.66-1.668-1.66-1.084 0-1.634.55-1.634 1.66 0 1.092.55 1.643 1.634 1.643zm39.141 0c1.092 0 1.643-.55 1.643-1.643 0-1.11-.55-1.66-1.643-1.66-1.1 0-1.66.55-1.66 1.66 0 1.092.56 1.643 1.66 1.643z%22 fill=%22url(%23a)%22 stroke=%22%231f1a17%22 stroke-width=%22.076%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.376%22 x2=%2277.641%22 y1=%2237.469%22 y2=%2237.469%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M28.408 9.22h4.216V5.825h6.799v9.296l-5.503 4.242v11.862l4.216 4.216v5.08h3.793v5.927H8.071V40.52h3.793v-5.08l4.242-4.216V19.363l-5.504-4.242V5.825h6.774V9.22h4.242V5.825h6.79z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M33.073 17.678l3.15-2.557h-22.42l3.175 2.557zm7.197 24.528H9.756v2.557H40.27zm-3.844-5.055H13.6v3.37h22.826zm-4.217-17.788H17.816v11.862h14.393zm5.504-5.927V7.51h-3.395v3.395h-7.646V7.51h-3.344v3.395h-7.62V7.51h-3.395v5.926zm-1.914 22.005l-2.548-2.531H16.8l-2.6 2.531z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.13%22 x2=%2277.641%22 y1=%2237.592%22 y2=%2237.469%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M25.447 42.008c-.228.94-.516 1.592-.846 1.956-.33.364-.762.745-1.313 1.143-.592.415-1.295.762-2.108 1.05-.813.288-1.71.364-2.7.211l-6.969-.965a2.858 2.858 0 0 0-.762 0c-.22.034-.432.051-.635.051-.347 0-.787.076-1.32.237-.542.152-.957.381-1.254.677l-2.404-3.945c.296-.33.559-.559.787-.694.237-.127.508-.271.821-.415a9.179 9.179 0 0 1 3.074-.822c.466-.033.923-.042 1.363-.025a9.8 9.8 0 0 0 1.397-.05c.89.152 1.786.287 2.684.406.906.127 1.812.254 2.718.39.99 0 1.66-.102 2.006-.297.187-.102.474-.288.872-.55.398-.263.796-.652 1.194-1.169-.88-.093-1.77-.262-2.684-.508a24.094 24.094 0 0 1-2.404-.753l2.582-6.401c-1.295-.745-2.193-1.338-2.71-1.795a5.3 5.3 0 0 1-1.21-1.575c-.432-.762-.711-1.499-.83-2.21a9.341 9.341 0 0 1-.16-1.913c.016-.99.245-2.083.702-3.285.457-1.194 1.312-2.27 2.566-3.21a79.091 79.091 0 0 0 3.056-2.455 27.746 27.746 0 0 0 2.946-2.954c-1.219-.627-1.828-1.626-1.828-2.998 0-.93.321-1.718.973-2.387.652-.66 1.457-.99 2.396-.99.923 0 1.72.33 2.38.99.66.669.99 1.456.99 2.387 0 1.355-.61 2.354-1.829 2.998a26.796 26.796 0 0 0 2.913 2.954c.982.839 2.015 1.66 3.09 2.456 1.236.94 2.083 2.015 2.523 3.209.449 1.202.694 2.294.72 3.285 0 .567-.05 1.202-.17 1.913s-.38 1.448-.795 2.21a6.084 6.084 0 0 1-1.253 1.575c-.5.457-1.389 1.05-2.667 1.795l2.582 6.4a28.57 28.57 0 0 1-2.455.754c-.915.246-1.787.415-2.634.508.381.517.771.906 1.169 1.168.398.263.694.45.897.55.347.196 1.016.297 2.007.297a263.35 263.35 0 0 1 2.692-.39 81.13 81.13 0 0 0 2.718-.406c.44.051.89.068 1.346.051a13.12 13.12 0 0 1 1.406.025 9.627 9.627 0 0 1 3.073.822c.297.144.567.288.805.415.245.135.508.364.804.694l-2.43 3.945c-.296-.296-.711-.525-1.253-.677-.534-.16-.965-.237-1.296-.237-.22 0-.44-.017-.66-.05a2.794 2.794 0 0 0-.753 0l-6.952.964c-.99.153-1.913.085-2.76-.194-.855-.28-1.558-.652-2.1-1.118a20.04 20.04 0 0 1-1.303-1.151c-.322-.322-.593-.957-.805-1.897z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M26.32 39.197c0 1.092.245 2.024.753 2.794.5.77 1.041 1.372 1.626 1.795.905.669 2.235 1 3.987 1 .432 0 1.279-.094 2.532-.28a74.737 74.737 0 0 1 2.48-.356c.627-.076 1.05-.135 1.27-.186a6.53 6.53 0 0 1 1.982.05c.262.068.559.128.88.187a1.6 1.6 0 0 1 .805.38l1.194-1.93a7.372 7.372 0 0 0-2.16-.72c-1.252-.22-2.353-.262-3.301-.151-.28.033-.644.118-1.101.245-.457.136-1.067.263-1.846.372-1.676.272-2.557.399-2.658.399-.644 0-1.203-.077-1.685-.246a10.37 10.37 0 0 1-1.287-.542c-.88-.398-1.77-1.338-2.684-2.81zm-1.762 0h-.795c-.932 1.49-1.812 2.43-2.659 2.811-.398.195-.83.373-1.312.542-.483.17-1.033.246-1.66.246-.118 0-.999-.127-2.658-.398-.788-.11-1.423-.238-1.88-.373a8.828 8.828 0 0 0-1.092-.245c-.948-.11-2.04-.068-3.302.152a7.056 7.056 0 0 0-2.134.72l1.194 1.93c.195-.195.457-.322.779-.381.322-.06.618-.119.88-.186a6.53 6.53 0 0 1 1.982-.051c.22.05.643.11 1.27.186.626.076 1.465.195 2.506.356 1.236.186 2.083.28 2.531.28 1.736 0 3.065-.331 3.988-1 .567-.423 1.1-1.024 1.6-1.795.508-.77.762-1.702.762-2.794zm.89-9.347c1.6 0 3.14.127 4.614.372 1.617-.575 2.794-1.481 3.522-2.7a6.745 6.745 0 0 0 .94-3.497c0-.762-.187-1.6-.568-2.523-.38-.915-.999-1.744-1.862-2.49-.974-.812-2.04-1.701-3.2-2.666a33.093 33.093 0 0 1-3.447-3.387c-1.16 1.287-2.311 2.421-3.47 3.387a406.55 406.55 0 0 0-3.176 2.667c-.88.745-1.499 1.574-1.871 2.489-.373.923-.559 1.76-.559 2.523 0 1.27.305 2.438.914 3.497.712 1.219 1.897 2.125 3.548 2.7a27.749 27.749 0 0 1 4.614-.372zm0 4.513c1.938 0 3.793.194 5.579.575l-1.185-3.056a28.297 28.297 0 0 0-4.395-.347c-1.507 0-2.98.118-4.41.347l-1.194 3.056c1.769-.38 3.64-.575 5.604-.575zm0-23.538c1.126 0 1.684-.559 1.684-1.685s-.559-1.693-1.685-1.693-1.684.567-1.684 1.693c0 1.126.558 1.685 1.684 1.685zm0 27.009a18.97 18.97 0 0 0 3.285-.28c1.066-.194 2.1-.423 3.09-.685-1.94-.508-4.064-.77-6.376-.77-2.345 0-4.47.262-6.375.77.957.262 1.973.49 3.048.686a19.46 19.46 0 0 0 3.327.279zm-.89-14.334l-2.065-.026c-.56 0-.839-.279-.839-.846 0-.559.28-.838.839-.838h2.065v-2.134c0-.576.297-.872.89-.872.575 0 .872.296.872.872v2.134h2.133c.542 0 .813.28.813.838 0 .567-.271.846-.813.846H26.32v2.032c0 .602-.297.898-.873.898-.592 0-.889-.296-.889-.898z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.405%22 x2=%2277.641%22 y1=%2237.346%22 y2=%2237.346%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M26.178 9.395c2.6.17 5.004.838 7.222 2.015 2.21 1.169 4.098 2.676 5.656 4.513 1.092 1.287 2.117 2.845 3.082 4.665a28.684 28.684 0 0 1 2.32 5.774 36.511 36.511 0 0 1 1.253 7.46c.177 2.599.262 5.012.262 7.23v5.402H15.468c-.153 0-.22-.407-.212-1.21.009-.814.06-1.466.16-1.965.06-.398.221-.957.467-1.685.254-.728.66-1.609 1.244-2.65.263-.534.89-1.304 1.88-2.32.999-1.016 2.133-2.201 3.429-3.539.745-.762 1.32-1.719 1.744-2.879.423-1.151.601-2.201.533-3.15a8.37 8.37 0 0 1-2.006 1.22c-3.505 1.253-6.045 3.073-7.612 5.452-.118.153-.49.822-1.117 2.015-.33.627-.618 1.059-.847 1.287-.313.314-.77.491-1.363.525-.923.043-1.643-.398-2.16-1.346-.693.203-1.312.288-1.862.254-.923-.347-1.592-.72-2.006-1.117-.847-.847-1.389-1.685-1.651-2.532a9.43 9.43 0 0 1-.381-2.726c0-1.389.855-3.226 2.582-5.512 2.015-2.625 3.09-4.631 3.217-6.003 0-.593.06-1.261.178-2.007a4.198 4.198 0 0 1 .618-1.49c.22-.33.364-.558.432-.677.076-.127.212-.313.415-.559.144-.203.27-.355.372-.457.093-.11.22-.254.373-.44.178-.212.406-.457.694-.745a18.06 18.06 0 0 1-1.067-7.46c3.285 1.169 6.054 3.015 8.28 5.53.551-1.872 1.626-3.387 3.226-4.539 1.321.923 2.371 2.15 3.15 3.666z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M42.976 44.693c-.017 0 0-.449.042-1.346.051-.906.076-1.88.076-2.921.017-2.066.017-4.2 0-6.41a26.837 26.837 0 0 0-.889-6.612c-.567-2.117-1.185-3.92-1.862-5.419-.678-1.498-1.414-2.785-2.21-3.878-1.185-1.786-2.811-3.302-4.86-4.538-2.049-1.244-4.19-2.057-6.426-2.438.152.813.22 1.609.203 2.387-.034.593-.313.89-.847.89-.61 0-.88-.297-.82-.89.05-2.184-.729-4.055-2.33-5.604-1.252 1.32-1.938 2.853-2.031 4.605-.034.585-.33.839-.898.77-.525-.016-.787-.32-.787-.914 0 0 .017-.067.042-.203-.677.22-1.388.525-2.133.923-.474.33-.864.246-1.16-.245-.297-.5-.17-.89.398-1.169.71-.364 1.244-.635 1.608-.821a17.634 17.634 0 0 0-4.86-3.522 17.31 17.31 0 0 0 1.889 6.528c.279.423.211.804-.204 1.134-.465.364-.855.313-1.168-.17a8.87 8.87 0 0 1-.491-.897c-.347.347-.584.61-.694.77-.119.153-.322.483-.61.991-.288.517-.5.94-.635 1.27-.144.415-.212.745-.186 1.008.025.254.05.533.067.855a7.61 7.61 0 0 1-1.007 2.752 133.71 133.71 0 0 1-1.998 3.15 127.607 127.607 0 0 1-1.787 2.675c-.415.601-.728 1.354-.94 2.286-.152.559-.152 1.244 0 2.04.144.805.475 1.431.966 1.88.762.77 1.498 1.126 2.21 1.067.228 0 .541-.093.93-.28.39-.178.687-.525.907-1.041.423-.94.779-1.414 1.067-1.414.406 0 .635.237.668.694 0 .102-.135.517-.397 1.245-.153.33-.348.677-.593 1.041-.322.432-.457.61-.423.542.262.948.702 1.11 1.312.5.178-.178.39-.525.618-1.016.237-.5.601-1.169 1.092-2.007.584-.982 1.202-1.77 1.863-2.388.66-.61 1.244-1.109 1.76-1.481.297-.22.661-.466 1.093-.745.432-.288 1.008-.576 1.736-.872.576-.229 1.219-.517 1.922-.856s1.329-.77 1.87-1.303c.763-.745 1.347-1.66 1.762-2.752.22-.61.296-1.363.245-2.26-.144-.56.136-.839.847-.839.533 0 .83.271.898.821 0 1.863-.534 3.565-1.592 5.106.347 1.058.44 2.218.27 3.471-.143 1.008-.499 2.091-1.05 3.243-.558 1.143-1.676 2.421-3.36 3.827-3.43 2.845-5.046 5.774-4.86 8.78h12.175zM9.338 29.613c-.483.297-.77.695-.872 1.194.017.542-.237.839-.762.89-.584.067-.88-.178-.898-.746.068-1.092.55-1.955 1.465-2.599.432-.347.83-.322 1.194.093.364.449.322.838-.127 1.169zm7.366-11.827c.212.33.296.677.245 1.041-.16 1.058-.753 1.499-1.76 1.338a1.596 1.596 0 0 1-.72-.296c-.06.076-.161.262-.297.541-.178.534-.525.712-1.041.55-.508-.202-.711-.575-.593-1.117.745-1.905 2.091-3.209 4.039-3.92.567-.17.94 0 1.117.491.204.534.051.898-.448 1.092a2.745 2.745 0 0 1-.271.136c-.085.042-.17.093-.271.144z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientTransform=%22matrix(1 0 0 .97324 0 1.243)%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.13%22 x2=%2277.764%22 y1=%2237.346%22 y2=%2237.469%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M25 46.448H11.606a13.139 13.139 0 0 1-.99-5.043c0-2.975.863-5.644 2.598-8.018 1.736-2.365 3.971-4.054 6.697-5.067a6.824 6.824 0 0 1-2.861-2.398c-.737-1.071-1.1-2.283-1.1-3.634 0-1.69.575-3.156 1.735-4.392 1.151-1.244 2.574-1.961 4.267-2.15-1.346-.981-2.015-2.283-2.015-3.89 0-1.351.491-2.513 1.482-3.477.982-.964 2.176-1.442 3.581-1.442 1.389 0 2.582.478 3.573 1.442.99.964 1.49 2.126 1.49 3.477 0 1.607-.669 2.909-2.015 3.89 1.693.189 3.116.906 4.267 2.15 1.16 1.236 1.736 2.703 1.736 4.392 0 1.351-.373 2.563-1.126 3.634a7.036 7.036 0 0 1-2.862 2.398c2.726 1.013 4.962 2.702 6.697 5.067 1.736 2.374 2.6 5.043 2.6 8.018 0 1.739-.322 3.42-.966 5.043z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M25 44.808h12.175a11.79 11.79 0 0 0 .525-3.403c0-2.513-.711-4.787-2.142-6.831-1.43-2.044-3.277-3.552-5.52-4.516-1.584-.62-1.643-.659-1.643-1.738 0-.849.559-1.475 1.668-1.879 1.533-1.046 2.303-2.43 2.303-4.153 0-1.244-.432-2.324-1.287-3.263-.864-.931-1.905-1.467-3.124-1.615-1-.083-1.49-.626-1.49-1.64 0-.453.178-.873.542-1.26.897-.676 1.346-1.558 1.346-2.654 0-.898-.339-1.673-1-2.315-.66-.643-1.447-.964-2.353-.964-.94 0-1.744.32-2.396.964a3.136 3.136 0 0 0-.974 2.315c0 1.08.44 1.961 1.338 2.653.364.355.542.775.542 1.261 0 1.014-.483 1.557-1.465 1.64a4.9 4.9 0 0 0-3.133 1.615c-.855.94-1.278 2.019-1.278 3.263 0 1.722.77 3.107 2.303 4.153 1.11.412 1.668 1.046 1.668 1.879 0 1.08-.068 1.118-1.668 1.738-2.244.964-4.081 2.472-5.503 4.516-1.423 2.044-2.134 4.318-2.134 6.831 0 1.195.178 2.324.525 3.403z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.13%22 x2=%2277.764%22 y1=%2237.224%22 y2=%2237.469%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M25.821 12.022h-1.76v-3.25h-2.067c-.558 0-.838-.272-.838-.822v-.025c0-.542.28-.813.838-.813h2.066V5.004c0-.585.297-.872.89-.872.575 0 .871.287.871.872v2.108h2.134c.542 0 .813.27.813.813v.025c0 .55-.271.821-.813.821l-2.117.026zM11.03 37.744l-.813-4.64c-.017 0-.042-.033-.076-.101-.085-.119-.322-.271-.711-.457-.381-.195-.838-.517-1.346-.982a41.99 41.99 0 0 1-1.702-1.49 8.509 8.509 0 0 1-1.1-1.237C4.273 27.45 3.705 25.772 3.595 23.8c-.17-1.897.601-3.794 2.303-5.682 1.719-1.88 4.047-2.768 6.968-2.65 1.092.068 2.38.33 3.844.796.483.195.974.39 1.482.576l1.498.584c.263.136.5.271.695.398a4.38 4.38 0 0 1-.127-1.041c0-1.287.457-2.388 1.38-3.302.914-.906 2.023-1.372 3.31-1.389 1.287 0 2.388.466 3.302 1.38.906.915 1.363 2.015 1.363 3.285 0 .263-.034.61-.101 1.042.228-.144.457-.271.669-.373.762-.33 1.76-.72 3.005-1.16 1.423-.482 2.701-.753 3.844-.821 2.921-.136 5.241.753 6.943 2.65 1.668 1.888 2.447 3.785 2.328 5.681-.127 1.973-.703 3.65-1.71 5.038-.33.449-.703.863-1.118 1.253a40.5 40.5 0 0 1-1.66 1.473c-.541.466-1.007.796-1.388.982-.38.186-.6.347-.669.457a.294.294 0 0 1-.05.077c-.017.017-.026.034-.026.05l-.796 4.666 1.643 6.121c-.83.745-2.684 1.355-5.554 1.837-2.879.483-6.206.72-9.974.72-3.835 0-7.214-.254-10.118-.754-2.912-.508-4.741-1.143-5.486-1.896z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M24.95 20.675a2.295 2.295 0 0 0-.128-.423 5.606 5.606 0 0 0-.245-.72c-.051-.11-.119-.254-.195-.431a9.028 9.028 0 0 1-.254-.56c-.05-.118-.11-.27-.186-.456-.068-.195-.136-.373-.187-.534a1.735 1.735 0 0 1-.067-.474c0-.872.415-1.312 1.261-1.312.88 0 1.313.431 1.313 1.287 0 .22-.034.372-.094.474-.237.626-.355.965-.372 1.016-.254.5-.406.821-.474.965-.119.27-.195.508-.22.72-.051.101-.085.186-.102.262s-.034.136-.05.186zm-2.778 8.56c-2.066.034-3.954.136-5.673.322-1.71.178-3.03.44-3.979.77a18.973 18.973 0 0 0-1.719-1.854 33.007 33.007 0 0 1-1.727-1.744c-.83-.847-1.236-1.77-1.236-2.777 0-1.245.203-2.15.618-2.726.44-.67 1.135-1.16 2.058-1.482a8.486 8.486 0 0 1 2.802-.483c1.194 0 2.328.263 3.42.796 1.076.56 1.787 1.008 2.134 1.338 1.126 1.143 2.007 2.38 2.633 3.717.212.5.373 1.194.483 2.074.11.89.17 1.567.186 2.05zm2.777-4.318c.119-.466.212-.787.296-.965.17-.643.356-1.194.576-1.643.093-.279.237-.6.432-.973.186-.373.39-.805.61-1.279.127-.28.27-.626.415-1.033.152-.406.304-.804.448-1.202.136-.33.203-.686.203-1.067 0-.813-.296-1.498-.872-2.066-.575-.575-1.278-.863-2.108-.863-1.964 0-2.955.99-2.955 2.955 0 .38.068.736.203 1.066.365 1.076.644 1.82.839 2.236.22.474.415.906.6 1.278.179.373.34.694.466.974.22.55.398 1.092.55 1.642.035.093.128.415.297.94zm-.889 6.223c0-.66-.017-1.575-.05-2.735-.034-1.168-.161-2.142-.373-2.92-.677-2.21-1.702-3.997-3.082-5.351-.711-.695-1.795-1.347-3.268-1.94-1.685-.66-3.285-.99-4.792-.99-2.608 0-4.547.931-5.8 2.803-.711.99-1.067 2.235-1.067 3.716 0 1.626.398 2.955 1.186 3.997.415.592 1.21 1.329 2.387 2.21 1.169.872 2.168 1.684 2.972 2.43 1.44-.314 3.065-.585 4.877-.822 1.812-.229 4.149-.364 7.01-.398zm13.784 11.735l-.737-2.93c-3.225-.736-7.281-1.109-12.158-1.109-4.826 0-8.864.373-12.107 1.11l-.787 2.954c3.14-.956 7.442-1.439 12.92-1.439 2.624 0 5.071.136 7.315.398 2.252.262 4.106.601 5.554 1.016zm-.643-7.417c-3.04-.838-7.096-1.261-12.15-1.261-5.097 0-9.195.431-12.302 1.287l.372 2.506c3.125-.813 7.095-1.22 11.93-1.22 4.809 0 8.729.398 11.752 1.194zm-11.363-4.292c2.845.05 5.182.194 7.002.423 1.812.229 3.455.508 4.91.821.907-.897 1.914-1.744 3.023-2.557s1.888-1.507 2.337-2.083c.788-1.075 1.186-2.413 1.186-4.021 0-1.465-.356-2.701-1.067-3.692-1.27-1.87-3.218-2.802-5.825-2.802-1.524 0-3.108.33-4.767.99-1.507.593-2.59 1.237-3.277 1.93-1.405 1.364-2.43 3.15-3.073 5.36-.246.762-.381 1.727-.407 2.904s-.042 2.083-.042 2.727zm1.812-1.93c0-.483.06-1.16.16-2.05.111-.88.28-1.575.509-2.074.618-1.338 1.49-2.574 2.633-3.717.33-.33 1.042-.779 2.134-1.338a7.655 7.655 0 0 1 3.446-.796c.93 0 1.845.161 2.768.483.915.322 1.609.813 2.066 1.482.415.559.627 1.464.627 2.726 0 .99-.407 1.913-1.22 2.777a40.35 40.35 0 0 1-1.71 1.651c-.61.55-1.202 1.202-1.76 1.947-.958-.33-2.295-.592-4.006-.77-1.71-.186-3.59-.288-5.647-.322z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.253%22 x2=%2277.764%22 y1=%2237.224%22 y2=%2237.36%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M24.95 10.752c-.94 0-1.745-.33-2.397-.99-.652-.66-.974-1.465-.974-2.405 0-.931.322-1.727.974-2.387.652-.66 1.456-.99 2.396-.99.923 0 1.727.33 2.396.99a3.23 3.23 0 0 1 1 2.387c0 .94-.33 1.744-1 2.405-.669.66-1.473.99-2.396.99zm15.281 33.19c-.812.71-2.633 1.304-5.46 1.786-2.828.474-6.088.72-9.771.72-3.75 0-7.053-.254-9.898-.745-2.844-.5-4.64-1.118-5.384-1.863l1.566-5.952-.694-3.895L8.405 30.2 6.297 14.774l1.21-.474 6.8 11.455.152-13.64 1.685-.296 5.182 13.716 2.776-14.757h1.72l2.776 14.706L33.73 11.82l1.71.296.153 13.64 6.824-11.48 1.16.541-2.058 15.359-2.21 3.793-.694 3.945zM14.535 11.989c-.948 0-1.752-.322-2.413-.974-.66-.652-.99-1.456-.99-2.396 0-.923.33-1.719.99-2.38s1.465-.99 2.413-.99c.923 0 1.719.33 2.38.99s.99 1.457.99 2.38c0 .94-.33 1.744-.99 2.396a3.266 3.266 0 0 1-2.38.974zm20.828 0c-.94 0-1.736-.322-2.387-.974-.652-.652-.982-1.456-.982-2.396 0-.923.33-1.719.982-2.38s1.447-.99 2.387-.99c.948 0 1.753.33 2.413.99s.99 1.457.99 2.38c0 .94-.33 1.744-.99 2.396-.66.652-1.465.974-2.413.974zM5.4 14.723c-.94 0-1.736-.33-2.388-.982-.652-.652-.982-1.448-.982-2.396 0-.923.33-1.719.982-2.388C3.664 8.28 4.46 7.95 5.4 7.95c.948 0 1.744.33 2.413 1.007.66.67.99 1.465.99 2.388 0 .948-.33 1.744-.99 2.396a3.323 3.323 0 0 1-2.413.982zm39.141 0c-.94 0-1.744-.33-2.404-.982-.66-.652-.991-1.448-.991-2.396 0-.923.33-1.719.99-2.388.66-.677 1.465-1.007 2.405-1.007.931 0 1.727.33 2.388 1.007.66.67.99 1.465.99 2.388 0 .948-.33 1.744-.99 2.396a3.28 3.28 0 0 1-2.388.982z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M37.2 35.73c-3.04-.84-7.095-1.262-12.15-1.262-5.096 0-9.194.431-12.301 1.286l.372 2.507c3.124-.813 7.095-1.22 11.93-1.22 4.809 0 8.729.398 11.752 1.194zm1.736-4.437c-1.372-.5-3.302-.906-5.791-1.228-2.49-.322-5.233-.483-8.247-.483-2.946 0-5.638.153-8.085.458-2.447.304-4.378.702-5.783 1.202l1.245 2.252c1.388-.406 3.191-.703 5.41-.89 2.21-.177 4.631-.27 7.264-.27s5.063.093 7.29.27c2.235.187 4.047.492 5.436.915zm-1.092 11.853l-.737-2.93c-3.226-.736-7.281-1.109-12.158-1.109-4.826 0-8.864.373-12.107 1.11l-.788 2.954c3.142-.956 7.443-1.44 12.92-1.44 2.625 0 5.072.136 7.316.399 2.252.262 4.106.601 5.554 1.016z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.192%22 x2=%2277.736%22 y1=%2237.552%22 y2=%2237.429%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M28.408 9.22h4.216V5.825h6.799v9.296l-5.503 4.242v11.862l4.216 4.216v5.08h3.793v5.927H8.071V40.52h3.793v-5.08l4.242-4.216V19.363l-5.504-4.242V5.825h6.774V9.22h4.242V5.825h6.79z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M25.013 35.043h-10.27L13.6 36.11v1.44h22.826v-1.44l-1.143-1.067zM13.6 40.123v2.532h22.826v-2.532zM25.013 13.04h-12.7v1.142l1.812 1.364h21.801l1.761-1.364V13.04zm0 4.19h-8.679l1.482 1.169v1.414h14.393v-1.414l1.482-1.168zm0 13.547h-7.197v1.143l-1.482 1.44h17.357l-1.482-1.44v-1.143z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.094%22 x2=%2277.669%22 y1=%2237.101%22 y2=%2237.469%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M25 42.162c-.229.94-.516 1.592-.847 1.956-.33.364-.762.745-1.312 1.143-.593.415-1.295.762-2.108 1.05-.813.288-1.71.364-2.701.211l-6.968-.965a2.858 2.858 0 0 0-.762 0c-.22.034-.432.051-.635.051-.347 0-.787.076-1.32.237-.543.153-.958.381-1.254.677l-2.405-3.945c.297-.33.56-.559.788-.694.237-.127.508-.271.821-.415a9.179 9.179 0 0 1 3.073-.821c.466-.034.923-.043 1.364-.026a9.8 9.8 0 0 0 1.397-.05c.889.152 1.786.287 2.684.406.905.127 1.811.254 2.717.39.991 0 1.66-.102 2.007-.297.186-.102.474-.288.872-.55.398-.263.796-.652 1.194-1.169-.88-.093-1.77-.262-2.684-.508a24.094 24.094 0 0 1-2.405-.753l2.583-6.401c-1.296-.745-2.193-1.338-2.71-1.795a5.3 5.3 0 0 1-1.21-1.575c-.432-.762-.712-1.498-.83-2.21a9.341 9.341 0 0 1-.16-1.913c.016-.99.245-2.083.702-3.285.457-1.194 1.312-2.27 2.565-3.209a79.091 79.091 0 0 0 3.057-2.455 27.746 27.746 0 0 0 2.946-2.955c-1.22-.627-1.829-1.626-1.829-2.997 0-.932.322-1.72.974-2.388.652-.66 1.456-.99 2.396-.99.923 0 1.719.33 2.38.99.66.669.99 1.456.99 2.388 0 1.354-.61 2.353-1.83 2.997a26.796 26.796 0 0 0 2.914 2.955 56.74 56.74 0 0 0 3.09 2.455c1.236.94 2.083 2.015 2.523 3.209.449 1.202.694 2.294.72 3.285 0 .567-.051 1.202-.17 1.913s-.38 1.448-.796 2.21a6.084 6.084 0 0 1-1.253 1.575c-.5.457-1.388 1.05-2.667 1.795l2.583 6.4c-.729.263-1.55.517-2.456.754-.914.246-1.786.415-2.633.508.381.517.77.906 1.168 1.169.398.262.695.448.898.55.347.195 1.016.296 2.007.296a263.35 263.35 0 0 1 2.692-.39 81.13 81.13 0 0 0 2.718-.406c.44.051.889.068 1.346.051a13.12 13.12 0 0 1 1.405.026 9.627 9.627 0 0 1 3.074.82c.296.145.567.289.804.416.246.135.508.364.804.694l-2.43 3.945c-.296-.296-.71-.524-1.253-.677-.533-.16-.965-.237-1.295-.237-.22 0-.44-.017-.66-.05a2.794 2.794 0 0 0-.754 0l-6.95.964c-.992.153-1.914.085-2.761-.194-.855-.28-1.558-.652-2.1-1.118-.542-.449-.982-.83-1.304-1.151-.321-.322-.592-.957-.804-1.897z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M24.086 23.705v2.108c0 .61.304.914.914.914s.914-.304.914-.914v-2.134h2.236c.575 0 .872-.296.872-.897 0-.593-.297-.889-.872-.889h-2.236v-2.235c0-.61-.304-.915-.914-.915s-.914.305-.914.915v2.235H21.9c-.584 0-.872.296-.872.889 0 .601.288.897.872.897zm7.51 13.741l-1.042-2.531c-1.685-.364-3.539-.542-5.554-.542-1.998 0-3.835.178-5.503.542l-1.042 2.506c2.05-.517 4.234-.77 6.545-.77 2.286 0 4.479.262 6.596.795zm-2.083-5.114l-.72-1.735v-.67a27.03 27.03 0 0 0-3.793-.27 27.35 27.35 0 0 0-3.768.27l-.025.67-.669 1.735A25.85 25.85 0 0 1 25 31.96c1.592 0 3.09.127 4.513.372zm-.864 9.381c-.66-.5-1.33-1.287-1.99-2.362h-.787c0 .813.186 1.6.567 2.362zm-5.114 0c.381-.812.576-1.6.576-2.362h-.796c-.643 1.059-1.312 1.846-2.015 2.362z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3ClinearGradient id=%22a%22 gradientUnits=%22userSpaceOnUse%22 x1=%2221.253%22 x2=%2277.641%22 y1=%2237.592%22 y2=%2237.469%22%3E%3Cstop offset=%220%22 stop-color=%22%23fff%22/%3E%3Cstop offset=%221%22 stop-color=%22%23fff%22 stop-opacity=%220%22/%3E%3C/linearGradient%3E%3Cpath d=%22M26.178 9.395c2.6.17 5.004.838 7.222 2.015 2.21 1.169 4.098 2.676 5.656 4.513 1.092 1.287 2.117 2.845 3.082 4.665a28.684 28.684 0 0 1 2.32 5.774 36.511 36.511 0 0 1 1.253 7.46c.177 2.599.262 5.012.262 7.23v5.402H15.468c-.153 0-.22-.407-.212-1.21.009-.814.06-1.466.16-1.965.06-.398.221-.957.467-1.685.254-.728.66-1.609 1.244-2.65.263-.534.89-1.304 1.88-2.32.999-1.016 2.133-2.201 3.429-3.539.745-.762 1.32-1.719 1.744-2.879.423-1.151.601-2.201.533-3.15a8.37 8.37 0 0 1-2.006 1.22c-3.505 1.253-6.045 3.073-7.612 5.452-.118.153-.49.822-1.117 2.015-.33.627-.618 1.059-.847 1.287-.313.314-.77.491-1.363.525-.923.043-1.643-.398-2.16-1.346-.693.203-1.312.288-1.862.254-.923-.347-1.592-.72-2.006-1.117-.847-.847-1.389-1.685-1.651-2.532a9.43 9.43 0 0 1-.381-2.726c0-1.389.855-3.226 2.582-5.512 2.015-2.625 3.09-4.631 3.217-6.003 0-.593.06-1.261.178-2.007a4.198 4.198 0 0 1 .618-1.49c.22-.33.364-.558.432-.677.076-.127.212-.313.415-.559.144-.203.27-.355.372-.457.093-.11.22-.254.373-.44.178-.212.406-.457.694-.745a18.06 18.06 0 0 1-1.067-7.46c3.285 1.169 6.054 3.015 8.28 5.53.551-1.872 1.626-3.387 3.226-4.539 1.321.923 2.371 2.15 3.15 3.666z%22 fill=%22%231f1a17%22/%3E%3Cpath d=%22M15.688 17.786l.542-.28c.5-.194.652-.559.474-1.092-.195-.491-.576-.66-1.143-.491-1.947.711-3.294 2.015-4.039 3.92-.118.542.076.914.593 1.118.516.16.864-.017 1.041-.55.136-.28.229-.466.297-.543.186.144.423.246.72.297 1.007.16 1.6-.28 1.76-1.338a1.498 1.498 0 0 0-.245-1.041zM11.573 34.55c.06-.153.17-.373.322-.67.28-.693.415-1.108.415-1.244-.026-.457-.271-.694-.72-.694-.33 0-.711.474-1.16 1.414a.97.97 0 0 1-.296.347c-.449.466-.381.855.194 1.168.534.314.94.212 1.245-.321zm14.63-9.204c1.16-1.524 1.728-3.217 1.71-5.08-.067-.55-.38-.82-.94-.82-.761 0-1.057.279-.897.837.051.915-.033 1.668-.27 2.261-.382.94-.805 1.643-1.262 2.108-.254.5-.102.864.449 1.092.525.246.931.119 1.21-.398zM19.726 13.24a6.798 6.798 0 0 1 .051-1.93c-.99.194-1.922.66-2.802 1.388-.525.28-.652.67-.373 1.169.28.508.67.592 1.169.245.347-.186.669-.355.956-.508.288-.16.618-.28 1-.364zm23.25 31.454c-.017 0 0-.449.042-1.346.131-3.108.096-6.221.076-9.33a26.837 26.837 0 0 0-.889-6.613c-.84-3.31-2.124-6.485-4.072-9.297-2.634-3.845-6.814-6.033-11.286-6.976.126.766.033 1.54.076 2.311a25.82 25.82 0 0 1 4.538 2.032c4.241 2.555 6.414 7.276 7.197 11.93 1.272 6.154.453 11.557.813 17.289zM9.439 30.139c.475-.34.525-.729.144-1.194-.398-.381-.83-.415-1.312-.102-1.007.66-1.55 1.533-1.617 2.608.017.542.347.804.974.77.592-.05.88-.355.863-.922.136-.525.449-.915.948-1.16z%22 fill=%22url(%23a)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='merida'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%2250mm%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22 width=%2250mm%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M25 46.448H11.606a13.139 13.139 0 0 1-.99-5.043c0-2.975.863-5.644 2.598-8.018 1.736-2.365 3.971-4.054 6.697-5.067a6.824 6.824 0 0 1-2.861-2.398c-.737-1.071-1.1-2.283-1.1-3.634 0-1.69.575-3.156 1.735-4.392 1.151-1.244 2.574-1.961 4.267-2.15-1.346-.981-2.015-2.283-2.015-3.89 0-1.351.491-2.513 1.482-3.477.982-.964 2.176-1.442 3.581-1.442 1.389 0 2.582.478 3.573 1.442s1.49 2.126 1.49 3.477c0 1.607-.669 2.909-2.015 3.89 1.693.189 3.116.906 4.267 2.15 1.16 1.236 1.736 2.703 1.736 4.392 0 1.351-.373 2.563-1.126 3.634a7.036 7.036 0 0 1-2.862 2.398c2.726 1.013 4.962 2.702 6.697 5.067 1.736 2.374 2.6 5.043 2.6 8.018 0 1.739-.322 3.42-.966 5.043z%22 fill=%22%231f1a17%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* pirouetti */
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M1342 1632l1098 9 316 1653-1688-24z%22 fill=%22%23fefefe%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M798 3241h2217v204H798z%22/%3E%3Cpath d=%22M967 3387h1885v153H967z%22/%3E%3Cpath d=%22M794 3507h2217v204H794z%22/%3E%3C/g%3E%3Cpath d=%22M1401 1751h1061l288 1489h266v204l-161-3v63l157 3v204h-316s-26-149-71-267c-45-117-85-80-135-448-49-368-150-1101-150-1101l-939-145z%22 fill=%22%23d1d1d1%22/%3E%3Cpath d=%22M970 3442h1884v63H970z%22 fill=%22%23d1d1d1%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M1088 1531h1638v220H1088z%22/%3E%3Cpath d=%22M1278 1611s-241-328-199-572c50-285 382-408 875-435 148-8 98 1007 98 1007z%22/%3E%3Cpath d=%22M2515 1611s241-328 199-572c-50-285-382-408-875-435-148-8-98 1007-98 1007z%22/%3E%3Cpath d=%22M1560 655s253-63 226-169 114-19 114-19l10 146-350 43z%22/%3E%3Cpath d=%22M2172 647s-154-75-159-161-114-19-114-19l-10 147 282 34z%22/%3E%3Cellipse cx=%221755%22 cy=%22279%22 rx=%2291%22 ry=%2289%22/%3E%3Cellipse cx=%221784%22 cy=%22417%22 rx=%2264%22 ry=%2262%22/%3E%3Cellipse cx=%222039%22 cy=%22279%22 rx=%2291%22 ry=%2289%22/%3E%3Cellipse cx=%222010%22 cy=%22417%22 rx=%2264%22 ry=%2262%22/%3E%3Cellipse cx=%221900%22 cy=%22200%22 rx=%2297%22 ry=%22101%22/%3E%3Cpath d=%22M1836 526l-81-247 145-79 139 79-75 251z%22/%3E%3C/g%3E%3Cpath d=%22M2014 486s-49 94 18 144c66 50 231 81 319 139 89 58 240 120 241 284 2 164-33 236-139 351-107 116-175 126-175 126h288s87-152 110-226 52-167 36-267-90-225-206-280c-116-56-86-51-170-75-83-24-94-26-103-28s-95-27-95-27-45-25-70-51-55-91-55-91zm264 1045l34 220h414v-220z%22 fill=%22%23d1d1d1%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M1445 1626l892 4 419 1658-1688-24z%22/%3E%3Cpath d=%22M798 3235h2217v204H798z%22/%3E%3Cpath d=%22M967 3382h1885v153H967z%22/%3E%3Cpath d=%22M794 3501h2217v204H794z%22/%3E%3C/g%3E%3Cpath d=%22M1401 1745h965l383 1489h266v204h-161v60l157 3v204h-316s-26-149-71-267c-45-117-85-80-135-448-49-368-253-1117-253-1117l-836-129z%22 fill=%22%23d1d1d1%22/%3E%3Cpath d=%22M970 3436h1884v63H970z%22 fill=%22%23d1d1d1%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M1088 1526h1638v220H1088z%22/%3E%3Cpath d=%22M1352 1563L949 798l497 260-40-684 478 557 32 632z%22/%3E%3Cpath d=%22M2416 1563l403-764-498 259 40-683-478 556-18 632z%22/%3E%3Ccircle cx=%22949%22 cy=%22798%22 r=%22100%22/%3E%3Ccircle cx=%221406%22 cy=%22374%22 r=%22100%22/%3E%3Ccircle cx=%222361%22 cy=%22375%22 r=%22100%22/%3E%3C/g%3E%3Cg fill=%22%23d1d1d1%22%3E%3Ccircle cx=%222819%22 cy=%22799%22 r=%22100%22/%3E%3Cpath d=%22M2421 295l-97 173-240 1058h351l337-639-42-42-409 213 43-584s182-32 57-180zm-161 1231v219h466v-219z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M1259 1694l1283 4 209 1590-1688-23z%22/%3E%3Cpath d=%22M1002 1747h1802l217-1151-524 31v282h-307V636h-549v273h-320l-3-272-521-41zM793 3235h2217v204H793z%22/%3E%3Cpath d=%22M962 3382h1885v153H962z%22/%3E%3Cpath d=%22M789 3502h2217v204H789z%22/%3E%3C/g%3E%3Cg fill=%22%23d1d1d1%22%3E%3Cpath d=%22M2852 606s-146 919-168 986-94 155-94 155h213l217-1151-169 10zM1386 1747h1162l195 1488h266v204l-161-3v63l157 3v204h-316s-24-171-67-269c-42-99-90-78-139-445-49-368-153-1020-153-1020l-945-223z%22/%3E%3Cpath d=%22M964 3436h1885v63H964z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M1870 482s621 269 458 883-570 260-570 260l113-1142zM798 3238h2217v204H798z%22/%3E%3Cpath d=%22M967 3385h1885v153H967z%22/%3E%3Cpath d=%22M794 3505h2217v204H794zm786-1952h598l501 1704H1124z%22/%3E%3Cpath d=%22M1286 1511h1200v152H1286z%22/%3E%3Cpath d=%22M1885 483s-623 269-459 883 572 260 572 260L1885 484z%22/%3E%3Cellipse cx=%221880%22 cy=%22448%22 rx=%22174%22 ry=%22143%22/%3E%3C/g%3E%3Cg fill=%22%23d1d1d1%22%3E%3Cpath d=%22M1970 325s38 51 38 113c0 61-14 118-14 118s162-115-24-231zM967 3442h1885v63H967zM1994 556s221 144 300 333 66 259 50 397-68 224-68 224h209v152h-321l-17-152s-2-42-12-77c-10-36 93-85 104-240 10-155 1-253-53-368-53-116-194-269-194-269z%22/%3E%3Cpath d=%22M1541 1663h669l465 1575h341v204h-164v63h160v204h-481v-267l-84-204-312-1429z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M828 1378c-183 169-132 155-60 286s195 227 503 77 390-133 517-103 159 91 167 157-186 227-400 433c-214 205-402 243-373 671 30 428 19 525-42 592s1074 263 1221 196c147-68 543-55 465-460-78-406-208-900-10-1238s398-1042-527-1423-558 35-648 83c-90 47-121 57-175 83-98 47-463 485-639 647z%22/%3E%3Cpath d=%22M890 3239h2217v204H890z%22/%3E%3Cpath d=%22M1059 3386h1885v153H1059z%22/%3E%3Cpath d=%22M886 3506h2217v204H886z%22/%3E%3C/g%3E%3Cg fill=%22%23d1d1d1%22%3E%3Cpath d=%22M1615 1644s85-124 262-131c176-7 75-331 75-331s227 293 227 444-239 217-239 217-30-182-324-200zm1004-900s425 238 221 842-560 915-498 1226 9 364 31 391 93 27 195-4 84 44 93 89c9 44 72 421 72 421h369v-204h-159v-63h163v-204h-277s-95-448-116-728 58-454 170-653c111-200 231-777-265-1113z%22/%3E%3Cpath d=%22M1060 3443h1885v63H1060z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 170 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M953 3239h1907v204H953z%22/%3E%3Cpath d=%22M1099 3386h1621v153H1099z%22/%3E%3Cpath d=%22M950 3506h1907v204H950z%22/%3E%3C/g%3E%3Cpath d=%22M1099 3443h1621v63H1099z%22 fill=%22%23d1d1d1%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M1659 2059l296-4 1 1282-618-9z%22/%3E%3Cpath d=%22M2140 2059l-264-4v1282l617-9z%22/%3E%3Cpath d=%22M1355 1907h1115v158H1355z%22/%3E%3Cellipse cx=%221890%22 cy=%221549%22 rx=%22414%22 ry=%22433%22/%3E%3C/g%3E%3Cg fill=%22%23d1d1d1%22%3E%3Cpath d=%22M1980 1126s195 147 218 349c36 315-162 418-446 351-143-34-244-110-231-82 0 0 21 51 59 90 37 39 82 75 82 75h457s74-41 114-117c40-77 72-137 72-244s-41-199-68-237-56-71-105-114c-48-44-152-71-152-71z%22/%3E%3Cpath d=%22M2074 1907l69 158h326v-158zm-516 158h585l346 1242h-255l-168-1095z%22/%3E%3Cpath d=%22M2466 3239l70 471h321v-204h-137v-63h140v-204z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M1342 1632l1098 9 316 1653-1688-24z%22/%3E%3Cpath d=%22M798 3241h2217v204H798z%22/%3E%3Cpath d=%22M967 3388h1885v153H967z%22/%3E%3Cpath d=%22M794 3507h2217v204H794z%22/%3E%3C/g%3E%3Cpath d=%22M1401 1751h1061l288 1489h266v204l-161-3v63l157 3v204h-316s-26-149-71-267c-45-117-85-80-135-448-49-368-150-1101-150-1101l-939-145z%22 fill=%22%23111%22/%3E%3Cpath d=%22M970 3442h1884v63H970z%22 fill=%22%23111%22/%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M1088 1531h1638v220H1088z%22/%3E%3Cpath d=%22M1278 1611s-241-328-199-572c50-285 382-408 875-435 148-8 98 1007 98 1007z%22/%3E%3Cpath d=%22M2515 1611s241-328 199-572c-50-285-382-408-875-435-148-8-98 1007-98 1007z%22/%3E%3Cpath d=%22M1560 655s253-63 226-169 114-19 114-19l10 146-350 43z%22/%3E%3Cpath d=%22M2172 647s-154-75-158-161c-5-86-114-19-114-19l-10 147 282 34z%22/%3E%3Cellipse cx=%221755%22 cy=%22279%22 rx=%2291%22 ry=%2289%22/%3E%3Cellipse cx=%221784%22 cy=%22417%22 rx=%2264%22 ry=%2262%22/%3E%3Cellipse cx=%222039%22 cy=%22279%22 rx=%2291%22 ry=%2289%22/%3E%3Cellipse cx=%222010%22 cy=%22417%22 rx=%2264%22 ry=%2262%22/%3E%3Cellipse cx=%221900%22 cy=%22200%22 rx=%2297%22 ry=%22101%22/%3E%3Cpath d=%22M1836 526l-81-247 145-79 139 79-75 251z%22/%3E%3C/g%3E%3Cpath d=%22M2014 486s-49 94 18 144c66 50 231 81 319 139 89 58 240 120 241 284 2 164-33 236-139 351-107 116-175 126-175 126h288s87-152 110-226 52-167 36-267-90-225-206-280c-116-56-86-51-170-75-83-24-94-26-103-28s-95-27-95-27-45-25-70-51-55-91-55-91zm264 1045l34 220h414v-220z%22 fill=%22%23111%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M1445 1626l892 4 419 1658-1688-24z%22/%3E%3Cpath d=%22M798 3235h2217v204H798z%22/%3E%3Cpath d=%22M967 3382h1885v153H967z%22/%3E%3Cpath d=%22M794 3501h2217v204H794z%22/%3E%3C/g%3E%3Cpath d=%22M1401 1745h965l383 1489h266v204h-161v60l157 3v204h-316s-26-149-71-267c-45-117-85-80-135-448-49-368-253-1117-253-1117l-836-129z%22 fill=%22%23111%22/%3E%3Cpath d=%22M970 3436h1884v63H970z%22 fill=%22%23111%22/%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M1088 1526h1638v220H1088z%22/%3E%3Cpath d=%22M1352 1563L949 798l497 260-40-684 478 557 32 632z%22/%3E%3Cpath d=%22M2416 1563l403-765-498 260 40-683-478 556-18 632z%22/%3E%3Ccircle cx=%22949%22 cy=%22798%22 r=%22100%22/%3E%3Ccircle cx=%221406%22 cy=%22374%22 r=%22100%22/%3E%3Ccircle cx=%222361%22 cy=%22375%22 r=%22100%22/%3E%3C/g%3E%3Cg fill=%22%23111%22%3E%3Ccircle cx=%222819%22 cy=%22798%22 r=%22100%22/%3E%3Cpath d=%22M2421 295l-97 173-240 1058h351l337-639-42-42-409 213 40-584s173-34 60-180zm-161 1231v219h466v-219z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M1259 1694l1283 4 209 1590-1688-22z%22/%3E%3Cpath d=%22M1002 1747h1802l217-1151-524 31v282h-307V636h-549v273h-320l-3-272-521-41zM793 3235h2217v204H793z%22/%3E%3Cpath d=%22M962 3382h1885v153H962z%22/%3E%3Cpath d=%22M789 3502h2217v204H789z%22/%3E%3C/g%3E%3Cg fill=%22%23111%22%3E%3Cpath d=%22M2852 606s-146 919-168 986-94 155-94 155h213l217-1151-169 10zM1386 1747h1162l195 1488h266v204l-161-3v63l157 3v204h-316s-24-171-67-269c-42-99-90-78-139-445-49-368-153-1020-153-1020l-945-223z%22/%3E%3Cpath d=%22M964 3436h1885v63H964z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M1870 482s621 269 458 883-570 260-570 260l113-1142zM798 3238h2217v204H798z%22 fill=%22%23383838%22/%3E%3Cpath d=%22M967 3385h1885v153H967z%22 fill=%22%232e2e2e%22/%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M794 3505h2217v204H794zm786-1952h598l501 1704H1124z%22/%3E%3Cpath d=%22M1286 1511h1200v152H1286z%22/%3E%3Cpath d=%22M1885 483s-623 269-459 883 572 260 572 260L1885 484z%22/%3E%3Cellipse cx=%221880%22 cy=%22448%22 rx=%22174%22 ry=%22143%22/%3E%3C/g%3E%3Cg fill=%22%23111%22%3E%3Cpath d=%22M1965 323s43 54 43 115-14 118-14 118 153-118-29-233zM967 3442h1885v63H967zM1994 556s221 144 300 333 66 259 50 397-68 224-68 224h209v152h-321l-17-152s-2-42-12-77c-10-36 93-85 104-240 10-155 1-253-53-368-53-116-194-269-194-269z%22/%3E%3Cpath d=%22M1541 1663h669l465 1575h341v204h-164v63h160v204h-481v-267l-84-204-312-1429z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M829 1378c-165 151-145 140-72 271 72 131 241 188 400 142 158-46 506-183 633-154 127 30 159 91 167 157s-186 227-400 433c-214 205-402 243-373 671 30 428 19 525-42 592s1074 263 1221 196c147-68 543-55 465-460-78-406-208-900-10-1238s398-1042-527-1423-558 35-648 83c-90 47-121 57-175 83-98 47-462 486-639 647z%22/%3E%3Cpath d=%22M890 3239h2217v204H890z%22/%3E%3Cpath d=%22M1059 3386h1885v153H1059z%22/%3E%3Cpath d=%22M886 3506h2217v204H886z%22/%3E%3C/g%3E%3Cg fill=%22%23111%22%3E%3Cpath d=%22M1615 1644s85-124 262-131c176-7 75-331 75-331s227 293 227 444-239 217-239 217-30-182-324-200zm1004-900s425 238 221 842-560 915-498 1226 9 364 31 391 93 27 195-4 84 44 93 89c9 44 72 421 72 421h369v-204h-159v-63h163v-204h-277s-95-448-116-728 58-454 170-653c111-200 231-777-265-1113z%22/%3E%3Cpath d=%22M1060 3443h1885v63H1060z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='pirouetti'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg clip-rule=%22evenodd%22 fill-rule=%22evenodd%22 height=%22144%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 170 3810 3810%22 width=%22144%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M953 3239h1907v204H953z%22/%3E%3Cpath d=%22M1099 3386h1621v153H1099z%22/%3E%3Cpath d=%22M950 3506h1907v204H950z%22/%3E%3C/g%3E%3Cpath d=%22M1099 3443h1621v63H1099z%22 fill=%22%23111%22/%3E%3Cg fill=%22%23383838%22%3E%3Cpath d=%22M1659 2059l296-4 1 1282-618-9z%22/%3E%3Cpath d=%22M2140 2059l-264-4v1282l617-9z%22/%3E%3Cpath d=%22M1355 1907h1115v158H1355z%22/%3E%3Cellipse cx=%221890%22 cy=%221549%22 rx=%22414%22 ry=%22433%22/%3E%3C/g%3E%3Cg fill=%22%23111%22%3E%3Cpath d=%22M1980 1126s195 147 218 349c36 315-162 418-446 351-143-34-244-110-231-82 0 0 21 51 59 90 37 39 82 75 82 75h457s74-41 114-117c40-77 72-137 72-244s-41-199-68-237-56-71-105-114c-48-44-152-71-152-71z%22/%3E%3Cpath d=%22M2074 1907l69 158h326v-158zm-516 158h585l346 1242h-255l-168-1095z%22/%3E%3Cpath d=%22M2466 3239l70 471h321v-204h-137v-63h140v-204z%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* spatial */
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22king%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:white;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%23bfd3d7;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22base-gradient%22 x1=%22163.113%22 x2=%22702.697%22 y1=%22776.638%22 y2=%22778.811%22 gradientTransform=%22translate(1.366 -39.6) scale(1.10917)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22main-gradient%22 x1=%22150.079%22 x2=%22694.007%22 y1=%22255.254%22 y2=%22740.063%22 gradientTransform=%22translate(-23.256 -49.86) scale(1.10917)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22cross-gradient%22 x1=%22375.068%22 x2=%22535.576%22 y1=%22176.416%22 y2=%22308.934%22 gradientTransform=%22translate(-23.256 -49.86) scale(1.10917)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M493.348 343.592v-129.84H598.06v-75.459H493.348V72.16h-69.602v66.133h-87.174v75.459h87.174v129.84m-2.358 53.141c31.212 112.7 9 276.095-66 241.96-137.19-62.44-188.192-292.18 30.844-176.93-59.33-121.286-134.17-163.98-195.037-161.568-68.981 2.735-120.017 63.407-110.19 133.268 19.373 137.709 171.584 262.12 179.55 322.2m409.326-.058c4.987-68.476 177.617-200.398 183.316-326.025 5.65-126.94-213.43-225.252-309.818 32.078 221.543-118.496 150.548 107.25 40.601 177.035-69.352 44.02-106.305-117.674-72.556-244.036m-250.62 410.864-39.452-2v71.946h483.16V803.52l-32.12 2%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22cross%22 d=%22M423.747 72.16v66.134h-87.174v75.458h87.174v135.84h69.6v-135.84H598.06v-75.458H493.348V72.159Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23cross-gradient)%22/%3E%3Cpath id=%22main%22 d=%22M543.378 461.659c221.544-118.496 150.55 107.25 40.603 177.035-70.836 44.961-107.872-124.686-70.293-252.094l-94.939 1.144c35.009 112.745 13.658 286.004-63.361 250.95-137.192-62.44-188.193-292.18 30.844-176.93C259.659 203.019 62.507 301.959 81.007 433.462c20.095 142.853 183.137 271.395 179.824 328.662h409.111c-6.554-66.35 177.37-202.804 183.256-332.544 5.65-126.94-213.432-225.252-309.82 32.079Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23main-gradient)%22/%3E%3Cpath id=%22base%22 d=%22M221.352 801.521h483.16v73.945h-483.16z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23base-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22queen%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:white;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%23bfd3d7;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bottom-gradient%22 x1=%22199%22 x2=%22661.667%22 y1=%22789.833%22 y2=%22789.833%22 gradientTransform=%22matrix(1.07873 0 0 1.07873 -.308 -7.803)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22front-hair-gradient%22 x1=%22166.781%22 x2=%22718.885%22 y1=%22239.891%22 y2=%22746.557%22 gradientTransform=%22matrix(1.07873 0 0 1.07873 -2.308 -9.803)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22back-hair-gradient%22 x1=%22285.639%22 x2=%22466.667%22 y1=%22287.12%22 y2=%22587.12%22 gradientTransform=%22matrix(1.07873 0 0 1.07873 -2.308 -9.803)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M690.605 766.18c88.769-90.71 140.98-241.722 162.04-453.666-110.451 239.661-180.878 345.902-228.256 364.75 45.241-116.612 78.78-291.617 87.425-525.358-69.294 207.629-120.577 351.382-164.138 431.832-26.514-109.699-38.22-296.9-66.014-478.004-34.791 188.524-47.636 382.449-77.369 488.623-41.408-77.705-87.892-224.036-150.941-439.25-.989 223.42 22.967 393.006 60.406 508.846-48.155-34.212-117.283-142.337-221.014-357.238 11.588 214.478 62.838 367.984 150.213 459.816m8.033 46.627-22-2v68.117h469.834v-68.117l-16.786 2%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22back-hair%22 d=%22M711.814 151.906c-225.866 676.77-260.764 678.027-458.462 3.202-1.216 275.009 35.357 468.451 88.355 580.494h256.806c58.083-112.565 103.074-307.205 113.301-583.696Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23back-hair-gradient)%22/%3E%3Cpath id=%22front-hair%22 d=%22M481.662 105.734c-81.968 444.154-41.752 920.212-388.918 200.981 11.881 219.895 65.45 375.697 156.9 466.654h433.718c93.18-89.82 147.656-243.21 169.283-460.855-331.536 719.381-302.754 237.784-370.983-206.78Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23front-hair-gradient)%22/%3E%3Cpath id=%22bottom%22 d=%22M228.99 809.158h469.835v70.118H228.99z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23bottom-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22rook%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:white;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%23bfd3d7;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bottom-gradient%22 x1=%2288.716%22 x2=%22772.142%22 y1=%22286.248%22 y2=%22750.581%22 gradientTransform=%22matrix(1.0782 0 0 1.0782 -3.986 -14.41)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22center-gradient%22 x1=%2288.716%22 x2=%22772.142%22 y1=%22286.248%22 y2=%22750.581%22 gradientTransform=%22matrix(1.0782 0 0 1.0782 -37.986 -89.102)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-gradient%22 x1=%2288.716%22 x2=%22772.142%22 y1=%22286.248%22 y2=%22750.581%22 gradientTransform=%22matrix(1.0782 0 0 1.0782 -15.986 -71.102)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22m654.315 303.569 65.054 1.522c43.135-59.53 53.993-116.965 67.252-174.556l-114.596.086c-6.523 15.694-10.593 43.583-20.996 46.604-21.779 6.324-38.799 12.144-52.607 17.568-12.091-4.516-26.495-9.335-43.834-14.498-13.687-4.076-21.49-35.24-23.725-49.57l-116.056.084c-5.556 16.485-8.341 45.4-20.475 49.175-21.698 6.753-38.726 12.875-52.594 18.516-14.14-5.022-31.546-10.375-53.797-16.137-22.016-5.7-14.889-38.886-22.091-51.443l-107.944.078c5.63 60.878 10.46 115.728 55.924 176.38l56.53-1.84m5.462 48.09 16 381.61m345.022 0 16-381.61M279.35 787.163l-54.555-2.47c-28.96 31.656-25.96 54.006-36.674 80.349h554.18c-6.147-26.851-4.744-54.296-32.707-79.431l-55.586 1.552%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22center%22 d=%22m275.822 345.629 16 397.61h345.022l16-397.61z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23center-gradient)%22/%3E%3Cpath id=%22top%22 d=%22M157.905 130.999c5.766 62.36 10.697 118.39 59.316 180.815l499.102-2.587c45.68-61.009 56.731-119.768 70.297-178.692l-114.594.086c-6.524 15.694-10.595 43.584-20.997 46.604-292.698 84.994 192.123 88.995-96.44 3.07-13.687-4.076-21.492-35.24-23.726-49.571l-116.057.085c-5.556 16.486-8.341 45.4-20.475 49.176-294.979 91.796 191.18 79.433-106.39 2.379-22.016-5.701-14.888-38.886-22.091-51.444z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23top-gradient)%22/%3E%3Cpath id=%22bottom%22 d=%22M228.12 781.161c-32.525 33.548-28.891 56.567-40 83.88H742.3c-6.51-28.445-4.55-57.555-38-83.88z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23bottom-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22bishop%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:white;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%23bfd3d7;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-back-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22matrix(1.14026 0 0 1.09269 -36.623 -49.028)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22right-shoulder-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22scale(1.08391) rotate(-1.265 -177.406 837.59)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22left-shoulder-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22scale(1.08391) rotate(3.857 339.41 930.117)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-front-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22matrix(1.14026 0 0 1.09269 -36.623 -49.028)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M448.98 48c-1.336.083-2.83.288-4.49.613-41.9 8.217-41.13 30.064-19.472 64.426C453.686 71.737 468.722 46.767 448.98 48zm-23.962 65.04c-31.48 45.351-79.414 110.415-116.174 182.55-71.074 139.47-87.286 275.445 22.355 408.049 17.093 10.535 18.975 46.403 5.705 77.535l74.502-.512C293.255 822.167 76.736 842.687 85.38 881.047c0 0 234.234 13.973 314.129-34.361 28.104-17.003 46.841-45.08 57.846-66.34l39.511-.272c6.969 19.36 17.384 39.603 32.565 51.063 83.454 62.996 322.11 48.457 322.11 48.457.759-52.555-184.063-52.925-296.942-99.916l41.822-.287c-13.724-30.812-11.436-67.76 12.318-87.123 13.904-25.51 23.452-51.18 29.48-76.776 35.416-88.175 52.293-202.543 7.083-302.947-35.766-79.43-81.727-137.527-102.858-177.219-14.312 18.904-31.601 41.544-49.511 66.725-28.129-35.541-52.968-65.296-67.914-89.012zm117.425 22.286C575.5 91.664 592.86 67.063 566.311 72.27c-41.908 8.218-42.1 28.81-23.868 63.056z%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22left-shoulder%22 d=%22M469.75 751.538c-75.953 62.86-394.82 83.129-384.37 129.51 0 0 234.232 13.973 314.127-34.362 49.838-30.15 70.243-95.148 70.243-95.148z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23left-shoulder-gradient)%22/%3E%3Cpath id=%22right-shoulder%22 d=%22M484.462 730.28c71.103 99.976 368.04 82.74 367.078 149.313 0 0-238.657 14.54-322.111-48.457-35.314-26.657-44.967-100.857-44.967-100.857z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23right-shoulder-gradient)%22/%3E%3Cpath id=%22hat-back%22 d=%22M566.31 72.27c53.134-10.42-69.586 98.53-142.088 240.803C635.197 333.98 576.496 606.13 610.414 673.437c51.72-90.89 90.848-236.611 34.888-360.892C578.678 164.583 475.829 90.015 566.31 72.27Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23hat-back-gradient)%22/%3E%3Cpath id=%22hat-front%22 d=%22M444.49 48.612c53.134-10.42-63.143 104.704-135.645 246.978-71.075 139.47-87.287 275.445 22.354 408.049 17.093 10.535 18.975 46.403 5.705 77.535l259.516-1.783c-13.724-30.811-11.436-67.76 12.318-87.123 79.669-146.173 19.124-297.647-56.407-409.937C461.223 146.883 354.008 66.357 444.49 48.612Zm-14.743 321.674c-2.298 92.247 36.384 158.976 35.102 264.869-36.755 21.147-28.274-95.53-52.625-122.605-21.334-23.72-85.797-18.798-68.856-51.905 76.571-.497 125.42 28.967 201.45 17.075 6.755-20.32-49.367-22.89-65.196-36.026-21.285-17.665-25.342-85.432-49.875-71.408z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23hat-front-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22knight%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:white;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%23bfd3d7;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22main-gradient%22 x1=%22163.677%22 x2=%22741.164%22 y1=%22244.156%22 y2=%22814.156%22 gradientTransform=%22matrix(1.10882 0 0 1.10882 -23.077 -23.377)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M391.91 61.45c-1.872 129.02 4.719 80.296-76.698 20.736 12.565 84.162 4.036 86.935-17.714 122.95-11.903 19.71-22.394 81.77-29.842 95.449-45.132 82.89-148.785 191.103-148.607 226.381.227 44.656 53.337 84.63 101.92 37.407-45.452 66.536 91.773-.302 149.28-41.341 76.122 46.86 182.47-4.418 184.447-79.712 34.64 170.31-288.835 199.89-306.114 420.796 241.083 55.034 375.362-124.27 522.306 14.384 75.118-217.801 82.05-581.866-267.162-718.365-47.462-18.553-67.401-66.275-111.817-98.685Z%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22main%22 d=%22M391.91 61.45c-1.872 129.02 4.719 80.296-76.698 20.736 12.565 84.162 4.036 86.935-17.714 122.95-11.903 19.71-22.394 81.77-29.842 95.449-45.132 82.89-148.785 191.103-148.607 226.381.227 44.656 53.337 84.63 101.92 37.407-45.452 66.536 91.773-.302 149.28-41.341 76.122 46.86 182.47-4.418 184.447-79.712 34.64 170.31-288.835 199.89-306.114 420.796 241.083 55.034 375.362-124.27 522.306 14.384 75.118-217.801 82.05-581.866-267.162-718.365-47.462-18.553-67.401-66.275-111.817-98.685Zm-1.458 240.252c-7.892 11.198-24.49 29.475-39.052 26.8-13.465-2.475-18.883-7.04-19.504-22.984-.523-13.426 47.048-12.993 58.556-3.816z%22 class=%22base stroke-color%22 style=%22fill:url(%23main-gradient);stroke-width:20%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22pawn%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:white;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%23bfd3d7;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22body-gradient%22 x1=%22316.104%22 x2=%22671.391%22 y1=%22819.382%22 y2=%22929.903%22 gradientTransform=%22matrix(.90256 0 0 .90256 49.53 -107.353)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22main-gradient%22 x1=%22289.323%22 x2=%22632.554%22 y1=%22510.829%22 y2=%22666.313%22 gradientTransform=%22matrix(.77344 0 0 .77344 108.282 -19.306)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M460.195 305.537c-77.6 0-140.507 64.062-140.507 143.086.179 39.335 16.253 76.86 44.44 103.754-7.673-88.861 209.21-79.895 188.567 3.633 30.426-27.098 47.918-66.225 48.008-107.387 0-79.024-62.907-143.086-140.508-143.086zm47.383 247.432-101.539.66c-25.392 205.944-140.792 212.006-127.57 303.533l355.502.223c11.141-100.852-107.312-99.908-126.393-304.416z%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22main%22 d=%22M460.195 305.538c-77.6 0-140.507 64.061-140.507 143.085.179 39.335 16.252 76.86 44.44 103.754-7.674-88.861 209.21-79.895 188.566 3.633 30.426-27.097 47.919-66.225 48.01-107.387 0-79.024-62.909-143.086-140.51-143.085z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23main-gradient)%22/%3E%3Cpath id=%22body%22 d=%22M278.47 857.163c-13.222-91.527 102.178-97.591 127.57-303.535l101.537-.658c19.081 204.508 137.535 203.564 126.394 304.415z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23body-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22king%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:%237f899b;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%231c1c2f;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22base-gradient%22 x1=%22163.113%22 x2=%22702.697%22 y1=%22776.638%22 y2=%22778.811%22 gradientTransform=%22translate(1.366 -39.6) scale(1.10917)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22main-gradient%22 x1=%22150.079%22 x2=%22694.007%22 y1=%22255.254%22 y2=%22740.063%22 gradientTransform=%22translate(-23.256 -49.86) scale(1.10917)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22cross-gradient%22 x1=%22375.068%22 x2=%22535.576%22 y1=%22176.416%22 y2=%22308.934%22 gradientTransform=%22translate(-23.256 -49.86) scale(1.10917)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M493.348 343.592v-129.84H598.06v-75.459H493.348V72.16h-69.602v66.133h-87.174v75.459h87.174v129.84m-2.358 53.141c31.212 112.7 9 276.095-66 241.96-137.19-62.44-188.192-292.18 30.844-176.93-59.33-121.286-134.17-163.98-195.037-161.568-68.981 2.735-120.017 63.407-110.19 133.268 19.373 137.709 171.584 262.12 179.55 322.2m409.326-.058c4.987-68.476 177.617-200.398 183.316-326.025 5.65-126.94-213.43-225.252-309.818 32.078 221.543-118.496 150.548 107.25 40.601 177.035-69.352 44.02-106.305-117.674-72.556-244.036m-250.62 410.864-39.452-2v71.946h483.16V803.52l-32.12 2%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22cross%22 d=%22M423.747 72.16v66.134h-87.174v75.458h87.174v135.84h69.6v-135.84H598.06v-75.458H493.348V72.159Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23cross-gradient)%22/%3E%3Cpath id=%22main%22 d=%22M543.378 461.659c221.544-118.496 150.55 107.25 40.603 177.035-70.836 44.961-107.872-124.686-70.293-252.094l-94.939 1.144c35.009 112.745 13.658 286.004-63.361 250.95-137.192-62.44-188.193-292.18 30.844-176.93C259.659 203.019 62.507 301.959 81.007 433.462c20.095 142.853 183.137 271.395 179.824 328.662h409.111c-6.554-66.35 177.37-202.804 183.256-332.544 5.65-126.94-213.432-225.252-309.82 32.079Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23main-gradient)%22/%3E%3Cpath id=%22base%22 d=%22M221.352 801.521h483.16v73.945h-483.16z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23base-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22queen%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:%237f899b;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%231c1c2f;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bottom-gradient%22 x1=%22199%22 x2=%22661.667%22 y1=%22789.833%22 y2=%22789.833%22 gradientTransform=%22matrix(1.07873 0 0 1.07873 -.308 -7.803)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22front-hair-gradient%22 x1=%22166.781%22 x2=%22718.885%22 y1=%22239.891%22 y2=%22746.557%22 gradientTransform=%22matrix(1.07873 0 0 1.07873 -2.308 -9.803)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22back-hair-gradient%22 x1=%22285.639%22 x2=%22466.667%22 y1=%22287.12%22 y2=%22587.12%22 gradientTransform=%22matrix(1.07873 0 0 1.07873 -2.308 -9.803)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M690.605 766.18c88.769-90.71 140.98-241.722 162.04-453.666-110.451 239.661-180.878 345.902-228.256 364.75 45.241-116.612 78.78-291.617 87.425-525.358-69.294 207.629-120.577 351.382-164.138 431.832-26.514-109.699-38.22-296.9-66.014-478.004-34.791 188.524-47.636 382.449-77.369 488.623-41.408-77.705-87.892-224.036-150.941-439.25-.989 223.42 22.967 393.006 60.406 508.846-48.155-34.212-117.283-142.337-221.014-357.238 11.588 214.478 62.838 367.984 150.213 459.816m8.033 46.627-22-2v68.117h469.834v-68.117l-16.786 2%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22back-hair%22 d=%22M711.814 151.906c-225.866 676.77-260.764 678.027-458.462 3.202-1.216 275.009 35.357 468.451 88.355 580.494h256.806c58.083-112.565 103.074-307.205 113.301-583.696Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23back-hair-gradient)%22/%3E%3Cpath id=%22front-hair%22 d=%22M481.662 105.734c-81.968 444.154-41.752 920.212-388.918 200.981 11.881 219.895 65.45 375.697 156.9 466.654h433.718c93.18-89.82 147.656-243.21 169.283-460.855-331.536 719.381-302.754 237.784-370.983-206.78Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23front-hair-gradient)%22/%3E%3Cpath id=%22bottom%22 d=%22M228.99 809.158h469.835v70.118H228.99z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23bottom-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22rook%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:%237f899b;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%231c1c2f;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22bottom-gradient%22 x1=%2288.716%22 x2=%22772.142%22 y1=%22286.248%22 y2=%22750.581%22 gradientTransform=%22matrix(1.0782 0 0 1.0782 -3.986 -14.41)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22center-gradient%22 x1=%2288.716%22 x2=%22772.142%22 y1=%22286.248%22 y2=%22750.581%22 gradientTransform=%22matrix(1.0782 0 0 1.0782 -37.986 -89.102)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22top-gradient%22 x1=%2288.716%22 x2=%22772.142%22 y1=%22286.248%22 y2=%22750.581%22 gradientTransform=%22matrix(1.0782 0 0 1.0782 -15.986 -71.102)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22m654.315 303.569 65.054 1.522c43.135-59.53 53.993-116.965 67.252-174.556l-114.596.086c-6.523 15.694-10.593 43.583-20.996 46.604-21.779 6.324-38.799 12.144-52.607 17.568-12.091-4.516-26.495-9.335-43.834-14.498-13.687-4.076-21.49-35.24-23.725-49.57l-116.056.084c-5.556 16.485-8.341 45.4-20.475 49.175-21.698 6.753-38.726 12.875-52.594 18.516-14.14-5.022-31.546-10.375-53.797-16.137-22.016-5.7-14.889-38.886-22.091-51.443l-107.944.078c5.63 60.878 10.46 115.728 55.924 176.38l56.53-1.84m5.462 48.09 16 381.61m345.022 0 16-381.61M279.35 787.163l-54.555-2.47c-28.96 31.656-25.96 54.006-36.674 80.349h554.18c-6.147-26.851-4.744-54.296-32.707-79.431l-55.586 1.552%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22center%22 d=%22m275.822 345.629 16 397.61h345.022l16-397.61z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23center-gradient)%22/%3E%3Cpath id=%22top%22 d=%22M157.905 130.999c5.766 62.36 10.697 118.39 59.316 180.815l499.102-2.587c45.68-61.009 56.731-119.768 70.297-178.692l-114.594.086c-6.524 15.694-10.595 43.584-20.997 46.604-292.698 84.994 192.123 88.995-96.44 3.07-13.687-4.076-21.492-35.24-23.726-49.571l-116.057.085c-5.556 16.486-8.341 45.4-20.475 49.176-294.979 91.796 191.18 79.433-106.39 2.379-22.016-5.701-14.888-38.886-22.091-51.444z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23top-gradient)%22/%3E%3Cpath id=%22bottom%22 d=%22M228.12 781.161c-32.525 33.548-28.891 56.567-40 83.88H742.3c-6.51-28.445-4.55-57.555-38-83.88z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23bottom-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22bishop%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:%237f899b;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%231c1c2f;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-back-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22matrix(1.14026 0 0 1.09269 -36.623 -49.028)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22right-shoulder-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22scale(1.08391) rotate(-1.265 -177.406 837.59)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22left-shoulder-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22scale(1.08391) rotate(3.857 339.41 930.117)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22hat-front-gradient%22 x1=%22130.983%22 x2=%22720.017%22 y1=%22444.835%22 y2=%22623.168%22 gradientTransform=%22matrix(1.14026 0 0 1.09269 -36.623 -49.028)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M448.98 48c-1.336.083-2.83.288-4.49.613-41.9 8.217-41.13 30.064-19.472 64.426C453.686 71.737 468.722 46.767 448.98 48zm-23.962 65.04c-31.48 45.351-79.414 110.415-116.174 182.55-71.074 139.47-87.286 275.445 22.355 408.049 17.093 10.535 18.975 46.403 5.705 77.535l74.502-.512C293.255 822.167 76.736 842.687 85.38 881.047c0 0 234.234 13.973 314.129-34.361 28.104-17.003 46.841-45.08 57.846-66.34l39.511-.272c6.969 19.36 17.384 39.603 32.565 51.063 83.454 62.996 322.11 48.457 322.11 48.457.759-52.555-184.063-52.925-296.942-99.916l41.822-.287c-13.724-30.812-11.436-67.76 12.318-87.123 13.904-25.51 23.452-51.18 29.48-76.776 35.416-88.175 52.293-202.543 7.083-302.947-35.766-79.43-81.727-137.527-102.858-177.219-14.312 18.904-31.601 41.544-49.511 66.725-28.129-35.541-52.968-65.296-67.914-89.012zm117.425 22.286C575.5 91.664 592.86 67.063 566.311 72.27c-41.908 8.218-42.1 28.81-23.868 63.056z%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22left-shoulder%22 d=%22M469.75 751.538c-75.953 62.86-394.82 83.129-384.37 129.51 0 0 234.232 13.973 314.127-34.362 49.838-30.15 70.243-95.148 70.243-95.148z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23left-shoulder-gradient)%22/%3E%3Cpath id=%22right-shoulder%22 d=%22M484.462 730.28c71.103 99.976 368.04 82.74 367.078 149.313 0 0-238.657 14.54-322.111-48.457-35.314-26.657-44.967-100.857-44.967-100.857z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23right-shoulder-gradient)%22/%3E%3Cpath id=%22hat-back%22 d=%22M566.31 72.27c53.134-10.42-69.586 98.53-142.088 240.803C635.197 333.98 576.496 606.13 610.414 673.437c51.72-90.89 90.848-236.611 34.888-360.892C578.678 164.583 475.829 90.015 566.31 72.27Z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23hat-back-gradient)%22/%3E%3Cpath id=%22hat-front%22 d=%22M444.49 48.612c53.134-10.42-63.143 104.704-135.645 246.978-71.075 139.47-87.287 275.445 22.354 408.049 17.093 10.535 18.975 46.403 5.705 77.535l259.516-1.783c-13.724-30.811-11.436-67.76 12.318-87.123 79.669-146.173 19.124-297.647-56.407-409.937C461.223 146.883 354.008 66.357 444.49 48.612Zm-14.743 321.674c-2.298 92.247 36.384 158.976 35.102 264.869-36.755 21.147-28.274-95.53-52.625-122.605-21.334-23.72-85.797-18.798-68.856-51.905 76.571-.497 125.42 28.967 201.45 17.075 6.755-20.32-49.367-22.89-65.196-36.026-21.285-17.665-25.342-85.432-49.875-71.408z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23hat-front-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22knight%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:%237f899b;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%231c1c2f;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22main-gradient%22 x1=%22163.677%22 x2=%22741.164%22 y1=%22244.156%22 y2=%22814.156%22 gradientTransform=%22matrix(1.10882 0 0 1.10882 -23.077 -23.377)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M391.91 61.45c-1.872 129.02 4.719 80.296-76.698 20.736 12.565 84.162 4.036 86.935-17.714 122.95-11.903 19.71-22.394 81.77-29.842 95.449-45.132 82.89-148.785 191.103-148.607 226.381.227 44.656 53.337 84.63 101.92 37.407-45.452 66.536 91.773-.302 149.28-41.341 76.122 46.86 182.47-4.418 184.447-79.712 34.64 170.31-288.835 199.89-306.114 420.796 241.083 55.034 375.362-124.27 522.306 14.384 75.118-217.801 82.05-581.866-267.162-718.365-47.462-18.553-67.401-66.275-111.817-98.685Z%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22main%22 d=%22M391.91 61.45c-1.872 129.02 4.719 80.296-76.698 20.736 12.565 84.162 4.036 86.935-17.714 122.95-11.903 19.71-22.394 81.77-29.842 95.449-45.132 82.89-148.785 191.103-148.607 226.381.227 44.656 53.337 84.63 101.92 37.407-45.452 66.536 91.773-.302 149.28-41.341 76.122 46.86 182.47-4.418 184.447-79.712 34.64 170.31-288.835 199.89-306.114 420.796 241.083 55.034 375.362-124.27 522.306 14.384 75.118-217.801 82.05-581.866-267.162-718.365-47.462-18.553-67.401-66.275-111.817-98.685Zm-1.458 240.252c-7.892 11.198-24.49 29.475-39.052 26.8-13.465-2.475-18.883-7.04-19.504-22.984-.523-13.426 47.048-12.993 58.556-3.816z%22 class=%22base stroke-color%22 style=%22fill:url(%23main-gradient);stroke-width:20%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='spatial'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 id=%22pawn%22 width=%22700pt%22 height=%22700pt%22 version=%221.0%22 viewBox=%220 0 933.333 933.333%22%3E%3Cstyle id=%22style-base%22%3E.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:%23000}%3C/style%3E%3Cdefs id=%22defs36222%22%3E%3ClinearGradient id=%22fillGradient%22%3E%3Cstop id=%22stop0%22 offset=%220%22 style=%22stop-color:%237f899b;stop-opacity:1%22/%3E%3Cstop id=%22stop1%22 offset=%221%22 style=%22stop-color:%231c1c2f;stop-opacity:1%22/%3E%3C/linearGradient%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22body-gradient%22 x1=%22316.104%22 x2=%22671.391%22 y1=%22819.382%22 y2=%22929.903%22 gradientTransform=%22matrix(.90256 0 0 .90256 49.53 -107.353)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3ClinearGradient xlink:href=%22%23fillGradient%22 id=%22main-gradient%22 x1=%22289.323%22 x2=%22632.554%22 y1=%22510.829%22 y2=%22666.313%22 gradientTransform=%22matrix(.77344 0 0 .77344 108.282 -19.306)%22 gradientUnits=%22userSpaceOnUse%22/%3E%3C/defs%3E%3Cpath id=%22boundary%22 d=%22M460.195 305.537c-77.6 0-140.507 64.062-140.507 143.086.179 39.335 16.253 76.86 44.44 103.754-7.673-88.861 209.21-79.895 188.567 3.633 30.426-27.098 47.918-66.225 48.008-107.387 0-79.024-62.907-143.086-140.508-143.086zm47.383 247.432-101.539.66c-25.392 205.944-140.792 212.006-127.57 303.533l355.502.223c11.141-100.852-107.312-99.908-126.393-304.416z%22 class=%22base stroke-color%22 style=%22fill:none;stroke-width:35%22/%3E%3Cpath id=%22main%22 d=%22M460.195 305.538c-77.6 0-140.507 64.061-140.507 143.085.179 39.335 16.252 76.86 44.44 103.754-7.674-88.861 209.21-79.895 188.566 3.633 30.426-27.097 47.919-66.225 48.01-107.387 0-79.024-62.909-143.086-140.51-143.085z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23main-gradient)%22/%3E%3Cpath id=%22body%22 d=%22M278.47 857.163c-13.222-91.527 102.178-97.591 127.57-303.535l101.537-.658c19.081 204.508 137.535 203.564 126.394 304.415z%22 class=%22base stroke-color stroke-medium%22 style=%22fill:url(%23body-gradient)%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* staunty */
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linecap=%22round%22 stroke-width=%221.2%22 d=%22M27.67 15.22v-3.54h4.44V7.25h-4.93V3.36H22.8v3.9h-4.93v4.42h4.44v3.55%22/%3E%3Crect width=%229.4%22 height=%222.79%22 x=%2220.3%22 y=%2214.21%22 fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 ry=%221.39%22/%3E%3Cpath d=%22M26.42 14.21c.72 0 1.3.63 1.3 1.4 0 .77-.58 1.4-1.3 1.4h1.97c.72 0 1.3-.63 1.3-1.4 0-.77-.58-1.4-1.3-1.4z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M21.63 14.84c-.4 0-.72.35-.72.78 0 .42.32.77.72.77h.88c-.4 0-.73-.35-.73-.78 0-.42.32-.77.72-.77z%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linecap=%22round%22 stroke-width=%221.2%22 d=%22M33.63 36.99s7.78-13.32 6.62-15.92c-1.17-2.6-8.48-4.5-15.25-4.5s-14.08 1.9-15.25 4.5c-1.16 2.6 6.61 15.92 6.61 15.92z%22/%3E%3Cpath d=%22M25 16.58c15.93 2.62 12.57 9.35 6.64 22.54l2.02-1.73s7.75-13.72 6.59-16.32c-1.55-2.83-7.5-4.16-15.25-4.5z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.77 17.3c-3.9-.19-14.63 1.8-13.5 5.01.8 3.73 2.75 7.25 4.5 10.5-5.69-10.33-5.94-13.77 9-15.52zM23.39 4l-.02 3.3h.55l.02-3.3zm-4.93 3.87v3.2h.77v-3.2zm4.41 3.21.03 2.49h.52l-.03-2.49z%22/%3E%3Cpath d=%22M26.19 3.36v3.9h.99v-3.9zm4.44 3.9v4.94h1.48V7.25zm-4.44 4.42v2.5h1.48v-2.5z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-9.13.04-11.7 1.62c-1.72 1.06-2.13 3.65-1.9 6.32h27.2c.23-2.67-.18-5.26-1.9-6.32C34.12 36.5 25 36.46 25 36.46z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.15S16.29 37 13.38 38.8c-.37.23-.7.84-.96 1.4.26-.34.5-.62.89-.86C15.87 37.78 25 37.73 25 37.73s9.13.05 11.7 1.62c.38.24.58.54.85.87a3 3 0 0 0-1.15-1.6C33.65 37.15 25 37.16 25 37.16z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M24.959 5.094a2.958 3.316 90 0 0-3.316 2.958 2.958 3.316 90 0 0 3.316 2.959 2.958 3.316 90 0 0 3.316-2.959 2.958 3.316 90 0 0-3.316-2.958z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24.836 5.732c-.376-.21-3.724.806-2.185 3.576-.235-1.545.438-3.203 2.185-3.576z%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M24.959 11.011c-6.507 0-9.595 5.884-9.595 10.358h19.263c0-4.474-3.16-10.358-9.668-10.358z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M18.161 14.977c1.042-1.478 2.92-3.22 6.84-3.38-.31.277-4.788 1.138-6.84 3.38z%22/%3E%3Cpath d=%22M24.836 5.007s.046.238 0 0c2.48 1.129 2.05 3.847.817 5.547 7.354 3.803 2.213 8.669 2.212 8.668h2.701c1.762 1.287 7.209-2.741-3.835-8.67 3.528-3.115.097-5.606-1.895-5.546z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 15.225c-1.971 0-2.348 2.65-4.137 2.86-1.82.213-3.381-2.312-5.25-1.737-1.495.46-.778 2.6-1.805 3.175-1.402.785-3.185-1.832-5.29-.298 6.838 8.829 8.085 12.377 7.983 18.819h16.998c-.103-6.443 1.144-9.99 7.983-18.82-2.106-1.533-3.889 1.084-5.29.3-1.027-.576-.311-2.716-1.806-3.176-1.868-.575-3.429 1.95-5.25 1.736-1.789-.21-2.166-2.86-4.137-2.86z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M9.895 19.34c-.136-.01-.331.056-.458.085 3.081 4.1 6.575 9.537 7.099 12.417-1.407-4.933-3.267-9.562-6.14-12.472z%22/%3E%3Cpath d=%22M39.974 18.735c-9.485 10.003-9.924 17.985-16.941 19.31h10.476c-.103-6.443 1.145-9.99 7.983-18.819 0 0-.688-.756-1.518-.491z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M14.912 18.945c.203-.088 1.184-1.808 1.98-1.95-1.42-.346-1.618-.046-1.98 1.95zm7.599-1.069c.953-.847 1.633-2.655 3.238-1.845-.798-.23-2.215 1.04-3.238 1.845zm8.609.257c.21.07 2.176-1.642 2.862-1.218 0 0-1.43 1.12-2.862 1.218z%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-9.13.048-11.691 1.62c-1.727 1.06-2.135 3.65-1.9 6.323h27.182c.235-2.672-.172-5.264-1.9-6.324-2.56-1.571-11.69-1.62-11.69-1.62z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.147s-8.712-.137-11.624 1.666c-.37.229-.7.84-.954 1.39.261-.331.502-.613.887-.849C15.869 37.783 25 37.734 25 37.734s9.132.049 11.692 1.62c.391.24.593.532.856.87.026-.076-.409-1.158-1.144-1.596C33.648 37.136 25 37.147 25 37.147z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-width=%221.2%22 d=%22M17.93 20.41c4.9-.74 9.58-.57 14.14 0M14.18 9.66c-1.06 8.77 1.1 10.68 3.75 10.75l-3.31 18.16h20.76l-3.31-18.16c2.64-.07 4.8-1.98 3.75-10.75l-3.61-.53-1.07 3.65-3.15-.1-.52-3.76h-4.94L22 12.68l-3.15.1-1.07-3.65z%22/%3E%3Cpath d=%22M17.93 20.41c6.83 0 13.12.41 14.95 16.58l2.32.38-3.13-16.43c-.03-.3-6.09-1.82-14.14-.53z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22m14.78 10.22 2.27-.29c-1.91.32-2.3 5.3-2.3 5.3-.25-.18-.2-4.9.03-5.01zm10.5-.67c-1.65 0-2.52 2.75-2.52 2.75l.33-2.73zm7.4.27.92.11c-.78.5-1.59 2-1.59 2zm-14.2 11.14 2.61-.29c-2.62.3-4.89 13.11-4.89 13.11z%22/%3E%3Cpath d=%22M34.01 9.4c.36 6.36-1.95 10.6-8.04 10.53l4.78.57c7.52.3 5.1-10.8 5.07-10.84z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-9.13.04-11.7 1.62c-1.72 1.06-2.13 3.65-1.9 6.32h27.2c.23-2.67-.18-5.26-1.9-6.32C34.12 36.5 25 36.46 25 36.46z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.15S16.29 37 13.38 38.8c-.37.23-.7.84-.96 1.4.26-.34.5-.62.89-.86C15.87 37.78 25 37.73 25 37.73s9.13.05 11.7 1.62c.38.24.58.53.85.87a3 3 0 0 0-1.15-1.6C33.65 37.15 25 37.16 25 37.16z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 5.77c-2.1 0-3.81.88-3.81 1.96l1.51 2.65C6.65 24.47 17 37.52 17 37.52h16s7.05-8.68.77-19.51l-3 4.82c-.66 1.09-1.96 1.5-2.9.91-.93-.57-1.14-1.91-.47-3l3.89-6.27a35.38 35.38 0 0 0-4-4.09l1.52-2.65c0-1.08-1.7-1.96-3.8-1.96z%22/%3E%3Cpath d=%22M25 5.77c-.82 0-1.57.13-2.2.36 4.35.84 4.99 1.12 2.57 4.35l3.24 3.56c-3.65 8.24-1.6 8-1.6 8s.7-2.65 4.11-7.77a35.7 35.7 0 0 0-3.82-3.89l1.51-2.65c0-1.08-1.7-1.96-3.81-1.96zM33.77 18l-1.01 1.52c3.73 8.41-4.14 18-4.14 18H33c.16.03 6.96-8.85.77-19.52z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M15.14 31.72c-.22-.03-3.42-9.78 5.76-18.75-2.3 1.9-7.14 13.16-5.75 18.75zM23.3 10.2l-1.47-2.6s.24-.72 1.78-1.05c-1.73 1.35-1 1.67-.3 3.65z%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-9.13.04-11.7 1.62c-1.72 1.06-2.13 3.65-1.9 6.32h27.2c.23-2.67-.18-5.26-1.9-6.32C34.12 36.5 25 36.46 25 36.46z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.15S16.29 37 13.38 38.8c-.37.23-.7.84-.96 1.4.26-.34.5-.62.89-.86C15.87 37.78 25 37.74 25 37.74s9.13.04 11.7 1.61c.38.24.58.54.85.87a3 3 0 0 0-1.15-1.6C33.65 37.15 25 37.16 25 37.16z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%22-1.5 0 50 50%22%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.192 23.015c-.1654 6.9672-11.758 5.2189-11.516 18.104l22.86.1184c-2.094-6.442 9.69-25.16-11.931-32.258v-.0001s-2.4381-2.601-5.9655-2.8237l.2227 3.5347-4.5583 4.5816c-2.6294 3.1455-8.7347 8.3784-7.7513 9.6111 3.1158 5.3041 6.3306 4.4316 6.3306 4.4316 4.2418-4.5433 5.8193-2.0894 12.309-5.2997z%22/%3E%3Cpath d=%22M19.32 14.694c-.7757.8609-.6902 1.1156-.8137 2.1503.8055.1232 1.5069.2398 2.2486.0656 2.3809-1.262.075-3.4026-1.4347-2.2162z%22 opacity=%22.35%22 paint-order=%22fill markers stroke%22/%3E%3Cpath d=%22M9.1916 22.166c-.8496.4078-.9984.9608-1.0565 1.4754.7288.4181 1.8765-.1255 2.0412-1.4316l-.9846-.044z%22 opacity=%22.3%22/%3E%3Cpath fill=%22%23fff%22 d=%22M8.1905 25.15s.6525 1.1374-1.1019-1.641c.6594-1.9774 8.263-9.0796 12.438-13.534l-.1836-3.0857s1.0689 1.6901 1.2475 3.468c-4.3898 4.39-12.22 10.833-12.824 13.213.023.6738.24 1.0278.4231 1.5797z%22/%3E%3Cpath d=%22M13.26 28.257c2.0291-3.3367 8.3914-3.2239 11.932-5.2424.3228.1024.1304 1.3697.2398 1.23.8476-1.0903 2.9259-3.279.8684-6.8743.5214 5.9575-13.718 5.5912-15.89 10.305-.2005.4355 2.1818.7932 2.85.5818z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25.8 23.781c-1.0131 5.8132-9.5449 6.1169-10.988 12.641 2.8332-6.4058 10.762-5.7136 10.988-12.641z%22/%3E%3Cpath d=%22M18.64 6.1556s3.051.738 4.9045 3.9825c20.499 7.1536 7.6413 27.937 5.7883 31.073l7.2034.026c-1.9871-3.2431 9.5482-25.597-11.931-32.258-1.7757-1.0691-2.7677-2.6092-5.9655-2.8238z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-9.1309.048-11.691 1.6192c-1.7273 1.0602-2.1348 3.6514-1.8998 6.3237h27.182c.235-2.6723-.1725-5.2636-1.8999-6.3237-2.5597-1.5711-11.691-1.6192-11.691-1.6192z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.147s-8.7121-.1373-11.624 1.6658c-.3698.2291-.6992.8394-.9536 1.3902.2608-.3313.5022-.613.8867-.849 2.5598-1.5711 11.691-1.6191 11.691-1.6191s9.1318.048 11.692 1.6191c.391.24.5924.5316.8556.8701.026-.076-.4084-1.1578-1.1438-1.5962-2.7554-1.492-11.403-1.4808-11.403-1.4808z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23f0f0f0%22 stroke=%22%233c3c3c%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M21.503 27.594h6.994M19 17.508a6.35 6.35 0 0 0 1.966 4.587l-3.65 2.1.43 3.399h4.306c-.794 3.559-2.755 7.33-5.062 8.617s-5.3 3.097-4.843 8.189h25.706c.457-5.092-2.535-6.902-4.842-8.189-2.307-1.286-4.268-5.058-5.062-8.617h4.306l.43-3.4-3.65-2.099a6.352 6.352 0 0 0 1.966-4.587c0-3.367-2.628-5.912-6-5.912-3.373 0-6.002 2.545-6.001 5.912z%22/%3E%3Cpath d=%22M24.962 11.537c1.17-.459 9.527 5.906.647 10.773l4.512 2.1-.562 3.125h2.659l.428-3.399-3.65-2.1c1.253-1.2 1.962-2.58 1.964-4.312-.468-5.416-5.998-6.186-5.998-6.186zm-2.949 15.998c4.503 7.934 9.47 9.994 13.074 9.965l-2.115-1.347c-2.075-1.49-4.732-4.858-5.062-8.618z%22 opacity=%22.15%22/%3E%3Cpath fill=%22%23fff%22 d=%22m21.983 22.213-1.647 2.347-2.356-.014 4.013-2.324zm2.324-9.946c-2.542.138-5.73 3.173-4.385 6.918l.199.643c-.33-3.489 2.127-7.116 4.186-7.561zm-6.444 25.358c-3.984 2.305-5.117 6.14-5.117 6.14-.01 0-.548-4.175 3.956-6.654s4.822-6.15 5.86-8.893c-.636 3.704-.715 7.102-4.699 9.407z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-width=%221.2%22 d=%22M27.67 15.22v-3.54h4.44V7.25h-4.93V3.36H22.8v3.9h-4.93v4.42h4.44v3.55%22/%3E%3Crect width=%229.4%22 height=%222.79%22 x=%2220.3%22 y=%2214.21%22 fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 ry=%221.39%22/%3E%3Cpath d=%22M26.42 14.21c.72 0 1.3.63 1.3 1.4 0 .77-.58 1.4-1.3 1.4h1.97c.72 0 1.3-.63 1.3-1.4 0-.77-.58-1.4-1.3-1.4z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22M21.63 14.84c-.4 0-.72.35-.72.78 0 .42.32.77.72.77h.88c-.4 0-.73-.35-.73-.78 0-.42.32-.77.72-.77z%22 opacity=%22.25%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-width=%221.2%22 d=%22M33.63 36.99s7.78-13.32 6.62-15.92c-1.17-2.6-8.48-4.5-15.25-4.5s-14.08 1.9-15.25 4.5c-1.16 2.6 6.61 15.92 6.61 15.92z%22/%3E%3Cpath d=%22M25 16.58c15.93 2.62 12.57 9.35 6.64 22.54l2.02-1.73s7.75-13.72 6.59-16.32c-1.55-2.83-7.5-4.16-15.25-4.5z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.77 17.3c-3.9-.19-14.63 1.8-13.5 5.01.8 3.73 2.75 7.25 4.5 10.5-5.69-10.33-5.94-13.77 9-15.52zM23.39 4l-.02 3.3h.55l.02-3.3zm-4.93 3.87v3.2h.77v-3.2zm4.41 3.21.03 2.49h.52l-.03-2.49z%22 opacity=%22.25%22/%3E%3Cpath d=%22M26.19 3.36v3.9h.99v-3.9zm4.44 3.9v4.94h1.48V7.25zm-4.44 4.42v2.5h1.48v-2.5z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-9.13.04-11.7 1.62c-1.72 1.06-2.13 3.65-1.9 6.32h27.2c.23-2.67-.18-5.26-1.9-6.32C34.12 36.5 25 36.46 25 36.46z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.15S16.29 37 13.38 38.8c-.37.23-.7.84-.96 1.4.26-.34.5-.62.89-.86C15.87 37.78 25 37.73 25 37.73s9.13.05 11.7 1.62c.38.24.58.54.85.87a3 3 0 0 0-1.15-1.6C33.65 37.15 25 37.16 25 37.16z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M24.959 5.094a2.958 3.316 90 0 0-3.316 2.958 2.958 3.316 90 0 0 3.316 2.959 2.958 3.316 90 0 0 3.316-2.959 2.958 3.316 90 0 0-3.316-2.958z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M24.836 5.732c-.376-.21-3.724.806-2.185 3.576-.235-1.545.438-3.203 2.185-3.576z%22 opacity=%22.25%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M24.959 11.011c-6.507 0-9.595 5.884-9.595 10.358h19.263c0-4.474-3.16-10.358-9.668-10.358z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M18.161 14.977c1.042-1.478 2.92-3.22 6.84-3.38-.31.277-4.788 1.138-6.84 3.38z%22 opacity=%22.25%22/%3E%3Cpath d=%22M24.836 5.007s.046.238 0 0c2.48 1.129 2.05 3.847.817 5.547 7.354 3.803 2.213 8.669 2.212 8.668h2.701c1.762 1.287 7.209-2.741-3.835-8.67 3.528-3.115.097-5.606-1.895-5.546z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 15.225c-1.971 0-2.348 2.65-4.137 2.86-1.82.213-3.381-2.312-5.25-1.737-1.495.46-.778 2.6-1.805 3.175-1.402.785-3.185-1.832-5.29-.298 6.838 8.829 8.085 12.377 7.983 18.819h16.998c-.103-6.443 1.144-9.99 7.983-18.82-2.106-1.533-3.889 1.084-5.29.3-1.027-.576-.311-2.716-1.806-3.176-1.868-.575-3.429 1.95-5.25 1.736-1.789-.21-2.166-2.86-4.137-2.86z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M9.895 19.34c-.136-.01-.331.056-.458.085 3.081 4.1 6.575 9.537 7.099 12.417-1.407-4.933-3.267-9.562-6.14-12.472z%22 opacity=%22.25%22/%3E%3Cpath d=%22M39.974 18.735c-9.485 10.003-9.924 17.985-16.941 19.31h10.476c-.103-6.443 1.145-9.99 7.983-18.819 0 0-.688-.756-1.518-.491z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22M14.912 18.945c.203-.088 1.184-1.808 1.98-1.95-1.42-.346-1.618-.046-1.98 1.95zm7.599-1.069c.953-.847 1.633-2.655 3.238-1.845-.798-.23-2.215 1.04-3.238 1.845zm8.609.257c.21.07 2.176-1.642 2.862-1.218 0 0-1.43 1.12-2.862 1.218z%22 opacity=%22.25%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-9.13.048-11.691 1.62c-1.727 1.06-2.135 3.65-1.9 6.323h27.182c.235-2.672-.172-5.264-1.9-6.324-2.56-1.571-11.69-1.62-11.69-1.62z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.147s-8.712-.137-11.624 1.666c-.37.229-.7.84-.954 1.39.261-.331.502-.613.887-.849C15.869 37.783 25 37.734 25 37.734s9.132.049 11.692 1.62c.391.24.593.532.856.87.026-.076-.409-1.158-1.144-1.596C33.648 37.136 25 37.147 25 37.147z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-width=%221.2%22 d=%22M17.93 20.41c4.9-.74 9.58-.57 14.14 0M14.18 9.66c-1.06 8.77 1.1 10.68 3.75 10.75l-3.31 18.16h20.76l-3.31-18.16c2.64-.07 4.8-1.98 3.75-10.75l-3.61-.53-1.07 3.65-3.15-.1-.52-3.76h-4.94L22 12.68l-3.15.1-1.07-3.65z%22/%3E%3Cpath d=%22M17.93 20.41c6.83 0 13.12.41 14.95 16.58l2.32.38-3.13-16.43c-.03-.3-6.09-1.82-14.14-.53z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22m14.78 10.22 2.27-.29c-1.91.32-2.3 5.3-2.3 5.3-.25-.18-.2-4.9.03-5.01zm10.5-.67c-1.65 0-2.52 2.75-2.52 2.75l.33-2.73zm7.4.27.92.11c-.78.5-1.59 2-1.59 2zm-14.2 11.14 2.61-.29c-2.62.3-4.9 13.05-4.9 13.11z%22 opacity=%22.25%22/%3E%3Cpath d=%22M34.01 9.4c.36 6.36-1.95 10.6-8.04 10.53l4.78.57c7.52.3 5.1-10.8 5.07-10.84z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-9.13.04-11.7 1.62c-1.72 1.06-2.13 3.65-1.9 6.32h27.2c.23-2.67-.18-5.26-1.9-6.32C34.12 36.5 25 36.46 25 36.46z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.15S16.29 37 13.38 38.8c-.37.23-.7.84-.96 1.4.26-.34.5-.62.89-.86C15.87 37.78 25 37.73 25 37.73s9.13.05 11.7 1.62c.38.24.58.53.85.87a3 3 0 0 0-1.15-1.6C33.65 37.15 25 37.16 25 37.16z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 5.77c-2.1 0-3.81.88-3.81 1.96l1.51 2.65C6.65 24.47 17 37.52 17 37.52h16s7.05-8.68.77-19.51l-3 4.82c-.66 1.09-1.96 1.5-2.9.91-.93-.57-1.14-1.91-.47-3l3.89-6.27a35.38 35.38 0 0 0-4-4.09l1.52-2.65c0-1.08-1.7-1.96-3.8-1.96z%22/%3E%3Cpath d=%22M25 5.77c-.82 0-1.57.13-2.2.36 4.35.84 4.99 1.12 2.57 4.35l3.24 3.56c-3.65 8.24-1.6 8-1.6 8s.7-2.65 4.11-7.77a35.7 35.7 0 0 0-3.82-3.89l1.51-2.65c0-1.08-1.7-1.96-3.81-1.96zM33.77 18l-1.01 1.52c3.73 8.41-4.14 18-4.14 18H33c.16.03 6.96-8.85.77-19.52z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22M15.14 31.72c-.22-.03-3.42-9.78 5.76-18.75-2.3 1.9-7.14 13.16-5.75 18.75zM23.3 10.2l-1.47-2.6s.24-.72 1.78-1.05c-1.73 1.35-1 1.67-.3 3.65z%22 opacity=%22.25%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.46s-9.13.04-11.7 1.62c-1.72 1.06-2.13 3.65-1.9 6.32h27.2c.23-2.67-.18-5.26-1.9-6.32C34.12 36.5 25 36.46 25 36.46z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.15S16.29 37 13.38 38.8c-.37.23-.7.84-.96 1.4.26-.34.5-.62.89-.86C15.87 37.78 25 37.74 25 37.74s9.13.04 11.7 1.61c.38.24.58.54.85.87a3 3 0 0 0-1.15-1.6C33.65 37.15 25 37.16 25 37.16z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%22-1.5 0 50 50%22%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25.192 23.015c-.1654 6.9672-11.758 5.2189-11.516 18.104l22.86.1184c-2.094-6.442 9.69-25.16-11.931-32.258v-.0001s-2.4381-2.601-5.9655-2.8237l.2227 3.5347-4.5583 4.5816c-2.6294 3.1455-8.7347 8.3784-7.7513 9.6111 3.1158 5.3041 6.3306 4.4316 6.3306 4.4316 4.2418-4.5433 5.8193-2.0894 12.309-5.2997z%22/%3E%3Cpath d=%22M19.32 14.694c-.7757.8609-.6902 1.1156-.8137 2.1503.8055.1232 1.5069.2398 2.2486.0656 2.3809-1.262.075-3.4026-1.4347-2.2162z%22 opacity=%22.4%22 paint-order=%22fill markers stroke%22/%3E%3Cpath d=%22M9.1916 22.166c-.8496.4078-.9984.9608-1.0565 1.4754.7288.4181 1.8765-.1255 2.0412-1.4316l-.9846-.044z%22 opacity=%22.35%22/%3E%3Cpath fill=%22%23fff%22 d=%22M8.1905 25.15s.6525 1.1374-1.1019-1.641c.6594-1.9774 8.263-9.0796 12.438-13.534l-.1836-3.0857s1.0689 1.6901 1.2475 3.468c-4.3898 4.39-12.22 10.833-12.824 13.213.023.6738.24 1.0278.4231 1.5797z%22 opacity=%22.25%22/%3E%3Cpath d=%22M13.26 28.257c2.0291-3.3367 8.3914-3.2239 11.932-5.2424.3228.1024.1304 1.3697.2398 1.23.8476-1.0903 2.9259-3.279.8684-6.8743.5214 5.9575-13.718 5.5912-15.89 10.305-.2005.4355 2.1818.7932 2.85.5818z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25.8 23.781c-1.0131 5.8132-9.5449 6.1169-10.988 12.641 2.8332-6.4058 10.762-5.7136 10.988-12.641z%22 opacity=%22.25%22/%3E%3Cpath d=%22M18.64 6.1556s3.051.738 4.9045 3.9825c20.499 7.1536 7.6413 27.937 5.7883 31.073l7.2034.026c-1.9871-3.2431 9.5482-25.597-11.931-32.258-1.7757-1.0691-2.7677-2.6092-5.9655-2.8238z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M25 36.457s-9.1309.048-11.691 1.6192c-1.7273 1.0602-2.1348 3.6514-1.8998 6.3237h27.182c.235-2.6723-.1725-5.2636-1.8999-6.3237-2.5597-1.5711-11.691-1.6192-11.691-1.6192z%22/%3E%3Cpath fill=%22%23fff%22 d=%22M25 37.147s-8.7121-.1373-11.624 1.6658c-.3698.2291-.6992.8394-.9536 1.3902.2608-.3313.5022-.613.8867-.849 2.5598-1.5711 11.691-1.6191 11.691-1.6191s9.1318.048 11.692 1.6191c.391.24.5924.5316.8556.8701.026-.076-.4084-1.1578-1.1438-1.5962-2.7554-1.492-11.403-1.4808-11.403-1.4808z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='staunty'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%235f5955%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.2%22 d=%22M21.503 27.594h6.994M19 17.508a6.35 6.35 0 0 0 1.966 4.587l-3.65 2.1.43 3.399h4.306c-.794 3.559-2.755 7.33-5.062 8.617s-5.3 3.097-4.843 8.189h25.706c.457-5.092-2.535-6.902-4.842-8.189-2.307-1.286-4.268-5.058-5.062-8.617h4.306l.43-3.4-3.65-2.099a6.352 6.352 0 0 0 1.966-4.587c0-3.367-2.628-5.912-6-5.912-3.373 0-6.002 2.545-6.001 5.912z%22/%3E%3Cpath d=%22M24.962 11.537c1.17-.459 9.527 5.906.647 10.773l4.512 2.1-.562 3.125h2.659l.428-3.399-3.65-2.1c1.253-1.2 1.962-2.58 1.964-4.312-.468-5.416-5.998-6.186-5.998-6.186zm-2.949 15.998c4.503 7.934 9.47 9.994 13.074 9.965l-2.115-1.347c-2.075-1.49-4.732-4.858-5.062-8.618z%22 opacity=%22.18%22/%3E%3Cpath fill=%22%23fff%22 d=%22m21.983 22.213-1.647 2.347-2.356-.014 4.013-2.324zm2.324-9.946c-2.542.138-5.73 3.173-4.385 6.918l.199.643c-.33-3.489 2.127-7.116 4.186-7.561zm-6.444 25.358c-3.984 2.305-5.117 6.14-5.117 6.14-.01 0-.548-4.175 3.956-6.654s4.822-6.15 5.86-8.893c-.636 3.704-.715 7.102-4.699 9.407z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|
|
/* tatiana */
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.white.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cg stroke-width=%221.04%22%3E%3Cpath fill=%22%23e9e9e9%22 stroke=%22%232a2a2a%22 stroke-width=%221.559%22 d=%22M3281.9-2090.7c6.361 0 11.51-.56 11.51-1.249l1.342-6.525c11.336-7.821 6.689-19.658-3.35-19.615-2.083.01-4.893.53-6.264 1.338l-.876-4.1h3.895c1.17.13 1.77-1.6 1.77-2.668 0-1.067-.592-2.667-1.77-2.667h-3.388v-3.092c0-.97-1.804-1.455-2.89-1.455s-2.892.485-2.892 1.455v3.092h-3.388c-1.18 0-1.77 1.6-1.77 2.667 0 1.068.6 2.799 1.77 2.668h3.895l-.876 4.1c-1.37-.807-4.18-1.328-6.264-1.338-10.038-.043-14.685 11.794-3.35 19.615l1.342 6.525c0 .689 5.15 1.246 11.51 1.249h.023z%22 style=%22paint-order:normal%22 transform=%22matrix(.96234 0 0 .9617 -3133.3 2054.9)%22/%3E%3Cpath d=%22M3287.7-2126.4c-.55-.01-.968.097-.986.185.738.752 3.757 4.344-3.738 3.792-.902.506.15 7.329.891 9.249 0 0 1.22-.547 2.05-.977 14.764-4.253 12.707 12.372 3.903 15.299-5.255.795-13.114 1.12-18.294.35l.413 2.538c6.744.603 6.596.464 15.112.59 4.2 2.842-11.95 3.965-16.7 3.396.092.263 23.03 1.225 23.058.036l1.342-6.56c11.335-7.821 6.69-19.657-3.348-19.615-.876 0-1.877.103-2.849.271l-3.411 1.065-.876-4.099h3.894c1.027.294 1.743-1.58 1.77-2.668.151-2.251-1.43-2.704-2.228-2.852z%22 opacity=%22.4%22 style=%22opacity:.2%22 transform=%22matrix(.96234 0 0 .9617 -3133.3 2054.9)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M3282.9-2129.8c-.942-.253-2.572-.194-3.17.55-.044.056-.034.215-.033.296l.028 3.576h-3.453c-.296 0-.787-.016-.97.088-.37.206-.717.94-.75 1.79-.027.689.5 1.896.877 1.93.237.02.576-.029 1.182-.01-1.884-.7-1.398-3.503-.2-3.451l3.63-.028-.046-3.143c-.014-.97.65-1.471 1.737-1.471.427 0 1.428.04 1.924.191-.519-.301-.757-.316-.757-.316zM3279.9-2119.2l-.77 3.661c-1.37-.807-4.11-1.766-6.193-1.775-9.415-.753-14.415 10.655-3.24 18.389l1.349 6.62.108.015-.452-6.716c-10.51-7.743-6.864-17.498 3.174-17.455 2.084.01 4.254.978 5.625 1.785l.908-6.87z%22 style=%22paint-order:normal%22 transform=%22matrix(.96234 0 0 .9617 -3133.3 2054.9)%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.white.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cg stroke-width=%221.026%22%3E%3Cpath fill=%22%23e9e9e9%22 stroke=%22%232a2a2a%22 stroke-width=%221.538%22 d=%22M3475.9-2129.1a4.37 4.37 0 0 0-4.373 4.367c0 1.98 1.34 3.71 3.258 4.216v11.158l-5.362-7.492c.485-.72.746-1.568.746-2.435a4.37 4.37 0 0 0-4.375-4.367 4.37 4.37 0 0 0-4.373 4.367c.065 2.14 1.935 3.816 4.328 4.365l.88 4.236 1.76 8.474 2.765 5.191 1.12 6.47c0 .801 4.318 1.45 9.647 1.45 5.329 0 9.648-.649 9.648-1.45l1.12-6.47 2.765-5.19 1.76-8.475.879-4.236c2.393-.55 4.264-2.225 4.328-4.365a4.37 4.37 0 0 0-4.373-4.367 4.37 4.37 0 0 0-4.374 4.367c0 .867.26 1.715.745 2.435l-5.361 7.493v-11.16a4.368 4.368 0 0 0 3.257-4.215 4.37 4.37 0 0 0-4.373-4.367 4.37 4.37 0 0 0-4.374 4.367c0 1.425.702 2.759 1.873 3.573l-3.52 10.364-3.52-10.364a4.358 4.358 0 0 0 1.874-3.573 4.37 4.37 0 0 0-4.374-4.367z%22 style=%22paint-order:normal%22 transform=%22matrix(.98734 0 0 .96296 -3412.8 2056)%22/%3E%3Cpath d=%22M3498.4-2124c.95.986 3.299 5.321-2.077 8.733l-5.191 13.456c-6.962 1.255-14.694 1.553-20.32-.42l1.905 3.125c6.593 2.295 17.806.487 17.806.487-1.074 3.57-2.579 6.848-5.665 9.425 0 0 4.52.12 6.612-1.376l1.57-6.797 2.765-5.19 1.76-8.474.879-4.236c2.393-.55 4.264-2.225 4.328-4.365a4.37 4.37 0 0 0-4.372-4.368z%22 opacity=%22.4%22 style=%22opacity:.2%22 transform=%22matrix(.98734 0 0 .96296 -3412.8 2056)%22/%3E%3Cg fill=%22%23010101%22%3E%3Cpath d=%22M3475.9-2129.1c-.265 0-.524.028-.776.073 3.03 1.854 2.41 6 1.605 7.374l5.192 8.659-.776-1.801-2.744-6.364a4.357 4.357 0 0 0 1.874-3.574 4.37 4.37 0 0 0-4.375-4.367zM3487.9-2129.1c-.265 0-.524.028-.776.073 4.562 1.318 1.776 6.566.654 6.989l1.238 10.482v-8.961a4.368 4.368 0 0 0 3.257-4.216 4.37 4.37 0 0 0-4.373-4.367zM3465.7-2123.7c-.266 0-.524.027-.776.073 3.285 1.245 3.06 4.466 2.378 6.646l7.388 7.575-5.361-7.492c.485-.72.745-1.568.745-2.435a4.37 4.37 0 0 0-4.374-4.367z%22 opacity=%22.25%22 style=%22paint-order:normal%22 transform=%22matrix(.98734 0 0 .96296 -3412.8 2056)%22/%3E%3C/g%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M6.852 12.406s-3.273 2.607.121 5.31c-.219-.55-.906-3.764-.12-5.31zM17.318 6.917c-.359-.155-3.303 2.198-1.152 5.149.099-.478-.836-3.765 1.152-5.149zM29.462 6.821c-.359-.155-3.504 2.177-1.307 5.201-.168-.554-.719-4.233 1.307-5.2zM9.715 18.858l2.653 12.572 2.754 5.045 1.088 6.177.702.226-1.085-6.452-2.805-4.972zM39.434 12.117c-.359-.155-3.473 2.267-1.292 5.246-.21-.984-1.032-4.354 1.292-5.246z%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.white.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cg stroke-width=%221.079%22%3E%3Cpath d=%22m3329.1-2128.5-.643 2.608-3.389.194-.589-2.593-4.87 1.003v7.87c.846 2.112 1.968 2.466 3.027 3.027h2.162l-3.148 17.25c-4.314 2.456-5.284 3.57-5.284 8.502h31.034c0-4.933-.97-6.046-5.283-8.502l-3.148-17.25h2.161c1.06-.56 2.182-.915 3.027-3.027v-7.87l-4.87-1.003-.589 2.592-3.388-.194-.643-2.608h-2.784z%22 style=%22fill:%23e9e9e9;stroke-width:1.6185;stroke:%232a2a2a%22 transform=%22matrix(.91877 0 0 .93482 -3036.3 1998.5)%22/%3E%3Cpath d=%22M3341.8-2127.8c4.172 12.439-14.069 10.218-21.331 9.793 0 0 .085 1.6 2.246 1.604h2.197-.036l-.092.503c13.852-1.045 11.329 3.048 13.773 15.557l-16.717.578-.111.613-1.051.613c5.434.595 23.899-3.102 22.257 7.89h4.543c.262-5.094-1.767-6.688-5.284-8.503l-2.962-17.53c.3-.194.96 0 1.922-.161 1.28-.213 2.624-1.483 3.08-2.748v-7.554z%22 opacity=%22.4%22 style=%22opacity:.2%22 transform=%22matrix(.91877 0 0 .93482 -3036.3 1998.5)%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22m14.384 10.418 2.172-.444c-1.21.475-1.62 3.045-2.105 6.36-.145.994-.068-5.916-.068-5.916zM22.928 9.483l-.572 2.4 1.947-2.407zM32.3 9.764l-.5 2.303 1.411-2.109zM19.07 20.608l-2.738 15.027L19.819 20.7zM11.444 43.23c-.013-.043-.031-1.011.152-1.914.209-1.022.696-2.007 1.488-2.64 1.462-1.168 2.688-1.829 2.826-1.833-2.104 1.629-4.051 3.62-4.466 6.387z%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.white.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23e9e9e9%22 stroke=%22%232a2a2a%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22 d=%22M25 5.75c-1.683 0-3.047 1.099-3.047 2.453 0 .503.194.993.554 1.405-2.54 3.306-8.781 9.8-8.985 16.336-.087 3.375 3.933 8.723 4.107 9.26.174.535 1.333.933 3.268 1.176-1.33 4.59-10.097-1.079-14.147 3.37l1.842 4.5c5.573-3.122 9.967 3.15 16.408-3.422v.001c6.44 6.57 10.835.299 16.407 3.421l1.842-4.5c-4.05-4.448-12.817 1.22-14.148-3.37 1.936-.243 3.095-.64 3.269-1.177.174-.536 4.194-5.884 4.107-9.26-.205-6.535-6.445-13.028-8.986-16.335.36-.412.554-.902.554-1.405 0-1.354-1.363-2.452-3.046-2.453z%22 style=%22paint-order:normal%22/%3E%3Cpath d=%22M25 21.106c-.699 0-1.02.342-1.02 1.025v2.453h-2.388c-.64 0-.96.31-.96.931 0 .622.32.932.96.932h2.389V28.9c0 .683.35 1.025 1.019 1.025.67 0 1.02-.342 1.02-1.025v-2.453h2.475c.612 0 .932-.31.932-.932 0-.62-.32-.931-.932-.931h-2.476V22.13c0-.683-.35-1.025-1.019-1.025z%22 class=%22st32%22 opacity=%22.5%22/%3E%3Cpath d=%22M25 5.75c-.827 0-1.62.27-2.194.75 3.937.194 4.045 2.262 3.072 3.475 1.102 2.394 2.82 4.2 4.161 6.431 0 0 11.604 21.888-13.358 17.253 0 0 .63 1.553 2.03 2.28.7.364 1.164.396 2.185.441 1.323.08 5.334.537 6.306.69 1.937 7.056 13.332.012 15.127 4.93l.921-2.249c-3.726-4.452-9.996 1.063-14.057-3.31 1.38-.214 2.392-.603 2.954-.898 0-.143 4.422-6.065 4.331-9.6-.204-6.534-6.443-13.026-8.984-16.334.359-.412.553-.904.553-1.407 0-1.354-1.364-2.452-3.047-2.452z%22 opacity=%22.4%22 style=%22opacity:.2;paint-order:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.793 6.898c-.714.32-1.265.95-1.002 1.779.085.32.315.507.466.79a.91.91 0 0 1-.143.73c-1.576 1.946-5.566 6.411-7.414 10.599-.704 1.735-1.565 3.746-1.396 5.648.475 3.413 3.388 7.392 3.388 7.392s-2.053-4.357-2.246-7.021c-.032-7.08 5.8-12.424 8.301-17.1-.379-1.577-1.172-1.464.046-2.817zM9.007 43.191c0-.058-1.345-3.262-1.345-3.262 2.92-2.56 8.369-.3 11.229-.952-4.286.847-7.639-.51-10.07 1.09z%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.white.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath d=%22m22.803 5.768-2.495.468-.995 3.425-2.169-1.423-1.427.424.76 4.951-9.702 14.98c-.358 5.956 1.871 6.017 6.143 7.647 4.973-7.019 10.689-5.016 15.371-10.323.563 6.622-15.845 9.2-13.646 18.275l27.09.058c3.811-16.778 1.02-27.75-14.607-33.796z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;fill:%23e9e9e9;image-rendering:optimizeQuality;paint-order:normal;shape-rendering:geometricPrecision;stroke-linejoin:round;stroke-width:1.5;stroke:%232a2a2a%22/%3E%3Cpath d=%22M21.619 17.718c-.45-.01-.835.285-1.09.609-.414.533-.63 1.178-.748 1.82-.044.278-.094.558-.077.838.026.098.144.063.217.044.632-.118 1.29-.128 1.907-.316.447-.14.801-.464 1.034-.84.233-.36.333-.773.471-1.168.061-.138.045-.315-.096-.407-.232-.16-.513-.242-.772-.356-.254-.097-.505-.23-.788-.224h-.059z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;opacity:.5;paint-order:fill markers stroke;shape-rendering:geometricPrecision%22/%3E%3Cpath d=%22m22.803 5.768-1.247.234 3.807 5.702c19.045 8.125 18.868 24.79 6.86 32.524l9.51.021c3.81-16.778 1.023-27.75-14.604-33.796z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;opacity:.2;shape-rendering:geometricPrecision%22/%3E%3Cpath d=%22M16.586 9.211c.146 1.706.874 4.43.571 4.836l-9.61 14.73c-.323 3.61 1.066 4.888 1.342 4.832-.087.01-1.418-2.128-.53-4.647l9.67-14.883-1.432-4.858c-.14-.132.159.072-.01-.01z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;fill:%23fff;image-rendering:optimizeQuality;paint-order:normal;shape-rendering:geometricPrecision%22/%3E%3Cpath d=%22M27.442 25.617s2.02-2.624 1.99-3.823 1.065 5.553-1.303 6.363c-.098-.413.272-1.709.198-1.993-.32-1.224-.884-.417-.885-.547z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;opacity:.2;shape-rendering:geometricPrecision;stroke-width:.26458px;stroke:%23000%22/%3E%3Cpath d=%22M28.727 28.005c-2.834 6.232-14.734 8.14-13.325 15.542-1.072-6.537 13.176-8.88 13.325-15.542z%22 style=%22fill:%23fff%22/%3E%3Cpath d=%22M10.763 28.109s-.047 2.386-1.561 2.185c0 0-1.834-1.016 1.561-2.185z%22 style=%22fill:%23000;opacity:.5%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.white.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath d=%22M25 11.961c-3.39 0-6.032 2.505-6.032 5.818 0 1.704.716 3.333 1.976 4.514-3.896 1.692-3.644 2.322-3.236 6.479h3.776c-1.66 8.227-9.02 6.338-8.862 15.47h24.755c.16-9.132-7.201-7.242-8.861-15.47h3.776c.408-4.157.66-4.787-3.237-6.48a6.189 6.189 0 0 0 1.976-4.513c0-3.313-2.64-5.818-6.031-5.818z%22 style=%22fill:%23e9e9e9;paint-order:normal;stroke-linejoin:round;stroke-width:1.5;stroke:%232a2a2a%22/%3E%3Cpath d=%22M24.999 11.96c-.594 0-1.164.081-1.702.226 8.042 1.26 6.731 8.948 2.355 10.106 1.836.664 3.7 1.606 4.342 2.453.58.767.142 2.534.142 2.534l-12.555.204.128 1.02 5.694.021c1.711 8.098 14.126 6.628 13.968 15.718.158-9.09-7.118-7.642-8.829-15.74h3.752c.309-4.98 1.019-3.604-3.238-6.21a6.198 6.198 0 0 0 1.976-4.513c0-3.314-2.643-5.82-6.033-5.82z%22 style=%22fill:%23000;opacity:.2%22/%3E%3Cpath d=%22M23.738 12.775c-.301-.106-4.279 1.244-3.986 5.297.12 1.658 1.217 3.176 1.38 3.141l.493.559s-.946-1.995-.946-3.7c0-3.157 3.064-5.3 3.064-5.3zm-1.571 16.489c-1.968 8.064-8.231 6.47-8.75 14.133v-.016c1.76-6.292 7.394-5.506 9.136-14.063z%22 style=%22fill:%23fff;paint-order:normal%22/%3E%3Cpath d=%22M22.256 22.461c-1.397.672-3.813 1.37-3.942 2.788l1.761-.404c.144-.32.641-1.406 2.21-2.392z%22 style=%22fill:%23fff%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.black.king {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cg stroke-width=%221.04%22%3E%3Cpath fill=%22%23545454%22 stroke=%22%23141414%22 stroke-width=%221.559%22 d=%22M3281.9-2090.7c6.361 0 11.51-.56 11.51-1.249l1.342-6.525c11.336-7.821 6.689-19.658-3.35-19.615-2.083.01-4.893.53-6.264 1.338l-.876-4.1h3.895c1.17.13 1.77-1.6 1.77-2.668 0-1.067-.592-2.667-1.77-2.667h-3.388v-3.092c0-.97-1.804-1.455-2.89-1.455s-2.892.485-2.892 1.455v3.092h-3.388c-1.18 0-1.77 1.6-1.77 2.667 0 1.068.6 2.799 1.77 2.668h3.895l-.876 4.1c-1.37-.807-4.18-1.328-6.264-1.338-10.038-.043-14.685 11.794-3.35 19.615l1.342 6.525c0 .689 5.15 1.246 11.51 1.249h.023z%22 style=%22paint-order:normal%22 transform=%22matrix(.96234 0 0 .9617 -3133.3 2054.9)%22/%3E%3Cpath d=%22M3287.7-2126.4c-.55-.01-.968.097-.986.185.738.752 3.757 4.344-3.738 3.792-.902.506.15 7.329.891 9.249 0 0 1.22-.547 2.05-.977 14.764-4.253 12.707 12.372 3.903 15.299-5.255.795-13.114 1.12-18.294.35l.413 2.538c6.744.603 6.596.464 15.112.59 4.2 2.842-11.95 3.965-16.7 3.396.092.263 23.03 1.225 23.058.036l1.342-6.56c11.335-7.821 6.69-19.657-3.348-19.615-.876 0-1.877.103-2.849.271l-3.411 1.065-.876-4.099h3.894c1.027.294 1.743-1.58 1.77-2.668.151-2.251-1.43-2.704-2.228-2.852z%22 opacity=%22.4%22 style=%22opacity:.25%22 transform=%22matrix(.96234 0 0 .9617 -3133.3 2054.9)%22/%3E%3Cpath fill=%22%23fff%22 d=%22M3282.9-2129.8c-.942-.253-2.572-.194-3.17.55-.044.056-.034.215-.033.296l.028 3.576h-3.453c-.296 0-.787-.016-.97.088-.37.206-.717.94-.75 1.79-.027.689.5 1.896.877 1.93.237.02.576-.029 1.182-.01-1.884-.7-1.398-3.503-.2-3.451l3.63-.028-.046-3.143c-.014-.97.65-1.471 1.737-1.471.427 0 1.428.04 1.924.191-.519-.301-.757-.316-.757-.316zM3279.9-2119.2l-.77 3.661c-1.37-.807-4.11-1.766-6.193-1.775-9.415-.753-14.415 10.655-3.24 18.389l1.349 6.62.108.015-.452-6.716c-10.51-7.743-6.864-17.498 3.174-17.455 2.084.01 4.254.978 5.625 1.785l.908-6.87z%22 opacity=%22.25%22 style=%22paint-order:normal%22 transform=%22matrix(.96234 0 0 .9617 -3133.3 2054.9)%22/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.black.queen {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cg stroke-width=%221.026%22%3E%3Cpath fill=%22%23545454%22 stroke=%22%231e1e1e%22 stroke-width=%221.538%22 d=%22M3475.9-2129.1a4.37 4.37 0 0 0-4.373 4.367c0 1.98 1.34 3.71 3.258 4.216v11.158l-5.362-7.492c.485-.72.746-1.568.746-2.435a4.37 4.37 0 0 0-4.375-4.367 4.37 4.37 0 0 0-4.373 4.367c.065 2.14 1.935 3.816 4.328 4.365l.88 4.236 1.76 8.474 2.765 5.191 1.12 6.47c0 .801 4.318 1.45 9.647 1.45 5.329 0 9.648-.649 9.648-1.45l1.12-6.47 2.765-5.19 1.76-8.475.879-4.236c2.393-.55 4.264-2.225 4.328-4.365a4.37 4.37 0 0 0-4.373-4.367 4.37 4.37 0 0 0-4.374 4.367c0 .867.26 1.715.745 2.435l-5.361 7.493v-11.16a4.368 4.368 0 0 0 3.257-4.215 4.37 4.37 0 0 0-4.373-4.367 4.37 4.37 0 0 0-4.374 4.367c0 1.425.702 2.759 1.873 3.573l-3.52 10.364-3.52-10.364a4.358 4.358 0 0 0 1.874-3.573 4.37 4.37 0 0 0-4.374-4.367z%22 style=%22paint-order:normal%22 transform=%22matrix(.98735 0 0 .96296 -3412.8 2056)%22/%3E%3Cpath d=%22M3498.4-2124c.95.986 3.299 5.321-2.077 8.733l-5.191 13.456c-6.962 1.255-14.694 1.553-20.32-.42l1.905 3.125c6.593 2.295 17.806.487 17.806.487-1.074 3.57-2.579 6.848-5.665 9.425 0 0 4.52.12 6.612-1.376l1.57-6.797 2.765-5.19 1.76-8.474.879-4.236c2.393-.55 4.264-2.225 4.328-4.365a4.37 4.37 0 0 0-4.372-4.368z%22 opacity=%22.4%22 style=%22opacity:.25%22 transform=%22matrix(.98735 0 0 .96296 -3412.8 2056)%22/%3E%3Cg fill=%22%23010101%22%3E%3Cpath d=%22M3475.9-2129.1c-.265 0-.524.028-.776.073 3.03 1.854 2.41 6 1.605 7.374l5.192 8.659-.776-1.801-2.744-6.364a4.357 4.357 0 0 0 1.874-3.574 4.37 4.37 0 0 0-4.375-4.367zM3487.9-2129.1c-.265 0-.524.028-.776.073 4.562 1.318 1.776 6.566.654 6.989l1.238 10.482v-8.961a4.368 4.368 0 0 0 3.257-4.216 4.37 4.37 0 0 0-4.373-4.367zM3465.7-2123.7c-.266 0-.524.027-.776.073 3.285 1.245 3.06 4.466 2.378 6.646l7.388 7.575-5.361-7.492c.485-.72.745-1.568.745-2.435a4.37 4.37 0 0 0-4.374-4.367z%22 opacity=%22.25%22 style=%22paint-order:normal%22 transform=%22matrix(.98735 0 0 .96296 -3412.8 2056)%22/%3E%3C/g%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M6.887 12.406s-3.273 2.607.121 5.31c-.22-.55-.906-3.764-.121-5.31zM17.353 6.917c-.36-.155-3.303 2.198-1.152 5.149.099-.478-.836-3.765 1.152-5.149zM29.497 6.821c-.359-.155-3.504 2.177-1.308 5.201-.168-.554-.718-4.233 1.308-5.2zM9.75 18.858l2.653 12.572 2.754 5.045 1.087 6.177.702.226-1.085-6.452-2.804-4.972zM39.47 12.117c-.36-.155-3.474 2.267-1.293 5.246-.21-.984-1.033-4.354 1.292-5.246z%22 opacity=%22.25%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.black.rook {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cg stroke-width=%221.079%22%3E%3Cpath d=%22m3329.1-2128.5-.643 2.608-3.389.194-.589-2.593-4.87 1.003v7.87c.846 2.112 1.968 2.466 3.027 3.027h2.162l-3.148 17.25c-4.314 2.456-5.284 3.57-5.284 8.502h31.034c0-4.933-.97-6.046-5.283-8.502l-3.148-17.25h2.161c1.06-.56 2.182-.915 3.027-3.027v-7.87l-4.87-1.003-.589 2.592-3.388-.194-.643-2.608h-2.784z%22 style=%22fill:%23545454;stroke-width:1.6185;stroke:%231e1e1e%22 transform=%22matrix(.91877 0 0 .93482 -3036.3 1998.5)%22/%3E%3Cpath d=%22M3341.8-2127.8c4.172 12.439-14.069 10.218-21.331 9.793 0 0 .085 1.6 2.246 1.604h2.197-.036l-.092.503c13.852-1.045 11.329 3.048 13.773 15.557l-16.717.578-.111.613-1.051.613c5.434.595 23.899-3.102 22.257 7.89h4.543c.262-5.094-1.767-6.688-5.284-8.503l-2.962-17.53c.3-.194.96 0 1.922-.161 1.28-.213 2.624-1.483 3.08-2.748v-7.554z%22 opacity=%22.4%22 style=%22opacity:.25%22 transform=%22matrix(.91877 0 0 .93482 -3036.3 1998.5)%22/%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22m14.384 10.418 2.172-.444c-1.21.475-1.62 3.045-2.105 6.36-.145.994-.068-5.916-.068-5.916zM22.928 9.483l-.572 2.4 1.947-2.407zM32.3 9.764l-.5 2.303 1.411-2.109zM19.07 20.608l-2.738 15.027L19.819 20.7zM11.444 43.23c-.013-.043-.031-1.011.152-1.914.209-1.022.696-2.007 1.488-2.64 1.462-1.168 2.688-1.829 2.826-1.833-2.104 1.629-4.051 3.62-4.466 6.387z%22 opacity=%22.25%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.black.bishop {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath fill=%22%23545454%22 stroke=%22%231e1e1e%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22 d=%22M25.004 5.75c-1.683 0-3.047 1.099-3.047 2.453 0 .503.194.993.554 1.405-2.54 3.306-8.781 9.8-8.985 16.336-.087 3.375 3.933 8.723 4.107 9.26.174.535 1.333.933 3.268 1.176-1.33 4.59-10.098-1.079-14.147 3.37l1.842 4.5c5.573-3.122 9.967 3.15 16.409-3.422v.001c6.44 6.57 10.835.299 16.407 3.421l1.842-4.5c-4.05-4.448-12.817 1.22-14.148-3.37 1.936-.243 3.095-.64 3.269-1.177.174-.536 4.193-5.884 4.107-9.26-.205-6.535-6.445-13.028-8.986-16.335.36-.412.554-.902.554-1.405 0-1.354-1.363-2.452-3.046-2.453z%22 style=%22paint-order:normal%22/%3E%3Cpath d=%22M25.004 21.106c-.699 0-1.02.342-1.02 1.025v2.453h-2.388c-.64 0-.96.31-.96.931 0 .622.32.932.96.932h2.389V28.9c0 .683.35 1.025 1.019 1.025.67 0 1.02-.342 1.02-1.025v-2.453h2.475c.612 0 .932-.31.932-.932 0-.62-.32-.931-.932-.931h-2.476V22.13c0-.683-.35-1.025-1.019-1.025z%22 class=%22st32%22 opacity=%22.5%22/%3E%3Cpath d=%22M25.004 5.75c-.827 0-1.62.27-2.194.75 3.937.194 4.045 2.262 3.072 3.475 1.102 2.394 2.82 4.2 4.161 6.431 0 0 11.604 21.888-13.358 17.253 0 0 .63 1.553 2.03 2.28.7.364 1.164.396 2.185.441 1.324.08 5.334.537 6.306.69 1.937 7.056 13.332.012 15.127 4.93l.921-2.249c-3.726-4.452-9.996 1.063-14.057-3.31 1.38-.214 2.392-.603 2.954-.898 0-.143 4.422-6.065 4.331-9.6-.204-6.534-6.443-13.026-8.985-16.334.36-.412.554-.904.554-1.407 0-1.354-1.364-2.452-3.047-2.452z%22 opacity=%22.4%22 style=%22opacity:.25;paint-order:normal%22/%3E%3Cpath fill=%22%23fff%22 d=%22M23.797 6.898c-.714.32-1.265.95-1.002 1.779.085.32.315.507.466.79a.91.91 0 0 1-.143.73c-1.576 1.946-5.566 6.411-7.414 10.599-.704 1.735-1.565 3.746-1.396 5.648.475 3.413 3.388 7.392 3.388 7.392s-2.053-4.357-2.246-7.021c-.032-7.08 5.8-12.424 8.301-17.1-.379-1.577-1.172-1.464.046-2.817zM9.01 43.191c0-.058-1.345-3.262-1.345-3.262 2.92-2.56 8.37-.3 11.229-.952-4.286.847-7.639-.51-10.069 1.09z%22 opacity=%22.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.black.knight {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath d=%22m22.803 5.768-2.495.468-.995 3.425-2.169-1.423-1.427.424.76 4.951-9.702 14.98c-.358 5.956 1.871 6.017 6.143 7.647 4.973-7.019 10.689-5.016 15.371-10.323.563 6.622-15.845 9.2-13.646 18.275l27.09.058c3.811-16.778 1.02-27.75-14.607-33.796z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;fill:%23545454;image-rendering:optimizeQuality;paint-order:normal;shape-rendering:geometricPrecision;stroke-linejoin:round;stroke-width:1.5;stroke:%231e1e1e%22/%3E%3Cpath d=%22M21.619 17.718c-.45-.01-.835.285-1.09.609-.414.533-.63 1.178-.748 1.82-.044.278-.094.558-.077.838.026.098.144.063.217.044.632-.118 1.29-.128 1.907-.316.447-.14.801-.464 1.034-.84.233-.36.333-.773.471-1.168.061-.138.045-.315-.096-.407-.232-.16-.513-.242-.772-.356-.254-.097-.505-.23-.788-.224h-.059z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;opacity:.5;paint-order:fill markers stroke;shape-rendering:geometricPrecision%22/%3E%3Cpath d=%22m22.803 5.768-1.247.234 3.807 5.702c19.045 8.125 18.868 24.79 6.86 32.524l9.51.021c3.81-16.778 1.023-27.75-14.604-33.796z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;opacity:.25;shape-rendering:geometricPrecision%22/%3E%3Cpath d=%22M16.586 9.211c.146 1.706.874 4.43.571 4.836l-9.61 14.73c-.323 3.61 1.066 4.888 1.342 4.832-.087.01-1.418-2.128-.53-4.647l9.67-14.883-1.432-4.858c-.14-.132.159.072-.01-.01z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;fill:%23fff;image-rendering:optimizeQuality;opacity:.25;paint-order:normal;shape-rendering:geometricPrecision%22/%3E%3Cpath d=%22M27.442 25.617s2.02-2.624 1.99-3.823 1.065 5.553-1.303 6.363c-.098-.413.272-1.709.198-1.993-.32-1.224-.884-.417-.885-.547z%22 style=%22clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;opacity:.25;shape-rendering:geometricPrecision;stroke-width:.26458px;stroke:%23000%22/%3E%3Cpath d=%22M28.727 28.005c-2.834 6.232-14.734 8.14-13.325 15.542-1.072-6.537 13.176-8.88 13.325-15.542z%22 style=%22fill:%23fff;opacity:.25%22/%3E%3Cpath d=%22M10.763 28.109s-.047 2.386-1.561 2.185c0 0-1.834-1.016 1.561-2.185z%22 style=%22fill:%23000;opacity:.5%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
.chessview[data-piece-set='tatiana'] .cg-wrap piece.black.pawn {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2250mm%22 height=%2250mm%22 fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 image-rendering=%22optimizeQuality%22 shape-rendering=%22geometricPrecision%22 text-rendering=%22geometricPrecision%22 viewBox=%220 0 50 50%22%3E%3Cpath d=%22M25 11.961c-3.39 0-6.032 2.505-6.032 5.818 0 1.704.716 3.333 1.976 4.514-3.896 1.692-3.644 2.322-3.236 6.479h3.776c-1.66 8.227-9.02 6.338-8.862 15.47h24.755c.16-9.132-7.201-7.242-8.861-15.47h3.776c.408-4.157.66-4.787-3.237-6.48a6.189 6.189 0 0 0 1.976-4.513c0-3.313-2.64-5.818-6.031-5.818z%22 style=%22fill:%23545454;paint-order:normal;stroke-linejoin:round;stroke-width:1.5;stroke:%231e1e1e%22/%3E%3Cpath d=%22M24.999 11.96c-.594 0-1.164.081-1.702.226 8.042 1.26 6.731 8.948 2.355 10.106 1.836.664 3.7 1.606 4.342 2.453.58.767.142 2.534.142 2.534l-12.555.204.128 1.02 5.694.021c1.711 8.098 14.126 6.628 13.968 15.718.158-9.09-7.118-7.642-8.829-15.74h3.752c.309-4.98 1.019-3.604-3.238-6.21a6.198 6.198 0 0 0 1.976-4.513c0-3.314-2.643-5.82-6.033-5.82z%22 style=%22fill:%23000;opacity:.25%22/%3E%3Cpath d=%22M23.738 12.775c-.301-.106-4.279 1.244-3.986 5.297.12 1.658 1.217 3.176 1.38 3.141l.493.559s-.946-1.995-.946-3.7c0-3.157 3.064-5.3 3.064-5.3zm-1.571 16.489c-1.968 8.064-8.231 6.47-8.75 14.133v-.016c1.76-6.292 7.394-5.506 9.136-14.063z%22 style=%22fill:%23fff;opacity:.25;paint-order:normal%22/%3E%3Cpath d=%22M22.256 22.461c-1.397.672-3.813 1.37-3.942 2.788l1.761-.404c.144-.32.641-1.406 2.21-2.392z%22 style=%22fill:%23fff;opacity:.25%22/%3E%3C/svg%3E") !important;
|
|
}
|
|
|