:root{
	--chat-sender: rgba(39, 54, 127, .8);
	--chat-reciver: rgba(87, 182, 87, .8);
	--chat-new: rgba(36, 138, 253, .8);
	--chat-urgent: rgba(255, 71, 71, .8);
}
/*Intro*/
#intro-header{
	background-color: black;
	color: white;
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 9999;
	/*Remove for don't show intro*/
	display: none; 
}
#particles-js{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#particles-js h3{
	position: absolute;
	text-align: center;
	transform: translateY(100px);
	/*color: #4B49AC;*/
}
#particles-js img{
	position: absolute;
	max-height: 150px;
	filter: invert(1);
}
@keyframes transitions{
	0%{
	}
	100%{
		transform: translateY(-100%);
	}
}
.out-intro{
	-webkit-animation: transitions 1s both;
	animation: transitions 1s both;
}

/*Notifications*/
#notifications-div{
	height: 70vh;
	overflow-y: scroll;
}

/*Chat*/
#settings-trigger i{
	animation: none;
}
.settings-panel{
	width: 450px;
    right: -450px;
}
.chat-panel{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 85%;
}
#chat-card{
	height: 90%;
	width: 100%;
}
#chat-messages{
	overflow-y: scroll;
	overflow-x: inherit;
	word-wrap: break-word;
}
.write-message{
	width: 95%;
}
#chats-threads{
	overflow-y: scroll;
	margin-right: 5px;
    height: 70vh;
}
.thread-li{
	border-bottom:	1px black solid;
	cursor: pointer;
	margin-bottom: 0px !important;
	padding-top: 5px;
}
.thread-li:hover{
	background: var(--chat-reciver);
	color: white !important;
}
.thread-li.active{
	background: var(--chat-reciver);
	color: white !important;
}
.thread-li.new{
	background: var(--chat-urgent);
	color: white !important;
}
.thread-title{
	cursor: pointer;
	width: 100%;
	padding-right: 5px;
	font-size: 16px;
}
#my-messenger-ul{
	width: 100%;
}
#messenger-panel{
	height: 70vh;
	padding-left: 5px;
	padding-right: 5px;
}
#messenger-messages{
	width: 100% !important;
	height: 90% !important;
	overflow-y: scroll;
}
.message{
	width: 50%;
	padding-left: .5em
	padding-right: .5em;
	border-radius: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.message div{
	display: flex;
	flex-direction: column;
}
.message div span{
	color: white;
	display: inline;
	text-align: justify;
	padding: 6px;
	margin-left: 5px;
	margin-right: 5px;
}
.message div small{
	color: white;
	font-size: 10px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 5px;
}

.message-left{
	background-color: var(--chat-sender);
	margin-right: auto;
	text-align: left;
}
.message-right{
	background-color: var(--chat-reciver);
	margin-left: auto;
	text-align: right;
}

/*Dashboard*/
/*ID Card*/
.card-people>.img-decorator{
	opacity: .2 !important;
    position: absolute;
    top: 30%;
    right: 5%;
    width: 25%;
}
.card-personal{
	/*position: absolute;*/
}
.card-about{
	text-align: justify;
	padding-right: 4px;
	/*font-weight: bold;*/
}
#profile-urls{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	margin-top: 10px;
}
.profile-pic{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.profile-pic>img{
	max-width: 200px !important;
}
.logo-url{
	display: block;
	margin: 8px;
}
.logo-url img{
	border-radius: 0px;
	width: auto;
	height: 30px;
}

/*Skills Summary*/
#competitions-content{
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

/*Technical Skills View*/
.skill-img{
	width: auto !important; */
	height: 30px !important;
	 border-radius: 0px !important;
}
.my-carousel-indicators{
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	width: 90%;
	margin: auto;
}
.my-carousel-indicators li{
	cursor: pointer;
}
.continous-learning{
	width: 25px !important;
	height: 25px !important;
	font-size: .8em;
	cursor: help !important;
}

/*Helpers*/
.text-sm{
	font-size: .8em !important;
}
.text-md{
	font-size: 1.2em !important;
}

@media (min-width: 447px) {
  .sm-only {
    display: none;
  }
}


/*World Maps*/
#locations-map{
	width: 100%;
	height: 85vh;
	overflow: hidden;
}
