/* override styles here */

@font-face {
	font-family: Rajdhani;
	src: url(../fonts/rajdhani/Rajdhani-Bold.ttf);
}

@font-face {
	font-family: Rajdhani-semibold;
	src: url(../fonts/rajdhani/Rajdhani-SemiBold.ttf);
	font-weight: 400;
}

@font-face {
	font-family: Rajdhani-Normal;
	src: url(../fonts/rajdhani/Rajdhani-Regular.ttf);
}


@font-face {
	font-family: Roboto;
	src: url(../fonts/roboto/Roboto-Regular.ttf);
}

@font-face {
	font-family: Roboto;
	src: url(../fonts/roboto/Roboto-Bold.ttf);
	font-weight: bold;
}

html {
	overflow: auto;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background-color: #EFEFF1;
	color: #757575;
}

body {
	font-family: Verdana, Arial;
    /*
    font-size: 0.85em;
    */
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100vh;
	height: auto !important;
	height: 100%;
	background-color: #EFEFF1;
	color: #757575;
}

.page {
	padding: 1em;
}

a,
a:visited,
a:active {
	color: #1da3f7;
	border-radius: 0;
}

.header {
	height: 4em;
}

.header_branding {
	width: 8em;
	cursor: pointer;
}

.spinner {
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	top: -4px;
	right: 16px;
	bottom: 0;
	width: 100px;
	width: 64px;
	height: 64px;
}

.spinner div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #888888;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.spinner div:nth-child(1) {
	left: 6px;
	animation: spinner1 0.6s infinite;
}

.spinner div:nth-child(2) {
	left: 6px;
	animation: spinner2 0.6s infinite;
}

.spinner div:nth-child(3) {
	left: 26px;
	animation: spinner2 0.6s infinite;
}

.spinner div:nth-child(4) {
	left: 45px;
	animation: spinner3 0.6s infinite;
}

@keyframes spinner1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes spinner3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}

@keyframes spinner2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(19px, 0);
	}
}

.navigation {
	overflow: hidden;
	border-bottom: 1px solid #949599;
    font-size: 1.8em;
}

.navigation .button {
	color: #757575;
	background-color: transparent;
    padding: 0.5em;
}

.navigation .button:hover {
	background-color: #e1e2e4;
	color: currentColor !important;
}
/*
.navigation .active {
	color: #367cba !important;
}

.navigation .active:hover {
	color: #367cba !important;
}
*/
.navigation_bar ul {
	margin: 0;
	padding: 0px;
	list-style: none;
}

.navigation_bar ul li {
	float: left;
}

.navigation_bar .button {
	margin-right: 2px;
}

.navigation_responsive {
	color: #367cba;
	display: none;
	cursor: pointer;
	height: 2.3em;
	border-bottom: 1px solid #949599;
}

.navigation_bars {
	padding: 0.5em;
}

.navigation_label {
	text-transform: uppercase;
	padding: 0.5em;
}

@media screen and (max-width: 768px) {
	.navigation {
		border-bottom: none;
	}
	.navigation_responsive {
		display: block;
	}
	.navigation_bar ul {
		width: 100%;
		margin: 0;
		height: auto;
		display: none;
		left: 0;
		background-color: #D9DADC;
	}
	.navigation_bar .button {
		width: 100%;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.navigation_bar ul li {
		float: none;
		border-bottom: solid 1px #333;
	}
}

@media screen and (min-width: 769px) {
	.navigation_bar ul {
		display: block !important;
	}
	.navigation {
		border-bottom: 1px solid #949599;
	}
}

.button {
	background-color: #5A5D56;
	border: none;
	border-radius: 50px;
	color: white;
	padding: 0.8em 3.8em;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	cursor: pointer;
}

.buttonsmall {
	background-color: transparent;
	color: inherit;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	border-color: #9c9c9c;
	padding: 0.2em 0.4em !important;
	margin: 0.1em;
}

.button.active:hover {
	background-color: #3470A9;
	color: #fff !important;
}
.button:hover {
	background-color: #40433D;
	color: #fff !important;
}



.button i {
	display: none;
}

.active {
	background-color: #4989c8;
	border-color: rgb(185, 105, 8);
	color: white !important;
}

.left {
	text-align: left;
}

.pull_left {
	float: left;
}

.pull_right {
	float: right;
}

.sync {
	margin-left: 0.5em;
	float: right;
	position: relative !important;
	left: 0.0em !important;
	top: 0.2em !important;
	color: #bbbbbb;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.sync:hover {
	color: #888888;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	font-size: 26px;
}

.sync2 {
	font-size: 26px;
}

.content {
	position: relative;
	padding: 1.0em;
	min-height: 100%;
	overflow: hidden;
}

.content .button {
	margin-top: 0.4em;
	margin-right: 0.4em;
	font-size: 0.8em;
}
/* OLD
.footer {
	position: static;
	bottom: 1em;
	margin-left: 1em;
	right: 1em;
	padding: 0.4em;
	font-size: 0.8em;
	text-align: left;
}
*/


#footer {
	display: block;
	margin-top: auto !important;
	/*position: fixed;*/ 
	left: 0;
	bottom: 0;
	width:100%;
  }
  
  .foot {
	background: #000;
  }
  .foot ul {
	padding: 20px 0 0 0;
	margin-bottom: 0;
	display: inline-block;
	float: inherit;
  }
  .foot ul li {
	float: left;
	padding: 14px 12px 6px 12px;
	font: normal normal bold 14px/22px "Rajdhani";
	letter-spacing: 0px;
	text-transform: uppercase;
	list-style-type: none;
  }
  .foot ul li a, .foot ul li a:visited {
	text-decoration: none;
	color: #FFFFFF;
  }

  @media (max-width: 674px) {
	.foot ul li {
	  float: inherit;
	}
  }
  .foot p {
	text-align: center;
	font: normal normal 400 12px/22px "Rajdhani";
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: uppercase;
	opacity: 0.49;
	margin-bottom: 2rem;
  }
  @media (max-width: 674px) {
	.foot p {
	  padding: auto 30px;
	}
  }

