/*Desktop client classes*/

.pipeRecordRTC{
	position: relative;
	text-align:center;
}

.pipeRecordRTC span{
	position:absolute;
	margin: 0;
	left:50%;
	top:50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	font-family:sans-serif;
	font-size:18px;
	cursor: pointer;
}

.pipeStartUploading {
	position: absolute;
	left: -99999rem
}

.pipeCustomUpload{
	display:inline-block;
	font-family:sans-serif;
	color:#334455;
	font-size:18px;
	cursor: pointer;
}

.pipe-upload-label{
	margin-bottom:0px;
	font-weight:normal;
	cursor: pointer;
}

.pipe-upload-label label:hover{
	color:#556677;
}

.pipeUploadAnother{
	position:absolute;
	margin: 0;
	left:50%;
	top:57%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	font-family:sans-serif;
	font-size:12px;
	text-decoration:underline;
	cursor: pointer;
}

.pipeBtn{
	display:inline-block;
	cursor:pointer;
	opacity: 1;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}

.pipeBtn:hover{
	opacity: .8;
}

.pipeBtnOff{
	display:inline-block;
	opacity:0.1
}

.pipeBtnOff > button {
	cursor: default !important;
}

.pipeTimer{
	position: absolute;
	text-align: center;
	font-family: sans-serif;
	font-size: 12px;
	top: 90%;
	background-color: rgb(228 64 44 / 100%);
	padding-inline: 7px;
	padding-bottom: 4px;
	padding-top: 5px;
	width: fit-content;
	min-width: 60px;
	left: 50%;
	translate: -50%;
	border-radius: 14px;
	color: rgb(255 255 255 / 100%);
	transition: all 0.15s ease-in-out;
	z-index: 1;
}

.pipeTimer:hover {
	cursor: pointer;
	background-color: rgb(47 47 47 / 78%);
}

.pipeTimer > span {
	color: rgb(255 255 255 / 69%);
    font-weight: bold;
}

.pipeTimerIcon {
	transition: all 0.2s ease-in-out;
}

.pipeTimerIcon > div {
	width: 8.7px;
    height: 8.7px;
    display: inline-block;
	margin-right: 3px;
	animation: .3s growIn ease;
}

.pipeRecIcon {
	background-color: red;
	border-radius: 50%;
}

.pipePlayIcon {
	box-sizing: border-box;
    border-style: solid;
    border-color: transparent transparent transparent white;
    border-width: 4.5px 0px 4.5px 9px;
}

.pipePauseIcon {
	border-style: double;
	border-width: 0px 8px 0px 0px;
	border-color: white;
	width: 0 !important;
	height: 8.5px !important;
}

@keyframes growIn {
	from {
		width: 0;
		height: 0;
		border-width: 0;
	}
	to {
		/*  */
	}
}

.pipeMicContainer, .pipeCamContainer{
	display:flex;
	float:right;
	position: relative;
	height: 30px;
	justify-content: center;
	align-items: center;
}

.pipeCamContainerNoMenu{
	display:inline-block;
	position:absolute;
	bottom:5px;
	right:70px;
	z-index: 1;
}

.pipeMicContainer > div {
	vertical-align: initial;
    display: inline-block;
}

.pipeMicIconNoMenu{
	display:inline-block;
	position:absolute;
	bottom:5px;
	right:5px;
	z-index: 1;
}

