/* CONFIGURATOR CSS */
#accordion {
  max-height: 50vh;
  overflow: auto;
}
.panel_wrapper {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 20%;
  right: 0;
  gap: 1rem;
  z-index: 999;
  background-color: var(--white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.35 linear;
  min-width: 400px;
  width: 100%;
  max-width: 550px;
  /* max-width: fit-content; */
}
.panel_wrapper.hide {
  min-width: 0px;
  width: 0px;
  padding: 0;
  transition: all 0.35s linear;
}

.minimize_panel {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -25px;
  box-shadow: rgb(53 53 53 / 38%) 0 0px 24px;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  cursor: pointer;
}
.minimize_panel .fa {
  font-size: 30px;
}
.panel_wrapper input {
  margin-left: auto;
}
.panel_wrapper.hide .minimize_panel {
  left: -70px;
}
.panel_wrapper img {
  display: none;
}
.panel_wrapper label {
  margin-bottom: 0;
  margin-right: 1rem;
  font-family: var(--medium);
}
.panel_title {
  font-family: var(--bold);
  border-bottom: 1px solid #00000040;
  gap: 3vw;
  padding-bottom: 10px;
}
.panel_wrapper .btn-link {
  padding: 0;
  color: black;
  text-decoration: none;
}
.panel_wrapper .btn-link:hover {
  color: #0056b3;
  text-decoration: none;
  color: var(--black);
}
.panel_wrapper .card-header {
  padding: 0;
}
.panel_wrapper .card-header button {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  width: 100%;
  border-radius: 0;
}
.panel_wrapper .card-header:hover button {
  background-color: #f6e447;
}
.panel_wrapper .item {
  background-color: #f8ea6f;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.panel_wrapper .card-body {
  border: 1px solid #00000020;
  margin-bottom: 1rem;
}
#export-pdf {
  border: none;
  font-size: 14px;
  background-color: greenyellow;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.row {
  position: relative;
}
.has_bg {
  position: absolute;
  left: -30vw;
  width: 160vw;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}
#accordion input[type="file"] {
  max-width: 100px;
  overflow: hidden;
}
