@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

*:focus {
  outline: #4f58a8 dotted 2px;
  outline-offset: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #4a4a4a;
  font-family: 'Roboto', 'Lato';
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans;
  font-weight: 600;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  margin: 30px auto 20px;
  font-size: 22px;
  
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
}

a {
  color: #4f58a8;
  text-decoration: none;
}

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

input,
textarea {
  color: #000;
  font-size: 16px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out;
}

input:focus {
  border: 1px solid #4f58a8;
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("/hc/theming_assets/01HZM2NAY6K8MBD9N7AGETDZJG") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid #4f58a8;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid #4f58a8;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
}

.dropdown-toggle::after {
  color: inherit;
}

/***** Buttons *****/
.button, [role="button"] {
  border: 1px solid #4f58a8;
  color: #4f58a8;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

.CTA-generic {
	text-align: center;
  margin: 50px auto 40px ;
}

.CTA-generic a {
  border-radius: 5px;
  text-align: center;
  color: #ffffff;
  background-color: #4f58a8;
  padding: 10px 20px;
}

@media (min-width: 768px) {
  .button, [role="button"] {
    width: auto;
  }
}

.button::after, [role="button"]::after {
  color: #4f58a8;
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: #4f58a8;
  color: #ffffff;
  text-decoration: none;
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, [role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: #2e3463;
  border-color: #2e3463;
}

.button[data-disabled], [role="button"][data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  background-color: #4f58a8;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large, input[type="submit"] {
    width: auto;
  }
}

.button-large:hover, .button-large:active, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: #2e3463;
}

.button-large[disabled], input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #7d7d7d;
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #4a4a4a;
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

/***** Tables *****/
.table {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}

.table tr {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td, .table th {
    padding: 6px 30px;
  }
}

@media (min-width: 768px) {
  .table td, .table th {
    padding: 6px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 650px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid #4f58a8;
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-field input[type="text"]:focus {
  border: 1px solid #4f58a8;
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid #4f58a8;
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}

.form-field.required > label::after {
  content: "*";
  color: #f00;
  margin-left: 2px;
}

.form-field p {
  color: #7d7d7d;
  font-size: 12px;
  margin: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url("/hc/theming_assets/01HZM2NBS37GT8REWRZQAE64K9") 99% 50% no-repeat;
  background-size: 16px 16px;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: #7d7d7d;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #b0b0b0;
}

/***** Header *****/
.header {
  margin: 5px auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .header {
    padding: 0;
    width: 98%;
  }
}

.logo {
	height: 100%;
  width: auto;
}

.logo img {
  max-height: 98%;
  margin-top: 22px;
  width: 100%
}

.user-nav {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Open Sans';
  margin-left: 6px;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}

.user-nav a {
	font-size: 14px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px !important;
  padding-left: 20px !important;
  text-transform: none;
  letter-spacing: -0.3px;
  color: #222;
}

.user-nav a:nth-of-type(2) {
  
	border: 1px solid #4a4a4a;
}

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"] > a {
  display: block;
  margin: 20px;
}

.nav-wrapper a {
  border: 0;
  color: #e3e3e3;
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper a {
    display: inline-block;
  }
}

@media (max-width: 630px) {
  .user-nav a:first-of-type {
    display: none;
  }
}


[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: #e3e3e3;
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
}

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #e3e3e3;
}

@media (min-width: 768px) {
  .nav-wrapper .icon-menu {
    display: none;
  }
}

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > [role="button"] {
  border: 0;
  color: #e3e3e3;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover {
  color: #e3e3e3;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #e3e3e3;
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent::before {
  background-color: #4f58a8;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #ffffff;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Footer *****/
.contact-us {
	position: fixed;
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 80px;
  overflow: hidden;
  visibility: visible;

}

.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
}

.footer a {
  color: #7d7d7d;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 5%;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-text {
	color: #a9a9a9;
  font-size: 12px;
  max-width: 300px;
  margin-bottom: 120px;
}

.footer-text img {
	max-height: 60px;
}

.footer-language-selector {
  color: #7d7d7d;
  display: inline-block;
  font-weight: 300;
}

.footer-menu .column {
	float: left;
  min-height: 1px;
}

.col-1-2 {
	width: 50%;
}

.col-1-3 {
	width: 33%;
}

@media (max-width: 630px) {
  .footer-menu .column {
    float: none;
    text-align: center;
    width: 100%;
  }
  .footer-text {
    max-width: 100%;
  }
}

.menu-title {
  margin-bottom: 10px;
	font-weight: 600;
  color: #4a4a4a;
}

.menu li {
	color: #4a4a4a;
  padding: 2px 0;
}


/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs li {
	color: #2f2f2f;
  display: inline;
  font-weight: 300;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a:visited {
  color: #4f58a8;
}

/***** Search field *****/
.search {
  position: relative;
}

.search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  color: #494949;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.21);
	border: solid 1px #e0e0e0;
  height: 60px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}

.search.small {
	text-align: center;
}


.search.small input[type="search"] {
	width: 45%;
  margin: 30px auto;
  height: 45px;
  box-shadow: none;
}

.search.small::before {
	position: inherit;
  left: 30px;
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  border: 1px solid #4f58a8;
  color: #555;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #ddd;
  content: "\1F50D";
  font-size: 18px;
  position: absolute;
  left: 15px;
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}

.search-full input[type="search"] {
  border: 1px solid #fff;
}

.search::before {
	color: #4f58a8;
}

/***** Hero component *****/

.hero {
  background-image: url(/hc/theming_assets/01HZM2NFXPT8GTXBTEMD15BVB7);
  background-position: center;
  background-color: #4f58a8;
  color: #ffffff;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.hero h1 {
  margin: 0 !important;
  font-family: Roboto;
	font-size: 50px;
	font-weight: 100;
}

.hero h2 {
  margin: 10px !important;
	font-family: Roboto;
	font-size: 30px;
	font-weight: bold;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.hero-inner h2 {
  text-align: center !important;
}

.cat-hero {
  text-align: left;
  padding: 0;
  height: 200px !important;
  margin: 0 auto;
}

.cat-hero .hero-inner {
	margin: 0 auto;
  max-width: 1160px;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .cat-hero .hero-inner {
    padding: 0;
    width: 90%;
  }
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-header-description {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
  .hero {
  height: 45vh;
	}
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0 auto 30px auto;
  min-height: 50px;
  padding: 15px 5% 0 5%;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-background {
	background-color: #f6f6f6;	
}

@media (min-width: 1160px) {
  .sub-nav {
    padding: 15px 0;
    width: 90%;
  }
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px 60px;
  }
}

.blocks-item {
  box-sizing: border-box;
  color: #4f58a8;
  display: flex;
  flex: 1 0 20%;
  flex-direction: column;
  margin: 0 0px 16px;
  max-width: 100%;
  text-align: center;
}


.blocks-item img {
	max-height: 170px;
}

@media (min-width: 1024px) {
  .blocks-item {
    margin: 10px auto 24px auto;
    flex: 1 0 20%;
  }
 
  .blocks-item:last-child {
  	border-right: none;
	}
  
  .blocks-item {
  	padding-bottom: 30px;
  	border-right: 1px solid #e3e3e3;
  }


}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0;
  }
}


.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #4a4a4a;
}

.blocks-item-link {
  color: #4f58a8;
}

.blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  margin: 0px auto 10px auto;
  color: #4a4a4a;
  font-weight: bold;
  font-size: 18px;
}

.blocks-item-description {
  font-weight: 300;
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

.learn-more-cta {
  border: solid 1px #4f58a8;
  border-radius: 5px;
  margin: 0 10px;
  padding: 5px 5px;
}

@media (min-width: 768px) {
	.learn-more-cta {
  margin: 0 35px;
  padding: 5px 0;
}


}



/***** Homepage *****/
.section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 30px;
  }
}

.section h2 {
  margin-bottom: 10px;
  text-align: left;
}

.articles h3 {
	text-align: center;
  margin: 15px 0 35px 0;
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
  .promoted-articles-item {
  border-left: 1px solid #ddd;
  }
  
 .promoted-articles-item:nth-of-type(odd) {
	border: none;
	}
  
.promoted-articles-item:nth-of-type(even) {
  padding-left: 25px;
  margin-left: 12px;
	}
}

.promoted-articles-item {
  flex: 1 0 auto;
  height: 80px;
}



@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 49%;
    padding-right: 10px;
    width: 49%;
    /* Two columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {

    color: #4f58a8;
  	font-weight: bold;
  	font-size: 14px;
    display: table-cell;
    padding: 0px 0 15px 10px;
    max-width: 85%;
}

.promoted-articles-item div {
		display: table-cell;
    height: 100%;
    width: 20px;
    margin-left: -5px;
    position: relative;		
}

.promoted-articles-item div img {
  	width: 15px;
  	display: block;
    top: 0px;
    position: absolute;
}

.promoted-articles-item:last-child a {
  border: 0;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {

  }
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01HZM2NHM94ZQ3EZDR61V2DJNA);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: #4a4a4a;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  color: #7d7d7d;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-item-comment span::before {
  color: #4f58a8;
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  flex-direction: column;
  /* sidebar change - justify-content: flex-end; */
}

.category-content {
  flex: 1;

  
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
    margin-left: 35px;
  }
  
  .category-container {
  flex-direction: initial;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 95%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree .icon-lock::before {
  vertical-align: baseline;
}

.section-tree-title {
  margin-bottom: 0;
  font-weight: bold;
}

.section-tree-title a {
  color: #4a4a4a;
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list {
/*   display: flex;
  flex-wrap: wrap; */
}

.article-list-item {
  font-size: 16px;
  padding: 0;
  flex: 0 0 100%;
  margin-left: 20px;
}

.article-list-item::before {
	display: block;
  position: relative;
  max-width: 0;
  max-height: 0;
  left: -20px;
  top: -23px;
  font-size: 45px;
	content: '\2022';
	color: #d8d8d8;
}

.article-list-item a {
  color: #4f58a8;
}

.icon-star::before {
  color: #4f58a8;
  font-size: 18px;
}

.section-tree-with-article .section .article-list, .section_page .section .article-list {
    margin: 0;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media (max-width: 610px) {
.section-tree-with-article .section .article-list, .section_page .section .article-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
}

.section-tree-with-article .section .article-list li, .section_page .section .article-list li {
    line-height: 21px;
    padding-bottom: 12px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    margin-left: 28px;
    list-style: disc;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
    margin-left: 35px;
  }
  .article-list-item {
  font-size: 14px;
  flex: 0 0 46%;
  padding: 0px 10px 10px 0px;
}
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 62%;
    min-width: 640px;
    padding: 0 10px 0 50px;
  }
}

.article-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0px;
  margin-top: 20px;
}

.article-header h1 {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
  }
}

.article-author {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */
  }
}

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role="button"] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body ul, .article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 0px;
}

.article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol {
  margin: 0;
}

.article-body ol.steps {
    counter-reset: list;
    list-style-type: none;
    padding-left: 0px;
}

.article-body ol.steps > li {
    text-indent: -40px;
    margin-left: 40px;
    counter-increment: list;
  	margin-bottom: 10px;
}

.article-body ol.steps li > ul {
  	text-indent: 0;
    margin-left: 10px;
    counter-increment: none;
  	margin-bottom: 20px;
}

.article-body ol.steps li > ul li {
  	margin-bottom: 10px;
}

.article-body ol.steps > li:before {
    display: inline-flex;
    align-items: center;
    justify-content: center;  
  	background-color: #4f58a8;
    width: 26px;
    text-indent: 0px;
  	text-align: center;
    height: 26px;
    line-height: 26px;
    vertical-align: top;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: #FFFFFF;
    display: inline-block;
    font-weight: 700;
    content: counter(list);
    margin-right: 15px;
    font-size: 15px;
}

.article-body ul {
  list-style-type: disc;
}

.article-body ul.shopping {
    list-style-type: none;
    padding-left: 0px;
}

.article-body ul.shopping li {
    text-indent: -40px;
    margin-left: 40px;
  	margin-bottom: 15px;
  	line-height: 28px;
}

.article-body ul.shopping li:before {
    font-family: 'EE';
    font-style: normal;
    font-weight: normal;
    color: #4f58a8;
    text-indent: -2px;
    content: '\e814';
    vertical-align: bottom;
    padding-left: 0px;
    padding-bottom: 0px;
    height: 28px;
    display: inline-block;
    margin-right: 16px;
    font-size: 47px;

}

/* .article-body a {
  text-decoration: underline;
} */

.article-body a:visited {
  color: #5d66b3;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
  white-space: nowrap;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #7d7d7d;
  font-style: italic;
  padding: 0 15px;
}

.article-body p {
  margin-bottom: 15px;
  margin-top: 0;
}

.article-body p:first-of-type {
  margin-top: 20px;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}

.article-content a {
  text-decoration: underline;
}

.article-body h3 {
  border-bottom: 1px solid #8080805c;
  font-size: 20px;
}

.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.article-comment-count {
  color: #7d7d7d;
  font-weight: 300;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count .icon-comments {
  color: #4f58a8;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  display: none;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 29%;
    height: auto;
  }
}

.article-container .article-sidebar {
  display: block;
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}

.article-relatives > * {
  flex: 1 0 45%;
  margin-right: 0;
}

.article-relatives > *:last-child {
  margin: 0;
}

.article-relatives a {
 	color: #4a4a4a;
}

@media (min-width: 768px) {
  .article-relatives > * {
    margin-right: 20px;
  }
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  background: transparent;
  border: 1px solid #4f58a8;
  color: #4f58a8;
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
}

.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: #4f58a8;
}

.article-vote:hover {
  background-color: #4f58a8;
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: #ffffff;
}

.article-vote-up::before {
  content: "\2713";
}

.article-vote-down::before {
  content: "\2715";
}

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: #4a4a4a;
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: #4f58a8;
  color: #ffffff;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #2e3463;
  border-color: #2e3463;
}

.sidenav-title {
  	font-size: 20px;
    color: #2b2b2b;
    position: relative;
    margin-bottom: 0px;
    padding: 11px 0 11px 38px;
    font-weight: 800;
  
}

.sidenav-item, .sidenav-item:hover {
  color: #4a4a4a;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding-right: 10px;
}

.sidenav-item.current-article {
	color: #4f58a8;
  font-weight: bold;
  text-decoration: none;
}

.sidenav-item.sidebar-category, .sidenav-item.sidebar-category:hover {
	color: #4a4a4a !important;
  font-weight: normal !important;
  margin-bottom: 20px;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: #4a4a4a;
  content: "\1F4CE";
  font-size: 15px;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #7d7d7d;
}