.pipeMeter-container{
	margin:3px;
	margin-left: 0;
	display: inline-block;
	background: -webkit-linear-gradient(#e21d1d 4%, #ff9d00 12%, #fff200 22%, #f2ea00 37%, #52b152 59%, #52b152 59%, #008a00 79%);
	width: 5px;
	height: 24px;
	display: hidden;
}

.pipeMeter{
	display: inline-block;
	position: absolute;
	width:5px;
	height:24px;
	background: black;
}

.pipeNormal{
	background-color:black;
}

.pipeMirrored{
	background-color:black;
	transform: rotateY(180deg);
	-webkit-transform:rotateY(180deg);
	-moz-transform:rotateY(180deg);
}

.pipeRotate90{
	background-color:black;
  -webkit-transform:rotate(90deg);
  transform: rotate(90deg);
}

.pipeFlipVertically{
	background-color:black;
  -webkit-transform:rotateZ(180deg);
  transform:rotateZ(180deg);
}

.pipeSmallNormal{
	position: absolute;
	left:0px;
	top:0px;
	z-index:1;
}

.pipeSmallMirrored{
	position: absolute;
	left:0px;
	top:0px;
	z-index:1;
	transform:scale(-1, 1);
	-webkit-transform:scale(-1, 1);
	-moz-transform:scale(-1, 1);
}

.pipeMsgOverlay{
	position: absolute;
	width:30%;
	height:50px;
	background-color:#0f0f0f;
	opacity: 0.6;
	border-radius:10px;
	z-index:2;
}

.pipeMsgOverlay div{
	text-align:center;
	vertical-align: middle;
	font-family:sans-serif;
	color:#ffffff;
	font-size:18px;
}

.pipeTopMessage{
  position:absolute;
  width:30%;
  height:15px;
  background-color:#0f0f0f;
  opacity: 0.6;
  border-bottom-left-radius:3px;
  border-bottom-right-radius:3px;
  z-index:1
}

.pipeTopMessage div {
  text-align:center;
  vertical-align: middle;
  font-family:sans-serif;
  color:#ffffff;
  font-size:14px;
}

.pipeError{
	position:relative;
	background-color:#363738;
	display:none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.pipeError p{
	margin: 0;
	text-align:center;
	font-family:sans-serif;
	font-size:18px;
	color:#ffffff;
}

.pipeError p strong{
	font-family:sans-serif;
	font-size:18px;
	color:#ffffff;
	font-weight: bold;
}

.pipeErrorBtn {
	background-color: #FE2701;
	color: #ffffff;
	padding-inline: 15px;
	padding-block: 7px;
	border: none;
	font-size: 18px;
	border-radius: 10px;
	cursor: pointer;
}

.getFlash{
	position:relative;
	background-color:#363738;
}

.getFlash p{
	text-decoration:underline;
	position:absolute;
	margin: 0;
	left:50%;
	top:50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	text-align:center;
	font-family:sans-serif;
	color:#ffffff;
}

.pipeInputSettingsButton, .pipeInputSettingsButtonDisabled {
	width: 40px;
    height: 30px;
    text-align: center;
	border-radius: 0.35rem;
	cursor: pointer;
	padding-right: 9px;
	position: relative;
	margin-right: 3px;
	box-sizing: content-box;
}

.pipeInputSettingsButton::after, .pipeInputSettingsButtonDisabled::after {
	scale: 0.7;
    content: "";
    display: inline-block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    top: 40%;
    margin-left: 3px;
	transition: all .2s ease-in-out;
}

.pipeInputSettingsButton:hover, .pipeInputSettingsButton.selected {
	filter: brightness(150%);
}

.pipeInputSettingsButton:hover::after {
	scale: 0.8;
}

.pipeInputSettingsButtonDisabled {
	opacity: 0.7;
	cursor: auto;
}

.pipeNotification {
	position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #23c552;
    top: 0px;
    display: block;
	z-index: 2;
	box-sizing: content-box;
}

.pipeNotification.audio {
	right: 28px;
}

.pipeNotification.video {
	right: 11px;
}

.pipeMediaSelectMenu.hidden {
	display: none;
}

.pipeMediaSelectMenu {
	font-family: sans-serif;
    user-select: none;
    position: absolute;
    border-radius: 0.35rem;
    font-size: 13.6px !important;
    right: 5px;
    bottom: 5px;
    min-width: 150px;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 70px);
    overflow: auto;
    z-index: 1;
	opacity: .9;
	translate: 0px -40px;
	animation: openMediaSelectMenu .2s ease-in-out;
}

@keyframes openMediaSelectMenu {
	from {
		opacity: 0;
	}
	to {
		opacity: .9;
	}
}

@media only screen and (max-width: 600px) {
	.pipeMediaSelectMenu {
		right: 0;
		width: 100%;
		max-width: 100%;
	}

	.pipeInputSettingsButton:hover {
		filter: brightness(100%);
	}

	.pipeInputSettingsButton.selected {
		filter: brightness(150%);
	}
}

.pipeMediaMenuCateg {
	text-align: left;
	padding-inline: 12px;
	padding-bottom: 1px;
	box-shadow: 0px 13px 0px -12px #32343aba;
}

.pipeMediaMenuCateg:last-child {
	box-shadow: none;
}	

.pipeMediaMenuTitle {
	font-weight: bold;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.pipeMediaMenuTitle > p {
	margin-bottom: 0;
	margin-top: 11px;
	opacity: .75;
}

.pipeMediaMenuTitle > div {
	display: flex;
	align-items: center;
}

.pipeMediaMenuList {
	margin: 0;
  	padding: 0;
}

.pipeMediaMenuList > li {
	list-style: none;
	padding-inline: 30px;
	padding-block: 2.5px;
	color: #2a2b2d;
	cursor: pointer;
	margin-block: 2px;
	border-radius: 3px;
}

.pipeMediaMenuList > li:last-child {
	margin-bottom: 6px;
}

@media only screen and (min-width: 600px) {
	.pipeMediaMenuList > li:hover {
		color: #000000;
		background-color: #0000000d;
	}
}

.pipeMediaMenuList > li.selected {
	color: #000000;
	text-shadow:0px 0px 1px black;
}

.pipeMediaMenuList > li.selected::before {
	content: "";
	display: inline-block;
	transform: rotate(45deg);
	height: 8px;
	width: 4px;
	border-bottom: 3px solid #78b13f;
	border-right: 3px solid #78b13f;
	margin-right: 11px;
	margin-left: -18px;
	box-sizing: content-box;
}

.pipeMediaMenuList > li.disconnected {
	color: #0000006a;
	cursor: auto;
	pointer-events: none;
}

.pipeMediaMenuEffects {
	display: flex;
    flex-direction: column;
    gap: 5px;
    padding-block: 5px;
    padding-left: 30px;
}

.pipeMediaMenuEffects > div {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-block: 2px;
}

.pipeEffectSwitch {
  margin: 0;
  cursor: pointer;
  position: relative;
}

.pipeEffectSwitch input {
  display: none;
}

.pipeEffectSwitch input + div {
  width: 40px;
  height: 16px;
  border: 1px solid #d1d7e3;
  background: #d1d7e3;
  border-radius: 10px;
  vertical-align: top;
  position: relative;
  display: inline-block;
  user-select: none;
  transition: all 0.4s ease;
  box-sizing: content-box;
}

.pipeEffectSwitch input + div:before {
  content: "";
  float: left;
  width: 12px;
  height: 12px;
  background: #fff;
  pointer-events: none;
  margin-top: 2px;
  margin-left: 4px;
  border-radius: inherit;
  transition: all 0.4s ease 0s;
  box-sizing: content-box;
}

.pipeEffectSwitch input + div:after {
  content: "";
  top: -1px;
  left: 0px;
  width: 14px;
  height: 14px;
  border: 3px solid transparent;
  border-top-color: #78b13f;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  box-sizing: content-box;
}

.pipeEffectSwitch input:checked + div {
  background: #78b13f;
  border: 1px solid #528421;
}

.pipeEffectSwitch input:checked + div:before {
  transform: translate(20px, 0);
}
.pipeEffectSwitch.load input + div {
  width: 20px;
  margin: 0 10px;
}

.pipeEffectSwitch.load input + div:after {
  opacity: 1;
  animation: switchRotate 0.9s infinite linear;
  animation-delay: 0.2s;
}

.pipeEffectSwitch:hover input:disabled + div {
  border-color: #d1d7e3;
}

.pipeEffectSwitch:hover input:checked + div {
  background: #528421;
}

@keyframes switchRotate {
  0%, 15% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(290deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation */
.pipeCircleSpinner {
	position: absolute;
	width: 15px;
	height: 15px;
	translate: -23px 0px;
	border: 3px solid #000000;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}
	
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 

.pipePoweredBy {
	color: #ffffff;
	position: absolute;
	width: 100%;
	bottom: 0px;
	text-align: center;
	text-decoration: underline !important;
	font-family: sans-serif;
	font-size: 10px;
	cursor: pointer;
	z-index: 1;
	margin-bottom: 16px;
	left: 0;
}

.pipeMiddleCentered {
	position:absolute; 
	left:50%;
	top:50%;
	translate: -50% -50%;
}

.pipeSvgIcon {
	enable-background:new 0 0 512 512; 
	vertical-align: middle;
}

.micContainer {
	vertical-align:initial;
	display:inline-block;
}

.pipeBrowserLink {
	color: rgb(51, 68, 85);
}

.pipeContextMenu {
	color: #eee;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 13px;
	line-height: 1.3;
	background: rgba(28,28,28,.9);
	padding: 8px 0;
	flex-direction: column;
	gap: 5px;
	border-radius: 2px;
	-webkit-font-smoothing: antialiased;
	z-index: 1;
}

.pipeContextMenu > option:hover {
	background-color: rgba(255,255,255,.1);
	cursor: pointer;
}

.pipeContextMenu > option {
	padding: 2px 7px;
}

.statsForNerds {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 400px;
	word-break: break-all;
	background: rgba(28,28,28,.8);
	border-radius: 4px;
	color: #fff;
	font-family: Arial,Helvetica,sans-serif;
	-webkit-font-smoothing: antialiased;
	font-size: 11px;
	padding: 10px;
	line-height: 1.3 !important;
	z-index: 1;
}

.statsForNerdsLinesWrapper>div>div {
	display: inline-block;
	font-weight: 500;
	padding-right: 8px;
	text-align: right;
	width: 130px;
}

.statsForNerdsLinesWrapper>div>span {
	text-align: left;
	width: 60%;
	display: inline-table;
}

/* Countdown timer */
.pipeCountdownCircleContainer {
	border-radius: 50%;
	overflow: hidden;
	background-color: #0f0f0f70;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.pipeCountdownCircleContainer > span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 65px;
	font-weight: bold;
	font-family:sans-serif;
}

.pipeCountdownCircleContainer > svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	transform-origin: center;
}

.pipeCountdownCircleContainer > svg > circle {
	fill: transparent;
	stroke-width: 200px;
	stroke-dasharray: 628;
	stroke-dashoffset: 628;
	stroke: #0000007a;
	animation: pipeClockwiseCountdown 1s linear;
}

@keyframes pipeClockwiseCountdown {
	0% {
	  stroke-dashoffset: 628;
	}
	100% {
	  stroke-dashoffset: 0;
	}
}

/* Playback bar */

.pipePlaybackBarBorder > div, .pipePlaybackBarBorderMobile > div {
	transition: height ease-in .2s;
}

.pipePlaybackBarBorder, .pipePlaybackBarBorderMobile {
	display: flex;
	align-items: flex-end;
}

.pipePlaybackBarBorder {
	height: 10px;
	transition: background-color ease-in .25s;
	z-index: 1;
}

.pipePlaybackBarBorder:hover > div {
	height: 10px !important;
	z-index: 2;
}

.pipePlaybackBarBorder:hover {
	background-color: rgb(255 255 255 / 50%);
}

.pipePlaybackBarBorderMobile {
	height: 50%;
}

.pipeMobFriendlyIconBtn {
	position:absolute;
	height:30px;
	bottom:0;
	display:flex;
	align-items:center;
	padding:0px;
	margin:0px;
	border: 0;
	margin-left: 5px;
	background: transparent;
	cursor: pointer;
}

.pipeMobFriendlyIconBtn > span {
	margin-top: 2px;
	margin-left: 2px;
}

/*Mobile client classes*/

.pipeFileInput{
	text-align:center;
	display:inline-block;
	background:-webkit-linear-gradient(top,#f9f9f9,#e3e3e3);
	border:1px solid #999;
	border-radius:3px;
	padding:10px;
	outline:0;
	-webkit-user-select:none;
}

.pipeMobileRecorder{
	text-align:center;
	width:100%;
	margin:10px 0px;
}

.pipeDisplayedMessage {
	text-align:center;
	font-family:sans-serif;
	font-size:18px;
}

@media screen and (max-width: 400px) {
	/* Remove label from button */
	.pipeMobFriendlyIconBtn > span {
		display: none;
	}

	/* Remove button styling */
	.pipeMobFriendlyIconBtn {
		width: 30px;
		height: 30px;
		border: none;
		background: none;
		padding: 0;
		margin: 0;
		outline: none;
		cursor: pointer;
	}
}

/* Class to display a red "BETA" message next to a feature (left top) */
.pipeBetaFeature {
	padding-right: 35px;
}

.pipeBetaFeature::after {
	content: "BETA";
	position: absolute;
	margin-left: 5px;
	background-color: #D9514D;
	color: white;
	font-weight: 700;
	padding: 2px 4px;
	font-size: 8px;
	border-radius: 3px;
}

/* Close button X */
.pipeCloseButton {
	position: absolute;
	width: 20px;
	height: 20px;
}

.pipeCloseButton:hover {
	color: orangered;
}

.pipeCloseButton::after {
	content: '×';
  position: absolute;
  top: -5px;
	right: 1px;
  font-size: 20px;
}

/* Style for the PIP "Start Camera" rectangle */
.pipeStartCamRectangle {
	position: absolute;
	display: flex;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
	right: 20px;
	bottom: 20px;
	border-radius: 3px;
	opacity: 0.7;
	transition: all 250ms;
	user-select: none;
	font-family: sans-serif;
}

.pipeStartCamRectangle:hover {
	opacity: 1;
}

.pipeStartCamRectangle>p{
	margin: 0;
	text-align: center;
}

/* Style for the PIP Video element */
.pipe-pip-video-container {
  cursor: move;
}

/* Style for the resize handles */
.pipe-resize-handle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  z-index: 1;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease; /* Smooth opacity transition */
}

/* Show resize handles on hover */
.pipe-pip-video-container:hover .pipe-resize-handle {
  opacity: 0.8;
}

/* Positioning for resize handles */
.pipe-pip-top-left {
  top: -5px;
  left: -5px;
  cursor: nwse-resize; /* Diagonal resize cursor */
}

.pipe-pip-top-right {
  top: -5px;
  right: -5px;
  cursor: nesw-resize; /* Diagonal resize cursor */
}

.pipe-pip-bottom-left {
  bottom: -5px;
  left: -5px;
  cursor: nesw-resize; /* Diagonal resize cursor */
}

.pipe-pip-bottom-right {
  bottom: -5px;
  right: -5px;
  cursor: nwse-resize; /* Diagonal resize cursor */
}

.pipeColorPicker {
	display: flex;
	align-items: center;
	justify-content: left;
	margin-block: 2px;
}

.pipeColorPickerOption {
	width: 18px;
	height: 18px;
	border-radius: 2px;
	cursor: pointer;
	transition: all 250ms;
	position: relative;
}

.pipeColorPickerOption.pipeSelected {
	opacity: 0.8;
}

.pipeColorPickerOption.pipeSelected::after {
	content: "";
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%) rotate(45deg);
	height: 8px;
	width: 4px;
	border-bottom: 3px solid #78b13f;
	border-right: 3px solid #78b13f;
}

.pipeRainbowBackground {
	background: linear-gradient(
		90deg,
		rgba(255, 0, 0, 1) 0%,
		rgba(255, 154, 0, 1) 10%,
		rgba(208, 222, 33, 1) 20%,
		rgba(79, 220, 74, 1) 30%,
		rgba(63, 218, 216, 1) 40%,
		rgba(47, 201, 226, 1) 50%,
		rgba(28, 127, 238, 1) 60%,
		rgba(95, 21, 242, 1) 70%,
		rgba(186, 12, 248, 1) 80%,
		rgba(251, 7, 217, 1) 90%,
		rgba(255, 0, 0, 1) 100%
	);
}

.pipeAudioVisualizer {
	display: flex;
	gap: 15px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 50%);
	height: 50%;
}

.pipeAudioMenuVisualizer {
	display: flex !important;
	flex-direction: row;
	float: right;
	position: relative;
	gap: 2px;
	height: 30px;
	width: 20px;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
}

.pipeWaveWrapper,
.pipeWaveMenuWrapper {
	height: 80%;
	display: flex;
	align-items: center;
	border-radius: 5px;
	overflow: hidden;
}

.pipeWave,
.pipeMenuWave {
	width: 20px;
	height: 10px; /* Initial height */
	background-color: #4caf50;
	border-radius: 5px; /* Slightly rounded corners */
	position: relative;
	transition: all 0.3s ease;
}

.pipeMenuWave {
	height: 5px;
	width: 3px;
}

.pipeAlertBox {
  background-color: rgb(234, 200, 84);
  padding: 10px;
  display: flex;
  justify-content: center;
  font-family: sans-serif;
	position: absolute;
	bottom: 30px;
	box-sizing: border-box;
	width: 100%;
	z-index: 1;
	text-align: center;
}


/* simplebar */

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* end simplebar */


@font-face {
    font-family: 'f_ptbold';
    src: url('fonts/f-bold-webfont.eot');
    src: url('fonts/f-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/f-bold-webfont.woff2') format('woff2'),
         url('fonts/f-bold-webfont.woff') format('woff'),
         url('fonts/f-bold-webfont.ttf') format('truetype'),
         url('fonts/f-bold-webfont.svg#futura_ptbold') format('svg');
    font-weight: normal;
    font-style: normal;

}



@font-face {
    font-family: 'f_pt_condmedium';
    src: url('fonts/f-cond-medium-webfont.eot');
    src: url('fonts/f-cond-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/f-cond-medium-webfont.woff2') format('woff2'),
         url('fonts/f-cond-medium-webfont.woff') format('woff'),
         url('fonts/f-cond-medium-webfont.ttf') format('truetype'),
         url('fonts/f-cond-medium-webfont.svg#futura_pt_condmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}


/* css */

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  html {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    left: 0;
  }
}


body {
    max-width:480px;
	width:100%;
    margin:0 auto;
    padding:0;
	background-color:#e8cfb9;

	width:100%;
	margin:0 auto;
	
}


@media (min-width: 480px) {

    body {
		background: #E8CEB8;
		background: linear-gradient(1deg,rgba(232, 206, 184, 1) 0%, rgba(254, 237, 220, 1) 25%, rgba(255, 247, 239, 1) 50%, rgba(254, 237, 220, 1) 75%, rgba(232, 206, 184, 1) 100%);
        -webkit-box-shadow: 0 0 6px -1px #6f3821;
        box-shadow: 0 0 36px 10px rgba(0,0,0,0.3);
        margin: 0 auto;
        /*border-left: 43px solid #fff;*/
        /*border-right: 43px solid #fff;*/
		
      }
      
}



.light-bg {
background-color:#fae7d3;	
}

/* buttons */

.btn-outlined {
	background-color:transparent;
	background:transparent;
	border:3px solid #8b513e;
	color:#8b513e;
	font-family:f_pt_condmedium;
	font-size:1.4rem;
	text-transform:uppercase;
	line-height:1;
	padding:15px 25px 15px 25px;
	min-width:240px;
	width:auto;
	border-radius:30px;
	box-shadow:none;
	font-weight:600;
	transition: opacity .15s ease-in-out;
	transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out,box-shadow .3s ease-in-out;
	-webkit-tap-highlight-color: transparent;
	 touch-action: manipulation;
	user-select: none;
}

.btn-outlined:disabled {
	border:2px solid #8b513e;
	color:#8b513e;
	opacity:0.3;
	
}

.btn-outlined:hover,
.btn-outlined:active{
	transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out,box-shadow .3s ease-in-out;
	background-color:#e4412c;
	background:#e4412c;
	color:#fff;
	border-color:#e4412c;
}

.btn-outlined:focus,
.btn-outlined:focus-visible {
	background-color:transparent;
	border:3px solid #8b513e;
	color:#8b513e;
}

.btn-outlined:focus,
.btn-outlined:active,
.btn-outlined:focus-visible {
  background-color: transparent !important;
  color: #8b513e !important;
  border-color: #8b513e !important;
  outline: none;
}

section {
    max-width: 900px;
    margin: 0 auto;
  }


/** typo **/

.text-red {
color:#e71e25;
}

.text-brown {
color:#8b513e;
}

h1 {
	font-family:'f_ptbold';
	text-transform:uppercase;
	font-size:2rem;
	line-height:1;
	color:#8b513e;
	margin-bottom:0px;
	
}


h2 {

	font-family:'f_pt_condmedium';
	font-size:1.5rem;
	color:#8b513e;
}


.fmedium-font {
    font-family:'f_pt_condmedium';
    }

.fbold-font {
    font-family:'f_ptbold';
}

p {
    font-family:'f_pt_condmedium';
    font-size:1rem;
}

.display-8 {
    letter-spacing:-0.25px;
}

.display-1 {
    letter-spacing:-1px!important;
}

.display-1 span {
    letter-spacing:-0.5px!important;
}

.display-5 {
    letter-spacing:-1px!important;
}

.letter-spacing-025p {
    letter-spacing:0.25px;
}

.letter-spacing-05p {
    letter-spacing:0.5px;
}


.letter-spacing-1p {
    letter-spacing:1px;
}

/** custom styles **/

:root {
  --vh: 100%;
}

#content-wrapper {
	/*height: calc(var(--vh, 1vh) * 100);*/
  min-height: 100vh;
  height: 100%;
}


#home-screen {
	
    /*background-color:#e5ccb5;*/
    /*background-image: url("images/solid_pillars_background.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;*/
	width:100%;
	margin:0 auto;
	
}



/* home */

.pillars-bg {

}

#home-view {
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:1;
	/* min-height:610px; /* v2 */
	min-height:640px;
	padding-top:100px;
	transition: opacity .5s ease-in-out;
}

