/*------------------
|                   |
|    General CSS    |
|                   |
-------------------*/

body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

* {
    box-sizing: border-box;
}

html {
    font-family: 'Merriweather', serif;*/
}

/*------------------
|                   |
|    Custom CSS     |
|                   |
-------------------*/

.wrapper {
    max-width: 1200px;
    margin:auto;
   /* background-color:#DCDCDC;*/
}

/*------------------
|                   |
|    Nav & Footer   |
|                   |
-------------------*/

nav {
    border-bottom:1px dotted #404040;

}

nav *, footer * {
    color:black;
}

nav a {
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9em;

}

nav a:hover {
    text-decoration: overline;
}

nav i:hover {
    color:#c2c2c2;
}

.nav-item {
    padding:15px 30px 14px!important;
    text-align: right;
}

.logo img {
    width: 100%;
}


footer {
    border-top:1px dotted #404040;
    width: 100%;
    color:white;
    font-size: 0.8em;
}

/*------------------
|                   |
|   Color Picker    |
|                   |
-------------------*/

.row-line {
    border-bottom:1px dotted #404040;
    margin: 10px 0 10px 0;
}

.cp-h2 {
    font-weight: 700;
    font-size: 1.2em;
}

.cp-box-container {
    padding:0;
}

.cp-box {
    margin: 0.5%;
    width: 18px;
    height: 18px;
    border: 1px solid black;
    float: left;
}

.cp-box:hover {
    opacity: 0.5;
}

/*------------------
|                   |
|    Item Cards     |
|                   |
-------------------*/

.card {
	border:1px dotted #404040;
    padding:15px;
    /*background-color: #E6E2E4;*/
}

.card:hover {
    background-color: #AD98A1;
}

.card:hover>.card-img img {
    opacity: 0.8;
}

.card-img {
    width: 80%;
    margin: auto;
    margin-top:1em;
}

.card-img img {
    width: 100%;
}

.card-title {
    text-align: center;
    padding: 1em 0 1em 0;
}

/*------------------
|                   |
|   Media queries   |
|                   |
-------------------*/

/* For mobile phones & general */

[class*="col-"] {
    float: left;
    padding: 15px;
    width: 100%;
}

    .col-xs-1 {width: 8.33%;}
    .col-xs-2 {width: 16.66%;}
    .col-xs-3 {width: 25%;}
    .col-xs-4 {width: 33.33%;}
    .col-xs-5 {width: 41.66%;}
    .col-xs-6 {width: 50%;}
    .col-xs-7 {width: 58.33%;}
    .col-xs-8 {width: 66.66%;}
    .col-xs-9 {width: 75%;}
    .col-xs-10 {width: 83.33%;}
    .col-xs-11 {width: 91.66%;}
    .col-xs-12 {width: 100%;}

.row:after {
    content: "";
    clear: both;
    display: block;
}

    /* For tablets: */

@media only screen and (min-width: 600px) {
    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
    
    .nav-item {
    text-align: left;
}

    
    .nav-right {
        text-align: right;
        float: right;
    }
    
   /* .item-content {
	border-left: 1px dotted #404040;
    }*/
    
    .cp-h3 {
        margin-top: 0.5em;
    }
    
    .cp-box {
        margin: 1%;
        width: 20px;
        height: 20px;
        border: 1px solid black;
    }
    
    .cp-box-container {
    padding:5px;
    }
    
}

    /* For desktop: */

@media only screen and (min-width: 768px) {
    .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%;}
}