.quotePage {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#quotePageContainer {
    /* min-height: 400px; */
    text-align: center;
    display: flex;
    width: 100%;
    flex:1;
    flex-direction: column;
}

.inner {
    width:100% !important;
    max-width:100% !important;
    margin:0 auto;
    overflow-y:auto;
    box-sizing: content-box;
    margin: 0 auto;
}

.customPromoSection h1 {
    padding-top: 70px;
    max-width: 70%;
    text-align: left;
    padding-left: 120px;
    margin: 0 auto;
    margin-bottom: 30px;
}

#listOfQuotes {
    width: 45%;
    margin: 0 16%;
    margin-top: 80px;
}

#noQuotes {
    margin-top: 40px;
    font-weight: 200;
    font-size: 20px;
    margin-bottom: 50px;
}

#quoteTitles,
.quoteItems {
    display: flex;
    font-weight: bold;
    padding: 5px;
    font-size: 13px;
}

#quoteTitles {
    display: none; /* Will be enabled with JS if we have quotes */
    font-size: 20px;
}

.quoteItems {
    margin-bottom: 20px;
}

/* For the image */
#modelName,
.modelName {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#productName,
.productName {
    flex: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#productQuantity,
.productQuantity {
    flex: 1;
    display: flex;
    /* justify-content: center; */
}
.productQuantity {
    margin-top: 100px;
}
.quoteItems .productName {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 400;
    margin-top: 100px;
}
.productName span {
    text-align: left;
}
.quoteItems .productName .productNameModelNumber{
    font-weight: bold;
}

.productImg, .noImage {
    width: 100% !important;
    height: 100% !important;
}

.noImage {
    border-radius: 200px !important;
    width: 200px !important;
    height: 200px !important;
}

/* Update item quantity */
.itemGetQuoteBtn,
.removeItemFromQuoteListBtn {
    height: 20px !important;
    background-color: #23527c;
    color: white;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:0;
    padding: 0 10px;
    font-size: 14px;
    align-self: center;
    width: 100%;
}

.removeItemFromQuoteListBtn {
    color: #23527c;
    background-color: white;
    font-weight: 900;
    border: 0;
}

.removeItemFromQuoteListBtn:hover,
.removeItemFromQuoteListBtn:focus {
    color:black;
}

.itemQuantityLabel {
    text-align: right;
    font-weight: bold;
}

.itemQuoteWrapperMobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.itemQuoteQtyInputs {
    display: flex;
    margin: 10px 0;
}

.itemQuoteQtyInputs input[type="number"]{
    width: 40px;
    border: 0;
    border: 1px solid #ccc !important;
    text-align: center;
    border-radius: 0 !important;
    -moz-appearance: textfield;
    height: 20px;
}

.itemQuoteQtyInputs input::-webkit-outer-spin-button,
.itemQuoteQtyInputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.updateQuoteQtyBtn {
    border: 1px solid transparent;
    margin:0;
    background: #ccc;
}

.itemGetQuoteBtn:focus {
    border-radius: 30px;
    outline: none; 
    border: 1px solid white;
    -webkit-box-shadow:inset 0px 0px 0px 10px rgb(0, 119, 255);
    -moz-box-shadow:inset 0px 0px 0px 10px rgb(0, 119, 255);
    box-shadow:inset 0px 0px 0px 10px rgb(0, 119, 255);
}
.itemGetQuoteBtn:hover {
    -webkit-box-shadow:inset 0px 0px 0px 10px rgb(0, 119, 255);
    -moz-box-shadow:inset 0px 0px 0px 10px rgb(0, 119, 255);
    box-shadow:inset 0px 0px 0px 10px rgb(0, 119, 255);
}

#downloadQuoteSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 100px;
}

#downloadQuoteBtn, 
#resetListOfQuoteBtn {
    background-color: #23527c;
    color: white;
    margin-bottom: 8px !important;
}

#downloadQuoteBtn:hover,
#downloadQuoteBtn:focus {
    background-color: white;
    color: #23527c;
    border: 1px solid #23527c;
}

#resetListOfQuoteBtn {
    border: 0;
    padding: 10px 50px;
    background-color: white;
    color: #8292aa;
    font-weight: 900;
    font-size: 12px;
    border-color: transparent;
}

#resetListOfQuoteBtn:hover {
    color: black;
    text-decoration: underline;
}

/* Media Querry */

@media all and (max-width: 1080px){
    
    
}

@media all and (max-width: 1060px){}

@media all and (max-width: 1040px){}

@media all and (max-width: 980px){
    /* Collapse Menu */
}

@media all and (max-width: 950px){}

@media all and (max-width: 850px){}

@media all and (max-width: 780px){}

@media all and (max-width: 700px){}

@media all and (max-width: 641px){}
/* Smaller devices */
@media all and (max-width: 640px){
    #quotePageContainer {
        padding: 0;
        padding-top: 100px !important;
    }
    #listOfQuotes {
        width: 99%;
        margin: 0 auto;
    }

    .productImg {
        width: 100px;
        height: 100px;
    }

    .noImage {
    border-radius: 100px !important;
    width: 100px !important;
    height: 100px !important;
}

    #quoteTitles {
        font-size: 15px;
        text-align: center;
    }
    .productQuantity {
        margin-top: 30px;
    }
    .quoteItems .productName {
        margin-top: 30px;
    }

    .customPromoSection h1 {
        max-width: 70%;
        text-align: left;
        /* padding-left: 0; */
        margin: 0 auto;
        margin-bottom: 30px;
    }
    
}

@media all and (max-width: 550px){}

@media all and (max-width: 480px){}

@media all and (max-width: 415px){}

@media all and (max-width: 400px){}

@media all and (max-width: 380px){}

@media all and (max-width: 350px){}

@media all and (orientation: portrait){}