.top-logo {
	
	max-width:181px;
	width:100%;
}


.footer-copyright {
  font-family: 'f_pt_condmedium';
  font-size: 0.8rem;
  color: #8b513e;
}

/* modal error */

.modal-content {
	background-color:#e5ccb5;
}

.denied-modal-text {
  font-size: 1.4rem;
  color: #8b513e;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
}

#cameraModal .modal-body {
	background-color:#fae6d3;
	color:#8b513e;
}

/* terms */

#terms-view {
	opacity:0;
	z-index:0;
	overflow:hidden;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	/*bottom:0;*/
	/* min-height: 600px; /* v2 */
	min-height:640px;
	height:100vh;
	/*top: 60%; 
    left: 50%; 
    transform: translate(-50%,-50%);*/ 
	padding-top:100px;
	transition: opacity .6s ease-in-out;
}

.pillars-bg {
	background-color:#e5ccb5;
    background-image: url("images/solid_pillars_background-long.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
	width:100%;
	height:100%;
}

.pillars-bg-modal {
	background-color:#e5ccb5;
    background-image: url("images/solid_pillars_background-long.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
	width:100%;
	height:100%;
}


.terms-text {
	font-size:0.9rem;
	width:100%;
	text-align:justify;
	color:#8b513e;
	}

.terms-logo {
	
	max-width:131px;
}

#terms-scrollable {
font-family:'f_pt_condmedium';
max-width:85%;
height: 29vh;
width:100%;
margin-top: 15px;
}

#terms-scrollable .terms-text {
line-height: 1.1rem;
}