/* Style the buttons inside the tab */

div.tab {
  line-height: 22px;
  margin-bottom: -1px;
}

div.tab button, div.tab div {
  	color: #4f58a8;
    background-color: inherit;
  	font-size: 14px;
	  font-weight: bold;
  	display: inline-block;
    border: none;
    cursor: pointer;
    padding: 8px 20px;
  	border: solid 1px rgba(0,0,0,0);
  	line-height: 22px;
  	margin-right: 8px;
  	border-top: solid 1px #e5e5e5;
  	border-left: solid 1px #e5e5e5;
  	border-right: solid 1px #e5e5e5;
  	border-bottom: solid 1px rgba(0,0,0,0);
  	border-radius: 5px 5px 0 0;
}

div.tab div {
  color: #bbbbbb;
  font-weight: normal;
  cursor: normal;
  
}



div.tab div:first-of-type {
  cursor: default;
  color: #4a4a4a;
  padding: 0 8px 0 0;
  text-align: left;
  margin-right: 0px;
  border: none;
  margin-left: -20px;
}





/* Change background color of buttons on hover */
div.tab button:hover {
   border-bottom: solid 1px #4f58a8;
}

/* Create an active/current tablink class */
div.tab button.active {
  	color: #4a4a4a;
  	border-top: solid 1px #e5e5e5;
  	border-left: solid 1px #e5e5e5;
  	border-right: solid 1px #e5e5e5;
  	border-bottom: solid 1px #ffffff;
  	border-radius: 5px 5px 0 0;
  	cursor: default;
  	
}

/* Style the tab content */
.tabcontent {
    display: none;
    border-top: none;
  	padding: 12px 20px;
		border-width: 1px;
    border-style: solid;
    border-color: rgb(229, 229, 229);
    border-radius: 5px;
  	margin-bottom: 14px;
}

.tabcontent.active {
	display: block;
}

