
.rim-image {
  margin: 5px auto;
  height: 0px;
  transition: height 0.5s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.rim-image.active {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 200px;
}

.select-one {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.select-one > div {
  width: 150px;
  border: 5px solid #eee;
  border-radius: 5px;
  padding: 15px 5px 10px 5px;
  transform: scale( 0.9 );
  transition: 0.25s;
  cursor: pointer;
}
.select-one > div.selected {
  border-color: var( --boost-darkblue );
  transform: scale( 1 );
}

.select-one > div > div {
  font-size: 14px;
}
.select-one > div > div:nth-of-type(1) {
  font-size: 24px;
  font-family: "Poppins";
  font-weight: bold;
}
.select-one > div img {
  object-fit: cover;
  width: 100%;
}

.expander {
  padding: 10px;
  border: 1px solid #eee;
  color: #888;

  margin: 10px;
  font-size: 0.8em;
  cursor: pointer;
  border-radius: 10px;
}
.expander > div:nth-of-type(1){
  font-weight: bold;
  font-family: "Poppins";
}
.expander > div:nth-of-type(1)::after {
  content: " >";
}
.expander > div:nth-of-type(2) {
  display: none;
  padding: 20px;
}


  .auto-resizable-iframe {
    max-width: 800px;
    margin: 20px auto;
  }

  .auto-resizable-iframe > div {
    position: relative;
    padding-bottom: 75%;
    height: 0px;
  }

  .auto-resizable-iframe iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }


@media (max-width: 1000px) {
    .lp-panel-right {
        order: 0;
    }
}