#terms-scrollable h4 {
	font-size:1.1rem;
	width:100%;
	text-align:left;
	color:#8b513e;
}

#terms-scrollable h5 {
	font-size:1rem;
	width:100%;
	text-align:left;
	color:#8b513e;
}

#terms-scrollable ul {
	list-style-type: none;
	padding-left: 1.4rem;	
}


#terms-scrollable li {
	font-size:0.9rem;
	width:100%;
	text-align:left;
	color:#8b513e;
	margin-bottom:5px;
}

		
.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #8b513e;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 1!important;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-offset {
  padding-right: 20px;
  padding-left: 20px;
}	

/* record */

.shutter-top-wrapper {
  position: absolute;
  top: 1vh;
  left: 0;
  right: 0;
  margin:0 auto;
  z-index: 10000000;
}

#controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin:
0 auto;
  width: 100%;
  text-align: center;
}

#sayit {
  width: 100%;
  position:relative;
}

#sayit:before {
	position: absolute;
	content:'';
    background-image: url("images/video-canvas-gradient-top-layer.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:9999999;
	/*background-color:rgba(0,0,0,0.5);*/
	display:none;
}

#pipeRecordRTC-sayit {
  background-color: transparent;
}

.pipeNormal {
  background-color: transparent;
}

.record-controls {
	position:absolute;
	bottom:20px;
	z-index:8;
}

