@import url(//fonts.googleapis.com/css?family=Ubuntu);

body {
    margin:0;
    padding:0;
    font-family:helvetica, sans-serif;
}

h1, h2, h3, h4, h5 , h6 {
    font-family: 'Ubuntu', sans-serif; font-weight:normal;
}

a {
    text-decoration:none;
    color:#e0d104;
}

a:hover {
    font-weight: bold;
    color:#e67205;
}

a.button, input[type="submit"] {
    color:#fff;
    background:#5993bb;
    border-radius:4px;
    padding:10px 20px;
    font-size:14px;
    border:0;
    width: fit-content;
}

a.button.light {
    color:#666;
    background:#ededed;
}

button {
    color: #fff;              /* Text color */
    background-color: #5993bb; /* Background color */
    border-radius: 4px;        /* Rounded corners */
    padding: 10px 20px;        /* Internal padding */
    font-size: 14px;           /* Font size */
    border: none;              /* Remove border */
    width: fit-content;        /* Fit content width */
    cursor: pointer;           /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth background color transition on hover */
}

button:hover {
    background-color: #487a99; /* Darker background on hover */
}

button:focus {
    outline: 2px solid #ffbf00; /* Adds a yellow focus outline */
    outline-offset: 2px;        /* Adds space between the button and the outline */
}

.btn {
    display: inline-block;        /* Makes the anchor behave like a button */
    color: #fff;                  /* Text color (white) */
    background-color: #5993bb;    /* Background color (light blue) */
    border-radius: 4px;           /* Rounded corners */
    padding: 10px 20px;           /* Padding inside the button */
    font-size: 14px;              /* Font size */
    text-align: center;           /* Center text inside the button */
    text-decoration: none;        /* Remove underline from anchor */
    cursor: pointer;              /* Show pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition effect for background */
}

.btn:hover {
    background-color: #487a99;    /* Darker background color on hover */
}

.btn:focus {
    outline: 2px solid #ffbf00;   /* Yellow outline when focused */
    outline-offset: 2px;          /* Space */
}

.text-left {
    text-align:left;
}

.text-right {
    text-align:right;
}

table {
    width:100%;
    border-spacing:0;
    border-collapse: collapse;
}

table th, table td {
    text-align:left;
    font-size:14px;
    padding:10px;
    margin:0;
    font-size:x-small;
}

tbody tr:nth-child(odd) {
    background:#efefef;
}

tbody tr.subtotal {
    background:#ccc;
}

thead th, tbody tr.total {
    background:#b9bb59;
    color:#fff;
    font-weight:bold;
}

table.cart {
    margin-bottom:40px;
}

table.cart img {
    width:50px;
}

tbody td.num {
    text-align:right;
}

td input[type="submit"] {
    font-size:12px;
    padding:4px 10px;
}

form p label, form p input {
    float:left;
    clear:both;
}

form p label {
    font-size:14px;
    padding-bottom:4px;
}

form p input {
    width:300px;
    font-size:13px;
    margin-bottom:10px;
    padding:10px 12px;
    border:0;
    background:#efefef;
    color:#666;
    border-radius:4px;
}

ul.errorlist {
   float:left;
   color:#ff0000;
   clear:both;
   font-size:13px;
   margin:0 0 0 10px;
   padding:10px 0;
}


#header {
    font-size:18px;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow:auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: 160px;
    text-align: center;
    background-color: rgb(252, 247, 237);
    background-image: url('/static/img/HeaderBannerF.jpg');
    background-size: cover;
    color: #ddd;
}

#header .user {
    float:right;
    padding-right:15px;
    font-size: smaller;
}


#subheader {
    background:#272626;
    color:#fffefe;
    padding:5px 5px;
    overflow:auto;
}

#header .logo {
    font-family: 'Ubuntu', sans-serif;
    color:#1505a5;
    font-size:22px;
}

#subheader .cart {
    text-align: center;
    padding-top:4px;
}

#content {
    padding:0 100px;
    overflow:hidden;
}

#sidebar {
    width:220px;
    float:right;
}

#sidebar ul{
    margin:0;
    padding:0;
}

#sidebar ul li {
    margin:0;
    list-style:none;
    padding:10px 14px;
}

#sidebar ul li a {
    display:block;
}

#sidebar ul li.selected {
    background:#868403;
    border-radius:4px;
}

#sidebar ul li.selected a {
    color:#fff;
}

#main {
    float:left;
    width: 96%;
    margin-right:-220px;
    overflow:hidden;
}

.product-list .item {
    width:25%;
    padding:10px 20px 10px 0;
    float:left;
    text-align:center;
    line-height:1.2;
    border-radius: 5px;

}

.product-list .item img {
    width:100%;
    margin-bottom:8px;
    margin-left: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5)
}

.product-detail {
    text-align:justify;
}

.product-detail .price {
    color:#333;
    font-size:28px;
    font-weight:bold;
}

.product-detail img {
    width:40%;
    float:left;
    padding:0 20px 20px 0;
}

.product-detail h1 {
    margin-bottom:0;
}

.product-detail h2 {
    margin-top:10px;
}

.order-form {
    float:left;
}

.order-info {
    float:right;
    width:300px;
    background:#efefef;
    padding:10px 20px;
    color:#333;
    border-bottom:4px solid #5993bb;
}

.order-info h3 {
    color:#5993bb;
}

.order-info ul li {
    margin:0;
    padding:0;
    font-size:14px;
}

.order-info p {
    font-weight:bold;
    float:right;
}

.order-info span {
    float:right;
}

.neg {
    color:#dc1616;
}

.languages {
   float:right;
   padding-top:4px;
   font-size:14px;
}

.languages ul {
    list-style:none;
    margin:0;
    padding:0;
    float:left;
}

.languages ul li {
    float:left;
    margin:0 0 0 10px;
    font-size:14px;
}

.languages p {
    float:left;
    margin:0;
}

.recommendations {
    clear:both;
}

.recommendations div {
    float:left;
}

.recommendations img {
    width:200px
}

.recommendations p {
    clear:both;
}

.recommendations.cart {
    width:60%;
    float:left;
    overflow:auto;
}

.recommendations.cart h3 {
    margin-top:0;
}

.recommendations.cart .item {
    margin-right:10px;
}

.recommendations.cart img {
    width:120px;
}

/* braintree hosted fields */
form div.field {
    font-size:13px;
    color:#666;
    width:300px;
    height:22px;
    margin-bottom:10px;
    padding:6px 12px;
    border:0;
    background:#efefef;
    color:#666;
    border-radius:4px;
}

#footer {
    padding:10px 100px;
    font-size:18px;
    overflow:auto;
    background:#272626;
    color:#fffefe;
    font-size: small;
    margin-left: auto; 
    margin-right: auto; 
    max-width: 90%; 
    text-align: center;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
  }
  
  /* Hide the links inside the navigation menu (except for logo/home) */
  .topnav #myLinks {
    display: none;
  }
  
  /* Style navigation menu links */
  .topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  /* Add a grey background color on mouse-over */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Style the active link (or home/logo) */
  .active {
    background-color: #fee501;
    color: white;
  }

  .login-form {
    float:left;
  }




/* Responsive CSS */
@media (max-width: 768px) {
    #header {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100%;
        background-image: url('/static/img/HeaderBannerM.jpg');
    }
    #header .user {
        float:right;
        padding-top:4px;
        font-size: smaller;
    }
    #subheader {
        text-align: center;
        margin-top: 10px;
    }
    .cart {
        font-size: 14px;
    }
    #content {
        padding: 0px;
    }
    }
    