/*External stylesheet*/

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');
body{
	font-family: 'Rubik', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #e5e9f3;
}

.wrapper {
	overflow-x: hidden;
}

.loginMain{
	height: 100vh;
	background-size: cover;
	padding-top: 10rem;
}

:focus {
    outline: none;
}

.logo-dv{
	text-align: center;
}

.logo-dv img{
	width: 70%;
}

.login-heading{
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	padding: 10px;
}

.login-heading label{
	font-weight: 400;
}

.form-controls{
	border: 1px solid #ccc;
	height: 40px;
	width: 100%;
	padding: 5px 15px;
	font-weight: 100;
	font-size: 16px;
	transition: all 0.4s;
}

.form-controls:focus{
	border: 1px solid #fce43a;
	outline: none;
	transition: all 0.4s;
}

.btn-login{
	height: 40px;
	padding: 5px 15px;
	width: 100%;
	background-color: #fce43a;
	color: #000;
	border-radius: 1px;
	font-size: 16px;
	transition: all 0.4s;
}

.btn-login:hover{
	color: #fce43a;
	background-color: #000;
	transition: all 0.4s;
}

.login{
	background-color: #f9fafc;
	padding: 20px;
	box-shadow: -2px -2px 7px #ccc;
}

.login a{
	color: #222;
}

/* ---------------------------------------------------
    NAV STYLE
----------------------------------------------------- */

.navbar {
    padding: 10px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    width: calc(100% - 250px);
    left: 250px;
    border-bottom: 1px solid rgb(0 0 0 / 9%);
}

.navbar-header {
	display: flex !important;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	float: none;
}

.navbar-header .toggle-btn {
	font-size: 16px;
	background-color: rgba(0,0,0,0.075);
	display: none;
	vertical-align: middle;
	width: 36px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	margin-right: 10px;
	border-radius: 3px;
	color: #1c1c1c;
}

.toggle-btn {
	display: none;
}

.navbar-header::before {
	display: unset !important;
	content: none;
}

.navbar-header::after {
	display: unset !important;
	content: none;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    position: fixed;
    width: 250px;
    transition: all 0.3s;
    left: 0;
    top: 0;
    height: 100vh;
    border-right: 1px solid rgba(0,0,0,0.05);
    background-color: #1c1c1c;
	z-index: 5;
}

.sidebar-header {
    height: 68px;
    line-height: 68px;
    padding: 0 15px;
    background-color: #000;
}

.sidebar-header img {
    max-width: 96%;
    height: 34px;
}

.sidebar-links {
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    list-style: none;
}

.sidebar-links a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 3rem;
    color: #d6d6d6;
    text-decoration: none;
    position: relative;
}

.sidebar-links a i {
    font-size: 12px;
    margin-right: 15px;
}

.sidebar-links a.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background-color: #e4ca31;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

.logo2{
    display: none;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    min-height: 100vh;
    transition: all 0.3s;
    width: calc(100% - 250px);
    margin-left: 250px;
    padding: 0 50px;
    padding-top: 100px;
}

/* .navbar-header .dropdown{
    display: none;
} */

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {

    #sidebar {
        /* width: 80px; */
		left: -250px;
    }
    #content {
        width: 100%;
        margin: 0;
        padding: 0 15px;
        padding-top: 65px;
    }

	#sidebar.sidebar-expanded {
		left: 0;
	}

    /* #sidebar li a span {
        display: none;
    } */

    .navbar {
        width: 100%;
        left: 0;
    }

	.toggle-btn {
		display: inline-block !important;
	}
    /* .navbar-header .dropdown {
        display: block; 
        float: right;
        margin: 0;
    } */
    /* .sidebar-header {
        overflow: hidden;
        text-align: center;
        padding: 0;
        margin: 0 21px;
    } */
    /* .sidebar-header img {
        max-width: 272px;
        height: 50px;
     } */
}

.sidebar-header h3{
	font-size: 20px;
	font-weight: 400;
	margin: 15px 0;
}