#record-view {
	opacity:0;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:-1;
	background: #E8CEB8;
	padding:0;
	min-height:610px;
	height: calc(var(--vh, 1vh) * 100);  
	transition: opacity .5s ease-in-out;
}

.record-top-bg {
	background-image: url("images/record-top-bg-6.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 640px;
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:2;
}

.record-btn-bg {
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	z-index:4
}

.stop-btn-wrapper {
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	z-index:20;
	bottom:0;
}

.record-top-logo {
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	z-index:0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}


.pipeError {
  position: relative;
  background-color: transparent;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pipeMsgOverlay {
  position: absolute;
  max-width: 80%;
  width:auto;
  height: 50px;
  background-color: #8b513e;
  opacity: 0.8;
  border-radius:10px;
  z-index: 2;
  padding:5px;
  border-radius:50px;
}

.pipeMsgOverlay div {
  text-align: center;
  vertical-align: middle;
  font-family: 'f_pt_condmedium';
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.5px;
}

#pipeProgressBar-sayit {
  height: 5px !important;
  background:#e4412c !important;
}

.progress-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999999999;
  height: 20px;
  width: 100%;
}



#log {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #000;
  background-color: rgba(255,255,255,0.2);
  font-size: 0.6rem;
  height: 100px;
  overflow-y: auto;
}

