/* azul claro: #86cfef */
/* azul oscuro: #123a4e */
/* rojo: #E83500 */
/* linkedin: #007ab9 */
/* twitter: #55ACED */
/* facebook: #3A5A98 */
/* instagram: #BF09CA */

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px white inset;
}

@font-face {
	font-family: "AvenirNext";
	src: url("../fonts/AvenirNext-Regular.ttf");
}

*, *:focus, *:active, *:visited,
button:focus, button:active, button:visited {
	outline: none;
}

header {
	background-color: #86cfef;
}

a, a:hover, a:active, a:focus { 
	text-decoration: none;
}

button.button {
	font-family: 'AvenirNext';
  border: none;
  cursor: pointer;
  color: white;
	overflow: hidden;
	border-radius: 0;
	height: 35px;
	font-size: .9rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 300px;
	max-width: 100%;
	padding: 0 20px;
}

button.round {
	border-radius: 35px;
}

.ripple {
  background-position: center;
  transition: background 0.8s;
}

.ripple.dark:hover {
  background: #184f6a radial-gradient(circle, transparent 1%, #184f6a 1%) center/15000%;
}

.ripple.light:hover {
  background: #a4dbf3 radial-gradient(circle, transparent 1%, #a4dbf3 1%) center/15000%;
}

.ripple.danger:hover {
  background: #ff430b radial-gradient(circle, transparent 1%, #ff430b 1%) center/15000%;
}

.ripple.dark:active {
  background-color: #184f6a;
  background-size: 100%;
  transition: background 0s;
}

.ripple.light:active {
  background-color: #a4dbf3;
  background-size: 100%;
  transition: background 0s;
}

.ripple.danger:active {
  background-color: #ff430b;
  background-size: 100%;
  transition: background 0s;
}

.bold {
	font-weight: 600 !important;
}

.upper {
	text-transform: uppercase !important;
}

.dark {
	background-color: #123a4e !important;
}

.light {
	background-color: #86cfef !important;
	color: #123a4e !important;
}

.danger {
	background-color: #E83500 !important;
}

.input-with-button {
	position: relative;
	padding: 10px;
	background-color: #e4e4e4;
}

.input-with-button input {
  width: 100%;
	height: 40px;
	padding-left: 10px;
}

.input-with-button button {
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  padding: 10px;
	transition: all 0.2s;
	height: 40px;
	width: 100px;
}

.input-with-button button:hover {
  background-color: #37C88D;
  color: #fff;
  cursor: pointer;
}

input.input {
	border: 0;
	border-bottom: 1px solid lightgray;
	outline: 0;
	padding: 10px;
	font-size: .9rem;
}

.white-transparent {
	background-color: rgba(255, 255, 255, 0.7);
}

.checkbox {
	position: relative;
	top: -0.375rem;
	margin: 0 1rem 0 0;
	cursor: pointer;
}

.checkbox:before {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	top: -2px;
	z-index: 1;
	width: 1.1rem;
	height: 1.1rem;
	border: 2px solid #f2f2f2;
}
	 
.checkbox:checked:before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	height: .5rem;
	border-color: #86cfef;
	border-top-style: none;
	border-right-style: none;
}
	 
.checkbox:after {
	content: "";
	position: absolute;
	top: -0.125rem;
	left: 0;
	width: 1.1rem;
	height: 1.1rem;
	background: #fff;
	cursor: pointer;
}
	
button.disabled {
	background-color: #e4e4e4 !important;
	pointer-events: none !important;
}

.icon-wrapper {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: red;
	border-radius: 35px;
	color: white;
}

.icon-wrapper > span {
	display: block;
	font-size: 18px;
	padding-top: calc((100% - 18px) / 2);
}

.linkedin {
	background-color: #007ab9;
}

.facebook {
	background-color: #3A5A98;
}

.twitter {
	background-color: #55ACED;
}

.instagram {
	background-color: #BF09CA;
}

body {
	margin: 0;
	background-color: #edf2f5;
	overflow-x: hidden;
}

.header-app {
	height: 52px;
	background-color: #86cfef;
	text-align: center;
	padding: 5px;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1005;
}