.notifications {
	z-index: 99999;
	position: fixed;
	top: 0;
	right: 0;
	margin: 1em;
}

.notification {
	display: none;
	padding: 1em;
	margin: 1em;
	margin-bottom: 0.5em;
	background-color: red;
	color: white;
	cursor: pointer;
	-webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
}

.info {
	background-color: #4A89DC;
}

.success {
	background-color: #37BC9B;
}

.table_green td {
	border-left: none !important;
	border-right: none !important;
	background-color: #37BC9B;
	color: white;
}

.table_green td:nth-of-type(2) {
	width: 1%;
	word-break: normal;
	white-space: nowrap;
}

.warning {
	background-color: #F6BB42;
}

.error {
	background-color: #DA4453;
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}

.modal {
    width: 90%;
    max-width: 600px;
    display: inherit;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
    bottom: auto;
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.modalFlex {
	max-width: 1700px !important;
	max-height:	90%;
}

.scrollable {
    display: block;
    max-height: calc(90vh - 130px); /* !ugly!... but works */
    overflow: auto;
    font-size: 90%;
}

.scrollable .buttonsmall {
	padding: 0.0em 0.2em !important;
}

.sortArrow i {
	padding-left: 0.5em;
}

.message {
	margin-bottom: 25px;
    text-align: left;
}

.box {
	background-color: #303030;
	/*padding: 1.0em;*/
    padding: 15px;
}

.input {
	border: solid 1px #4f4f4f !important;
	font-size: 1em;
	padding: 0.4em;
	background-color: transparent !important;
	color: #4f4f4f !important;
}

.modal .input {
	border: solid 1px #367cba !important;
	color: #367cba !important;
}

.space_left {
	margin-left: 1em;
}

.space_left_large {
	margin-left: 4em;
}

.convertorganization {
	margin: 1em;
}

.convertorganizationline {
	text-align: center;
	margin: 0.5em;
}

.convertorganizationdisabled {
	opacity: 0.6;
	pointer-events: none;
}


.centered {
	text-align: center;
}

.spacer_bottom {
	margin-bottom: 0.5em;
}

.section {
	display: none;
}

.status_content .label {
	color: #367cba;
	margin-bottom: 0.5em;
}

.status_content .list {
	margin-bottom: 1em;
}

.status_content .list:nth-of-type(1) td {
	padding: 0;
}

.status_content .list:nth-of-type(1) div {
	padding: 0.5em;
	color: white;
}

.table_information_list td:first-child {
	word-break: normal;
	white-space: nowrap;
	width: 1%;
}

.table_licensed_for_list td {
	border-left: none !important;
	border-right: none !important;
}

.table_licensed_for_list td:nth-of-type(2) {
	width: 1%;
	word-break: normal;
	white-space: nowrap;
}

.label {}

.listitem {
	background-color: #444444;
	padding: 0.5em;
	margin-bottom: 0.2em;
}

.list {
	width: 100%;
	border-collapse: collapse;
	background-color: #E1E2E4;
	border-style: hidden;
}

.list th {
	background-color: #555555;
	color: #367cba;
}

.list th,
td {
	word-break: normal;
	padding: 0.5em;
}

.overlay .modal .list {
    width: 100%;
    border-collapse: collapse;
    background-color: inherit;
    border-style: hidden;
}

.overlay .modal .list tr td {
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.modaltitle {
	padding-bottom: 1em;
}

.organization_content .list tr {
	border-bottom: 1px solid rgb(197, 197, 197);
	vertical-align: top;
}

.list_separator {
	height: 0.5em;
	background-color: #CCCCCC;
}

.table_cell {
	display: table-cell;
}

.content, .overlay .dropdown {
  color: #ffffff;
  padding: 4px 12px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  background-color: #666666;
  cursor: pointer;
}

.highlight {
	color: #367cba;
}

.highlight_half {
	color: #777777;
}

.highlight_full {
	color: #eeeeee;
}

.profile_content .list {
	margin-bottom: 1em;
}

.profile_content .list td:first-child {
	word-break: normal;
	white-space: nowrap;
	width: 1%;
}

.organization_content .list td:first-child {
/*	width: 1%; */
}

.licenses_disabled {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.item {
	float: left;
}

.dateTable .item {
	width: 100%;
}

.usedlicensetable {
	display: flex;
	flex-wrap: wrap;
}
.usedlicensetable .dateTable .button {
	margin: 0.2em;
}
.usedlicensetable .dateTable td {
	padding: 0.1em;
}
.usedlicensetable .item {
	min-width: 20em;
	width: 33.3333%;
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
}

.usedlicensetable .item_content {
	padding: 0.2em 1em;
	margin-right: 1em;
	margin-bottom: 0.5em;
	background-color: #e5e6e7;
	border-radius: 6.0px;
	width: 100%;
}

/*
.usedlicensegridview .item{
	border: solid 1px rgba(0, 0, 0, 10%) !important;
	border-radius: 6px !important;
}
*/
.usedlicensegridview .item {
	width: 100%;
	margin-right: 0em;
}

.item_header {
	color: #367cba !important;
	font-size: 1.2em;
    text-decoration: none !important;
    cursor: default;
}

.license_header {
	color: #757575;
	font-size: 1.0em;
    text-decoration: none;
	cursor: default;
	font-weight: 600;
}

.item_description i {
	width: 1em;
	text-align: center;
	margin-right: 0.5em;
}

.item_description_selected i {
	color: #367cba !important;
	width: 1em;
	text-align: center;
	margin-right: 0.5em;
}

.item_disabled {
	filter: brightness(60%);
	pointer-events: none;
}

.headerpopup {
	color: #818286;
	font-size: 1.2em;
	display: inline !important;
	position: inherit !important;
	margin-left: 0.5em;
}

.slider {
	margin-bottom: 0.5em;
}

.slider_head {
	position: relative;
	/*height: 0.8em;*/
	overflow: hidden;
	white-space: nowrap;
	background-color: #D3D3D3;
	padding: 1em;
	padding-right: .65em !important;
	border-radius:10px 10px 0 0;	

}

.slider_head div {
	display: inline-block;
}

.slider_label {
	color: #26292C;
	display: inline-block;
}

.organization_content .slider_label {
	font-weight: 600;
}

.slider_content {
	height: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
}

.store_content .list {
	margin-bottom: 1em;
}

.store_content .list td:nth-child(2) {
	word-break: normal;
	white-space: nowrap;
	width: 1%;
}

.store_content .active {
	color: white !important;
}

.rounded {
	padding: 0.2em 1.0em 0.2em 1.0em;
	border-radius: 4px;
	margin-right: 0.5em;
}

.green {
	background-color: #37BC9B;
	color: white;
}

.redicon {
	color: #DE0000;
}

.red {
	background-color: rgb(148, 77, 77);
	color: white;
}


/* portal */

.portal_header {
    min-height: 70px;
    background-color: #ffffff;
}

.portal_header_branding {
    overflow: hidden;
    padding: 0 20px;
    float: left;
    font-size: 20px;
    line-height: 22px;
    margin: 12.5px 0;
    height: 45px;
    width: 270px;
}

.portal_page {
    background-color: #efeff0;
}

#contentpane {
    /*font-size: 0.85em;*/
    padding-bottom: 1em;
    max-width: 1800px !important;
}

.active_b {
    background-color: transparent !important;
}

.active_a {
    position: relative;
    color: #ffffff !important;
}

.active_a a {
    color: #ffffff !important;
    text-decoration: none;
    cursor: default;
}

.active_c {
    position: relative;
    color: #367cba !important;
}

.active_c a {
    color: #367cba !important;
    text-decoration: none;
    cursor: default;
}

.organization_content {
	/* margin-bottom: 3em;*/
}

.organization_content .slider_head i {
    display: none;
}

.organization_content .dropdown {
	border: 0px;
	color: inherit !important;
	background-color: inherit !important;
}

#pid {
    text-align: center;
    font-size: 0.8em;
    padding-bottom: 1em;
}

.organization_content .slider_content {
	height: inherit !important;
	background-color: #ffffff;
	padding:20px;
}

.organization_content .list {
	background-color: #ffffff;
}

.organization_content .list tr {
	background-color: #ffffff;
}

.item_description {
	font-size: 0.90em;
}

.item_description_selected {
    color: #367cba !important;
	font-size: 0.90em;
/*	font-weight: 600; */
}

.dateTable {
	width: 100%;
	word-break: keep-all;	
	white-space: nowrap;
}
.dateTable table {
	background-color: transparent;
}
.dateTable td {
	padding: 0.1em;
}

.dateTable .list tr {
	border: 0 !important;
/*	border-bottom: 1px solid #c3c3c3 !important;*/
}
.dateTable tr {
	background-color: transparent;
}

#outer-dropzone {
  height: 140px;
}