#pipeClickPowered-sayit {
  display: none;
}


/* form */


#hidden-form-wrapper {
	opacity:0;
	z-index:-9;
	height:1px!important;
}

.modal-body {
background: #E8CEB8;
background: linear-gradient(1deg,rgba(232, 206, 184, 1) 0%, rgba(254, 237, 220, 1) 25%, rgba(255, 247, 239, 1) 50%, rgba(254, 237, 220, 1) 75%, rgba(232, 206, 184, 1) 100%);
}


.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E8CEB8;
  background: linear-gradient(1deg,rgba(232, 206, 184, 1) 0%, rgba(254, 237, 220, 1) 25%, rgba(255, 247, 239, 1) 50%, rgba(254, 237, 220, 1) 75%, rgba(232, 206, 184, 1) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none; /* ukryty domyślnie */
}

.spinner {
  animation: rotate 1s linear infinite;
  width: 50px;
  height: 50px;
}

.spinner .path {
  stroke: #8b513e; /* niebieski Androidowy */
  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;
  }
}


.fullscreen-section {
 /* height: calc(var(--vh, 1vh) * 100);*/
}

/* confirmation*/

#bottom-btn-wrapper {
	bottom:5vh;
	z-index:2;
}

#confirmation-view {
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:7;
	padding:0;
	min-height:760px;
	background-color: #e5ccb5;
	background-image: url("images/solid_pillars_background-long.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 10px;
	/*height: calc(var(--vh, 1vh) * 100);*/
}

#confirmation-view .main-title {
	font-family:'f_ptbold';
	text-transform:uppercase;
	font-size:1.8rem;
	line-height:1;
	color:#8b513e;
	margin-bottom:0px;
	letter-spacing: -0.25px;
}

#confirmation-view .main-subtitle {
	font-family:'f_ptbold';
	text-transform:uppercase;
	font-size:1.5rem;
	line-height:1;
	color:#8b513e;
	margin-bottom:0px;
	letter-spacing: -0.25px;
}


#confirmation-view h2 {

	font-family:'f_pt_condmedium';
	font-weight:600;
	font-size:1.2rem;
	color:#8b513e;
}

.confirmation-label {
	max-width:257.5px;
	
}


.password-letter {
	font-family:'f_ptbold';
	text-transform:uppercase;
	font-size:1.8rem;	
	line-height: 50px;
	color:#fff;
	text-align:center;
	width:50px;
	height:50px;
	background-color:#e4412c;
	border-radius:50%;
	margin:2px;
}



#pipeVideoPlayback-sayit {
  transition: none !important;
}


/* testowy button */


#pipeVideoInput-sayit {
  /*background-color: rgba(209,20,20,0.2);*/ /* test video from camera bg */
}

/* countdown */