.bottom-shadow {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.header-app img {
	height: 42px;
}

article.register {
	padding-top: 50px;
}

.background-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	opacity: 0.8;
}

.login-wrapper.background-image {
	min-height: 350px;
}

.register-wrapper.background-image {
	min-height: 500px;
}

.login-wrapper {
	background-image: url("../images/unsplash_login.jpg");
}

.register-wrapper {
	background-image: url("../images/unsplash_register.jpg");
}

article.register input {
	opacity: .95;
	width: 100%;
	max-width: 400px;
	margin-bottom: 5px;
}

article.register button {
	margin-top: 10px;
}

article.register span {
	display: block;
	color: white;
	font-family: "AvenirNext";
	margin: 5px 0;
	font-size: .8rem;
}

article.register a {
	color: white;
	font-family: "AvenirNext";
	text-decoration: none;
	font-size: .8rem;
}

#login .register-form {
	height: calc(100vh - 102px);
	text-align: center;
	padding-top: calc((100vh - 400px) / 2);
}

#register .register-form {
	height: calc(100vh - 102px);
	text-align: center;
	padding-top: calc((100vh - 500px) / 2);
}

#login a#resetPassword {
	display: block;
	margin-top: 5px;
}

header.header-app a:not(.logo-link),
header.header-app .profile-wrapper {
	color: #123a4e;
	height: 52px;
	width: 52px;
	position: absolute;
	top: 0;
	display: table-cell;
  vertical-align: middle
}

header.header-app label.profile-wrapper {
	left: 0;
	cursor: pointer;
}

header.header-app a.calendar-wrapper {
	right: 0;
}


header.header-app a span,
header.header-app label span {
	font-size: 25px;
	display: block;
	padding-top: calc((52px - 25px )/ 2);
}

#calendar-wrapper, #events-wrapper  {
	padding-top: 30px;
	padding-bottom: 30px;
	width: 90%;
	margin: 0 auto;
}

#calendar-wrapper button {
	background-color: #123a4e !important;
	border-color: #123a4e !important;
}

#calendar .back-wrapper,
#messages .back-wrapper {
	padding-top: 20px;
}

#calendar .back-wrapper #messages-link {
	margin-right: 20px;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 17px;
}

#calendar .back-wrapper #messages-link:hover {
	cursor:pointer;
}

#calendar .back-wrapper span,
#messages .back-wrapper span {
	color: #123a4e;
	font-size: 25px;
	margin-top: 20px;
	margin-left: 20px;
}

.check-profile {
	display: none;
}

/* wrapper */

._wrapper {
	padding-left: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease
}

input[type=checkbox]:checked+._wrapper {
	padding-left: 300px
}

._sidebar-wrapper,
._sidebar-wrapper2 {
	position: fixed;
	height: 100%;
	left: 300px;
	margin-left: -300px;
	width: 0;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.07);
	border-right: 1px solid #d6d6d6;
	overflow-y: auto;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease
}

._sidebar-wrapper2 {
	z-index: 3;
}

input[type=checkbox]:checked+._wrapper>._sidebar-wrapper,
input[type=checkbox]:checked+._sidebar-wrapper2 {
	width: 300px
}

._page-content-wrapper {
	margin-top: 2px;
	position: absolute;
	width: 100%
}

#profile, #subsection {
	background-color: #f8fafb;
	overflow-y: auto;
	padding: 10px;
	position: relative;
	height: calc(100vh - 52px);
	width: 300px;
}

#profile .close-profile .icon-previous,
#subsection .close-profile .icon-previous {
	position: absolute;
	right: 10px;
	color: #123a4e;
	font-size: 25px;
}

#profile .close-profile .icon-previous:hover,
#subsection .close-profile .icon-previous:hover {
 	cursor: pointer;
}

#profile input.input {
	width: 100%;
	background-color: #f8fafb;
	border-bottom-color: #ececec;
}
#profile .profile_image-wrapper {
	font-size: 75px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	background-color: #dcdcdc;
	border-radius: 100px;
	margin: 20px auto;
	text-align: center;
	position: relative;
}