#inner-dropzone {
  height: 80px;
}

.hidden {
	display: none !important;
}

.ui-draggable-dragging {
	border-radius: 8px;
	opacity: 0.7;
	padding: 4px;
	background-color: rgba(187, 255, 155, 0.3);
	-webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
}

.inlineblock {
	display: inline-block;
}

.inline {
	display: inline;
}

.organizationTabs {
	border-left: none;
	border-right: none;
	border-top: none;
	width: 100%;
}

.organizationTabs .organizationalDiv {
	margin: 0.5em 1.7em;
}

.organizationTabs .sync {
	vertical-align: middle;
	margin-left: 0.em;
    float: initial;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;	
    color: #bbbbbb;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.organizationTabs .sync2 {
	float: right;
	cursor: pointer;
}

.organizationTabs tr {
	background-color: transparent !important;
}

.organizationTabs td {
	padding: 0.1em;
	padding-bottom: 0.5em;
}

.absolutbottom {
    position: absolute;
    bottom: 5px;
    left: 0px;
	width: 100%;
	text-align: center;
	margin-right: 0em;
}

.userFileEdit {
	padding: 0.3em;
	border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: #9c9c9c !important;
}

.hiddenOpacity {
	opacity: 0;
}

.animate {
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.assignmentReleaseX {
	position: absolute;
	right: 0.3em;
	top: 0.3em;
	margin-right: 0.0 !important;
	opacity: 0.5;
	cursor: pointer;
}

.assignmentgroup {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding-top: 0.3em;
	min-height: 6em;
}

.assignmentgroup2 {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding-top: 0.3em;
}

.labelassignment {
/*	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(165, 164, 164);
*/
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	background-color: rgb(216, 216, 216);
	border-color: rgb(184, 184, 184);
	border-style: solid;
	border-width: 1px;
	padding: 0.25em 0.5em;
	min-width: 12em;
	text-align: center;
	text-decoration: none;
	margin: 0.1em;
	margin-right: 0.65em;
	margin-bottom: 0.65em;
	position: relative;
/*
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.10);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.10);
*/
}

.labelassignment2 {
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	background-color: rgb(216, 216, 216);
	border-color: rgb(184, 184, 184);
	border-style: solid;
	border-width: 1px;
	padding: 0.25em 0.5em;
	min-width: 12em;
	text-align: center;
	text-decoration: none;
	margin: 0.1em;
	margin-right: 0.65em;
	margin-bottom: 0.65em;
	position: relative;
/*
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.10);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.10);
*/
}

.labelassignmentLeft {
	text-align: left;
	display: block;
}

.labelassignmentCurrent {
    background-color: rgb(206, 224, 212);
    border-color: rgb(102, 160, 119);
	border-style: solid;
	border-width: 1px;
}

.assignmentgroupbottom{
	padding-bottom: 3em;
}

.labelpill {
	font-size: 0.75em;
	margin: 0.1em;
	border-radius: 4px;
	background-color: rgb(109, 170, 221);
	border: none;
	color: white;
	padding: 0.25em 0.5em;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.organization_content .slider_content .labelpill {
	font-size: 10pt !important;
}

.labelorganization {
	margin: 0.1em;
	border-radius: 4px;
	color: #757575;
	background-color: rgb(240, 240, 240);
	border: none;
	padding: 0.25em 0.5em;
	margin-right: 0.5em;
	text-decoration: none;
	font-size: 130%;
	cursor: pointer;
}

.labelorganizationsmall {
	margin: 0.1em;
	border-radius: 4px;
	color: #757575;
	background-color: rgb(240, 240, 240);
	border: none;
	padding: 0.25em 0.5em;
	margin-right: 0.5em;
	text-decoration: none;
	font-size: 80%;
}

.licenses_content .labelorganizationsmall {
	background-color: rgb(199, 199, 199);
}

.licenses_content .slider_content {
	padding-right: 0em !important;
}

.fullwidth {
	width: 100%;
}

.labelcontract {
	margin: 0.1em;
	border: none;
	padding: 0.4em 0.1em;
	margin-top: 2px;
	text-decoration: none;
/*	border-bottom: 1px solid #cccccc !important;*/

}

.labelstatus {
	margin: 0.1em;
	border-radius: 4px;
	background-color: rgb(109, 170, 221);
	border: none;
	color: white;
	padding: 0.1em 0.5em;
	text-align: center;
	text-decoration: none;
}

.labellicenseassignment {
	background-color: rgb(200, 200, 200);
	color: #757575;
	font-size: 90%;
	white-space: nowrap;
	padding-left: 1.2em !important;
	padding-right: 0.2em !important;
}
.labellicenseassignment i {
	margin-left: 0.1em;
	margin-right: 0.0;
	vertical-align: auto;
	opacity: 0%;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.labellicenseassignmenthover {
	opacity: 1 !important;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.labelorgadmin {
	background-color: rgb(190, 210, 190);
}
.labelgreen {
	background-color: rgb(109, 221, 118);
	color: white;
}
.labelred {
	background-color: rgb(221, 109, 109);
	color: white;
}
.labellicenseuser {
	color: #757575;
	background-color: #F4EBD7 !important;
}
.labellicensegroup {
	color: #757575;
	background-color: #D4E5F5 !important;
}
.labellicenses {
	color: #5d7464;
	background-color: #E2F4D7 !important;
}
.labellicensefree {
	color: #757575;
	background-color: rgb(200, 200, 200) !important;
	margin: 0.1em !important;
	padding-left: 0.3em !important;
	padding-right: 0.3em !important;
}
.labellicensefree {
	color: #757575;
	background-color: rgb(200, 200, 200) !important;
	margin: 0.1em !important;
	padding-left: 0.3em !important;
	padding-right: 0.3em !important;
}
.labelbar {
	background-image: url("../img/bar.png");
	background-repeat: no-repeat;
	background-size: 0% 100%;
}

.hovermenuitem {
	opacity: 0;
    text-align: end;
	width: 100%;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.hovermenuitem:hover {
	opacity: 1 !important;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.hovermenuline tr:hover .hovermenuitem {
	opacity: 0.5;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.usernormal {
	color: rgb(156, 152, 140) !important;
}
.useradmin {
	color: rgb(140, 145, 152) !important;
}
.userself {
}

.drop-active {
	border-radius: 6px;
	background-color: rgb(235, 235, 235) !important;
/*  border-color: #aaa;
  border: solid 2px green;
*/
}

.drop-active td {
	background-color: rgb(235, 235, 235) !important;
/*  border-color: #aaa;
  border: solid 2px green;
*/
}

.drop-hover {
	border-radius: 6px;
	background-color: rgb(187, 255, 155) !important;
/*	border-color: #aaa;
	border: solid 2px rgb(247, 182, 42);
*/
}

.drop-hover td {
	background-color: rgb(187, 255, 155) !important;
/*	border-color: #aaa;
	border: solid 2px rgb(247, 182, 42);
*/
}

.inviteFormList {
    margin: auto;
    text-align: left !important;
}

.inviteFormList .label{
    background-color: transparent;
    color: #367cba;
}

.inviteFormList textarea {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
            width: 100%;
}

.inviteFormList input {
    width: 100%;
}

.inviteFormList td {
    vertical-align: top;
}

.startHidden{
	display: none;
}

.mainSlider > .slider_head {
    background-color: transparent;
    font-size: 1.6em;
    padding: 0;
    height: 1.6em;
}

.mainSlider > .slider_head i {
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.slider_head i {
	cursor: pointer;
}

.slider_labelcontainer {
	color: inherit;
	display: inline-block;
	cursor: pointer;
}

.mainSlider > .slider_head > .slider_labelcontainer > .slider_label {
	color: inherit;
	display: inline-block;
}

.mainSlider > .slider_head:hover {
    color: #444444 !important;
}

.mainSlider > .slider_content {
    border-top: 1px solid #949599;
    padding: 1em;
    padding-top: 0.5em;
}

.modal_buttons {
    text-align: center;
}

.modal_buttons .button {
    height: 40px;
    line-height: 40px;
    padding-top: 0px;
    padding-bottom: 0px;
    vertical-align: middle;
}

.cols {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0;
}

.col {
	flex: 1;
	margin: 12px;
	/* &:first-child { margin-left: 0; } */
	/* &:last-child { margin-right: 0; } */
}

.organization_content .col{
	margin-right:20px;
	margin-left:20px;

}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: searchfield-cancel-button !important;
}

/*
table, th, td {
  border: 1px solid black !important;
}
*/

#tourText {
    margin-bottom: 1em;
}

/*
#header .navbar .navbar-header .navbar-brand:before, .navbar-full-logo .navbar-header .navbar-brand:before 
{
    background-image: url(../img/headerLogo.svg) !important;
}
*/

/* New Header */
.content-main{
	margin-top:83px;
	overflow:hidden;
}

.topNav {
	height: 80px;
	background-color: #000;
	transition: height 0.3s;
  }
  /* override some whack styles interfering with bootstrap */
  .topNav .col{
	margin:0px;
	background:none;
  }
  .topNav.stickyEngaged {
	height: 0px;
  }
  .topNav .dropdown {
	display: inline-block;
	height: 40px;
  }
  .topNav .logoBox {
	margin: 16px 20px;
	height: 52px;
	width: 170px;
	display: inline-block;
	background: url("../img/Maxon-Logo-Aug2022.svg") no-repeat;
  }
  @media (max-width: 750px) {
	.topNav .logoBox {
	  width: 40px;
	  background: url("../img/Maxon-Mark.svg") no-repeat;
	}
  }
  .topNav .profileBox {
	padding: 30px 30px;
  }
  .topNav .profileBox .customerMenu {
	inset: 6px auto auto -50px !important;
	border-radius: 0px 0px 15px 15px;
  }
  .topNav .profileBox .customerMenu a.dropdown-item, .topNav .profileBox .customerMenu a.dropdown-item:hover, .topNav .profileBox .customerMenu a.dropdown-item:visited {
	text-align: left;
	font: normal normal normal 16px/30px "Rajdhani-Normal";
	letter-spacing: 0px;
	color: #020202;
	padding:0px 20px;
	text-transform: uppercase;
  }
  .topNav .profileBox .customerMenu .dropdown-item:hover {
	background-color: #EFEFEF;
  }
  .topNav .profileBox a#dropdownMenuButton, .topNav .profileBox a#dropdownMenuButton:hover, .topNav .profileBox a#cdropdownMenuButton:visited {
	font: normal normal bold 16px/21px "Rajdhani";
	letter-spacing: 0.16px;
	text-decoration: none;
	color: #FFFFFF;
	display: inline-block;
	height: 38px;
  }
  .topNav .profileBox a#dropdownMenuButton:before, .topNav .profileBox a#dropdownMenuButton:hover:before, .topNav .profileBox a#cdropdownMenuButton:visited:before {
	content: "";
	display: inline-block;
	background: url("../img/person.svg") no-repeat 0px 2px;
	width: 27px;
	height: 22px;
	vertical-align: middle;
  }
  .topNav .profileBox a#dropdownMenuButton.show, .topNav .profileBox a#dropdownMenuButton:hover.show, .topNav .profileBox a#cdropdownMenuButton:visited.show {
	background: url("../img/arrow.svg") no-repeat 50% 33px;
  }
  .topNav .profileBox .navbar-bag {
	font: normal normal bold 16px/21px "Rajdhani";
	letter-spacing: 0.16px;
	text-decoration: none;
	color: #FFFFFF;
	width: 27px;
	background: url("../img/Bag_Icon.svg") no-repeat 0px 2px;
	height: 27px;
	display: inline-block;
	margin-left: 15px;
  }
  .topNav .profileBox .navbar-bag .bag-count {
	display: none;
  }
  .topNav .profileBox .navbar-bag.with-items {
	background: url("../img/Bag_Count_Icon.svg") no-repeat 0px 2px;
  }
  .topNav .profileBox .navbar-bag.with-items .bag-count {
	display: inline-block;
	position: relative;
	top: 9px;
	left: -8px;
	font-size: 13px;
	color: #000;
  }

  .secNav {
	top: 80px;
	padding-top: 0px;
	height: 81px;
	background-color: #40474D;
  }
  .secNav.stickyEngaged {
	z-index: 1030;
	top: 0px;
  }
  .secNav .container-fluid {
	padding: 0px;
  }
  .secNav .navbar-brand {
	display: inline-block;
	float: inherit;
	font: normal normal bold 20px/26px "Rajdhani";
	letter-spacing: 0.2px;
	color: #FFFFFF;
	padding-top: 8px;
	opacity: 1;
	text-transform: uppercase;
	text-decoration: none;
	margin-right:2rem;
  }
  @media (max-width: 767px) {
	.secNav .navbar-brand {
	  padding: 20px 15px;
	  width: 100%;
	}
  }
  .secNav .navbar-brand .arrow {
	float: right;
	padding: 10px;
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	-ms-transition: -ms-transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	display: none;
  }
  @media (max-width: 767px) {
	.secNav .navbar-brand .arrow {
	  display: block;
	}
  }
  .secNav .navbar-brand .arrow.open {
	transform: rotate(180deg);
  }
  .secNav .navbar-collapse {
	width: auto;
	flex-grow: inherit;

  }
  @media (max-width: 767px) {
	.secNav .navbar-collapse {
	  width: 100%;
	}
  }
  .secNav ul {
	background-color: #40474D;
  }
  .secNav ul li.nav-item {
	font: normal normal 600 16px/22px "Rajdhani-semibold";
	letter-spacing: 0px;
	padding: 8px;
	text-transform: uppercase;
	list-style-type: none;
  }
  @media (max-width: 767px) {
	.secNav ul li.nav-item {
	  padding: 8px;
	  border-bottom: 1px solid #4A535A;
	}
  }
  .secNav ul li.nav-item a {
	text-decoration: none;
	margin-top: 5px;
	color: #9FA3A5;
	letter-spacing: .16px;
  }
  .secNav ul li.nav-item a:hover {
	color: #fff;
  }
  .secNav ul li.nav-item.active{
	  background: none;
	  border:none;
  }
  .secNav ul li.nav-item.active a {
	color: #fff;
  }
  .secNav .secNavContent {
	padding: 15px;
	text-align: center;
  }
  @media (max-width: 576px) {
	.secNav .secNavContent {
	  text-align: left;
	}
  }
  

/* /New Header */

.sort_placeholder {
    background-color: #eee;
}

.infobanner {
	padding: 1em;
	margin-right: 1em;
	margin-left: 1em;
	margin-bottom: 1em;
	background-color: rgb(221, 215, 191);
	border-radius: 6px;
	min-height: 5em;
}

.infobannerLeft {
	width: 100%;
}

.infobannerRight {
	padding-left: 0.5em;
	float: right;
}

.betabanner {
	display: flex;
	padding: 1em;
	margin-right: 0.0em;
	margin-left: 0.0em;
	margin-bottom: 1em;
	background-color: rgb(221, 193, 191);
	border-radius: 6px;
}

.betabannerLeft {
	width: 100%;
}

.betabannerRight {
	padding-left: 2em;
}

.downloadsection {
	text-align: center;
}

#sort3 .item_description {
    word-break: break-word;
    min-width: 200px;
}

@media only screen and (max-width: 400px) {
	/* For mobile phones: */
	#sort3 .item_description {
		word-break: break-word;
		min-width: 120px;
	}
}
	

.active_c {
    position: relative;
    color: #367cba !important;
}

.active_c a {
    color: #367cba !important;
    text-decoration: none;
    cursor: default;
}


/* imported styles from ../bootstrap10/styles.css */

.profile-tabs {
    font-size: 24px;
    list-style: none;
    margin: 0;
    text-align: center;
    padding-top: 20px
}

.profile-tabs li {
    display: inline-block;
    margin: 0 1em
}

.profile-tabs li a {
    display: block;
    line-height: 1em;
    padding: 0 0 1em 0;
    color: #8a8c8f;
	text-decoration: none;
}

.profile-tabs li a.active {
    position: relative;
    color: #367cba
}

.profile-tabs li a.active:after {
    position: absolute;
    bottom: 0;
    left: calc(50% - 5px);
    content: "";
    border: 10px transparent solid;
    border-bottom: 18px solid #e1e2e3
}

#myAccount #content .breadcrumb-wrapper .breadcrumb .page-header,#myAccount #content .breadcrumb-wrapper .breadcrumb .profile-tabs-holder>*,#myAccount #content .container-dynamic .page-header,#myAccount #content .container-dynamic .profile-tabs-holder>*,.breadcrumb-wrapper #myAccount #content .breadcrumb .page-header,.breadcrumb-wrapper #myAccount #content .breadcrumb .profile-tabs-holder>* {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

#myAccount #content .breadcrumb-wrapper .breadcrumb .profile-tabs-holder,#myAccount #content .container-dynamic .profile-tabs-holder,.breadcrumb-wrapper #myAccount #content .breadcrumb .profile-tabs-holder {
    /* author: anoop */
	background-color: #e1e2e3;  
    padding: 3em 15px 122px 15px;
    position: relative
}



