.vertical_fill {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}
.center_fill {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
 .nav-item{
    text-align: right;
}


.img_wrapper {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
}

.center-container{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_wrapper img {
  /*width: 100%;*/
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.img_wrapper:hover img {
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.img_wrapper:hover .button-z {
  opacity: 1.0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.button-z {
  opacity: 0.0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.button-z-visible {
  opacity: 1.0;
}

.button-sb {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
}

.fade-enter-active {
  transition: opacity .5s;
}

.fade-leave-active {
  transition: opacity .0s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

#test{
	-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
	border-radius: .5em;
}

#wrap .popover {
	max-width: none;
	max-height: none;
}

/*.large {
	display: none;
	position: absolute;
}

li {
	list-style-type: none;
    padding: 10px;
    position: relative;
}

li:hover .large {
	display: block;
	left: 5%;
	top: -50%;
}

.large-image {
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px rgba(127, 127, 127, 0.15);
}*/

.image_large {
	padding: 16px;
	border: 4px;
	border-radius: 4px;
	box-shadow: 4px 4px 4px 4px rgba(127, 127, 127, 1.0);
	width: 100%;
}

#image_wrapper .image_large_wrapper {
	display: none;
}

#image_wrapper:hover .image_large_wrapper {
	display: block;
	position: absolute;
	left: 110%;
	top: -150%;
	z-index: 1;
	width: 350px;
	background: rgba(256, 256, 256, 1.0);
}

.widthx {
	min-width: 100px;
	max-width: 100px;
}

.video-label {
	position: absolute;
	bottom: 0px;
}

.video-title {
    font-size: 12px !important;
    opacity: 1;
	background-color: rgba(0,0,0,.6);
}

.video-title p {
    font-weight: 600;
    font-family: proxima_nova,Arial,Helvetica,sans-serif;
    display: inline-block;
    width: calc(100% - 60px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	color: white;
}

.video-duration {
    width: 30px;
    margin: 0 30px 0 0;
    padding: 0;
    display: block !important;
    float: right;
	color: white;
}

.video-wrapper {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	z-index: 1;
}

.video-wrapper:hover .video-download {
	opacity: 1.0;
	transition: opacity 0.25s ease-in-out;
	-moz-transition: opacity 0.25s ease-in-out;
	-webkit-transition: opacity 0.25s ease-in-out;
}

.video-download {
	opacity: 0.0;
	transition: opacity 0.25s ease-in-out;
	-moz-transition: opacity 0.25s ease-in-out;
	-webkit-transition: opacity 0.25s ease-in-out;
	position: absolute;
	top: 0;
	right: 0;
}

.video-download-visible {
	opacity: 1.0;
	transition: opacity 0.25s ease-in-out;
	-moz-transition: opacity 0.25s ease-in-out;
	-webkit-transition: opacity 0.25s ease-in-out;
	position: absolute;
	top: 0;
	right: 0;
}

.user_tasks_dialog {
	position: fixed;
	max-height: 50%;
	width: 20%;
	display: flex;
	flex-direction: column;
	background-color: white;
	color: white;
	margin: 0px;
	padding: 0px;
	border: 1px solid #E5E5E3;
	border-radius: 4px;
	right: 10px;
	bottom: 10px;
	z-index: 100;
}

.user_tasks_header {
	/*display: block;*/
	background-color: #017BF8;
	color: white;
	margin: 0px;
	padding: 0px;
	border: 1px solid #E5E5E3;
	z-index: 101;
}

.user_tasks_list {
	/*display: block;*/
	/*max-height: 300px;*/
	/*overflow-x: hidden;*/
	flex-grow: 1;
	overflow-y: auto;
	background-color: white;
	color: black;
	margin: 0px;
	padding: 0px;
	border: 1px solid #E5E5E3;
	z-index: 101;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s;
}
.fade-enter, .fade-leave-to  {
  opacity: 0;
}

/* Chat styles */

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eee; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.wrapper{
    #height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    #background-color: #651FFF;
}

.main{
	#background-color: #eee;
	width: 100%;
	position: relative;
	#border-radius: 8px;
	#box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 6px 0px 0px 0px;
}
.scroll{
	overflow-y: scroll;
	scroll-behavior: smooth;
	height: 50vh;
}
.img1{
	border-radius: 50%;
	background-color: #66BB6A;
}
.name{
	#font-size: 8px;
}
.msg{
	background-color: #ceeaff;
	#font-size: 11px;
	padding: 5px;
	border-radius: 5px;
	#font-weight: 500;
	#color: #3e3c3c;
}
.msg2{
	background-color: #deffcc;
	#font-size: 11px;
	padding: 5px;
	border-radius: 5px;
	#font-weight: 500;
	#color: #3e3c3c;
}
.between{
	font-size: 8px;
	font-weight: 500;
	color: #a09e9e;
}

.form-control{
	font-size: 12px;
	font-weight: 400;
	width: 230px;
	height: 30px;
	border: none;

}
form-control: focus{
	box-shadow: none;
	overflow: hidden;
	border: none;
}
.form-control:focus{
	box-shadow: none !important;
}
.icon1{
	color: #7C4DFF !important;
	font-size: 18px !important;	
	cursor: pointer;
}

.icon2{
	color: #512DA8 !important;
    font-size: 18px !important;
    position: relative;
    left: 8px;
    padding: 0px;
    cursor: pointer;

}

.icondiv{
	
	border-radius: 50%;
	width: 15px;
	height: 15px;
	padding: 2px;
	position: relative;
	bottom: 1px;

}