/** ----------------------------------------------------------
*
* Contains the main layout of the page and the individual styles.
* Acts as the main stylesheet for theme.
*
*		Include your notes or table of contents below....
*		Include color hex's or values of your grid
*
*		0. TYPOGRAPHY
*		1. OOCSS GRID
*		2. MAIN LAYOUT
*		3. HEADER
*			- Brand
*			- Search Form
*		4. Navigation
*			- Primary Navigation
*			- tablet Navigation
*			- Secondary Navigation
*			- Secondary Nav 2-5 Levels deep
*		5. Mixed
*		6. Footer
*		7. Page Specific Layout
*			- Homepage
*			- Search Results
*		8. Device and Responsive Layout
*			- Breakpoint 960px
*			- Breakpoint 640px
*				- Search Form
*				- Main Content
*		9. Print Styles
*			- Simple Theme custom print styles
*		10. Scrollbar
*
* @author Your Name <email@silverstripe.com>
* ------------------------------------------------------- */

/* TYPOGRAPHY */

@font-face {
	font-family: 'Roboto';
	src: url('../webfonts/Roboto-Regular.eot');
	src: url('../webfonts/Roboto-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'RobotoBold';
	src: url('../webfonts/Roboto-Bold.eot');
	src: url('../webfonts/Roboto-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'RobotoLight';
	src: url('../webfonts/Roboto-Light.eot');
	src: url('../webfonts/Roboto-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'RobotoMedium';
	src: url('../webfonts/Roboto-Medium.eot');
	src: url('../webfonts/Roboto-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Noto';
	src: url('../webfonts/NotoSans-Regular.eot');
	src: url('../webfonts/NotoSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'NotoBold';
	src: url('../webfonts/NotoSans-Bold.eot');
	src: url('../webfonts/NotoSans-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'NotoBold';
	src: url('../webfonts/NotoSans-Bold.eot');
	src: url('../webfonts/NotoSans-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'NotoItalic';
	src: url('../webfonts/NotoSans-Italic.eot');
	src: url('../webfonts/NotoSans-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'NotoBoldItalic';
	src: url('../webfonts/NotoSans-BoldItalic.eot');
	src: url('../webfonts/NotoSans-BoldItalic.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/

:root {
    font-size: 14px;
}

html {
	height: 100%;
	overflow: auto;
}

* {}


/* MAIN LAYOUT */

body {
	margin: auto !important;
	/*background: #fff;*/
	background: #DEDEDE;
	height: 100%;
	width: 100%;
	-webkit-text-size-adjust: none;
	/* The text size is not adjusted for Safari on iPhone */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Roboto';
	color: #4D4A44;
	overflow: hidden;
}

b {
	font-family: 'RobotoBold' !important;
}
.noto{
	font-family: 'Noto' !important;
}

.slogan {
	margin-top: 5px;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'RobotoBold', Arial, sans-serif;
	margin-bottom: 45px;
	margin-left: 25px;
}

.logo {
	margin-left: 25px;
}

.logo img {
	height: 30px;
}

#loaderContainer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	background-image: url('../images/offusca.png');
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loader {

	text-align: center;
}

.max-width-100{
	max-width: 100%!important;
}

.arrow {
	position: absolute;
	z-index: 1002;
	display: block;
	top: 50%;
	margin-top: -35px;
	width: 36px;
	height: 71px;
	outline: none;
	cursor: pointer;
	/* background: url(../assets/img/blank.gif) no-repeat; */
}

.arrow.prev {
	opacity: 0.2;
	left: 20px;
	background-image: url(../assets/img/paddle_prev_999.png);
	-webkit-transition: 0.2s linear all;
	-o-transition: 0.2s linear all;
	transition: 0.2s linear all;
}

.arrow.next {
	opacity: 0.2;
	right: 20px;
	background-image: url(../assets/img/paddle_next_999.png);
	-webkit-transition: 0.2s linear all;
	-o-transition: 0.2s linear all;
	transition: 0.2s linear all;
}

.arrow.prev:hover {
	opacity: 1;
	background-image: url(../assets/img/paddle_prev_fff.png);
}

.arrow.next:hover {
	opacity: 1;
	background-image: url(../assets/img/paddle_next_fff.png);
}

.homepage .logo,
.homepage .slogan {
	margin-left: 0;
}

.introVideo {
	float: right;
	width: 50%;
	padding-top: 20px;
}

.introVideo p {
	font-size: 22px;
}

.homepage h1 {
	text-transform: uppercase;
	color: #515151;
}

.homepage h3 {
	color: #515151;
}

.navBtn {
	width: 244px;
	height: 150px;
	margin-left: 16px;
	cursor: pointer;
}

.giChoice {
	/*width: 162px;
	height: 162px;*/
	width: 160px;
	height: 160px;
	float: left;
	/*margin:10px;*/
	margin: 6px;
	cursor: pointer;
}

.boxImageChoice {
	padding: 10px 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: #E8E8E8;
}

.boxImageChoice img {
	width: 50%;
	margin-bottom: 10px;
}

.boxImageChoice p {
	font-size: 16px;
	margin-top: 10px;
	line-height: 22px;
	white-space: normal;
}

.bigChooseType .giChoice {
	/*width: 322px;
	height: 212px;*/
	width: 265px;
	height: 174px;
}

.bigChooseType .boxImageChoice {
	background-color: #E8E8E8;
	width: 100%;
	height: 100%;
	text-align: center;
}

.giChoice img {
	width: 59%;
	margin-top: 15px;
}

.bigChooseType .giChoice img {
	width: 35%;
	margin-top: 21px;
}

.giChoice p {
	font-size: 16px;
	color: #000;
	margin: 8px 10px 0;
	font-family: 'Roboto';
}

.bigChooseType .giChoice p {
	font-size: 22px;
	/*margin-top: 21px;*/
	margin-top: 10px;
	font-family: 'Roboto';
	line-height: 22px;
}

.pGiChoiceArea {
	width: 200px;
	height: 200px;
	color: #fff;
	font-size: 22px;
	background: #666666;
}

.giChoiceLittle {
	width: 110px;
	height: 110px;
	margin-right: 20px;
	margin-bottom: 20px;
	background: #666666;
	float: left;
}

h1.sectionTitle.title30 {
	font-size: 30px;
}

.circularTooltip {
	float: right;
	width: 42px;
	height: 42px;
}

#bottomRight {
	position: absolute;
	bottom: 44px;
	text-align: center;
}

#leftUpBar {
	/*float:left;*/
}

#rightUpBar {
	float: right;
	width: 100%;
}

/* #rightUpBar img {
	height: 39px;
	margin-right: 31px;
	cursor: pointer;
} */

#leftBarDimension {
	height: 100%;
	width: 100%;
	top: 73px;
	text-align: center;
	position: relative;
	padding-top: 0px;
}

#leftBarDimension img {
	width: 75%;
}

#leftBarDimension p {
	color: #fff;
	font-family: 'Roboto';
	font-size: 20px;
}

#leftBarDimension p#labelUpdate {
	color: #000;
	font-size: 16px;
}

#containerPopup {
	padding-top: 73px;
}

#containerPopup .sectionTitle {
	margin-left: 100px;
	margin-top: 40px;
	margin-bottom: 34px;
}

#containerPopup .typeSelection {
	margin-left: 88px;
}

.giChoice p.roomTypeDimension {
	margin: 0 10px;
	font-size: 14px;
}

#addRoom {
	padding-top: 42px;
	padding-bottom: 20px;
	position: relative;
	overflow: hidden;
}

#addRoom p {
	font-family: 'Roboto';
	font-size: 20px;
	color: #4D4A44;
	float: left;
	margin-left: 15px;
	margin-top: 13px;
}

#addRoom a {
	float: right;
	width: 300px;
}

#deleteRoomButton {
	cursor: pointer;
	width: 205px;
	margin-left: 92px;
}

#arrowColor {
	position: absolute;
	right: -14px;
	top: 47px;
	width: 49px;
	height: 74px;
}

#containerPopup.color5B6879 h1.sectionTitle {
	color: #fff;
}

.blockFinishing.disable {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=50);
	/* Older than Firefox 0.9 */
	-moz-opacity: 0.5;
	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.5;
	/* Modern!
/* Firefox 0.9+, Safari 2?, Chrome any?
/* Opera 9+, IE 9+ */
opacity: 0.5;
}

.finishingSelection h1.sectionTitle {
	margin-bottom: 55px;
}

.descriptionFinishing ul {
	list-style: none;
}

.descriptionFinishing ul li {
	padding-left: 22px;
	margin-bottom: 10px;
}

.descriptionFinishing ul li:before {
	content: "\f00c";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	margin-left: -22px;
	width: 22px;
	color: #DEDEDE;
}

.selected .descriptionFinishing ul li:before {
	content: "\f00c";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	margin-left: -22px;
	width: 22px;
	color: #306AB3;
}

.chooseFinishingBox p {
	color: #4D4A44;
	font-family: 'RobotoBold';
	font-size: 14px;
	line-height: 30px;
}

.chooseFinishingBox .finishingPrice {
	font-family: 'RobotoBold';
	font-size: 25px;
}

.chooseFinishingBox .finishingIVA {
	font-family: 'Roboto';
	font-size: 14px;
}

.descriptionFinishing {
	/*height: 200px;*/
}

#headerCustomizationSummary {
	background: #fff;
	padding: 0px 33px 8px 26px;
	position: fixed;
	overflow: hidden;
	top: 73px;
	width: 100%;
	z-index: 999;
}

.EyeBtn {
	cursor: pointer;
}

#contentCustomizationRoomServices {
	top: 165px;
	position: relative;
	height: calc(100% - 165px);
	overflow: auto;
}

.roomServicesContainer {
	position: relative;
	width: 100%;
	height: 100%;
}

.roomDetail {
	float: left;
	width: 210px;
	position: fixed;
	height: 100%;
	margin-top: 10px;
	top: 143px;
	background-image: url("../images/riepilogo/ombra-stanze.svg");
	background-position: right 0;
	background-repeat: no-repeat;
}

