.productMain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1340px;
    padding: 0 50px;
}

.productMain > div {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin: 0 20px;
}

.productDescription {
    margin-left: 20px;
}

p {
    margin: 6px 0;
    font-size: 15px;
}

h1.productName {
    font-weight: 100;
    margin-bottom: 5px;
}

h2.productPrice {
    margin-bottom: 16px;
    font-weight: 500;
}

h4.productStoreName {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.productButtons {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.productButton {
    margin: 20px 10px 20px 0;
    text-align: left;
}

.productButton.savedProduct {
    background-color: #c7c7c7;
    color: #434343;
}

/* favouritesList */

#favouritesList {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(48, 48, 48, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.favouritesListBlock {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    min-height: 150px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    position: relative;
}

.listCancelButton.cornerClose {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: initial;
    width: 60px;
}

.favouritesListTitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 100;
    padding: 34px 16px 18px 16px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}

.favouritesListBody {
    font-weight: 100;
    padding: 10px;
    text-align: center;
}

.favouritesListButtonsContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 0;
    width: 100%;
}

.lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    min-height: 240px;
    max-height: 450px;
    overflow: scroll;
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 10px;
    width: 130px;
    overflow: hidden;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: ease all 0.2s;
    position: relative;
}

.list:hover {
    -webkit-box-shadow: 0 4px 7px 0 rgb(0 0 0 / 5%), 0 5px 20px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 4px 7px 0 rgb(0 0 0 / 5%), 0 5px 20px 0 rgb(0 0 0 / 12%);
}

.listShadow {
    -webkit-box-shadow: 0 4px 7px 0 rgb(0 0 0 / 5%), 0 5px 20px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 4px 7px 0 rgb(0 0 0 / 5%), 0 5px 20px 0 rgb(0 0 0 / 12%);
}

.listBorder {
    border-color: #434343;
}

.listImage {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: #fff;
    background-size: 80px;
    border: 1px solid #eee;
    overflow: hidden;
}

.listImage > img {
    width: 60px
}

.listName {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.listCount {
    font-size: 13px;;
}

.saveList {
    padding: 10px;
}

.savedLabel, .removedLabel {
    position: absolute;
    top: 5px;
    background-color: #e30a81;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 0 5px;
    border-radius: 3px;
}

.removedLabel {
    background-color: #000;
}

.loader {
    position: absolute;
    opacity: 0.7;
    width: 100%;
    background-color: #fff;
}

.loader img {
    width: 100%;
}

.collectionNameInputContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

/* favouritesList */


/* Add Collection Div */

#addNewCollectionContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.chooseCollectionTitle {
    font-size: 18px;
    margin: 0 0 20px 0;
}

.chooseCollectionNameContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.chooseCollectionName {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newLists {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: scroll;
    display: none;
}

.newList, .selectedImage {
    display: flex;
    border-radius: 80px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin: 20px;
    border: 3px solid transparent;
    cursor: pointer;
}

.selectedImage {
    border: 1px solid #eee;
}

.newList:hover {
    border-color: #000;
}

.newList img, .selectedImage img {
    width: 80px;
}

.newCollectionSelectedImage {
    display: flex;
    align-items: center;
    justify-content: center;
}

input#newCollectionName {
    width: 300px;
}

.inputError {
    color: #fff;
    font-size: 14px;
    background-color: #e30a81;
    border-radius: 5px;
    padding: 5px;
    font-weight: 400;
}

.maxTwoFav {
    background-color: #f0f8ff;
    color: #3f51b5;
    border-radius: 5px;
    padding: 10px;
    font-weight: 500;
    display: flex;
    justify-content: space-around;
    align-items: center;
    display: none;
}