@charset "utf-8";
/* CSS Document */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
}
.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
}

nav{
    flex: 1;
    /*text-align: right;*/
}

/* un-numbered "bulleted" list */
nav ul#MenuItems {
    
    /*display: inline-block;*/
    /* remove bullets */
    list-style-type: none;
}

/* un-numbered "bulleted" list */
nav ul#FooterItems {
    display: block;
    /* remove bullets */
    list-style-type: none;
}

ul.a {
    list-style-type: circle;
}

a{
    text-decoration: none;
    color: #555;
}
p{
    color: #555;
}

.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.center {
    margin: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/*colum picture characteristics*/
.row{
    display: flex;
    align-items: center;
    vertical-align: middle;
    flex-wrap: wrap;
    justify-content: space-around;
}

.rowCheckOutAddrTable {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/*header background radial gradient color*/
.header{
    background: radial-gradient(#fff,#ffd6d6);
}

/*add margin at top of row class - Weaver Frames and adjoining pik*/
.header .row{
    margin-top: 40px;
}

.HeaderMenu li{
    display: inline-block;
    margin-right: 20px;
}

.t_and_cs_row {
    display: flex;
    align-items: left;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-1{
    flex-basis: 100%;
    flex-direction: row;
    /*min-width: 300px;*/
    max-width: 800px;
    align-items: center;
    justify-content: center;
}

.col-1 img{
    max-width: 100%;
    padding: 20px 0;
}

.col-2{
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img{
    max-width: 100%;
    padding: 20px 0;
}

/* Font characteristics of Weaver Frames title*/
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 10px 0;
}

.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3_cart {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 0px;
}

/*featured products column formatting*/
.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s;
    border-radius: 10px;
    overflow: hidden;
}

.col-4 img{
    width: 100%;
    cursor: pointer;
}

.col-4 p{
    font-size: 14px;
}
.col-4:hover{
    transform: translateY(-5px);
}

/*"Shop Now" button characteristics*/
.btn{
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 10px, 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.5s;
}

.btn:hover{
    background: #563434;
}


/*"Detail PopUp Close button characteristics*/
.btn_close {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    /*margin: 30px 0;*/
    margin: auto;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.5s;
}

.btn_close:hover{
    background: #563434;
}

/*featured categories column formatting*/
.categories{
    margin: 70px 0;
}
.small-container{
    max-width: 1080px;
    margin: auto;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.popup-container{
    max-width: 600px;
    margin: auto;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.slider-container{
    max-width: 1080px;
    margin: auto;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.slider-container .row {
    padding-top: 40px;
    padding-bottom: 60px;
}


.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}
/*Small colored divider under Feature Products Header */
.title::after{
    content: '';
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h4{
    color: #555;
    font-weight: normal;
}


/* Footer */
.footer{
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}

/*horizontal line in footer */
.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}

.copyright{
    text-align: center;
    color: #fff;
}

.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
}

/*media query for menu to change for mobile devices */
@media only screen and (max-width: 800px){
    .header nav ul {
        position: absolute;
        top: 120px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    .header nav ul li{
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /* change <a> tag to white text*/
    .header nav ul li a{
        color: #fff;
    }
    .header .menu-icon{
        display: block;
        cursor: pointer;
    }
}

/*media query for less than 600 screen size*/
@media only screen and (max-width: 600px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-3_cart, .col-4 {
        flex-basis: 100%;
    }
    /*change single product alignment when viewed on small device*/
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }
    .cart-info p{
        display: none;
    }
    .col-3_cart {
        margin-left: 70px;
    }
    /*
    .row-paypal {
        text-align: center;
        max-width: 300px;
    }
    */
}

/* --- Single Product Detail --- */
.single-product{
    margin-top: 20px;
}

.single-product .col-2 img{
    padding: 0px;
}

.single-product .col-2{
    padding: 20px;
}

#ID_ProductImg {
    border-radius: 10px;
}

/* Single Product Detail price parameters */
.single-product h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}

.single-product h1{
    margin: 20px 0;
    font-size: 36px;
    font-weight: bold;
}


h5{
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
}

.single-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b; 
}

input:focus{
    outline: none;
}

/* Product Detail Gallery */
.small-img-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.small-img-col{
    flex-basis: 24%;
    border-radius: 10px;
}

.small-img {
    border-radius: 5px;
}

.small-img:hover {
    cursor: pointer;
    transition: transform 0.5s;
    transform: translateY(-5px);
} 

.row-2 {
    align-items: baseline;
}

/* Cart Items */
.cart-page{
    margin: 50px auto;
}

table#CartTable {
    width: 100%;
    border-collapse: collapse;
}

.cart-info{
    display: flex;
    flex-wrap: wrap;
}

table#CartTable th {
    text-align: left;
    padding: 5px;
    color: #fff;
    background: #ff523b;
    font-weight: normal;
}

