.zee-video-record-ui {
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0px;
	left: 0px;
	position: absolute;
	pointer-events: none !important;
}

.zee-video-record-button {
	width: 100px;
	height: 100px;
	overflow: hidden;
	bottom: 5%;
	position: absolute;
	left: 50%;
	margin-left: -50px;
	transition: transform 0.2s;
	border-radius: 50%;
	box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
	-webkit-user-select: none;
  	-webkit-touch-callout: none;
	pointer-events: auto;
}

.zee-video-record-circle {
	position: absolute;
	top: 15px;
	left: 15px;
	bottom: 15px;
	right: 15px;
	border-radius: 100%;
	background-color: white;
	box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
}

.zee-video-record-ring {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 100%;
	background: conic-gradient(red 0%, white 0);

	-webkit-mask: radial-gradient(40px, #0000 98%, #000);
	mask: radial-gradient(40px, #0000 98%, #000);
}

.zee-video-recording {
	transform: scale(1.3);
}

.zee-video-record-review {
	width: 100%;
	height: 100%;
	background-color: white;
	display: flex;
    flex-direction: column;
	padding-top: var(--safe-area-inset-top, 0px);
	padding-bottom: var(--safe-area-inset-bottom, 0px);
	box-sizing: border-box;
}

.zee-video-record-review-video-container {
	position: relative;
	flex-grow: 1;
	margin: 24px;
}

#zee-video-record-review-video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.zee-video-record-review-buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: center;
	padding-bottom: 24px;
	gap: 48px;
}

#zee-video-record-review-close {
	padding: 24px;
}

.zee-video-record-audio-button {
	bottom: 5%;
	position: absolute;
	left: 25%;
	margin-left: -50px;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background: none;
    border: none;
    outline: none;
	pointer-events: auto;
	width: 100px;
	height: 100px;
}

#zee-video-record-audio-on {
	display: none;
}

#zee-video-record-audio-off {
	display: block;
}

.zee-video-record-audio-on #zee-video-record-audio-on {
	display: block;
}

.zee-video-record-audio-on #zee-video-record-audio-off {
	display: none;
}

.zee-video-record-ui svg {
	fill: white;
}

#zee-video-record-review-image {
	width: 100%;
    height: 100%;
	position: absolute;
	top: 0;
	left: 0;
    object-fit: contain;
}

.zee-video-record-help {
	width: 200px;
	overflow: hidden;
	bottom: calc(5% + 124px);
	position: absolute;
	left: 50%;
	margin-left: -100px;
	text-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
	color: white;
	font-family: sans-serif;
	text-transform: uppercase;
	text-align: center;
	line-height: 24px;
	transition: opacity 0.2s;
}