﻿body {
}
.container {
    display: grid;
    column-gap: 50px;
    grid-template-columns: auto auto auto;
    background-color: transparent;
    padding: 10px;
}

    .container > div {
        background-color: transparent;
        font-size: 14px;
        text-align: center;
    }

.container2 {
    display: grid;
    column-gap: 100px;
    grid-template-columns: 100%;
    background-color: transparent;
    padding: 1px;
}

    .container2 > div {
        background-color: transparent;
        font-size: 14px;
    }

.container-one {
    display: grid;
    column-gap: 30px;
    grid-template-columns: 45% 20% 25%;
    background-color: transparent;
    padding: 10px 10px 15px 14%;
}

.container2 > div {
    background-color: transparent;
    font-size: 14px;
    text-align: center;
}


.container-store {
    display: grid;
    column-gap: 3px;
    row-gap:30px;
    grid-template-columns: auto auto auto auto;
    background-color: transparent;
    padding: 10px;
}

    .container-store > div {
        background-color: white;
        border: 1px solid black;
        background-image: linear-gradient(to bottom, cornflowerblue 10%, white);
        padding: 5px;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
    }


.container-duce {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 170px 110px;
    background-color: transparent;
    padding: 10px;
}

    .container-duce > div {
        background-color: lightgray;
        border-bottom: 2px solid silver;
        padding: 5px;
        font-size: 12px;
        color: black;
    }

.container-dblduce {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 90px 90px;
    background-color: transparent;
    padding: 10px;
}

    .container-dblduce > div {
        background-color: #f1f1f1;
        border: 1px solid silver;
        padding: 5px;
        font-size: 12px;
    }

.container-rows {
    display: grid;
    row-gap: 1px;
    grid-template-rows: auto;
    background-color: transparent;
    padding: 2px;
}

    .container-rows > div {
        background-color: #f1f1f1;
        border: 1px solid black;
        padding: 5px;
        font-size: 16px;
        text-align: center;
    }

.quote-button {
    background-image: url(/Images/bookit_btn.png);
    box-shadow: 0 3px 5px black,0 3px 10px black;
    border-radius: 10px;
    width: 152px;
    height: 45px;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: transparent;
}

    /* Style the topnav links */
    .topnav a {
        float: left;
        display: block;
        color: black;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        /* Change color on hover */
        .topnav a:hover {
            background-color: #ddd;
            color: black;
        }

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
    float: left;
    width: 55%;
    padding: 1px;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 45%;
    padding: 1px 1px 1px 80px;
}

/* Fake image */
.fakeimg {
    width: 30%;
    height: auto;
    box-shadow: 0 3px 8px darkgray, 0 3px 8px darkgray;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    text-shadow: 1px 1px 5px gray;
    box-shadow: 0 4px 9px darkgray, 0 4px 9px darkgray;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn, .container-store {
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}