#profile .profile_image-wrapper span {
	color: #123a4e;
}

#profile .profile_image-wrapper img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

#profile .form-separator {
	text-transform: uppercase;
	font-weight: bold;
	background-color: #dcdcdc;
	padding: 5px;
}

#profile #profile-form table,
#subsection #subsection-form table {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 10px;
}

#profile #profile-form table tr,
#subsection #subsection-form table tr,
#newEvent #new-event-form table tr {
	border-bottom: 1px solid #ececec;
}

#profile #profile-form table tr td,
#newEvent #new-event-form table tr td {
	color: #b1b1b1;
}

#subsection #subsection-form table tr td {
	color: gray;
	height: 40px;
}

#profile #profile-form table tr td input,
#newEvent #new-event-form table tr td input,
#subsection #subsection-form table tr td input {
	border: 0;
}

#newEvent #new-event-form table tr td input.input-name,
#newEvent #new-event-form table tr td input.input-pdf {
	width: 100%;
}

#newEvent #new-event-form table tr td input.input-pdf::placeholder {
	color: #cacaca;
}

#profile #profile-form button.button {
	margin-top: 8px;
}

#profile #profile-form .sector_select,
#profile #profile-form .interest_select {
	text-transform: uppercase;
	color: #878787;
	margin: 7px 0px;
}

#profile #profile-form .sector_select:hover,
#profile #profile-form .interest_select:hover {
	cursor: pointer;
}


#subsection #subsection-form .input-with-button {
	margin-top: 25px;
	font-size: 15px;
}

#subsection #subsection-form .input-with-button input,
#subsection #subsection-form .input-with-button button {
	font-size: .8rem;
}

#subsection #subsection-form .button-wrapper {
	position: absolute;
	bottom: 0;
	height: 65px;
	max-width: 100%;
	background-color: #e4e4e4;
	margin-left: -10px;
	width: 300px;
	text-align: center;
}


#subsection #subsection-form .button-wrapper button {
	margin-top: 15px;
	width: 90%;
}

#subsection {
	position: relative;
}

#subsection .checkbox-wrapper {
	text-align: right;
}

#subsection .checkbox-wrapper input[type="checkbox"] {
	margin-top: 15px;
}

#ppal .events-wrapper {
	margin: 5px;
}

#ppal .events-wrapper .event-description {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: justify;
}

#ppal .events-wrapper .creator-wrapper {
	background-color: #123a4e;
	color: white;
	padding: 15px;
	position: absolute;
	bottom: 0;
	width: 100%;
}

#ppal .events-wrapper .event-time,
#ppal .events-wrapper .event-location {
	font-size: .8rem;
	margin-bottom: 5px;
}

#ppal .events-wrapper .event-location {
	margin-bottom: 10px;
}

.card {
  display: inline-block;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
  position: relative;
  margin-bottom: 15px;
	transition: all .2s ease-in-out;
	min-width: 100%;
	margin-top: 15px;
}

.card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#ppal .events-wrapper .card .card-image-wrapper {
	overflow: hidden;
	height: 100%;
	min-height: 240px;
}

#ppal .events-wrapper .card .card-image-wrapper img {
	height: 100%;
}

#ppal .events-wrapper .card .card-image-wrapper:before {
	content: '';
	position: absolute;
	top: 0;
	right: -1px;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(transparent, #000);
	opacity: 1; 
}

#ppal .events-wrapper .card .text {
	position: absolute;
	bottom: 35px;
	color: white;
	font-size: .7rem;
	padding: 10px;
	flex-grow: 1;
}

#ppal .events-wrapper .filters-wrapper {
	min-height: 40px;
	padding-top: 10px;
	margin-bottom: 5px;
}

#ppal .events-wrapper .filters-wrapper button {
	font-size: .8rem;
	width: 100%;
	margin-top: 5px;
}

#ppal .events-wrapper .filters-wrapper .mode-wrapper {
	text-align: right;
}

#ppal .events-wrapper .filters-wrapper .search-wrapper {
	margin-top: 5px;
}

