/*! BuildToolsCookbook v2.0.0 | (c) 2022 Your Name | MIT License | http://github.com/cferdinandi/build-tools-boilerplate */
/**
 * @section Base Styles
 */
body {
	font-size: 125%;
	margin: 0 auto;
	max-width: 42em;
	width: 88%;
}

input,
textarea,
select,
button {
	font: inherit;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
.green-audio-player {
	width: 400px;
	min-width: 300px;
	height: 56px;
	-webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 24px;
	padding-right: 24px;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

.green-audio-player.player-accessible .controls:hover, .green-audio-player.player-accessible .download:hover, .green-audio-player.player-accessible .play-pause-btn:hover, .green-audio-player.player-accessible .volume__button:hover, .green-audio-player.player-accessible .volume__controls:hover {
	outline: 1px dotted #999;
}

.green-audio-player img, .green-audio-player svg {
	display: block;
}

.green-audio-player .holder {
	position: relative;
}

.green-audio-player .holder .loading .loading__spinner {
	position: absolute;
	left: -3px;
	bottom: 2px;
	width: 16px;
	height: 16px;
	border: 2px solid #b0b0b0;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: spin 0.4s linear infinite;
	animation: spin 0.4s linear infinite;
}

.green-audio-player .holder .play-pause-btn {
	visibility: hidden;
	cursor: pointer;
	outline: none;
}

.green-audio-player .holder .play-pause-btn:focus {
	outline: none;
}

.green-audio-player .slider {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	background-color: #d8d8d8;
	cursor: pointer;
	position: relative;
}

.green-audio-player .slider .gap-progress {
	background-color: #44bfa3;
	border-radius: inherit;
	position: absolute;
	pointer-events: none;
}

.green-audio-player .slider .gap-progress .pin {
	height: 16px;
	width: 16px;
	border-radius: 8px;
	background-color: #44bfa3;
	position: absolute;
	pointer-events: all;
	-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}

.green-audio-player .slider .gap-progress .pin:after {
	content: "";
	display: block;
	background: transparent;
	width: 200%;
	height: 200%;
	margin-left: -50%;
	margin-top: -50%;
	border-radius: 50%;
}

.green-audio-player .controls {
	font-family: Roboto, sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #55606e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 15px;
	margin-right: 15px;
	outline: none;
}

.green-audio-player .controls .controls__slider {
	margin-left: 16px;
	margin-right: 16px;
	border-radius: 2px;
	height: 4px;
}

.green-audio-player .controls .controls__slider .controls__progress {
	width: 0;
	height: 100%;
}

.green-audio-player .controls .controls__slider .controls__progress .progress__pin {
	right: -8px;
	top: -6px;
}

.green-audio-player .controls span {
	cursor: default;
}

.green-audio-player .controls:focus {
	outline: none;
}

.green-audio-player .volume {
	position: relative;
}

.green-audio-player .volume .volume__button {
	cursor: pointer;
	outline: none;
}

.green-audio-player .volume .volume__button:focus {
	outline: none;
}

.green-audio-player .volume .volume__button.open path {
	fill: #44bfa3;
}

.green-audio-player .volume .volume__controls {
	width: 30px;
	height: 135px;
	background-color: rgba(0, 0, 0, 0.62);
	border-radius: 7px;
	position: absolute;
	left: -3px;
	bottom: 52px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 2;
	outline: none;
}

.green-audio-player .volume .volume__controls .volume__slider {
	margin-top: 12px;
	margin-bottom: 12px;
	width: 6px;
	border-radius: 3px;
}

.green-audio-player .volume .volume__controls .volume__slider .volume__progress {
	bottom: 0;
	height: 100%;
	width: 6px;
}

.green-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
	left: -5px;
	top: -8px;
}

.green-audio-player .volume .volume__controls:focus {
	outline: none;
}

.green-audio-player .volume .volume__controls.hidden {
	display: none;
}

.green-audio-player .volume .volume__controls.top {
	bottom: 52px;
	left: -3px;
}

.green-audio-player .volume .volume__controls.middle {
	bottom: -54px;
	left: 54px;
}

.green-audio-player .volume .volume__controls.bottom {
	bottom: -164px;
	left: -3px;
}

.green-audio-player .download {
	display: none;
	margin-left: 16px;
	cursor: pointer;
	outline: none;
}

.green-audio-player .download:focus, .green-audio-player:focus {
	outline: none;
}

.message__offscreen {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.green-audio-player .slider .gap-progress .pin {
	background-color: #008C9E;
}
.green-audio-player .volume .volume__button.open path {
	fill: #008C9E;
}

.hit-player-audio .download + audio {
	display: none;
}

.green-audio-player .slider .gap-progress {
	background-color: #008C9E;
}

.player-visible [data-template=audio-player] {
	opacity: 1;
}
.player-visible .hit-player-audio + p {
	opacity: 0;
}
.player-visible .show-player path {
	fill: #008C9E;
}

.audio-format {
	flex-direction: column;
}

.hit-player-audio {
	position: absolute;
	opacity: 0;
}

.hit-player-audio + p {
	width: 100%;
}

.item.player-visible .hit-player-audio {
	opacity: 1;
}

.item.player-visible .hit-player-audio + p {
	opacity: 0;
}

.hit-resultbody {
	display: flex !important;
	flex-direction: row;
}

.hit-player-audio {
	display: flex;
	margin-right: 20px;
	width: 50%;
}

.hit-player-audio audio {
	width: 100%;
}

.show-player {
	max-width: 15px;
	margin-left: 10px;
	cursor: pointer;
}

.phone-icon {
	max-width: 18px;
	margin-left: 10px;
}

.show-preview {
	max-width: 15px;
	margin-left: 10px;
	cursor: pointer;
}
.show-preview.active path {
	fill: #008C9E;
}

.row-wrapper {
	display: flex;
	padding-right: 100px;
}

embed {
	position: relative;
	z-index: 1;
}

.onebox .main-row {
	margin-top: 35px;
}
.onebox .main-row:first-of-type {
	margin-top: 10px;
}
.onebox .title-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.onebox .title-wrapper h3:hover img {
	animation: move-left-right 0.8s ease-in infinite;
}
@keyframes move-left-right {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
	100% {
		transform: translateX(0);
	}
}
.onebox .title-wrapper h3 {
	position: relative;
	padding-right: 35px;
}
.onebox .title-wrapper h3 a {
	display: flex;
	flex-direction: column;
	color: black;
	font-weight: normal;
	text-decoration: none !important;
}
.onebox .title-wrapper h3 a img {
	max-width: 20px;
	position: absolute;
	right: 0;
}
.onebox ul li {
	font-size: 17px;
}
.onebox .font-bold {
	font-weight: bold;
}
.onebox .stackable {
	margin-top: 20px;
}
.onebox .titlecolor {
	font-size: 19px;
}
.onebox .inner-row-container {
	display: flex;
	flex-direction: row !important;
	justify-content: space-between;
	/*     * {
	        display: flex;
	        flex-direction: column;
	    } */
}
.onebox .inner-row-container a {
	overflow: hidden;
}
.onebox .inner-row-container a:hover .tooltip {
	opacity: 1;
}
.onebox .inner-row-container a .tooltip {
	position: absolute;
	width: 100%;
	opacity: 0;
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 2px 2px 8px #cccccc;
	width: auto;
	transition: 0.2s ease-in all;
	padding: 0 8px;
	left: 10px;
	max-width: calc(100% - 20px);
}
.onebox .inner-row-container a .truncated-text {
	max-width: calc(100% - 10px);
	word-break: break-word;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-right: 10px;
	display: block;
}
.onebox .inner-row-container a span:last-of-type {
	display: flex;
	font-weight: normal;
	max-width: 100%;
	margin-right: 0;
	font-size: 14px;
	margin-bottom: 5px;
}
.onebox .inner-row-container a span.parentesi {
	font-size: 14px;
}
.onebox .row-flex {
	display: flex;
	flex-direction: row;
}
.onebox .justify-content-sb {
	justify-content: space-between;
}
.onebox .confidence-wrapper {
	display: flex;
	flex-flow: row;
}
.onebox .w-100 {
	width: 100%;
}
.onebox .chapter {
	font-weight: bold;
	margin-top: 10px;
	font-size: 19px;
}
.onebox .col-75 {
	width: 75%;
}
.onebox .col-100 {
	width: 100%;
}
.onebox .col-25 {
	width: 25%;
}
.onebox .txt-right {
	text-align: right;
}
.onebox .document-title {
	color: #B9B9B9;
}
.onebox .double-row {
	flex-direction: column !important;
}

.title-search {
	text-align: center;
	text-transform: uppercase;
	font-size: 1.6em;
}

.image-serp-wrapper {
	display: flex;
	flex-direction: row;
}
.image-serp-wrapper .left-side, .image-serp-wrapper .right-side {
	display: flex;
	flex-direction: column;
}
.image-serp-wrapper h3 {
	color: #008C9E;
	font-weight: bold;
	font-size: 21px;
}
.image-serp-wrapper .left-side img {
	border-radius: 10px;
	max-width: 300px;
}
.image-serp-wrapper .right-side {
	padding-left: 20px;
	justify-content: space-between;
}
.image-serp-wrapper .right-side .format {
	color: #B9B9B9;
	text-transform: uppercase;
}

.ui.column.grid > [class*="eleven wide computer"].column.image-title, .ui.grid > .column.row > [class*="eleven wide computer"].column.image-title, .ui.grid > .row > [class*="eleven wide computer"].column.image-title, .ui.grid > [class*="eleven wide computer"].column.image-title {
	width: 100% !important;
	border-bottom: 1px solid #B9B9B9;
	padding-bottom: 40px !important;
	padding-left: 0;
}

.doc-border {
	width: 100% !important;
	border-bottom: 1px solid #B9B9B9;
	padding-bottom: 40px !important;
	padding-left: 0;
}

.accordion-content {
	overflow: hidden;
	height: 0;
	transition: 0.35s ease-in all;
}
.accordion-content ul {
	margin: 0;
}

.serp-accordion {
	margin-top: 10px;
}
.serp-accordion p {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.serp-accordion img {
	max-width: 15px;
	margin-right: 5px;
	transition: 0.35s ease-in all;
}
.serp-accordion[data-status=open] img {
	transform: rotate(45deg);
}

.onebox_gdrive .result-with-icon {
	padding-left: 30px;
	position: relative;
}
.onebox_gdrive .result-with-icon .icon {
	max-width: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.onebox_gdrive .result-with-icon span:last-of-type {
	margin-bottom: 0 !important;
}
.onebox_gdrive .inner-row-container {
	display: block;
}
.onebox_gdrive .inner-row-container .truncated-text {
	max-width: calc(70% - 10px) !important;
}
.onebox_gdrive .modifiedTime {
	position: absolute;
	font-size: 10px;
	right: 0;
	font-size: 10px;
	color: #848484;
	font-weight: 200;
	max-width: 30%;
}

.searchMetaWrapper {
	align-items: center;
	display: none !important;
}
.searchMetaWrapper.show {
	display: flex !important;
}
.searchMetaWrapper #searchMeta {
	padding: 0;
	height: 40px;
	margin-top: 20px;
	background-color: #F6F6FA;
	border: none;
	padding-left: 10px;
	width: 50%;
}
.searchMetaWrapper .rapidSearchList {
	position: absolute;
	top: 0;
	transform: translateY(40px);
	list-style: none;
	background-color: white;
	z-index: 9;
	padding: 0;
	min-width: 200px;
	border-radius: 5px;
	left: 30px;
}
.searchMetaWrapper .genericList {
	list-style: none;
	background-color: white;
	z-index: 9;
	padding: 0;
	position: absolute;
	min-width: 200px;
	border-radius: 5px;
	box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
	top: 0;
	transform: translateY(40px);
	left: 30px;
	opacity: 0;
}
.searchMetaWrapper .genericList li {
	padding: 5px;
	cursor: pointer;
	transition: 0.35s ease-in all;
}
.searchMetaWrapper .genericList li:hover {
	background-color: #eeeeee;
}
.searchMetaWrapper .selected-elem-row {
	width: 50%;
	display: flex;
	margin-top: 20px;
	margin-left: 20px;
}

.chips {
	padding: 10px;
	background-color: #F6F6FA;
	border-radius: 200px;
	cursor: pointer;
	font-size: 13px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	margin: 0 10px 10px 0;
}
.chips span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 250px;
}
.chips svg {
	min-width: 10px;
	max-width: 10px;
	margin-left: 10px;
}

.selected-meta-list {
	display: flex;
}

.show-filter {
	position: absolute;
	right: 30px;
	width: 18px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}
.show-filter path {
	fill: #808080;
}
.show-filter.active path {
	fill: #008c9e;
}

.hide {
	display: none !important;
}

body {
	margin: auto;
}

.image-element__wrap {
	display: flex;
	flex-direction: row;
	max-width: 800px;
	text-align: center;
}
.image-element__wrap p {
	text-transform: uppercase;
	font-weight: 500;
	max-width: 140px;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.image-element__wrap {
		flex-direction: column;
	}
}
@media screen and (min-width: 768px) {
	.image-element__wrap .image-element {
		display: flex;
		flex-direction: column;
	}
	.image-element__wrap .image-element img {
		height: auto;
		max-width: 100%;
	}
}
.image-element__wrap .image-element img {
	height: 100px;
	width: auto;
}

.confidence-wrapper {
	display: flex;
	align-items: center;
	margin-left: 10px;
	margin-right: 30px;
}
.confidence-wrapper img {
	margin-right: 10px;
	max-width: 20px;
}
.confidence-wrapper p {
	font-weight: bold;
	font-size: 19px;
}
.confidence-wrapper .color-red {
	color: #D10C0C;
}
.confidence-wrapper .color-yellow {
	color: #FFBB00;
}
.confidence-wrapper .color-green {
	color: #06A639;
}

.suggestion-wrapper {
	display: block;
	text-align: left;
	padding: 15px;
	margin-top: 0;
	display: none;
}
.suggestion-wrapper spinner {
	display: none;
}

.flex-div {
	display: flex;
}

.q-color {
	color: #008CAA;
}

.search-divider {
	border-bottom: 1px solid #008CAA;
	margin-left: 10px;
	height: 15px;
	width: -webkit-fill-available;
}

.suggestion-data-container {
	gap: 15px;
	display: none;
	grid-template-columns: 33% 33% 31%;
}

.suggestion-spinner {
	animation: rotate 2s linear infinite;
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	width: 50px;
	height: 50px;
	display: none;
	height: 50vh;
}
.suggestion-spinner .path {
	stroke: #93bfec;
	stroke-linecap: round;
	animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}
	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}
.break-text {
	word-break: break-all;
}

.suggestion-title {
	font-weight: 600;
}

.chronology-box {
	display: flex;
	margin: 20px;
}
.chronology-box .chronology-elem {
	margin-right: 30px;
}

.element-preview {
	width: 33%;
	float: left;
}

.searchAsYou-container {
	height: 40vh;
	overflow: auto;
}

.hit-resulttitle {
	display: flex;
	align-items: center;
}
.hit-resulttitle .document-sentence-img {
	max-width: 50px;
}