.roomDetail img {
	width: 75%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.roomDetail h4 {
	width: 75%;
	margin-left: 20%;
	font-family: "Roboto";
	font-size: 18px;
	color: #000;
	margin-bottom: 5px;
	margin-top: 5px;
}

.roomDetail .roomServiceList,
.roomDetail .serviceInfoName {
	margin-top: 30px;
}

.roomDetail .roomServiceList h4 {
	margin-bottom: 0px;
	margin-top: 0px;
}

.roomDetail .roomServiceList p {
	min-height: 0px;
	width: 75%;
	margin-left: 20%;
	margin-top: 5px;
	padding: 0;
	font-family: "Roboto";
	font-size: 18px;
	font-weight: bold;
	color: #000;
	margin-bottom: 0;
	margin-top: 0;
}

.roomDetail .serviceInfoName {
	margin-top: 30px;
}

.roomDetail .serviceInfoNumber {
	min-height: 0px;
	width: 75%;
	margin-left: 20%;
	margin-top: 5px;
	padding: 0;
	font-family: "Roboto";
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

.roomDetail .roomArrow {
	background: transparent url(../images/navigazione-step/freccia-step.svg) no-repeat right 0;
	position: absolute;
	top: 33px;
	width: 49px;
	height: 74px;
	display: none;
	left: 181px;
}

.roomDetail .roomArrow {
	display: block;
}

.servicesContainer {
	float: left;
	width: calc(100% - 255px);
	margin-left: 255px;
	margin-top: 10px;
}

.servicesContainer h1 {
	font-family: "Roboto";
	font-size: 30px;
	color: #4D4A44;
	/* margin-left: 45px; */
}

.serviceChoice {
	float: left;
	width: 30%;
	min-height: 235px;
	padding: 45px 0 0;
}

.serviceChoiceSpinner {
	float: left;
	width: 65px;
	margin: 5px;
	border-top: 0px;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 1px;
	-o-border-image: url("../images/servizi/separazione-verticale.svg") 1px;
	-webkit-border-image: url("../images/servizi/separazione-verticale.svg") 1px;
	border-image: url("../images/servizi/separazione-verticale.svg") 1px;
}

.serviceChoiceSpinner .spinnerBtn {
	margin: auto;
}

.serviceChoiceSpinner .spinnerValue {
	margin: auto;
}

.serviceChoiceSpinner .spinnerValue.quantityPositive {
	color: #4D4A44;
}

.serviceChoiceSpinner .spinnerValue.quantityZero {
	color: #BFBAAF;
}

.serviceChoiceDescr {
	float: left;
	width: calc(100% - 75px);
	background: transparent url("../images/riepilogo/separazione-verticale.svg") no-repeat left 0;
	padding-left: 10px;
}

.serviceChoiceDescr h4 {
	font-family: "Roboto";
	font-size: 18px;
	color: #4D4A44;
}

.serviceChoiceDescr h5 {
	font-family: "Roboto";
	font-size: 16px;
	color: #4D4A44;
}

.serviceChoiceDescr .serviceInfoButton {
	height: 34px;
	line-height: 34px;
	cursor: pointer;
	background-image: url(../images/servizi/btn-scopri.svg);
	background-repeat: no-repeat;
	font-size: 16px;
	font-family: 'Roboto';
	/* text-align: center; */
	padding: 0 21px;
}

#contentServiceInfo {
	top: 165px;
	position: relative;
	height: calc(100% - 173px) !important;
	overflow: auto;
}

.serviceInfoContainer {
	float: left;
	width: calc(100% - 261px);
	margin-left: 210px;
	margin-right: 31px;
	padding-left: 45px;
}

.serviceInfoHeader h1 {
	font-family: "Roboto";
	font-size: 30px;
	color: #4D4A44;
	margin-top: 25px;
}

.serviceInfoHeader h2 {
	font-family: "Roboto";
	font-size: 20px;
	color: #4D4A44;
}

.serviceInfoHeader .text {
	float: left;
	width: calc(100% - 180px);
}

.serviceInfoHeader .serviceInfoSpinner {
	float: left;
	width: 180px;
	margin-top: 20px;
}

.serviceInfoHeader .serviceInfoSpinner h3 {
	margin-top: 60px;
	width: 100%;
	text-align: right;
	font-family: "Roboto";
	font-size: 20px;
	font-weight: bold;
	color: #4D4A44;
}

.serviceInfoHeader .serviceInfoSpinner .spinnerBtn {
	float: left;
	font-size: 30px;
	text-align: center;
	color: #4D4A44;
	height: 45px;
	width: 45px;
}

.serviceInfoHeader .serviceInfoSpinner .spinnerValue {
	float: left;
	height: 45px;
	width: 90px;
	font-family: 'RobotoBold';
	font-size: 30px;
	text-align: center;
}

.serviceInfoHeader .serviceInfoSpinner .spinnerValue.quantityPositive {
	color: #4D4A44;
}

.serviceInfoHeader .serviceInfoSpinner .spinnerValue.quantityZero {
	color: #BFBAAF;
}

.serviceInfoContent {
	position: relative;
	font-family: "Roboto";
	font-size: 16px;
	color: #4D4A44;
}

.serviceInfoContent ul {
	list-style-image: url('../images/servizi/ico-check.png');
	margin-left: 30px;
}

.serviceInfoContent ul li {
	padding-bottom: 15px;
}

.infoSx,
.infoDx {
	float: left;
	width: 50%;
	padding: 0 20px;
}

.imgInfoContent {
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
	margin-top: 20px;
}

.imgInfoContent img {
	max-width: 100%;
	/*width: 100%;*/
	height: auto;
}

.customizationSummary .columnLeft {
	width: 365px;
	float: left;
}

.customizationSummary .oneColumn,
.customizationSummary .twoColumn {
	float: left;
}

.customizationSummary .twoColumn {
	width: 50%;
}

.customizationSummary .oneColumn.right,
.customizationSummary .twoColumn.right {
	float: right;
	text-align: right;
	margin-top: 10px;
}

.customizationSummary .threeColumn {
	width: 33%;
	float: left;
}

.customizationSummary .threeDoubleColumn {
	width: 67%;
	float: left;
	height: 100%;
	position: relative;
}

#headerCustomizationSummary img {
	width: 45px;
}

#headerCustomizationSummary .oneColumn span,
#headerCustomizationSummary .twoColumn span {
	font-size: 20px;
	font-family: 'RobotoBold';
	color: #4D4A44;
	top: 5px;
	position: relative;
	margin-left: 15px;
}

#headerCustomizationSummary .threeColumn {
	text-align: center;
}

#ombraTestatina {
	width: 100%;
	clear: both;
	top: 144px;
	/*margin-top: -9px;*/
	position: fixed;
}

.buttonUpdateLink {
	width: 100%;
	background: transparent url("../images/btn-modifica.svg") no-repeat;
	padding-left: 60px;
	font-size: 18px;
	font-family: 'RobotoBold';
	color: #4D4A44;
	height: 100%;
	line-height: 22px;
}

.customizationSummary {
	height: 100%;
	overflow: hidden;
}

.customizationSummary.upsellingInfo {
	height: 100%;
	overflow: hidden;
	background-color: #EFECE7;
}

.linkCursor {
	cursor: pointer;
}

#imgCover {
	/*width:35%;*/
	width: 265px;
	height: 189px;
}

#imgCoverLeft,
#imgCoverRight {
	float: left;
	width: 57.5px;
	height: 100%;
}

#imgCoverLeft img,
#imgCoverRight img {
	width: 100%;
	height: 100%;
}

#imgCoverCenter {
	float: left;
	width: 139.5px;
	height: 100%;
}

#imgCoverCenter img {
	width: 100%;
	height: 100%;
}

#imgCoverTop,
#imgCoverBottom {
	width: 100%;
	height: 25%;
}

#imgCoverTop img,
#imgCoverBottom img {
	height: 100%;
}

#imgCoverBtns {
	float: left;
	width: 100%;
}

#imgCoverBtns img {
	width: 33.3%;
	float: left;
}

#headerCustomizationSummary .oneColumn {
	top: 22px;
	position: relative;
}

.imgPoints {
	float: left;
}

.imgPoints img {
	width: 48px;
	margin-right: 19px;
}

.twoColumn h5 {
	font-family: 'RobotoBold';
	color: #4D4A44;
	font-size: 14px;
	margin: 0 0 30px;
}

.twoColumn h5 span {
	font-family: 'Roboto';
}

.twoColumn p {
	font-size: 16px;
	font-family: 'Roboto';
	margin-bottom: 30px;
}

.txtPoints h5 {
	margin: 0 0 2px;
	font-family: 'Roboto';
	color: #4D4A44;
	font-size: 18px;
}

.txtPoints h6 {
	margin: 0;
	font-family: 'Roboto';
	color: #4D4A44;
	font-size: 25px;
}

.summaryPoints {
	position: relative;
	overflow: hidden;
	margin-bottom: 37px;
}


/* table list article */

#tableListItem {
	margin: 0 30px;
}


