#parent {
    display: flex;
    color: rgb(102, 102, 102);
  }
  #child1 {
    width: 60%;
  }
  #child2 {
    width: 45%;
    background-color: rgb(248, 248, 248);
  }
  #td1 ,#td2{
    display: flex;
    margin: auto;
  }
  #child2 > table {
    margin: auto;
  }
  #promo {
    width: 80%;
    margin: auto;
    display: flex;
  }
  #promocode {
    width: 270px;
    padding: 15px;
    font-size: medium;
    /* margin-left: 20px; */
  }
  #promobutton {
    width: 210px;
    padding: 17px;
    background-color: rgb(18, 40, 76);
    color: white;
    font-weight: bolder;
    font-size: medium;
    margin-left: -10px
  }
  #promo + hr {
    width: 70%;
    border-top: 1px solid rgb(220, 220, 220);
  }
  td {
    text-align: left;
  }
  #carttext,#sampletext {
    text-align: left;
  }
  #cartimg,#sampleimg {
    width: 13%;
    height: 13%;
    border: 0.1px solid rgb(220, 220, 220);
    border-radius: 7px;
    margin-left: 50px;
    margin-right: 30px;
  }
  #qty{
    width: 20%;
  }
  .vertical {
    border-left: 2px solid rgb(220, 220, 220);
    height: 120%;
    position: absolute;
    left: 57%;
  }
  form {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    margin-top: 50px;
  }
  #footer {
    width: 80%;
    margin: auto;
  }
  input {
    padding: 13px;
    margin: 10px;
    border-radius: 5px;
  }
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  input[type="submit"] {
    background-color: rgb(18, 40, 76);
    color: white;
    cursor: pointer;
    font-size: 20px;
    border: none;

    margin-left: auto;
  }
  #names {
    display: flex;
  }
  #names > input {
    width: 100%;
  }
  #place {
    display: flex;
  }
  #place > input {
    width: 100%;
  }
  #links {
    display: flex;
    width: 60%;
    margin: auto;
    margin-top: 30px;
  }
  #submitdiv {
    display: flex;
    justify-content: space-between;
  }
  #submitdiv > a {
    padding-top: 20px;
    font-size: medium;
  }
  #cartottable {
    width: 70%;
  }
  #cartottable > tbody > tr > td {
    padding: 10px;
    color: rgb(18, 40, 76);
    font-size: large;
  }
  #cartottable > tbody > tr > td:last-child {
    text-align: end;
  }
  #cartottable > tbody > tr:last-child > td {
    border-top: 1px solid rgb(220, 220, 220);
  }
  a {
    text-decoration: none;
    color: rgb(102, 102, 102);
    font-size: large;
  }
  a:visited {
    color: rgb(18, 40, 76);
  }

  @media all and (max-width: 700px){
    #parent {
      display: block;
      color: rgb(102, 102, 102);
    }
    #child1 {
      width: 100%;
    }
    #child2 {
      width: 100%;
      background-color: rgb(248, 248, 248);
    }
    .vertical {
     display: none;
    }
    #footer{
      display: none;
    }
    input[type="submit"] {
      padding: 1px;
    }
  }