table#CartTable td {
    padding: 10px 5px;
    height: 30px;
    /*padding: 5px;*/
}

table#CartTable td a {
    color: #ff523b;
    font-size: 12px;
}

table#CartTable td img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.total-price {
    display: flex;
    justify-content: flex-end;
}

/*.total-price table { */
table#CartTotals {
    border-top: 3px solid #ff523b;
    width: 100%;
    max-width: 300px;
}

/* cart total table data */
table#CartTotals td:last-child {
    text-align: right;
} 

/* cart table data */
table#CartTable td:last-child {
    text-align: right;
}

/* table header */
table#CartTable th:last-child {
    text-align: right;
}

/*
.cart-remove-aTag a{
    text-decoration: none;
    color: #555;
}

.cart-remove-aTag:hover{
    color: #1000ff;
    cursor: pointer;    
}
*/

.checkout-btn-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}


.checkout-col2 .col-2{
    padding: 0px;
}

.delete-button {
    font-weight: normal;
    font-size: 10px;
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 3px 10px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.5s;
}

.delete-button:hover {
    background:#563434;
    cursor: pointer;
}

.checkout-button {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.5s;
}

.checkout-button:hover {
    /*background: #1000ff;*/
    background:#563434;
    cursor: pointer;
}

.continue-shopping-button {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.5s;
}

.continue-shopping-button:hover {
    /*background: #1000ff;*/
    background:#563434;
    cursor: pointer;
}

.clear-cart-button {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.5s;
}

.clear-cart-button:hover {
    background:#563434;
    cursor: pointer;    
}


/*Customer checkout Info*/
label {
    float: left;
    clear: left;
    width: 200px;
    text-align: right; /*Change to right here if you want it close to the inputs*/
}

input#remember_me {
    float: right;
}

input {
    float: left;
}

/*
table#cust_addr_tbl {
    padding-right: 50px;
}
*/


table#cust_addr_tbl td {
    color: #ff523b;
    font-size: 14px;
    padding-top: 10px;
    padding-right: 20px;
}

table#cust_addr_tbl caption {
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #333;
    padding-bottom: 20px;
}

/* table header */
table#cust_addr_tbl thead {
    color: #fff;
    background: #ff523b;
    height: 30px;
}

table#cust_addr_tbl th {
    text-align: left;
    padding-left: 5px;
    font-weight: normal;
    font-size: 16px;
}


table#cust_addr_tbl th:last-child {
    padding-right: 5px;
}

table#cust_addr_tbl td:last-child {
    padding-right: 20px;
    text-align: left !important;
}


/* Customer Shipping Address table header */
table#cust_ship_addr_tbl th {
    text-align: left;
}

table#cust_ship_addr_tbl td {
    color: #ff523b;
    font-size: 14px;
    padding-top: 10px;
    padding-right: 20px;
}

table#cust_ship_addr_tbl caption {
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #333;
    padding-bottom: 20px;
}

table#cust_ship_addr_tbl thead {
    color: #fff;
    background: #ff523b;
    height: 30px;
}

table#cust_ship_addr_tbl th {
    text-align: left;
    padding-left: 5px;
    font-weight: normal;
    font-size: 16px;
}


table#cust_ship_addr_tbl th:last-child {
    padding-right: 5px;
    text-align: right;
}


