
/* --------------------------
 *
 * themis-ocean-progress.css
 *
 * -------------------------- */


/* progress bar */

.tc-control.tc-control-progress {
    display: flex;
    align-items: center;
}

.tc-control.tc-control-progress .tc-progress-options {
	flex: 1;
	display: flex;
}

.tc-control.tc-control-progress .tc-control-option {
	flex: 1;
	margin: 0 5px;
}

.tc-control.tc-control-progress .tc-control-option .tc-input-progress {
	height: var(--progress-color-height);
	background-color: var(--progress-color-active);
	border: none;
}

/* progress bar - different color for items after selected */
.tc-control.tc-control-progress .tc-control-option.tc-control-option-selected ~ .tc-control-option .tc-input-progress {
	background-color: var(--progress-color);
}

/* progress bar - left-most item radius  */
.tc-root-rtl .tc-control.tc-control-progress .tc-control-option:last-child .tc-input-progress,
.tc-root-ltr .tc-control.tc-control-progress .tc-control-option:first-child .tc-input-progress {
	border-radius: var(--progress-edge-radius) 0 0 var(--progress-edge-radius);
}

/* progress bar - right-most item radius  */
.tc-root-rtl .tc-control.tc-control-progress .tc-control-option:first-child .tc-input-progress,
.tc-root-ltr .tc-control.tc-control-progress .tc-control-option:last-child .tc-input-progress {
	border-radius: 0 var(--progress-edge-radius) var(--progress-edge-radius) 0;
}

/* progress bar - single item radius  */
.tc-control.tc-control-progress .tc-control-option:first-child:last-child .tc-input-progress {
	border-radius: var(--progress-edge-radius);
}


/* --------------------------
 *
 * themis-control-stats.css
 *
 * -------------------------- */


/* Stats
 * -------------------------- */

.tc-control.tc-control-stats .tc-control-stats-stats {
	display: flex;
	flex-wrap: wrap;
}

.tc-control.tc-control-stats .tc-control-stats-stat {
	flex: 1;
	text-align: center;
	padding: 0px 20px;
}

.tc-control.tc-control-stats .tc-control-stats-stat:not(:last-child) {
	border-right: 1px solid var(--seperator-light);
}

.tc-control.tc-control-stats .tc-control-stats-stat dd {
	font-size: 48px;
	font-weight: 300;
	margin: 10px 0;
	color: var(--nav-color);
}

.tc-control.tc-control-stats .tc-control-stats-stat dt {
	font-size: var(--font-size-xs);
}

.tc-control.tc-control-stats .tc-control-stats-stat dt a {
	color: #1886ed;
	text-decoration: none;
}


/* --------------------------
 *
 * themis-control-widgets.css
 *
 * -------------------------- */


/* Accordions
 * -------------------------- */

.tc-control.tc-control-widgets .tc-widget {
	margin-bottom: 20px;
}


/* --------------------------
 *
 * themis-control-tabs.css
 *
 * -------------------------- */


/* Tabs
 * -------------------------- */

.tc-control.tc-control-tabs > .tc-tabs-buttons {
	margin: 0px -5px -1px;
}

.tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons {
	padding: var(--spacing-1) var(--spacing-1) 0;
	white-space: nowrap;
	overflow: auto;
	display: flex;
}

.tc-root-ltr .tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li:not(:first-child) {
	margin-left: 2px;
}

.tc-root-rtl .tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li:not(:first-child) {
	margin-right: 2px;
}

.tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li {
	flex-grow: 1;
}

.tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li .tc-button {
	border-radius: 14px 14px 0 0;
	color: var(--secondary-color);
	background-color: var(--form-tab-bg-color);
	padding: var(--spacing-2) var(--spacing-3);
}

.tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li .tc-button.tc-button-current {
	min-width: 130px;
	border: 1px solid #ebebeb;
	background-color: var(--secondary-color);
	border-bottom: none;
	color: white;
}

.tc-root-rtl .tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li .tc-button.tc-button-current {
	border-top-right-radius: 0;
}