.modal{
	height:auto;
}


/* manage table */

table.manageTable, table.legacyOrdersTable{
	width:100%;
}

table.manageTable tr td a.renewTooltip{
	color:red !important;
	text-decoration: none;
	cursor: pointer;	
}

table.manageTable tr th:first-child {
    border-radius: 8px 0px 0px 0px;
}
table.manageTable tr th:last-child {
    border-radius: 0px 8px 0px 0px;
}

table.manageTable tr.lastRow td:first-child {
    border-radius: 0px 0px 0px 8px;
}
table.manageTable tr.lastRow td:last-child {
    border-radius: 0px 0px 8px 0px;
}

table.manageTable th{
	background-color: #D3D3D3;
	padding:24px 20px;
}
table.manageTable tr{
	background-color: #FFFFFF;
}
table.manageTable tr td{
	padding:14px 20px;
}
table.manageTable tr.exp td{

	color:#dadada;
}

table.manageTable tr td.emptyTable{
	text-align: center;
	font-style: italic;

}


table.legacyOrdersTable th{
	background-color:none;
	padding:24px 20px;
	text-transform: uppercase;
}
table.legacyOrdersTable tr.b{
	background-color: #E5E7E9;
}
table.legacyOrdersTable tr.a{
	background-color: none;
}
table.legacyOrdersTable tr td{
	padding:14px 20px;
}

