body {
    background: black;
    margin: 0;
}

#top-thin-bar {
    background: rgba(255, 166, 0, 0.25);
    color: #ffa500;
    font-weight: 700;
    font-size: large;
    text-align: right;
}

nav {
    background: black;
}

.navbar {
    justify-content: center;
}

#navigation-bar {
    display: flex;
    flex-flow: row nowrap;
}

    #navigation-bar > #nav-filler-left {
        /* width: 25%; */
        display: inline-block;
    }

    #navigation-bar > #nav-main-content {
        /* width: 100%; */
        display: inline-block;
        background: red;
    }

        #main-logo {
            height: 23vh;
            width: 13.5vw;

            display: inline-block;

            background-image: url("../images/tiger_BLACK_logo.jpg");
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;

            cursor: pointer;
        }

        #main-logo-mobile {
            display: none;
        }

        #nav-info-content {
            display: inline-flex;
            flex-flow: column nowrap;
            vertical-align: top;
            text-align: center;
            /* padding-left:2vw; */
            /* width: 70%; */
        }

            #company-title {
                color: white;
                font-size: 4em;
            }

            #subtitle {
                color: #ffa500;
                font-size: 1.5em;
                padding-bottom: 2vh;
            }

            #buttons {
                display: flex;
                flex-flow: row nowrap;
                justify-content: space-between;

                color: #ffa500;
                font-weight: 800;
                font-size: 1.25em;
            }

                #buttons > div {
                    padding: 2vh 1vw;
                    cursor: pointer;
                    
                    transition: color .15s ease-in-out,background-color #ffa500 .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;                   
                }

                    #buttons>div:hover {
                        background-color: #ffa500;
                        color: black;
                    }

                #buttons > .active {
                    background: #ffa500;
                    color: black;
                }
                
            #buttons-mobile {
                display: none;
            }
    #navigation-bar > #nav-filler-right {
        /* width: 25%; */
        display: inline-block;
    }

#landing-carousel {
    height: 50vh;
}

#carousel-container {
    height: auto;
    background: #ffa500;
    background: radial-gradient(circle, rgba(255,165,0,1) 0%, rgba(205,117,0,1) 100%);

    text-align: center;
    font-weight: 700;

    display: flex;
    justify-content: center;
}

    #carousel-inner {
        border: 1px solid black;

        width: 60%;
        height: 90%;
        overflow: hidden;
        margin: auto;   
    }

        #carousel-inner div {
            cursor: pointer;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

            /* CHANGE THESE for ON SALE ITEMS */
            #on-sale-item-1 {
                background: url("../images/on-sale-tiegrrr-custom-lengths.png") no-repeat black;
            }
            #on-sale-item-2 {
                background: url("../images/load-hugger-display.jpg") no-repeat black;
            }
            #on-sale-item-3 {
                background: url("../images/cam-strap-display.jpg") no-repeat black;
            }

