div {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
  }
  
  p,
  a {
    font-family: "Titillium Web";
    text-decoration: none;
  }
  
  .Screen {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }

  .Product_Screen{
    width: 100vw;
    min-height: 90vh;
    padding-bottom: 5vh;
    background-color: #f5f5f5;
  }

  .PS_Head{
    width: 90%;
    min-width: 60em;
    padding-left: 5%;
    padding-right: 5%;
    flex-direction: row;
    justify-content: space-between;
    height: fit-content;
    align-items: center;
  }

  .Product_Title{
    font-family: 'Manrope';
    font-weight: 500;
  font-size: clamp(1em, 1.75vw, 2em);
  }

  .Price_and_Cart{
    flex-direction: row;
    width: auto;
    height: 100%;
    align-items: center;
  }

  .Product_Price{
    font-family: 'Manrope';
    font-weight: 600;
    font-size: clamp(1em, 1.5vw, 1.5em);
    color: #454545;
    margin-right: 1vw;
  }

  .Add_to_Cart_BTN{
    width: auto;
    padding-left: 1vw;
    padding-right: 1vw;
    height: 2vw;
    align-items: center;
    justify-content: center;
    border: 1px solid grey;
    flex-direction: row;
    transition: 0.3s ease;
  }

  .Cart_SVG{
    width: 1.25vw;
    height: 1.25vw;
    align-items: center;
    justify-content: center;
  }

  .Cart_SVG svg{
    width: 100%;
    height: 100%;
    fill: #454545;
    transition: 0.3s ease;
    margin-top: 2.5px;
  }

  .Cart_SVG p{
    font-family: 'Titillium Web';
    font-weight: 300;
    font-size: clamp(0.8em, 1vw, 1.2em);
    transition: 0.3s ease;
    color: #454545;
  }

  
  .Add_to_Cart_BTN:hover{
    background-color: #d56d12;
    border: 1px solid #d56d12;
    cursor: pointer;
  }

  .Add_to_Cart_BTN:hover svg{
    fill: white;
  }

  .Add_to_Cart_BTN:hover p{
    color: white;
  }

  .PS_Body{
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    flex-direction: row;
    border-top: 1px solid lightgray;
    padding-top: 5vh;
    justify-content: space-between;
  }

  .PSB_L{
    width: 50%;
    min-width: 30rem;
    height: 100%;
    flex-direction: column;
  }

  .Video_Preview{
    width: 95%;
  height: auto;
    position: relative;
    box-shadow: 0px 0px 3px 0px grey;
  margin-bottom: 1vh;
  }

.Video_Preview video{
    width: 100%;
  height: auto;
    object-fit: cover;
    object-position: center;
  }

  .Darkener{
    position: absolute;
    z-index: 3;
    background-color: rgb(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  display: none;
  }

  .Darkener svg{
    width: 30%;
    height: 30%;
    fill: white;
  }

  .DPSB_L_Description{
    width: 100%;
    font-family: 'Titillium Web';
    font-weight: 400;
    font-size: clamp(0.9em, 1vw, 1.2em);
    margin-top: 2.5vh;
  }

  .PSB_R{
    flex-direction: row;
    width: 50%;
    min-width: 30rem;
    justify-content: center;
  }

  .PSB_Value{
    flex-direction: column;
    width: 70%;
    align-items: center;
  }

  .Value_Item{
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin-top: 1vh;
    min-width: 20em;
  }

  .Value_Item_SVG{
    width: 5vw;
    min-width: 4em;
    max-width: 66px;
    height: 5vw;
    min-height: 4em;
    max-height: 65px;
    align-items: flex-start;
    justify-content: center;
    margin-right: 1vw;
  display: flex;
  }

  .PSB_Val_Title{
    width: 100%;
    font-family: 'Manrope';
    font-weight: 500;
    font-size: clamp(1em, 1.5vw, 2em);
    text-align: left;
    color: grey;
    margin-bottom: 0vh;
    margin-top: 0;
  }

  .Value_Item_SVG svg{
    width: 80%;
    height: auto;
    fill: darkblue;
  transition: 0.3s ease;
}

  .Value_Item p{
    font-family: 'Titillium Web';
    font-weight: 500;
    font-size: clamp(0.8em, 1.1vw, 1.2em);
  }

.Placeholder_Sidebar {
  min-width: 17.5rem;
}

@media (max-width: 600px) {

  .PS_Body{
    flex-direction: column;
  }

  .PSB_L{
    width: 100%;
    min-width: unset;
  }

  .Product_Title{
    font-size: clamp(1em, 2vh, 2.5em);
  }

  .PSB_R{
    width: 100%;
    min-width: unset;
    margin-top: 2vh;
  }

  .PSB_Value{
    width: 100%;
  }

  .PSB_Val_Title{
    font-size: clamp(1em, 2vh, 2.5em);
  }

  .PS_Head{
    min-width: unset;
    flex-direction: column;
  }

  .Add_to_Cart_BTN{
    height: 4vh;
    padding-left: 2vh;
    padding-right: 2vh;
    width: 5vw;
  }

  .Cart_SVG{
    width: 60%;
    height: 60%;
  }

  .Price_and_Cart{
    width: 95%;
    flex-direction: row;
    justify-content: space-between;
  }

  
}