section.bundles-list { margin: 0 58px; text-align: center; }
section.bundles-list .bundleItem { margin-bottom: 25px; transition: all 0.5s; }
section.bundles-list .bundleItem a { display: block; }
section.bundles-list .bundleItem a.selected { box-shadow: 0px 0px 10px 10px #b29553; }

@media only screen and (max-width: 768px) {
  section.bundles-list .bundleItem span { font-size: 19px; }
} 

section.bundles-list .bundleItem:hover { box-shadow: #97c3ff 0px 0px 60px; }
section.bundles-list .storeSelector {
  width: 70%;
  margin: 40vh auto;
}
section.bundles-list .storeSelector > .ipsGrid { width: 52%; margin: 0 auto; }
section.bundles-list .storeSelector .storeItem:hover { cursor: pointer; opacity: 0.8; }
section.bundles-list h3 {
  text-transform: uppercase;
  font-size: 43px;
  color: white;
  line-height: 43px;
}


section.bundles-list .regionSelector {
  display: none; padding: 40vh 0;
  background-repeat: no-repeat;
  background-position: center 50vh;
}
section.bundles-list .regionSelector .regionWrapper {
  width: 56%;
  margin: 32px auto;
}
section.bundles-list .regionSelector .regionWrapper .regionItem {
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  border: 3px white solid;
  line-height: 55px;
  cursor: pointer;
  transition: all 0.1s ease;
}
section.bundles-list .regionSelector .regionWrapper .regionItem a { color: white; display: block; line-height: 40px; }
section.bundles-list .regionSelector .regionWrapper .regionItem.regionDisabled {
  color: #4c4c4c;
  border: 3px #4c4c4c solid;
}
section.bundles-list .regionSelector .regionWrapper .regionItem:hover:not(.regionDisabled) {
  color: #003791;
  border: 3px #003791 solid;
}
section.bundles-list .regionSelector .regionWrapper .regionItem:hover:not(.regionDisabled) a {
  color: #003791;
}

section.bundles-list .bundlePopupWrapper {
  display: none;
  background: #000928;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  overflow: hidden;
}
section.bundles-list .bundlePopupWrapper .ipsLayout_container { overflow: hidden; }

section.bundles-list .bundlePopupWrapper .closePopup {
  position: relative;
  float: right;
  font-size: 43px;
  margin-top: 20vh;
  cursor: pointer;
}
section.bundles-list .bundlePopupWrapper .closePopup:hover {
  opacity: 0.8; 
}

.bundleItemInner {
  overflow: hidden;
}
.bundleItemHeader {
  padding: 10px;
  background-color: #f11d019e;
  min-height: 125px;
  font-size: 34px;
  line-height: 34px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.bundleItemContent {
  position: relative;
}
.bundleItemLabel {
  position: absolute;
  padding: 10px 15px;
  top: 20px;
  right: 0;
  background-color: #34b904ed;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
}
.bundleItemImage {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}