#page-content {
    text-align: center;
}

    .div-title {
        font-weight: 700;
        font-style: italic;
        text-decoration-line: underline;
        color: #ffa500;

        margin-top: 5vh;
    }

    #item-container {
        display: flex;
        justify-content: center;
        flex-flow: row nowrap;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;
    }

    #item-container.about-us {
        display: flex;
        justify-content: center;
        flex-flow: row nowrap;

        margin-left: auto;
        margin-right: auto;
        margin-top: 3vh;
        margin-bottom: 5vh;
        padding-right: 5vw;

        max-width: 60vw;
    }

    #product-container {
        display: flex;
        justify-content: center;
        flex-flow: row nowrap;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;
        max-width: 74vw;
    }

        #product-container > img {
            width: 50%;
            max-height: 50vh;
            border: 3px solid black;
        }

        .product-info {
            text-align: left;
            padding: 2vh 2vw 0 2vw;
        }
            .product-info > h1 {
                font-weight: 700;
            }

            .product-info p.product-bullets {
                margin-top: 0;
                margin-bottom: .5rem;
                font-size: 2rem;
            }

            .options {
                /* display: flex; */
                /* flex-flow: row; */
                margin-bottom: 1vh;
            }

                .option-container {
                    display: flex;
                }

                    .option {
                        padding: 1vh 0;
                        border: 3px solid black;
                        /* background-color: black; */
                        color: white;
                        text-shadow: 2px 2px #000000;
                        width: 4rem;
                        text-align: center;
                        margin-right: 1vw;
                        margin-bottom: 1vh;
                        font-size: 1.5rem;
                        font-weight: 800;
                    }

            .lengths {
                display: flex;
                flex-flow: row;
                margin-bottom: 1vh;
            }
                .length {
                    padding: 1vh 0;
                    border: 3px solid black;
                    background-color: black;
                    color: white;
                    width: 4rem;
                    text-align: center;
                    margin-right: 1vw;
                    font-size: 1.5rem;
                    font-weight: 800;
                }

            .colors {
                display: flex;
                flex-flow: row;
                margin-bottom: 1vh;
            }
                .color {
                    border: 3px solid black;
                    width: 4rem;
                    height: 4rem;
                    text-align: center;
                    margin-right: 1vw;
                    font-size: 1.5rem;
                }

    #contact-container.contact-us{
        display: flex;
        justify-content: center;
        flex-flow: row nowrap;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;

        max-width: 70vw;
    }

    #item-container.about-us > img {
        min-width: 350px;
    }

    #contact-container.contact-us > img {
        height: fit-content;
    }

        .about-us-content,
        .contact-us-content {
            margin: auto 0;
            padding: 2vw;
        }

        .about-us-content {
            text-align: right;
            min-width: 34.5vw;
        }

        .contact-us-content {
            text-align: left;
        }

        .contact-us-content label {
            margin-bottom: 0;
        }

        .about-us-content > h1 {
            font-style: italic;
            font-weight: 700;
        }

        .contact-us-content > h1 {
            font-style: italic;
            font-weight: 800;
        }

        .job-title {
            color: #ffa500;
        }

        .about-us-content > h2,
        .contact-us-content > h2 {
            font-weight: 800;
        }

        .about-us-content > p {
            font-weight: 800;
        }

        .contact-info-bullets {
            font-size: 1.25rem;
        }

        .contact-info-bullets > span {
            font-weight: 800;
        }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-control, .form-control:active, .form-control:focus {
                background: black;
                color: white;
            }

            .form-control:focus {
                border: 5px solid white;
            }

            #contact-pic {
                margin-bottom: 2vh;
                margin-top: 5vh;
            }

            #formButton {
                margin-bottom: 0;
            }
            .contact-send-button {
                color: white;
                border-color: white;
                background-color: black;
                transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                margin-bottom: 3vh;
            }
            
            .contact-send-button:hover, .contact-send-button:focus {
                background-color: #ffa500;
                border: 1px solid black;
                color: black;
            }

            .contact-send-button:focus {
                border: 5px solid white;
            }

            .contact-send-button:disabled {
                background-color: #ffa500;
                border: 1px solid black;
                color: black;
            }

            .js-validate-error-label {
                color: white;
                font-size: 0.9em;
            }

            .js-validate-error-field {
                border: 1px solid #dc3545 !important;
              }
              
            .js-validate-error-field:focus {
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            }

        .about-us-content > ul {
            text-align: left;
            list-style-position: inside;
        }

        .about-us-content p.right-bullets {
            border-right: 7px solid black;
            margin-top: 0;
            margin-bottom: .5rem;
            padding-right: .5vw;
            font-size: 3vh;
            font-weight: unset;
        }

        .about-us-content p.about-bullets {
            border-left: 7px solid #ffa500;
            margin-top: 0;
            margin-bottom: .5rem;
            padding-left: .5vw;
        }

    .all-products-container{
        display: flex;
        justify-content: center;
        flex-flow: row wrap;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;

        max-width: 1473px;
    }

        .item {
            border: 1px solid #ffa500;
            width: 27vh;
            height: 27vh;
            background: white;
            overflow: hidden;            
            margin: 0 1vw;

            cursor: pointer;
        }

        .product-item {
            box-shadow: -0.4em -0.4em 1em #0000009e;
            border: 1px solid #ffa500;
            background: white;

            width: 27vh;
            height: 27vh;
            overflow: hidden;            
            margin: 1vh 1vw;

            cursor: pointer;
        }

            .item-name {
                background: #ffa500;
                font-size: 1.5rem;
                font-weight: 700;
                height: 40px;
            }

            .item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                overflow: hidden;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;                
            }

            .product-item-name {
                background: #ffa500;
                font-size: 1.5rem;
                font-weight: 700;
                height: 40px;
            }

            .product-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                overflow: hidden;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;                
            }

            #custom-available {
                margin-top: 2rem;
                margin-bottom: 0;
                color: darkred;
            }
.tiegrrr-button {
    color: #ffa500;
    border-color: #ffa500;
    transition: color .15s ease-in-out,background-color #ffa500 .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 3vh;
}

.tiegrrr-button:hover {
    background-color: #ffa500;
}

.back-button {
    color: black;
    border-color: black;
    transition: color .15s ease-in-out,background-color black .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 3vh;
    height: fit-content;
    width: 18rem;
}

.back-button:hover {
    background-color: black;
    color: #ffa500;
}

#gmap_canvas {
    width:100%;
    height: 72vh;
}

#USAflag {
    display:block;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:5vh;
    width:25%;
}

#footer {
    background:rgba(255, 166, 0, 0.25);
    color: #ffa500;
    font-weight: 700;
    font-size: large;
    text-align: center;
}

@media only screen and (max-width : 1500px){
    #carousel-inner {
        width: 75%;
    }
}

@media only screen and (max-width : 582px){

    .navbar {
        padding: 0 0 2vh 0;        
    }

    #nav-info-content {
        display: inline-flex;
        flex-flow: row nowrap;
        vertical-align: middle;
        text-align: center;
    }

        #company-title {
            font-size: 1.9em;
            margin-left: 4vw;
        }
    
    /* 
    #company-title-MOBILE {
        stack title like so:
            TIEGRRR 
            STRAPS
    }
    */

        #main-logo {
            display: none;
        }

        #main-logo-mobile {
            display: inline-block;
            height: 10vh;
            width: 10vw;

            background-image: url("../images/tiger_BLACK_logo.jpg");
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }

        #subtitle {
            display: none;
        }

        #buttons {
            display: none;
        }

        #buttons > .active {

        }

        #buttons-mobile {
            display: flex;
            flex-flow: row nowrap;
            justify-content: space-between;
            background: #ffa500;
            color: black;
            
            font-weight: 700;
            font-size: .9em;
        }

            #buttons-mobile > div {
                border: 1px solid black;
                padding: 2.5vh 1vw;
            }

    #carousel-inner {
        width: 95%;
    }

    #item-container {
        flex-flow: row wrap;
        margin-top: 2vh;
    }

        .item {
            width: 40vw;
            margin-bottom: 1vh;
        }

        .item-name {
            height: 33%;
            font-size: 1em;
        }

    #footer {
        font-size: .9em;
    }
}