/* ── GridStack core CSS (vendored) ───────────────────────── */
.grid-stack{position:relative}.grid-stack-rtl{direction:ltr}.grid-stack-rtl>.grid-stack-item{direction:rtl}.grid-stack-placeholder>.placeholder-content{background-color:rgba(0,0,0,.1);margin:0;position:absolute;width:auto;z-index:0!important}.grid-stack>.grid-stack-item{position:absolute;padding:0}.grid-stack>.grid-stack-item>.grid-stack-item-content{margin:0;position:absolute;width:auto;overflow-x:hidden;overflow-y:auto}.grid-stack>.grid-stack-item.size-to-content:not(.size-to-content-max)>.grid-stack-item-content{overflow-y:hidden}.grid-stack-item>.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.grid-stack-item.ui-resizable-autohide>.ui-resizable-handle,.grid-stack-item.ui-resizable-disabled>.ui-resizable-handle{display:none}.grid-stack-item>.ui-resizable-ne,.grid-stack-item>.ui-resizable-nw,.grid-stack-item>.ui-resizable-se,.grid-stack-item>.ui-resizable-sw{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23666" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 20 20"><path d="m10 3 2 2H8l2-2v14l-2-2h4l-2 2"/></svg>');background-repeat:no-repeat;background-position:center}.grid-stack-item>.ui-resizable-ne{transform:translate(0,10px) rotate(45deg)}.grid-stack-item>.ui-resizable-sw{transform:rotate(45deg)}.grid-stack-item>.ui-resizable-nw{transform:translate(0,10px) rotate(-45deg)}.grid-stack-item>.ui-resizable-se{transform:rotate(-45deg)}.grid-stack-item>.ui-resizable-nw{cursor:nw-resize;width:20px;height:20px;top:0}.grid-stack-item>.ui-resizable-n{cursor:n-resize;height:10px;top:0;left:25px;right:25px}.grid-stack-item>.ui-resizable-ne{cursor:ne-resize;width:20px;height:20px;top:0}.grid-stack-item>.ui-resizable-e{cursor:e-resize;width:10px;top:15px;bottom:15px}.grid-stack-item>.ui-resizable-se{cursor:se-resize;width:20px;height:20px}.grid-stack-item>.ui-resizable-s{cursor:s-resize;height:10px;left:25px;bottom:0;right:25px}.grid-stack-item>.ui-resizable-sw{cursor:sw-resize;width:20px;height:20px}.grid-stack-item>.ui-resizable-w{cursor:w-resize;width:10px;top:15px;bottom:15px}.grid-stack-item.ui-draggable-dragging>.ui-resizable-handle{display:none!important}.grid-stack-item.ui-draggable-dragging{will-change:left,top;cursor:move}.grid-stack-item.ui-resizable-resizing{will-change:width,height}.ui-draggable-dragging,.ui-resizable-resizing{z-index:10000}.ui-draggable-dragging>.grid-stack-item-content,.ui-resizable-resizing>.grid-stack-item-content{box-shadow:1px 4px 6px rgba(0,0,0,.2);opacity:.8}.grid-stack-animate,.grid-stack-animate .grid-stack-item{transition:left .3s,top .3s,height .3s,width .3s}.grid-stack-animate .grid-stack-item.grid-stack-placeholder,.grid-stack-animate .grid-stack-item.ui-draggable-dragging,.grid-stack-animate .grid-stack-item.ui-resizable-resizing{transition:left 0s,top 0s,height 0s,width 0s}.grid-stack>.grid-stack-item[gs-y="0"]{top:0}.grid-stack>.grid-stack-item[gs-x="0"]{left:0}.gs-12>.grid-stack-item{width:8.333%}.gs-12>.grid-stack-item[gs-x="1"]{left:8.333%}.gs-12>.grid-stack-item[gs-w="2"]{width:16.667%}.gs-12>.grid-stack-item[gs-x="2"]{left:16.667%}.gs-12>.grid-stack-item[gs-w="3"]{width:25%}.gs-12>.grid-stack-item[gs-x="3"]{left:25%}.gs-12>.grid-stack-item[gs-w="4"]{width:33.333%}.gs-12>.grid-stack-item[gs-x="4"]{left:33.333%}.gs-12>.grid-stack-item[gs-w="5"]{width:41.667%}.gs-12>.grid-stack-item[gs-x="5"]{left:41.667%}.gs-12>.grid-stack-item[gs-w="6"]{width:50%}.gs-12>.grid-stack-item[gs-x="6"]{left:50%}.gs-12>.grid-stack-item[gs-w="7"]{width:58.333%}.gs-12>.grid-stack-item[gs-x="7"]{left:58.333%}.gs-12>.grid-stack-item[gs-w="8"]{width:66.667%}.gs-12>.grid-stack-item[gs-x="8"]{left:66.667%}.gs-12>.grid-stack-item[gs-w="9"]{width:75%}.gs-12>.grid-stack-item[gs-x="9"]{left:75%}.gs-12>.grid-stack-item[gs-w="10"]{width:83.333%}.gs-12>.grid-stack-item[gs-x="10"]{left:83.333%}.gs-12>.grid-stack-item[gs-w="11"]{width:91.667%}.gs-12>.grid-stack-item[gs-x="11"]{left:91.667%}.gs-12>.grid-stack-item[gs-w="12"]{width:100%}.gs-1>.grid-stack-item{width:100%}

/* ── Dashboard GridStack ─────────────────────────────────── */

/* Cards fill the full cell height */
.grid-stack-item > .grid-stack-item-content {
  display: flex;
  flex-direction: column;
}

.grid-stack-item > .grid-stack-item-content > * {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}

/* Grid guide lines in edit mode */
.dashboard-shell.is-editing .grid-stack {
  background-image:
    linear-gradient(to right,  rgba(128, 128, 128, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.12) 1px, transparent 1px);
  background-size: calc(100% / 24) 44px;
  border-radius: 0.75rem;
  outline: 1px dashed rgba(128, 128, 128, 0.25);
  outline-offset: 6px;
}

/* Placeholder shown when dragging */
.grid-stack-placeholder > .placeholder-content {
  border-radius: 0.75rem;
  border: 2px dashed rgba(128, 128, 128, 0.5) !important;
  background: rgba(128, 128, 128, 0.07) !important;
}

/* Subtle ring on widgets in edit mode */
.dashboard-shell.is-editing .grid-stack-item > .grid-stack-item-content {
  outline: 1px dashed rgba(128, 128, 128, 0.3);
  outline-offset: -2px;
  border-radius: 0.75rem;
}

/* Resize handles */
.dashboard-shell.is-editing .grid-stack-item .ui-resizable-handle {
  display: block !important;
}


/* Grade fina 144 colunas (passo ~10px nos 2 eixos). gridstack v10 nao gera larguras p/ >12 col — bloco gerado (ver dashboard_layout_controller.js). */
.gs-144>.grid-stack-item{width:0.6944%}.gs-144>.grid-stack-item[gs-x="1"]{left:0.6944%}.gs-144>.grid-stack-item[gs-x="2"]{left:1.3889%}.gs-144>.grid-stack-item[gs-x="3"]{left:2.0833%}.gs-144>.grid-stack-item[gs-x="4"]{left:2.7778%}.gs-144>.grid-stack-item[gs-x="5"]{left:3.4722%}.gs-144>.grid-stack-item[gs-x="6"]{left:4.1667%}.gs-144>.grid-stack-item[gs-x="7"]{left:4.8611%}.gs-144>.grid-stack-item[gs-x="8"]{left:5.5556%}.gs-144>.grid-stack-item[gs-x="9"]{left:6.2500%}.gs-144>.grid-stack-item[gs-x="10"]{left:6.9444%}.gs-144>.grid-stack-item[gs-x="11"]{left:7.6389%}.gs-144>.grid-stack-item[gs-x="12"]{left:8.3333%}.gs-144>.grid-stack-item[gs-x="13"]{left:9.0278%}.gs-144>.grid-stack-item[gs-x="14"]{left:9.7222%}.gs-144>.grid-stack-item[gs-x="15"]{left:10.4167%}.gs-144>.grid-stack-item[gs-x="16"]{left:11.1111%}.gs-144>.grid-stack-item[gs-x="17"]{left:11.8056%}.gs-144>.grid-stack-item[gs-x="18"]{left:12.5000%}.gs-144>.grid-stack-item[gs-x="19"]{left:13.1944%}.gs-144>.grid-stack-item[gs-x="20"]{left:13.8889%}.gs-144>.grid-stack-item[gs-x="21"]{left:14.5833%}.gs-144>.grid-stack-item[gs-x="22"]{left:15.2778%}.gs-144>.grid-stack-item[gs-x="23"]{left:15.9722%}.gs-144>.grid-stack-item[gs-x="24"]{left:16.6667%}.gs-144>.grid-stack-item[gs-x="25"]{left:17.3611%}.gs-144>.grid-stack-item[gs-x="26"]{left:18.0556%}.gs-144>.grid-stack-item[gs-x="27"]{left:18.7500%}.gs-144>.grid-stack-item[gs-x="28"]{left:19.4444%}.gs-144>.grid-stack-item[gs-x="29"]{left:20.1389%}.gs-144>.grid-stack-item[gs-x="30"]{left:20.8333%}.gs-144>.grid-stack-item[gs-x="31"]{left:21.5278%}.gs-144>.grid-stack-item[gs-x="32"]{left:22.2222%}.gs-144>.grid-stack-item[gs-x="33"]{left:22.9167%}.gs-144>.grid-stack-item[gs-x="34"]{left:23.6111%}.gs-144>.grid-stack-item[gs-x="35"]{left:24.3056%}.gs-144>.grid-stack-item[gs-x="36"]{left:25.0000%}.gs-144>.grid-stack-item[gs-x="37"]{left:25.6944%}.gs-144>.grid-stack-item[gs-x="38"]{left:26.3889%}.gs-144>.grid-stack-item[gs-x="39"]{left:27.0833%}.gs-144>.grid-stack-item[gs-x="40"]{left:27.7778%}.gs-144>.grid-stack-item[gs-x="41"]{left:28.4722%}.gs-144>.grid-stack-item[gs-x="42"]{left:29.1667%}.gs-144>.grid-stack-item[gs-x="43"]{left:29.8611%}.gs-144>.grid-stack-item[gs-x="44"]{left:30.5556%}.gs-144>.grid-stack-item[gs-x="45"]{left:31.2500%}.gs-144>.grid-stack-item[gs-x="46"]{left:31.9444%}.gs-144>.grid-stack-item[gs-x="47"]{left:32.6389%}.gs-144>.grid-stack-item[gs-x="48"]{left:33.3333%}.gs-144>.grid-stack-item[gs-x="49"]{left:34.0278%}.gs-144>.grid-stack-item[gs-x="50"]{left:34.7222%}.gs-144>.grid-stack-item[gs-x="51"]{left:35.4167%}.gs-144>.grid-stack-item[gs-x="52"]{left:36.1111%}.gs-144>.grid-stack-item[gs-x="53"]{left:36.8056%}.gs-144>.grid-stack-item[gs-x="54"]{left:37.5000%}.gs-144>.grid-stack-item[gs-x="55"]{left:38.1944%}.gs-144>.grid-stack-item[gs-x="56"]{left:38.8889%}.gs-144>.grid-stack-item[gs-x="57"]{left:39.5833%}.gs-144>.grid-stack-item[gs-x="58"]{left:40.2778%}.gs-144>.grid-stack-item[gs-x="59"]{left:40.9722%}.gs-144>.grid-stack-item[gs-x="60"]{left:41.6667%}.gs-144>.grid-stack-item[gs-x="61"]{left:42.3611%}.gs-144>.grid-stack-item[gs-x="62"]{left:43.0556%}.gs-144>.grid-stack-item[gs-x="63"]{left:43.7500%}.gs-144>.grid-stack-item[gs-x="64"]{left:44.4444%}.gs-144>.grid-stack-item[gs-x="65"]{left:45.1389%}.gs-144>.grid-stack-item[gs-x="66"]{left:45.8333%}.gs-144>.grid-stack-item[gs-x="67"]{left:46.5278%}.gs-144>.grid-stack-item[gs-x="68"]{left:47.2222%}.gs-144>.grid-stack-item[gs-x="69"]{left:47.9167%}.gs-144>.grid-stack-item[gs-x="70"]{left:48.6111%}.gs-144>.grid-stack-item[gs-x="71"]{left:49.3056%}.gs-144>.grid-stack-item[gs-x="72"]{left:50.0000%}.gs-144>.grid-stack-item[gs-x="73"]{left:50.6944%}.gs-144>.grid-stack-item[gs-x="74"]{left:51.3889%}.gs-144>.grid-stack-item[gs-x="75"]{left:52.0833%}.gs-144>.grid-stack-item[gs-x="76"]{left:52.7778%}.gs-144>.grid-stack-item[gs-x="77"]{left:53.4722%}.gs-144>.grid-stack-item[gs-x="78"]{left:54.1667%}.gs-144>.grid-stack-item[gs-x="79"]{left:54.8611%}.gs-144>.grid-stack-item[gs-x="80"]{left:55.5556%}.gs-144>.grid-stack-item[gs-x="81"]{left:56.2500%}.gs-144>.grid-stack-item[gs-x="82"]{left:56.9444%}.gs-144>.grid-stack-item[gs-x="83"]{left:57.6389%}.gs-144>.grid-stack-item[gs-x="84"]{left:58.3333%}.gs-144>.grid-stack-item[gs-x="85"]{left:59.0278%}.gs-144>.grid-stack-item[gs-x="86"]{left:59.7222%}.gs-144>.grid-stack-item[gs-x="87"]{left:60.4167%}.gs-144>.grid-stack-item[gs-x="88"]{left:61.1111%}.gs-144>.grid-stack-item[gs-x="89"]{left:61.8056%}.gs-144>.grid-stack-item[gs-x="90"]{left:62.5000%}.gs-144>.grid-stack-item[gs-x="91"]{left:63.1944%}.gs-144>.grid-stack-item[gs-x="92"]{left:63.8889%}.gs-144>.grid-stack-item[gs-x="93"]{left:64.5833%}.gs-144>.grid-stack-item[gs-x="94"]{left:65.2778%}.gs-144>.grid-stack-item[gs-x="95"]{left:65.9722%}.gs-144>.grid-stack-item[gs-x="96"]{left:66.6667%}.gs-144>.grid-stack-item[gs-x="97"]{left:67.3611%}.gs-144>.grid-stack-item[gs-x="98"]{left:68.0556%}.gs-144>.grid-stack-item[gs-x="99"]{left:68.7500%}.gs-144>.grid-stack-item[gs-x="100"]{left:69.4444%}.gs-144>.grid-stack-item[gs-x="101"]{left:70.1389%}.gs-144>.grid-stack-item[gs-x="102"]{left:70.8333%}.gs-144>.grid-stack-item[gs-x="103"]{left:71.5278%}.gs-144>.grid-stack-item[gs-x="104"]{left:72.2222%}.gs-144>.grid-stack-item[gs-x="105"]{left:72.9167%}.gs-144>.grid-stack-item[gs-x="106"]{left:73.6111%}.gs-144>.grid-stack-item[gs-x="107"]{left:74.3056%}.gs-144>.grid-stack-item[gs-x="108"]{left:75.0000%}.gs-144>.grid-stack-item[gs-x="109"]{left:75.6944%}.gs-144>.grid-stack-item[gs-x="110"]{left:76.3889%}.gs-144>.grid-stack-item[gs-x="111"]{left:77.0833%}.gs-144>.grid-stack-item[gs-x="112"]{left:77.7778%}.gs-144>.grid-stack-item[gs-x="113"]{left:78.4722%}.gs-144>.grid-stack-item[gs-x="114"]{left:79.1667%}.gs-144>.grid-stack-item[gs-x="115"]{left:79.8611%}.gs-144>.grid-stack-item[gs-x="116"]{left:80.5556%}.gs-144>.grid-stack-item[gs-x="117"]{left:81.2500%}.gs-144>.grid-stack-item[gs-x="118"]{left:81.9444%}.gs-144>.grid-stack-item[gs-x="119"]{left:82.6389%}.gs-144>.grid-stack-item[gs-x="120"]{left:83.3333%}.gs-144>.grid-stack-item[gs-x="121"]{left:84.0278%}.gs-144>.grid-stack-item[gs-x="122"]{left:84.7222%}.gs-144>.grid-stack-item[gs-x="123"]{left:85.4167%}.gs-144>.grid-stack-item[gs-x="124"]{left:86.1111%}.gs-144>.grid-stack-item[gs-x="125"]{left:86.8056%}.gs-144>.grid-stack-item[gs-x="126"]{left:87.5000%}.gs-144>.grid-stack-item[gs-x="127"]{left:88.1944%}.gs-144>.grid-stack-item[gs-x="128"]{left:88.8889%}.gs-144>.grid-stack-item[gs-x="129"]{left:89.5833%}.gs-144>.grid-stack-item[gs-x="130"]{left:90.2778%}.gs-144>.grid-stack-item[gs-x="131"]{left:90.9722%}.gs-144>.grid-stack-item[gs-x="132"]{left:91.6667%}.gs-144>.grid-stack-item[gs-x="133"]{left:92.3611%}.gs-144>.grid-stack-item[gs-x="134"]{left:93.0556%}.gs-144>.grid-stack-item[gs-x="135"]{left:93.7500%}.gs-144>.grid-stack-item[gs-x="136"]{left:94.4444%}.gs-144>.grid-stack-item[gs-x="137"]{left:95.1389%}.gs-144>.grid-stack-item[gs-x="138"]{left:95.8333%}.gs-144>.grid-stack-item[gs-x="139"]{left:96.5278%}.gs-144>.grid-stack-item[gs-x="140"]{left:97.2222%}.gs-144>.grid-stack-item[gs-x="141"]{left:97.9167%}.gs-144>.grid-stack-item[gs-x="142"]{left:98.6111%}.gs-144>.grid-stack-item[gs-x="143"]{left:99.3056%}.gs-144>.grid-stack-item[gs-w="2"]{width:1.3889%}.gs-144>.grid-stack-item[gs-w="3"]{width:2.0833%}.gs-144>.grid-stack-item[gs-w="4"]{width:2.7778%}.gs-144>.grid-stack-item[gs-w="5"]{width:3.4722%}.gs-144>.grid-stack-item[gs-w="6"]{width:4.1667%}.gs-144>.grid-stack-item[gs-w="7"]{width:4.8611%}.gs-144>.grid-stack-item[gs-w="8"]{width:5.5556%}.gs-144>.grid-stack-item[gs-w="9"]{width:6.2500%}.gs-144>.grid-stack-item[gs-w="10"]{width:6.9444%}.gs-144>.grid-stack-item[gs-w="11"]{width:7.6389%}.gs-144>.grid-stack-item[gs-w="12"]{width:8.3333%}.gs-144>.grid-stack-item[gs-w="13"]{width:9.0278%}.gs-144>.grid-stack-item[gs-w="14"]{width:9.7222%}.gs-144>.grid-stack-item[gs-w="15"]{width:10.4167%}.gs-144>.grid-stack-item[gs-w="16"]{width:11.1111%}.gs-144>.grid-stack-item[gs-w="17"]{width:11.8056%}.gs-144>.grid-stack-item[gs-w="18"]{width:12.5000%}.gs-144>.grid-stack-item[gs-w="19"]{width:13.1944%}.gs-144>.grid-stack-item[gs-w="20"]{width:13.8889%}.gs-144>.grid-stack-item[gs-w="21"]{width:14.5833%}.gs-144>.grid-stack-item[gs-w="22"]{width:15.2778%}.gs-144>.grid-stack-item[gs-w="23"]{width:15.9722%}.gs-144>.grid-stack-item[gs-w="24"]{width:16.6667%}.gs-144>.grid-stack-item[gs-w="25"]{width:17.3611%}.gs-144>.grid-stack-item[gs-w="26"]{width:18.0556%}.gs-144>.grid-stack-item[gs-w="27"]{width:18.7500%}.gs-144>.grid-stack-item[gs-w="28"]{width:19.4444%}.gs-144>.grid-stack-item[gs-w="29"]{width:20.1389%}.gs-144>.grid-stack-item[gs-w="30"]{width:20.8333%}.gs-144>.grid-stack-item[gs-w="31"]{width:21.5278%}.gs-144>.grid-stack-item[gs-w="32"]{width:22.2222%}.gs-144>.grid-stack-item[gs-w="33"]{width:22.9167%}.gs-144>.grid-stack-item[gs-w="34"]{width:23.6111%}.gs-144>.grid-stack-item[gs-w="35"]{width:24.3056%}.gs-144>.grid-stack-item[gs-w="36"]{width:25.0000%}.gs-144>.grid-stack-item[gs-w="37"]{width:25.6944%}.gs-144>.grid-stack-item[gs-w="38"]{width:26.3889%}.gs-144>.grid-stack-item[gs-w="39"]{width:27.0833%}.gs-144>.grid-stack-item[gs-w="40"]{width:27.7778%}.gs-144>.grid-stack-item[gs-w="41"]{width:28.4722%}.gs-144>.grid-stack-item[gs-w="42"]{width:29.1667%}.gs-144>.grid-stack-item[gs-w="43"]{width:29.8611%}.gs-144>.grid-stack-item[gs-w="44"]{width:30.5556%}.gs-144>.grid-stack-item[gs-w="45"]{width:31.2500%}.gs-144>.grid-stack-item[gs-w="46"]{width:31.9444%}.gs-144>.grid-stack-item[gs-w="47"]{width:32.6389%}.gs-144>.grid-stack-item[gs-w="48"]{width:33.3333%}.gs-144>.grid-stack-item[gs-w="49"]{width:34.0278%}.gs-144>.grid-stack-item[gs-w="50"]{width:34.7222%}.gs-144>.grid-stack-item[gs-w="51"]{width:35.4167%}.gs-144>.grid-stack-item[gs-w="52"]{width:36.1111%}.gs-144>.grid-stack-item[gs-w="53"]{width:36.8056%}.gs-144>.grid-stack-item[gs-w="54"]{width:37.5000%}.gs-144>.grid-stack-item[gs-w="55"]{width:38.1944%}.gs-144>.grid-stack-item[gs-w="56"]{width:38.8889%}.gs-144>.grid-stack-item[gs-w="57"]{width:39.5833%}.gs-144>.grid-stack-item[gs-w="58"]{width:40.2778%}.gs-144>.grid-stack-item[gs-w="59"]{width:40.9722%}.gs-144>.grid-stack-item[gs-w="60"]{width:41.6667%}.gs-144>.grid-stack-item[gs-w="61"]{width:42.3611%}.gs-144>.grid-stack-item[gs-w="62"]{width:43.0556%}.gs-144>.grid-stack-item[gs-w="63"]{width:43.7500%}.gs-144>.grid-stack-item[gs-w="64"]{width:44.4444%}.gs-144>.grid-stack-item[gs-w="65"]{width:45.1389%}.gs-144>.grid-stack-item[gs-w="66"]{width:45.8333%}.gs-144>.grid-stack-item[gs-w="67"]{width:46.5278%}.gs-144>.grid-stack-item[gs-w="68"]{width:47.2222%}.gs-144>.grid-stack-item[gs-w="69"]{width:47.9167%}.gs-144>.grid-stack-item[gs-w="70"]{width:48.6111%}.gs-144>.grid-stack-item[gs-w="71"]{width:49.3056%}.gs-144>.grid-stack-item[gs-w="72"]{width:50.0000%}.gs-144>.grid-stack-item[gs-w="73"]{width:50.6944%}.gs-144>.grid-stack-item[gs-w="74"]{width:51.3889%}.gs-144>.grid-stack-item[gs-w="75"]{width:52.0833%}.gs-144>.grid-stack-item[gs-w="76"]{width:52.7778%}.gs-144>.grid-stack-item[gs-w="77"]{width:53.4722%}.gs-144>.grid-stack-item[gs-w="78"]{width:54.1667%}.gs-144>.grid-stack-item[gs-w="79"]{width:54.8611%}.gs-144>.grid-stack-item[gs-w="80"]{width:55.5556%}.gs-144>.grid-stack-item[gs-w="81"]{width:56.2500%}.gs-144>.grid-stack-item[gs-w="82"]{width:56.9444%}.gs-144>.grid-stack-item[gs-w="83"]{width:57.6389%}.gs-144>.grid-stack-item[gs-w="84"]{width:58.3333%}.gs-144>.grid-stack-item[gs-w="85"]{width:59.0278%}.gs-144>.grid-stack-item[gs-w="86"]{width:59.7222%}.gs-144>.grid-stack-item[gs-w="87"]{width:60.4167%}.gs-144>.grid-stack-item[gs-w="88"]{width:61.1111%}.gs-144>.grid-stack-item[gs-w="89"]{width:61.8056%}.gs-144>.grid-stack-item[gs-w="90"]{width:62.5000%}.gs-144>.grid-stack-item[gs-w="91"]{width:63.1944%}.gs-144>.grid-stack-item[gs-w="92"]{width:63.8889%}.gs-144>.grid-stack-item[gs-w="93"]{width:64.5833%}.gs-144>.grid-stack-item[gs-w="94"]{width:65.2778%}.gs-144>.grid-stack-item[gs-w="95"]{width:65.9722%}.gs-144>.grid-stack-item[gs-w="96"]{width:66.6667%}.gs-144>.grid-stack-item[gs-w="97"]{width:67.3611%}.gs-144>.grid-stack-item[gs-w="98"]{width:68.0556%}.gs-144>.grid-stack-item[gs-w="99"]{width:68.7500%}.gs-144>.grid-stack-item[gs-w="100"]{width:69.4444%}.gs-144>.grid-stack-item[gs-w="101"]{width:70.1389%}.gs-144>.grid-stack-item[gs-w="102"]{width:70.8333%}.gs-144>.grid-stack-item[gs-w="103"]{width:71.5278%}.gs-144>.grid-stack-item[gs-w="104"]{width:72.2222%}.gs-144>.grid-stack-item[gs-w="105"]{width:72.9167%}.gs-144>.grid-stack-item[gs-w="106"]{width:73.6111%}.gs-144>.grid-stack-item[gs-w="107"]{width:74.3056%}.gs-144>.grid-stack-item[gs-w="108"]{width:75.0000%}.gs-144>.grid-stack-item[gs-w="109"]{width:75.6944%}.gs-144>.grid-stack-item[gs-w="110"]{width:76.3889%}.gs-144>.grid-stack-item[gs-w="111"]{width:77.0833%}.gs-144>.grid-stack-item[gs-w="112"]{width:77.7778%}.gs-144>.grid-stack-item[gs-w="113"]{width:78.4722%}.gs-144>.grid-stack-item[gs-w="114"]{width:79.1667%}.gs-144>.grid-stack-item[gs-w="115"]{width:79.8611%}.gs-144>.grid-stack-item[gs-w="116"]{width:80.5556%}.gs-144>.grid-stack-item[gs-w="117"]{width:81.2500%}.gs-144>.grid-stack-item[gs-w="118"]{width:81.9444%}.gs-144>.grid-stack-item[gs-w="119"]{width:82.6389%}.gs-144>.grid-stack-item[gs-w="120"]{width:83.3333%}.gs-144>.grid-stack-item[gs-w="121"]{width:84.0278%}.gs-144>.grid-stack-item[gs-w="122"]{width:84.7222%}.gs-144>.grid-stack-item[gs-w="123"]{width:85.4167%}.gs-144>.grid-stack-item[gs-w="124"]{width:86.1111%}.gs-144>.grid-stack-item[gs-w="125"]{width:86.8056%}.gs-144>.grid-stack-item[gs-w="126"]{width:87.5000%}.gs-144>.grid-stack-item[gs-w="127"]{width:88.1944%}.gs-144>.grid-stack-item[gs-w="128"]{width:88.8889%}.gs-144>.grid-stack-item[gs-w="129"]{width:89.5833%}.gs-144>.grid-stack-item[gs-w="130"]{width:90.2778%}.gs-144>.grid-stack-item[gs-w="131"]{width:90.9722%}.gs-144>.grid-stack-item[gs-w="132"]{width:91.6667%}.gs-144>.grid-stack-item[gs-w="133"]{width:92.3611%}.gs-144>.grid-stack-item[gs-w="134"]{width:93.0556%}.gs-144>.grid-stack-item[gs-w="135"]{width:93.7500%}.gs-144>.grid-stack-item[gs-w="136"]{width:94.4444%}.gs-144>.grid-stack-item[gs-w="137"]{width:95.1389%}.gs-144>.grid-stack-item[gs-w="138"]{width:95.8333%}.gs-144>.grid-stack-item[gs-w="139"]{width:96.5278%}.gs-144>.grid-stack-item[gs-w="140"]{width:97.2222%}.gs-144>.grid-stack-item[gs-w="141"]{width:97.9167%}.gs-144>.grid-stack-item[gs-w="142"]{width:98.6111%}.gs-144>.grid-stack-item[gs-w="143"]{width:99.3056%}.gs-144>.grid-stack-item[gs-w="144"]{width:100.0000%}
