.clip_section{
  position: relative;
  width: 90%;
  height: 70%;
  min-height: 330px;
  padding: 15px 0;
  margin: 15px 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, .1);

  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
}
.clip_section h2{
  position: relative;
  text-align: center;
  font-weight: 400;
  font-size: 1.9em;
  color: white;
  padding-left: 10px;
  margin: 0px 0 5px 0;
}
.clip_section p{
  position: relative;
  text-align: left;
  font-weight: 300;
  font-size: 1em;
  color: white;
  margin: 0;
  padding: 0;
  padding-left: 5px;
}
.containers_boxes_clip{
  position: relative;
  width: 100%;
  height: 70%;

  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  overflow-y: scroll;
  overflow-x: hidden;
}
/* Style for the scrollbar in WebKit browsers */
.containers_boxes_clip::-webkit-scrollbar {
    width: 13px; /* Width of the scrollbar */
}

.containers_boxes_clip::-webkit-scrollbar-thumb {
    background: #091d2c; /* Dark blue color for the draggable part */
    border-radius: 5px; /* Rounded corners for the draggable part */
    border: 1px solid rgba(255, 255, 255, .5); /* Semi-transparent white border for better contrast */
}

.containers_boxes_clip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .4); /* Light grey background color */
    border-radius: 10px; /* Rounded corners for the track */
}

.containers_boxes_clip::-webkit-scrollbar-thumb:hover {
    background: #132735; /* Darker color when hovering over the scrollbar */
}
.container_boxes_clip{
  position: relative;
  width: 98%;
  height: 50px;
  background-color: rgba(48, 79, 112, 1);
  padding: 5px 10px;
  margin: 5px 0;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;

  border: 2px solid transparent;
}
.container_boxes_clip:nth-child(1){
  border: 2px solid white;
}
.container_boxes_clip:active{
  border: 2px solid white;
}
.container_boxes_clip img{
  position: relative;
  height: 120%;
  margin: 0 5px;
  width: auto;
  transform: rotate(-90deg);
}
.container_boxes_clip h3{
  position: relative;
  margin: 0;
  width: 40%;
  text-align: left;
  color: white;
  font-weight: 300;
  font-size: 0.95em;
}
.container_boxes_clip h4{
  position: relative;
  margin: 0;
  text-align: right;
  color: white;
  font-weight: 300;
  font-size: 0.8em;
}