/*#headTableListIem{

	}*/

	#tableListItem .fieldTable {
		float: left;
	}

	#headTableListIem .fieldTable {
		font-family: 'RobotoBold';
		font-size: 16px;
		color: #4D4A44;
	}

	#tableListItem .fieldTable {
		/*height: 90px;*/
		margin-bottom: 5px;
	}

	#tableListItem .rowArticle {
		font-family: 'Roboto';
		height: 88px;
	}

	#tableListItem .article {
		width: 70%;
	}

	#tableListItem .imageHead {
		width: 88px;
		float: left;
		margin-left: 4px;
		padding-top: 27px;
		line-height: 40px;
	}

	#tableListItem .image {
		height: 100%;
		width: 88px;
		float: left;
		background-color: #FFF;
		border: 1px solid #EDECEB;
		border-radius: 10px;
		padding: 5px;
	}

	#tableListItem .details {
		height: 88px;
		width: calc(100% - 95px);
		float: left;
		margin-left: 4px;
		padding-top: 22px;
		background-color: #EFECE7;
		border: 1px solid #EDECEB;
		border-radius: 10px;
	}

	#tableListItem .detailsHead {
		/* height: 88px; */
		width: calc(100% - 100px);
		float: left;
		margin-left: 4px;
		padding-top: 22px;
	}

	#tableListItem .articlePrice,
	#tableListItem .qta {
		width: 15%;
		font-family: 'Roboto';
		font-size: 20px;
		text-align: center;
		line-height: 40px;
	}

	#tableListItem .articleTotalPrice {
		width: 11%;
		font-family: 'RobotoBold';
		font-size: 20px;
		text-align: center;
		line-height: 40px;
	}

	#tableListItem .descriptionArticle {
		width: 55%;
		padding-left: 22px;
		font-family: 'Roboto';
		font-size: 12px;
	}

	#tableListItem .descriptionArticle .fieldTableCode {
		font-family: 'RobotoBold';
		font-size: 14px;
	}

	#headTableListIem .qta,
	#headTableListIem .articlePrice,
	#headTableListIem .articleTotalPrice {
		font-family: 'RobotoBold';
		font-size: 16px;
		text-align: center;
	}

	#tableListItem .articleTotalPrice {
		text-align: right;
		font-family: 'RobotoBold';
	}

	.upsellingBox {
		width: 90%;
		height: 275px;
		background: #fff;
		margin-top: 22px;
		border: 1px solid #D1CFCA;
		border-radius: 15px;
		-webkit-box-shadow: 3px 3px 3px #D1CFCA;
		box-shadow: 3px 3px 3px #D1CFCA;
	}

	.upsellingBoxImg {
		float: left;
		width: 45%;
		height: 100%;
		line-height: 275px;
	}

	.upsellingBoxImg img {
		max-width: 100%;
		height: auto;
		vertical-align: middle;
	}

	.upsellingBoxDescr {
		font-family: 'Roboto';
		float: left;
		width: 55%;
		height: 100%;
		padding: 25px 15px 15px 15px;
	}

	.upsellingBoxDescr h4 {
		font-family: 'RobotoBold';
		color: #4D4A44;
		font-size: 1.3vw;
	}

	.upsellingBoxDescr p {
		font-family: 'Roboto';
		color: #4D4A44;
	}

	.buttonUpselling {
		height: 50px;
		cursor: pointer;
	}

	.buttonUpselling p {
		float: left;
		width: calc(100% - 60px);
		font-family: 'RobotoBold';
		font-size: 1.5vw;
		/* line-height: 19px; */
		text-align: right;
		margin-top: 2px;
		color: #4D4A44;
	}

	.buttonUpselling img {
		float: right;
	}

	#contentCustomizationRoomPoints {
		top: 154px;
		position: relative;
		height: calc(100% - 154px);
		overflow: auto;
	}

	.roomDetailPointChoiceLight {
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
		margin-bottom: 50px;
	}

	.roomDetailPointChoice .roomDetailPointChoiceLight:last-child {
		margin-bottom: 0;
	}

	.roomDetailPointSpinner {
		float: left;
		width: 55px;
		margin: 5px 0px 5px 5px;
	}

	.roomDetailPointSpinner .spinnerValue.quantityPositive {
		color: #4D4A44;
	}

	.roomDetailPointSpinner .spinnerValue.quantityZero {
		color: #BFBAAF;
	}

	.roomDetailPointDescr h4 {
		font-family: 'RobotoMedium';
		font-size: 18px;
		color: #4D4A44;
	}

	.roomDetailPointDescr h5 {
		font-family: 'Roboto';
		font-size: 16px;
		color: #4D4A44;
	}

	.spinnerBtn {
		font-size: 30px;
		text-align: center;
		color: #4D4A44;
		height: 43px;
		width: 43px;
		cursor: pointer;
	}

	.roomDetailPointDescr .serviceInfoButton {
		height: 34px;
		line-height: 34px;
		cursor: pointer;
		background-image: url(../images/servizi/btn-scopri.svg);
		background-repeat: no-repeat;
		font-size: 16px;
		font-family: 'Roboto';
		/* text-align: center; */
		padding: 0 21px;
	}

	.spinnerValue {
		height: 45px;
		width: 45px;
		font-family: 'RobotoBold';
		font-size: 25px;
		text-align: center;
		color: #4D4A44;
		line-height: 40px;
	}

	.EyeBtn {
		cursor: pointer;
	}

	.boxItemsUpselling {
		width: 33%;
		float: left;
		padding-right: 20px;
	}

	.itemUspellingDetails {
		width: 100%;
	}

	#contentCustomizationPackages {
		padding: 20px;
		position: relative;
		top: 165px;
	}

	.itemUspellingDetails h4 {
		color: #4D4A44;
		font-family: 'RobotoBold';
	}

	#contentCustomizationPackages h2 {
		font-family: 'Roboto';
		font-size: 30px;
		color: #4D4A44;
		line-height: 37px;
		margin: 12px 0 20px 30px;
	}

	#contentCustomizationPackages h5 {
		color: #4D4A44;
		font-family: 'RobotoBold';
		font-size: 16px;
	}

	.roomDetailPointDescr p {
		font-size: 18px;
		color: #4D4A44;
		font-family: 'Roboto';
	}

	.spinnerValue.grey {
		color: #BFBAAF;
	}

	.itemUspellingDetails .roomDetailPointDescr p {
		font-size: 16px;
	}

	#upsellingInfoContainer {
		width: 100%;
		margin: 0px;
		padding: 0 31px;
		height: calc(100% - 126px);
	}



	/* Layout Popup */

	.ng-modal-overlay {
		/* A dark translucent div that covers the whole screen */
		position: absolute;
		z-index: 9999;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000000;
		opacity: 0.8;
	}

	.ng-modal-dialog {
		/* A centered div above the overlay with a box shadow. */
		z-index: 10000;
		position: absolute;
		width: 50%;
		/* Default */
		/* Center the dialog */
		top: 50%;
		left: 50%;
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);

		background-color: #fff;
		-webkit-box-shadow: 4px 4px 80px #000;
		box-shadow: 4px 4px 80px #000;
	}

	.ng-modal-dialog-content {
		padding: 10px;
		text-align: left;
	}

	.ng-modal-dialog-content .closePopup {
		width: 100%;
		text-align: right;
		height: 40px;
		line-height: 30px;
	}

	.ng-modal-dialog-content .closePopup img {
		height: 30px;
		cursor: pointer;
	}

	.ng-modal-close {
		position: absolute;
		top: 3px;
		right: 5px;
		padding: 5px;
		cursor: pointer;
		font-size: 120%;
		display: inline-block;
		font-weight: bold;
		font-family: 'Roboto';
	}


	/* Popup download pdf */

	.downloadPDF .ng-modal-dialog-content {
		text-align: center;
		font-family: "Roboto";
	}

	.downloadPDF .ng-modal-dialog-content a {
		font-size: 20px;
		font-weight: bold;
		color: #4D4A44;
	}


	/* Popup invio lista articoli per mail */

	.formSendMail {
		font-family: "Roboto";
		margin-top: 2px;
		font-size: 16px;
	}

	.formSendMail label {}

	.formSendMail input[type="submit"] {
		float: right;
		margin: 16px 0 10px;
		background-color: #EFECE7;
		border: 0;
		border-radius: 5px;
		padding: 8px;
	}

	.aggiungiLocale:hover {
		text-decoration: none;
		color: #000;
	}

/*
* 10. Scrollbar
*/

.limited-list-group::-webkit-scrollbar {
	width: 6px;
	background-color: #F5F5F5;
}
.limited-list-group::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0, .1);
	border-radius: .25rem;
	background-color: #F5F5F5;
}
.limited-list-group::-webkit-scrollbar-thumb {
	background: red;
	border-radius: .25rem;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0, .1);
	background-color: #6C757D;
}
.limited-list-group::-webkit-scrollbar-thumb:hover {
	background-color: #BBB;
}

/* CAPITOLATI */


/*
* Row with equal height columns
* --------------------------------------------------
*/

body a:link {
	-webkit-tap-highlight-color: transparent;
}

h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 21px;
	color:#306793;
}

.bg-c-white-semitransparent {
	background: rgba(255, 255, 255, 0.50) !important;
}

.img-bg-transparent {
	mix-blend-mode: multiply;
}

h3.small-margin {
	margin-top: 10px;
}

.mainMenu {
	float: left;
	width: 300px;
	height: 100%;
	overflow: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.leftBarContainer {
	-webkit-box-flex: 1;
	    -webkit-flex: 1 1 auto;
	    	-ms-flex: 1 1 auto;
	    		flex: 1 1 auto;
	width: 100%;
	min-height: -webkit-min-content;
	min-height: -moz-min-content;
	min-height: min-content;
	background-position: right;
	background-repeat: repeat-y;
	padding-top: 22px;
	display: -webkit-box;
	display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
		-ms-flex-direction: column;
			flex-direction: column;

	background: rgb(51,111,159);
	background: linear-gradient(162deg, rgba(51,111,159,1) 33%, rgba(39,80,112,1) 66%, rgba(22,37,48,1) 100%);
}

.leftBarContainer>nav {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.rightBar {
	width: 300px;
}

.viewContainer {
	float: left;
	height: 100%;
	overflow: auto;
	background-color: #F8F9FA;
	width: 100%;
	/*padding: 5rem !important;*/
}

.viewContainer.withLeftBar,
.barUp.withLeftBar {
	width: calc(100% - 300px);
}

.viewContainer.withLeftBar.withRightBar,
.barUp.withLeftBar.withRightBar {
	width: calc(100% - 600px);
}

button.btn-next {
	position: fixed;
	bottom: 3rem;
	right: 3rem;
}

.barUp {
	width: 100%;
	background: #FFFFFF;
	padding: 20px 20px 0;
	float: left
}

#introductionBtn {
	height: 50px;
	min-width: 160px;
	max-width: 220px;
	padding: 20px 10px;
	border-radius: 25px;
	color: #FFFFFF;
	background: #FE9602 0% 0% no-repeat padding-box;
	margin-top: 25px;
	box-shadow: 0px 3px 6px #000000AC;

	text-align: center;
	font-family: "Roboto";
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: uppercase;
}


/* leftBar */

#steps>li {
	padding: 0 10px;
	position: relative;
}

.step {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	padding: 1.1rem 0;
}

.stepIcon {
	height: 40px;
	width: 40px;
	display: block;
	margin-right: 10px;
	border: 3px solid gray;
	border-radius: 20px;
	padding: 2px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.stepIcon > .stepCircle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
	color: gray;
}

.stepIcon.full,
.stepIcon.active{
	background-color: #0071BB;
	border-color: #0071BB;
	background-size: cover;
	cursor: pointer;
}
.stepIcon.full > .stepCircle,
.stepIcon.active > .stepCircle {
	color: white !important;
	padding: 2px;
}

.step .stepCircleContainer {
	height: 40px;
	width: 40px;
	display: block;
	margin-right: 16px;
	border: 3px solid;
	border-radius: 20px;
	padding: 2px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.step .stepCircleContainer>.stepCircle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

li.current .stepCircleContainer {
	border-color: #306AB3;
}

li.active .stepCircleContainer {
	border-color: #F8F9FA;
}

li.current .stepCircleContainer>.stepCircle {
	background-color: #306AB3;
}

li.active .stepCircleContainer>.stepCircle>i,
li.current .stepCircleContainer>.stepCircle>i {
	color: #F8F9FA;
}

.step .stepCircleContainer>.stepCircle>i {
	color: #A7A7A7;
}

li.disable {
	color: #938E81;
}

li.active {
	cursor: pointer;
}

li.active tr{
	color:#fff;
}

#steps li p
{
	color:white;
}
/*
#steps li td:not(.current){
	color: #F8F9FA !important;
} */


#steps li.current{
	background-color: #F8F9FA;
	color: #306793 !important;
}

.disable .step p {
	/*color: #938E81;*/
	color: #fff;
}

.stepSummaryContainer p {
	margin: 0;
	color: #fff;
}

#steps li.current p {
	color: #306793 !important;
}

#steps li.current img{
	filter: invert(40%) sepia(6%) saturate(5474%) hue-rotate(165deg) brightness(85%) contrast(82%);
}

.stepSummaryContainer ul {
	padding-left: 1rem;
}

.stepSummaryContainer ul,
.stepSummaryContainer li {
	list-style-type: disc;
}