.pipeCountdownCircleContainer {
  border-radius: 0;
  overflow: hidden;
  background: #E8CEB8;
  background: linear-gradient(1deg, rgba(232, 206, 184, 1) 0%, rgba(232, 206, 184, 1) 16%, rgba(254, 237, 220, 1) 25%, rgba(255, 247, 239, 1) 50%, rgba(254, 237, 220, 1) 75%, rgba(232, 206, 184, 1) 89%, rgba(232, 206, 184, 1) 100%);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: 100% !important;
}

.pipeCountdownCircleContainer > span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #8b513e;
  font-size: 14rem;
  font-family: 'f_ptbold';
  font-weight:normal;
}

/* end */

#pipeSwitchCamContainer-sayit {
  opacity: 0;
}

.statsForNerds {
  position: absolute;
  left: 0;
  right:0;
  margin:0 auto;
  top: 10px;
  width: 100%;
  word-break: break-all;
  background:rgba(28,28,28,.8);
  border-radius:4px;
  color: #fff;
  font-family: Arial,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 11px;
  padding: 10px;
  line-height: 1.3 !important;
  z-index: 1;
}

.statsForNerdsLinesWrapper {
  width: 100%;
}

.red-timer-wrapper {
	font-family:'f_pt_condmedium';
	width:27vw;
	height:30px;
	color:#fff;
	background-color:#e4412c;
	font-size:1rem;
	border-radius:30px;
	text-align:center;
	line-height:30px;
	letter-spacing:initial;
}

#timer-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 99;
  bottom: 10px;
  width: 250px;
  margin: 0 auto;
  transition: opacity 0.15s ease-in-out;
}

#pipeCounter-sayit {
  font-family:'f_pt_condmedium';
  background-color: #e4412c;
  color: #fff;
  padding:5px 20px 5px 20px;
  line-height:1;
  border-radius:30px;
  font-size: 1.2rem;
  min-width: 150px;
  text-align: center;
  z-index:2;
  margin-left: 40px;
  margin-right: 40px;
}

#record-icon-wrapper {
  height: 18px;
}

#record-icon-wrapper-sayit {
  position: absolute;
  right: 0;
  top: 5px;
}

.pipeRecIcon {
  background-color: rgb(228 65 44 / 100%);
  border-radius: 50%;
  animation: pulseLoop 1.2s ease-in-out infinite;
}

.pipeTimer{
	position:relative;
	font-family:'f_pt_condmedium';
	text-align: center;
	font-size: 17px;
	background-color: rgb(228 65 44 / 100%);
	padding-inline: 7px;
	padding-bottom: 4px;
	padding-top: 5px;
	min-width: 170px;
	border-radius: 30px;
	color: rgb(255 255 255 / 100%);
	transition: all 0.15s ease-in-out;
	z-index: 1;
}

.pipeTimer {
  position: absolute;
  text-align: center;
  font-family: sans-serif;
  font-size: 12px;
  top: 90%;
  background-color: rgb(228 65 44 / 100%);
  padding-inline:7px;
  padding-bottom: 4px;
  padding-top: 5px;
  width: fit-content;
  min-width: 60px;
  left: 50%;
  translate: -50%;
  border-radius:14px;
  color: rgb(255 255 255 / 100%);
  transition: all 0.15s ease-in-out;
  z-index: 1;
}

.pipeTimer > span {
  color: rgb(255 255 255 / 100%);
  font-weight: bold;
}

.pipeTimerIcon > div {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 3px;
  animation: pulseLoop 0.7s infinite;
}

@keyframes pulseLoop {
  0% {
    
    opacity: 1;
  }
  25% {
    
    opacity: 0.7;
  }  
  50% {
    
    opacity: 0;
  }
  75% {
    
    opacity: 0.7;
  }  
  100% {
    
    opacity: 1;
  }
}

.pipePauseIcon {
  border-style:double;
  border-width:0px 10px 0px 0px;
  border-color:#8b513e;
  width: 0 !important;
  height: 15px !important;
  opacity:0;
}

.red-button {
	font-family:'f_pt_condmedium';
	width:27vw;
	height:30px;
	color:#fff;
	background-color:#e4412c;
	font-size:1rem;
	border-radius:30px;
	text-align:center;
	line-height:30px;
	letter-spacing:initial;
	border:none;
	box-shadow:none;
	transition: opacity .9s ease-in-out;
}

.red-button:disabled {
	opacity:0.4;
}

.red-button:hover {
	color:#fff;
	background-color:#8b513e;
}

.review-title-pic {
	max-width:256px;
	width:100%;
}

.shutter-bottom {
	width:100%;
}

.shutter-top-left {
	width:15% /*  720px/110px; */
}

.shutter-top-right {
	width:15% /*  720px/110px; */
}

.shutter-top-center {
	width:70% /*  720px/500px; */
}

.shutter-bottom-left {
	width:15% /*  720px/110px; */
}

.shutter-bottom-right {
	width:15% /*  720px/110px; */
}

.shutter-bottom-center {
	width:70%; /*  720px/500px; */
}

.shutter-bottom-center .btn-outlined {
	min-width: 200px;
	max-width: 90%;
	width: 100%;
}



/* see message */


#see-message-view {	
	opacity:0;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:10;
	background-color: #e8cfb9;
	padding:0;
	min-height:690px;
	padding-top:100px;
	transition: opacity .5s ease-in-out;
}



