﻿@charset "utf-8";
/**
 * Main stylesheet - Frontend
 * 
 * Project: Föllmi ICT AG - PVG Konfigurator
 * Autor: 	Fabian Manetsch
 * Datum: 	10.02.2023
 * Update:	01.12.2023 / FaM
 */

/* FONTS ---------------------------------------------------------------------------------- */
@font-face {
	font-family: 'ITCQuaySans';
	src: 	url('../fonts/itcquaysans_normal.woff2') format('woff2'),
			url('../fonts/itcquaysans_normal.woff') format('woff');
}

@font-face {
	font-family: 'ITCQuaySans Bold';
	src: 	url('../fonts/itcquaysans_bold.woff2') format('woff2'),
			url('../fonts/itcquaysans_bold.woff') format('woff');
}

/* BODY ----------------------------------------------------------------------------------- */
body
{
	font-family: 'ITCQuaySans', sans-serif;
}

.page-content
{
	min-height: auto !important;
}

#content, #content h1, footer
{
	width: 100%;
}

h1, h2, h3, h4
{
	font-family: 'ITCQuaySans Bold', sans-serif;
}

/* LOGO ----------------------------------------------------------------------------------- */
.navbar
{
	border-radius: 0;
	box-shadow: 0 2px 6px 0 rgb(0 0 0 / 20%);
	background-color: rgba(255, 255, 255, 1);
}

/*Logo*/
.navbar-brand
{
	padding-top: 0;
	padding-bottom: 0;
}

.navbar-brand img
{
	height: 40px;
	margin: 5px 0;
}

footer .row
{
	border-top: 1px solid #eee;
	margin-top: 20px;
	padding-top: 10px;
}

footer p
{
	font-size: 0.9rem;
}

/* TITLE ---------------------------------------------------------------------------------- */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4
{
	color: rgba(0, 109, 182, 1);
}

.page-content h1
{
	font-size: 28px;
}

.page-content h1 small
{
	font-size: 50%;
}

.page-content h2 { font-size: 20px; }
.page-content h3 { font-size: 18px; }

.my-8
{
	margin-top: 3rem;
	margin-bottom: 3rem;
}

/* CONTENT -------------------------------------------------------------------------------- */
.text-right
{
	text-align: right;
}

.btn-round
{
	height: 25px;
	width: 25px;
	border-radius: 50%;
}

.btn-primary
{
	background-color: #006eb7;
	border-color: #006eb7;
}

.btn-primary:hover
{
	background-color: #025a93;
	border-color: #025a93;
}

.btn-open
{
	border-color: #006eb7;
	background-color: transparent;
}

.btn-selected
{
	background-color: #025a93;
	border-color: #025a93;
}

.btn.mr-1
{
	margin-right: 0.25rem!important;
}

a,
a:link,
a:visited,
a:hover,
a:active
{
	color: #006eb7;
	text-decoration: none;
}

a.link-secondary,
a.link-secondary:link,
a.link-secondary:visited,
a.link-secondary:hover,
a.link-secondary:active
{
	text-decoration: underline;
}

.text-success
{
	color: #008a3b !important;
}

.text-muted
{
	color: #b1b5be !important;
}

/* TABLE ---------------------------------------------------------------------------------- */
table a
{
	width: 100%;
	height: 100%;
	float: left;
}

/* Linie vor Zwischentotal */
table.cart tr:has(+ tr.subtotal)
{
	border: 1px;
}

/* ACCORDION ------------------------------------------------------------------------------ */
.accordion-button:not(.collapsed)
{
	color: #006eb7;
}

/* INFO ----------------------------------------------------------------------------------- */
.development
{
	padding: 0 3px;
	font-size: 100%;
	line-height: 1em;
	background-color: yellow;
}

/* FORM ----------------------------------------------------------------------------------- */
.form-group
{
	margin-bottom: 0 !important;
}

.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn
{
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child>.btn-group:not(:last-child)>.btn
{
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback)
{
	margin-left: -1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group
{
	margin-left: -1px;
}

.glyphicon {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.glyphicon-minus:before {
	content: "\2212";
}

.glyphicon-plus:before {
	content: "\2b";
}

/* MEDIA DESIGN --------------------------------------------------------------------------- */
/* Devices less then 992px */
@media only screen
and (max-width: 992px)
{
	footer .row p
	{
		margin: 5px 0 0 0;
	}
}