.stepSummaryContainer li {
	padding: 0;
}

.stepSummaryContainer .selected {
	color: #306AB3;
}

.stepSummaryContainer .proposed {
	color: #F37025;
}

.stepPersonalArea .step {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 10px;
	color: #FFFFFF;
	cursor: pointer;
	position: relative;
}

.stepPersonalArea .step .stepCircleContainer>.stepCircle>i {
	color: #FFFFFF;
}

.stepPersonalArea.current .step .stepCircleContainer>.stepCircle {
	background-color: #306AB3;
}

.stepPersonalArea.current .step .stepCircleContainer>.stepCircle>i {
	color: #306AB3;
}


.stepPersonalArea.current {
	background-color: #F8F9FA;
    color: #306793 !important;
}
.stepPersonalArea.current p{
	color: #306793 !important;
}
.stepPersonalArea.current img{

	filter: invert(40%) sepia(6%) saturate(5474%) hue-rotate(165deg) brightness(85%) contrast(82%);
}
.btn {
	border-width: 1px;
	outline: none !important;

	color: #4D4A4A;
}

.btn:hover,
.btn:focus {
	color: #4D4A4A;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	opacity: 1;
}

.btn-100 {
	width: 100%;
}

.btn-bticino-o {
	color: #FFFFFF;
	background-color: #FE9602;
	border-color: #FE9602;
	border-radius: 24px;
	height: 48px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3)!important;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	text-transform: uppercase;
}

.btn-bticino-o:hover,
.btn-bticino-o:focus {
	color: #306793;
	border-color: #306793;
}

.btn-bticino {
	color: #fff;
	background-color: #FE9602;
	border-color: #FE9602;
	border-radius: 25px;
	height: 50px;
  	border: none;
	box-shadow: 0px 3px 6px #0000005D;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
	max-width: 330px;
	text-transform: uppercase;
	letter-spacing: 0px;
	margin: 2.5px 20px 2.5px 0;
	text-align: center;
	line-height: 42px;
}

.whitebtn{
	color: #FE9602;
	background-color: #fff;
	box-shadow: 0px 3px 6px #00000015;
}
.whitebtn img{
	filter: invert(54%) sepia(98%) saturate(1002%) hue-rotate(358deg) brightness(101%) contrast(101%);
}

.btn-bticino-info {
    color: #306AB3;
    background: transparent;
    padding: 0px;
    font-size: 20px;
}

.btn-bticino-info:hover,
.btn-bticino-info:focus {
    color: #306793;
}

.btn-bticino:not(:disabled):not(.disabled).active,
.btn-bticino:not(:disabled):not(.disabled):active {
	color: #FFFFFF;
	background-color: #F76D11;
	border-color: #F76D11;
}

.btn-bticino:not(:disabled):not(.disabled):hover,
.btn-bticino:not(:disabled):not(.disabled):focus {
	color: #FFFFFF;
	background-color: #306AB3;
	border-color: #306AB3;
}

.btn-bticino.disabled,
.btn-bticino[disabled],
fieldset[disabled] .btn-bticino {
	background-color: #ff9b62;
}

.btn-bticino.disabled:hover,
.btn-bticino[disabled]:hover,
fieldset[disabled] .btn-bticino:hover {
	color: #fff;
	cursor: not-allowed;
}
.btn-gray{
	background-color: #C4C4C4 ;
}
.btn-warning {
	color: #FFFFFF;
	background-color: #F37025;
	border-color: #F37025;
}

.btn-warning:hover,
.btn-warning:focus {
	color: #FFFFFF;
	background-color: #F7A474;
	border-color: #F7A474;
}

.btn-next,
.btn-customize,
.btn-back {
	font-size: 14px;
}

.btn-customize,
.btn-back {
	position: absolute;
	bottom: 5%;
}

.btnHousingTypeChoice,
.btnRoomType,
.btnSystemChoice {
	/*width: 100%;*/
	/*height: 100%;*/
	background-color: #E8E8E8;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.btnHousingTypeChoice>*:first-child,
.btnRoomType>*:first-child,
.btnSystemChoice>*:first-child {
	-moz-flex-grow: 1;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.btnDetailsContainer p {
	font-size: 16px;
	margin-top: 10px;
	line-height: 22px;
	white-space: normal;
}

.btnDetailsContainer img {
	width: 50%;
	margin-bottom: 10px;
}

.btn>.CircleContainer {
	height: 30px;
	width: 30px;
	display: inline-block;
	border: 1px solid;
	border-radius: 50%;
	padding: 2px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.btn>.CircleContainer>.Circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.btn-close-popup {
	border-radius: 50%;
	border: solid 1px #FE9602;
	color: white;
	background: transparent;
}
.btn-close-popup:hover,
.btn-close-popup:focus,
.btn-close-popup:active {
	color: white;
}

.btn-accordion {
	display: inline-block;
}

.btn-accordion>.CircleContainer {
	border-width: 2px;
	width: 42px;
	height: 42px;
}

.btn-accordion>.CircleContainer>.Circle i {
	font-size: 16px;
}

div.btn.dropdown {
	border: none;
}

.TextMoreThanOneRoom {
	font-size: 15px;
	line-height: 15px;
	color: #306AB3;
}

.wrap {
	position: relative;
	margin: 2em 0;
}

.btnSly {
	position: absolute;
	z-index: 10;
	width: 48px;
	height: 120px;
	margin-bottom: 0;
	padding: 4px 12px;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	font-size: 25px;
}

.btnSly.next {
	top: 0px;
	right: 0px;
}

.frame {
	height: 120px;
}

.frame ul {
	list-style: none;
	margin: 0;
	padding: 0 55px;
	height: 100%;
	font-size: 50px;
}

.frame ul li {
	float: left;
	width: 100px;
	height: 100%;
	margin: 0 10px 0 0;
	padding: 5px;
	text-align: center;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px solid #306AB3;
	border-radius: 10px;
}

.btnSystemContainer p {
	font-size: 16px;
	margin-top: 10px;
	line-height: 22px;
	white-space: normal;
}

.btnSystemContainer img {
	width: 20%;
	margin-bottom: 10px;
}

.btnSystemContainer img.imgTechnology {
	width: auto;
	height: auto;
	max-width: 150px;
	max-height: 150px;
}

.btnSystemContainer div {
	text-align: left!important;
}

.systemAccordion .panel-title a:hover,
.systemAccordion .panel-title a:focus {
	text-decoration: none;
}

.systemHeader {
	text-transform: uppercase;
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.systemDescription {
	text-align: justify!important;
}

.systemNote {
	text-align: justify!important;
	font-style: italic;
}

.panel-custom {
	border-top-width: 0;
	border-left-width: 0;
	border-right-width: 0;
	border-radius: 0 !important;
	border-bottom: 2px solid #4D4A4A;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.panel-custom>.panel-heading {
	background-color: transparent;
	border-color: transparent;
	color: #4D4A4A;
	padding: 10px 0;
}

.buttonFinishingBox {
	width: 100%;
	white-space: normal;
	background-color: #E8E8E8;
}

.buttonFinishingBox .btnDetailsContainer {
	padding: 0 23px;
	font-size: 21px;
}

.btnState {
	font-size: 21px;
	height: 21px;
}

.btnState>div.state>span {
	font-size: 15px;
	line-height: 17px;
	margin-left: 5px;
}

.selected .buttonFinishingBox:before {
	content: "\f00c";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	float: left;
	font-size: 21px;
}

.btnSystemChoice.selected,
.btnHousingTypeChoice.selected,
.selected .buttonFinishingBox {
	background-color: #B9D9E6;
}

.btnSystemChoice.proposed {
	background-color: #EFC9A3;
}

.blockFinishing {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.blockFinishing img {
	height: 135px;
}

.blockFinishing h4 {
	font-family: 'RobotoMedium';
	font-size: 30px;
	color: #4D4A44;
}

.containerImg {
	text-align: center;
}

.containerImg img {
	display: none;
}

.containerImg .pos0,
.containerImg .current {
	display: inline;
}

.blockFinishing .chooseFinishingBox {
	margin: 15px 0;
}

.blockFinishing .descriptionFinishingContainer {
	border: 2px solid #CDCDCD;
	border-radius: 10px;
	padding: 8px;
}

.selected .blockFinishing .descriptionFinishingContainer {
	border: 2px solid #306AB3;
	border-radius: 10px;
	padding: 8px;
}

.blockFinishing .descriptionFinishingContainer .descriptionFinishing {
	text-align: justify;
}

.descriptionFinishing strong {
	color: #CDCDCD;
	font-family: 'RobotoBold';
}

.selected .descriptionFinishing strong {
	color: #306AB3;
	font-family: 'RobotoBold';
}

.headerAccordion {
	text-align: left!important;
}

#variantsContainer {
	width: calc(100% - 300px);
	background-color: rgba(0, 0, 0, 0.96);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding: 50px 50px;
	z-index: 100;
	overflow: auto;
}

.hrGrey {
	margin-bottom: 25px;
	margin-top: 10px;
	color: #938E81;
	border-bottom: 1px solid #938E81;
}

.customizationSummary {
	overflow: auto;
}

#headerSummary .btnSummary {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
    background: #FE9602 0% 0% no-repeat padding-box;
    border-color: #FE9602;
	min-width: 175px;
	box-shadow: 0px 3px 6px #0000005D !important;
	border-radius: 25px;
	opacity: 1;
}

#headerSummary .btnSummary>* {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
}

.btnSummary {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
    background-color: #FE9602;
    border-color: #FE9602;
	min-width: 175px;
	box-shadow: 0px 3px 6px #0000005D !important;
	border-radius: 25px;
	opacity: 1;
}

.btnSummary:hover{
	color: #fff !important;
}

#headerSummary .btnSummary span {
	margin-left: 7px;
}

#headerSummary .btnSummary i {
	font-size: 14px;
}

#headerSummary .btnSummary .iconContainer {
	padding: 8px;
	border: 1px solid #306AB3;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

#headerSummary .btnSummary:disabled{
	opacity: 0.5;
}

.header {
	border-bottom: 1px solid #C4C4C4;
	background-color: transparent;
	padding-top: .25rem;
	padding-bottom: .25rem;
}

.card-header {
	border-bottom: 1px solid #C4C4C4;
	color: #306AB2;
	background-color: transparent;
	padding:0  !important;
}
.card-body {
	padding:0  !important;
}

textarea.resize-vertical {
	resize: vertical;
}

table.itemsTable {
	width: 100%;
}

table.itemsTable tbody tr {
	background-color: #FFFFFF;
	border-radius: 5px;
}

table.itemsTable th {
	font-weight: normal;
	font-size: 14px;
	vertical-align: bottom;
}

table.itemsTable th {
	color: #306AB3;
	vertical-align: middle;
}

