html {
  height:100%;
}

body {
  margin:0;
  overflow-x: hidden;
}

.bg {
  animation:slide 5s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #5599fd 50%, #fff 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:6s;
}

.bg3 {
  animation-duration:7s;
}



@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}
#printsku{display: none;}	
.show-read-more .more-text{
        display: none;
    }
.collapsible1 {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	background-color:#f9f9f9;
	border-radius:8px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	width: 99%;
	font-family:Arial;
	font-size:18px;
	font-weight:bold;
	padding:20px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}

.active1, .collapsible1:hover {
  background:linear-gradient(to bottom, #e9e9e9 25%, #f9f9f9 100%);
	background-color:#e9e9e9;
	border:1px solid #8a8a8a;
  color: #124d77;
}

.collapsible1:after {
  content: '\002B';
  color: #124d77;
  font-weight: bold;
  font-size: 20px;
  float: right;
  margin-left: 25px;
}

.active1:after {
  content: "\2212";
  color: #666666;
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #ffffff;
}
/* ===============================
   Dimension Icon Hover Preview (Raised)
   =============================== */
.dim-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.dim-preview {
  display: none;
  position: absolute;
  top: -155px;               /* was -130px — now 30 px higher */
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  z-index: 999;
  pointer-events: none;
}

.dim-icon:hover .dim-preview {
  display: block;
  animation: dimFadeIn .2s ease-out;
}

@keyframes dimFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
