@media screen and (max-width: 1920px) {
    #offer img {
        height: 100%;
    }

}

@media screen and (min-width: 1920px) {

    #offer img {
        width: 100%;
    }

}

/* CSS for shop */
#shopping-page {
    /* padding-top: 10vh; */
    /* min-height: 100vh; */
    width: 100%;
    height: 100%;
    /* background-color: white; */
}

#shopping-cart-icon {
    display: flex;
    align-items: center;
    text-align: center;
    width: 60px;
    height: 60px;
    border: 2px solid black;
    border-radius: 100%;
    position: fixed;
    right: 10px;
    top: 11vh;
    cursor: pointer;
    z-index: 50;
}

#shopping-cart-icon img{
    margin: 5px auto 0 auto;
    width: 45px;
    height: 45px;
}

#shopping-cart-count {
    position: absolute;
    right: 4px;
    top: 4px;
    background-color: red;
    text-align: center;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    z-index: 1;
}

/* Large main */
#offer {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 8vh;
    /* width: 100vw; */
    width: 100%;
    height: 857px;
    /* border: 2px solid white; */
    /* background-color: white; */
    border: 1px solid white;
}

#offer button {
    font-family: 'Montserrat', sans-serif;
    /* font-weight: bold; */
    font-size: 15px;
    background-color: #385486;
    color: white;
    transition: all 0.3s ease;
}

#offer button:hover {
    background-color: #223452;
    transition: all 0.3s ease;
}

#large-left {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 65vw;
    object-fit: cover;
}

#large-left img{
    transition: all 0.3s ease-in-out;
}

#large-left:hover img{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}



#offer-left-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 15px;
    text-align: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    z-index: 1;
}



.offer-left-info {
    display: flex;
    width: 350px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 18vw; */
}

.offer-left-info button {
    height: 40px;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}



#right {
    position: relative;
    display: flex;
    width: 35vw;
    flex-direction: column;
    /* background-color: violet; */
    border-left: 1px solid white;
}

#right-top {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* width: 30%; */
    height: 50%;
    /* background-color: yellow; */
    /* border-bottom: 1px solid white; */
}

#right-top img{
    transition: all 0.3s ease-in-out;
}

#right-top:hover img{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

#right-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* width: 30%; */
    height: 50%;
    /* background-color: gray; */
}

#right-bottom img{
    transition: all 0.3s ease-in-out;
}

#right-bottom:hover img{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.offer-right-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 15px;
    text-align: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    z-index: 1;
}

.offer-right-info {
    display: flex;
    width: 250px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.offer-right-info button {
    height: 30px;
    border: none;
    padding: 0 10px;
    cursor: pointer;

}



#products {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: white;
}

.product {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    text-align: left;
    width: 26vw;
    background-color: transparent;
    color: black;
    /* padding: 1%; */
    position: relative;
}

.product p {
    margin: 5px 0;
    font-family: 'Cabin', sans-serif;
    font-size: 3em;
}

.product-image-container {
    width: 100%;
    border: 2px solid black;
    overflow: hidden;
}

.product img {
    width: 100%;
    transition: all 0.3s ease;
}

.product img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.price-info {
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.product p {
    font-family: 'Cabin', sans-serif;
    font-size: 1.5em;
}

.price-info h3 {
    color: black;
    font-family: 'Cabin', sans-serif;
    font-size: 1.5em;
}

.price-info button {
    margin-left: 20px;
    width: 120px;
    padding: 5px;
    color: white;
    background-color: #00007F;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    cursor: pointer;
}

#shopping-cart {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#shopping-cart.display {
    opacity: 1;
    visibility: visible;
}

#dim {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    /* top: 50%; */
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

#shopping-cart-list {
    position: absolute;
    margin: auto;
    padding-bottom: 60px;
    top: -10vh;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    overflow-y: scroll;
    width: 800px;
    height: 70%;
    opacity: 1;
    z-index: 2;
}

#shopping-cart-list h2{
    text-align: center;
    color: #6678B1;
    padding: 20px 0;
    border-bottom: 1px solid #6678B1;
}

#top-close-button {
    font-family: 'Cabin', sans-serif;
    position: absolute;
    border: none;
    background-color: transparent;
    cursor: pointer;
    right: 0;
    top: 0;
    z-index: 10;
}

#shopping-cart-table {
    color: black;
    align-items: center;
    text-align: center;
    border-collapse: collapse;
    width: 100%;
}

#shopping-cart-empty {
    text-align: center;
    font-family: 'Cabin', sans-serif;
    font-size: 2em;
    font-style: italic;
    color: gray;
}

.price-column {
    column-width: 150px;
}

#shopping-cart-table thead {
    /* border: 1px solid black; */
    line-height: 50px;
    color: #6678B1;
    font-size: 1.5em;
    border-bottom: 1px solid #6678B1;
}

#shopping-cart-table tbody tr {
    /* border: 1px solid whitesmoke; */
    background-color: #F2F2F2;
}
#shopping-cart-table tr:nth-child(even){
    background-color: white;
}

#shopping-cart-table tr:hover {
    background-color: #E8E8E8;
}

#shopping-cart-table td{
    text-align: center;
    align-items: center;
    padding: 10px 0;
    /* vertical-align: middle; */
    /* width: 100%; */
}

#shopping-cart-table tbody tr {
    align-items: center;
    font-family: 'Cabin', sans-serif;
}

.item-info {
    display: flex;
    flex-direction: column;
}

.item-info div {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100px;
    height: 100px;
}

.item-info div img {
    height: 100%;
}

.delete-item {
    padding: 0 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    /* height: 50%; */

}

.quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.quantity p {
    font-size: 1.2em;
    padding: 0 6px;
}

.quantity button {
    font-size: 1.5em;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

#shopping-cart-bottom {
    font-family: 'Cabin', sans-serif;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    bottom: 10%;
    width: 800px;
    height: 60px;
    background-color: #262626;
}

#shopping-cart-bottom button {
    font-family: 'Cabin', sans-serif;
    height: 30px;
    padding: 0 10px;
    margin: 0 10px;
    cursor: pointer;
}

#shopping-cart-remove-all {
    background-color: white;
    border: 1px solid red;
    border-radius: 20px;
    color: red;
}

#purchase-with-the-trip {
    background-color: #375385;
    color: white;
    border: none;
    border-radius: 20px;
}