table.legacyOrderItemTable{
	margin:20px 0px;
}

table.legacyOrderItemTable tr td, table.legacyOrderItemTable tr th{
	padding:0px 20px 0 0;
}

#invoiceButton{
	margin-bottom:20px;
}

.rightButtonContainer{
	width:100%;
	padding: 20px 0px;
	text-align: right;
}

.messageContainer{
	width:100%;
	padding: 0px;
	text-align: center;
}

.leftButtonContainer{
	width:100%;
	padding: 20px 0px;
	text-align: left;
}

table.renewalModalTable {
	margin-bottom:20px;
}
table.renewalModalTable tr td{
	font-weight: normal;
}
table.renewalModalTable tr td.highlight{
	color: #ff4040	;
}

table.renewalModalTable tr th{
	padding:0.5em;
}


#management{
	width: 90%;
	margin:auto;
}

.serialsList{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.pagination{
	padding-top:20px;
}

select#manage_locale{
	color:#000 !important; 
	background-color: #fff !important;
}

.pageNumberButton{
	margin:0px 10px;
}

.headBanner {
	display: inline-block;
	position: relative;
	margin-top: 78px;
	height: 220px;
	background: url("../img/headBg.png") no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
  }
  .headBanner h1 {
	padding-top: 72px;
	text-align: center;
	letter-spacing: 0px;
	text-transform: uppercase;
	color: #FFFFFF;
	font: normal normal bold 60px/50px "Rajdhani";
  }


  /* redesign styyles */

  .mainBody {
	padding: 0px;
	font-family: Roboto;
  }
  .mainBody.row{
	padding:30px;
  }
  .mainBody .tableWithHead {
	width: 100%;
	 /* author: anoop */
	color:#343434;
	/*last row*/
  }
  .mainBody .tableWithHead tr:last-child td:first-child {
	 /* author: anoop */

	border-radius: 0px 0px 0px 8px;
  }
  .mainBody .tableWithHead tr:last-child td:last-child {
	border-radius: 0px 0px 8px 0px;
  }

  .mainBody .tableWithHead tr td.noneYet {
	border-radius: 0px 0px 8px 8px !important;
	text-align: center;
  }

  .mainBody .tableWithHead tr{
	 /* author: anoop */
	  border-top: 1px solid #e3e3e3;
  }
  .mainBody .tableWithHead tr.expired {
	color: #A0A0A0;
  }
  .mainBody .tableWithHead tr th:first-child {
	border-radius: 8px 0px 0px 0px;
  }
  .mainBody .tableWithHead tr th:last-child {
	border-radius: 0px 8px 0px 0px;
  }
  .mainBody .tableWithHead tr th {
	padding: 24px 20px;
	font-weight: bold;
	background: #D3D3D3 0% 0% no-repeat padding-box;
  }
  .mainBody .tableWithHead tr td {
	background: #ffffff 0% 0% no-repeat padding-box;
	padding: 14px 20px;
  }
  .mainBody .tableWithHead tr td a, .mainBody .tableWithHead tr td a:hover, .mainBody .tableWithHead tr td a:visited, .mainBody .tableWithHead tr td a:active {
	text-decoration: none;
	color: #4989C8;
  }
  .mainBody .tableWithHead tr td.na {
	color: #E3E3E3;
  }
  .mainBody .tableWithHead a{
	  cursor: pointer;
  }
 
  .mainBody .infoBox {
	margin: 20px 0px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #D8D8D8;
	border-radius: 8px;
	padding: 0px;
  }
  .mainBody .infoBox .infoBoxInner {
	padding: 45px 20px;
	min-height: 265px;
	text-align: left;
	font: normal normal normal 16px/24px Roboto;
	letter-spacing: 0.16px;
  }
  .mainBody .infoBox .infoBoxInner h3 {
	font: normal normal bold 16px/24px Roboto;
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.16px;
	color: #26292C;
  }
  .mainBody .infoBox .infoBoxInner h3 span.info {
	height: 17px;
	width: 22px;
	cursor: pointer;
	background: url("../img/infoIcon.svg") no-repeat 5px 0px;
	display: inline-block;
  }
  .mainBody .infoBox .infoBoxInner p.grey {
	color: #A7A8A8;
  }
  .mainBody .infoBox .infoBoxInner p.italic {
	font-style: italic;
  }
  .mainBody .infoBox .infoBoxHead {
	text-align: center;
	background: #E3E3E3 0% 0% no-repeat padding-box;
	border-radius: 8px 8px 0px 0px;
	padding: 24px 0px 20px 0px;
  }
  .mainBody .infoBox .infoBoxHead h3 {
	padding: 0px;
	margin: 0px;
	font: normal normal bold 22px/24px "Rajdhani";
	letter-spacing: 0.22px;
	color: #26292C;
	text-transform: uppercase;
  }
  .mainBody .infoBox .infoBoxEdit {
	text-align: right;
	padding: 12px;
  }
  .mainBody .infoBox .infoBoxEdit a, .mainBody .infoBox .infoBoxEdit a:hover, .mainBody .infoBox .infoBoxEdit a:visited {
	font: normal normal bold 16px/21px "Rajdhani";
	letter-spacing: 0.16px;
	text-decoration: none;
	color: #FFFFFF;
	display: inline-block;
  }
  .mainBody .infoBox .infoBoxEdit a:before, .mainBody .infoBox .infoBoxEdit a:hover:before, .mainBody .infoBox .infoBoxEdit a:visited:before {
	content: "";
	display: inline-block;
	background: url("../img/editIcon.svg") no-repeat 0px 0px;
	width: 27px;
	height: 22px;
	vertical-align: middle;
  }

  /* redesign icons */
  .iconExclamation:before{
	content: "";
	display: inline-block;
	background: url("../img/Alert_Icon.svg") no-repeat 0px 0px;
	width: 16px;
	height: 16px;
	vertical-align: middle;
  }

  .iconUserLock:before{ 
	content: "";
	display: inline-block;
	background: url("../img/User_Locked_Icon.svg") no-repeat 0px 0px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }

  .iconUser:before{
	content: "";
	display: inline-block;
	background: url("../img/User_Icon.svg") no-repeat 0px 0px;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	vertical-align: middle;
  }

  .iconUserLockRed:before{
	content: "";
	display: inline-block;
	background: url("../img/User_Locked_Me_Icon.svg") no-repeat 0px 0px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }
  .iconUserCog:before{
	content: "";
	display: inline-block;
	background: url("../img/User_Settings_Icon.svg") no-repeat 0px 0px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }

  .iconEllipsis:before{
	content: "";
	display: inline-block;
	background: url("../img/Ellipsis_Icon.svg") no-repeat 0px 6px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }
  .smallEllipsis:before{
	  width: 14px;
	  height:12px;
  }

  .iconFilter:before{
	content: "";
	display: inline-block;
	background: url("../img/Filter_Icon.svg") no-repeat 0px 0px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }

  .iconAdd:before{
	content: "";
	display: inline-block;
	background: url("../img/Plus_Icon.svg") no-repeat 0px 0px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }
  .iconOptions:before{
	content: "";
	display: inline-block;
	background: url("../img/Options_Icon.svg") no-repeat 0px 0px;
	width: 20px;
	height: 18px;
	margin-right: 4px;
	vertical-align: middle;
  }
  .iconSync:before{
	content: "";
	display: inline-block;
	background: url("../img/Refresh_Icon_BG.svg") no-repeat 0px 0px;
	width: 36px;
	height: 36px;
	margin-right: 4px;
	vertical-align: middle;
  }

  .limitedWidth .slider{
	max-width: 900px;
	margin:auto;
  }

  .extLink{
	text-decoration: none;
  }
  .extLink:after{
	content: " \000BB";
  }  

   /* author: anoop */
  /* This style was added becasue we wanted the license page to look like team dashboard page.
 	DI- 525 
  */

  body{
	background-color: #fff !important;
  }

  div.mainBody{
	padding-left: 0px !important;
	padding-right: 0px !important;
  }


  .profile-tabs-holder{
	background-color: #fff;
  }

  table.tableWithHead {
	border-collapse: separate;
	border-spacing:0 0px;
 }

  /* Table header Styles */
  .tableWithHead>thead>tr>th{
	background-color: #f6faff !important;
	color: #4989c8 !important;
	box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  }

  .tableWithHead>thead>tr>th:first-child{
	width: 25%;
	border-left: 1px solid #d9dfe5;
	border-top: 1px solid #d9dfe5;
	border-bottom: 1px solid #d9dfe5;
  }

  .tableWithHead>thead>tr>th{
	border-bottom: 1px solid #d9dfe5;
	border-top: 1px solid #d9dfe5;

  }
  .tableWithHead>thead>tr>th:last-child {
    border-right: 1px solid #d9dfe5;
}