@media (max-width: 414px) {
  div.tab button, div.tab div {
    padding: 4px 12px;
  }
  div.tab div:first-of-type {
 		display: none;
}
  .tabcontent {
    border-radius: 0 5px 5px 5px;
  }
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: #7d7d7d;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

.share a:hover {
  text-decoration: none;
}

.share a:hover::before {
  color: #4f58a8;
}

.share-twitter::before {
  content: "\e901";
}

.share-facebook::before {
  content: "\e903";
}

.share-linkedin::before {
  content: "\e900";
}

.share-googleplus::before {
  content: "\e902";
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #7d7d7d;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: #4f58a8;
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter a {
  color: #7d7d7d;
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid #4f58a8;
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: #4f58a8;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.comment-body img {
  height: auto;
  max-width: 100%;
}

.comment-body ul, .comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

.comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body a:visited {
  color: #b0b0b0;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #7d7d7d;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

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

.vote-sum {
  color: #7d7d7d;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
  color: #4f58a8;
}

.vote-up::before, .vote-down::before {
  color: #7d7d7d;
  font-size: 24px;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: #4f58a8;
}

.vote-voted:hover::before {
  color: #2e3463;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #7d7d7d;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01HZM2NGTCXGQJH8CH2F8DZ9QQ);
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header h4 {
  margin-bottom: 0;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow .dropdown {
  width: 100%;
}

.community-follow [role="button"] {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow [role="button"] {
    width: auto;
  }
}

.community-follow [role="button"]:hover {
  background-color: #4f58a8;
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #ffffff;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: #4f58a8;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #ffffff;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #2e3463;
  border-color: #2e3463;
}

.community-follow [role="button"]::after {
  border-left: 1px solid #4f58a8;
  content: attr(data-follower-count);
  color: #4f58a8;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow [role="button"]::after {
    position: static;
  }
}

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid #4f58a8;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: #e3e3e3;
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: #b0b0b0;
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #7d7d7d;
  font-weight: 300;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  font-weight: 300;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: #4a4a4a;
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #1eb848;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover, .status-label:active, .status-label:focus {
  text-decoration: none;
}

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: #4f58a8;
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-pending, .status-label-not-planned {
  background-color: #eee;
  color: #7d7d7d;
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background-color: #e03b30;
}

.status-label-closed {
  background-color: #ddd;
}

.status-label-solved {
  background-color: #999;
}

.status-label-new {
  background-color: #ffd12a;
}

.status-label-hold {
  background-color: #000;
}

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold {
  text-transform: lowercase;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.post-info {
  flex: 1;
}

@media (min-width: 1024px) {
  .post-info {
    padding-right: 20px;
  }
}

[dir="rtl"] .post-info {
  padding-left: 45px;
  padding-right: 0;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

.post-body img {
  height: auto;
  max-width: 100%;
}

.post-body ul, .post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

.post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body a:visited {
  color: #5d66b3;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #7d7d7d;
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #7d7d7d;
  font-weight: 300;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: #4f58a8;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar h5 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: #4a4a4a;
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: #4a4a4a;
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid #4f58a8;
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #4a4a4a;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 10px;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: #4f58a8;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"]
  .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: #4f58a8;
  color: #ffffff;
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
  background: #4f58a8;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
}

.subscriptions-unsubscribe a:hover {
  background-color: #2e3463;
  text-decoration: none;
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #7d7d7d;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  padding: 8px 15px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .comment-show-container-content {
  align-self: center;
  color: #7d7d7d;
  margin-left: 10px;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid #4f58a8;
}

.request-main .form-field.comment-ccs > input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid #4f58a8;
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

.request-sidebar h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h5 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: #7d7d7d;
  font-weight: 300;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt, .request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 45%;
  }
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-result-description {
  margin-top: 15px;
}

.search-result-votes, .search-result-meta-count {
  color: #7d7d7d;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: #4f58a8;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: #4a4a4a;
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: #7d7d7d;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: #4f58a8;
}

.pagination-current a, .pagination-current span {
  color: #ffffff;
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last {
  border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/
/* [class^="icon-"]::before,
[class*=" icon-"]::before, */
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

/* .icon-star::before {
  content: "\2605";
} */

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

/* .icon-arrow-up::before {
  content: "\2B06";
} */

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 65px;
  height: 65px;
}

.profile-avatar .icon-agent::before {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.profile-header .options [data-action="edit-profile"] {
  background-color: #4f58a8;
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 8px 20px;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #7d7d7d;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px #4f58a8;
  border-radius: 4px;
  color: #4f58a8;
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #7d7d7d;
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
  right: 0;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity::before {
    left: -14px;
  }
  [dir="rtl"] .profile-activity::before {
    right: -14px;
  }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 35px;
}

div.icon-container {
  display: flex;
  align-items: center;
}

.help-icon {
    flex-shrink: 0;
    background-size: 410px;
    background-image: url('http://explaineverything.com/wp-content/explain-everything-resources/help/icons%402x.png');
    background-repeat: no-repeat;
    margin: 0px 5px 0px 5px;
    min-height: 50px;
    width: 50px;
}


.homeHome
{
    background-position: -86px -1737px;
}

.homeNewproject
{
    background-position: -207px -1675px;
}

.homeInviteAndCollaborate
{
    background-position: -145px -1675px;
}

.homeJoinWithCODE
{
    background-position: -86px -1675px;
}

.homeShareAndInspire
{
    background-position: -25px -1675px;
}

.homeLibrary
{
    background-position: -25px -1737px;
}

.homeLearn
{
    background-position: -25px -1737px;
}

.homeSearch
{
    background-position: -268px -1677px;
}

.menuNearbyCollaborations 
{
    background-position: -268px -1677px;   
}

.menuSettings
{
    background-position: -331px -52px;   
}

.menuHelp
{
    background-position: -270px -573px;   
}

.menuAbout
{
    background-position: -270px -573px;
}

.toolsHand {
    background-position: -212px -53px;
}

.toolsAddMedia {
    background-position: -331px -250px;
}

.mediaNewPicture {
    background-position: -209px -1130px;   
}

.mediaNewVideo {
    background-position: -29px -1066px;
}

.mediaNewBrowser {
    background-position: -149px -1068px;
}

.mediaNewEquation {
    background-position: -268px -1068px;
}

.mediaNewAudio {
    background-position: -329px -1130px;
}

.mediaExistingImageVideo {
    background-position: -149px -1130px;
}

.mediaFile {
    background-position: -29px -1130px;
}

.mediaClipart {
    background-position:-209px -1066px;
}

.mediaImageFromWeb {
    background-position: -89px -1130px;
}

.mediaExistingSound {
    background-position: -328px -1065px;
}

.mediaPlaceholder {
    background-position: -269px -1131px;
}

.mediaVideoOverlay {
    background-position: -89px -1069px;
}


.toolsDrawTool 
{
    background-position: -331px -184px;
}

.toolOptionsWidth
{
    background-position: -331px -184px;
}

.toolOptionsStyle
{
    background-position: -151px -506px;
}

.toolOptionsDrawFill
{
    background-position: -333px -506px;
}

.toolOptionsCompleteDrawing
{
    background-position: -210px -376px;
}

.toolHighlighter
{
    background-position: -151px -182px;
}

.toolEraser
{
    background-position: -149px -249px;
}

.toolEraserActive
{
    background-position: -30px -245px;
}

.toolEraserDrawing
{
    background-position: -211px -248px;
}

.toolEraserWithImages
{
    background-position: -91px -248px;
}

.toolBucketFill
{
    background-position: -89px -832px;
}

.toolShapeTool
{
    background-position: -272px -53px;
}

.toolShapeFreeform
{
    background-position: -30px -572px;
}

.toolOptionShadow
{
    background-position: -272px -506px;
}

.toolOptionBorder
{
    background-position: -90px -572px;
}

.toolText
{
    background-position: -150px -52px;
}

.toolCutout
{
    background-position: -149px -573px;
}

.toolCutoutLasso
{
    background-position: -30px -184px;
}

.toolCutoutPrecise
{
    background-position: -90px -184px;
}

.toolDelete
{
    background-position: -271px -248px;
}

.toolLaserPointer
{
    background-position: -90px -51px;
}

.toolInspector
{
    background-position: -31px -119px;
}

.inspectorBringToFront
{
    background-position: -28px -1489px;
}

.inspectorBringForward
{
    background-position: -149px -1484px;
}

.inspectorSendBackward
{
    background-position: -209px -1485px;
}

.inspectorSendToBack
{
    background-position: -89px -1486px;
}

.inspectorAlignLeft
{
    background-position: -88px -1550px;
}

.inspectorAlignCenter
{
    background-position: -149px -1550px;
}

.inspectorAlignRight
{
    background-position: -26px -1550px;
}

.inspectorAlignTop
{
    background-position: -330px -1486px;
}

.inspectorAlignMiddle
{
    background-position: -270px -1486px;
}

.inspectorAlignBottom
{
    background-position: -210px -1550px;
}

.inspectorGroup
{
    background-position: -29px -1354px;
}

.inspectorUngroup
{
    background-position: -29px -1289px;
}

.inspectorDuplicate
{
    background-position: -209px -1357px;
}

.inspectorCopy
{
    background-position: -331px -1292px;
}

.inspectorPaste
{
    background-position: -209px -1292px;
}

.inspectorDeselect
{
    background-position: -269px -1354px;
}

.inspectorFlipUpDown
{
    background-position: -90px -1354px;
}

.inspectorFlipLeftRight
{
    background-position: -149px -1354px;
}

.inspectorSetRotation
{
    background-position: -89px -1289px;
}

.inspectorSetAsBackground
{
    background-position: -149px -1289px;
}

.inspectorAddAsClipart
{
    background-position: -330px -1357px;
}

.inspectorInfiniteScroll
{
    background-position: -271px -1290px;
}

.inspectorLock
{
    background-position: -88px -1420px;
}

.inspectorLockRotation
{
    background-position: -271px -1420px;
}

.inspectorLockScale
{
    background-position: -209px -1420px;
}

.inspectorLockHorizontal
{
    background-position: -149px -1420px;
}

.inspectorLockVertical
{
    background-position: -331px -1420px;
}

.inspectorSnapRotation
{
    background-position: -30px -1420px;
}

.toolUndo {
    background-position: -331px -118px;
}

.toolRedo {
    background-position: -272px -118px;    
}

.toolZoomAndPan
{
    background-position: -31px -53px;
}

.zoomStealthMode
{
    background-position: -211px -116px;
}

.zoomReset
{
    background-position: -31px -53px;
}

.controlSlideSorter
{
    background-position: -152px -770px;
}

.slidesorterPreviousSlide
{
    background-position: -211px -703px;
}

.slidesorterNextSlide
{
    background-position: -272px -703px;
}

.slidesorterAddSlide
{
    background-position: -331px -380px;
}

.controlRecord
{
    background-position: -89px -313px;
}

.recordMix
{
    background-position: -91px -313px;
}

.recordOverwrite
{
    background-position: -91px -313px;
}

.controlMicMute
{
    background-position: -89px -117px;
}

.controlPlay
{
    background-position: -151px -313px;
}

.controlPlayFullscreen
{
    background-position: -210px -313px;
}

.controlRewind
{
    background-position: -29px -378px;
}

.controlFastForward
{
    background-position: -331px -313px;
}

.controlExportAsVideo
{
    background-position: -90px -1190px;
}

.controlExportAsGIF
{
    background-position: -148px -1190px;
}

.controlStartSelection
{
    background-position: -211px -1190px;
}

.controlDelete
{
    background-position: -273px -1190px;
}

.controlDeleteFromHere
{
    background-position: -332px -1190px;
}

.controlDeleteAndCompact
{
    background-position: -90px -1236px;
}

.controlSplit
{
    background-position: -28px -1236px;
}

.controlSmooth
{
    background-position: -148px -1236px;
}

.controlSpeedUp
{
    background-position: -210px -1236px;
}

.controlFadeInAudio
{
    background-position: -272px -1233px;
}

.shareWebVideoLink {
    background-position: -263px -1981px;
}

.shareCollaborateSession {
    background-position: -203px -1981px;
}

.shareExplainDrive {
    background-position: -84px -1981px;
}

.shareExport {
    background-position: -24px -1981px;
}

.libraryShareLink {
    background-position: -23px -1857px;
}

.libraryWhoHasAccess {
    background-position: -325px -1798px;
}

.libraryDownload {
    background-position: -205px -1798px;   
}

.libraryActivity {
    background-position: -84px -1798px;
}

.libraryRename {
    background-position: -146px -1798px;  
}

.libraryDetails {
    background-position: -84px -1798px;
}

.libraryDelete {
    background-position: -23px -1798px;
}

.sharingLinkView {
    background-position: -144px -1920px;
}

.sharingLinkDownload {
    background-position: -82px -1920px;
}

.sharingLinkEdit {
    background-position: -21px -1920px;
}

.sharingSpecified {
    background-position: -326px -1860px;
}

.sharingPublic {
    background-position: -264px -1860px;
}

.sharingPrivate {
    background-position: -204px -1920px;
}


.newblankproject
{
    background-position: -27px -50px;
}

.empty
{
    padding-left: 0px;
    width: 680px;
    min-height: 0px;
}

.CloseList {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 40px;
}

.exporFlow
{
    background-size:22px 22px; padding-left:150px; padding-right: 150px; width: 700px;
    text-align: center;
}

.collaborationJoin
{
    background-size:0px 0px;
    margin: 0 auto;
    min-height: 0px;
    padding-left: 0px;
    width: 680px;
}


/*
 * Explain Icon Fonts
 *
*/

@font-face {
  font-family: 'EE';
  src: url('/hc/theming_assets/01HZM2NE6F6YQGM9QW1HWYAHWW') format('woff2'), url('/hc/theming_assets/01HZM2NF55ZZ7QC5BFPPXKMEZ5') format('woff');
  font-style: normal;
  font-weight: 400;
}

.font_icon {
  text-indent: 0px;
}
.font_icon:before {
  font-family: 'EE';
  font-size: 200% !important;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  vertical-align:bottom;
	margin: 0 2px;
	color: #4F58A8;
}
.font_icon.font_icon_inherit:before {
  /* Add the class font_icon_inherit to any icons that you want to inherit the font-size of their parent */
  font-size: inherit;
}
.font_icon.sm_icon:before {
  font-size: 10px;
}
.font_icon.padded {
  padding-right: 6px;
  padding-left: 4px;
}
.font_icon.top {
  vertical-align: text-top;
}
.font_icon.middle {
  vertical-align: middle;
}
.font_icon.sub {
  vertical-align: sub;
}

font-icon {
  text-indent: 0px;
}
font-icon:before {
  font-family: 'EE';
  font-size: 26px;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
}
font-icon.font_icon_inherit:before {
  /* Add the class font_icon_inherit to any icons that you want to inherit the font-size of their parent */
  font-size: inherit;
}
font-icon.sm_icon:before {
  font-size: 10px;
}
font-icon.padded {
  padding-right: 6px;
  padding-left: 4px;
}
font-icon.top {
  vertical-align: text-top;
}
font-icon.middle {
  vertical-align: middle;
}
font-icon.sub {
  vertical-align: sub;
}

.ee-icon {
  font-size: 8px;
}

.ee-icon:before {
  font-family: 'EE';
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  display: inline;
  line-height: 18px;
  position: relative;
  bottom: -3px;
}

h1 .font_icon:not(.font_icon_base_size):before,
h2 .font_icon:not(.font_icon_base_size):before,
h3 .font_icon:not(.font_icon_base_size):before {
  font-size: inherit;
}

/* Colored EE icon font */
.ee_icon_new_picture:before { color: #3191F1;  }  
.ee_icon_new_video:before { color: #56C84E }  
.ee_icon_new_browser:before { color:#6891B2}  
.ee_icon_new_audio:before { color: #F46262;}  
.ee_icon_existing_image:before { color: #ED1734; }  
.ee_icon_file:before { color: #F6AF51 }  
.ee_icon_clipart:before { color:#38A164;}
.ee_icon_existing_audio:before { color: #E35AB9;}
.ee_icon_edit_add_as_clipart:before { color:#38A164;} 
.ee_icon_lock_rotation:before { color:#FD2F21;}  
.ee_icon_lock_scale:before { color:#FD2F21;}  
.ee_icon_lock_horizontal:before { color:#FD2F21;}  
.ee_icon_lock_vertical:before { color:#FD2F21;}  
.ee_icon_lock_snap_rotation:before { color:#FD2F21;}  
.ee_icon_timeline_delete:before { color:#F46262 }  
.ee_icon_timeline_delete_all:before { color:#F46262}  
.ee_icon_timeline_delete_and_compact:before { color:#F46262}
.ee_icon_share_web_video_link:before { color:#2d3c92}  
.ee_icon_share_export:before { color:#2d3c92}  
.ee_icon_export_video:before { color:#EA4E5D}
.ee_icon_rate_ee:before { color: #FCCC00}  
.ee_icon_video_play:before { color: #47519A}  
.ee_icon_media_record:before { color: #F46262;}  
.ee_icon_text_resize:before { color:#47519A;}  




.ee_icon_sticky_note_border:before { content: '\e800'; } 
.ee_icon_new_picture:before { content: '\e801'; } 
.ee_icon_new_video:before { content: '\e802'; } 
.ee_icon_new_browser:before { content: '\e803'; } 
.ee_icon_new_equation:before { content: '\e804'; } 
.ee_icon_new_audio:before { content: '\e805'; } 
.ee_icon_existing_image:before { content: '\e806'; } 
.ee_icon_file:before { content: '\e807'; } 
.ee_icon_clipart:before { content: '\e808'; } 
.ee_icon_image_from_web:before { content: '\e809'; } 
.ee_icon_existing_audio:before { content: '\e80a'; } 
.ee_icon_placeholder:before { content: '\e80b'; } 
.ee_icon_hand_tool:before { content: '\e80c'; } 
.ee_icon_person_external:before { content: '\e80d'; } 
.ee_icon_draw_tool_pen:before { content: '\e80e'; } 
.ee_icon_draw_tool_pencil:before { content: '\e80f'; } 
.ee_icon_draw_tool_pen_select:before { content: '\e810'; } 
.ee_icon_draw_tool_pencil_select:before { content: '\e811'; } 
.ee_icon_draw_tool_ruler_select:before { content: '\e812'; } 
.ee_icon_auto_fill:before { content: '\e813'; } 
.ee_icon_checkmark:before { content: '\e814'; } 
.ee_icon_color_picker:before { content: '\e815'; } 
.ee_icon_highlighter:before { content: '\e816'; } 
.ee_icon_eraser:before { content: '\e817'; } 
.ee_icon_qr_code:before { content: '\e818'; } 
.ee_icon_new_sticky_note:before { content: '\e81a'; } 
.ee_icon_paint_bucket:before { content: '\e81b'; } 
.ee_icon_shape_tool:before { content: '\e81c'; } 
.ee_icon_square_shape:before { content: '\e81d'; } 
.ee_icon_rounded_square_shape:before { content: '\e81e'; } 
.ee_icon_star_shape:before { content: '\e81f'; } 
.ee_icon_circle_shape:before { content: '\e820'; } 
.ee_icon_line_shape:before { content: '\e821'; } 
.ee_icon_arrow_shape:before { content: '\e822'; } 
.ee_icon_shape_recognition:before { content: '\e823'; } 
.ee_icon_new_slide:before { content: '\e824'; } 
.ee_icon_border_width:before { content: '\e825'; } 
.ee_icon_text_tool:before { content: '\e826'; } 
.ee_icon_cutout_tool:before { content: '\e827'; } 
.ee_icon_freeform_cutout:before { content: '\e828'; } 
.ee_icon_precise_cutout:before { content: '\e829'; } 
.ee_icon_precise_cutout_left:before { content: '\e82a'; } 
.ee_icon_precise_cutout_right:before { content: '\e82b'; } 
.ee_icon_start_precise_cutout:before { content: '\e82c'; } 
.ee_icon_confirm:before { content: '\e82d'; } 
.ee_icon_change_sides_precise_cutout:before { content: '\e82e'; } 
.ee_icon_close_delete:before { content: '\e82f'; } 
.ee_icon_laser_pointer:before { content: '\e830'; } 
.ee_icon_inspector:before { content: '\e831'; } 
.ee_icon_arrange_bring_to_front:before { content: '\e832'; } 
.ee_icon_arrange_bring_forward:before { content: '\e833'; } 
.ee_icon_arrange_send_to_back:before { content: '\e834'; } 
.ee_icon_arrange_send_backward:before { content: '\e835'; } 
.ee_icon_arrange_align_center:before { content: '\e836'; } 
.ee_icon_arrange_align_left:before { content: '\e837'; } 
.ee_icon_arrange_align_right:before { content: '\e838'; } 
.ee_icon_arrange_align_top:before { content: '\e839'; } 
.ee_icon_arrange_align_middle:before { content: '\e83a'; } 
.ee_icon_arrange_align_bottom:before { content: '\e83b'; } 
.ee_icon_edit_group:before { content: '\e83c'; } 
.ee_icon_edit_ungroup:before { content: '\e83d'; } 
.ee_icon_edit_duplicate:before { content: '\e83e'; } 
.ee_icon_edit_copy:before { content: '\e83f'; } 
.ee_icon_edit_paste:before { content: '\e840'; } 
.ee_icon_edit_deselect:before { content: '\e841'; } 
.ee_icon_edit_flip_left_right:before { content: '\e842'; } 
.ee_icon_edit_flip_up_down:before { content: '\e843'; } 
.ee_icon_edit_set_auto_rotation:before { content: '\e844'; } 
.ee_icon_edit_set_as_background:before { content: '\e845'; } 
.ee_icon_edit_add_as_clipart:before { content: '\e846'; } 
.ee_icon_eye:before { content: '\e847'; } 
.ee_icon_lock_lock:before { content: '\e848'; } 
.ee_icon_lock_rotation:before { content: '\e849'; } 
.ee_icon_lock_scale:before { content: '\e84a'; } 
.ee_icon_lock_horizontal:before { content: '\e84b'; } 
.ee_icon_lock_vertical:before { content: '\e84c'; } 
.ee_icon_lock_snap_rotation:before { content: '\e84d'; } 
.ee_icon_undo:before { content: '\e84e'; } 
.ee_icon_redo:before { content: '\e84f'; } 
.ee_icon_zoom:before { content: '\e850'; } 
.ee_icon_more_icon:before { content: '\e851'; } 
.ee_icon_zoom_locked:before { content: '\e852'; } 
.ee_icon_zoom_unlocked:before { content: '\e853'; } 
.ee_icon_zoom_global:before { content: '\e854'; } 
.ee_icon_record:before { content: '\e855'; } 
.ee_icon_stop:before { content: '\e856'; } 
.ee_icon_microphone:before { content: '\e857'; } 
.ee_icon_microphone_muted:before { content: '\e858'; } 
.ee_icon_play:before { content: '\e859'; } 
.ee_icon_rewind:before { content: '\e85a'; } 
.ee_icon_fast_forward:before { content: '\e85b'; } 
.ee_icon_pause:before { content: '\e85c'; } 
.ee_icon_timeline_unlocked:before { content: '\e85d'; } 
.ee_icon_timeline_locked:before { content: '\e85e'; } 
.ee_icon_timeline_web_video_link:before { content: '\e85f'; } 
.ee_icon_timeline_share_as_gif:before { content: '\e860'; } 
.ee_icon_timeline_start_selection:before { content: '\e861'; } 
.ee_icon_timeline_delete:before { content: '\e862'; } 
.ee_icon_timeline_delete_all:before { content: '\e863'; } 
.ee_icon_timeline_delete_and_compact:before { content: '\e864'; } 
.ee_icon_timeline_split:before { content: '\e865'; } 
.ee_icon_timeline_smooth:before { content: '\e866'; } 
.ee_icon_timeline_speed_up:before { content: '\e867'; } 
.ee_icon_timeline_fade_audio:before { content: '\e868'; } 
.ee_icon_timeline_help:before { content: '\e869'; } 
.ee_icon_slide_sorter:before { content: '\e86a'; } 
.ee_icon_slide_sorter_duplicate:before { content: '\e86b'; } 
.ee_icon_slide_sorter_new:before { content: '\e86c'; } 
.ee_icon_slide_sorter_change_background:before { content: '\e86d'; } 
.ee_icon_slide_sorter_remove_audio:before { content: '\e86e'; } 
.ee_icon_slide_sorter_previous:before { content: '\e86f'; } 
.ee_icon_slide_sorter_next:before { content: '\e870'; } 
.ee_icon_navigation_hide:before { content: '\e871'; } 
.ee_icon_navigation_open:before { content: '\e872'; } 
.ee_icon_navigation_show:before { content: '\e873'; } 
.ee_icon_navigation_conceal:before { content: '\e874'; } 
.ee_icon_main_nav_home:before { content: '\e875'; } 
.ee_icon_main_nav_learn:before { content: '\e876'; } 
.ee_icon_main_nav_library:before { content: '\e877'; } 
.ee_icon_main_nav_search:before { content: '\e878'; } 
.ee_icon_project_invite:before { content: '\e879'; } 
.ee_icon_permissions_download:before { content: '\e87b'; } 
.ee_icon_permissions_download_org:before { content: '\e87c'; } 
.ee_icon_permissions_edit:before { content: '\e87d'; } 
.ee_icon_permissions_edit_org:before { content: '\e87e'; } 
.ee_icon_permissions_view:before { content: '\e87f'; } 
.ee_icon_permissions_view_org:before { content: '\e880'; } 
.ee_icon_permissions_specified:before { content: '\e881'; } 
.ee_icon_permissions_public:before { content: '\e882'; } 
.ee_icon_permissions_private:before { content: '\e883'; } 
.ee_icon_project_share:before { content: '\e884'; } 
.ee_icon_home_share:before { content: '\e885'; } 
.ee_icon_share_web_video_link:before { content: '\e886'; } 
.ee_icon_share_export:before { content: '\e887'; } 
.ee_icon_export_video:before { content: '\e888'; } 
.ee_icon_export_image:before { content: '\e889'; } 
.ee_icon_export_document:before { content: '\e88a'; } 
.ee_icon_export_project:before { content: '\e88b'; } 
.ee_icon_more_menu:before { content: '\e88c'; } 
.ee_icon_settings:before { content: '\e88d'; } 
.ee_icon_help-1:before { content: '\e88e'; } 
.ee_icon_manual:before { content: '\e88f'; } 
.ee_icon_about:before { content: '\e890'; } 
.ee_icon_send_feedback:before { content: '\e891'; } 
.ee_icon_newsletter:before { content: '\e892'; } 
.ee_icon_our_website:before { content: '\e893'; } 
.ee_icon_twitter:before { content: '\e894'; } 
.ee_icon_rate_ee:before { content: '\e895'; } 
.ee_icon_project_quick_save:before { content: '\e896'; } 
.ee_icon_project_duplicate:before { content: '\e897'; } 
.ee_icon_project_change_orientation:before { content: '\e898'; } 
.ee_icon_project_save_as_template:before { content: '\e899'; } 
.ee_icon_close_without_saving:before { content: '\e89a'; } 
.ee_icon_u_edit:before { content: '\e89b'; } 
.ee_icon_save_and_close:before { content: '\e89c'; } 
.ee_icon_video_play:before { content: '\e89d'; } 
.ee_icon_toggle_camera:before { content: '\e89e'; } 
.ee_icon_volume:before { content: '\e89f'; } 
.ee_icon_media_volume_off:before { content: '\e8a0'; } 
.ee_icon_media_loop:before { content: '\e8a1'; } 
.ee_icon_media_record:before { content: '\e8a2'; } 
.ee_icon_home_new_project:before { content: '\e8a3'; } 
.ee_icon_home_join_with_CODE:before { content: '\e8a4'; } 
.ee_icon_library_new_folder:before { content: '\e8a5'; } 
.ee_icon_library_sort:before { content: '\e8a6'; } 
.ee_icon_library_view_thumbnail:before { content: '\e8a7'; } 
.ee_icon_library_view_list:before { content: '\e8a8'; } 
.ee_icon_library_merge:before { content: '\e8a9'; } 
.ee_icon_library_move:before { content: '\e8aa'; } 
.ee_icon_library_folder:before { content: '\e8ab'; } 
.ee_icon_library_details:before { content: '\e8ac'; } 
.ee_icon_library_rename:before { content: '\e8ad'; } 
.ee_icon_logo:before { content: '\e8ae'; } 
.ee_icon_u_move:before { content: '\e8af'; } 
.ee_icon_text_resize:before { content: '\e8b0'; } 
.ee_icon_eeiconset178:before { content: '\e8b1'; } 
.ee_icon_auto_rotation_move:before { content: '\e8b2'; } 
.ee_icon_auto_rotation_rotate:before { content: '\e8b3'; } 
.ee_icon_link:before { content: '\e8b4'; } 
.ee_icon_select-all:before { content: '\e8b5'; } 
.ee_icon_shadow:before { content: '\e8b6'; } 
.ee_icon_3dicon:before { content: '\e8b7'; } 
.ee_icon_loop-stroke:before { content: '\e8b8'; } 
.ee_icon_edit_bacground:before { content: '\e8ba'; } 
.ee_icon_edit:before { content: '\e8bc'; } 
.ee_icon_clear_all:before { content: '\e8c7'; } 
.ee_icon_erase_active_drawings:before { content: '\e8cd'; } 
.ee_icon_erase_all_drawings:before { content: '\e8ce'; } 
.ee_icon_erase_with_images:before { content: '\e8cf'; } 
.ee_icon_straighten:before { content: '\e8d1'; } 
.ee_icon_group-341:before { content: '\e8d3'; } 
.ee_icon_scan:before { content: '\e8d4'; } 
.ee_icon_backpack:before { content: '\e8d5'; } 
.ee_icon_download:before { content: '\e8d6'; } 
.ee_icon_edit_background:before { content: '\e8d7'; } 
.ee_icon_draw_tool:before { content: '\e8d9'; } 
.ee_icon_infinity_puptet:before { content: '\e8da'; } 
.ee_icon_add_media:before { content: '\e8db'; } 
.ee_icon_key:before { content: '\e8dc'; } 
.ee_icon_layers:before { content: '\e8dd'; } 
.ee_icon_help:before { content: '\e8de'; } 
.ee_icon_modify:before { content: '\e8e0'; } 
.ee_icon_ninja_stealth_mode:before { content: '\e8e1'; } 
.ee_icon_mic:before { content: '\e8e2'; } 
.ee_icon_unmute:before { content: '\e8e3'; } 
.ee_icon_mic-warning:before { content: '\e8e4'; } 
.ee_icon_steps:before { content: '\e8e5'; } 
.ee_icon_reset-zoom:before { content: '\e8e6'; } 
.ee_icon_fit-zoom:before { content: '\e8e7'; } 
.ee_icon_add-video-to-timeline:before { content: '\e8e8'; } 
.ee_icon_battery:before { content: '\e8e9'; } 
.ee_icon_2nd-screen:before { content: '\e8ea'; } 
.ee_icon_show_player:before { content: '\e8eb'; } 


/*
 * Embers Icon Fonts
 *
*/

@font-face {
  font-family: 'embers_icon_24x24';
  src:  url('/hc/theming_assets/01JCJY4YRFZDMKJ7SEM6E4Y655');
  src:  url('/hc/theming_assets/01JCJY4YRFZDMKJ7SEM6E4Y655') format('embedded-opentype'),
    url('/hc/theming_assets/01JCJXB4EZSGAP05Y9SB8K3086') format('woff2'),
    url('/hc/theming_assets/01JCJXB1NTKYHP2JY16KA6FP5Q') format('truetype'),
    url('/hc/theming_assets/01HZM2NF55ZZ7QC5BFPPXKMEZ5') format('woff'),
    url('/hc/theming_assets/01JCJXSY8T2KKEY1N1W65FHP1C') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.embers-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'embers_icon_24x24' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* KB Shortcut-specifix style start */
[class='embers-icon'] {
  display: none;
}

.shortcutName > .embers-icon {
  margin-left:10px;
}
/* KB Shortcut-specifix style end */

.icon-camera-web-off:before {
  content: "\eb36";
}
.icon-camera-web-on-fill:before {
  content: "\eb38";
}
.icon-camera-web-on:before {
  content: "\eb3a";
}
.icon-circle-arrow-down-org:before {
  content: "\eb3c";
}
.icon-circle-arrow-down:before {
  content: "\eb3e";
}
.icon-circle-edit-org:before {
  content: "\eb40";
}
.icon-circle-edit:before {
  content: "\eb42";
}
.icon-circle-profile:before {
  content: "\eb44";
}
.icon-circle-visibility-org:before {
  content: "\eb46";
}
.icon-circle-visibility:before {
  content: "\eb48";
}
.icon-file-gif:before {
  content: "\eb4a";
}
.icon-flow-chart:before {
  content: "\eb4c";
}
.icon-lan-fill:before {
  content: "\eb4e";
}
.icon-lan:before {
  content: "\eb50";
}
.icon-menu-context:before {
  content: "\eb52";
}
.icon-moon:before {
  content: "\eb54";
}
.icon-shape-multi-edit:before {
  content: "\eb56";
}
.icon-cube-inverted:before {
  content: "\eb0e";
}
.icon-earth:before {
  content: "\eb17";
}
.icon-cube:before {
  content: "\eb18";
}
.icon-shape-star-12-point:before {
  content: "\eb1c";
}
.icon-shape-speech:before {
  content: "\eb1e";
}
.icon-shape-check:before {
  content: "\eb20";
}
.icon-arrow-up-right:before {
  content: "\eb22";
}
.icon-tool-freeform-curve-straight:before {
  content: "\eb24";
}
.icon-tool-freeform-straight:before {
  content: "\eb26";
}
.icon-tool-freeform-curve:before {
  content: "\eb28";
}
.icon-line-dash:before {
  content: "\eb2a";
}
.icon-arrow-dash-up-right:before {
  content: "\eb2c";
}
.icon-arrow-dash-down-left:before {
  content: "\eb2e";
}
.icon-arrow-dash-expand:before {
  content: "\eb30";
}
.icon-lock-code:before {
  content: "\eb32";
}
.icon-recording-insert:before {
  content: "\eb34";
}
.icon-zoom-to-fit:before {
  content: "\eb08";
}
.icon-zoom-reset:before {
  content: "\eb0c";
}
.icon-alt-text-fill:before {
  content: "\eaf4";
}
.icon-alt-text:before {
  content: "\eafa";
}
.icon-shape-star-4-point:before {
  content: "\eaf2";
}
.icon-tool-eraser-fill:before {
  content: "\ec72";
}
.icon-line-concave:before {
  content: "\eaf6";
}
.icon-line-chain:before {
  content: "\eaf8";
}
.icon-shape-quarter-arc:before {
  content: "\ebfc";
}
.icon-shape-decorated-square:before {
  content: "\eafc";
}
.icon-line-right-angle:before {
  content: "\eafd";
}
.icon-line-chain-curve:before {
  content: "\eafe";
}
.icon-line-step:before {
  content: "\eb00";
}
.icon-line-inverted-u:before {
  content: "\eb01";
}
.icon-line-convex:before {
  content: "\eb02";
}
.icon-arrow-callout-dot:before {
  content: "\eb06";
}
.icon-arrow-callout:before {
  content: "\eb07";
}
.icon-tool-pen-full:before {
  content: "\ec7c";
}
.icon-arrow-square:before {
  content: "\eb0a";
}
.icon-shape-star-8-point:before {
  content: "\ec02";
}
.icon-shape-octagon:before {
  content: "\ebf8";
}
.icon-factory:before {
  content: "\eb0f";
}
.icon-close-outline:before {
  content: "\eb10";
}
.icon-arrow-rounded:before {
  content: "\eb12";
}
.icon-shape-pentagon:before {
  content: "\eb14";
}
.icon-shape-oval:before {
  content: "\eb16";
}
.icon-shape-diamond:before {
  content: "\ebf4";
}
.icon-shape-hexagon:before {
  content: "\ebf6";
}
.icon-tool-freeform:before {
  content: "\eb1a";
}
.icon-settings-fill:before {
  content: "\eaee";
}
.icon-graph-bar:before {
  content: "\eaf0";
}
.icon-3d-model:before {
  content: "\ea76";
}
.icon-airplane-right:before {
  content: "\ea78";
}
.icon-airplane-up:before {
  content: "\ea7a";
}
.icon-arrow-rounded-down:before {
  content: "\ea7c";
}
.icon-arrow-rounded-left:before {
  content: "\ea7e";
}
.icon-arrow-rounded-right:before {
  content: "\ea80";
}
.icon-arrow-rounded-up:before {
  content: "\ea82";
}
.icon-audio-fade-in:before {
  content: "\ea84";
}
.icon-copy:before {
  content: "\ea86";
}
.icon-deselect:before {
  content: "\ea88";
}
.icon-drop-shadow:before {
  content: "\ea8a";
}
.icon-duck:before {
  content: "\ea8c";
}
.icon-folder-shared-fill:before {
  content: "\ea8e";
}
.icon-folder-shared:before {
  content: "\ea90";
}
.icon-graph-line-smooth:before {
  content: "\ea92";
}
.icon-image-add-placeholder:before {
  content: "\ea94";
}
.icon-image-set-background:before {
  content: "\ea96";
}
.icon-infinite-scroll:before {
  content: "\ea98";
}
.icon-layout-custom:before {
  content: "\ea9a";
}
.icon-layout-presenter:before {
  content: "\ea9c";
}
.icon-layout-simple:before {
  content: "\ea9e";
}
.icon-layout-standard:before {
  content: "\eaa0";
}
.icon-lightning:before {
  content: "\eaa2";
}
.icon-orientation-frame:before {
  content: "\eaa4";
}
.icon-outline-color:before {
  content: "\eaa6";
}
.icon-outline-none:before {
  content: "\eaa8";
}
.icon-page-layers:before {
  content: "\eaaa";
}
.icon-recording-delete-here:before {
  content: "\eaac";
}
.icon-recording-delete-selection:before {
  content: "\eaae";
}
.icon-recording-delete:before {
  content: "\eab0";
}
.icon-recording-mix:before {
  content: "\eab2";
}
.icon-recording-overwrite:before {
  content: "\eab4";
}
.icon-recording-split:before {
  content: "\eab6";
}
.icon-resize-expand-full:before {
  content: "\eab8";
}
.icon-resize-horizontal-full:before {
  content: "\eaba";
}
.icon-resize-vertical-full:before {
  content: "\eabc";
}
.icon-rotate-snap-magnet:before {
  content: "\eabe";
}
.icon-shape-circle:before {
  content: "\eac0";
}
.icon-shape-edit:before {
  content: "\eac2";
}
.icon-shape-parallelogram:before {
  content: "\eac4";
}
.icon-shape-recognition:before {
  content: "\eac6";
}
.icon-shape-right-triangle:before {
  content: "\eac8";
}
.icon-shape-rounded-square:before {
  content: "\eaca";
}
.icon-shape-square:before {
  content: "\eacc";
}
.icon-shape-trapezium:before {
  content: "\eace";
}
.icon-shape-trapezoid:before {
  content: "\ead0";
}
.icon-speed-2x:before {
  content: "\ead2";
}
.icon-strikethrough-text:before {
  content: "\ead4";
}
.icon-text-border:before {
  content: "\ead6";
}
.icon-text-justified-align:before {
  content: "\ead8";
}
.icon-tool-erase-active:before {
  content: "\eada";
}
.icon-tool-erase-all:before {
  content: "\eadc";
}
.icon-tool-erase-images:before {
  content: "\eade";
}
.icon-tool-fill-drawing:before {
  content: "\eae0";
}
.icon-tool-lasso:before {
  content: "\eae2";
}
.icon-tool-pen:before {
  content: "\eae4";
}
.icon-tool-scalpel:before {
  content: "\eae6";
}
.icon-tool-straighten:before {
  content: "\eae8";
}
.icon-touch-add:before {
  content: "\eaea";
}
.icon-user-add:before {
  content: "\eaec";
}
.icon-upgrade-fill:before {
  content: "\e97d";
}
.icon-thickness:before {
  content: "\ea54";
}
.icon-table:before {
  content: "\ea56";
}
.icon-social-x:before {
  content: "\ea58";
}
.icon-social-x-fill:before {
  content: "\ea5a";
}
.icon-page-order:before {
  content: "\ea5c";
}
.icon-page-order-fill:before {
  content: "\ea5e";
}
.icon-graph-line:before {
  content: "\ea60";
}
.icon-folder-add:before {
  content: "\ea62";
}
.icon-folder-add-fill:before {
  content: "\ea64";
}
.icon-fill-fill:before {
  content: "\ea66";
}
.icon-file-apk:before {
  content: "\ea68";
}
.icon-cutout:before {
  content: "\ea6a";
}
.icon-cloud-check:before {
  content: "\ea6c";
}
.icon-cloud-check-fill:before {
  content: "\ea6e";
}
.icon-archived:before {
  content: "\ea70";
}
.icon-upgrade:before {
  content: "\ea72";
}
.icon-archived-fill:before {
  content: "\ea74";
}
.icon-internet:before {
  content: "\ea52";
}
.icon-support:before {
  content: "\ea30";
}
.icon-auto-update:before {
  content: "\ea32";
}
.icon-device-sync:before {
  content: "\ea33";
}
.icon-divider-panel:before {
  content: "\ea34";
}
.icon-dock-left:before {
  content: "\ea36";
}
.icon-dock-right:before {
  content: "\ea38";
}
.icon-minimize:before {
  content: "\ea3a";
}
.icon-mute-fill:before {
  content: "\ea3c";
}
.icon-question-block-add:before {
  content: "\ea3e";
}
.icon-resize-contract2:before {
  content: "\ea40";
}
.icon-resize-left-handle:before {
  content: "\ea42";
}
.icon-resize-right-handle:before {
  content: "\ea44";
}
.icon-user-fill:before {
  content: "\ea46";
}
.icon-volume-down-fill:before {
  content: "\ea48";
}
.icon-volume-off-fill:before {
  content: "\ea4a";
}
.icon-volume-off:before {
  content: "\ea4c";
}
.icon-volume-up-fill:before {
  content: "\ea4e";
}
.icon-volume-fill:before {
  content: "\ea4f";
}
.icon-whiteboard-ee-fill:before {
  content: "\ea50";
}
.icon-whiteboard-ee:before {
  content: "\ea51";
}
.icon-orientation-horizontal:before {
  content: "\ea2c";
}
.icon-orientation-vertical:before {
  content: "\ea2e";
}
.icon-stop-fill:before {
  content: "\ea26";
}
.icon-sound-recorder-fill:before {
  content: "\ea28";
}
.icon-sound-recorder-off-fill:before {
  content: "\ea2a";
}
.icon-resume-fill:before {
  content: "\ea23";
}
.icon-video-stop-fill:before {
  content: "\ea24";
}
.icon-audio-file:before {
  content: "\ea1c";
}
.icon-clear-menu:before {
  content: "\ea1e";
}
.icon-edit-answer:before {
  content: "\ea20";
}
.icon-multiple-choice-list:before {
  content: "\ea21";
}
.icon-video-file:before {
  content: "\ea22";
}
.icon-product-add-fill:before {
  content: "\ea18";
}
.icon-product-fill:before {
  content: "\ea1a";
}
.icon-product-add:before {
  content: "\ea10";
}
.icon-product-admin-fill:before {
  content: "\ea12";
}
.icon-product-admin:before {
  content: "\ea14";
}
.icon-product:before {
  content: "\ea16";
}
.icon-collapse-horizontal:before {
  content: "\e9c8";
}
.icon-collapse-vertical:before {
  content: "\e9ca";
}
.icon-expand-less-alt-fill:before {
  content: "\ea0c";
}
.icon-expand-more-alt-fill:before {
  content: "\ea0e";
}
.icon-browser-annotate:before {
  content: "\e9b4";
}
.icon-browser-hide:before {
  content: "\e9b6";
}
.icon-correct-answer1:before {
  content: "\e9b8";
}
.icon-correct-answer2:before {
  content: "\e9ba";
}
.icon-correct-answer3:before {
  content: "\e9bc";
}
.icon-correct-answer4:before {
  content: "\e9be";
}
.icon-correct-answer5:before {
  content: "\e9c0";
}
.icon-correct-answer6:before {
  content: "\e9c2";
}
.icon-decrease-text-size:before {
  content: "\e9c4";
}
.icon-duplicate-end:before {
  content: "\e9c6";
}
.icon-duplicate-first:before {
  content: "\e9c7";
}
.icon-expand:before {
  content: "\e9cc";
}
.icon-flipchart-save:before {
  content: "\e9ce";
}
.icon-fractions:before {
  content: "\e9d0";
}
.icon-home2:before {
  content: "\e9d2";
}
.icon-increase-text-size:before {
  content: "\e9d4";
}
.icon-page-delete2:before {
  content: "\e9d6";
}
.icon-palette-swap:before {
  content: "\e9d8";
}
.icon-panel-vote:before {
  content: "\e9da";
}
.icon-pause-circle-fill:before {
  content: "\e9dc";
}
.icon-pen-modifier:before {
  content: "\e9dd";
}
.icon-pen-settings:before {
  content: "\e9de";
}
.icon-play-circle-fill:before {
  content: "\e9e0";
}
.icon-poll-create:before {
  content: "\e9e2";
}
.icon-processing:before {
  content: "\e9e4";
}
.icon-question-correct:before {
  content: "\e9e6";
}
.icon-question-repeat:before {
  content: "\e9e8";
}
.icon-question-sort:before {
  content: "\e9ea";
}
.icon-scale-poll-4:before {
  content: "\e9ec";
}
.icon-scale-poll-5:before {
  content: "\e9ee";
}
.icon-scale-poll-6:before {
  content: "\e9f0";
}
.icon-scale-poll-7:before {
  content: "\e9f2";
}
.icon-scan:before {
  content: "\e9f4";
}
.icon-select:before {
  content: "\e9f6";
}
.icon-sort-in-order:before {
  content: "\e9f8";
}
.icon-subscript:before {
  content: "\e9fa";
}
.icon-superscript:before {
  content: "\e9fc";
}
.icon-symbols:before {
  content: "\e9fe";
}
.icon-text-highlight:before {
  content: "\ea00";
}
.icon-text-lowercase:before {
  content: "\ea02";
}
.icon-text-select-all:before {
  content: "\ea04";
}
.icon-text-tools:before {
  content: "\ea06";
}
.icon-text-uppercase:before {
  content: "\ea08";
}
.icon-true-false:before {
  content: "\ea0a";
}
.icon-annotate-app-fill:before {
  content: "\e90e";
}
.icon-annotate-app:before {
  content: "\e916";
}
.icon-desktop-fill:before {
  content: "\e996";
}
.icon-full-screen-center:before {
  content: "\e998";
}
.icon-grab-handle-horizontal:before {
  content: "\e99a";
}
.icon-health:before {
  content: "\e99c";
}
.icon-notes-post-it:before {
  content: "\e99e";
}
.icon-panel-fill:before {
  content: "\e9a0";
}
.icon-screen-share-stop:before {
  content: "\e9a1";
}
.icon-software-fill:before {
  content: "\e9a2";
}
.icon-store:before {
  content: "\e9a4";
}
.icon-student-response-blank:before {
  content: "\e9a6";
}
.icon-student-response-pending:before {
  content: "\e9a8";
}
.icon-user-mobile:before {
  content: "\e9aa";
}
.icon-view-random:before {
  content: "\e9ac";
}
.icon-whiteboard-fill:before {
  content: "\e9ae";
}
.icon-group:before {
  content: "\e994";
}
.icon-fixed:before {
  content: "\e993";
}
.icon-text-auto:before {
  content: "\e992";
}
.icon-expresspoll-draw:before {
  content: "\e990";
}
.icon-increase-object-size:before {
  content: "\e98c";
}
.icon-decrease-object-size:before {
  content: "\e98e";
}
.icon-masquerade-fill:before {
  content: "\e988";
}
.icon-vote-browse:before {
  content: "\e98a";
}
.icon-student-response:before {
  content: "\e946";
}
.icon-response:before {
  content: "\e948";
}
.icon-folder:before {
  content: "\e972";
}
.icon-folder-fill:before {
  content: "\e974";
}
.icon-delete-down:before {
  content: "\e976";
}
.icon-cloud-fill:before {
  content: "\e978";
}
.icon-vote:before {
  content: "\e97a";
}
.icon-page-previous:before {
  content: "\e97c";
}
.icon-page-next:before {
  content: "\e97e";
}
.icon-notes-clear:before {
  content: "\e980";
}
.icon-page-spell-check:before {
  content: "\e982";
}
.icon-page-duplicate-after:before {
  content: "\e984";
}
.icon-page-duplicate-before:before {
  content: "\e986";
}
.icon-browser-search:before {
  content: "\e903";
}
.icon-location-manage:before {
  content: "\e906";
}
.icon-location:before {
  content: "\e918";
}
.icon-resource-library-fill:before {
  content: "\e920";
}
.icon-resource-library:before {
  content: "\e922";
}
.icon-resource-fill:before {
  content: "\e924";
}
.icon-resource:before {
  content: "\e926";
}
.icon-folder-link:before {
  content: "\e928";
}
.icon-tool-pencil-dual:before {
  content: "\e92a";
}
.icon-desktop:before {
  content: "\e92c";
}
.icon-page-recent:before {
  content: "\e92e";
}
.icon-page-with-tone:before {
  content: "\e930";
}
.icon-page-go-to:before {
  content: "\e932";
}
.icon-page-first:before {
  content: "\e934";
}
.icon-page-last:before {
  content: "\e936";
}
.icon-page-new:before {
  content: "\e938";
}
.icon-page-link:before {
  content: "\e93a";
}
.icon-page-browse:before {
  content: "\e93c";
}
.icon-file-excel:before {
  content: "\e93e";
}
.icon-grid-hide:before {
  content: "\e940";
}
.icon-scissors:before {
  content: "\e942";
}
.icon-notes-browse:before {
  content: "\e944";
}
.icon-page-new-after:before {
  content: "\e94a";
}
.icon-page-new-before:before {
  content: "\e94c";
}
.icon-page-paste:before {
  content: "\e94e";
}
.icon-page-copy:before {
  content: "\e950";
}
.icon-browser-show-fill:before {
  content: "\e952";
}
.icon-browser-show:before {
  content: "\e954";
}
.icon-browser-fill:before {
  content: "\e956";
}
.icon-browser:before {
  content: "\e958";
}
.icon-user-device:before {
  content: "\e95a";
}
.icon-user-anonymous:before {
  content: "\e95c";
}
.icon-clock-mode-fill:before {
  content: "\e95e";
}
.icon-touch-click-enable:before {
  content: "\e960";
}
.icon-touch-click-browse:before {
  content: "\e962";
}
.icon-touch-refocus:before {
  content: "\e964";
}
.icon-touch-trackpad:before {
  content: "\e966";
}
.icon-palm-browse:before {
  content: "\e968";
}
.icon-touch-click-fill:before {
  content: "\e96a";
}
.icon-touch-click:before {
  content: "\e96c";
}
.icon-touch-draw-fill:before {
  content: "\e96e";
}
.icon-touch-draw:before {
  content: "\e970";
}
.icon-page-notes:before {
  content: "\e90f";
}
.icon-objects-browse:before {
  content: "\e910";
}
.icon-property-browse:before {
  content: "\e912";
}
.icon-annotate-clear:before {
  content: "\e914";
}
.icon-notes:before {
  content: "\e917";
}
.icon-acti-vote-press:before {
  content: "\e91a";
}
.icon-poll-timed:before {
  content: "\e91c";
}
.icon-film-reel:before {
  content: "\e91e";
}
.icon-objects-edit:before {
  content: "\e90c";
}
.icon-select-all:before {
  content: "\e900";
}
.icon-view-card:before {
  content: "\e902";
}
.icon-view-list:before {
  content: "\e904";
}
.icon-tools:before {
  content: "\e908";
}
.icon-video-play:before {
  content: "\e90a";
}
.icon-circle-creator:before {
  content: "\ee2c";
}
.icon-code:before {
  content: "\ee2d";
}
.icon-tool-corner-square:before {
  content: "\ee2e";
}
.icon-file-pwb:before {
  content: "\ee30";
}
.icon-functions:before {
  content: "\ee32";
}
.icon-logic:before {
  content: "\ee33";
}
.icon-loop:before {
  content: "\ee34";
}
.icon-palette:before {
  content: "\ee35";
}
.icon-tool-protractor:before {
  content: "\ee36";
}
.icon-text-fields:before {
  content: "\ee37";
}
.icon-variables:before {
  content: "\ee38";
}
.icon-zoom-in:before {
  content: "\ee39";
}
.icon-zoom-out:before {
  content: "\ee3a";
}
.icon-acti-vote:before {
  content: "\ed9c";
}
.icon-activinspire-resources:before {
  content: "\ed9f";
}
.icon-agreement:before {
  content: "\eda0";
}
.icon-align-complete:before {
  content: "\eda1";
}
.icon-bottom-layer:before {
  content: "\eda7";
}
.icon-bring-forwards-fill:before {
  content: "\eda8";
}
.icon-bring-forwards:before {
  content: "\eda9";
}
.icon-bring-to-front-fill:before {
  content: "\edaa";
}
.icon-bring-to-front:before {
  content: "\edab";
}
.icon-bullet-circles-fill:before {
  content: "\edac";
}
.icon-bullet-circles:before {
  content: "\edad";
}
.icon-bullet-decimals:before {
  content: "\edae";
}
.icon-bullet-lower-case:before {
  content: "\edaf";
}
.icon-bullet-squares-fill:before {
  content: "\edb0";
}
.icon-bullet-squares:before {
  content: "\edc5";
}
.icon-bullet-upper-case:before {
  content: "\edc4";
}
.icon-calculator-fill:before {
  content: "\edc3";
}
.icon-calculator:before {
  content: "\edc2";
}
.icon-camera-area:before {
  content: "\edc1";
}
.icon-camera-freeform:before {
  content: "\edc0";
}
.icon-camera-full-screen:before {
  content: "\edbf";
}
.icon-camera-point:before {
  content: "\edbe";
}
.icon-camera-window:before {
  content: "\edbd";
}
.icon-clear-background:before {
  content: "\edbb";
}
.icon-clipboard:before {
  content: "\edba";
}
.icon-clock-both:before {
  content: "\edb9";
}
.icon-clock-digital:before {
  content: "\edb8";
}
.icon-clock-settings:before {
  content: "\edb7";
}
.icon-color-picker:before {
  content: "\edb4";
}
.icon-tool-compass:before {
  content: "\edb3";
}
.icon-shape-convert:before {
  content: "\edb2";
}
.icon-text-convert:before {
  content: "\edb1";
}
.icon-copy-drag:before {
  content: "\edc6";
}
.icon-dec-transparency:before {
  content: "\edc9";
}
.icon-design-mode-settings:before {
  content: "\edca";
}
.icon-design-mode:before {
  content: "\edcb";
}
.icon-desktop-snapshot:before {
  content: "\edcc";
}
.icon-device-registration:before {
  content: "\edcd";
}
.icon-dice:before {
  content: "\edce";
}
.icon-equation:before {
  content: "\edd3";
}
.icon-flipchart-express:before {
  content: "\edd5";
}
.icon-extend-page:before {
  content: "\edd8";
}
.icon-folder-activinspire-resources:before {
  content: "\edda";
}
.icon-graph-type:before {
  content: "\edee";
}
.icon-grid-snap:before {
  content: "\eded";
}
.icon-grid:before {
  content: "\edec";
}
.icon-hw-recognition:before {
  content: "\edea";
}
.icon-import-notebook:before {
  content: "\ede9";
}
.icon-inc-transparency:before {
  content: "\ede8";
}
.icon-keyboard-large:before {
  content: "\ede7";
}
.icon-magic-ink:before {
  content: "\ede5";
}
.icon-middle-layer:before {
  content: "\ede3";
}
.icon-my-activinspire-resources:before {
  content: "\ede2";
}
.icon-new-text-object:before {
  content: "\eddf";
}
.icon-objects-clear:before {
  content: "\eddb";
}
.icon-objects-original-size:before {
  content: "\edf0";
}
.icon-objects:before {
  content: "\edf1";
}
.icon-page-cut:before {
  content: "\edf3";
}
.icon-page-delete:before {
  content: "\edf4";
}
.icon-page-export:before {
  content: "\edf5";
}
.icon-page-organiser:before {
  content: "\edf7";
}
.icon-page-template-landscape:before {
  content: "\edf8";
}
.icon-page-template:before {
  content: "\edf9";
}
.icon-page-transition:before {
  content: "\edfa";
}
.icon-pages:before {
  content: "\edfb";
}
.icon-paste:before {
  content: "\edfd";
}
.icon-planet:before {
  content: "\edfe";
}
.icon-poll-starter:before {
  content: "\edff";
}
.icon-presentation-mode:before {
  content: "\ee00";
}
.icon-question-edit:before {
  content: "\ee01";
}
.icon-question-set:before {
  content: "\ee02";
}
.icon-question-template:before {
  content: "\ee03";
}
.icon-recorder-area:before {
  content: "\ee04";
}
.icon-recorder-full-screen:before {
  content: "\ee27";
}
.icon-send-backwards-fill:before {
  content: "\ee25";
}
.icon-send-backwards:before {
  content: "\ee23";
}
.icon-send-fill:before {
  content: "\ee21";
}
.icon-send-to-back-fill:before {
  content: "\ee1f";
}
.icon-send-to-back:before {
  content: "\ee1d";
}
.icon-shapes:before {
  content: "\ee19";
}
.icon-share-activinspire-resources:before {
  content: "\ee17";
}
.icon-sound-recorder-off:before {
  content: "\ee11";
}
.icon-sound-recorder:before {
  content: "\ee0f";
}
.icon-spell-checker:before {
  content: "\ee0b";
}
.icon-spokesperson:before {
  content: "\ee0a";
}
.icon-spotlight-rectangle-fill:before {
  content: "\ee09";
}
.icon-spotlight-rectangle:before {
  content: "\ee08";
}
.icon-stamp:before {
  content: "\ee07";
}
.icon-student-database:before {
  content: "\ee06";
}
.icon-teacher-lock:before {
  content: "\ee05";
}
.icon-text-decrease-indent:before {
  content: "\ee28";
}
.icon-text-decrease-spacing:before {
  content: "\ee26";
}
.icon-text-increase-indent:before {
  content: "\ee24";
}
.icon-text-increase-spacing:before {
  content: "\ee22";
}
.icon-time-stamp:before {
  content: "\ee1c";
}
.icon-timer-edit:before {
  content: "\ee1a";
}
.icon-top-layer:before {
  content: "\ee16";
}
.icon-transparency:before {
  content: "\ee14";
}
.icon-ungroup:before {
  content: "\ee12";
}
.icon-user-defined-button:before {
  content: "\ee10";
}
.icon-vertical-text:before {
  content: "\ee0e";
}
.icon-xy-origin:before {
  content: "\ee0c";
}
.icon-shape-arrow:before {
  content: "\ed69";
}
.icon-backward:before {
  content: "\ed6a";
}
.icon-bold-text:before {
  content: "\ed6b";
}
.icon-crop:before {
  content: "\ed6c";
}
.icon-d-pad-fill:before {
  content: "\ed6d";
}
.icon-d-pad:before {
  content: "\ed6e";
}
.icon-extra-credit:before {
  content: "\ed6f";
}
.icon-fingerprint:before {
  content: "\ed70";
}
.icon-font-text:before {
  content: "\ed71";
}
.icon-forward:before {
  content: "\ed72";
}
.icon-get-moving:before {
  content: "\ed73";
}
.icon-italic-text:before {
  content: "\ed74";
}
.icon-keyboard-fill:before {
  content: "\ed75";
}
.icon-keyboard:before {
  content: "\ed76";
}
.icon-landscape-to-portrait:before {
  content: "\ed77";
}
.icon-laser-pointer:before {
  content: "\ed78";
}
.icon-shape-line:before {
  content: "\ed79";
}
.icon-live:before {
  content: "\ed7a";
}
.icon-month:before {
  content: "\ed7b";
}
.icon-mouse-fill:before {
  content: "\ed7c";
}
.icon-mouse:before {
  content: "\ed7d";
}
.icon-music-fill:before {
  content: "\ed7e";
}
.icon-music:before {
  content: "\ed7f";
}
.icon-open-arrow:before {
  content: "\ed80";
}
.icon-phone-fill:before {
  content: "\ed81";
}
.icon-phone:before {
  content: "\ed82";
}
.icon-point:before {
  content: "\ed83";
}
.icon-portrait-to-landscape:before {
  content: "\ed84";
}
.icon-qr-code:before {
  content: "\ed85";
}
.icon-revealer-fill:before {
  content: "\ed87";
}
.icon-revealer:before {
  content: "\ed88";
}
.icon-rotate-90:before {
  content: "\ed89";
}
.icon-rotate-arrow:before {
  content: "\ed8a";
}
.icon-rotate:before {
  content: "\ed8b";
}
.icon-send-to-panel-fill:before {
  content: "\ed8c";
}
.icon-send-to-panel:before {
  content: "\ed8d";
}
.icon-spotlight-circle-fill:before {
  content: "\ed8e";
}
.icon-spotlight-circle:before {
  content: "\ed8f";
}
.icon-tablet-fill:before {
  content: "\ed90";
}
.icon-tablet:before {
  content: "\ed91";
}
.icon-text-center-align:before {
  content: "\ed92";
}
.icon-text-color:before {
  content: "\ed93";
}
.icon-text-left-align:before {
  content: "\ed94";
}
.icon-text-right-align:before {
  content: "\ed95";
}
.icon-shape-triangle:before {
  content: "\ed97";
}
.icon-underline-text:before {
  content: "\ed98";
}
.icon-watch-fill:before {
  content: "\ed99";
}
.icon-watch:before {
  content: "\ed9a";
}
.icon-year:before {
  content: "\ed9b";
}
.icon-celebration:before {
  content: "\ed68";
}
.icon-sound-meter:before {
  content: "\ed67";
}
.icon-sounds:before {
  content: "\ed65";
}
.icon-day:before {
  content: "\ed63";
}
.icon-week:before {
  content: "\ed61";
}
.icon-academy:before {
  content: "\ed5d";
}
.icon-resize-contract:before {
  content: "\ed59";
}
.icon-resize-expand:before {
  content: "\ed5f";
}
.icon-clock-mode:before {
  content: "\ed11";
}
.icon-creative-poll:before {
  content: "\ed13";
}
.icon-fit-height:before {
  content: "\ed15";
}
.icon-fit-page:before {
  content: "\ed17";
}
.icon-fit-width:before {
  content: "\ed19";
}
.icon-menu:before {
  content: "\ed1d";
}
.icon-multiple-choice-poll:before {
  content: "\ed1f";
}
.icon-number-0-fill:before {
  content: "\ed23";
}
.icon-number-0:before {
  content: "\ed25";
}
.icon-number-poll:before {
  content: "\ed27";
}
.icon-pause-circle:before {
  content: "\ed29";
}
.icon-pause-fill:before {
  content: "\ed2b";
}
.icon-pause:before {
  content: "\ed2d";
}
.icon-play-fill:before {
  content: "\ed2f";
}
.icon-play:before {
  content: "\ed51";
}
.icon-scale-poll:before {
  content: "\ed4d";
}
.icon-send:before {
  content: "\ed49";
}
.icon-short-text-poll:before {
  content: "\ed47";
}
.icon-stopwatch-mode:before {
  content: "\ed45";
}
.icon-styles-fill:before {
  content: "\ed43";
}
.icon-styles:before {
  content: "\ed41";
}
.icon-timer-mode-fill:before {
  content: "\ed3f";
}
.icon-timer-mode:before {
  content: "\ed3d";
}
.icon-timer-more:before {
  content: "\ed3b";
}
.icon-timer-presets:before {
  content: "\ed39";
}
.icon-tool-math-alt:before {
  content: "\ed37";
}
.icon-true-false-poll:before {
  content: "\ed35";
}
.icon-word-cloud-poll:before {
  content: "\ed31";
}
.icon-yes-no-poll:before {
  content: "\ed53";
}
.icon-timer-fill:before {
  content: "\ed0d";
}
.icon-timer:before {
  content: "\ed0b";
}
.icon-spinner-fill:before {
  content: "\ed09";
}
.icon-spinner:before {
  content: "\ed07";
}
.icon-leaf:before {
  content: "\ed05";
}
.icon-past:before {
  content: "\ed03";
}
.icon-bullet:before {
  content: "\eb03";
}
.icon-admin-tools:before {
  content: "\eb04";
}
.icon-pin:before {
  content: "\eaef";
}
.icon-print:before {
  content: "\eaf1";
}
.icon-page-questions:before {
  content: "\eaf3";
}
.icon-grid-editor:before {
  content: "\eaf5";
}
.icon-resource-browse:before {
  content: "\eaf7";
}
.icon-fill:before {
  content: "\eaf9";
}
.icon-link-website:before {
  content: "\eafb";
}
.icon-tools-fill:before {
  content: "\eaff";
}
.icon-video-stop:before {
  content: "\eb05";
}
.icon-annotate:before {
  content: "\eb09";
}
.icon-pin-fill:before {
  content: "\eb0b";
}
.icon-import-cloud:before {
  content: "\eb0d";
}
.icon-touch-fill:before {
  content: "\eb11";
}
.icon-devices-fill:before {
  content: "\eb13";
}
.icon-image-fill:before {
  content: "\eb15";
}
.icon-academy-fill:before {
  content: "\e901";
}
.icon-activate:before {
  content: "\e905";
}
.icon-activity-builder-fill:before {
  content: "\e907";
}
.icon-activity-log:before {
  content: "\e909";
}
.icon-add-alt:before {
  content: "\e90b";
}
.icon-add:before {
  content: "\e90d";
}
.icon-admin-tools-fill:before {
  content: "\e911";
}
.icon-alert-fill:before {
  content: "\e913";
}
.icon-alert:before {
  content: "\e915";
}
.icon-align-angle:before {
  content: "\e919";
}
.icon-align-bottom:before {
  content: "\e91b";
}
.icon-align-center:before {
  content: "\e91d";
}
.icon-align-height:before {
  content: "\e91f";
}
.icon-align-horizontal:before {
  content: "\e921";
}
.icon-align-left:before {
  content: "\e923";
}
.icon-align-right:before {
  content: "\e925";
}
.icon-align-top:before {
  content: "\e927";
}
.icon-align-width:before {
  content: "\e929";
}
.icon-analytics-fill:before {
  content: "\e92b";
}
.icon-announcements:before {
  content: "\e92d";
}
.icon-apply:before {
  content: "\e92f";
}
.icon-apps-fill:before {
  content: "\e931";
}
.icon-apps:before {
  content: "\e933";
}
.icon-arrow-down-alt:before {
  content: "\e935";
}
.icon-arrow-down:before {
  content: "\e937";
}
.icon-arrow-up-alt:before {
  content: "\e939";
}
.icon-arrow-left-alt-fill:before {
  content: "\e93b";
}
.icon-arrow-left-alt:before {
  content: "\e93d";
}
.icon-arrow-left:before {
  content: "\e93f";
}
.icon-arrow-right-alt-fill:before {
  content: "\e941";
}
.icon-arrow-right-alt:before {
  content: "\e943";
}
.icon-arrow-right:before {
  content: "\e945";
}
.icon-arrow-up:before {
  content: "\e947";
}
.icon-assignment-fill:before {
  content: "\e949";
}
.icon-file-fill:before {
  content: "\e94b";
}
.icon-background:before {
  content: "\e94d";
}
.icon-backlight-auto:before {
  content: "\e94f";
}
.icon-backlight-down:before {
  content: "\e951";
}
.icon-backlight-up:before {
  content: "\e953";
}
.icon-balance-left:before {
  content: "\e955";
}
.icon-balance-right:before {
  content: "\e957";
}
.icon-bass-down:before {
  content: "\e959";
}
.icon-bass-up:before {
  content: "\e95b";
}
.icon-block:before {
  content: "\e95d";
}
.icon-brightness-down:before {
  content: "\e95f";
}
.icon-brightness-up:before {
  content: "\e961";
}
.icon-calendar-fill:before {
  content: "\e963";
}
.icon-calendar:before {
  content: "\e965";
}
.icon-camera:before {
  content: "\e967";
}
.icon-card-key:before {
  content: "\e969";
}
.icon-check:before {
  content: "\e96b";
}
.icon-checkbox-blank:before {
  content: "\e96d";
}
.icon-checkbox-fill:before {
  content: "\e96f";
}
.icon-checkbox:before {
  content: "\e971";
}
.icon-chevron-left-alt-fill:before {
  content: "\e973";
}
.icon-chevron-left-alt:before {
  content: "\e975";
}
.icon-chevron-left:before {
  content: "\e977";
}
.icon-chevron-right-alt-fill:before {
  content: "\e979";
}
.icon-chevron-right-alt:before {
  content: "\e97b";
}
.icon-chevron-right:before {
  content: "\e97f";
}
.icon-grid-clear:before {
  content: "\e981";
}
.icon-close-alt-fill:before {
  content: "\e983";
}
.icon-close-alt:before {
  content: "\e985";
}
.icon-close:before {
  content: "\e987";
}
.icon-completed-fill:before {
  content: "\e989";
}
.icon-completed:before {
  content: "\e98b";
}
.icon-shape-connect:before {
  content: "\e98d";
}
.icon-contrast-down:before {
  content: "\e98f";
}
.icon-contrast-up:before {
  content: "\e991";
}
.icon-duplicate:before {
  content: "\e995";
}
.icon-cursor:before {
  content: "\e997";
}
.icon-dashboard:before {
  content: "\e999";
}
.icon-delete-fill:before {
  content: "\e99b";
}
.icon-delete:before {
  content: "\e99d";
}
.icon-desktop-tools:before {
  content: "\e99f";
}
.icon-devices:before {
  content: "\e9a3";
}
.icon-download:before {
  content: "\e9a5";
}
.icon-edit-fill:before {
  content: "\e9a7";
}
.icon-edit:before {
  content: "\e9a9";
}
.icon-email:before {
  content: "\e9ab";
}
.icon-panel-enroll-add:before {
  content: "\ed55";
}
.icon-panel-enroll-remove:before {
  content: "\ed57";
}
.icon-error-fill:before {
  content: "\e9ad";
}
.icon-error:before {
  content: "\e9af";
}
.icon-expand-less-alt:before {
  content: "\e9b0";
}
.icon-expand-less:before {
  content: "\e9b1";
}
.icon-expand-more-alt:before {
  content: "\e9b2";
}
.icon-expand-more:before {
  content: "\e9b3";
}
.icon-file-csv:before {
  content: "\e9b5";
}
.icon-export:before {
  content: "\e9b7";
}
.icon-file-image:before {
  content: "\e9b9";
}
.icon-file-pdf:before {
  content: "\e9bb";
}
.icon-file-slides:before {
  content: "\e9bd";
}
.icon-file-url:before {
  content: "\e9bf";
}
.icon-file-video:before {
  content: "\e9c1";
}
.icon-file:before {
  content: "\e9c3";
}
.icon-filter:before {
  content: "\e9c5";
}
.icon-flag-fill:before {
  content: "\e9c9";
}
.icon-flag:before {
  content: "\e9cb";
}
.icon-mirror-horizontal:before {
  content: "\e9cd";
}
.icon-flip-horizontal:before {
  content: "\e9cf";
}
.icon-mirror-vertical:before {
  content: "\e9d1";
}
.icon-flip-vertical:before {
  content: "\e9d3";
}
.icon-flipchart-close:before {
  content: "\e9d5";
}
.icon-flipchart-new:before {
  content: "\e9d7";
}
.icon-flipchart:before {
  content: "\e9d9";
}
.icon-folder-favourites:before {
  content: "\e9db";
}
.icon-freeze:before {
  content: "\e9df";
}
.icon-full-screen-exit:before {
  content: "\e9e1";
}
.icon-full-screen:before {
  content: "\e9e3";
}
.icon-google-drive-fill:before {
  content: "\e9e5";
}
.icon-grab-handle:before {
  content: "\e9e7";
}
.icon-heart-fill:before {
  content: "\e9e9";
}
.icon-heart:before {
  content: "\e9eb";
}
.icon-help-fill:before {
  content: "\e9ed";
}
.icon-help:before {
  content: "\e9ef";
}
.icon-home:before {
  content: "\e9f1";
}
.icon-hue-down:before {
  content: "\e9f3";
}
.icon-hue-up:before {
  content: "\e9f5";
}
.icon-image-add:before {
  content: "\e9f7";
}
.icon-image-remove:before {
  content: "\e9f9";
}
.icon-image:before {
  content: "\e9fb";
}
.icon-import-cloud-error-fill:before {
  content: "\e9fd";
}
.icon-import-cloud-error:before {
  content: "\e9ff";
}
.icon-import-cloud-fill:before {
  content: "\ea01";
}
.icon-import:before {
  content: "\ea03";
}
.icon-info-fill:before {
  content: "\ea05";
}
.icon-info:before {
  content: "\ea07";
}
.icon-integrations:before {
  content: "\ea09";
}
.icon-interaction:before {
  content: "\ea0b";
}
.icon-lan-off:before {
  content: "\ea0d";
}
.icon-lan-on:before {
  content: "\ea0f";
}
.icon-laptop:before {
  content: "\ea11";
}
.icon-promethean-fill:before {
  content: "\ea13";
}
.icon-promethean:before {
  content: "\ea15";
}
.icon-lightbulb:before {
  content: "\ea17";
}
.icon-link-off:before {
  content: "\ea19";
}
.icon-link:before {
  content: "\ea1b";
}
.icon-loading:before {
  content: "\ea1d";
}
.icon-cloud:before {
  content: "\ea1f";
}
.icon-lock-fill:before {
  content: "\ea25";
}
.icon-lock-open-fill:before {
  content: "\ea27";
}
.icon-lock-open:before {
  content: "\ea29";
}
.icon-lock:before {
  content: "\ea2b";
}
.icon-manage-configurations:before {
  content: "\ea2d";
}
.icon-panel-manage-fill:before {
  content: "\ea2f";
}
.icon-panel-manage:before {
  content: "\ea31";
}
.icon-tag-manage:before {
  content: "\ea35";
}
.icon-masquerade:before {
  content: "\ea37";
}
.icon-message-fill:before {
  content: "\ea39";
}
.icon-mid-down:before {
  content: "\ea3b";
}
.icon-mid-up:before {
  content: "\ea3d";
}
.icon-more-horizontal-alt-fill:before {
  content: "\ea3f";
}
.icon-more-horizontal-alt:before {
  content: "\ea41";
}
.icon-more-horizontal:before {
  content: "\ea43";
}
.icon-more-vertical-alt-fill:before {
  content: "\ea45";
}
.icon-more-vertical-alt:before {
  content: "\ea47";
}
.icon-more-vertical:before {
  content: "\ea49";
}
.icon-move:before {
  content: "\ea4b";
}
.icon-mute:before {
  content: "\ea4d";
}
.icon-no-connection:before {
  content: "\ea53";
}
.icon-no-touch:before {
  content: "\ea55";
}
.icon-notification-fill:before {
  content: "\ea57";
}
.icon-notification-important-fill:before {
  content: "\ea59";
}
.icon-notification-important:before {
  content: "\ea5b";
}
.icon-notification:before {
  content: "\ea5d";
}
.icon-number-1-fill:before {
  content: "\ea5f";
}
.icon-number-1:before {
  content: "\ea61";
}
.icon-number-2-fill:before {
  content: "\ea63";
}
.icon-number-2:before {
  content: "\ea65";
}
.icon-number-3-fill:before {
  content: "\ea67";
}
.icon-number-3:before {
  content: "\ea69";
}
.icon-number-4-fill:before {
  content: "\ea6b";
}
.icon-number-4:before {
  content: "\ea6d";
}
.icon-number-5-fill:before {
  content: "\ea6f";
}
.icon-number-5:before {
  content: "\ea71";
}
.icon-number-6-fill:before {
  content: "\ea73";
}
.icon-number-6:before {
  content: "\ea75";
}
.icon-number-7-fill:before {
  content: "\ea77";
}
.icon-number-7:before {
  content: "\ea79";
}
.icon-number-8-fill:before {
  content: "\ea7b";
}
.icon-number-8:before {
  content: "\ea7d";
}
.icon-number-9-fill:before {
  content: "\ea7f";
}
.icon-number-9:before {
  content: "\ea81";
}
.icon-number-10-fill:before {
  content: "\ea83";
}
.icon-number-10:before {
  content: "\ea85";
}
.icon-number-11-fill:before {
  content: "\ea87";
}
.icon-number-11:before {
  content: "\ea89";
}
.icon-number-12-fill:before {
  content: "\ea8b";
}
.icon-number-12:before {
  content: "\ea8d";
}
.icon-number-13-fill:before {
  content: "\ea8f";
}
.icon-number-13:before {
  content: "\ea91";
}
.icon-number-14-fill:before {
  content: "\ea93";
}
.icon-number-14:before {
  content: "\ea95";
}
.icon-number-15-fill:before {
  content: "\ea97";
}
.icon-number-15:before {
  content: "\ea99";
}
.icon-number-16-fill:before {
  content: "\ea9b";
}
.icon-number-16:before {
  content: "\ea9d";
}
.icon-number-17-fill:before {
  content: "\ea9f";
}
.icon-number-17:before {
  content: "\eaa1";
}
.icon-number-18-fill:before {
  content: "\eaa3";
}
.icon-number-18:before {
  content: "\eaa5";
}
.icon-number-19-fill:before {
  content: "\eaa7";
}
.icon-number-19:before {
  content: "\eaa9";
}
.icon-number-20-fill:before {
  content: "\eaab";
}
.icon-number-20:before {
  content: "\eaad";
}
.icon-number-21-fill:before {
  content: "\eaaf";
}
.icon-number-21:before {
  content: "\eab1";
}
.icon-number-22-fill:before {
  content: "\eab3";
}
.icon-number-22:before {
  content: "\eab5";
}
.icon-number-23-fill:before {
  content: "\eab7";
}
.icon-number-23:before {
  content: "\eab9";
}
.icon-number-24-fill:before {
  content: "\eabb";
}
.icon-number-24:before {
  content: "\eabd";
}
.icon-number-25-fill:before {
  content: "\eabf";
}
.icon-number-25:before {
  content: "\eac1";
}
.icon-number-26-fill:before {
  content: "\eac3";
}
.icon-number-26:before {
  content: "\eac5";
}
.icon-number-27-fill:before {
  content: "\eac7";
}
.icon-number-27:before {
  content: "\eac9";
}
.icon-number-28-fill:before {
  content: "\eacb";
}
.icon-number-28:before {
  content: "\eacd";
}
.icon-number-29-fill:before {
  content: "\eacf";
}
.icon-number-29:before {
  content: "\ead1";
}
.icon-number-30-fill:before {
  content: "\ead3";
}
.icon-number-30:before {
  content: "\ead5";
}
.icon-number-31-fill:before {
  content: "\ead7";
}
.icon-number-31:before {
  content: "\ead9";
}
.icon-number-32-fill:before {
  content: "\eadb";
}
.icon-number-32:before {
  content: "\eadd";
}
.icon-number-33-fill:before {
  content: "\eadf";
}
.icon-number-33:before {
  content: "\eae1";
}
.icon-number-34-fill:before {
  content: "\eae3";
}
.icon-number-34:before {
  content: "\eae5";
}
.icon-number-35-fill:before {
  content: "\eae7";
}
.icon-number-35:before {
  content: "\eae9";
}
.icon-number-36-fill:before {
  content: "\eaeb";
}
.icon-number-36:before {
  content: "\eaed";
}
.icon-number-37-fill:before {
  content: "\eb19";
}
.icon-number-37:before {
  content: "\eb1b";
}
.icon-number-38-fill:before {
  content: "\eb1d";
}
.icon-number-38:before {
  content: "\eb1f";
}
.icon-number-39-fill:before {
  content: "\eb21";
}
.icon-number-39:before {
  content: "\eb23";
}
.icon-number-40-fill:before {
  content: "\eb25";
}
.icon-number-40:before {
  content: "\eb27";
}
.icon-number-41-fill:before {
  content: "\eb29";
}
.icon-number-41:before {
  content: "\eb2b";
}
.icon-number-42-fill:before {
  content: "\eb2d";
}
.icon-number-42:before {
  content: "\eb2f";
}
.icon-number-43-fill:before {
  content: "\eb31";
}
.icon-number-43:before {
  content: "\eb33";
}
.icon-number-44-fill:before {
  content: "\eb35";
}
.icon-number-44:before {
  content: "\eb37";
}
.icon-number-45-fill:before {
  content: "\eb39";
}
.icon-number-45:before {
  content: "\eb3b";
}
.icon-number-46-fill:before {
  content: "\eb3d";
}
.icon-number-46:before {
  content: "\eb3f";
}
.icon-number-47-fill:before {
  content: "\eb41";
}
.icon-number-47:before {
  content: "\eb43";
}
.icon-number-48-fill:before {
  content: "\eb45";
}
.icon-number-48:before {
  content: "\eb47";
}
.icon-number-49-fill:before {
  content: "\eb49";
}
.icon-number-49:before {
  content: "\eb4b";
}
.icon-number-50-fill:before {
  content: "\eb4d";
}
.icon-number-50:before {
  content: "\eb4f";
}
.icon-number-51-fill:before {
  content: "\eb51";
}
.icon-number-51:before {
  content: "\eb53";
}
.icon-number-52-fill:before {
  content: "\eb55";
}
.icon-number-52:before {
  content: "\eb57";
}
.icon-number-53-fill:before {
  content: "\eb59";
}
.icon-number-53:before {
  content: "\eb5b";
}
.icon-number-54-fill:before {
  content: "\eb5d";
}
.icon-number-54:before {
  content: "\eb5f";
}
.icon-number-55-fill:before {
  content: "\eb61";
}
.icon-number-55:before {
  content: "\eb63";
}
.icon-number-56-fill:before {
  content: "\eb65";
}
.icon-number-56:before {
  content: "\eb67";
}
.icon-number-57-fill:before {
  content: "\eb69";
}
.icon-number-57:before {
  content: "\eb6b";
}
.icon-number-58-fill:before {
  content: "\eb6d";
}
.icon-number-58:before {
  content: "\eb6f";
}
.icon-number-59-fill:before {
  content: "\eb71";
}
.icon-number-59:before {
  content: "\eb73";
}
.icon-number-60-fill:before {
  content: "\eb75";
}
.icon-number-60:before {
  content: "\eb77";
}
.icon-number-61-fill:before {
  content: "\eb79";
}
.icon-number-61:before {
  content: "\eb7b";
}
.icon-number-62-fill:before {
  content: "\eb7d";
}
.icon-number-62:before {
  content: "\eb7f";
}
.icon-number-63-fill:before {
  content: "\eb81";
}
.icon-number-63:before {
  content: "\eb83";
}
.icon-number-64-fill:before {
  content: "\eb85";
}
.icon-number-64:before {
  content: "\eb87";
}
.icon-number-65-fill:before {
  content: "\eb89";
}
.icon-number-65:before {
  content: "\eb8b";
}
.icon-number-66-fill:before {
  content: "\eb8d";
}
.icon-number-66:before {
  content: "\eb8f";
}
.icon-number-67-fill:before {
  content: "\eb91";
}
.icon-number-67:before {
  content: "\eb93";
}
.icon-number-68-fill:before {
  content: "\eb95";
}
.icon-number-68:before {
  content: "\eb97";
}
.icon-number-69-fill:before {
  content: "\eb99";
}
.icon-number-69:before {
  content: "\eb9b";
}
.icon-number-70-fill:before {
  content: "\eb9d";
}
.icon-number-70:before {
  content: "\eb9f";
}
.icon-number-71-fill:before {
  content: "\eba1";
}
.icon-number-71:before {
  content: "\eba3";
}
.icon-number-72-fill:before {
  content: "\eba5";
}
.icon-number-72:before {
  content: "\eba7";
}
.icon-number-73-fill:before {
  content: "\eba9";
}
.icon-number-73:before {
  content: "\ebab";
}
.icon-number-74-fill:before {
  content: "\ebad";
}
.icon-number-74:before {
  content: "\ebaf";
}
.icon-number-75-fill:before {
  content: "\ebb1";
}
.icon-number-75:before {
  content: "\ebb3";
}
.icon-number-76-fill:before {
  content: "\ebb5";
}
.icon-number-76:before {
  content: "\ebb7";
}
.icon-number-77-fill:before {
  content: "\ebb9";
}
.icon-number-77:before {
  content: "\ebbb";
}
.icon-number-78-fill:before {
  content: "\ebbd";
}
.icon-number-78:before {
  content: "\ebbf";
}
.icon-number-79-fill:before {
  content: "\ebc1";
}
.icon-number-79:before {
  content: "\ebc3";
}
.icon-number-80-fill:before {
  content: "\ebc5";
}
.icon-number-80:before {
  content: "\ebc7";
}
.icon-number-81-fill:before {
  content: "\ebc9";
}
.icon-number-81:before {
  content: "\ebcb";
}
.icon-number-82-fill:before {
  content: "\ebcd";
}
.icon-number-82:before {
  content: "\ebcf";
}
.icon-number-83-fill:before {
  content: "\ebd1";
}
.icon-number-83:before {
  content: "\ebd3";
}
.icon-number-84-fill:before {
  content: "\ebd5";
}
.icon-number-84:before {
  content: "\ebd7";
}
.icon-number-85-fill:before {
  content: "\ebd9";
}
.icon-number-85:before {
  content: "\ebdb";
}
.icon-number-86-fill:before {
  content: "\ebdd";
}
.icon-number-86:before {
  content: "\ebdf";
}
.icon-number-87-fill:before {
  content: "\ebe1";
}
.icon-number-87:before {
  content: "\ebe3";
}
.icon-number-88-fill:before {
  content: "\ebe5";
}
.icon-number-88:before {
  content: "\ebe7";
}
.icon-number-89-fill:before {
  content: "\ebe9";
}
.icon-number-89:before {
  content: "\ebeb";
}
.icon-number-90-fill:before {
  content: "\ebed";
}
.icon-number-90:before {
  content: "\ebef";
}
.icon-number-91-fill:before {
  content: "\ebf1";
}
.icon-number-91:before {
  content: "\ebf3";
}
.icon-number-92-fill:before {
  content: "\ebf5";
}
.icon-number-92:before {
  content: "\ebf7";
}
.icon-number-93-fill:before {
  content: "\ebf9";
}
.icon-number-93:before {
  content: "\ebfb";
}
.icon-number-94-fill:before {
  content: "\ebfd";
}
.icon-number-94:before {
  content: "\ebff";
}
.icon-number-95-fill:before {
  content: "\ec01";
}
.icon-number-95:before {
  content: "\ec03";
}
.icon-number-96-fill:before {
  content: "\ec05";
}
.icon-number-96:before {
  content: "\ec07";
}
.icon-number-97-fill:before {
  content: "\ec09";
}
.icon-number-97:before {
  content: "\ec0b";
}
.icon-number-98-fill:before {
  content: "\ec0d";
}
.icon-number-98:before {
  content: "\ec0f";
}
.icon-number-99-fill:before {
  content: "\ec11";
}
.icon-number-99:before {
  content: "\ec13";
}
.icon-number-99plus-fill:before {
  content: "\ec15";
}
.icon-number-99plus:before {
  content: "\ec17";
}
.icon-onedrive-fill:before {
  content: "\ec19";
}
.icon-opacity-down:before {
  content: "\ec1b";
}
.icon-opacity-max:before {
  content: "\ec1d";
}
.icon-opacity-up:before {
  content: "\ec1f";
}
.icon-open-in:before {
  content: "\ec21";
}
.icon-organization-fill:before {
  content: "\ec23";
}
.icon-organization:before {
  content: "\ec25";
}
.icon-palm:before {
  content: "\ec29";
}
.icon-panel-database:before {
  content: "\ec2b";
}
.icon-panel-restricted:before {
  content: "\ec2d";
}
.icon-panel:before {
  content: "\ec2f";
}
.icon-poll-fill:before {
  content: "\ec31";
}
.icon-poll:before {
  content: "\ec33";
}
.icon-power:before {
  content: "\ec35";
}
.icon-radio-blank:before {
  content: "\ec39";
}
.icon-radio:before {
  content: "\ec3b";
}
.icon-record:before {
  content: "\ec3d";
}
.icon-redo:before {
  content: "\ec3f";
}
.icon-page-reload:before {
  content: "\ec41";
}
.icon-reload:before {
  content: "\ec43";
}
.icon-remote:before {
  content: "\ec45";
}
.icon-rename:before {
  content: "\ec47";
}
.icon-resize-column:before {
  content: "\ec49";
}
.icon-resource-pack:before {
  content: "\ec4f";
}
.icon-resources:before {
  content: "\ec51";
}
.icon-saturation-down:before {
  content: "\ec53";
}
.icon-saturation-up:before {
  content: "\ec55";
}
.icon-save-as:before {
  content: "\ec57";
}
.icon-save:before {
  content: "\ec59";
}
.icon-scissors-fill:before {
  content: "\ec5b";
}
.icon-screen-share:before {
  content: "\ec5d";
}
.icon-sd-card-fill:before {
  content: "\ec5f";
}
.icon-search-options:before {
  content: "\ec61";
}
.icon-search-web:before {
  content: "\ec63";
}
.icon-search:before {
  content: "\ec65";
}
.icon-select-all-fill:before {
  content: "\ec67";
}
.icon-settings:before {
  content: "\ec69";
}
.icon-share-alt:before {
  content: "\ec6b";
}
.icon-share-alt-fill:before {
  content: "\ec6d";
}
.icon-share-fill:before {
  content: "\ec6f";
}
.icon-share:before {
  content: "\ec71";
}
.icon-sharpness-down:before {
  content: "\ec73";
}
.icon-sharpness-up:before {
  content: "\ec75";
}
.icon-sign-in:before {
  content: "\ec77";
}
.icon-sign-out:before {
  content: "\ec79";
}
.icon-social-facebook:before {
  content: "\ec7d";
}
.icon-social-instagram:before {
  content: "\ec7f";
}
.icon-social-linkedin:before {
  content: "\ec81";
}
.icon-social-twitter:before {
  content: "\ec83";
}
.icon-social-youtube:before {
  content: "\ec85";
}
.icon-software-update:before {
  content: "\ec87";
}
.icon-software:before {
  content: "\ec89";
}
.icon-split-screen:before {
  content: "\ec8b";
}
.icon-star-fill:before {
  content: "\ec8d";
}
.icon-star-half:before {
  content: "\ec8f";
}
.icon-star-outline:before {
  content: "\ec91";
}
.icon-store-fill:before {
  content: "\ec93";
}
.icon-subtract-circle:before {
  content: "\ec95";
}
.icon-subtract:before {
  content: "\ec97";
}
.icon-support-fill:before {
  content: "\ec99";
}
.icon-tag-add:before {
  content: "\ec9b";
}
.icon-tag-remove:before {
  content: "\ec9d";
}
.icon-tag:before {
  content: "\ec9f";
}
.icon-text:before {
  content: "\eca1";
}
.icon-thumb-down-fill:before {
  content: "\eca3";
}
.icon-thumb-down:before {
  content: "\eca5";
}
.icon-thumb-up-fill:before {
  content: "\eca7";
}
.icon-thumb-up:before {
  content: "\eca9";
}
.icon-tool-crayon:before {
  content: "\ecab";
}
.icon-tool-draw:before {
  content: "\ecad";
}
.icon-tool-eraser:before {
  content: "\ecaf";
}
.icon-tool-highlight-alt:before {
  content: "\ecb1";
}
.icon-tool-highlight:before {
  content: "\ecb3";
}
.icon-tool-math:before {
  content: "\ecb5";
}
.icon-tool-multicolor:before {
  content: "\ecb7";
}
.icon-tool-pencil-back:before {
  content: "\ecb9";
}
.icon-tool-pencil-front:before {
  content: "\ecbb";
}
.icon-tool-pencil:before {
  content: "\ecbd";
}
.icon-shapes-multi:before {
  content: "\ecbf";
}
.icon-touch:before {
  content: "\ecc1";
}
.icon-treble-down:before {
  content: "\ecc3";
}
.icon-treble-up:before {
  content: "\ecc5";
}
.icon-trophy-fill:before {
  content: "\ecc7";
}
.icon-trophy:before {
  content: "\ecc9";
}
.icon-undo:before {
  content: "\eccb";
}
.icon-update-needed:before {
  content: "\eccd";
}
.icon-upload:before {
  content: "\eccf";
}
.icon-usb:before {
  content: "\ecd1";
}
.icon-user-alt-fill:before {
  content: "\ecd3";
}
.icon-user-alt:before {
  content: "\ecd5";
}
.icon-user-edit:before {
  content: "\ecd7";
}
.icon-user-group-fill:before {
  content: "\ecd9";
}
.icon-user-manage-fill:before {
  content: "\ecdb";
}
.icon-user-manage:before {
  content: "\ecdd";
}
.icon-user-remove:before {
  content: "\ecdf";
}
.icon-user-roles:before {
  content: "\ece1";
}
.icon-user-switch-profile:before {
  content: "\ece3";
}
.icon-user:before {
  content: "\ece5";
}
.icon-users-fill:before {
  content: "\ece7";
}
.icon-users:before {
  content: "\ece9";
}
.icon-visibility-off:before {
  content: "\ecef";
}
.icon-visibility:before {
  content: "\ecf1";
}
.icon-volume-down:before {
  content: "\ecf3";
}
.icon-volume-up:before {
  content: "\ecf5";
}
.icon-volume:before {
  content: "\ecf7";
}
.icon-whiteboard:before {
  content: "\ecf9";
}
.icon-wifi-intermittent:before {
  content: "\ecfb";
}
.icon-wifi-null:before {
  content: "\ecfd";
}
.icon-wifi-off:before {
  content: "\ecff";
}
.icon-wifi-on:before {
  content: "\ed01";
}






/* Message emphasis: notes, tips, warnings */

.article-content p.emphasis {
  padding: 20px 30px 20px 20px;
  margin: 30px 0;
  border-radius: 2px;
}

.article-content p.emphasis b {
    color: black;
}

.article-content p.tip {
    background-color: rgba(77,200,219,0.1);
    border: 1px rgba(77,200,219,0.5) solid;
}

.article-content p.note {
    background-color: rgba(255,185,148,0.2);
    border: 1px rgba(255,185,148,0.5) solid;
}

/* Iframe wrapper */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin-bottom: 15px
}

.videoWrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute
}

.embed-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; overflow: 
    hidden; max-width: 100%; 
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

/* Change Plan */

.change-plan-instruction {
 display: none;
}

/* Explain Basics Comparison Table */

.comparison-table {
  width: 100%;
  margin-top: 45px;
  margin-bottom: 75px;
  border-collapse: collapse;
}

.comparison-table th {
  text-align: center;
  vertical-align: middle;
  width: 25%;
  height: 84px;
  color: #4f58a8;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 2.5px;
  font-weight: 400;
}

.comparison-table td:first-child {
    text-align: left;
  	color: #4a4a4a;
  	padding: 0 10px;
}

.comparison-table td {
  border: 1px solid #e2e2e2;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  color: #4f58a8;
  font-weight: 400;
  letter-spacing: .7222222px;
  line-height: 18px;
  height: 58px;
}



/* Keyboard Shortucts List */


.keyboardShortcuts {
  max-width: 600px;
}
.shortcutRow {
  align-items: center;
  border-top: 1px solid #E5E5E5;
  display: flex;
  justify-content: space-between;
  margin-left: 25px;
  padding: 12px 0;
}

.shortcutRow:last-of-type {
  border-bottom: 1px solid #E5E5E5;
}

.tabcontent .shortcutRow:first-of-type {
  border-top: none;
}

.tabcontent .shortcutRow:last-of-type {
  border-bottom: none;
}

.shortcutName {
  display: flex;
  align-items: center;
}

.keyboardShortcuts .shortcutName p {
  font-size:18px;
  margin: 0 0 0 10px;
}

.keyboardShortcuts .shortcutName .ee-icon {
  margin: 0 10px;
  text-align: center;
  width: 30px;
  order: 2;
}

.keyboardShortcuts .shortcutName .ee-icon:before {
  font-size:35px;
}

.shortcutCombo {
  color: #4F58A8;
  font-size: 14px;
  font-weight: 500;
  justify-content: flex-start;
  min-width: 200px;
  word-spacing: 3px;
}
.shortcutCombo > span {
  border: 2px solid #4F58A8;
  border-radius: 5px;
  display: inline-block;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  min-width: 28px;
  padding: 0 6px;
  position: relative;
}

.shortcutCombo .keyTooltipText {
  background-color: black;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  left: 50%;
  margin-left: -70px;
  padding: 5px 8px;
  position: absolute;
	text-align: center;
  top: -172%;
  visibility: hidden;
  width: 140px;
  z-index: 1;
}

.keyTooltip:hover .keyTooltipText {
  visibility: visible;
}

.keyTooltip:hover .keyTooltipText:after {
 content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

@page {
  margin: 0;
}

@media print {
  .header,
  main > div:nth-child(1),
  body > main > div.container-divider.nav-background,
  #article-body > div.platforms > div.tab > div,
  #article-body > div.platforms > div.tab > button:not(button.active),
  footer  {
    display: none;
  }
}


/* Table of contents */
#toc {
  display: none;
}

@media (min-width: 1024px) {
  #toc {
      flex-direction: column;
      align-content: center;
      flex-wrap: wrap;
      border: 1px solid #DDDDDC;
      border-radius: 5px;
      position: sticky;
      top: 10px;
  }
  
  #toc.tocActive {
    display: flex;
  }

  #toc a {
      color: #2b2b2b;
    	line-height: 1.4;
    	padding: 11px 38px 11px 38px;
      transition: all 50ms ease-in-out;
      width: 100%;
  }
  
  #toc a.h3 {
    padding-left: 58px;
  }

  #toc a:last-of-type {
      margin-bottom: 17px;
  }

  #toc a:hover {
      background-color: #F0F9FB;
  }

  #toc a.active {
      background-color: #AFDFEA;
  }
}


/* web border icon */
.web-border-icon {
  font-family: serif;
  border: 1px black dashed;
  padding: 0 4px;
  margin-right: 4px;
}