.circle-input {
  font-family: 'f_ptbold';
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 50px;
  color: #fff;
  text-align: center;
  width: 50px;
  height: 50px;
  border: 3px solid #e4412c;
  background-color: #e4412c;
  border-radius: 50%;
  margin: 2px;
  border:none;
  transition: all 0.2s linear;
  outline:none;
}
.circle-input:focus {
  border: 3px solid #e4412c;
  border-color:#e4412c;
  border-radius: 50%;
  box-shadow:none;
  background-color:#fff;
  color:#000;
  outline:none;
    }
	


#see-message-view .main-title {
	font-family:'f_ptbold';
	text-transform:uppercase;
	font-size:1.7rem;
	line-height:1;
	color:#8b513e;
	margin-bottom:0px;
	letter-spacing: -0.25px;
}	
	
#see-message-view  .main-subtitle {
	font-family:'f_ptbold';
	text-transform:uppercase;
	font-size:1.3rem;
	line-height:1;
	color:#8b513e;
	margin-bottom:0px;
	letter-spacing: -0.25px;
}

#see-message-view h2 {

	font-family:'f_pt_condmedium';
	font-weight:600;
	font-size:1.1rem;
	color:#8b513e;
}

#see-message-view .confirmation-label {
  max-width: 200px;
}

#hidden-form-check-wrapper {
	opacity:0;
	z-index:-1;
	height:1px!important;
}

#gform_2_validation_container {
display:none;	
}

#CheckErrorModal .modal-title  {
 font-size: 1.7rem;
}

#CheckErrorModal #check-error-code-text {
  font-size: 1.9rem;
}

/* player */

#play-view {	
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:-1;
	background: #E8CEB8;
	padding:0;
	/* min-height:610px; /* v2 */
	min-height:640px;
	height: calc(var(--vh, 1vh) * 100);
	transition: opacity .5s ease-in-out;
}

.playback-wrapper {
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	min-height:610px;
	height: auto;
    display: flex;
}

#play-view #bottom-btn-wrapper {
	position:absolute;
	z-index: 3;
}

#play-view .record-top-bg {
	background-image: url("images/record-top-bg-6.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:2;
}

#progressBarFill {
  transition: width 0.2s linear;
}

#playback-intro {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #E8CEB8;
  background: linear-gradient(1deg,rgba(232, 206, 184, 1) 0%, rgba(254, 237, 220, 1) 25%, rgba(255, 247, 239, 1) 50%, rgba(254, 237, 220, 1) 75%, rgba(232, 206, 184, 1) 100%);
}

.intro-small-text {
  font-size: 1.4rem;
  color:#8b513e;
  font-weight:600;
}

.playback-wrapper .main-title {
	font-size:1.8rem
}

.playback-wrapper .main-subtitle {
	font-size:2.3rem;
	
}

/* the end */


#finish-view {
	opacity:1;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	top:0;
	bottom:0;
	z-index:7;
	padding:0;
	min-height:610px;
	background-color: #e5ccb5;
	background-image: url("images/solid_pillars_background-long.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding-top: 140px;
	padding-bottom: 60px;
	/*height: calc(var(--vh, 1vh) * 100);*/
}

/*#finish-view .pillars-bg-modal {
  background-color: #e5ccb5;
  background-image: url("images/solid_pillars_background-long.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 100%;
}*/



#finish-view .intro-small-text {
  font-size: 1.2rem;
  color:#8b513e;
  font-weight:600;
}

#finish-view .main-title {
	font-size:1.7rem
}

#finish-view .main-subtitle {
	font-size:2.1rem;
	
}

#finish-view .terms-logo {
  max-width: 160px;
  width:100%;
}

/* intro anim 

#animation--intro {
	position:fixed;
	width:100%;
	height:100%;
    background: #E8CEB8;
    background: linear-gradient(1deg,rgba(232, 206, 184, 1) 0%, rgba(254, 237, 220, 1) 25%, rgba(255, 247, 239, 1) 50%, rgba(254, 237, 220, 1) 75%, rgba(232, 206, 184, 1) 100%);
	z-index:100;
	display: flex;
	justify-content: center;
	align-items: center;
}

#animation-wrapper {
	position:relative;
	display:flex;
	width:180px;
	position: relative;
	width: 180px;
	height: 180px;
}


#animation--say {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:2
}

#animation--say-top {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:1	
}

#animation--it {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:3
}

#animation--with {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:4
}

#animation--nutella {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:5	
}



#animation--say {
  transform-origin: left center;
  animation: bubbleInLeft 0.6s ease-out forwards;
  opacity:0; 
}

@keyframes bubbleInLeft {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
	opacity: 1;
  }
}

#animation--say-top {
  transform-origin: left center;
  animation: bubbleInLeftTop 0.6s ease-out 0.9s forwards;
  opacity:0; 
}

@keyframes bubbleInLeftTop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
	opacity: 1;
  }
}


#animation--it {
  transform-origin: right center;
  animation: bubbleInRight 0.6s ease-out 0.3s forwards; 
  opacity:0; 
}

@keyframes bubbleInRight {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
	opacity: 1;
  }
}



#animation--with {
  transform-origin: center center;
  animation: bubbleInCenter 0.5s ease-out 0.7s forwards; 
  opacity:0; 
}

@keyframes bubbleInCenter {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.4);
    opacity: 1;
  }
  100% {
    transform: scale(1);
	opacity: 1;
  }
}


#animation--nutella {
  transform-origin: center center;
  animation: bubbleInBottom 0.7s ease-in 1.4s forwards; 
  opacity:0; 
}

@keyframes bubbleInBottom {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
	opacity: 1;
  }
}

*/

.modal-fullscreen .modal-content {
  border: 0;
  border-radius: 0;
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
}