/* ---------------------------------------------------
    NAV STYLE END
----------------------------------------------------- */

.cams{
	padding: 15px;
}

.panel-heading{
	padding: 20px;
}

.huge{
	font-weight: 700;
}

.user-dv{
	background-color: #fff;
    border-radius: 6px;
    margin-bottom: 1rem;
    padding: 10px 15px;
}

.icon {
    background-image: linear-gradient(110deg,#f9de21,#d0b73f);
    display: inline-block;
    vertical-align: middle;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 74px;
    text-align: center;
}

.icon i{
	color: #fff;
    font-size: 24px;
}

.txt{
	font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 75px);
    padding-left: 20px;
}


.user .nav-tabs{
	position: relative;
}

.user .nav-tabs li {
    position: absolute;
    right: 0;
}

.user .nav-tabs li.active {
    position: relative;
}

.user .nav-tabs a{
    background-image: linear-gradient(110deg,#eccc28,#c5af12);
    border-radius: 24px;
    padding: 6px 20px;
    border: none;
    color: #fff;
}

.user .tab-content {
    background-color: #fff;
    margin-top: 4px;
    border-radius: 6px;
    padding: 1rem;
}
.user .nav-tabs li.active a{
    background: none !important;
    border-radius: 0;
    border: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding-left: 0;
}

.table td, 
.table th {
	padding: 12px;
    vertical-align: middle !important;
}

.btn-edit{
	background-color: #2282af;
	color: #fff;
	padding: 5px 10px;
	border-radius: 2px;
	transition: all 0.4s;
}

.btn-edit:hover{
	background-color: #156387;
	color: #fff;
	transition: all 0.4s;
}

.btn-view{
	background-color: #089675;
    color: #fff;
    padding: 5px 10px;
	border-radius: 2px;
	transition: all 0.4s;
}

.btn-view:hover{
	background-color: #035845;
    color: #fff;
	transition: all 0.4s;
}

.btn-delete{
	background-color: #d02f2f;
	color: #fff;
	padding: 5px 10px;
	border-radius: 2px;
	transition: all 0.4s;
}

.btn-delete:hover{
	background-color: #a51818;
	color: #fff;
	transition: all 0.4s;
}

.success{
	color: #008800;
}

.error{
	color: #cc0000;
}

.addCam{
	padding: 15px;
}

.btn-add{
	background-color: #fce43a;
	border-radius: 2px;
	height: 38px;
	color: #000;
	min-width: 120px;
	transition: all 0.4s;
}

.btn-add:hover{
	background-color: #000;
	color: #fce43a;
	transition: all 0.4s;
}

.addUser{
	width: 100%;
	float: left;
	padding: 15px;
}

.modal-content{
	border-radius: 0;
}

.modal-body{
	padding: 0;
}

.modal-body img{
	width: 100%;
}

.play-btn{
	width: 100px;
	position: absolute;
	top: 38%;
	left: 42%;
}

.play-btn img{
	width: 100%;
}

.close{
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 10;
	color: #fff;
	opacity: .8;
}

.dropdown{
	margin-top: 15px;
}

.dropdown a{
	background-color: #fff;
}

.navbar-default .navbar-nav>.open>a, 
.navbar-default .navbar-nav>.open>a:focus, 
.navbar-default .navbar-nav>.open>a:hover{
	background-color: #fff;
}

.dropdown-menu>li>a{
	padding: 8px 15px;
}

.profile{
	padding: 2rem;
	background-color: #fff;
	box-shadow: 1px 1px 5px #ccc;
	width: 100%;
	float: left;
	min-height: 400px;
}

.pass{
	padding: 2rem;
	background-color: #fff;
	box-shadow: 1px 1px 5px #ccc;
	width: 100%;
	float: left;
}

.profile label{
	color: #777;
	font-weight: 400;
}

.pass label{
	color: #777;
	font-weight: 400;
}

.form-contr{
	border: none;
	border-bottom: 1px solid #ccc;
	height: 40px;
	width: 100%;
	padding: 5px 15px;
	font-weight: 100;
	font-size: 16px;
	transition: all 0.4s;
	color: #222;
}

.form-contr:focus{
	border-bottom: 1px solid #fce43a;
}

#sidebarCollapse i{
	color: #fce43a;
}