.tc-root-ltr .tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li .tc-button.tc-button-current {
	border-top-left-radius: 0;
}

.tc-control.tc-control-tabs > .tc-tabs-buttons > .tc-buttons li .tc-button .tc-button-caption {
	font-style: normal;
}

.tc-control.tc-control-tabs > .tc-tabs-tabs > .tc-widgets > .tc-widget {
	display: none;
}

.tc-control.tc-control-tabs > .tc-tabs-tabs > .tc-widgets > .tc-widget.tc-widget-expanded {
	display: block;
}

.tc-control.tc-control-tabs .tc-form .tc-fields .tc-field {
	margin-top: var(--form-element-gutter-small);
}

.tc-control.tc-control-tabs .tc-form .tc-form-buttons {
	margin-top: var(--form-element-gutter-small);
}

.tc-control.tc-control-tabs .tc-widget .tc-form .tc-fields .tc-field .tc-caption-wrapper {
	width: 33.34%;
}

.tc-control.tc-control-tabs .tc-widget .tc-form .tc-fields .tc-field .tc-caption-wrapper + .tc-control-wrapper {
	width: 66.66%;
}


/* --------------------------
 *
 * themis-comments.css
 *
 * -------------------------- */


/* Comments
 * -------------------------- */

.tc-comments {
	color: var(--secondary-color);
	font-size: var(--font-size-sm);

}

.tc-comments .tc-comments-row.tc-comments-row-with-user {
	display: flex;
}

.tc-comments .tc-comments-row.tc-comments-row-with-user .tc-comments-row-user {
	flex-basis: 176px;
}

.tc-comments .tc-comments-row.tc-comments-row-with-user .tc-comments-row-user .tc-comments-row-user-icon {
	width: var(--spacing-7);
	height: var(--spacing-7);
	margin: var(--spacing-1) auto;
	padding: var(--spacing-2);
	box-sizing: border-box;
	color: white;
	font-size: 32px;
	background: var(--primary-color);
	border-radius: 50%;
}

.tc-comments .tc-comments-row.tc-comments-row-with-user .tc-comments-row-user .tc-comments-row-user-image {
	margin: var(--spacing-1) auto;
	border-radius: 50%;
}

.tc-comments .tc-comments-row.tc-comments-row-with-user .tc-comments-row-user .tc-comments-row-user-name {
	text-align: center;
	line-height: var(--spacing-4);
}


.tc-comments .tc-comments-row.tc-comments-row-with-user .tc-comments-row-details {
	flex-grow: 1;
}


.tc-comments .tc-comments-row .tc-comments-row-meta {
	display: flex;
}

.tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field {
	padding: var(--spacing-3);
	line-height: 24px;
	box-sizing: border-box;
	background-color: var(--secondary-color-light);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: elipsis;
}

.tc-root-rtl .tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field {
	margin-right: var(--spacing-3);
}

.tc-root-ltr .tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field {
	margin-left: var(--spacing-3);
}

.tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field:first-child {
	flex: 1;
}

.tc-root-rtl .tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field:first-child {
	margin-right: 0;
}

.tc-root-ltr .tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field:first-child {
	margin-left: 0;
}

.tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field .tc-comments-row-meta-field-caption {
	font-weight: bold;
}

.tc-comments .tc-comments-row .tc-comments-row-meta .tc-comments-row-meta-field .tc-comments-row-meta-field-caption:after {
	content: ":";
}

.tc-comments .tc-comments-row .tc-comments-row-content {
	line-height: var(--font-size-xl);
	padding: var(--spacing-4) var(--spacing-3);
}

.tc-comments .tc-comments-row .tc-comments-row-content b,
.tc-comments .tc-comments-row .tc-comments-row-content strong {
	font-weight: bold;
}

.tc-comments .tc-comments-row .tc-comments-row-content i,
.tc-comments .tc-comments-row .tc-comments-row-content em {
	font-style: italic;
}

.tc-comments .tc-comments-row .tc-comments-row-content u,
.tc-comments .tc-comments-row .tc-comments-row-content ins {
	text-decoration: underline;
}

