@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
:root {
	--txtColor: #202020;
	--gradientBgMoz: -moz-linear-gradient(-45deg,  #2f8ea4 0%, #094c5b 100%);
	--gradientBgWebkit: -webkit-linear-gradient(-45deg,  #2f8ea4 0%,#094c5b 100%);
	--gradientBg: linear-gradient(135deg,  #2f8ea4 0%,#094c5b 100%);
	--gradientBgMs: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f8ea4', endColorstr='#094c5b',GradientType=1 );
	--primaryColor: #296E6B;
	--secondaryColor: #4F82E8;
	--greenColor: #5ADC78;
	--redColor: #F24D4D;
}

html {
	height:100%;
}
body {
	background: #f9ffff;
	background: -moz-linear-gradient(-45deg,  #f9ffff 0%, #fff9f9 100%);
	background: -webkit-linear-gradient(-45deg,  #f9ffff 0%,#fff9f9 100%);
	background: linear-gradient(135deg,  #f9ffff 0%,#fff9f9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9ffff', endColorstr='#fff9f9',GradientType=1 );
	color: var(--txtColor);
	font-family: 'Montserrat', sans-serif;
	height: 100%;
}
.container {
	max-width: 1700px;
}
.page {
	height: 100%;
	display: none;
}
.page.active {
	display: block;
}
.inner-content {
	padding-top: 200px;
}

/* transitions */
.transition-3s {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}
.transition-5s {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
/* button */
::-webkit-scrollbar-button {
    background: var(--primaryColor);
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
	border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}
/* Track */
::-webkit-scrollbar-track {
    background: #ddd;
}
/* Corner */
::-webkit-scrollbar-corner {
    background: #999;
}
/* Resizer */
::-webkit-resizer {
    background: #111;
}

/* buttons */
.btn {
	border: none;
	border-radius: 5px;
	font-size: 0.875rem;
	font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 0.375rem 1.875rem;
	margin: 0;
	width: 100%;
	height: 60px;
}
.btn-sm {
	width: auto;
	height: 40px;
}
.btn-primary {
	background:var(--gradientBg);
	background:var(--gradientBgMoz);
	background:var(--gradientBgWebkit);
	filter:var(--gradientBgMs);
	color: #ffffff;
}
.btn-primary svg path {
	fill:#ffffff;
}
.btn-secondary,
.btn-secondary:focus {
	background-color: #ffffff;
	color: var(--txtColor);
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.10);
}
.btn-secondary:hover {
	background:var(--gradientBg);
	background:var(--gradientBgMoz);
	background:var(--gradientBgWebkit);
	filter:var(--gradientBgMs);
	color: #ffffff;
}
.btn-secondary:hover svg path {
	fill:#ffffff;
}
.btn-check:focus+.btn,
.btn:focus {
	box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}
.btn-danger {
	background: rgb(190,36,36);
	background: -moz-linear-gradient(-45deg,  rgba(190,36,36,1) 0%, rgba(242,77,77,1) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(190,36,36,1) 0%,rgba(242,77,77,1) 100%);
	background: linear-gradient(135deg,  rgba(190,36,36,1) 0%,rgba(242,77,77,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#be2424', endColorstr='#f24d4d',GradientType=1 );
}

/* table */
.table thead th {
	padding: 20px;
	font-size: 1rem;
	font-weight: 600;
}
.table tbody tr {
	vertical-align: middle;
}
.table tbody td {
	padding: 15px 20px;
	font-size: 0.85rem;
	font-weight: 500;
}
.table tbody tr:hover td {
	background-color: #efefef;
	--bs-table-accent-bg: #efefef;
}
.table tbody td .btn-sm {
	width: 115px;
    padding: 0.375rem;
	font-size: 0.75rem;
}

/* header */
.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	padding: 40px;
	z-index: 1000;
}
.header .dropdown-menu {
	border: 1px solid #efefef;
	box-shadow: -5px 5px 30px 0 rgb(0, 0, 0, 0.1);
	position: absolute;
	left: auto;
	right: 0;
}
.header .dropdown-menu .dropdown-item {
	font-size: 0.85rem;
	font-weight: 500;
}
.header .navbar-brand {
	margin-right: 40px;	
}
.navbar .nav-item {
	margin: 0 25px;
	position: relative;
}
.navbar .nav-item:not(.dropdown):hover .nav-link:before,
.navbar .nav-item:not(.dropdown) .nav-link.active:before {
	content: '';
	background-color: rgba(41,110,107,0.06);
	position: absolute;
	left: -15px;
	top: -5px;
	right: -15px;
	bottom: -5px;
	border-radius: 30px;
}
.navbar .nav-item .nav-link {
	font-size: 1rem;
	font-weight: 600;
}
.navbar .nav-item:not(.dropdown):hover .nav-link,
.navbar .nav-item:not(.dropdown) .nav-link.active {
	color: var(--primaryColor);
}

/* sidebar */
.sidebar {
	position: fixed;
	left: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	background-color: #ffffff;
	box-shadow: 0 10px 50px 0 rgba(0,0,0,0);
	z-index: 10000;
	padding: 50px;
}
.sidebar.active {
	left: 0;
	box-shadow: 0 10px 50px 0 rgba(0,0,0,0.15);
}
.sidebar .close-sidebar {
	position: absolute;
	top: 20px;
	right: 20px;
}
.sidebar h2 {
	color: var(--txtColor);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dfdfdf;
}
.sidebar .nav-link {
	color: var(--txtColor);
	font-size: 1rem;
	display: block;
	border-bottom: 1px solid #efefef;
	padding: 20px 0;
	font-weight: 600;
	text-decoration: none;
}
.sidebar a:hover {
	background-color: #fbfbfb;
}

/* headings */
h2.section-heading {
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 70px;
}
h2.section-heading:before {
	content: '';
	width: 120px;
	height: 120px;
	border-radius: 50%;
	position: absolute;
	left: -60px;
    top: -35px;
	background-color: rgba(0,0,0,0.08);
}
h2.section-heading:after {
	content: '';
	width: 60px;
	height: 3px;
	border-radius: 10px;
	display: block;
	margin-top: 15px;
	background-color: var(--txtColor);
}

/* dashboard */
.db-main {
	display: flex;
	height: 100%;
}
.db-main > div {
	flex-basis: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.db-lft {
	background: rgb(249,255,255);
	background: -moz-linear-gradient(-45deg,  rgba(249,255,255,1) 0%, rgba(255,249,249,1) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(249,255,255,1) 0%,rgba(255,249,249,1) 100%);
	background: linear-gradient(135deg,  rgba(249,255,255,1) 0%,rgba(255,249,249,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9ffff', endColorstr='#fff9f9',GradientType=1 );
}
.db-rgt {
	background-color: #FBF2E0;
	background-image: url("../img/people.png");
	background-repeat: no-repeat;
	background-position: bottom right -260px;
	background-size: auto 600px;
}
.db-main .db-content {
	max-width: 600px;
	width: 100%;
	height: 360px;
}
.db-content .separate-txt {
	margin: 50px 0;
	text-align: center;
}
.db-main .db-lft .db-content h2::before {
	background-color: rgba(81,81,81, 0.14);
}
.db-main .db-rgt .db-content h2::before {
	background-color: rgba(190,161,102, 0.14);
}
.db-main .db-rgt .action-btn {
	max-width: 250px;
}
.db-main .db-rgt .action-btn a {
	margin: 0 0 30px 0;
}

/* content box */
.content-box {
	border: 1px solid #EEEEEE;
	box-shadow: 0 3px 50px 0 rgba(0,0,0,0.04);
	padding: 50px;
	background-color: #ffffff;
}
.content-box .cb-title {
	font-size: 1.5rem;
	text-transform: uppercase;
	margin-bottom: 40px;
}
.content-box .cb-title::after {
	content: '';
	width: 60px;
	height: 3px;
	display: block;
	margin-top: 15px;
	background-color: var(--txtColor);
}

/* form elements */
.input-wrap {
	position: relative;
}
.input-wrap label {
    color: #B4B4B4;
    font-size: 0.75rem;
	font-weight: 600;
    text-transform: uppercase;
}
.input-wrap .form-control,
.input-wrap .form-select {
	border-radius: 0;
    height: 40px;
    padding: 0.75rem 0 1.2rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txtColor);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #202020;
}
.input-wrap .form-select {
	padding: 0.3rem 2.5rem 0.4rem 0;
	background-image:url("../img/arrow-dropdown.svg");
	background-position: right 0 center;
	background-size: 12px 8px;
}
.input-wrap textarea.form-control{
	min-height: 40px;
    height: auto;
}
.form-control:focus,
.form-select:focus {
	box-shadow: none;
}
.input-wrap .link {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primaryColor);
	position: absolute;
	top: 0;
	right: 0;
	text-decoration: none;
}
.input-wrap .password-control {
	position: absolute;
	right: 0;
	bottom: 10px;
}
.input-wrap .password-control .hide-password,
.input-wrap .password-control.show .show-password {
	display: block;
}
.input-wrap .password-control .show-password,
.input-wrap .password-control.show .hide-password {
	display: none;
}
.input-wrap-rounded {
	position: relative;
}
.input-wrap-rounded .form-control {
	border-radius: 30px;
    height: 60px;
    padding: 0.375rem 1rem 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--txtColor);
    border: 1px solid #dfdfdf;
}
.input-wrap-rounded .btn-primary {
	width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    right: 4px;
	padding: 0;
}
.input-action-wrap {
	position: relative;
	padding-right: 180px;
}
.input-action-wrap label {
	position: absolute;
    top: -8px;
    color: #B4B4B4;
    font-size: 0.75rem;
	font-weight: 600;
    text-transform: uppercase;
}
.input-action-wrap .form-control {
	border-radius: 0;
    height: 60px;
    padding: 0.375rem 0 0.375rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txtColor);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #202020;
}
.input-action-wrap .form-control:focus {
	box-shadow: none;
}
.input-action-wrap .btn-join {
	width: 150px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
}
.input-action-link-wrap {
	position: relative;
	padding-right: 150px;
}
.input-action-link-wrap .form-control {
	border-radius: 0;
    height: 60px;
    padding: 0.375rem 1rem 0.375rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
	border: none;
    border-bottom: 2px solid #97CFDD;
	background-color: transparent;
}
.input-action-link-wrap .btn-join-room {
	width: 120px;
    height: 60px;
    position: absolute;
    top: 0px;
    right: 4px;
	padding: 0;
}
.input-msg-wrap {
	position: relative;
}
.input-msg-wrap .form-control {
	border-radius: 30px;
    height: 50px;
    padding: 0.375rem 1rem 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--txtColor);
    border: 1px solid #dfdfdf;
}
.input-msg-wrap .emoji {
	position: absolute;
	top: 13px;
    right: 95px;
}
.input-msg-wrap .attach {
	position: absolute;
	top: 12px;
    right: 60px;
}
.input-msg-wrap .action-btn {
	background:var(--gradientBg);
	background:var(--gradientBgMoz);
	background:var(--gradientBgWebkit);
	filter:var(--gradientBgMs);
	width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 4px;
    right: 4px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}
.radio-btn-wrap .form-check {
	min-height: 2.5rem;
	padding-left: 2.5em;
}
.radio-btn-wrap .form-check-input {
	width: 1.875rem;
	height: 1.875rem;
	border: 2px solid var(--txtColor);
	margin-left: -2.5em;
}
.radio-btn-wrap .form-check-label {
	font-size: 1rem;
	font-weight: 600;
	position: relative;
    top: 6px;
}
.radio-btn-wrap .form-check-input:checked {
	border-color: var(--primaryColor);
	background-color: #ffffff;
}
.radio-btn-wrap .form-check-input:checked + .form-check-label {
	color: var(--primaryColor);
}
.radio-btn-wrap .form-check-input:checked + .form-check-label::before {
	content: '';
	width: 16px;
	height: 16px;
	background-color: var(--primaryColor);
	position: absolute;
	left: -33px;
	top: 5px;
	border-radius: 50%;
}

/* call setup */
.call-setup-container {
	background-color: #242424;
	height: 100%;
	position: relative;
	z-index: 10000;
}
.call-setup-container .camera-preview {
	width: 300px;
	height: 200px;
	border-radius: 10px;
	background-color: #000000;
	position: absolute;
	right: 50px;
	top: 50px;
}
.csc-main {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width:400px;
	height: 300px;
	text-align: center;
}
.csc-main .logo-w {
	width: 90px;
	margin-bottom: 50px;
}
.csc-main .control-btn-wrap {
	margin-top: 30px;
}

/* calling */
.calling-container {
	overflow: hidden;
	height: 100%;
    position: relative;
	z-index: 1000;
}
.calling-wrap {
	background: transparent;
	height: 100%;
	position: relative;
	width: calc(100% - 400px);
}
.calling-wrap.bg-dark {
	background: #242424;
}
.calling-wrap.sharing {
	background: url("../img/bg-google.jpg") no-repeat 0 0 / cover;
}
.calling-wrap .minimize-screen {
	background-color: #636363;
	width: 250px;
	height: 150px;
	border-radius: 10px;
	position: absolute;
	top: 20px;
	right: 20px;
	display: none;
	background: url(../img/bg-calling.jpg) no-repeat 0 0 / cover;
	opacity: 0.3;
	overflow: hidden;
}
.calling-wrap .minimize-screen:hover {
	opacity: 1;
}
.calling-wrap .minimize-screen.active {
	display: block;
}
.calling-wrap .minimize-screen .videobox__video {
	position: static;
    min-width: auto;
    min-height: auto;
    width: 100%;
}
.calling-wrap .host-name-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(0,0,0,0.30);
	position: absolute;
	left: 0;
	top: 30px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	text-decoration: none;
}
.host-name-wrap span {
	font-size: 1rem;
	font-weight: 500;
	margin: 0 10px;
	color: #ffffff;
}
.control-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -90px;
    padding: 30px 50px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 );
}
.control-wrap.show {
	bottom: 0;
}
.control-wrap .remaining-time {
	position: absolute;
	left: 50px;
	bottom: 50px;
	color: #C2C2C2;
}
.control-wrap span {
	font-size: .85rem;
	font-weight: 500;
}
.control-wrap span strong {
	color: #ffffff;
	font-weight: 600;
}
.control-btn-wrap {
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.control-btn-wrap > a,
.control-btn-wrap .sub-menu {
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 15px;
}
.control-btn-wrap > a svg path {
	fill:var(--greenColor);
}
.control-btn-wrap > a:hover {
	background-color: #77F144;
}
.control-btn-wrap > a:hover svg path {
	fill:#ffffff;
}
.control-btn-wrap > a.disable {
	background-color: #ffffff;
	position: relative;
}
.control-btn-wrap > a.disable:after {
	content: '';
	width: 30px;
    height: 2px;
    background-color: var(--redColor);
    position: absolute;
    transform: rotate(45deg);
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -15px;
    border-radius: 5px;
}
.control-btn-wrap > a.disable svg path {
	fill:#b3b3b3;
}
.control-btn-wrap > a.active{
	background-color:var(--redColor);
}
.control-btn-wrap > a.active svg path {
	fill:#ffffff;
}
.control-btn-wrap .sub-menu:hover svg circle,
.control-btn-wrap .sub-menu:hover .show svg circle {
	fill:var(--greenColor);
}
.sub-menu .dropdown-menu {
	border: none;
    box-shadow: -3px 3px 15px 0 rgb(0 0 0 / 10%);
    border-radius: 12px;
	transform: translate(27px, -72px) !important;
}
.sub-menu .dropdown-menu .dropdown-item:hover,
.sub-menu .dropdown-menu .dropdown-item:active{
	background-color: #ffffff;
	color: var(--redColor);
}
.sub-menu .dropdown-menu .dropdown-item span {
	font-size: .75rem;
	font-weight: 600;
	margin-left: 10px;
}
.sub-menu .dropdown-menu .dropdown-item.icon-record:hover svg g,
.sub-menu .dropdown-menu .dropdown-item.icon-record:active svg g {
	stroke: var(--redColor);
}
.sub-menu .dropdown-menu .dropdown-item:hover svg path,
.sub-menu .dropdown-menu .dropdown-item:active svg path,
.sub-menu .dropdown-menu .dropdown-item.icon-record:hover svg g circle,
.sub-menu .dropdown-menu .dropdown-item.icon-record:active svg g circle,
.sub-menu .dropdown-menu .dropdown-item.icon-record:hover svg circle,
.sub-menu .dropdown-menu .dropdown-item.icon-record:active svg circle{
	fill:var(--redColor);
}
.sub-menu .dropdown-menu .dropdown-item.icon-record svg g circle + circle,
.sub-menu .dropdown-menu .dropdown-item.icon-record:hover svg g circle + circle,
.sub-menu .dropdown-menu .dropdown-item.icon-record:active svg g circle + circle{
	fill: #ffffff;
}
.participant-sidebar {
	width: 400px;
	padding: 20px;
	position: fixed;
    background-color: #ffffff;
    top: 0;
    right: 0;
	bottom: 0;
}
.participant-sidebar.hide-sidebar {
	right: -400px;
}
.participant-sidebar.hide-sidebar .sidebar-control svg {
	transform: rotate(180deg);
}
.participant-sidebar h2 {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #E9E9E9;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.participant-sidebar h2 span {
	font-size: .75rem;
	font-weight: 600;
}
.sidebar-control {
	background: url("../img/sidebar-control.png") no-repeat 0 0 / 100%;
	width: 62px;
	height: 99px;
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
}
.badge {
	background-color: var(--primaryColor);
}

/*  */
.ps-content nav{
	z-index: 9;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	color: white;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	text-align: center;
}
.ps-content .tabs{
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 0;
}
.ps-content .tabs>li {
	transition-duration: .25s;
	display: table-cell;
	list-style: none;
	text-align: center;
	padding: 0 0 5px 0;
	position: relative;
	cursor: pointer;
	border-bottom: 2px solid #ffffff;
	font-size: 1rem;
	font-weight: 600;
	color: var(--txtColor);
}
.ps-content .tabs>li.active {
	color: var(--primaryColor);
	border-bottom-color: var(--primaryColor);
}
.ps-content .tabs>li.active:before {
	transition-duration: .5s;
	background-color: white;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.ps-content .tab__content {
	background-color: white;
	position: relative;
	width: 100%;
	border-radius: 5px;
}
.ps-content .tab__content>li {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	list-style: none;
}
.ps-content .tab__content>li .content__wrapper {
	text-align: center;
	border-radius: 5px;
	width: 100%;
	margin-top: 10px;
	background-color: white;
}
.p-list {
	overflow: auto;
	margin-top: 15px;
	height: calc(100vh - 200px);
}
.p-list .p-item {
	border-radius: 10px;
	position: relative;
	margin-bottom: 20px;
	background-color: #202020;
}
.p-list .p-item img.disable {
	opacity: 0;
}
.p-list .p-item:last-child {
	margin-bottom: 0;
}
.p-list .p-item .p-item-action {
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	border-radius: 10px;
}
.p-item-action .set-cohost {
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59ffffff', endColorstr='#00ffffff',GradientType=1 );
	font-size: 0.75rem;
	font-weight: 600;
	color: #ffffff;
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 50px 5px 5px;
    display: flex;
    align-items: center;
    border-radius: 5px;
	cursor: pointer;
}
.p-item-action .set-cohost input[type="radio"]{
	width: 15px;
    height: 15px;
	accent-color: var(--primaryColor);
}
.p-item-action h3 {
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59ffffff', endColorstr='#00ffffff',GradientType=1 );
	font-size: 0.75rem;
	font-weight: 600;
	padding: 5px 10px;
	color: #ffffff;
	flex-basis: calc(100% - 80px);
    text-align: left;
	border-radius: 5px;
	margin-bottom: 0;
}
.p-item-action a {
	flex-basis: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.p-item-action a:hover {
	background-color: rgba(255,255,255,0.4);
}
.p-item-action a.disable svg path {
	fill:#dfdfdf;
}
.p-item-action a.disable:after {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--redColor);
    position: absolute;
    transform: rotate(45deg);
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -10px;
    border-radius: 5px;
}
.pm-list {
	overflow: auto;
	margin-top: 15px;
	height: calc(100vh - 200px);
}
.pm-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #E8E8E8;
	padding-bottom: 15px;
	margin-bottom: 15px;
	cursor: pointer;
}
.pm-item .pm-img {
	width: 40px;
	height: 40px;
	position: relative;
	background-color: #484848;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pm-item .pm-img:after {
	content: '';
	width: 15px;
	height: 15px;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	border: 2px solid #ffffff;
	background-color: var(--greenColor);
}
.pm-content {
	display: flex;
	align-items: center;
}
.pm-content .pm-txt {
	padding-left: 15px;
    text-align: left;
}
.pm-content .pm-txt h3 {
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0;
}
.pm-content .pm-txt p {
	font-size: 0.75rem;
	font-weight: 500;
	margin-bottom: 0;
	color: #858585;
}
.pm-item .pm-time {
	font-size: 0.688rem;
	font-weight: 500;
	color: #AFAFAF;
}

/* pm chat */
.pm-chat .pmc-head {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #E8E8E8;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.pm-chat .pmc-head .link-back {
	cursor: pointer;
}
.pm-chat .pmc-head .pmc-img {
	width: 40px;
	height: 40px;
	position: relative;
	background-color: #484848;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 15px;
}
.pm-chat .pmc-head .pmc-img:after {
	content: '';
	width: 15px;
	height: 15px;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	border: 2px solid #ffffff;
	background-color: var(--greenColor);
}
.pm-chat .pmc-head h3 {
	font-size: 0.85rem;
	font-weight: 600;
}
.pm-chat .pmc-body {
	height: calc(100vh - 290px);
	overflow: auto;
	margin-bottom: 20px;
}
.pm-chat .pmc-body .pmcb-bx {
	display: flex;
	margin-bottom: 20px;
}
.pm-chat .pmc-body .pmcb-bx img {
	align-self: flex-start;
	width: 40px;
    height: 40px;
}
.pm-chat .pmc-body .pmcb-bx .pmcbt {
	margin-left: 12px;
    text-align: left;
}
.pm-chat .pmc-body .pmcb-bx .pmcbt .pmcbt-inner {
	padding: 10px;
	border-radius: 15px 15px 15px 0;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 6%);
	display: inline-block;
}
.pm-chat .pmc-body .pmcb-bx .pmcb-txt {
	text-align: right;
}
.pm-chat .pmc-body .pmcb-bx .pmcbt p {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
}
.pm-chat .pmc-body .pmcb-bx .pmcb-txt span {
	font-size: 0.688rem;
	color: #9A9A9A;
	margin-top: 5px;
}
.pm-chat .pmc-body .pmcb-bx-rgt {
	flex-direction: row-reverse;
}
.pm-chat .pmc-body .pmcb-bx-rgt .pmcbt {
	margin-left: 0;
	margin-right: 12px;
}
.pm-chat .pmc-body .pmcb-bx-rgt .pmcb-txt {
	text-align: left;
}
.pm-chat .pmc-foot {
	
}

/* toast */
.toast {
	position: fixed;
    z-index: 1001;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
.toast.show {
	top: 50px;
}

.btn-mute-all,
.btn-disable-all {
	position: relative;
}
.btn-disable-all.disable:after,
.btn-mute-all.disable:after {
    content: '';
    width: 15px;
    height: 1px;
    background-color: var(--redColor);
    position: absolute;
    transform: rotate(45deg);
    left: 36px;
    top: 50%;
    margin: -1px 0 0 -10px;
    border-radius: 5px;
}
.btn-disable-all.disable svg path,
.btn-mute-all.disable svg path {
	fill:#dfdfdf;
}

/* footer */
.footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px;
	display: flex;
    justify-content: space-between;
	z-index: 1000;
}
.footer .social {
	display: flex;
}
.footer .social a {
	margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}
.footer .rgt-content p {
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0;
	text-shadow: -1px 1px 3px rgba(0,0,0,0.60);
}

/* modal */
.modal-default .modal-header .btn-close {
	position: absolute;
    top: 20px;
    right: 20px;
	background: none;
	display: flex;
    justify-content: center;
    align-items: center;
}
.modal-default .modal-header,
.modal-default .modal-footer {
	border: none;
	padding: 50px;
}
.modal-default .modal-body {
	padding: 0 50px;
}
.modal-default .modal-header .modal-title {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
}
.modal-default .modal-footer .btn-w-primary {
	width: 100%;
	height: 60px;
	border: none;
	font-size: 1rem;
	font-weight: 600;
}
.sc-result {
	margin-top: 50px;
	width:100%;
}

/* user form wrap */
.user-form-wrap {
	height: 100%;
}
.user-form-wrap .user-form-content {
	width: 100%;
    max-width: 400px;
}
.user-form-wrap .intro-txt {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 120px;
	text-align: center;
}
.user-form-wrap p {
	font-size: 0.75rem;
	font-weight: 500;
}
.user-form-wrap p span {
	color:#c5c5c5;
}
.user-form-wrap p a,
.link-primary {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primaryColor);
	text-decoration: none;
}

/* page-personal-details */
.page-personal-details .profile-pic-bg {
	border-radius: 50%;
}

/* page feedback */
.page-feedback {
	background: rgb(47,142,164);
	background: -moz-linear-gradient(-45deg,  rgba(47,142,164,1) 0%, rgba(9,76,91,1) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(47,142,164,1) 0%,rgba(9,76,91,1) 100%);
	background: linear-gradient(135deg,  rgba(47,142,164,1) 0%,rgba(9,76,91,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f8ea4', endColorstr='#094c5b',GradientType=1 );
}
.page-feedback:after {
	content: '';
	background-image: url("../img/feedback-stars.png");
    background-position: center;
    background-repeat: no-repeat;
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: 0;
}
.page-feedback > div {
	z-index: 1;
}
.page-feedback .inner-content {
	width: 100%;
	max-width: 600px;
	text-align: center;
	padding: 0;
}
.page-feedback .inner-content img {
	width: 100px;
}
.page-feedback .inner-content h3 {
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 50px 0 30px 0;
}
.feedback-wrap {
	background-color: #ffffff;
	border-radius: 15px;
	padding: 50px;
}
.feedback-wrap h5 {
	font-size: 1rem;
	margin-bottom: 25px;
}
.feedback-wrap svg {
	margin: 0 10px;
}
.feedback-wrap svg.active path {
	fill:#FFA000;
}
.feedback-wrap .rating-txt {
	max-width: 330px;
    margin: 15px auto 0;
}
.feedback-wrap .rating-txt span {
	font-size: 0.85rem;
	font-weight: 600;
}
.page-feedback .inner-content .link {
	color: #ffffff;
	margin-top: 30px;
	font-size: 1rem;
	font-weight: 600;
	display: inline-block;
    text-decoration: none;
}

/* video section */
.videocontainer__wrapper {
	position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 400px;
}
.videobox__video {
	transform: scaleX(-1);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    min-height: 100%;
    min-width: calc(100% - 400px);
}
.f-width.videocontainer__wrapper {
	right: 0;
}
.f-width .videobox__video {
	min-width: 100%;
}
.videocontainer__wrapper.join {
	z-index: 10000;
    left: auto;
    right: 50px;
    top: 50px;
    width: 300px;
    overflow: hidden;
    bottom: auto;
    height: 200px;
    border-radius: 10px;
}
.videocontainer__wrapper.join .videobox__video {
	position: static;
	width:100%;
}