.customize-lanyard{
  position: sticky;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;

  background-color: rgba(0, 0, 0, .6);
  z-index: 13;

  display: none;
  justify-content: center;
  align-items: center;
}
.section{
  display: none;
}
.active{
  display: block;
}
.customize-lanyard-container{
  position: relative;
  height: 80%;

  overflow-y: scroll;

  min-width: 30px;
  min-height: 440px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.preview-customize-lanyard{
  position: relative;
  padding: 10px;
  height: 500px;
  width: 330px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: rgb(69,114,150);
  background: linear-gradient(270deg, rgba(69,114,150,1) 0%, rgba(105,164,195,1) 50%, rgba(31,60,102,1) 100%);

  box-shadow: -3px 3px 3px rgba(0, 0, 0, 1);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/*.preview-customize-lanyard img{
  position: relative;
  height: 90%;
  left: -6%;
  filter: drop-shadow(1px 1px 2px black);
}*/
.preview-customize-lanyard h2{
  position: relative;
  color: white;
  font-weight: 500;
  text-shadow: 2px 2px 3px black;
  font-size: 2em;
  text-align: center;
  margin: 0;
}
.options-customize-lanyard{
  position: relative;
  padding: 10px;
  height: 90%;
  width: 40%;
  height: 500px;
  width: 330px;

  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

  background: rgb(29,61,97);
  background: linear-gradient(90deg, rgba(29,61,97,1) 0%, rgba(16,36,57,1) 100%);

  box-shadow: 3px 3px 3px rgba(0, 0, 0, 1);

  display: flex;
  justify-content: center;
  flex-direction: column;
}
.container_buttons_next_preview{
  position: relative;

  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  height: calc(30% - 50px);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.container_buttons_next_preview button{
  position: relative;
  background: rgba(141, 67, 68, .9);
  color: white;
  font-size: 1.2em;
  margin: 0 15px;
  font-weight: 300;
  padding: 5px 20px;
  cursor: pointer;
}
.close-customize-lanyard{
  position: absolute;
  right: 15px;
  top: 15px;
  height: 20px;
  width: 20px;
  z-index: 1;
  cursor: pointer;
  filter: brightness(.8);
}
.close-customize-lanyard img{
  filter: drop-shadow(1px 1px 0px black);
}
.close-customize-lanyard img:hover{
  filter: drop-shadow(2px 2px 1px black);
}
.close-customize-lanyard img:active{
  filter: drop-shadow(1px 1px 0px black);
}
.draw-lanyard{
  position: absolute;
  height: 100%;
  width: 100%;
}
.draw-lanyard-normal{
  position: absolute;
  height: 100%;
  width: 100%;
}
input[type="radio"] {
  color: rgba(255, 255, 255, .6);
  width: 1.65em;
  height: 1.65em;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 5px;
}
label{
  color: rgba(255, 255, 255, .6);
  font-size: 1em;
  margin-left: 3px;
  cursor: pointer;
  font-weight: 500;
}
input[type="color"] {
  display: inline-block;
  width: 70px; /* Adjust size as needed */
  height: 45px; /* Adjust size as needed */
  background-color: #000; /* Default color */
  border: 2px solid #555; /* Border color */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