.user .modal-body{
	padding: 15px;
}

.err-msg{
	width: 100%;
}

.alert{
	margin-bottom: 0;
	margin-top: 5px;
	padding: 5px 15px;
	border-radius: 1px;
}

a:focus, button:focus {
    outline: none !important;
    outline-offset: -2px;
}

/*-------------------------------
		Thumbnail
-------------------------------*/

.sus-bnr{
    	background-color: #000;
    	width: 100%;
    	position: relative;
    }

    .sus-bnr .image {
    	opacity: 1;
    	display: block;
    	width: 100%;
    	height: auto;
    	transition: .5s ease;
    	backface-visibility: hidden;
    }

    .sus-bnr .top-title {
    	transition: .5s ease;
    	opacity: 0;
    	position: absolute;
    	bottom: 35%;
    	left: 7%;
    	transform: translate(-5%, -5%);
    	-ms-transform: translate(-5%, -5%);
    	text-align: left;
    	color: #fff;
    }

    .sus-bnr .middle-title {
    	transition: .5s ease;
    	opacity: 0;
    	position: absolute;
    	bottom: 20%;
    	left: 7%;
    	transform: translate(-5%, -5%);
    	-ms-transform: translate(-5%, -5%);
    	text-align: left;
    	color: #fff;
    }

    .sus-bnr .bottom-btn {
    	transition: .5s ease;
    	opacity: 0;
    	position: absolute;
    	bottom: 5%;
    	left: 7%;
    	transform: translate(-5%, -5%);
    	-ms-transform: translate(-5%, -5%);
    	text-align: left;
    	color: #fff;
    }

    .sus-bnr:hover .image {
    	opacity: 0.3;
    }

    .sus-bnr:hover .middle-title {
    	opacity: 1;
    }

    .sus-bnr:hover .top-title {
    	opacity: 1;
    }

    .sus-bnr:hover .bottom-btn {
    	opacity: 1;
    }

    .sus-bnr .text,.sus-bnr .text:focus{
    	color: white;
    	font-size: 16px;
    	text-decoration: none;
    	transition: all 0.4s;
    }

    .sus-bnr .text:hover{
    	text-decoration: none;
    	color: #fff;
    	transition: all 0.4s;
    }

    .p-btn-dv{
    	width: 40px;
    }

    .p-btn-dv img{
    	width: 100%;
    }

/*-------------------------------
		Thumbnail
-------------------------------*/

.labels-dv{
	width: 100%;
	height: 100px;
	background-color: #fff;
	padding: 10px 0;
	color: #333;
}

.sus-anc{
	float: left;
	box-shadow: 2px 2px 5px #ccc;
}

/*-------------------------------
		Loader
-------------------------------*/

.loader {
  border: 5px solid #222 !important;
  border-radius: 50% !important;
  border-top: 5px solid #fce43a !important;
  width: 30px !important;
  height: 30px !important;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  left: 8% !important;
  top: 52% !important;
  z-index: 5;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.section-heading {
    font-size: 16px;
    font-weight: 600;
}

/*-------------------------------
		Loader
-------------------------------*/

#sidebarCollapse span{
	color: #333;
}

.dropdown a {
	background: none;
	color: #333;
    text-decoration: none;
}