#ppal .events-wrapper .filters-wrapper .search-wrapper input {
	height: 35px;
	line-height: 35px;
	border-radius: 35px;
	width: calc(100% - 30px);
	border: 1px solid lightgray;
	padding-left: 10px;
}

#ppal .events-wrapper .filters-wrapper .search-wrapper .icon-settings {
	float: right;
	font-size: 1.5rem;
	margin-top: 6px;
	bottom: 0;
}

#ppal .events-wrapper .filters-wrapper .search-wrapper .icon-settings:hover {
	cursor: pointer;
}

#ppal .events-wrapper .card-wrapper {
	display: flex;
}

#ppal .events-wrapper .card-wrapper .card-image-wrapper span {
	font-size: 11rem;
	width: 100%;
	display: block;
	height: 100%;
	margin-top: 0px;
	text-align: center;
}

#map #map-wrapper {
	position: relative;
	width: 100%;
	height: calc(100vh - 52px);
}

#newEvent #new-event-map,
#newEvent #edit-event-map {
	height: calc(100vh - 52px);
	width: 100%;
	margin-top: 5px;
	position: relative;
}

#map a>button {
	position: absolute;
	z-index: 1000;
	right: 5px;
	top: 17px;
	width: 120px;
}

#wrapper {
	height: calc(100vh - 52px);
	margin-top: 52px;
}

#newEvent #new-event-form {
	margin: 15px;
	height: calc(100% - 30px);
	background-color: white;
	padding: 20px;
	position: relative;
	max-height: calc(100% - 30px);
	overflow-y: auto;;
}

#newEvent #new-event-form .button-wrapper {
	bottom: 0;
	right: 0;
	text-align: center;
	width: 100%;
	padding: 15px;
}

#newEvent .new-event-form-wrapper {
	max-height: calc(100vh - 40px);
}

#event .event-common-details {
	height: calc(100vh - 52px);
	background: white;
	overflow-y: auto;
}

#event .event-common-details #event-image-wrapper {
	overflow: hidden;
	padding: 20px;
	position: relative;
}

#event .event-common-details .common-wrapper {
	max-width: 550px;
	margin: 0 0 0 auto;
	overflow-y: auto;
}

#event .event-common-details .event-date-wrapper,
#event .event-common-details .contact-details-wrapper,
#event .event-common-details .description-wrapper{
	padding-top: 10px;
	padding-right: 20px;
	padding-left: 20px;
}

#event .event-common-details .event-name-wrapper {
	padding-top: 10px;
	padding-right: 20px;
	padding-left: 20px;
}

#event .event-common-details .event-date-wrapper {
	color: #bbb;
	font-size: .8rem;
}

#event .event-common-details hr {
	margin-top: 5px;
	margin-bottom: 5px;
	border: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	margin-left: 20px;
	margin-right: 20px;
}

#event .event-common-details #event-image-wrapper button {
	max-width: 150px;
	margin-top: 15px;
}

#event .event-common-details #event-image-wrapper img {
	margin: auto;
	width: 100%;
}

#event .event-common-details .contact-details-wrapper {
	margin-bottom: 15px;
}

#event .event-common-details .description-wrapper {
	text-align: justify;
	margin-bottom: 15px;
}

#event .event-common-details .buttons-wrapper {
	text-align: center;
}

#event .event-common-details .buttons-wrapper button {
	margin-bottom: 15px;
}

#event .event-common-details .contact-details-wrapper .icon-wrapper {
	margin: 0 auto;
}

#event .event-other-details {
	position: relative;
}

#event .event-other-details .sections-wrapper {
	font-size: 20px;
	width: 45px;
	position: absolute;
	left: 0;
	height: calc(100vh - 52px);
	background: white;
}

#event .event-other-details .sections-wrapper .sections-item-wrapper {
	text-align: center;
	padding: 10px;
	background: white;
}

#event .event-other-details .sections-wrapper .sections-item-wrapper:hover {
	cursor: pointer;
}

#event .event-other-details .sections-wrapper .sections-item-wrapper.active {
	background: #EDF2F5;
}

#event .event-other-details #event-subsection {
	padding-left: 45px;
	text-transform: uppercase;
	color: #123a4e;
	font-weight: bold;
	max-width: 550px;
	max-height: calc(100vh - 54px);
	overflow: auto;
}