table#cust_ship_addr_tbl td:last-child {
    padding-right: 20px;
    text-align: left;
}

.row-addr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

form {
    margin: 35px;
}

.input-field {
    width: 400px;
    max-width: 400px;
    height: 40px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px, solid #ff523b;
    border-radius: 14px;
    outline: none;
    padding-left: 10px;
}

.text-area {
    height: 150px;
    padding-top: 10px;
}

.contact-label {
    height: 40px;
    margin-top: 30px;
    margin-left: 10px;
}

h2#contact-title {
    text-align: center;
    padding-left: 100px;
}

.clsSubmitButton {
    display: flex;
    justify-content: center;
    align-items: center !important;
    padding-top: 20px;
    padding-left: 130px;
}

.button {
    display: inline-block;
    border:#000;
    border-width: 1px;
    text-align: center;
    font-size: 16px;
}

.buttonSndMsg {
    background: #ff523b;
    color: #FFFFFF;
    min-width: 180px !important;
    min-height: 30px !important;
    border-radius: 15px;
}

.buttonSndMsg:hover {
    background:#563434;
    cursor: pointer;    
}


p#message_sent {
    text-align: center;
    padding-top: 20px;
}

table#manualsTable th {
    border-bottom: 1px solid #ff523b;
    width: 100%;
}

/* Align manuals table data */
table#manualsTable td {
    display: flex;
    padding-top: 20px;
    width: 500px;
    vertical-align: middle;
}

/* Center <p> text vertically in manuals table */
table#manualsTable p {
    margin-left: 20px; 
    position: relative;
    top:  50%;
    transform: translate(0, -50%);
}

/* Set <a> text style in manuals table */
table#manualsTable a {
    color: blue
}

/* news Table header */
table#newsTable th {
    border-bottom: 1px solid #ff523b;
    width: 100%;
}

/* Align news table data */
table#newsTable td {
    padding-top: 20px;
    vertical-align: middle;
}

/* Center <p> text vertically in news table */
table#newsTable p {
    margin-left: 20px; 
    position: relative;
    top:  50%;
    transform: translate(0, -50%);
}

/* Set <a> text style in news table */
table#newsTable a {
    color: blue
}

/* Thanks you for the order table */
table#thankyouTable th {
    border-bottom: 1px solid #ff523b;
    width: 100%;
}

/* Align thankyou table data */
table#thankyouTable td {
    padding-top: 20px;
    width: 500px;
    vertical-align: middle;
}

/* Center <p> text vertically in thankyou table */
table#thankyouTable p {
    margin-left: 20px; 
    position: relative;
    top:  50%;
    transform: translate(0, -50%);
}


/* Details page Image Slider */
.box {
    width: 300px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 25px;
    /*
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0%);
    */
}

.slide-img {
    height: 300px;
    position: relative;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.detail-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    font-family: calibri;
}

.type {
    display: flex;
    flex-direction: column;
}

.type a {
    color: #222222;
    margin: 5px 0px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-right: 8px;
}

.type span {
    color: rgba(26,26,26,0.5);
}

.price {
    color: #333333;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: poppins;
    letter-spacing: 0.5px;
}

.overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(134, 88, 34, 0.466);
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy-now-btn {
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    color: #252525;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: calibri;
    border-radius: 20px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
}

.buy-now-btn:hover {
    color: #FFFFFF;
    background-color: #5ff1b4;
    transition: all ease 0.3s;
}

table#BillToTable th {
    text-align: left;
    padding-bottom: 15px;
}

table#BillToTable {
    padding-bottom: 20px;
}

table#ShipToTable th {
    text-align: left;
    padding-bottom: 15px;
}

.overlay {
    visibility: hidden;
}

.slide-img:hover .overlay {
    visibility: visible;
    animation: fade 0.5s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slider {
    width: 100%;
    height: 30vh;   /* 40% of the viewport height for this slider element */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
}

.paypal_enable {
    display: flex;
    align-items: center;
    padding: 20px;   
    font-weight: normal;
    text-align: left;
}

.paypal_enable a {
    color: blue;
}