.tc-comments .tc-comments-row .tc-gallery {
	padding: var(--spacing-1) var(--spacing-1) var(--spacing-4);
	background: white;
}


.tc-comments + .tc-control-textarea-readonly .tc-control-value,
.tc-comments + .tc-control-textarea-readonly .tc-button[data-button="method"] {
	display: none;
}


/* Comments Field
 * -------------------------- */

.tc-field[data-field-type="comments"].tc-collapsible .tc-caption-wrapper .tc-collapser {
	float: right;
}

.tc-field[data-field-type="comments"].tc-collapsible.tc-collapsible-collapsed .tc-control-wrapper {
	display: none;
}

.tc-field[data-field-type="comments"].tc-collapsible.tc-collapsible-collapsed + .tc-field > .tc-field-separator {
	display: none;
}


/* --------------------------
 *
 * simple-line-icons.css
 *
 * -------------------------- */

/*
  Simple line icons - Simple line icons with CSS, SASS, LESS & Web-fonts files.
  https://github.com/simplelineicons/simplelineicons.github.io
  Under MIT License.
*/
/*
  modifiaction (yuval.bl  MAR 2020):
  prefix of .sl-icon added to each icon for better sprcification
  original css can be found here: https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.css
*/
.sl-icon {
  font-family: 'simple-line-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sl-icon.icon-user:before {
  content: "\e005";
}
.sl-icon.icon-people:before {
  content: "\e001";
}
.sl-icon.icon-user-female:before {
  content: "\e000";
}
.sl-icon.icon-user-follow:before {
  content: "\e002";
}
.sl-icon.icon-user-following:before {
  content: "\e003";
}
.sl-icon.icon-user-unfollow:before {
  content: "\e004";
}
.sl-icon.icon-login:before {
  content: "\e066";
}
.sl-icon.icon-logout:before {
  content: "\e065";
}
.sl-icon.icon-emotsmile:before {
  content: "\e021";
}
.sl-icon.icon-phone:before {
  content: "\e600";
}
.sl-icon.icon-call-end:before {
  content: "\e048";
}
.sl-icon.icon-call-in:before {
  content: "\e047";
}
.sl-icon.icon-call-out:before {
  content: "\e046";
}
.sl-icon.icon-map:before {
  content: "\e033";
}
.sl-icon.icon-location-pin:before {
  content: "\e096";
}
.sl-icon.icon-direction:before {
  content: "\e042";
}
.sl-icon.icon-directions:before {
  content: "\e041";
}
.sl-icon.icon-compass:before {
  content: "\e045";
}
.sl-icon.icon-layers:before {
  content: "\e034";
}
.sl-icon.icon-menu:before {
  content: "\e601";
}
.sl-icon.icon-list:before {
  content: "\e067";
}
.sl-icon.icon-options-vertical:before {
  content: "\e602";
}
.sl-icon.icon-options:before {
  content: "\e603";
}
/* modifiaction (yuval.bl  MAR 2020): point caret prefix to arrow */
.sl-icon.icon-caret-down:before,
.sl-icon.icon-arrow-down:before {
  content: "\e604";
}
.sl-icon.icon-caret-left:before,
.sl-icon.icon-arrow-left:before {
  content: "\e605";
}
.sl-icon.icon-caret-right:before,
.sl-icon.icon-arrow-right:before {
  content: "\e606";
}
.sl-icon.icon-caret-up:before,
.sl-icon.icon-arrow-up:before {
  content: "\e607";
}
/* end of modifiaction (yuval.bl  MAR 2020) */
.sl-icon.icon-arrow-up-circle:before {
  content: "\e078";
}
.sl-icon.icon-arrow-left-circle:before {
  content: "\e07a";
}
.sl-icon.icon-arrow-right-circle:before {
  content: "\e079";
}
.sl-icon.icon-arrow-down-circle:before {
  content: "\e07b";
}
.sl-icon.icon-check:before {
  content: "\e080";
}
.sl-icon.icon-clock:before {
  content: "\e081";
}
.sl-icon.icon-plus:before {
  content: "\e095";
}
.sl-icon.icon-minus:before {
  content: "\e615";
}
.sl-icon.icon-close:before {
  content: "\e082";
}
.sl-icon.icon-event:before {
  content: "\e619";
}
.sl-icon.icon-exclamation:before {
  content: "\e617";
}
.sl-icon.icon-organization:before {
  content: "\e616";
}
.sl-icon.icon-trophy:before {
  content: "\e006";
}
.sl-icon.icon-screen-smartphone:before {
  content: "\e010";
}
.sl-icon.icon-screen-desktop:before {
  content: "\e011";
}
.sl-icon.icon-plane:before {
  content: "\e012";
}
.sl-icon.icon-notebook:before {
  content: "\e013";
}
.sl-icon.icon-mustache:before {
  content: "\e014";
}
.sl-icon.icon-mouse:before {
  content: "\e015";
}
.sl-icon.icon-magnet:before {
  content: "\e016";
}
.sl-icon.icon-energy:before {
  content: "\e020";
}
.sl-icon.icon-disc:before {
  content: "\e022";
}
.sl-icon.icon-cursor:before {
  content: "\e06e";
}
.sl-icon.icon-cursor-move:before {
  content: "\e023";
}
.sl-icon.icon-crop:before {
  content: "\e024";
}
.sl-icon.icon-chemistry:before {
  content: "\e026";
}
.sl-icon.icon-speedometer:before {
  content: "\e007";
}
.sl-icon.icon-shield:before {
  content: "\e00e";
}
.sl-icon.icon-screen-tablet:before {
  content: "\e00f";
}
.sl-icon.icon-magic-wand:before {
  content: "\e017";
}
.sl-icon.icon-hourglass:before {
  content: "\e018";
}
.sl-icon.icon-graduation:before {
  content: "\e019";
}
.sl-icon.icon-ghost:before {
  content: "\e01a";
}
.sl-icon.icon-game-controller:before {
  content: "\e01b";
}
.sl-icon.icon-fire:before {
  content: "\e01c";
}
.sl-icon.icon-eyeglass:before {
  content: "\e01d";
}
.sl-icon.icon-envelope-open:before {
  content: "\e01e";
}
.sl-icon.icon-envelope-letter:before {
  content: "\e01f";
}
.sl-icon.icon-bell:before {
  content: "\e027";
}
.sl-icon.icon-badge:before {
  content: "\e028";
}
.sl-icon.icon-anchor:before {
  content: "\e029";
}
.sl-icon.icon-wallet:before {
  content: "\e02a";
}
.sl-icon.icon-vector:before {
  content: "\e02b";
}
.sl-icon.icon-speech:before {
  content: "\e02c";
}
.sl-icon.icon-puzzle:before {
  content: "\e02d";
}
.sl-icon.icon-printer:before {
  content: "\e02e";
}
.sl-icon.icon-present:before {
  content: "\e02f";
}
.sl-icon.icon-playlist:before {
  content: "\e030";
}
.sl-icon.icon-pin:before {
  content: "\e031";
}
.sl-icon.icon-picture:before {
  content: "\e032";
}
.sl-icon.icon-handbag:before {
  content: "\e035";
}
.sl-icon.icon-globe-alt:before {
  content: "\e036";
}
.sl-icon.icon-globe:before {
  content: "\e037";
}
.sl-icon.icon-folder-alt:before {
  content: "\e039";
}
.sl-icon.icon-folder:before {
  content: "\e089";
}
.sl-icon.icon-film:before {
  content: "\e03a";
}
.sl-icon.icon-feed:before {
  content: "\e03b";
}
.sl-icon.icon-drop:before {
  content: "\e03e";
}
.sl-icon.icon-drawer:before {
  content: "\e03f";
}
.sl-icon.icon-docs:before {
  content: "\e040";
}
.sl-icon.icon-doc:before {
  content: "\e085";
}
.sl-icon.icon-diamond:before {
  content: "\e043";
}
.sl-icon.icon-cup:before {
  content: "\e044";
}
.sl-icon.icon-calculator:before {
  content: "\e049";
}
.sl-icon.icon-bubbles:before {
  content: "\e04a";
}
.sl-icon.icon-briefcase:before {
  content: "\e04b";
}
.sl-icon.icon-book-open:before {
  content: "\e04c";
}
.sl-icon.icon-basket-loaded:before {
  content: "\e04d";
}
.sl-icon.icon-basket:before {
  content: "\e04e";
}
.sl-icon.icon-bag:before {
  content: "\e04f";
}
.sl-icon.icon-action-undo:before {
  content: "\e050";
}
.sl-icon.icon-action-redo:before {
  content: "\e051";
}
.sl-icon.icon-wrench:before {
  content: "\e052";
}
.sl-icon.icon-umbrella:before {
  content: "\e053";
}
.sl-icon.icon-trash:before {
  content: "\e054";
}
.sl-icon.icon-tag:before {
  content: "\e055";
}
.sl-icon.icon-support:before {
  content: "\e056";
}
.sl-icon.icon-frame:before {
  content: "\e038";
}
.sl-icon.icon-size-fullscreen:before {
  content: "\e057";
}
.sl-icon.icon-size-actual:before {
  content: "\e058";
}
.sl-icon.icon-shuffle:before {
  content: "\e059";
}
.sl-icon.icon-share-alt:before {
  content: "\e05a";
}
.sl-icon.icon-share:before {
  content: "\e05b";
}
.sl-icon.icon-rocket:before {
  content: "\e05c";
}
.sl-icon.icon-question:before {
  content: "\e05d";
}
.sl-icon.icon-pie-chart:before {
  content: "\e05e";
}
.sl-icon.icon-pencil:before {
  content: "\e05f";
}
.sl-icon.icon-note:before {
  content: "\e060";
}
.sl-icon.icon-loop:before {
  content: "\e064";
}
.sl-icon.icon-home:before {
  content: "\e069";
}
.sl-icon.icon-grid:before {
  content: "\e06a";
}
.sl-icon.icon-graph:before {
  content: "\e06b";
}
.sl-icon.icon-microphone:before {
  content: "\e063";
}
.sl-icon.icon-music-tone-alt:before {
  content: "\e061";
}
.sl-icon.icon-music-tone:before {
  content: "\e062";
}
.sl-icon.icon-earphones-alt:before {
  content: "\e03c";
}
.sl-icon.icon-earphones:before {
  content: "\e03d";
}
.sl-icon.icon-equalizer:before {
  content: "\e06c";
}
.sl-icon.icon-like:before {
  content: "\e068";
}
.sl-icon.icon-dislike:before {
  content: "\e06d";
}
.sl-icon.icon-control-start:before {
  content: "\e06f";
}
.sl-icon.icon-control-rewind:before {
  content: "\e070";
}
.sl-icon.icon-control-play:before {
  content: "\e071";
}
.sl-icon.icon-control-pause:before {
  content: "\e072";
}
.sl-icon.icon-control-forward:before {
  content: "\e073";
}
.sl-icon.icon-control-end:before {
  content: "\e074";
}
.sl-icon.icon-volume-1:before {
  content: "\e09f";
}
.sl-icon.icon-volume-2:before {
  content: "\e0a0";
}
.sl-icon.icon-volume-off:before {
  content: "\e0a1";
}
.sl-icon.icon-calendar:before {
  content: "\e075";
}
.sl-icon.icon-bulb:before {
  content: "\e076";
}
.sl-icon.icon-chart:before {
  content: "\e077";
}
.sl-icon.icon-ban:before {
  content: "\e07c";
}
.sl-icon.icon-bubble:before {
  content: "\e07d";
}
.sl-icon.icon-camrecorder:before {
  content: "\e07e";
}
.sl-icon.icon-camera:before {
  content: "\e07f";
}
.sl-icon.icon-cloud-download:before {
  content: "\e083";
}
.sl-icon.icon-cloud-upload:before {
  content: "\e084";
}
.sl-icon.icon-envelope:before {
  content: "\e086";
}
.sl-icon.icon-eye:before {
  content: "\e087";
}
.sl-icon.icon-flag:before {
  content: "\e088";
}
.sl-icon.icon-heart:before {
  content: "\e08a";
}
.sl-icon.icon-info:before {
  content: "\e08b";
}
.sl-icon.icon-key:before {
  content: "\e08c";
}
.sl-icon.icon-link:before {
  content: "\e08d";
}
.sl-icon.icon-lock:before {
  content: "\e08e";
}
.sl-icon.icon-lock-open:before {
  content: "\e08f";
}
.sl-icon.icon-magnifier:before {
  content: "\e090";
}
.sl-icon.icon-magnifier-add:before {
  content: "\e091";
}
.sl-icon.icon-magnifier-remove:before {
  content: "\e092";
}
.sl-icon.icon-paper-clip:before {
  content: "\e093";
}
.sl-icon.icon-paper-plane:before {
  content: "\e094";
}
.sl-icon.icon-power:before {
  content: "\e097";
}
.sl-icon.icon-refresh:before {
  content: "\e098";
}
.sl-icon.icon-reload:before {
  content: "\e099";
}
.sl-icon.icon-settings:before {
  content: "\e09a";
}
.sl-icon.icon-star:before {
  content: "\e09b";
}
.sl-icon.icon-symbol-female:before {
  content: "\e09c";
}
.sl-icon.icon-symbol-male:before {
  content: "\e09d";
}
.sl-icon.icon-target:before {
  content: "\e09e";
}
.sl-icon.icon-credit-card:before {
  content: "\e025";
}
.sl-icon.icon-paypal:before {
  content: "\e608";
}
.sl-icon.icon-social-tumblr:before {
  content: "\e00a";
}
.sl-icon.icon-social-twitter:before {
  content: "\e009";
}
.sl-icon.icon-social-facebook:before {
  content: "\e00b";
}
.sl-icon.icon-social-instagram:before {
  content: "\e609";
}
.sl-icon.icon-social-linkedin:before {
  content: "\e60a";
}
.sl-icon.icon-social-pinterest:before {
  content: "\e60b";
}
.sl-icon.icon-social-github:before {
  content: "\e60c";
}
.sl-icon.icon-social-google:before {
  content: "\e60d";
}
.sl-icon.icon-social-reddit:before {
  content: "\e60e";
}
.sl-icon.icon-social-skype:before {
  content: "\e60f";
}
.sl-icon.icon-social-dribbble:before {
  content: "\e00d";
}
.sl-icon.icon-social-behance:before {
  content: "\e610";
}
.sl-icon.icon-social-foursqare:before {
  content: "\e611";
}
.sl-icon.icon-social-soundcloud:before {
  content: "\e612";
}
.sl-icon.icon-social-spotify:before {
  content: "\e613";
}
.sl-icon.icon-social-stumbleupon:before {
  content: "\e614";
}
.sl-icon.icon-social-youtube:before {
  content: "\e008";
}
.sl-icon.icon-social-dropbox:before {
  content: "\e00c";
}
.sl-icon.icon-social-vkontakte:before {
  content: "\e618";
}
.sl-icon.icon-social-steam:before {
  content: "\e620";
}
/* --------------------------
 *
 * ocean-icon-mapping.css
 *
 * -------------------------- */

