/* Model Viewer Custom css */
.bp_grand {
  position: relative;
}
.bp_model_parent {
  display: flex;
  flex-direction: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.fullscreen.bp_model_parent {
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 99999;
  background: #fff;
}
.fullscreen model-viewer {
  animation-name: opacityTo;
  animation-duration: 2s;
}
#openBtn,
#closeBtn {
  fill: #333;
  cursor: pointer;
}
#closeBtn {
  background: #333;
}
.bp_model_parent #closeBtn {
  display: none;
}

.fullscreen #closeBtn {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
}
.bp_model_parent #openBtn {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.bp_model_parent:hover #openBtn {
  display: block;
}
.fullscreen.bp_model_parent #openBtn {
  display: none;
}

@keyframes opacityTo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
