@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

.flex-contaner {
  display: flex;
  list-style: none;
  flex-direction: row-reverse;
  border: solid 3px red;
  justify-content: space-between;
  /* align-items: flex-start; */
  height: 300px;
  flex-wrap: wrap;
  width: 400px;
  
}

.flex-contaner li {
  border: solid 2px blue;

 }

 .flex-item1 {
  height: 50px;
  width: 100px;
  /* flex-basis: 100px; */
  /* order: 2; */
  /* flex-shrink: 5; */
  
 }

 .flex-item2 {
  height: 70px;
  width: 50px;
  /* flex-basis: 40%; */
  /* order: 3; */
  /* flex-shrink: 1; */
 }

 .flex-item3 {
  height: 20px;
  width: 30px;
  /* flex-basis: auto; */
  /* order: 4; */
  /* flex-shrink: 2; */
 }
 .flex-item4 {
  height: 40px;
  width: 150px;
  /* flex-basis: auto; */
  /* order: 1; */
  /* flex-shrink: 3; */
 }
