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;
}

.Cart {
  width: 100%;
}

.Cart_Screen {
  width: 100vw;
  min-height: 90vh;
  padding-bottom: 5vh;
  background-color: #f5f5f5;
}

.Cart_Head {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
}

.Cart_Head h1 {
  font-family: "Manrope";
  font-weight: 700;
  font-size: clamp(1em, 2vw, 2.5em);
  color: grey;
}

.Cart_Summ p {
  font-family: "Manrope";
  font-weight: 500;
  font-size: clamp(1em, 1.5vw, 2em);
}

.Cart_Body {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 2.5vh;
  flex-direction: column;
  align-items: center;
}

.Cart_Item {
  width: 100%;
  min-width: 50em;
  height: auto;
  min-height: 20vh;
  border: 1px solid lightgrey;
  box-shadow: 0px 0px 3px 0px lightgray;
  background-color: white;
  flex-direction: row;
  margin-top: 2vh;
}

.CI_Image {
  min-width: 20vh;
  max-width: 20vh;
  height: 20vh;
  min-height: 20vh;
  max-height: 20vh;
  align-items: center;
  justify-content: center;
  margin-right: 2vh;
}

.CI_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.CI_Description {
  width: 100%;
}

.Product_Title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: clamp(1em, 1.5vw, 2em);
  margin-bottom: 1vh;
  margin-top: 2.5vh;
}

.Product_Description {
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: clamp(0.8em, 0.8vw, 1em);
  margin: 0;
  overflow: hidden;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 7.5em;
}

.CI_Pricing {
  min-width: 25%;
  align-items: flex-end;
}

.CI_Pricing p {
  font-family: "Manrope";
  font-weight: 600;
  font-size: clamp(1em, 1.25vw, 1.5em);
  margin-bottom: 1vh;
  margin-top: 2.5vh;
}

.CI_Action_Buttons {
  min-width: 5%;
  align-items: center;
}

.X {
  font-family: "Manrope";
  font-size: clamp(1em, 1.25vw, 2em);
  font-weight: 600;
  color: grey;
  margin-top: 2.5vh;
  margin-bottom: 1vh;
  transition: 0.3s ease;
}

.X:hover {
  color: red;
  cursor: pointer;
}

.Cart_Footer {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  flex-direction: column;
  margin-top: 2.5vh;
  margin-bottom: 2.5vh;
}

.Cart_Summary {
  width: 100%;
  align-items: flex-end;
}

.CS_Item {
  width: 100%;
  min-width: 30em;
  height: auto;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1vh;
}

.CSI_Label {
  font-family: "Titillium Web";
  font-weight: 400;
  color: grey;
  font-size: clamp(1em, 1.5vw, 1.8em);
  margin: 0;
}

.CSI_Value {
  font-family: "Manrope";
  font-weight: 600;
  color: #454545;
  font-size: clamp(1em, 1.6vw, 1.9em);
  margin: 0;
}

.CS_Divider {
  width: 100%;
  height: 2px;
  background-color: #808080;
  margin-top: 2.5vh;
  margin-bottom: 2.5vh;
}

.Payment_Buttons {
  width: 100%;
  margin-top: 5vh;
  margin-bottom: 5vh;
  flex-direction: row;
  justify-content: space-between;
}

.Back_To_Shop_BTN {
  width: 20vw;
  min-width: 15em;
  height: 5vh;
  align-items: center;
  justify-content: center;
  background-color: grey;
  display: flex;
  transition: 0.3s ease;
}

.Back_To_Shop_BTN:hover {
  background-color: royalblue;
  cursor: pointer;
}

.Back_To_Shop_BTN p {
  font-family: "Titillium Web";
  font-size: clamp(1em, 1.25vw, 1.5em);
  color: white;
}

.Go_To_Payment_BTN {
  width: 20vw;
  min-width: 15em;
  height: 5vh;
  align-items: center;
  justify-content: center;
  background-color: orangered;
  display: flex;
  transition: 0.3s ease;
}

.Go_To_Payment_BTN:hover {
  background-color: royalblue;
  cursor: pointer;
}

.Go_To_Payment_BTN p {
  font-family: "Titillium Web";
  font-size: clamp(1em, 1.25vw, 1.5em);
  color: white;
}

@media (max-width: 600px) 
{

  .Cart_Item{
    min-width: unset;
    flex-direction: column;
    align-items: center;
  }

  .CI_Image{
    max-width: unset;
    width: 100%;
    min-height: 22.5vh;
    margin-right: unset;
  }

  .CI_Description{
    width: 90%;
    margin-bottom: 2vh;
  }

  .CI_Pricing{
    display: none;
  }

  .CI_Action_Buttons{
    position: absolute;
    right: 10vw;
  }

  .CS_Item{
    min-width: unset;
  }

  .Back_To_Shop_BTN {
    min-width: unset;
    width: 48%;
  }

  .Go_To_Payment_BTN{
    min-width: unset;
    width: 48%;
  }



}