#event .event-other-details #event-subsection #networking-wrapper,
#event .event-other-details #event-subsection #program-wrapper,
#event .event-other-details #event-subsection #companies-wrapper,{
	max-width: 550px;
	margin: auto 0 0 0;
}

#event .event-other-details #event-subsection #networking-wrapper .networking-title,
#event .event-other-details #event-subsection #program-wrapper .program-title,
#event .event-other-details #event-subsection #companies-wrapper .companies-title {
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
}

#event .event-other-details #event-subsection #networking-wrapper .networking-list-item,
#event .event-other-details #event-subsection #companies-wrapper .companies-list-item {
	background: white;
	max-width: 95%;
	padding: 10px;
	margin-bottom: 10px;
}

#messages #messages-wrapper .networking-list-item {
	margin-right: 0;
	background: white;
	max-width: 100%;
	padding: 10px;
	margin-bottom: 10px;
}

#event .event-other-details #event-subsection #networking-wrapper .icon-wrapper,
#event .event-other-details #event-subsection #companies-wrapper .icon-wrapper,
#messages #messages-wrapper .icon-wrapper {
	color: #123a4e;
	font-size: 20px;
	background-color: lightgray;
}

#event .event-other-details #event-subsection #networking-wrapper .user-name,
#event .event-other-details #event-subsection #networking-wrapper .user-info {
	text-transform: capitalize;
}

#event .event-other-details #event-subsection #networking-wrapper .networking-list-item table,
#messages #messages-wrapper .networking-list-item table {
	width: 100%;
}

#event .event-other-details #event-subsection #networking-wrapper .networking-list-item:hover,
#messages #messages-wrapper .networking-list-item:hover {
	cursor: pointer;
}

#app #terms-wrapper {
	position: absolute;
	bottom: 0;
	right: 0;
}

#app #terms-wrapper a.term-link {
	color: white;
	margin-right: 10px;
}

.legal-wrapper .text-wrapper {
	margin-top: 54px;
}

.legal-wrapper .text-wrapper .text-page {
	width: 100%;
	padding: 20px;
	max-width: 1200px;
	background-color: white;
	margin: 20px auto;
	text-align: justify;
}

#networking-wrapper .networking-list-item .icon-wrapper,
#companies-wrapper .companies-list-item .icon-wrapper {
	width: 50px;
	height: 50px;
	line-height: 50px;
}

#networking-wrapper .networking-list-item .image-td,
#companies-wrapper .companies-list-item .image-td,
#messages #messages-wrapper .networking-list-item .image-td {
	width: 70px;
}

#networking-wrapper .networking-list-item .image-td img,
#companies-wrapper .companies-list-item .image-td img,
#messages #messages-wrapper .networking-list-item .image-td img {
	max-width: 50px;
	border-radius: 50px;
}

#networking-wrapper .networking-list-item .networking-user-index,
#companies-wrapper .companies-list-item .companies-user-index,
#messages #messages-wrapper .networking-list-item .networking-user-index {
	position: relative;
}

#networking-wrapper .networking-list-item .networking-user-index span,
#companies-wrapper .companies-list-item .companies-user-index span,
#messages #messages-wrapper .networking-list-item .networking-user-index span {
	display: block;
}

#networking-wrapper .networking-list-item .networking-user-index .icon-next,
#messages #messages-wrapper .networking-list-item .icon-next {
	position: absolute;
	right: 0;
	top: calc((100% - 20px)/2);
	font-size: 20px;
	color: lightgray;
}

#networking-wrapper .networking-list-item .networking-user-index .user-name,
#companies-wrapper .companies-list-item .companies-user-index .user-name,
#messages #messages-wrapper .networking-list-item .user-name {
	color: black;
}

#networking-wrapper .networking-list-item .networking-user-index .user-info,
#messages #messages-wrapper .networking-list-item .networking-user-index .user-info {
	font-weight: 100;
	color: gray;
}

#event-user .event-user-wrapper {
	background-color: white;
	position: relative;
	padding: 20px;
	height: calc(100vh - 54px);
	overflow-y: auto;
}

