@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #fafafa;
    overflow-x: hidden;
}

.left-side .pheader {
    font-size: 21px;
}

.page-content {
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.site-header,
.site-footer {
    z-index: 2;
    height: 80px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    align-items: center;
    background: linear-gradient(45deg, rgba(13, 46, 160, 1) 0%, rgba(87, 142, 230, 1) 100%);
    position: fixed;
}

.table-product-info {
    grid-column: 1/4;
    width: 100%;
    display: flex;
    padding: 15px;
    justify-content: center;
}

.table-product-info th {
    background: rgba(13, 46, 160, 1);
    color: #fafafa;
}

.table-product-info th:last-child {
    border-top-right-radius: 15px;
}

.table-product-info tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.table-product-info table {
    font-family: 'Inter', sans-serif;
    border-collapse: collapse;
    width: 70%;
    border: none;
}

.table-product-info td {
    font-size: 12px;
}

.table-product-info td, th {
    text-align: left;
    padding: 8px;
    color: #333333;
}

.table-product-info tr:nth-child(odd) { 
    background-color: #c4c4c4;
}

.table-product-info tr:nth-child(even) {
    background-color: #eaeaea;
}

.site-footer {
    bottom: 0;
    font-size: 12px;
}

.site-header img,
.site-footer img {
    max-height: 180%;
    margin: 0 30px;
}

.site-header div,
.site-footer div {
    display: flex;
    align-items: center;
    height: 100%;
}

label {
   white-space: pre;
}

.product-container {
    display: grid;
    align-items: center;
    grid-template-columns: 70% auto;
    column-gap: 50px;
    padding: 50px 25px;
    /* height: 100vh; */
}

.product-container .product-info {
    max-width: 100%;
}

.product-info img {
    width: 100%;
}

.product-pricelist, .product-contact {
    background: linear-gradient(45deg, rgba(13, 46, 160, 1) 0%, rgba(51, 80, 180, 1) 100%);
    padding: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product-contact {
    position: relative;
}

.product-contact::before {
    content: '';
    background: url('../img/promo.png');
    background-size: cover;
    position: absolute;
    width: 45px;
    height: 45px;
    top: -40px;
    left: -25px;
    /* background: rgb(233, 48, 48); */
    padding: 5px;
    border-radius: 25px;
    font-size: 12px;
}

.product-pricelist .subproduct {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
}

.product-pricelist .subproduct:last-child {
    padding-bottom: 0;
}

.product-pricelist .subproduct-desc {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    font-size: 10px;
    text-align: left;
}

.wrapper {
 background-color:#fff;
 max-width:65em;
 margin:0 auto;
 padding:3em;
 
 /* General horizontal line styles */
}

 .wrapper hr {
  margin-bottom:2em;
 }
 
 .wrapper .plain {
 background-color:#eee;
 border:none;
 height:5px;
}