/* Table Body Styles */

.tableWithHead>tbody>tr>td:first-child{
	border-left: 1px solid #d9dfe5;
	border-bottom: 1px solid #d9dfe5;
  }

  .tableWithHead>tbody>tr>td{
	border-bottom: 1px solid #d9dfe5;

  }
  .tableWithHead>tbody>tr>td:last-child {
    border-right: 1px solid #d9dfe5;
}


  .mainBody .tableWithHead tr th{
	padding: 0.5rem;
  }

  .mainBody .tableWithHead tr td{
	padding: 1.2rem;
  }

  /* Tool Tip Color Changes */
.tooltip-inner {
background-color: #788693;
box-shadow: 0px 0px 4px #788693;
opacity: 1 !important;
}
.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #788693 !important;
}
.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #788693 !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #788693 !important;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #788693 !important;
}

/* Manage and order table styles */

table.manageTable th {
	background-color: #f6faff !important;
	color: #4989c8 !important;
	padding: 0.5rem;
	border-bottom: 1px solid #d9dfe5;
  }
  
  table.legacyOrdersTable th {
	background-color: #f6faff !important;
	color: #4989c8 !important;
	padding: 0.5rem;
	padding-left: 1rem;
	border-bottom: 1px solid #d9dfe5;
  }
  
  table.legacyOrdersTable th:first-child {
	border-radius: 8px 0px 0px 0px;
  }
  
  table.legacyOrdersTable th:last-child {
	border-radius: 0px 8px 0px 0px;
  }
  
  table.legacyOrdersTable tr.b {
	background-color: #fff;
	border-bottom: 1px solid #d9dfe5;
  }
  
  table.legacyOrdersTable tr.a {
	background-color: #fff;
	border-bottom: 1px solid #d9dfe5;
  }

  /* DI-3101 -  Style code added for Redeem External Licenses link - Vectorworks project*/
.redeem-external-licenses-link{
	color: #4989c8;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;

	span::after {
      content: '→';
      margin-left: 2px;
      vertical-align: middle;
    }
}

.redeem-external-licenses-link:hover{
	color: #3470A9;
	font-size: 16px;
	font-weight: 400;
}
  