.dropdown-menu>li>a {
    transition: all 0.25s;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
	background-color: #e4ca31;
	/* color: #fff; */
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover{
	background: none;
}

.close{
    font-size: 30px !important;
}

.switch-o {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 18px;
	top: 8px;
	left: 50px;
}

.switch-o input {
	display:none;
}

.switch-o .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ca2222;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch-o .slider:before {
	position: absolute;
	content: "";
	height: 14px;
	width: 14px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch-o input:checked + .slider {
	background-color: #2ab934;
}

.switch-o input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

.switch-o input:checked + .slider:before {
	-webkit-transform: translateX(22px);
	-ms-transform: translateX(22px);
	transform: translateX(22px);
}

.switch-o .on
{
	display: none;
}

.switch-o .on
{
	color: white;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 12px;
	font-size: 10px;
	font-family: inherit;
}

.switch-o .off
{
	color: white;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	right: -7px;
	font-size: 10px;
	font-family: inherit;
}

.switch-o input:checked+ .slider .on{
	display: block;
}

.switch-o input:checked + .slider .off{
	display: none;
}

.switch-o .slider.round {
	border-radius: 34px;
}

.switch-o .slider.round:before {
	border-radius: 50%;
}

/*------------------------------------*/

.status{
	margin-right: 35px;
}

.user-wrapper #content {
	margin-left: 0;
	width: auto;
}

.user-wrapper .navbar {
	left: 0;
	width: 100%;
}

.badge {
	border-radius: 3px;
	font-weight: 500;
	text-transform: uppercase;
}

.badge.badge-success {
	background-color: #b9e8d5;
	color: #108258;
}

.badge.badge-info {
	background-color: #d4e9ff;
	color: #0093ff;
}

.badge.badge-warning {
	background-color: #fff0d4;
	color: #ffa700;
}

.badge.badge-danger {
	background-color: #ffd4d4;
	color: #cc0000;
}

.text-success {
    color: #00c54f;
}

/*
	/*Player Page Css
*/

.btn-bar{
    padding: 1rem;
}

.in-btns .btn{
    width: auto;
}

td{
    vertical-align: middle !important;
}

.bottom-options {
/*	color: #fff;*/
	margin: 1rem 0;
	height: 34px;
	line-height: 34px;
	padding: 0 10px;
}

.bottom-options .btn {
	display: inline-block;
	margin-left: 5px;
}

#viewersWatching {
	color: #03a9f4;
}

@media (max-width: 768px) {
	.off p {
		font-size: 22px;
	}
}

.stream-steps {
	padding: 30px;
	text-align: center;
	color: #fff;
}

.step-item {
	display: inline-block;
	width: 200px;
	color: #6d6d6d;
	margin: 0 0.75rem;
}

.step-item h5 {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	font-weight: 400;
}

.step-item-rounded {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 30px;
	line-height: 26px;
	text-align: center;
	height: 30px;
	border-radius: 50%;
	border:  2px solid #6d6d6d;
	margin-right: 5px;
}

.step-item.active .step-item-rounded {
	background-color: #00c573;
	border-color: #15774e;
}

.step-item.not-active .step-item-rounded {
	background-color: #c50000;
	border-color: #771515;
}

.step-item.active .step-item-rounded::after {
	content: "";
	width: 14px;
	height: 7px;
	position: absolute;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}

.step-item.not-active .step-item-rounded::before {
	content: "";
	width: 2px;
	height: 14px;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}

.step-item.not-active .step-item-rounded::after {
	content: "";
	width: 2px;
	height: 14px;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.camera-details {
	color: #333;
	border: 1px solid rgba(0,0,0,0.125);
	padding: 1.5rem 2rem;
	background-color: rgba(0,0,0,0.075);
	margin: 0 10px;
	margin-top: 15px;
	min-height: 72px;
	position: relative;
}
.camera-details p {
	margin: 0;
}
.camera-details strong {
	color: #20beec;
}

.down-btn,.down-btn:focus{
	position:  absolute;
	right: 0;
	top: -25px;
	background: #46a546;
	color: #fff;
	border: 1px solid #46a546;
	padding: 3px 12px;
	font-size: 12px;
	font-weight: 300;
	cursor: pointer !important;
	transition: all 0.4s;
}

.down-btn:hover{
	background: #000000c2;
	color: #fff;
	border: 1px solid #fff;
	transition: all 0.4s;
}

.thumb-img {
	position: relative;
	width: 240px;
	height: 135px;
}

.thumb-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.upload-section {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	padding: 6px 15px;
	background-color: #e4ca31;
	border-radius: 4px;
}

.upload-section input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
}