/*
  Simple line icons - Simple line icons with CSS, SASS, LESS & Web-fonts files.
  https://github.com/simplelineicons/simplelineicons.github.io
  Under MIT License.
*/
/*
  modifiaction (yuval.bl  MAR 2020):
  This file maps client2.0 icons (fontawsome) to client 2.1 icons (simple-line-icons)
*/
/* map caret (fa) and arrow-circle to arrow (sli) */
.sl-icon.icon-caret-down:before,
.sl-icon.icon-arrow-circle-down:before {
  content: "\e604";
}
.sl-icon.icon-caret-left:before,
.sl-icon.icon-arrow-circle-left:before {
  content: "\e605";
}
.sl-icon.icon-caret-right:before,
.sl-icon.icon-arrow-circle-right:before {
  content: "\e606";
}
.sl-icon.icon-caret-up:before,
.sl-icon.icon-arrow-circle-up:before {
  content: "\e607";
}
/* map icon-times-circle (fa) to close (sli) */
.sl-icon.icon-times-circle-o:before {
  content: "\e082";
}
/* map download / upload (fa) to cloud-download / cloud-upload (sli) */
.sl-icon.icon-download:before {
  content: "\e083";
}
.sl-icon.icon-upload:before {
  content: "\e084";
}
.sl-icon.icon-question-circle:before {
  content: "\e05d";
}
/* map cog (fa) settings (sli) */
.sl-icon.icon-cog:before {
  content: "\e09a";
}
/* map sort (fa) to arrow (sli) */
.sl-icon.icon-sort-amount-asc:before {
  content: "\e604";
}
.sl-icon.icon-sort-amount-desc:before {
  content: "\e607";
}
/* map vertical ellipsis (fa) to vertical options (sli) */
.sl-icon.icon-ellipsis-v:before {
  content: "\e602";
}
/* map print (fa) to printer (sli) */
.sl-icon.icon-print:before {
  content: "\e02e";
}
/* map external-link (fa) to link (sli) */
.sl-icon.icon-external-link:before {
  content: "\e08d";
}
/* map plus-square (fa) to plus (sli) */
.sl-icon.icon-plus-square:before {
  content: "\e095";
}
/* map minus-square (fa) to minus (sli) */
.sl-icon.icon-minus-square:before {
  content: "\e615";
}
/* map search (fa) to magnifier (sli) */
.sl-icon.icon-search:before {
  content: "\e090";
}
/* map angle-left and backward (fa) to arrow-left (sli) */
.sl-icon.icon-angle-left:before,
.sl-icon.icon-backward:before {
  content: "\e605";
}
/* map angle-right and forward (fa) to arrow-right (sli) */
.sl-icon.icon-angle-right:before,
.sl-icon.icon-forward:before {
  content: "\e606";
}
/* map fast-backward (fa) to control-start (sli) */
.sl-icon.icon-fast-backward:before {
  content: "\e06f";
}
/* map fast-forward (fa) to control-end (sli) */
.sl-icon.icon-fast-forward:before {
  content: "\e074";
}
/* map all file icons to doc */
.sl-icon[class*="icon-file"]:before {
	content: "\e085";
}
/* map files icon to docs */
.sl-icon[class*="icon-files"]:before {
	content: "\e040";
}
/* map stack-overflow icon to list */
.sl-icon[class*="icon-stack-overflow"]:before {
	content: "\e067";
}

/* Pure CSS Icons */

/* css icons: times(x) minus(-) plus(+) */
/* map minus-circle to be same as standard (minus) */
/* wrapper */
.sl-icon.icon-minus,
.sl-icon.icon-circle,
.sl-icon.icon-plus,
.sl-icon.icon-times,
.sl-icon.icon-times-circle-o {
  position: relative;
}
/* lines */
.sl-icon.icon-minus:before,
.sl-icon.icon-minus-circle:before,
.sl-icon.icon-plus:before,
.sl-icon.icon-plus:after,
.sl-icon.icon-times:before,
.sl-icon.icon-times:after {
  content: '';
  position: absolute;
  height: 5%;
  width: 41%;
  top: 50%;
  left: 31%;
  margin-top: -1px;
  background: currentColor;
}
/* rotations (plus and times only) */
.sl-icon.icon-plus:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  height: 4.5%;
}
.sl-icon.icon-times:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);}
.sl-icon.icon-times:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* css icons: radio button inner-circle */
.sl-icon.icon-circle:before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: inherit;
}
/* css icons: checkbox checked (v) */
.sl-icon.icon-check:before {
  content: '';
  display: block;
  width: 0.38em;
  height: 0.88em;
  border-style: solid;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
