2019-03-22 10:10:07 +00:00
|
|
|
/****** GENERAL ******/
|
|
|
|
body {
|
|
|
|
margin:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-family:'Open Sans', sans-serif;
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#002b3e;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:14px;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2019-04-14 21:02:42 +00:00
|
|
|
font-weight:900;
|
|
|
|
line-height:22px;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
h1 {
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:18px;
|
|
|
|
font-weight :bolder;
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#296178;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-bottom:1px #a14032 solid;
|
2019-03-22 10:10:07 +00:00
|
|
|
display:inline-block;
|
2019-04-02 21:15:07 +00:00
|
|
|
margin-bottom:20px;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
h2 {
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:100%;
|
2019-03-22 10:10:07 +00:00
|
|
|
margin-bottom:-14px;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-weight:bold;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
p {
|
2019-04-14 21:02:42 +00:00
|
|
|
line-height:22px;
|
2019-03-22 10:10:07 +00:00
|
|
|
margin:18px 0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color:#000;
|
2019-04-14 21:02:42 +00:00
|
|
|
text-decoration:none;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
a:hover {
|
2019-04-14 21:02:42 +00:00
|
|
|
color:green;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.clearer {
|
2019-04-14 21:02:42 +00:00
|
|
|
clear:both;
|
2019-03-22 10:10:07 +00:00
|
|
|
height:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
line-height:0;
|
2019-03-22 10:10:07 +00:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
}
|
|
|
|
.red {
|
2019-04-14 21:02:42 +00:00
|
|
|
color:#db513d;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.row {
|
2019-04-14 21:02:42 +00:00
|
|
|
clear:both;
|
2019-03-22 10:10:07 +00:00
|
|
|
padding:60px 0;
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
|
|
|
position:relative;
|
|
|
|
min-width:777px;
|
|
|
|
background:-moz-linear-gradient(top, rgba(254,240,228,1) 0%, rgba(255,255,255,0) 25%);
|
|
|
|
background:-webkit-linear-gradient(top, rgba(254,240,228,1) 0%,rgba(255,255,255,0) 25%);
|
|
|
|
background:linear-gradient(to bottom, rgba(254,240,228,1) 0%,rgba(255,255,255,0) 25%);
|
|
|
|
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#fef0e4', endColorstr='#00ffffff',GradientType=0 );
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
2019-03-28 22:14:20 +00:00
|
|
|
.product-detail .row.content {
|
|
|
|
margin-top:118px;
|
|
|
|
padding-top:35px;
|
|
|
|
}
|
2019-03-22 10:10:07 +00:00
|
|
|
.row::before {
|
|
|
|
width:120px;
|
|
|
|
height:20px;
|
2019-04-14 21:02:42 +00:00
|
|
|
background:#a24033;
|
|
|
|
display:block;
|
|
|
|
content:"";
|
|
|
|
position:absolute;
|
|
|
|
top:-10px;
|
|
|
|
left:0;
|
2019-04-14 21:14:37 +00:00
|
|
|
z-index:1001;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.row::after {
|
|
|
|
width:120px;
|
|
|
|
height:20px;
|
2019-04-14 21:02:42 +00:00
|
|
|
background:#a24033;
|
|
|
|
display:block;
|
|
|
|
content:"";
|
|
|
|
position:absolute;
|
|
|
|
top:-10px;
|
|
|
|
right:0;
|
2019-04-14 21:14:37 +00:00
|
|
|
z-index:1001;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.col-777 {
|
|
|
|
max-width:777px;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
2019-03-28 10:06:55 +00:00
|
|
|
.col-1040 {
|
|
|
|
max-width:1040px;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
2019-03-28 22:17:03 +00:00
|
|
|
.col-1-3 {
|
2019-03-29 00:01:41 +00:00
|
|
|
width:36%;
|
2019-03-28 22:17:03 +00:00
|
|
|
float:left;
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
|
|
|
.col-2-3 {
|
2019-03-29 00:01:41 +00:00
|
|
|
width:62%;
|
2019-03-28 22:17:03 +00:00
|
|
|
margin-right:20px;
|
|
|
|
float:left;
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
2019-03-22 10:10:07 +00:00
|
|
|
.col-1-4 {
|
2019-03-28 11:35:06 +00:00
|
|
|
width:245px;
|
|
|
|
margin-right:20px;
|
|
|
|
float:left;
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
|
|
|
min-height:250px;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.col-1-4:nth-child(4) {
|
2019-03-28 11:35:06 +00:00
|
|
|
margin-right:0;
|
|
|
|
}
|
2019-03-22 10:10:07 +00:00
|
|
|
.col-1-5 {
|
|
|
|
width:20%;
|
|
|
|
float:left;
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
/****** HEADER ******/
|
|
|
|
.header {
|
|
|
|
position:fixed;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width:100%;
|
|
|
|
background:rgba(0, 0, 0, 0.7);
|
2019-04-14 21:14:37 +00:00
|
|
|
z-index:1003;
|
2019-04-14 21:02:42 +00:00
|
|
|
}
|
|
|
|
.header ul {
|
2019-03-22 10:10:07 +00:00
|
|
|
max-width:900px;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.header li {
|
|
|
|
list-style:none;
|
2019-03-22 10:10:07 +00:00
|
|
|
float:left;
|
|
|
|
margin:0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.header li a {
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#fcd4b1;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:110%;
|
2019-03-22 10:10:07 +00:00
|
|
|
padding:20px 15px 20px 15px;
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.header li a:hover {
|
|
|
|
background:#296178;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
2019-03-28 22:17:03 +00:00
|
|
|
/****** SEARCHBAR ******/
|
|
|
|
.searchbar {
|
|
|
|
position:fixed;
|
|
|
|
top:65px;
|
|
|
|
width:100%;
|
|
|
|
padding:6px 0;
|
2019-04-14 21:02:42 +00:00
|
|
|
background:rgba(252, 212, 177, 0.7);
|
2019-04-14 21:14:37 +00:00
|
|
|
z-index:1000;
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
|
|
|
.searchbar form {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
.searchbar .searchfield {
|
|
|
|
width:390px;
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
2019-03-28 22:17:03 +00:00
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
.searchbar .searchfield input[type="text"] {
|
|
|
|
border:2px #a14032 solid;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-radius:7px;
|
2019-03-28 22:17:03 +00:00
|
|
|
font-size:100%;
|
|
|
|
padding:6px 40px 6px 10px;
|
|
|
|
color:#002b3e;
|
2019-04-14 21:02:42 +00:00
|
|
|
width:100%;
|
2019-03-28 22:17:03 +00:00
|
|
|
margin:4px;
|
|
|
|
}
|
|
|
|
.searchbar .searchfield input[type="text"]:focus {
|
|
|
|
border:3px #a14032 solid;
|
|
|
|
outline:none;
|
|
|
|
margin:3px;
|
|
|
|
}
|
|
|
|
.searchbar button {
|
2019-04-14 21:02:42 +00:00
|
|
|
position:absolute;
|
2019-03-28 22:17:03 +00:00
|
|
|
color:#a14032;
|
|
|
|
top:4px;
|
|
|
|
right:-3px;
|
|
|
|
border:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:140%;
|
|
|
|
cursor:pointer;
|
2019-03-28 22:17:03 +00:00
|
|
|
padding:7px 10px 6px 10px;
|
2019-04-14 21:02:42 +00:00
|
|
|
background:transparent;
|
|
|
|
border-bottom-right-radius:6px;
|
|
|
|
border-top-right-radius:7px;
|
2019-03-28 22:17:03 +00:00
|
|
|
border-left:1px #a14032 solid;
|
|
|
|
}
|
|
|
|
.searchbar button:hover {
|
|
|
|
color:#fff;
|
|
|
|
background:#a14032;
|
|
|
|
}
|
|
|
|
.searchbar select {
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
|
|
|
display:block;
|
2019-03-28 22:17:03 +00:00
|
|
|
border:2px #a14032 solid;
|
2019-04-14 21:02:42 +00:00
|
|
|
background:#fff;
|
|
|
|
width:120px;
|
|
|
|
padding:5px;
|
|
|
|
font-size:100%;
|
|
|
|
line-height:1;
|
|
|
|
border-radius:7px;
|
|
|
|
height:32px;
|
|
|
|
-webkit-appearance:none;
|
|
|
|
float:left;
|
|
|
|
margin:4px 10px 4px 0;
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
|
|
|
.searchbar select:last-of-type {
|
2019-04-14 21:02:42 +00:00
|
|
|
margin-right:0;
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
|
|
|
.searchbar select:focus {
|
|
|
|
outline:none;
|
|
|
|
}
|
|
|
|
.searchbar .search-filter-important {
|
|
|
|
width:auto;
|
|
|
|
float:right;
|
|
|
|
}
|
2019-03-22 10:10:07 +00:00
|
|
|
/****** BANNER ******/
|
|
|
|
.banner {
|
2019-04-14 21:02:42 +00:00
|
|
|
background:url(img/backgroun01.jpg) 0 0 no-repeat;
|
|
|
|
padding:100px 0 40px 0;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.banner img {
|
|
|
|
width:392px;
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
|
|
|
/****** home-search-intro ******/
|
|
|
|
.home-search-intro {
|
|
|
|
text-align:center;
|
|
|
|
font-family:'Lora', serif;
|
|
|
|
font-style:italic;
|
|
|
|
font-size:150%;
|
|
|
|
line-height:150%;
|
|
|
|
}
|
|
|
|
.home-search-intro p {
|
|
|
|
line-height:140%;
|
|
|
|
}
|
|
|
|
.home-search-intro form {
|
|
|
|
position:relative;
|
2019-03-22 10:10:07 +00:00
|
|
|
width:550px;
|
|
|
|
margin:20px auto 40px auto;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.home-search-intro input.search-field-content {
|
2019-03-22 10:10:07 +00:00
|
|
|
border:2px #a14032 solid;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-radius:7px;
|
2019-03-22 10:10:07 +00:00
|
|
|
font-size:100%;
|
|
|
|
padding:10px 40px 10px 10px;
|
|
|
|
color:#002b3e;
|
2019-04-14 21:02:42 +00:00
|
|
|
width:100%;
|
2019-03-22 10:10:07 +00:00
|
|
|
margin:2px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.home-search-intro input.search-field-content:focus {
|
2019-03-22 10:10:07 +00:00
|
|
|
border:3px #a14032 solid;
|
|
|
|
outline:none;
|
|
|
|
margin:1px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.home-search-intro .search-filter-quick {
|
|
|
|
display:none;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.home-search-intro button {
|
|
|
|
position:absolute;
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#a14032;
|
|
|
|
top:0;
|
|
|
|
right:0;
|
|
|
|
border:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:140%;
|
|
|
|
cursor:pointer;
|
2019-03-22 10:10:07 +00:00
|
|
|
padding:9px 9px 9px 11px;
|
2019-04-14 21:02:42 +00:00
|
|
|
margin:2px 0 0 0;
|
|
|
|
background:transparent;
|
|
|
|
border-bottom-right-radius:8px;
|
|
|
|
border-top-right-radius:8px;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.home-search-intro button:hover {
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#fff;
|
|
|
|
background:#a14032;
|
|
|
|
}
|
|
|
|
.search-filter-quick {
|
2019-04-14 21:02:42 +00:00
|
|
|
text-align:left;
|
2019-03-22 10:10:07 +00:00
|
|
|
padding:0 20px;
|
|
|
|
}
|
|
|
|
.search-filter-quick a {
|
2019-04-14 21:02:42 +00:00
|
|
|
font-family:'Open Sans', sans-serif;
|
|
|
|
font-style:normal;
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#a14032;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:70%;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.search-filter-quick a:last-of-type {
|
2019-04-14 21:02:42 +00:00
|
|
|
float:right;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.home-search-intro select {
|
|
|
|
position:relative;
|
|
|
|
display:block;
|
2019-03-22 10:10:07 +00:00
|
|
|
border:2px #a14032 solid;
|
2019-04-14 21:02:42 +00:00
|
|
|
background:transparent;
|
|
|
|
width:150px;
|
|
|
|
padding:5px;
|
|
|
|
font-size:100%;
|
|
|
|
line-height:1;
|
|
|
|
border-radius:7px;
|
|
|
|
height:45px;
|
|
|
|
-webkit-appearance:none;
|
|
|
|
float:left;
|
|
|
|
margin:3px 30px 0 0;
|
|
|
|
}
|
|
|
|
.home-search-intro select:last-of-type {
|
|
|
|
margin-right:0;
|
|
|
|
}
|
|
|
|
.home-search-intro select:focus {
|
2019-03-22 10:10:07 +00:00
|
|
|
outline:none;
|
|
|
|
}
|
|
|
|
/****** FOOTER ******/
|
|
|
|
.footer {
|
2019-04-14 21:02:42 +00:00
|
|
|
background:url(img/backgroun02.jpg) 0 0 no-repeat;
|
2019-03-22 10:10:07 +00:00
|
|
|
padding:60px 0;
|
|
|
|
}
|
|
|
|
.footer h3 {
|
|
|
|
color:#fff;
|
2019-04-14 21:02:42 +00:00
|
|
|
margin:4px 0;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.footer a {
|
|
|
|
color:#fcd4b1;
|
|
|
|
}
|
|
|
|
.footer a:hover {
|
|
|
|
color:#a14032;
|
|
|
|
}
|
|
|
|
.footer ul {
|
|
|
|
padding:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
margin:0;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
.footer li {
|
2019-04-14 21:02:42 +00:00
|
|
|
list-style-type:none;
|
|
|
|
padding:2px 0;
|
|
|
|
margin:0;
|
2019-03-22 10:10:07 +00:00
|
|
|
}
|
|
|
|
/****** IMPRINT ******/
|
|
|
|
.imprint {
|
2019-04-14 21:02:42 +00:00
|
|
|
background:#000;
|
|
|
|
text-align:center;
|
2019-03-22 10:10:07 +00:00
|
|
|
color:#fcd4b1;
|
|
|
|
padding:10px 0;
|
|
|
|
}
|
|
|
|
.imprint a {
|
|
|
|
color:#fcd4b1;
|
|
|
|
}
|
|
|
|
.imprint a:hover {
|
|
|
|
color:#a14032;
|
|
|
|
}
|
|
|
|
.imprint img {
|
|
|
|
margin:0 10px -3px 0;
|
|
|
|
}
|
2019-03-28 11:35:06 +00:00
|
|
|
/****** SEARCH RESULTS Variante 3 ******/
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item {
|
|
|
|
position:absolute;
|
2019-03-28 11:35:06 +00:00
|
|
|
top:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
left:0;
|
|
|
|
width:100%;
|
2019-03-28 11:35:06 +00:00
|
|
|
z-index:999;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover {
|
2019-03-28 13:42:05 +00:00
|
|
|
top:-10px;
|
2019-04-14 21:02:42 +00:00
|
|
|
left:-16px;
|
2019-03-28 11:35:06 +00:00
|
|
|
width:278px;
|
2019-04-14 21:14:37 +00:00
|
|
|
z-index:1002;
|
2019-03-28 11:35:06 +00:00
|
|
|
border:1px #002b3e solid;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-radius:7px;
|
|
|
|
-webkit-box-shadow:10px 10px 60px 0px rgba(0,0,0,0.75);
|
|
|
|
-moz-box-shadow:10px 10px 60px 0px rgba(0,0,0,0.75);
|
|
|
|
box-shadow:10px 10px 60px 0px rgba(0,0,0,0.75);
|
|
|
|
}
|
|
|
|
.search-results-item .search-results-item-img {
|
|
|
|
border-top-left-radius:7px;
|
|
|
|
border-top-right-radius:7px;
|
|
|
|
}
|
|
|
|
.search-results-item .search-results-item-img img {
|
|
|
|
-webkit-clip-path:inset(33px 0 33px 0);
|
|
|
|
clip-path:inset(33px 0 33px 0);
|
2019-03-28 11:35:06 +00:00
|
|
|
width:245px;
|
|
|
|
margin:-33px 0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-img img {
|
|
|
|
-webkit-clip-path:inset(0 0 0 0);
|
|
|
|
clip-path:inset(0 0 0 0);
|
2019-03-28 11:35:06 +00:00
|
|
|
width:278px;
|
|
|
|
margin:0 0;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-top-left-radius:6px;
|
|
|
|
border-top-right-radius:6px;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-info {
|
|
|
|
background:#fef0e4;
|
2019-03-28 11:35:06 +00:00
|
|
|
padding:10px;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-bottom-right-radius:7px;
|
|
|
|
border-bottom-left-radius:7px;
|
2019-03-28 13:42:05 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-info {
|
|
|
|
border-bottom-right-radius:0;
|
|
|
|
border-bottom-left-radius:0;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-info h2 {
|
2019-03-28 11:35:06 +00:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-description {
|
2019-03-28 11:35:06 +00:00
|
|
|
display:none;
|
|
|
|
margin:0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-description {
|
2019-03-28 11:35:06 +00:00
|
|
|
display:block;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta {
|
|
|
|
padding:5px;
|
2019-03-28 11:35:06 +00:00
|
|
|
background:#fff;
|
2019-04-14 21:02:42 +00:00
|
|
|
border-bottom-right-radius:7px;
|
|
|
|
border-bottom-left-radius:7px;
|
|
|
|
font-size:11px;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-meta {
|
|
|
|
padding:5px 10px;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta p {
|
2019-03-28 11:35:06 +00:00
|
|
|
margin:0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta ul {
|
2019-03-28 11:35:06 +00:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
width:180px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li {
|
|
|
|
list-style:none;
|
2019-03-28 11:35:06 +00:00
|
|
|
margin:0;
|
2019-03-28 13:42:05 +00:00
|
|
|
padding:2px 11px;
|
2019-03-28 11:35:06 +00:00
|
|
|
float:left;
|
|
|
|
border-right:1px #002b3e solid;
|
2019-03-28 13:42:05 +00:00
|
|
|
height:16px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li {
|
2019-03-28 13:42:05 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li.cert svg {
|
|
|
|
width:16px;
|
2019-04-14 19:37:20 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li.din svg {
|
2019-04-14 19:37:20 +00:00
|
|
|
margin-top:-2px;
|
2019-04-14 21:02:42 +00:00
|
|
|
width:20px;
|
2019-04-14 19:37:20 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li svg path {
|
|
|
|
fill:#296178 !important;
|
2019-03-28 13:42:05 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-meta li {
|
2019-03-28 13:42:05 +00:00
|
|
|
padding:2px 11px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li i {
|
2019-03-28 13:42:05 +00:00
|
|
|
font-size:13px;
|
|
|
|
color:#296178;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li:first-child {
|
2019-03-28 11:35:06 +00:00
|
|
|
padding-left:0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta li:last-child {
|
2019-03-28 11:35:06 +00:00
|
|
|
border-right:0;
|
|
|
|
padding-right:0;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-meta li:last-child {
|
2019-03-28 13:42:05 +00:00
|
|
|
padding-left:10px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta .search-results-item-meta-compl {
|
2019-03-28 11:35:06 +00:00
|
|
|
width:180px;
|
|
|
|
float:left;
|
2019-03-28 13:42:05 +00:00
|
|
|
margin-bottom:6px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-meta .search-results-item-meta-compl {
|
2019-03-28 13:42:05 +00:00
|
|
|
width:205px;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta-status {
|
2019-03-28 11:35:06 +00:00
|
|
|
width:35px;
|
2019-03-28 13:42:05 +00:00
|
|
|
padding:0 0 3px 5px;
|
2019-03-28 11:35:06 +00:00
|
|
|
float:right;
|
|
|
|
border-left:1px #002b3e solid;
|
2019-04-14 21:02:42 +00:00
|
|
|
text-align:center;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta .search-results-item-meta-compl-bar {
|
2019-03-28 11:35:06 +00:00
|
|
|
background:#c9d7dd;
|
|
|
|
width:100%;
|
|
|
|
height:7px;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta .search-results-item-meta-compl-bar span {
|
2019-03-28 11:35:06 +00:00
|
|
|
background:#296178;
|
|
|
|
height:7px;
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta .search-results-item-meta-date {
|
2019-03-28 11:52:54 +00:00
|
|
|
display:none;
|
2019-03-28 13:42:05 +00:00
|
|
|
margin-top:3px;
|
2019-03-28 11:52:54 +00:00
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item:hover .search-results-item-meta .search-results-item-meta-date {
|
2019-03-28 11:52:54 +00:00
|
|
|
display:block;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta .search-results-item-meta-date .released {
|
2019-03-28 13:42:05 +00:00
|
|
|
float:right;
|
|
|
|
}
|
2019-04-14 21:02:42 +00:00
|
|
|
.search-results-item .search-results-item-meta-status svg {
|
|
|
|
transform:rotate(-90deg);
|
|
|
|
stroke-dasharray:251; /* (2PI * 40px) */
|
|
|
|
stroke-dashoffset:251;
|
|
|
|
animation:offsettozero 1s linear forwards;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
|
|
|
@keyframes offsettozero {
|
|
|
|
to {
|
2019-04-14 21:02:42 +00:00
|
|
|
stroke-dashoffset:200;
|
2019-03-28 11:35:06 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-28 22:17:03 +00:00
|
|
|
/****** PRODUCT DETAIL PAGE ******/
|
2019-03-29 00:01:41 +00:00
|
|
|
.product-detail .row img.product-img {
|
2019-04-14 21:02:42 +00:00
|
|
|
width:100%;
|
|
|
|
border-radius:7px;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|
|
|
|
.product-detail table.product-meta {
|
2019-04-14 21:02:42 +00:00
|
|
|
width:100%;
|
2019-03-28 22:17:03 +00:00
|
|
|
background:#fef0e4;
|
|
|
|
padding:20px;
|
2019-04-14 21:02:42 +00:00
|
|
|
position:relative;
|
|
|
|
border-radius:7px;
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
2019-03-29 00:01:41 +00:00
|
|
|
.product-detail table.product-meta a {
|
|
|
|
color:#db513d;
|
|
|
|
}
|
|
|
|
.product-detail table.product-meta th {
|
2019-04-14 21:02:42 +00:00
|
|
|
text-align:left;
|
2019-03-29 00:01:41 +00:00
|
|
|
padding:10px 0 0 0;
|
|
|
|
}
|
|
|
|
.product-detail table.product-meta td {
|
2019-04-14 21:02:42 +00:00
|
|
|
vertical-align:top;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|
|
|
|
.product-detail table.product-meta h3 {
|
|
|
|
font-weight:normal;
|
2019-04-14 21:02:42 +00:00
|
|
|
font-size:11px;
|
2019-03-29 00:01:41 +00:00
|
|
|
border-top:1px #296178 solid;
|
|
|
|
margin:0;
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|
|
|
|
.product-detail table.product-meta h3:first-child {
|
|
|
|
margin-top:0;
|
|
|
|
}
|
|
|
|
.product-detail table.product-meta ul {
|
|
|
|
padding:0 0 0 20px;
|
|
|
|
margin:-3px 0 0 0;
|
|
|
|
}
|
|
|
|
.product-detail table.product-meta li {
|
2019-04-14 21:02:42 +00:00
|
|
|
list-style-type:circle;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|
|
|
|
.product-detail table.product-meta svg {
|
2019-04-14 21:02:42 +00:00
|
|
|
transform:rotate(-90deg);
|
|
|
|
stroke-dasharray:502; /* (2PI * 40px) */
|
|
|
|
stroke-dashoffset:502;
|
|
|
|
animation:offsettozero 1s linear forwards;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|
|
|
|
.product-detail table.product-meta @keyframes offsettozero {
|
|
|
|
to {
|
2019-04-14 21:02:42 +00:00
|
|
|
stroke-dashoffset:180;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|
2019-03-28 22:17:03 +00:00
|
|
|
}
|
2019-03-29 00:01:41 +00:00
|
|
|
/****** ELEMENTS ******/
|
|
|
|
.profile-completed {
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
.profile-completed p {
|
|
|
|
width:auto;
|
|
|
|
float:right;
|
|
|
|
margin:0;
|
|
|
|
color:#db513d;
|
|
|
|
}
|
|
|
|
.profile-completed-bar {
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
2019-03-29 00:01:41 +00:00
|
|
|
background:#c9d7dd;
|
|
|
|
width:86%;
|
|
|
|
height:20px;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
.profile-completed-bar span {
|
|
|
|
background:#296178;
|
|
|
|
height:20px;
|
2019-04-14 21:02:42 +00:00
|
|
|
display:block;
|
2019-03-29 00:01:41 +00:00
|
|
|
}
|