table.itemsTable td {
	font-size: 14px;
}

table.itemsTable th,
table.itemsTable td {
	padding: 6px 6px;
	vertical-align: middle;
}

table.itemsTable tr>td:first-child,
table.itemsTable tr>th:first-child {
	padding-left: 9px;
}

table.itemsTable tr>td:last-child,
table.itemsTable tr>th:last-child {
	padding-right: 9px;
}

table.itemsTable img.itemImg {
	width: 100%;
	max-width: 70px;
	max-height: 70px;
	-o-object-fit: contain;
	object-fit: contain;
}

table.itemsTable tbody tr:last-child {
	border-bottom: 0;
}

table.itemsTable tr>td.total-cell:not(.inverted-cell),
table.itemsTable tr>th.total-cell:not(.inverted-cell) {
	color: #306AB3;
	background-color: #E7F6FC;
}

table.summaryTable th {
	padding: 30px 6px 6px 6px;
}

table.summaryTable tfoot td {
	padding-top: 10px;
	padding-bottom: 30px;
}

#myQuotations .pagination>li {
	font-size: 14px;
	padding: 5px;
}

.pagination ul{
	text-align: center;
}

.pagination{
	align-items: center;
	justify-content: center;
}


#myQuotations .pagination>.active>a,
#myQuotations .pagination>.active>span,
#myQuotations .pagination>.active>a:hover,
#myQuotations .pagination>.active>span:hover
#myQuotations .pagination>.active>a:focus,
#myQuotations .pagination>.active>span:focus {
	background-color: #FE9602;
	border-color: #FE9602;
	color: #FFF;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: .25rem;
	width: 35px;
}

#myQuotations .pagination>li>a,
#myQuotations .pagination>li>span {
	border-color: #CCC;
	color: #306AB3;
	padding: 5px;
}

#myQuotations .pagination>.disabled>span,
#myQuotations .pagination>.disabled>span:hover,
#myQuotations .pagination>.disabled>span:focus,
#myQuotations .pagination>.disabled>a,
#myQuotations .pagination>.disabled>a:hover,
#myQuotations .pagination>.disabled>a:focus {
	background-color: #FFF;
	color:#FE9602;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 4px;

}

.text-total {
	font-size: 21px !important;
}

.inverted-cell {
	background-color: #306AB3 !important;
	color: #FFF !important;
}

.inverted-cell:not(:last-child) {
	border-right: 2px solid #E8E8E8;
}

.popup-100 {

  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.popup-header h2 {
	margin: 0;
	color: #000;
}

a.item-code {
	font-weight: bold;
	color: #306AB3;
}

a.item-code:hover,
a.item-code:focus {
	font-weight: bold;
	color: #5CC1ED;
	text-decoration: none;
}

.finishingContainer {
	cursor: pointer;
}

#DetailItemContainer,
#EditSystemReportTitleContainer {
	background-color: #FFFFFF;
	text-align: center;
	font-family: 'Roboto';
	padding: 2rem;
	border: 2px solid #DEDEDE;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 15px;

	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}

#DetailItemContainer.emailContainer {
	max-width: 600px;
}

@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(0)
	}
	to {
		-webkit-transform: scale(1)
	}
}

@keyframes zoom {
	from {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

#EditSystemReportTitleContainer {
	min-width: 100%;
}

.PricelistManagementContainer {
	background: -webkit-gradient(linear, left top, right top, from(rgba(231, 246, 252, 0.4)), color-stop(rgba(231, 246, 252, 1)), to(rgba(231, 246, 252, 0.4)));
	background: -webkit-linear-gradient(left, rgba(231, 246, 252, 0.4), rgba(231, 246, 252, 1), rgba(231, 246, 252, 0.4));
	background: -o-linear-gradient(left, rgba(231, 246, 252, 0.4), rgba(231, 246, 252, 1), rgba(231, 246, 252, 0.4));
	background: linear-gradient(to right, rgba(231, 246, 252, 0.4), rgba(231, 246, 252, 1), rgba(231, 246, 252, 0.4));
}

.systemImgSummary {
	max-width: 40px;
	-o-object-fit: contain;
	object-fit: contain;
	margin-right: 10px
}

.dropdown {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 0;
}

.dropdown-report {
	margin-top: 0;
	padding: 0;
	width: 100%;
}

.dropdown-report .report-btn {
	text-align: center;
}

ul.dropdown-report>li[role="menuitem"]>a {
	padding: 9px 0;
}

ul.dropdown-report>li[role="menuitem"]:not(:last-child) {
	border-bottom: 1px solid #E5E5E5;
}

ul.dropdown-report>li[role="menuitem"]:first-child>a {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

ul.dropdown-report>li[role="menuitem"]:last-child>a {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

table.discountsTable {
	border-collapse: collapse;
	font-size: 15px;
}

table.discountsTable,
table.discountsTable th,
table.discountsTable td {
	border: 1px solid #4D4A44;
}

table.discountsTable th {
	font-weight: normal;
	color: #306AB3;
}

table.discountsTable th,
table.discountsTable td {
	padding: 8px;
}

table.quotationsTable tr>td.actions>button.btn-action-table {
	margin: 2px 1px 2px 1px;
}

.quotationsTable tbody>tr{
	border: solid 1px #F8F9FA ;
	border-top: 0.35rem solid;
    border-bottom:  0.35rem solid;
    border-color: #F8F9FA;
	color: #306AB3;

}

.quotationsTable tfoot>tr>td{
	text-align: center;
	vertical-align: middle;
}


.btn-action-table,
.btn-action-table:focus {
	color: #306AB3;
	border: 1px solid #DEDEDE;
	background-color: transparent;
	padding: 0;
	line-height: 1;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-webkit-transition: opacity 0.2s, color 0.2s, border-color 0.2s;
	-o-transition: opacity 0.2s, color 0.2s, border-color 0.2s;
	transition: opacity 0.2s, color 0.2s, border-color 0.2s;
}

.btn-action-table:hover {
	color: #5CC1ED;
}

span.required {
	color: #F43933;
}

#DetailItemImage {
	max-width: 420px;
	-o-object-fit: contain;
	object-fit: contain;
}


.PopupContainer {
	text-align: center;
	padding: 20px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 15px;
	opacity: 1;

	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}


/* start: IAM Css */

img.IamLogo {
	vertical-align: inherit;
}

#IamLogoutIamForm {
	display: inline-block;
}

.LogoutIamContainer>*:not(:last-child) {
	border-right: 1px solid #aaa;
}

.LogoutIamContainer>*:nth-child(odd) {
	padding-right: 4px;
}

.LogoutIamContainer>*:nth-child(even) {
	padding-left: 4px;
}

.btnLogoutIam {
	border: 0;
	padding: 0;
	background-color: transparent;
	outline: 0;
}


/* end: IAM Css */


/* limit mobile devices */

@media (max-width : 991px) {
	.logo {
		margin: 0;
	}
	.logo>img {
		margin-left: auto;
		margin-right: auto;
	}
	.mainMenu {
		width: 62px;
	}
	.step .stepCircleContainer {
		margin-right: 16px;
	}
	.viewContainer.withLeftBar {
		width: calc(100% - 62px);
	}


	#accessoryPopup .popup-header .AccessoryPopupActionBottomContainer>button:not(:last-child) {
		margin-bottom: 5px;
	}
	#trafos{
		display: none;
	}
	#trafosMobile{
		display: inline-block!important;
	}
}

#trafosMobile{
	display: none;
}

.progress {
	position: relative;
	height: 25px;
	margin-bottom: 5px!important;
	background-color: #306AB3;
}

.progress>.progress-type {
	position: absolute;
	left: 0px;
	font-weight: 800;
	padding: 3px 0px 2px 5px;
	color: rgb(255, 255, 255);
	background-color: rgba(25, 25, 25, 0.3);
	/*background-color: #0976a5 !important*/
	/*min-width: 100px;*/
	height: 100%;
}

.progress>.progress-completed {
	position: absolute;
	right: 0px;
	font-weight: 800;
	padding: 3px 10px 2px;
}

.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: transparent;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	/*-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;*/
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
}

.col-flex-items-flex-start {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.over-all {
	z-index: 99;
	position: relative;
	font-size: 16px;
	font-weight: 800;
	float: left;
	margin-left: 8px;
	margin-top: 3px;
}

#DetailItemContainer.emailModalChoice {
	max-width: 600px;
}

.modal-title{
	font: normal normal medium 25px/33px 'Roboto';
	letter-spacing: 0px;
	color: #306793
}

.emailModal-title {
	margin: 0 0 25px 0;
}

.attachments {
	float: left;
	text-align: left;
}

.attachments span {
	line-height: 35px;
}

.attachments input {
	margin-right: 0px;
	height: 20px;
	width: 30px;
}
.homepage {
	height: 100%;
	min-height: 100%;
}

.homepage h1{
	margin-top: 20px;
}
.homepage button{
	width: 100%;
	font-size: 1rem;
}

.logincontainer{
	color: #FFFFFF;
	background: rgb(51,111,159);
    background: linear-gradient(162deg, rgba(51,111,159,1) 33%, rgba(39,80,112,1) 66%, rgba(22,37,48,1) 100%);
}
.logincontainer .loginContent{
	padding: 3rem;
}

.logincontainer h1{
	color: #FFFFFF;
	font-size: 2rem;
}
.logincontainer h1 img{
	margin-right: 10px;
}

.logincontainer h3{
	color: #FFFFFF;
	font-size: 1rem;
}
.border-radius-3{
	border-radius: 3px;
}

.logincontainer .form-group .form-control {
	border-radius: 3px;
	/*max-width: 275px;*/
}

.logincontainer button{
	max-width: 175px;
}


ul#steps li {
	/*height: 60px;*/
}

#steps li a {
	height: 100%;
	text-decoration: none;
	font-family: 'Roboto';
}

.visible-xs.visible-sm{
	display: none;
}
.hidden-xs.hidden-sm{
	display: block;
}

.nav, .pagination, .carousel, .panel-title a {
	cursor: pointer;
}

nav > ul {
	list-style: none;
	padding: 0;
}

.text-bold {
	font-family: 'RobotoBold' !important;
}

.text-bticino {
	color: #306AB3;
}

div[uib-accordion-group] a {
	text-decoration: none !important;
}

