/*! style.css |  | */

/* Document
   ========================================================================== */

/**
 * 1. Style for Catalog Application.
 */

/* Sections
   ========================================================================== */

   /* Grid View
–––––––––––––––––––––––––––––––––––––––––––––––––– */  
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
}

[class*="col-"] {
    float: left;    
}

.row::after {
    content: "";
    clear: both;
    display: table;
}
.clear {
    clear: both;
}   
   /* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 100%; }
body {
  margin: 1%;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: #222;
  background-image: url("../image/bg.jpg"); /* The image used */
  height: 100%; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */ 
  background-attachment: fixed;
  }

* {
    box-sizing: border-box;
    -webkit-transition: all 2s; /* Safari */
    transition: all 2s;
}

img {max-width: 100%;}
img.userimg {max-width: 50%; height: auto; border-radius: 50%;}
@media only screen and (min-width: 768px) {
    /* For desktop computers: */
    img.userimg {max-width: 10%;} 
    img.detail {max-width: 50%;}
} 


   /* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {   
  margin-top: 0;
  margin-bottom: 2rem;
  padding: 10px;
  border-radius: 10px;
  font-weight: 300;
  font-style: italic;
  color: #a6953f;
  }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem; }
h2 { font-size: 2.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 2.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 1.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 0.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 0.5rem; line-height: 1.6;  letter-spacing: 0; }

.text-right {text-align: right;}


.flash {
	background-color: #a6953f;
	width:100%;
	text-decoration: none;

}

.flash li {
	list-style-type: none;
	text-align: center;

}

   /* Colors
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.red {color: #590707;}
.bg-red {background-color: #5907079e; color: #ffffff;}
.bg-white {background-color: #fdfdfdc7;}
/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
  text-decoration: none;
  }
a:hover {
  color: #0FA0CE;
  }
  
  
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Style inputs, select elements and textareas */
form, input[type=text], select, textarea { 
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

form#signup {background-color: brown; color: white;}


@media only screen and (min-width: 768px) {
    /* For desktop computers: */
    form {
        width: 50%;
    }
    form#login {width:70%;}
    form#login input[type=text] {width:50%;} 
} 


/* Style the label to display next to the inputs */
label {
  padding: 6px 6px 6px 0;
  display: inline-block;
}

/* Style the submit button */
input[type=submit] {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; 
  margin: 20px;}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

  
   /* Category Menu
––––––––––––––––––––––––––––––––––––––––––––––––– */


ul.catmenu {
   display: none; 
   border: 2px dotted #a6953f;
   border-radius: 25px;
   background-color: #fdfdfdc7;
   padding: 50px;
}

ul.catmenu li {}


   /* List of Catalogs and Items
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.list {
    padding: 2%;
    width: 100%;
    border: 5px solid #a6953f;
    border-radius: 25px;
    background-color: #fdfdfdc7;
}
.item {
    margin: 1%;
    padding: 1%;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border: 2px solid #a6953f;
    border-radius: 20px;    
}


@media only screen and (min-width: 768px) {
    /* For desktop computers: */
    .item {
        width: 25%;
    }
} 