#event-user .event-user-wrapper .close-networking-user-wrapper .icon-previous,
#messages #message-user .icon-previous {
	position: absolute;
	left: 10px;
	color: #123a4e;
	font-size: 25px;
	top: 15px;
}

#event-user .event-user-wrapper .close-networking-user-wrapper .icon-previous:hover,
#messages #message-user .icon-previous:hover {
	cursor: pointer;
}

#event-user .event-user-wrapper .networking-user-header span,
#message-user .event-user-wrapper .networking-user-header span {
	text-transform: capitalize;
	text-align: center;
}

#event-user .event-user-wrapper .profile_image-wrapper,
#message-user .event-user-wrapper .profile_image-wrapper {
	font-size: 75px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	background-color: #dcdcdc;
	border-radius: 100px;
	margin: 20px auto;
	text-align: center;
	position: relative;
}

#event-user .event-user-wrapper .profile_image-wrapper img,
#message-user .event-user-wrapper .profile_image-wrapper img {
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

#event-user .event-user-wrapper .icon-wrapper,
#message-user .event-user-wrapper .icon-wrapper {
	margin: 0 auto;
}

#event-user .event-user-wrapper .networking-user-button-wrapper,
#message-user .event-user-wrapper .networking-user-button-wrapper {
	text-align: center;
}

.block {
	display: block;
	text-align: center;
}

.not-bold {
	font-weight: 100;
}

#user-message-wrapper .message-wrapper .message-date-label,
#user-message-wrapper .message-wrapper .message-text-label {
	display: block;
	font-weight: 100;
	margin: 10px 0;
	text-transform: capitalize;
}

#user-message-wrapper .message-wrapper #message-date,
#user-message-wrapper .message-wrapper #message-text {
	width: 100%;
}

#user-message-wrapper .message-wrapper #message-text {
	outline: none !important;
	border:1px solid lightgray;
}


#user-message-wrapper .message-wrapper .send-request-button-wrrapper {
	margin-top: 15px;
	text-align: center;
}

#messages #messages-wrapper {
	margin-top: 15px;
}

#messages nav {
	background-color: #336683;
	padding: 15px;
	width: 100%;
}

#messages .nav-tabs {
	border-bottom: none !important;
	max-width: 1000px;
	margin: 0 auto;
}

#messages #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: #336683 !important;
	background-color: #a4d6ef !important;
	border-color: transparent transparent #f3f3f3;
}

#messages #tabs .nav-tabs .nav-link {
	border: 1px solid transparent;
	color: #eee;
	background-color: #336683;
	border: 1px solid #a4d6ef;
	color: #a4d6ef;
	padding: 5px;
}

#messages .nav-item {
	border-radius: 0 !important;
}

#messages .nav-item:last-child {
	border-top-right-radius: .5rem !important;
	border-bottom-right-radius: .5rem !important;
}

#messages .nav-item:first-child {
	border-top-left-radius: .5rem !important;
	border-bottom-left-radius: .5rem !important;
}

#messages .nav-tabs .nav-link.active{
 background-color: #a4d6ef !important; 
}

#messages #nav-tabContent {
	width: 100%;
}

#message-user {
	background-color: white;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
}

#message-user .networking-user-button-wrapper button {
	margin-bottom: 20px;
}

#message-user .networking-user-header {
	padding-bottom: 20px;
}

#all-user-messages .message-title {
	display: block;
	background-color: lightblue;
	text-transform: uppercase;
	padding-left: 10px;
}

#all-user-messages .message-content {
	display: block;
	padding: 10px;
	background-color: #f1f1f1;
}

#all-user-messages {
	width: 85%;
	margin: 0 auto 20px auto;
}

.events-wrapper .card-wrapper .card-wrapper-link:hover {
	cursor: pointer;
}

.nav-link:hover {
	cursor: pointer;
}

#register #profile_sectors,
#register #profile_interests {
	background-color: white;
	height: 100px;
	padding: 15px;
}

#register #profile_sectors_label,
#register #profile_interests_label {
	color: white;
}