.accessories_home{
  position: relative;
  margin-top: 5vw;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.accessories_home h1{
  position: relative;
  text-align: center;
  color: white;
  text-shadow: 3px 3px 2px black;
  font-size: calc(1.8em + 1.8vw);
  font-weight: 200;
  margin: 0 0 3vh 0;
  padding: 0px;
}
.container_accessories_home{
  position: relative;
  width: 90%;
  min-width: 140px;
  overflow-x: scroll;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
/* Style for the scrollbar in WebKit browsers */
.container_accessories_home::-webkit-scrollbar {
    width: 13px; /* Width of the scrollbar */
}

.container_accessories_home::-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 */
}

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

.container_accessories_home::-webkit-scrollbar-thumb:hover {
    background: #132735; /* Darker color when hovering over the scrollbar */
}

.box_accessories_home{
  perspective-origin: relative;
  min-width: 250px;
  padding: 20px;
  background-color: rgba(25, 61, 116, 0.7);
  margin: 15px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.box_accessories_home h2{
  position: relative;
  text-align: center;
  font-weight: 400;
  font-size: 1.9em;
  color: white;
  padding-left: 10px;
  margin: 0px 0 5px 0;
}
.box_accessories_home img {
  position: relative;
  height: 100px;
  width: auto;
}
.subcontainer_accessories_home_quantity{
  position: relative;
  width: 90%;
  margin: 7px 0;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.container_accessories_home_arrow_left{
  position: absolute;
  top: 50%;
  left: 15px;
  height: 30px;
  width: 30px;
  transform: rotate(90deg);
  cursor: pointer;
  filter: drop-shadow(1px 1px 2px transparent);
  z-index: 2;
}
.container_accessories_home_arrow_right{
  position: absolute;
  top: 50%;
  right: 15px;
  height: 30px;
  width: 30px;
  transform: rotate(-90deg);
  cursor: pointer;
  filter: drop-shadow(1px 1px 2px transparent);
  z-index: 2;
}


.container_accessories_home_arrow_left img:hover{
  filter: drop-shadow(3px 3px 2px black);
}
.container_accessories_home_arrow_right img:hover{
  filter: drop-shadow(3px 3px 2px black);
}


.container_accessories_home_arrow_left img:active{
  filter: drop-shadow(1px 1px 2px transparent);
}
.container_accessories_home_arrow_right img:active{
  filter: drop-shadow(1px 1px 2px transparent);
}

.subcontainer_accessories_home_quantity input{
  position: relative;
  width: 60px;
  height: 100%;
  margin: 0;
  margin-left: 5px;
}
.dropbox_accessories_home{
  position: relative;
  width: calc(100% - 65px);
  padding: 0 5px;
}
.dropbox_accessories_home h3{
  position: relative;
  color: white;
  margin: 0;
  padding: 0;
}
.subcontainer_accessories_home_description{
  position: relative;
  width: 90%;
  margin: 7px 0;
  max-width: 225px;
  height: 140px;
  overflow-y: scroll;
}
/* Style for the scrollbar in WebKit browsers */
.subcontainer_accessories_home_description::-webkit-scrollbar {
    width: 13px; /* Width of the scrollbar */
}

.subcontainer_accessories_home_description::-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 */
}

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

.subcontainer_accessories_home_description::-webkit-scrollbar-thumb:hover {
    background: #132735; /* Darker color when hovering over the scrollbar */
}
.box_accessories_home_description{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  min-width: 210px;
  padding: 3px 7px;
  border: 2px solid transparent;


  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 3px 0;
  background-color: rgba(0, 0, 0, .5);
}
.box_accessories_home_description h3{
  position: relative;
  margin: 0;
  padding: 0;
  color: white;
  font-size: 0.7em;
  font-weight: 400;
  text-align: left;
}
.subcontainer_accessories_home_buy_section{
  position: relative;
  width: 90%;
  margin: 7px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.subcontainer_accessories_home_buy_section button{
  position: relative;
  color: white;
  font-size: 1em;
  font-weight: 300;
  padding: 7px 10px;
  cursor: pointer;
}
.subcontainer_accessories_home_buy_section button:nth-child(1){
  background: rgba(141, 67, 68, .9);
  width: 35%;
}
.subcontainer_accessories_home_buy_section button:nth-child(2){
  background: darkgreen;
  width: 60%;
}
