* {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Open Sans", sans-serif;
	overflow-y: scroll;
	width: 375px;
	height: 100%;
	background-color: #252734;
}

input:focus {
	outline: none;
}

.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 40px 16px 16px 16px;
	align-items: center;
}

.header h1 {
	font-weight: 600;
	font-size: 16px;
	color: #83848b;
	letter-spacing: 0;
	text-align: center;
}

button {
	background-color: transparent;
	border: none;
}

.record-mic {
	position: absolute;
	left: 73%;
	top: 85%;
}

/* ----- record section ------ */

.counter {
	width: 80px;
	height: 80px;
	margin: 40px 0 40px 16px;
}

.seconds-couter {
	font-weight: 600;
	font-size: 24px;
	color: #ffffff;
	letter-spacing: 0;
	padding: 24px;
	height: auto;
	text-align: center;
	background: #fb4445;
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
	border-radius: 1000px;
}

.record-indicator {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background-color: #ffffff;
	padding: 10px 16px;
	border-radius: 8px;
}

.dot01 {
	height: 8px;
	width: 8px;
	background: #fb4445;
	border-radius: 1000px;
	margin-right: 4px;
}
.dot02 {
	height: 8px;
	width: 8px;
	background: rgba(251, 68, 69, 0.5);
	border-radius: 1000px;
	margin-right: 4px;
}
.dot03 {
	height: 8px;
	width: 8px;
	background: rgba(251, 68, 69, 0.25);
	border-radius: 1000px;
}

.dots {
	display: flex;
	flex-direction: row;
	margin-right: 8px;
}

.recording {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 72px;
}
.recording-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
}

.stop-button {
	background-color: none;
	border-radius: 1000px;
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

/* ----- record details ----- */

.audio-record-details {
	border-radius: 8px;
	background-color: #ffffff;
	padding: 16px 16px 8px 16px;
}

.section-divider {
	background: #efefef;
	width: auto;
	height: 1px;
}

.audio-title {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.audio-title input {
	font-weight: 400;
	font-size: 16px;
	color: #484a54;
	letter-spacing: 0;
	width: 270px;
	height: 32px;
	border: none;
}

.audio-title p {
	font-weight: 400;
	font-size: 10px;
	color: #9b9b9b;
	letter-spacing: 0;
	text-align: center;
}

.progress-bar {
	width: 216px;
	height: 8px;
	background: #e6e6e6;
	border-radius: 4px;
}

.record-progress {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	margin-top: 12px;
}

.limit-response {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.limit-response p {
	font-weight: 400;
	font-size: 14px;
	color: #9b9b9b;
	letter-spacing: 0;
	text-align: left;
}

/* toggle swtich start */

.form-switch {
	display: block;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.form-switch i {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 32px;
	background-color: #e6e6e6;
	border-radius: 16px;
	vertical-align: text-bottom;
	transition: all 0.3s linear;
}

.form-switch i::before {
	position: absolute;
	left: 0;
	width: 50px;
	height: 32px;
	background-color: #fff;
	border-radius: 11px;
	transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
	transition: all 0.25s linear;
}

.form-switch i::after {
	content: "";
	position: absolute;
	top: 1px;
	width: 26px;
	height: 26px;
	background-color: #fff;
	border-radius: 100px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
	transform: translate3d(2px, 2px, 0);
	transition: all 0.2s ease-in-out;
}

.form-switch:active i::after {
	width: 28px;
	transform: translate3d(2px, 2px, 0);
}

.form-switch:active input:checked + i::after {
	transform: translate3d(16px, 2px, 0);
}

.form-switch input {
	display: none;
}

.form-switch input:checked + i {
	background-color: #4bd763;
}

.form-switch input:checked + i::before {
	transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
}

.form-switch input:checked + i::after {
	transform: translate3d(22px, 2px, 0);
}

/* toggle swtich end */

/* individual audio post starts */

.individual-audio-post {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 16px 16px;
}

.profile-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.profile-image {
	height: 40px;
}

.name-userid {
	margin-right: 120px;
	margin-left: 8px;
}

.name-userid h1 {
	font-weight: 600;
	font-size: 16px;
	color: #f0f0f1;
	letter-spacing: 0;
}

.name-userid h2 {
	font-weight: 400;
	font-size: 12px;
	color: #83848b;
	letter-spacing: 0;
}

.post-time-stamp p {
	font-weight: 400;
	font-size: 12px;
	color: #83848b;
	letter-spacing: 0;
	text-align: right;
}

.audio-message-title h1 {
	font-weight: 400;
	font-size: 16px;
	color: #f0f0f1;
	line-height: 24px;
	margin-left: 60px;
	margin-bottom: 8px;
}

.play-audio {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-left: 60px;
	margin-top: 8px;
}

.play-audio button img {
	height: 40px;
}

.play-progress-bar {
	background: #333646;
	border-radius: 4px;
	height: 8px;
	width: 180px;
}

.play-audio-timestamp p {
	font-weight: 400;
	font-size: 12px;
	color: #f0f0f1;
	letter-spacing: 0;
	text-align: right;
}

.audio-post-divider {
	height: 1px;
	background: #333646;
	margin-top: 8px;
	margin-bottom: 16px;
}

/* individual audio post ends */

/* stats icons starts */
.stats-icons-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	margin-top: 16px;
}

.icons-stats {
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
	margin-left: 24px;
}

.icons-stats p {
	font-weight: 400;
	font-size: 14px;
	color: #83848b;
	letter-spacing: 0;
	margin-left: 8px;
	align-self: center;
	padding-bottom: 3px;
}
/* stats icons ends */