.card {
	background-color: #fff;
	margin-bottom: 15px;
	border-radius: 6px;
}

.card-body {
	padding: 2rem;
}

.multiselect-native-select {
	display: block;
}

.multiselect-native-select .btn-group {
	width: 100%;
}

.multiselect-native-select .btn-group .multiselect {
	width: 100%;
	text-align: left;
	padding: 9px 15px;
	border-radius: 0;
}

.flex-heading {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.btn-theme {
	background-image: linear-gradient(110deg,#eccc28,#c5af12);
	border-radius: 24px;
	padding: 0 20px;
	height: 36px;
	line-height: 36px;
	border: none;
	color: #fff;
}

.users-list {
	padding: 0;
	margin: 0;
	list-style: none;
	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
}

.users-list li {
	border-top: 1px solid rgba(0,0,0,0.075);
}

.users-list a {
	display: block;
	text-decoration: none;
	color: #333;
	transition: all 0.25s;
	padding: 15px;
}

.users-list a:hover {
	background-color: #f3f3f3;
}

.users-list a h5 {
	margin: 0;
}

.users-list a p {
	margin: 0;
	color: #787878;
}

.camera-item {
	display: block;
	color: #676767;
	text-decoration: none;
	background-color: #fff;
	transition: all 0.25s;
	margin-bottom: 20px;
}

.camera-item:hover {
	text-decoration: none;
	color: #676767;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.125);
}

.camera-img {
	position: relative;
	padding-top: 56.25%;
}

.camera-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.camera-description {
	padding: 15px;
	position: relative;
	height: 130px;
}

.camera-description p {
	margin: 0;
}

.camera-description i {
	position: absolute;
	top: 15px;
	right: 15px;
}

.camera-description p strong {
	color: #1c1c1c;
}

textarea.form-controls {
	height: auto;
	resize: none;
}

.info-card {
	position: relative;
}

.info-card h4 {
	margin: 0;
	font-size: 13px;
	margin-bottom: 5px;
	color: #787878;
	padding-right: 50px;
}

.info-card h3 {
	margin: 0;
	font-size: 20px;
	padding-right: 50px;
}

.info-card h3 span {
	font-size: 14px;
	color: #787878;
}

.info-card i {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 41.3px;
	height: 41.3px;
	background-image: linear-gradient(#e4ca31,#c5aa0e);
	color: #fff;
	text-align: center;
	line-height: 41.3px;
	border-radius: 6px;
}

.group-info {
	margin: 3rem 1rem;
	position: relative;
	color: #fff;
	padding-left: 60px;
}

.group-info img {
	position: absolute;
	left: 0;
	width: 45px;
	height: 45px;
	object-fit: cover;
	border-radius: 6px;
}

.group-desc {
	padding: 5px 0;
}

.group-desc h4 {
	color: #e4ca31;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.group-desc p {
	margin: 0;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.form-controls[disabled] {
    background-color: #eee;
}

.req-mark {
	color: #eb0000;
	font-size: 18px;
}

.multiselect-selected-text {
	display: inline-block;
	width: calc(100% - 10px);
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-h {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.section-h h3 {
	font-size: 18px;
	margin: 0;
	line-height: 44px;
}

.section-h button {
	background-color: #f3f3f3;
	border: none;
	border-radius: 4px;
	padding: 8px 15px;
	color: #787878;
}

.section-h button.active {
	background-color: #cdb217;
    color: #fff;
}

.list-view .col-lg-4,
.list-view .col-md-4,
.list-view .col-sm-6 {
	float: none;
	width: 100%;
}

.list-view .camera-item {
	display: flex;
	padding: 15px;
}

.list-view .camera-img {
	padding: 0;
	width: 160px;
	height: 90px;
}

.list-view .camera-description {
	height: auto;
	width: 100%;
}

.navbar-header .dropdown-menu {
	left: auto !important;
	right: 0 !important;
}