.checkoutheader {
    color: black;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
    background-color: white;
}

.headercontent {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

.Storelogo {
    width: 150px;
}

.leftsection {
    width: 150px;
}

.StoreMobileLogo {
    display: none;
}

@media (max-width: 575px){
    .Storelogo {
        display: none;
    }

    .StoreMobileLogo {
        display: block;
        height: 60px;
        width: auto;
        margin-right: 3px;
    }

    .leftsection{
        width: auto;
    }
}

.middlesection {
    flex: 1;
    flex-shrink: 0;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.returnhome {
    text-decoration: none;
    color: rgb(0, 113, 133);
    font-size: 20px;
    display: flex;
    align-items: center;
}

@media (max-width: 1000px) {
  .middlesection {
    font-size: 20px;
    margin-right: 60px;
  }

  .returnhome {
    font-size: 18px;
  }
}

@media (max-width: 575px){
    .middlesection {
        font-size: 20px;
    }

    .returnhome {
        font-size: 18px;
    }    

    .rightsection {
        text-align: right;
        width: 150px;
    }
}

@media (max-width: 1000px) {
  .rightsection {
    width: auto;
  }
}




