@font-face {
    font-family: 'Colonna MT';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/COLONNA.woff') format('woff');
}

html, body {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    color: #333;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: rgb(0, 80, 160);
}

label {
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

input[type="range"] {
    height: 0;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}

.vsltitle {
    text-align: center;
    font-size: 2.5em;
    font-weight: 100;
    font-family: "Colonna MT";
    background-image: linear-gradient(175deg, #84b4e8, #dfeefe);
    color: #274478;
    line-height: 1;
    padding-top: 7px;
    border-bottom: 4px double #274478;
}

.vslhead {

    font-family: "Colonna MT";

}


ul.square {
    margin-left: 15px;
    list-style-type: square;
    padding-left: 10px;
}

.nav-container {
    width: 100%;
    background: #274478;
}

nav {
    max-width: 1720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
}

.logo {
    grid-column: 2;
}

#nav-toggle, .burger-menu {
    display: none;
}

.burger-menu {
    width: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    transition: .3s all ease-in-out;
}

nav a:visited {
    color: white;
}

.left-menu {
    grid-column: 1;
    align-self: center;
}

.left-menu a {
    padding: 10px 0;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.logo {
    font-size: 1.3rem;
    color: white;
    padding: .2rem;
}

.burger-menu {
    grid-column: 1;
    align-self: center;
    margin-left: 20px;
}

nav a:hover {
    background-color: #555;
    color: white;
    text-decoration: none;
}

.salecontainer{
    border-width: 4px;
    border-radius: 10px;
    border-color: #c3daff;
    background-color: #c3daff;
    margin: 20px 20px 40px;
}

.saletab {
    border-width: 2px;
    border-color: #7790c0;
    margin: 20px;

}

.row {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;

}

.rowtop {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    background-color: #2c5399;
}

.row:nth-of-type(even) {
    background-color: #f7fafc;
}

.row:nth-of-type(odd) {
    background-color: #ffffff;
}

.col1 {
    font-weight: bold;
    flex: 0 0 200px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right-color: #1a3367;
    border-right-width: 2px;
}

.col2 {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;

}

.boldwhite{
    font-weight: bold;
    font-size: 1.2rem;
    color: white;

}


@media only screen and (max-width: 1025px) {
    .burger-menu {
        display: inline-block;
    }

    .left-menu {
        display: none;
    }

    #nav-toggle:checked ~ .left-menu {
        display: grid;
        grid-row: 2;

    }

    .rh-image-col {
        display: none;
    }

    /*@media only screen and (max-width: 992px) {*/
    /*    .rh-image-col {*/
    /*    display: none;*/
    /*    }*/
}

