
/* Body */

@font-face {
	font-family: "RobotoCondensed";
	src: url(https://katjasiva.si/fonts/RobotoCondensed-Regular.ttf) format('truetype');
}

body.main {
	margin: 0px;
	font-size: 14pt;
	font-family: "RobotoCondensed";
	background-image: url("https://rlnnskrr.si/KatjaSiva/images/opmbg.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/* Top menu */

.topnav {
  font-family: "RobotoCondensed";
  position: fixed;
  top: 0px;
  width: 99%;
  overflow: hidden;
  background-color: #b76e79;
  background-image: linear-gradient(to bottom right, #974e59, #d78e99);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.topnav a.link {
	font-family: "RobotoCondensed";
	float: left;
	text-decoration: none;
	display: block;
	color: #ffffff;
	font-size: 17px;
	text-align: center;
	padding: 12px;
	margin: 12px;
}

.topnav span.selected {
	font-family: "RobotoCondensed";
	float: left;
	text-decoration: none;
	display: block;
	color: #b76e79;
	background-color: #ffffff;
	font-size: 17px;
	text-align: center;
	padding: 12px;
	margin: 12px;
	border-radius: 6px;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.9);
}

.topnav span.right {
	font-family: "RobotoCondensed";
	float: right;
}

.topnav a.right {
	font-family: "RobotoCondensed";
	float: right;
}

.topnav span {
	font-family: "RobotoCondensed";
	float: left;
	text-decoration: none;
	color: #e5b80b;
	font-size: 17px;
	text-align: center;
	margin: 12px;
}

.topnav span.img {
	margin: 6px;
}

.topnav a.link:hover {
  font-family: "RobotoCondensed";
  background-color: #ffffff;
  color: #b76e79;
  border-radius: 6px;
}

/* Titles */
h2 {
  font-family: "RobotoCondensed";
  font-weight: 600;
  text-align: center;
  font-size: 28px;
  color: #b76e79;
  margin: 45px 0 35px;
  padding-bottom: 9px;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 6px;
  background: linear-gradient(90deg, transparent, #b76e79, transparent);
}


h3 {
    font-family: "RobotoCondensed";
	text-align: center;
	font-size: 21px;
	font-weight: bold;
	padding: 12px;
	color: #b76e79;
}

h4 {
    font-family: "RobotoCondensed";
	text-align: left;
	font-size: 15px;
	font-weight: bold;
	padding: 6px;
	color: #b76e79;
}

/* Buttons */

button.buy {
	font-family: "RobotoCondensed";
	background-image: linear-gradient(to bottom right, #c060df, #ffa0ff);
	color: #ffffff;
	border: #c060df 2px solid;
	border-radius: 5px;
	font-size: 16pt;
	font-weight: bold;
	width: 200px;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.9);
}

button.buy:hover {
	background-image: none;
	background-color: #eeeeee;
	color: #e080ff;
	border: #e080ff 2px solid;
}

button.cancel {
	background-image: linear-gradient(to bottom right, #cf9010, #ffe050);
	border: 2px solid #cf9010;
	color: #ffffff;
	height: 30px;
	border-radius: 5px;
	margin-left: 12px;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.9);
}

button.cancel:hover {
	background-image: none;
	color: #ffc030;
	background-color: #ffffff;
	border: 2px #ffc030 solid;
}

button.ok {
	background-image: linear-gradient(to bottom right, #10a0df, #50f0ff);
	border: 1px solid #10a0df;
	color: #ffffff;
	height: 30px;
	border-radius: 5px;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.9);
}

button.ok:hover {
	background-image: none;
	color: #30c0ff;
	background-color: #ffffff;
	border: 2px #30c0ff solid;
}

span.spanMore {
	display: none;
	vertical-align: middle;
	line-height: 40pt;
}

span.spanText {
	display: inline;
	vertical-align: middle;
	line-height: 40pt;
}

b.bMore {
	display: block;
	width: 100%;
	height: 100%;
}

b.bMore:hover > span.spanMore {
	display: inline;
}

img {
	padding-right: 6px;
}

/* Div */
div.button {
	display: flex;
	align-items: center;
	margin: 3px;
}

div.grid {
  display: grid;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}

@media (min-width: 1750px) {
  div.grid {
    grid-template-columns: repeat(3, 550px);
  }
}

@media (min-width: 1200px) and (max-width: 1749px) {
  div.grid {
    grid-template-columns: repeat(2, 550px);
  }
}

@media (max-width: 1199px) {
  div.grid {
    grid-template-columns: minmax(0, 1fr);
  }

  div.grid > div {
    max-width: calc(600px + 2rem);
    justify-self: center;
  }
}

select {
  font-family: "Roboto Condensed";
  font-size: 16px;
  padding: 9px 12px;
  border: 2px solid #d78e99;
  border-radius: 8px;
  background-color: #fff8fd;
  color: #000;
  cursor: pointer;
}

select option {
  padding: 6px 9px;
}

div.item {
  background: #fff8fd;
  border: 1px solid #d78e99;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.9);
}


div.cart {
	width: 32px;
	height: 32px;
	background-image: url('../images/addToCart.png');
	font-family: "RobotoCondensed";
}

.topnav a.right:hover div.cart {
	background-image: url('../images/addToCartHover.png');
	font-family: "RobotoCondensed";
}

div.buy {
	width: 32px;
	height: 32px;
	background-image: url('../images/addToCart.png');
	font-family: "RobotoCondensed";
}

div.button:hover div.buy {
	background-image: url('../images/addToCartHover2.png');
	font-family: "RobotoCondensed";
}

div.narrowMenu {
	background-color: #000080;
	color: #ffffff;
	position: absolute;
	min-width: 98%;
	top: 60px;
	left: 2%;
	z-index: 100;
	line-height: 300%;
	text-align: right;
	visibility: hidden;
}

a.narrowMenu {
	color: #ffffff;
	text-decoration: none;
	padding-right: 12px;
	font-family: "RobotoCondensed";
	font-weight: bold;
	font-size: 28pt;
}

/* Tables */

table.cart {
	border-collapse: collapse;
}

table.slider {
	width: 50%;
}

table.productTable {
	width: 100%;
}

td {
	font-family: "RobotoCondensed";
	font-size: 14pt;
}

td.line {
	border-bottom: 1px solid #eeeeee;
}

td.products {
	border: 1px solid black;
	text-align: center;
}

td.title {
	font-weight: bold;
	padding-top: 12px;
	text-align: center;
	font-size: 20px;
	border-bottom: 1px solid #eeeeee;
}

td.basketLeftSide {
	width: 50%;
}

td.basketRightSide {
	width: 50%;
}

td.basketSpacing {
	width: 100px;
}

td.footer {
	color: #aaaaaa;
	font-size: 12pt;
}

/* Inputs */
input.wide {
	width: 400px;
}

input.narrow {
	width: 100px;
}

.notify {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #b76e79;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: "RobotoCondensed";
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.notify.show {
  opacity: 1;
  transform: translateY(0);
}

/* Dialogs */
div.modalDialog {
	position: absolute;
	left: 0pt;
	top: 100pt;
	padding: 6pt;
	font-size: 14pt;
	visibility: hidden;
	border-radius: 15pt;
	background-color: rgba(255, 248, 248, 255);
	border: 3pt solid #b76e79;
  }

  /* Text */
  b.price {
	font-size: 21pt;
  }

  b {
	font-family: "RobotoCondensed";
  }

  select {
	font-family: "RobotoCondensed";
  }
  /* Legacy */
  div.contentClass {
	font-family: "RobotoCondensed";
	position: relative;
	width: 100%;
	height: 500pt;
	font-size: 16pt;
	color: #ffffff;
  }
  
  div.elementClass {
	font-family: "RobotoCondensed";
	position: absolute;
	top: 100pt;
	left: 0pt;
	width: 100%;
	height: 80%;
	margin-left: 0%;
	margin-right: 0%;
	}
  
  div.main {
	font-family: "RobotoCondensed";
	width: 100%;
	color: #000000;
	}

	td.opmTitle {
		font-family: "RobotoCondensed";
    	padding: 12px;
		width: 270px;
		text-align: center;
		font-weight: bold;
		vertical-align: top;
	  }
	  
	  td.opmText {
		font-family: "RobotoCondensed";
		padding: 12px;
		width: 270px;
		text-align: justify;
		vertical-align: top;
	  }

	  td.opmContact {
		font-family: "RobotoCondensed";
		padding: 12px;
		width: 100px;
		text-align: justify;
		vertical-align: top;
	  }
	  
	  td.itemDesc {
		font-family: "RobotoCondensed";
		background-color: #fff0ee;
		text-align: justify;
		height: 100%;
		padding: 6px;
		width: 212px;
		font-size: 1.15em;
	  }

	  button.moreClass {
		font-family: "RobotoCondensed";
		position: absolute;
		left: 50%;
		min-width: 120pt;
		min-height: 40pt;
		border-radius: 5pt;
		border-width: 0pt;
		font-size: 18pt;
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	  }
	  
	  div.footerClass {
		position: relative;
		width: 100%;
		height: 20pt;
		padding-left: 10pt;
		font-size: 14pt;
		line-height: 20pt;
		background-color: #b76e79;
		color: #000080;
		font-family: "RobotoCondensed";
	}

	  canvas.indicatorClass {
		position: absolute;
		left: 50%;
		top: 3pt;
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	  }

	  p.error {
		color: #d00000;
		font-weight: bold;
		font-family: "RobotoCondensed";
  }

	  footer.footerLinks {
		padding-left: 15px;
		min-height: 120px;
		background-color: #555555;
		font-family: "RobotoCondensed";
	}

	  a.footerLinks {
		color: #cccccc;
		text-decoration: none;
		font-size: 11pt;
		font-family: "RobotoCondensed";
	}

@media (max-width: 1199px) {
    body {
		font-size: 20pt;
	}

	h2 {
		font-size: 36pt;
	}

	h3 {
		font-size: 30pt;
	}

	h4 {
		font-size: 26pt;
	}

	h2.main {
		font-size: 36pt;
	}

	table.slider {
    	width: 90%;
		font-size: 20pt;
  	}

	b.title {
		font-size: 24pt;
	}

	button.buy {
		font-size: 20pt;
		width: 260px;
	}

	button.cancel {
		font-size: 20pt;
		height: 40px;
	}

	button.ok {
		font-size: 20pt;
		height: 40px;
	}

	button.moreClass {
		font-size: 24pt;
	}

	div.button {
		margin: 1px;
	}

	a.footerLinks {
		font-size: 16pt;
	}

	td.label {
		visibility: hidden;
		max-width: 0px;
	}

	input.wide {
		font-size: 20pt;
		width: 95%;
	}

	input.narrow {
		font-size: 20pt;
		width: 35%;
	}

	td {
		font-size: 20pt;
	}

	td.basketLeftSide {
		width: 60%;
	}

	td.basketRightSide {
		width: 60%;
	}

	td.basketSpacing {
		width: 0px;
	}

	td.title {
		font-size: 24pt;
	}

	b.removeButton {
		display: none;
	}

	select {
		font-size: 20pt;
	}

	table.productTable {
		width: 600px;
	}

	.notify {
		  font-size: 28px;
	}
}