.btn-solution > div > p {
	padding: .375rem .5rem;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.btn-solution > div > p:first-child {
	padding-left: .75rem;
}
.btn-solution > div > p:last-child {
	padding-right: .75rem;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.btn-solution+.btn-solution {
	margin-top: .5rem;
}

.limited-list-group {
	max-height: 15rem;
	overflow-y: auto;
}

.f-s-14 {
	font-size: .875rem;
}
.bottom-0{
	bottom:0;
}

/* 8. Device and Responsive Layout */

@media (min-width: 1281px) {
}

/*
##Device = Laptops, Desktops
##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
}

/*
##Device = Tablets, Ipads (portrait)
##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
}

/*
##Device = Tablets, Ipads (landscape)
##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

/*
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
}

/*
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
}


.input-group-append .btn, .input-group-prepend .btn {
	position: relative;
	z-index: 0;
}
/*drag*/
#dragDiv {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	z-index: 3;
	background-color: #F8F9FA;
	border: 1px solid #DEDEDE;
}
#dragDivHeader {
	-ms-touch-action: none;
	touch-action: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 3;
	padding-bottom: 10px;
	padding-top: 10px;
}
#dragDivHeader:active {
	background-color: #DEDEDE;
}
#dragDivHeader:hover {
	cursor: move;
}
.pin{
	font-size: 75%;
	margin-top: 5px;
}
.pin:hover{
	cursor: pointer;
}

span.text-muted{
	color: #306793 !important;
}

.choiceList > li{
    background: #F8F9FA;
}

.choiceList > li:hover {
	background-color: #306793;
	color: #fff;
	cursor: pointer;
}
.d-box {
	display: -webkit-box !important;
}

/**/

.badge-secondary{
	background-color: #FE9602;
	border-radius: .2rem;
	height: 25px;
    padding: 5px 10px;
}

.badge-stock{
	color: #fff;
	background-color: #6c757d;
	border-radius: 0px;
}

.fa-stack-x {
	left: 9px;
	top: 18px;
	position: absolute;
	text-align: center;
	width: 100%;
	font-size: 12px;
}

.filterCard
{
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	border-radius: .25rem;
}
.topBar{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
}

#trafos li a h5 {
	color: #4D4A44;
	font-family: 'RobotoBold';
	line-height: 1.5;
	text-decoration: none;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: inherit;
}

.currentTrafo{
	color: #306AB3;
	font-weight: bold;
}

#trafos li.current a h5 {
	color: #306AB3;
}

.trafoSelected {
	background-color: #307fb3 !important;
	color: white;
}

#chooseTrafoContainer {
	background: #FFFFFF;
}

.bt-hr {
	border-top-width: 2px;
	border-color: #306AB3;
}
.pointer{
	cursor: pointer;
}

.summary-table-border-top {
	border-top : 1px solid lightgrey;
}
.summary-table-border-bottom {
	border-bottom : 1px solid lightgrey;
}
.m-r-1{
	margin-right: 1px;
}
.hrList
{
	margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
/*tooltip*/
.tooltipSummary {
    position: relative;
    display: inline-block;
}

.tooltipSummary .tooltiptext {
    visibility: hidden;
    width: 225px;
    background-color: #306AB3;
    color: #fff;
    border-radius: 6px;
    padding: 10px 10px;
    position: absolute;
    /*bottom: -1280%;*/
    left: 25%;
    margin-left: -90px;
    opacity: .95;
    text-align: left;
    z-index: 1 !important;
    font-size: 12px;
}

.tooltipSummary .tooltiptext::after {
    content: "";
    position: absolute;
    top: -9px;;
    left: 21px;
    margin-left: 89px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #306AB3 transparent;

}

.tooltipSummary:hover .tooltiptext {
    visibility: visible;
}

.tooltipLeft {
    position: relative;
    display: inline-block;
}

.tooltipLeft .tooltiptext {
    visibility: hidden;
    width: 34px;
    background-color: #306AB3;
    color: #fff;
    border-radius: 6px;
    padding: 10px 10px;
    position: absolute;
    /*bottom: -1280%;
    left: 25%;
    margin-left: -90px;*/
    opacity: .95;
    text-align: left;
    z-index: 1 !important;
    font-size: 12px;
}

.tooltipLeft .tooltiptext::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 13px;
    /*left: 21px;
    margin-left: 89px;*/
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #306AB3 transparent;

}

.tooltipLeft:hover .tooltiptext {
    visibility: visible;
}

.flex-grow-1 {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.col-flex-content-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.col-flex-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.col-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.t-a-right {
    text-align: right;
}
.t-a-center {
    text-align: center;
}
.max-w-600{
	max-width: 600px;
}

#catalogIcon:hover{
	color: #d34e02;
}
.hrTooltip{
	margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border: 0;
    border-top: 1px solid white;
}


#pdfIcon:hover{
	color: #d34e02;
}
.hrTooltip{
	margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border: 0;
    border-top: 1px solid white;
}

.tooltipLinkPDF, .tooltipLinkDWG, .tooltipLinkCatalog, .tooltipLinkRevit {
	position: relative;
    display: inline-block;
}

.tooltipLinkPDF .tooltiptext,
.tooltipLinkDWG .tooltiptext,
.tooltipLinkRevit .tooltiptext,
.tooltipLinkCatalog .tooltiptext {
	visibility: hidden;
	white-space: nowrap;
	position: absolute;
	background-color: #306AB3;
	color: white;
	text-align: center;
    border-radius: 6px;
    padding: 10px 10px;
	left: -90%;
    bottom: -209%;
	z-index: 1;
}

.tooltipLinkPDF .tooltiptext::after{
	content: "";
	top: -25%;
    left: 11%;
    position: absolute;
    border: 5px solid;
    border-color: transparent transparent #306AB3 transparent;
}
.tooltipLinkDWG .tooltiptext::after {
	content: "";
	top: -25%;
    left: 13.5%;
    position: absolute;
    border: 5px solid;
    border-color: transparent transparent #306AB3 transparent;
}
.tooltipLinkRevit .tooltiptext::after {
	content: "";
	top: -25%;
    left: 13.5%;
    position: absolute;
    border: 5px solid;
    border-color: transparent transparent #306AB3 transparent;
}

.tooltipLinkCatalog .tooltiptext::after {
	content: "";
	top: -25%;
   	left: 11%;
    position: absolute;
    border: 5px solid;
    border-color: transparent transparent #306AB3 transparent;
}

.tooltipLinkPDF:hover .tooltiptext,
.tooltipLinkDWG:hover .tooltiptext,
.tooltipLinkRevit:hover .tooltiptext,
.tooltipLinkCatalog:hover .tooltiptext {
	visibility: visible;
}


.inputSummary{
	width: 35px;
	text-align: center;
	border: 1px solid lightgrey;
	border-radius: 5px;
}

.inputSummary:focus{
	outline: #306AB3 auto 5px;
}

.selectSummary{
    border: none;
    margin-left: 5px;
	font-weight: bold;
	color:#306AB3;
}
.selectSummary:focus{
	outline: #306AB3 auto 5px;
}

.stockNumber{
	top:-6px;
	font-weight: 600;
	font-size: 11px;
	left: -9px;
	text-align: right;
}
.expandHeight{
	max-height: 50rem!important;
}
.imgHome{
	max-height: 100%;
}

.b-l-grey{
	border-left: 1px solid lightgrey;
}
.b-l-grey-bold{
	border-left: 2px solid #4D4A44;
}

.b-r-grey{
	border-right: 1px solid lightgrey;
}
.b-r-grey-bold{
	border-right: 2px solid #4D4A44;
}

.m-r-l-3{
	margin: 0px 3px;
}
/**/
/* makes main-menu open on hover */
.menu-item:focus > .dropdown-menu {
  display: block;
}

/* makes sub-menu S open on hover */
.submenu-item:hover > .dropdown-menu {
  display: block;
}

.dropdown-toggle-right::after {
    display: inline-block;
    width: 0;
    height: 0;
    content: "";
    border-top: 0.25em solid transparent;
    border-right: 0;
    border-bottom: 0.25em solid transparent;
    border-left: 0.3em solid;
    float: right;
    margin-top: 0.6em;
    margin-left: .255em;
}

.submenu-item-first{
	left: 100%; top: -3%; margin-left: .125rem;
}
.submenu-item-second{
	left: 100%; top: 32%; margin-left: .125rem;
}
.submenu-item-third{
	left: 100%; top: 65%; margin-left: .125rem;
}

#introBIC{
	width: 100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logoBIC{
	text-align: center;
}

.sloganBIC{
	text-align: center;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'RobotoBold', Arial, sans-serif;
}
.imgHomeBIC{
	text-align: center;
	height: 50%;
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #306AB3;
}

[uib-typeahead-popup].dropdown-menu {
    width: 100%;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #f8f9fa!important;
    opacity: 1;
}

.input-group>div:first-child {
	-webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-right: .5rem!important;
}
.dropdown-menu {
    z-index: 1;
}

.tooltipTrafoData {
    position: relative;
    display: inline-block;
}

.tooltipTrafoData:hover {
    color:  #306AB3;
}

.tooltipTrafoData:hover .tooltiptext {
	visibility: visible;
}

.tooltipTrafoData .tooltiptext {
    visibility: hidden;
    width: 225px;
    background-color: #306AB3;
    color: #fff;
    border-radius: 6px;
    padding: 10px 10px;
    position: absolute;
    bottom: -30%;
    left: 150%;
    opacity: .95;
    text-align: left;
    z-index: 1 !important;
    font-size: 12px;
}

.tooltipTrafoData .tooltiptext::after {
    content: "";
    position: absolute;
    top: 55%;
    left: -4%;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #306AB3 transparent transparent;
}

.dropdown-menu {
    max-height: 350px;
    overflow-y: auto;
}
/**/
ul.dropdown-report > li[role="menuitem"] > a {
    padding: 9px 0;
}

body a:link {
    -webkit-tap-highlight-color: transparent;
}

.dropdown-menu .form-group {
    margin-bottom: 0;
}

.form-group-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: auto;
    cursor: pointer;
}
select.form-control{
	height: 3.4rem!important;
}
.booking-form-select{
	max-width: 158px;
    min-width: 155px;
}
.booking-form-input{
	max-width: 157px!important;
    min-width: 155px!important;
}
.form-group .form-control {
    height: 3rem;
    padding: 5px 4px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #C4C4C4;
	border-radius: 5px;
	opacity: 1;
}

.dropdown-checkbox{
	text-decoration: none;
	padding: 9px;
}

.m-b-10{
	margin-bottom: 10px;
}
.bs-callout-white{
	background-color: white;
	color: #306793;
}

