/*==========================================
* 
* Helpers CSS
* 
==========================================*/



/**
* hide/show
*/
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}


/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}


/**
* Displays
*/
.display-block {
	display: block;
}

.display-inline {
	display: inline;
}

.display-inline-block {
	display: inline-block;
}


/**
* alerts
*/
.alert {
}

.alert-sm,
.alert-small {
	padding: 10px;
}

.alert-blue-green {
	background-color: #4aa;
	border-color: #288;
	color: #fff;
}

.alert p:last-child {
	margin-bottom: 0;
}




/**
* well
*/
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  
  -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.well .title:first-child,
.well h1:first-child,
.well h2:first-child,
.well h3:first-child,
.well h4:first-child {
	margin-top: 0;
}

.well p:last-child {
	margin-bottom: 0;
}

.well-header {
	border-bottom: 1px solid #ddd;
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	vertical-align: bottom;
}

.well-header .row-as-table [class*="col-"] {
	vertical-align: bottom;
}

.well-header .title,
.well-header .well-title {
	display: inline-block;
	font-size: 1.4em;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

.well-body {
	
}

.well-footer {
	
}

.well-light-blue {
	background: #d9edf7;
	border-color: #bce8f1;
}

.well-white {
	background: #fff;
	border-color: #ddd;
}

.well-box {
	background: #fff;
}



/**
* Tooltips
*/
.tooltipped {
	
}

.tooltipped i {
	color: #767c83;
	cursor: pointer;
}

.tooltipped .tooltip-content {
	
}



/**
* Tabs
*/
.tab {
	margin-bottom: -2px;
    overflow: hidden;
	padding: 0 0 0 30px;
	position: relative;
	z-index: 3;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background: #fff;
	color: #222;
    float: left;
    border-color: #868c93;
	border-style: solid;
	border-width: 1px 1px 0 1px;
	
	border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	
    cursor: pointer;
	height: 54px;
	line-height: 54px;
	margin-right: 5px;
	outline: none;
    padding: 0 20px;
    transition: 0.2s;
	
	width: auto;
	min-width: 140px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background: #e9e9e9;
	border-color: #868c93;
	color: #222;
}

/* Create an active/current tablink class */
.tab button.active {
    background: #335092;
	border-color: #335092;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	color: #fff;
}

/* Style the tab content */
.tabcontent {
	border-color: #335092;
	border-style: solid;
	border-width: 8px 1px 1px 1px;
	
    display: none;
	min-height: 300px;
	padding: 15px;
	position: relative;
	z-index: 6;
} 

.tabcontent.active {
	display: block;
}



/**
* Icons
*/

/* .icon-circle */
.icon-circle {
	background: #335092;
	border: 2px solid #335092;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	
	color: #fff;
	display: inline-block;
	font-size: 14px;
	height: 40px;
	width: 40px;
	line-height: 35px;
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
}

.icon-circle .icon,
.icon-circle .glyphicon,
.icon-circle .fas,
.icon-circle .far {
	line-height: 35px;
}

/* icon colors */
i.baseline-ok {
	color: #60aa60;
}

i.baseline-none {
	/*color: #6495ed;*/
	color: #ffa600;
}

i.baseline-expired {
	color: #ffa600;
}

i.test-failed {
	color: #d03030;
}




/**
* Colors
*/
.color-black {
  color: #222 !important;
}

.color-blue {
  color: #335092 !important;
}

.color-light-gray {
  color: #bbb !important;
}

.color-med-gray {
  color: #888 !important;
}

.color-dark-gray {
  color: #444 !important;
}

.color-red {
  color: #d9534f !important;
}

.color-white {
  color: #fff !important;
}


/*
Font Sizes
*/
.small {
	font-size: 0.9em !important;
}

.x-small {
	font-size: 0.8em !important;
}

.xx-small {
	font-size: 0.7em !important;
}

.xxx-small {
	font-size: 0.6em !important;
}

.big,
.large {
	font-size: 1.25em !important;
}

.x-big,
.x-large {
	font-size: 1.5em !important;
}

.xx-big,
.xx-large {
	font-size: 1.75em !important;
}

.xxx-big,
.xxx-large {
	font-size: 2em !important;
}



/*
tables
*/
.table {
}

.table th {
	line-height: 1.25em;
}

.table td {
	line-height: 1.25em;
}

.table .thead-gray th {
    color: #fff;
    background-color: #999;
    border-right: 1px solid #666;
}

.table .actions .icon {
	color: #1070a0;
	font-size: 22px;
	margin: 0 5px;
}

.table .actions .icon:hover {
	color: #058;
	cursor: pointer;
}

.table th.error,
.table td.error {
  /*background-color: #f2dede;*/
  background-color: #f6e3e3;
  border-color: #ebccd1;
  color: #a94442;
}


/* table users */
.table-users {
	border: 1px solid #ddd;
}

.table-users tr,
.table-users tr td {
	vertical-align: middle !important;
}


/* table data */
.table-data {
	border: 1px solid #ddd;
}

.table-data tr th {
	vertical-align: bottom !important;
}


/*
lists
*/
ul.double-line li,
ol.double-line li {
	margin-bottom: 15px;
}

ul.single-line li,
ol.single-line li {
	margin-bottom: 0;
}


/*
Fancy ordered (circles) lists
*/
ol.fancy-list {
    counter-reset: li; /* Initiate a counter */
    margin-left: 10px; /* Remove the default left margin */
    padding-left: 0; /* Remove the default left padding */
}

ol.fancy-list > li {
    position: relative; /* Create a positioning context */
    margin: 0 0 1.2em 40px; /* Give each list item a left margin to make room for the numbers */
    padding: 4px 8px 4px 12px; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */
    min-height: 2em;
}

ol.fancy-list > li:before {
    content: counter(li); /* Use the counter as content */
    counter-increment: li; /* Increment the counter by 1 */
    
	/* Position and style the number */
    position: absolute;
    top: -4px; /*top:-2px;*/
    left: -40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    
	/* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right: 10px;
    padding: 8px;
    
	/* style the number */
	/*border-top: 2px solid #1262a8;*/
    border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
    background: #ddd;
	color: #333;
	font-size: 16px;
    text-align: center;
}

ol.fancy-list li ol,
ol.fancy-list li ul {margin-top:6px;}
ol.fancy-list ol li:last-child {margin-bottom:0;}

/* color options */
ol.fancy-list-light-gray > li:before {
	background: #ddd;
	color: #333;
}

ol.fancy-list-medium-gray > li:before {
	background: #999;
	color: #fff;
}

ol.fancy-list-dark-gray > li:before {
	background: #444;
	color: #fff;
}

ol.fancy-list-light-blue > li:before {
	background: #609cd9;
	color: #444;
}

ol.fancy-list-medium-blue > li:before {
	background: #1262a8;
	color: #fff;
}

ol.fancy-list-dark-blue > li:before {
	background: #004c93;
	color: #fff;
}


/* *
* Check-List (with square check boxes) 
*/
.check-list {
	list-style: none;
	margin-left: 50px;
	padding-left: 0;
}

.check-list li {
	margin: 0 0 6px 0;
	position: relative;
}

.check-list li:before {
	border: 2px solid #bbb;
    content: " ";
    display: inline-block;
    height: 18px;
    left: -30px;
    position: absolute;
    top: 3px;
    width: 18px;
}


/** 
* Checkmark List (with square check boxes) 
*/
ul.checkmarks {
	list-style: none;
	margin-left: 35px;
	padding-left: 0;
}

ul.checkmarks li {
	margin: 0 0 10px 0;
	position: relative;
}

ul.checkmarks li .glyphicon {
	color: #27386b;
	font-size: 1.25em;
	position: absolute;
	left: -30px;
	top: 4px;
}

ul.checkmarks li .title {
	margin: 0;
}



/*
row-as-table
*/
@media (min-width: 768px) {
  .row-as-table {
    display: table;
    margin: 0 -15px;
    height: 100%;
	width: calc(100% + 30px);
  }
	
  .row-as-table [class*="col-"] {
    float: none;
    display: table-cell;
    height: 100%;
    position: relative;
    vertical-align: top;
  }
}


/*
margins & padding
*/
.ml-5,
.ml-05 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-0 {
    margin-top: 0;
}

.mt-5,
.mt-05 {
    margin-top: 5px;
}

.marginT-10,
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.marginT-20,
.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.marginT-30,
.mt-30 {
    margin-top: 30px;
}

.marginT-40,
.mt-40 {
    margin-top: 40px;
}

.marginT-50,
.mt-50 {
    margin-top: 50px;
}

.mr-5,
.mr-05 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

/*
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}
*/

.pr-0 {
    padding-right: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pt-0 {
    padding-top: 0 !important;
}

.pr-05 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-50 {
    padding-right: 50px;
}


.mb-0 {
	margin-bottom: 0;
}

.mb-5,
.mb-05 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}
/*
END: margins & padding
*/


.ui-datepicker .ui-datepicker-title select {
  color: #000;
}

.text-mid-bold {
  font-weight: 600;
}

.border-blue {
  border: 1px solid blue;
}

.border-red {
  border: 1px solid red;
}

.border-green {
  border: 1px solid green;
}

.btn-xlarge {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px 30px !important;
    font-size: 22px; /*change this to your desired size*/
    line-height: normal;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.wellpanel {
    /*width: 100%;
    max-width: 1024px;
    margin: 10px auto;*/
	padding: 20px 30px;
}



/**
* Panels
*/
.panel {
	border: 2px solid #ddd;
	padding: 20px;
}

.panel > .panel-heading {
	border-bottom: 1px solid #ddd;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
}

.panel > .panel-heading .title {
	margin: 0;
	
	font-size: 1.45em;
	position: relative;
}

.panel .panel-heading .title i {
	color: #868c93;
	font-size: 20px;
	margin: 0 5px;
}

.panel > .panel-body {
}

.panel > .panel-footer {
}

/* .panel colors */
.panel.alert-danger,
.panel.alert-danger > .panel-heading {
	border-color: #f5c6cb;
}

.panel.alert-info,
.panel.alert-info > .panel-heading {
	border-color: #bee5eb;
}

.panel.alert-warning,
.panel.alert-warning > .panel-heading {
	border-color: #ffeeba;
}

/*
END: panels
*/




/**
* Wellpanel
*/
.wellpanel > .panel-heading {
	border-bottom: 1px solid #ddd;
	margin: 0;
	padding: 0 0 15px 0;
}

.wellpanel > .panel-heading .panel-title {
	font-size: 2em;
	margin: 0;
}

.wellpanel > .panel-body {
	padding: 20px 0;
}

.wellpanel > .panel-footer {
	border-top: 1px solid #ddd;	
	padding: 15px 0 0 0;
}




/*
Modal popups
*/
.modal-backdrop.in {
    filter: alpha(opacity=75);
    opacity: .75;
}

.modal .modal-header {
    padding: 15px 20px;
}

.modal .modal-header .modal-title {
	display: block;
	font-size: 1.4em;
	text-align: center;
	width: 90%;
}

.modal .modal-body {
    padding: 15px 20px;
}

.modal .modal-footer {
	display: block;
    padding: 15px 20px;
	text-align: center;
}

/* modal widths
@media(min-width: 992px) {
	.modal .modal-dialog {
		max-width: 800px;
	}
	
	.modal-width-narrow .modal-dialog {
		max-width: 550px;
	}
	
	.modal-width-wide .modal-dialog {
		max-width: 1000px;
	}

}
END: modal widths */

@media(min-width: 992px) {
    .modal .modal-dialog {
        width: 100%;
        margin: 3% auto;
    }
	
	#session-timeout-dialog.modal .modal-dialog {
		width: 640px !important;
	}
}

/*
.btn, button {
    font-family: 'Roboto', helvetica, arial, univers, sans-serif;
    font-size: 15px;
    border-radius: 24px;
    -moz-border-radius: 24px;
    -webkit-border-radius: 24px;
    color: #333;
    background-color: #ececec;
    border-color: #ddd;
    padding: 8px 24px;
    width: 100%;
    max-width: 260px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
*/

.modal button.close {
    font-size: 2em;
	right: 10px;
	
	width: auto;
    max-width: none;
}

.modal.subject-modal {
    margin-top: 150px;
	z-index: 9999;
}



/**
* Misc
*/
.totalPractice {
    font-size: 40px;
}

.list-checkmark {
    list-style-image: url("/Content/images/rsz_checkmark.png");
}

/*
.modal-blue {
}

.modal-blue .modal-content {
	background: #bde;
	border: 3px solid #335092;
	color: #005080;
}

.modal-blue .modal-content .modal-header {
    border-bottom: 1px solid #acd;
}

.modal-blue button.close {
	color: #005080;
	filter: alpha(opacity=60);
	opacity: .6;
}

.modal-blue button.close:hover {
	color: #005080;
	filter: alpha(opacity=100);
	opacity: 1.0;
}

.modal-blue .modal-content .well {
	background: #fff;
	border-color: #335092;
}
*/



/* 
* Video Container (Responsive)
-----------------------------------*/
.video-container {
  height: 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 58%;
  padding-top: 0;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container .jwplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/** 
* JWplayer
*/
.jwplayer {
	/*
	display: block;
	
	width: 100%;
	height: auto !important;
	
	min-height: 0;
	overflow: hidden;
	position: relative;
	*/
}

.jwplayer .jw-reset {
	/*
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

  	display: block;
	padding-top: 62.5%;
	*/
}


/**
* Smart Help
*/
.smart-help {
	margin: 0 0 15px 0;
	text-align: center;
}

.smart-help .alert {
	margin: 0 auto;
	max-width: 640px;
	padding: 10px 15px;
}

.smart-help .need-help {
	color: #999;
	font-size: 0.9em;
	margin-top: 10px;
}


/**
* Activations Group
*/
.activations-group {
	margin: 20px auto;
	text-align: center;
}

.activations-group .well {
	margin: 0 auto;
	text-align: center;
	padding: 10px 15px;
	max-width: 600px;
}

/*
.activations-group .well > .row > .col {
	padding-left: 10px;
	padding-right: 10px;
}
*/

.activations-group .well > .row > .col:first-child {
	text-align: right;
}

.activations-group .well > .row > .col:last-child {
	text-align: left;
}

.activations-group .title {
	display: inline-block;
	font-weight: bold;
}

.activations-group .number-box {
	background: #fff;
	border: 2px solid #335092;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.1em;
	margin: 0 5px;
	min-width: 70px;
	padding: 6px;
	text-align: center;
}


/**
* Activations Box
*/
.activations-box {
	text-align: center;
}

.activations-box label {
	margin: 0 0 5px 0;
}

.activations-box .inc-number-box {
	margin: 0 0 8px 0;
}

.activations-box .description {
	background: rgba(255,255,255,0.6);
	display: block;
	line-height: 1.25em;
	padding: 8px;
}

.activations-box .description .title {
	display: block;
	font-size: 0.9em;
}

.activations-box .description .number {
	font-weight: bold;
	font-size: 1.15em;
}




