
/* BASIC */

html {

}

.navitem-custom{
    margin-left: 5%;
}

.navlink-custom{
    color: black;
    font-size: 1.2em;
}

body {
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: 100%;
}

a {
    color: #92badd;
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display:inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding-top: 3%;
    padding-bottom: 2%;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 30%;
    position: relative;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    background-color: #fff;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid rgb(177,216,110);
}



/* ITEM PAGE */
.itemPage {
    margin: 5% 20% 5% 20%;
    text-align: left;
    -webkit-border-radius: unset;
    border-radius: unset;
    width: 60%;
    max-width: none;
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    align-items: center;
    display: flex;
    justify-content: center;
}
.itemPage h5{
    color: rgb(177,216,110);
}
.product {
    display: block;
}
.image{
    width: 30%;
}
.productInfo {
    width: 70%;
    min-width: auto;
    margin: 40px;
}
.productPagePrice {
    font-size: 30px;
}



/* NEW PRODUCT PAGE */
.newProductForm {
    display: block;
    text-align: center;
    margin: 100px 0 0 0;
}
.newProductForm form{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.newProductForm td{
    padding: 0 10px 0 0;
}
.newProductForm input[type=submit], .newProductForm input[type=reset] {
    margin: 10px 10px 10px 10px;
    color: white;
    padding: 9px 20px;
    font-size: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: none;
}


/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
    background-color: rgb(206,223,136);
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    /*-webkit-box-shadow: 0 10px 30px 0 rgb(206,223,136);
    box-shadow: 0 10px 30px 0 rgb(206,223,136);*/
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
    background-color: rgb(177,216,110);
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

input[type=text], input[type=password], input[type=email]{
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus{
    background-color: #fff;
    border-bottom: 2px solid rgb(177,216,110);
}

input[type=text]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder{
    color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after{
    width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width:60%;
}

.footerCenter{
    align-content: center;
}



/* DEFAULT PAGE ITEMS */
.card {
    float: left;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    width: 20%;
    margin: 30px;
    text-align: center;
    font-family: arial, serif;
    transition: transform .2s; /* Animation */
    color: black;
}

.card:hover {
    transform: scale(1.05);
}

.price {
    text-align: left;
    padding-left: 10px;
    font-size: 22px;
}

.description {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 10px 0 5px;
    width: 80%;
    height: 20%;
}
.defaultPage {
    text-align: center;
}
.defaultPage::after {
    content: "";
    clear: both;
    display: table;
}




/* buttons on navbar "Warenkorb" and "Login" */
#buttonNavbar {
    margin: 10px 10px 10px 10px;
    color: white;
    padding: 9px 20px;
    font-size: 15px;
}
.navbar-brand {
    font-size: x-large;
}

input[type=button].addToShoppingCart {
    margin: 10px 10px 10px 0;
    color: white;
    padding: 9px 20px;
    text-transform: none;
    font-size: 15px;
    text-align: left;
    width: 100%;
}

.fussbereich {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: white;
}

.table {
    display: table;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
    padding: 10px;
    color: black;
    text-decoration: none;
}
.cell:hover {
    text-decoration: none;
}

.row:hover {
    background-color: #cccccc;
    text-decoration: none;
}

.rowTitle {
    display: table-row;
}

.nigger {
    background-color: black;
    height: 100%;
}

input[type=checkbox].css-checkbox{ display: none; }

.css-label{
    padding-left: 20px;
    display: flex;
    width: 20%;
    height: 300px;
    background-image: url("../image/stoff/blau.jpg");
    background-repeat: no-repeat;
    background-color: #E9EEF4;
    background-size: contain;
}

.first-select{
    background-image: url("../image/stoff/blau.jpg");
}

.second-select{
    background-image: url("../image/stoff/flieder.jpg");
}

.third-select{
    background-image: url("../image/stoff/hellrosa.jpg");
}

.fourth-select{
    background-image: url("../image/stoff/rosa.jpg");
}

input[type=checkbox].css-checkbox:checked + label.css-label {
    background-position: 0 0;
    border: 3px solid #2FBCDF;
}

.stoeffe {
    border: 1px solid lightgray;
}

.progressbarcontainer {
    width: 600px;
    margin: 100px auto;
}
.progressbar {
    counter-reset: step;
}
.progressbar li {
    list-style-type: none;
    width: 32.5%;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
}
.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active {
    color: #0101DF;
}
.progressbar li.active:before {
    border-color: #0101DF;
}
.progressbar li.active + li:after {
    background-color: #0101DF;
}