.form-group-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: auto;
	cursor: pointer;
}
.form-group-checkbox label {
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
}
.form-group-checkbox label:before {
	content: "";
	background-color: #fff;
	border: 1px solid #DEDEDE;
	border-radius: 4px;
	width: 20px;
	height: 20px;
	margin-right: 8px;
	text-align: center;
	color: #FFF;
	background-color: #FFF;
	transition: background-color .2s linear 0s, border-color .2s linear 0s;
}
.form-group-checkbox.checkbox-big label:before {
	width: 36px;
	height: 36px;
	margin-right: 10px;
	font-size: 18px !important;
}
.form-group-checkbox input[type=checkbox]:checked+label:before {
	content: "\f00c";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	background-color: #009FE3;
	border-color: #009FE3;
	font-size: 13px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.form-group-checkbox input[type=checkbox]:disabled+label:before {
	background-color: #DEDEDE;
}
.form-group-checkbox input[type=checkbox]:disabled:checked+label:before {
	background-color: #B9D9E6;
	border-color: #B9D9E6;
}
.form-group-checkbox.checkbox-label-empty label:before {
	margin-right: 0;
}

.summary-input{
	width: 90%;
    text-align: center;
}

.opened-row{
	background-color: #F2E1C6;
}

.rotate {
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
}

/* ngIf animation */
.ifJsAnimation.ng-enter{
	-webkit-transition : opacity ease-in-out 0.5s;
	-moz-transition    : opacity ease-in-out 0.5s;
	-ms-transition     : opacity ease-in-out 0.5s;
	-o-transition      : opacity ease-in-out 0.5s;
	transition         : opacity ease-in-out 0.5s;
}
.ifJsAnimation.ng-leave {
	-webkit-transition : opacity ease-in-out 0.2s;
	-moz-transition    : opacity ease-in-out 0.2s;
	-ms-transition     : opacity ease-in-out 0.2s;
	-o-transition      : opacity ease-in-out 0.2s;
	transition         : opacity ease-in-out 0.2s;
}

.ifJsAnimation.ng-enter,
.ifJsAnimation.ng-leave.ng-leave-active {
	opacity : 0;
}

.ifJsAnimation.ng-leave,
.ifJsAnimation.ng-enter.ng-enter-active {
	opacity : 1;
}

.l-130{
	left: -130%!important;
}

.m-l-25{
	margin-left: 25px!important;
}

.m-t-5{
	margin-top: 5px;
}
.color-blu{
	color: #306793  !important;
}

.color-green{
	color: #16bea2;
}

.color-red{
	color: red;
}
.m-r-5{
	margin-right: 5px;
}
.m-l-5{
	margin-left: 5px;
}
.header {
	border-bottom: 1px solid #C4C4C4;
	background-color: transparent;
	padding-bottom: .25rem;
}

.btn-color-invert{
	color: #FFFFFF!important;
	background-color: #306AB3!important;
}
.fs-16{
	font-size: 16px;
}

.selectStatuses{
	background-color: transparent;
    color: white;
    /*text-transform: uppercase;*/
    padding: 3px 9px;
    font-size: 11px;
    line-height: 1;
    text-shadow: none;
    font-weight: 600;
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    width: fit-content;
    text-align: -webkit-left;
    margin: 0 auto;
    display: table;
	line-height: 1.5;
	text-align-last: left;
	height: 3rem;
    padding: 5px 4px;
}

select option{
	background-color: white!important;
    color: black!important;
}

.font-black{
	color: black!important;
}

.select-blu{
	background-color: #306793;
    color: white;
}
.select-yellow{
	background-color: #f1b605;/* #ffc107;*/
    color: white;
}
.select-red{
	background-color: #ed0101;
    color: white;
}

.choiceList>li:hover i {
	color: white !important;
}

.tableSum {
	width: 100%;
	color: #306793;
}

.select-filters{
	width: 150px;
    margin-bottom: 20px;
    float: left;
    margin-left: 20px;
}
.float-l{
	float:left;
}
.hide-arrow{
	-o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.full button span {
    background-color: limegreen;
    border-radius: 32px;
    color: black;
}
.partially button span {
background-color: orange;
border-radius: 32px;
color: black;
}

.float-r{
	float: right;
}
.btn-export{
	color: #ffff;
	background-color: #3e9160;
	margin-left: 20px;
}

.btn-export:hover, .btn-export:focus{
	color: #ffff;
	background-color: #27ae60;
}

.info-title{
	color: #306AB3;
    font-size: 20px;
    margin-right: 5px;
}
.hr-popup{
	margin-top: 0rem;
    margin-bottom: 0.2rem;
}

.bold{
	font-weight: bold;
}

.btn-badge{
	float: left;
    display: inline-block;
    padding: 0.05em 0.2em;
    font-size: 115%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
	border-radius: .25rem;
	cursor: pointer;
}

.btn-badge-selected{
	color: #6c757d;
}
.btn-badge-selected > i{
	background: white;
    border-radius: 10.25em;
    border-color: #6c757d;
}

.btn-badge-selected:hover{
	color: #6c757d;

}
.btn-badge-selected:hover > i{
	background: white;
    border-radius: 10.25em;
    border-color: #6c757d;
}

.choiceList > li:hover button {
	color: #306793;
}

.choiceList > li:hover button > i{
	background: white;
    border-radius: 10.25em;
    border-color: #306793;
}

/*Margin and Padding helpers*/
/*xs*/
.p-xs { padding: .25em; }
.p-x-xs { padding: 0 .25em; }
.p-y-xs { padding: .25em 0 ; }
.p-t-xs { padding-top: .25em; }
.p-r-xs { padding-right: .25em; }
.p-b-xs { padding-bottom: .25em; }
.p-l-xs { padding-left: .25em; }
.m-xs { margin: .25em; }
.m-x-xs { margin: 0 .25em; }
.m-y-xs { margin: .25em 0 ; }
.m-r-xs { margin-right: .25em; }
.m-l-xs { margin-left: .25em; }
.m-l-xxs { margin-left: .10em; }

.m-t-xs { margin-top: .25em; }
.m-b-xs { margin-bottom: .25em; }
/*sm*/
@media (min-width:768px){
/*sm*/
.p-sm { padding: .5em; }
.p-x-sm { padding: 0 .5em; }
.p-y-sm { padding: .5em 0 ; }
.p-t-sm { padding-top: .5em; }
.p-r-sm { padding-right: .5em; }
.p-b-sm { padding-bottom: .5em; }
.p-l-sm { padding-left: .5em; }
.m-sm { margin: .5em; }
.m-x-sm { margin: 0 .5em; }
.m-y-sm { margin: .5em 0 ; }
.m-t-sm { margin-top: .5em; }
.m-r-sm { margin-right: .5em; }
.m-b-sm { margin-bottom: .5em; }
.m-l-sm { margin-left: .5em; }
}

/*md*/
@media (min-width: 992px){
.p-md { padding: 1em; }
.p-x-md { padding: 0 1em; }
.p-y-md { padding: 1em 0; }
.p-t-md { padding-top: 1em; }
.p-r-md { padding-right: 1em; }
.p-b-md { padding-bottom: 1em; }
.p-l-md { padding-left: 1em; }
.m-md { margin: 1em; }
.m-x-md { margin: 0 1em; }
.m-y-md { margin: 1em 0 ; }
.m-t-md { margin-top: 1em; }
.m-r-md { margin-right: 1em; }
.m-b-md { margin-bottom: 1em; }
.m-l-md { margin-left: 1em; }
}

/*lg*/
@media (min-width: 1200px){
.p-lg { padding: 1.5em; }
.p-x-lg { padding: 0 1.5em; }
.p-y-lg { padding: 1.5em 0; }
.p-t-lg { padding-top: 1.5em; }
.p-r-lg { padding-right: 1.5em; }
.p-b-lg { padding-bottom: 1.5em; }
.p-l-lg { padding-left: 1.5em; }
.m-lg { margin: 1.5em; }
.m-x-lg { margin: 0 1.5em; }
.m-y-lg { margin: 1.5em 0; }
.m-t-lg { margin-top: 1.5em; }
.m-r-lg { margin-right: 1.5em; }
.m-b-lg { margin-bottom: 1.5em; }
.m-l-lg { margin-left: 1.5em; }
}
/*xl*/
.p-xl { padding: 3em; }
.p-x-xl { padding: 0 3em; }
.p-y-xl { padding: 3em 0 ; }
.p-t-xl { padding-top: 3em; }
.p-r-xl { padding-right: 3em; }
.p-b-xl { padding-bottom: 3em; }
.p-l-xl { padding-left: 3em; }
.m-xl { margin: 3em; }
.m-x-xl { margin: 0 3em; }
.m-y-xl { margin: 3em 0; }
.m-t-xl { margin-top: 3em; }
.m-r-xl { margin-right: 3em; }
.m-b-xl { margin-bottom: 3em; }
.m-l-xl { margin-left: 3em; }

.reportTable th{
	letter-spacing: 0px;
	color: #000000;
	text-align: left;
	font-size: 14px;
	font-weight: bold !important;

}
.reportTable td{
	color: #306793;
	background-color: #fff;
}

.reportTable td.lightblue{
	background-color: #EEF8FF !important;
}


.reportTable td.grayseparator{
	background-color: #F8F9FA  !important;
}

.reportTable .footer td{
	background-color: #306793 !important;
	color: #fff !important;
	border-spacing: 0 !important;

}
th.blue{
	color: #306793;
}

.th-bbg{
	border-bottom: solid 1px #8E8E8E;
	padding-left: 1px;
	padding-right: 1px;
}

.th-bbb{
	border-bottom: solid 1px #306793;
}

.footer td{
	color: #fff !important;
}

.footer-total td{
	color: #fff !important;
}

.footer-total td{
	background-color: #FE9602 !important;
	color: #fff !important;
	border-spacing: 0 !important;

}

.lightGreyRow{
	background: #F8F9FA;
}

.iconButton{
	width: 16px;
	height: 16px;
}
.step .iconButton{
	width: 35px;
	height: 35px;
}

.btn-minus {
	/* margin:0 !important; */
	margin-right: 0.4rem;
    background-color: #F8F9FA ;
	border: 1px solid #C4C4C4;
	height: 40px;
	border-radius: 5px;
}

.btn-plus{
	margin-left: 0.4rem;
    background-color: #F8F9FA ;
	border: 1px solid #C4C4C4;
	height: 40px;
	border-radius: 5px;
}
.orange{
	color:#FE9602 !important;
}
.black{
	color:#000 !important;
}
.btnwhite{
	background-color: #fff;
}

.bb-blue{
	border-bottom: solid 1px #306793;
}

.bb-orange{
	border-bottom: solid 1px #FE9602;
}
.bg-orange{
	background-color: #FE9602;
}
.notification{
	height:21px;
	min-width:21px;
	text-align: center;
	color:#fff;
	border-radius: 3px;
	top: 19px;
    left: 15px;
	font-weight: bold;
	padding: 2px;
	position: absolute;
	z-index: 49;
}
.notificationTrafo{
	top: 9px;
	z-index: 10;
}

.btn-icon{
	background: none;
	padding: 0;
}

.fontfbold{
	font-family: 'RobotoBold';
}
.p-l-0{
	padding-left: 0;
}
.w-20{
	width: 20%;
}

.ngn-success {
    background-color: #306793;
}

.miniIconButton{
	width: 12px;
	height: 15px;
	filter:invert(83%) sepia(10%) saturate(17%) hue-rotate(355deg) brightness(96%) contrast(87%) !important;
}

.miniIconBlueButton{
	width: 15px;
	height: 15px;
	filter: none !important;
}
li.active .miniIconBlueButton{
	filter:brightness(0) invert(1) !important;
}
.btn-leftbar{
	width: 17px !important;
	height: 17px !important;
	margin-left: 0.5em !important;
	vertical-align: text-top !important;
	filter: none!important;
}
.f-s-15{
	font-size: 15px !important;
}
.orange{
	color:#FE9602;
}
.date-filter-container{
	max-width: 250px;
}
.btn-secondary {
    color: #4D4A4A!important;
    background-color: #F8F9FA!important;
    border-color: #F8F9FA!important;
}
.text-info{
	color: #FE9602!important;
    font-weight: bold;
}

.btn-info:not(:disabled):not(.disabled).active{
	color: white!important;
    background-color: #306793!important;
}

.btn-bticino-small{
    background: #FE9602;
    margin-bottom: 5px;
    color: white;
    font-family: 'RobotoBold';
    font-size: 12px;
    float: right;
    border-radius: 50px;
    box-shadow: 0px 3px 6px #0000005d;
    transition: all 0.3s ease 0s;
}

.btn-bticino-small:not(:disabled):not(.disabled):hover, .btn-bticino-small:not(:disabled):not(.disabled):focus {
    color: #FFFFFF;
    background-color: #306AB3;
    border-color: #306AB3;
}

.div-v-center{
	display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.space-between{
	justify-content: space-between;
}

.inline-checkbox>.form-group-checkbox:not(:last-child) {
    padding-right: 0px!important;
    border-right: none!important;
}

.disable-events{
	pointer-events: none;
}

.upBarContainer{
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 1;
	border: 2px solid #fe9602;
    padding: 20px 0px 20px 20px;
	border-radius: 5px;
}

.no-margin{
	margin: 0;
}


/* booking section */
table.booking-table thead tr {
	display: flex;
	padding: .5rem;
	align-items: center;
	align-self: stretch;
	margin-bottom: 1rem;
	color: #898989;
	font-family: 'Roboto';
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-shadow: 0px;
}

table.booking-table thead tr .expanded{
	box-shadow: 0px 0px 10px 0px #00000040;
}

table.booking-table tbody tr {
	display: flex;
	padding: 1rem 1rem 1rem .5rem;
	align-items: center;
	align-self: stretch;
	background-color: #fff;
	margin-bottom: 16px;
}

.booking-table thead th {
	height: 70px;
	position: relative;
	padding: .125rem;
}

tr.booking-table-tr.collapsed{
	/*max-height: 82px;*/
}

tr.booking-table-tr.expanded{
	display: flex;
	padding: 1rem .5rem;
	justify-content: center;
	align-items: flex-start;
	align-self: stretch;
	background: #FFF;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
	z-index: -100;
}

.booking-table-tr th p{
	position: absolute;
    bottom: 0;
    text-align: left;
	color: #898989;
	font-family: 'Roboto';
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

table.booking-table td{
	padding: 0rem;
	border: 0px;
}

.btn-reduce{
	position: absolute;
    top: 0rem;
    right: 0rem;
	color: #4178F7;
	font-family: 'Roboto';
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	background-color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	z-index: 100;
}

.icon-trafo-lock-me{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-color: #FF8500;
	background-image: url('../images/booking/reserved-by-me.svg');
    background-repeat: no-repeat;
    background-position: center;
	border: 1px solid #FF8500;
	border-radius: .5rem;
	padding: 1rem;
	/*margin: .5rem;*/
}

.icon-trafo-lock{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-color: #FCEDCA;
	background-image: url('../images/booking/reserved.svg');
    background-repeat: no-repeat;
    background-position: center;
	border: 1px solid #FCEDCA;
	border-radius: .5rem;
	padding: 1rem;
	/*margin: .5rem;*/
}

.icon-trafo-proposal-me{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-color: #336f9f;
	background-image: url('../images/booking/reserved-by-me.svg');
    background-repeat: no-repeat;
    background-position: center;
	border: 1px solid #336f9f;
	border-radius: .5rem;
	padding: 1rem;
	/*margin: .5rem;*/
}

.icon-trafo-proposal{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-color: #336f9f;
	background-image: url('../images/booking/reserved.svg');
    background-repeat: no-repeat;
    background-position: center;
	border: 1px solid #336f9f;
	border-radius: .5rem;
	padding: 1rem;
	/*margin: .5rem;*/
}

.icon-trafo-free{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background: #C7EDD3;
	background-image: url('../images/booking/plus.svg');
    background-repeat: no-repeat;
    background-position: center;
	border: 1px solid #C7EDD3;
	border-radius: .5rem;
	padding: 1rem;
	/* margin: .5rem; */
}

.booking-table-td-week{
	width: 10%;
}

.booking-table-td-transformer{
	width: 30%;
	align-self: auto;
}

.booking-table-td-note{
	width: 30%;
	position: relative;
    text-align: left;
    padding: 0.5rem;
}

.booking-table-note{
	margin-right: 2rem;
}

.availability-label-available{
	color: #256B3C;
	font-family: 'Roboto';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.availability-label-full{
	color: #B84300;
	font-family: 'Roboto';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.booking-table-year-label{
	color: #898989;
	font-family: 'Roboto';
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-left: 16px;
	margin-bottom: 8px;
}

.booking-table-week-label{
	color: #9D9D9E;
	font-family: 'Roboto';
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0rem;
	margin-left: 16px;
}

.booking-slot-container{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 10px;
	border-left: 2px solid #dbdcdd;
    padding-left: 10px;
}

.booking-table-week-label-black{
	color: #000;
	font-family: 'Roboto';
	font-size: 21px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0rem;
}

.booking-table-current-week-p{
	margin-top: 8px;
	margin-bottom: 0px;
}

.booking-table-current-week-label{
	color: #243040;
	font-family: 'Roboto';
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	border-radius: 4px;
	background: #F7F7F7;
	padding: .25rem .5rem;
	margin-left: 16px;
	margin-top: 8px;
}

.booking-filter-btn{
	width: 122px;
	height: 40px;
	padding: 1rem .5rem .5rem 1rem;
	gap: 1rem;
	border-radius: .5rem;
	opacity: 0px;
	color: #fff;
	background-color: #000;
}

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.booking-modal-content{
	display: flex;
	min-width: 720px;
    max-width: 1080px;
	padding: var(--spacing-md, 24px);
	flex-direction: column;
	gap: 18px;
	background: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.booking-modal-header{
	width:100%;
	padding: 0rem!important;
}

.booking-modal-header .modal-title{
	color: var(--Blue1, #336F9F);
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.form-group-input{
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-grow: 1;
}

.booking-form{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 1rem;
}

.booking-form input {
	border-radius: var(--radius-sm, 4px);
	border: 1px solid var(--interaction-input-field-border-default, #E1E2E5);
	background: var(--background-primary-medium, #FFF);
	padding: var(--spacing-xs, 12px) var(--spacing-sm, 16px);
	justify-content: center;
	align-items: center;
	gap: var(--spacing-3xs, 4px);
	min-width: 160px;
	max-width: 200px;
}

.form-group-textarea{
	width: 100%;
}

.booking-form textarea{
	min-height: 190px;
	padding: var(--spacing-xs, 12px) var(--spacing-sm, 16px);
	align-items: flex-start;
	gap: var(--spacing-2xs, 8px);
	flex: 1 0 0;
	align-self: stretch;
	border-radius: var(--radius-sm, 4px);
	border: 1px solid var(--interaction-input-field-border-default, #E1E2E5);
	background: var(--background-primary-medium, #FFF);
}

.form-buttons{
	display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
	align-content: flex-end;
}

.btn-booking-white{
	color: #000;
	height: 40px;
	padding: .5rem 1.5rem;
	justify-content: center;
	align-items: center;
	gap: 0px;
	border-radius: 4px;
	border: 1px solid var(--border-primary-medium, #C3C6CC);
	background: var(--interaction-action-outline-default, #FFF);
}

.btn-booking-black{
	color: #fff;
	height: 40px;
	padding: .5rem 1.5rem;
	justify-content: center;
	align-items: center;
	gap: 0px;
	border-radius: 4px;
	border: 1px solid #000;
	background: #000;
}

.btn-booking-popup:hover{
	color: #fff;
	background: #F8F9FA;
}

.history-table{
	gap: 0px;
	flex: 1 0 0;
	align-self: stretch;
	border-radius: 8px;
	border: 1px solid #C3C6CC;
}

.history-table-tr{
	background-color: #FFF;
}

.history-table-th{
	color: #030712;
	font-family: 'Roboto';
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5rem;
}

.history-table-tr td{
	color: #243040;
	font-family: 'Roboto';
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	min-height: 3.5rem;
	padding: 1rem;
	align-items: center;
	gap: .5rem;
	align-self: stretch;
}

.year-label{
	color: #004C59;
	font-family: 'Roboto';
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	padding: .25rem .5rem;
	align-items: center;
	gap: 5rem;
	border-radius: .25rem;
	background: #D0EDF2;
}

.week-label{
	color: #E56E19;
	font-family: 'Roboto';
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	padding: .25rem .5rem;
	align-items: center;
	gap: 5rem;
	border-radius: .25rem;
	background: #FCEDCA;
}

.btn-paginator-selected{
	border-radius: 9999px;
	border-color: #FE9602;
	background: #FE9602;
	color: #FFF;
	text-decoration: none;
}

.btn-paginator{
	border-radius: 9999px;
	border-color: #FFF;
	background: #FFF;
	text-decoration: none;
}

.btn-paginator.bordered{
	border-radius: 9999px;
	border-color: #C3C6CC;
	padding: .375rem .5rem;
}

.filter-container{
	display: flex;
	flex-wrap: initial;
	gap: 0;
    justify-content: flex-start;
}

.booking-filter-title h4{
	color: #030712;
	font-family: 'Roboto';
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	padding: 0rem .7rem;
	margin-top: 16px;
}

.booking-filter-title h5{
	color: #030712;
	font-family: 'Roboto';
	font-size: 10px;
	font-style: italic;
	font-weight: 500;
	padding: 0rem .7rem;
	margin-top: 6px;
}

.booking-filter-field input{
	border:0px;
	height: 100%;

	border: 1px solid #C4C4C4;
	border-radius: 8px;
}

.booking-filter-separator{
	padding: .725rem;
	border-top: 1px solid #C4C4C4;
	border-right: 0px;
	border-left: 0px;
	border-bottom: 1px solid #C4C4C4;
}

.booking-filter-field input{
	background-color: transparent;
}

.btn-search{
	border-radius: .5rem;
	background: #030712;
	color: #FFF;
	height: 48px;
	padding: .5rem 1.5rem .5rem 1.5rem;
	justify-content: center;
	align-items: center;
}