/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 7px;
  background: #d9d9d9;
}

body {
  font-family: Arial;
}

a {
  text-decoration: none;
  color: #006690;
}
a:hover {
  text-decoration: none;
}
* {
  color: #090e24;
}
form input,
form select {
  background: rgb(248, 249, 251) !important;
  border: 1px solid rgba(0, 0, 0, 0) !important;
}
form .row {
  margin-bottom: 10px;
}
.form-control {
  font-size: 1.7rem;
}

.bg-white {
  background-color: #fff;
}
.text-white {
  color: white;
}

/* container that holds the entire page */
#page-wrapper {
  position: absolute;
  display: flex;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  /*overflow-x: hidden; this is affecting scroll listeners, uncomment only if a solution is found */
}

/* container that holds the content page - without side bar */
#content-wrapper {
  position: relative;
  width: 100%;
  transition: all 0.4s;
  margin-left: 240px;
}
#page-wrapper.noside #content-wrapper{
	margin-left:0;
	width:auto;
	margin:0 auto;
}
/*
 * container that holds the content of the content page, without top bar and side bar */
.content-body {
  display: flex;
  flex: 1 1 auto;
  position: relative;
  font-size: 1.6rem;
  margin-top: 55px;
  max-width:2000px;
}

/* content center container */
.content-body-center-panel {
  box-sizing: border-box;
  min-width: 0px;
  /*padding: 32px;*/
  flex: 1 1 0%;
  display: block;
}

.content-body-center-panel > .container-fluid {
  max-width: 1500px;
}

/* content widgets container */
.content-body-widgets-panel {
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: inherit;
  margin-top: 0px;
  width: 350px;
  background-color: rgb(248, 249, 251);
  padding: 25px;
}
@media screen and (max-width: 1400px) {
  .content-body-widgets-panel {
    width: 300px;
  }
}
@media screen and (min-width: 1800px) {
  .content-body-widgets-panel {
    width: 450px;
  }
}
/* general styling */
.max-width-constraint {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  padding: 3rem 2rem 0 2rem;
  font-weight: 600;
  font-size: 1.8rem;
}

.content-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.divider {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 2px solid rgba(150, 150, 150, 0.3);
  border-width: thin;
  z-index: -1;
}
.btn {
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}
.btn-divider {
  top: -15px;
  padding: 10px 25px;
  font-size: 1.5rem;
  display: inline-flex;
  text-decoration: none;
  text-align: center;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(218, 222, 237);
  border-radius: 9999px;
  line-height: 16px;
  box-shadow: rgb(0 0 0 / 5%) 0px 2px 4px;
}
.btn-divider:hover {
  box-shadow: 0px 4px 15px rgb(20 16 74 / 10%);
}
.btn-divider svg {
  fill: rgb(157, 166, 199);
}
.desc {
  font-size: 1.6rem;
}
/* 
 * Start of card item - used in widgetlist.php
 */
.card {
  box-sizing: border-box;
  min-width: 0px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  /*box-shadow: rgb(0 0 0 / 8%) 0px 2px;*/
  border: 1px solid rgb(240, 242, 247);
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
  background-clip: border-box;
  border-radius: 10px;
}
.card .content {
  padding: 15px;
}

.card .content .title {
  font-size: 1.8rem;
  margin-top: 5px;
}
.card .content-image {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* 
 * end of card item
 */

/* 
 * Start of banner item
 */
.banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  color: #fff;
  display: flex;
  flex-flow: column;
  background: #fafafa;
  text-decoration: none;
  -webkit-transition: all 0.3s, background 0s, transform 0.1s;
  -o-transition: all 0.3s, background 0s, transform 0.1s;
  transition: all 0.3s, background 0s, transform 0.1s;
  background-image: linear-gradient(0deg, #006690 40%, #4d9cbe);
  background-clip: border-box;
  box-shadow: 0px 4px 32px rgb(0 0 0 / 8%);
  border-radius: 12px;
}

.banner * {
  color: white;
}

.banner-content-wrapper {
  position: absolute;
  z-index: 2;
  background: linear-gradient(
    220deg,
    rgba(0, 102, 144, 0.3),
    rgba(0, 102, 144, 0.3)
  );
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  padding: 40px;
  display: flex;
  align-items: center;
}


.banner-content-wrapper.banner-data-query {
  background: linear-gradient(
    220deg,
    rgba(0, 144, 110, 0.3),
    rgba(0, 144, 72, 0.3)
  );
}

.banner-content h4 {
  font-weight: bold;
  font-size: 30px;
}
.banner-content a {
  margin-left: 0;
  border: 0;
  font-weight: 600;
  font-size: 12px;
  background: #80b918;
  border-radius: 25px;
  z-index: 8;
  padding: 8px 12px;
  color: #fff;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}
.banner-content a.grey {
  background: #bebebe;
  opacity: 0.75;
}
.banner-image-wrapper {
  text-align: center;
  padding-bottom: 30px;
}
.banner-image-wrapper > img {
  margin-top: 50px;
  transform: scale(1.1);
}

.content-body-widgets-panel .banner {
  height: 100%;
}
/*
 * End of banner item
 */

/*
  * Start of widget item
  */
.widget-wrapper {
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: inherit;
  margin-top: 0px;
  flex-shrink: 0;
  margin-bottom: 15px;
}
.widget-title {
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  /*color: rgb(98, 110, 153);*/
  margin-bottom: 10px;
}
.widget-wrapper .content-item .title {
  font-size: 1.5rem;
}
.widget-wrapper .widget-title a {
  color: rgb(157, 166, 199);
}
@media screen and (min-width:901px) {
  .lg-hidden {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .lg-hidden {
    display: block;
  }
  .content-body-widgets-panel {
    display: none;
  }
}
/*
 * End of widget item 
 */

/*
 * Start of grid/ content item
 */
.featured-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60% auto;
  border-bottom: 1px solid rgba(150, 150, 150, 0.3);
}

.featured-wrapper > .grid-item:nth-child(2) {
  height: 100%;
}

.featured-wrapper > .grid-item:nth-child(2) > .content-item {
  height: 50%;
}
.content-item {
  position: relative;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
  padding: 2rem;
}

.content-item:hover {
  color: inherit;
  text-decoration: none;
}

.content-item::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;

  box-shadow: 0px 4px 32px rgb(0 0 0 / 8%);
  opacity: 0;
  transition: opacity 300ms;
}

.content-item:hover::before {
  opacity: 1;
}

.content-item a {
  color: inherit;
}

.content-item img {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.content-item .title {
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 2.2rem;

  letter-spacing: 0.2px;
  margin-bottom: 5px;
}

.content-item .issue {
  font-size: 1.6rem;
  font-weight: 500;
}

.content-item .date {
  /*color: rgb(98, 110, 153);*/
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.content-item .abstract {
  max-height: 55px;
  overflow: hidden;
  /*color: #333;*/
  overflow: hidden;
  vertical-align: baseline;
  font-size: 1.4rem;
  overflow: hidden;
  line-height: 1.4;
  opacity: 0.95;
}

.content-item .image-wrapper {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  min-width: 100px;
  min-height: 200px;
  height: 100%;
  max-width: 400px;
  border-radius: 6px;
}

.grid-item.featured .content-item {
  transition: all ease-in-out;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.grid-item.featured .content-item .content .date {
  padding-top: 1.3rem;
  display: block;
}

.grid-item.featured .content-item .content .title {
  margin-top: 5px;
}

.grid-item:not(.featured) img {
  width: 90%;
}

@media only screen and (min-width: 768px) {
	.grid-item:not(.featured) img {
	  max-width: 280px;
	}
}
.grid-item:not(.featured) .image-wrapper,
.grid-item:not(.featured) .content {
  text-align: start;
  width: 100%;
  flex: 1 1 auto;
}

.grid-item:not(.featured) .content {
  padding-left: 25px;
}

.grid-item:not(.featured) .content .title {
  font-size: 1.8rem;
  margin-top: 0;
  line-height: 1.2;
}

.grid-item:not(.featured) .content .issue {
  margin-top: 0;
}

.grid-item:not(.featured) .content-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: start;
  transition: all ease-in-out;
}

#contentlist .content-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  border-top: 1px solid rgba(150, 150, 150, 0.3);
  border-width: thin;
  z-index: -1;
}

.featured-wrapper .grid-item:not(.featured) .content-item:last-child:after,
.featured-wrapper .featured .content-item:after,
#contentlist .row:last-child .content-item:after {
  display: none;
}

@media screen  and (min-width:768px) and (max-width: 1400px) {
	.featured-wrapper .featured .content-item img {
		max-width: 280px;
	}
	.featured-wrapper .featured .content-item .content {
		padding-left: 25px;
		text-align: start;
		width: 100%;
		flex: 1 1 auto;
	}
	.featured-wrapper .featured .content-item .content .date {
		padding-top: 0;
	}
}
@media screen and (max-width: 1400px) {
  .featured-wrapper {
    display: block;
    
  }.featured-wrapper > .grid-item:nth-child(2),
  .featured-wrapper > .grid-item:nth-child(2) > .content-item {
    height: auto;
  }

  .featured-wrapper .featured .content-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: start;
  }

  .featured-wrapper .featured .content-item .content .title {
    font-size: 1.8rem;
  }

  .featured-wrapper .featured .content-item:after {
    display: block;
    left: 0;
    right: 0;
  }
}

.sidebar-toggle-icon {
  opacity: 1;
  align-self: center;
  fill: rgb(157, 166, 199);
  flex: 0 0 auto;
  margin-left: auto;
  padding: 4px;
  transform: rotate(180deg);
}

.abstract {
  display: none;
}
/*
 * End of grid/ content item
 */

/*
  * list-icons 
  */

.list-icon {
  box-sizing: border-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 4px;
  color: rgb(44, 122, 123);
  background-color: rgb(230, 255, 250);
  width: 45px;
  height: 45px;
  min-width: 45px;
  margin-right: 8px;
}
.list-icon i {
  font-size: 20px;
}

.list-icon.icon-db {
  background-color: #f4ffe9;
}

.list-icon.icon-db i {
  color: #589319;
  font-size: 18px;
}

.list-icon.icon-au {
  color: rgb(76, 81, 191);
  background-color: rgb(238, 248, 249);
}

.list-icon.icon-ppt {
  color: rgb(192, 86, 33);
  background-color: rgb(255, 245, 245);
}

.list-icon.icon-po {
  background-color: rgb(250, 245, 255);
}

.list-icon.icon-po i {
  color: rgb(107, 70, 193);
  font-size: 20px;
}
.list-icon.icon-wa {
  background-color: rgb(255, 246, 246);
  /*color: rgb(43, 108, 176);
  background-color: rgb(235, 248, 255);*/
}

.list-icon.icon-pr {
  background-color: rgb(235, 248, 255);
}
.list-icon.icon-pr i {
  color: rgb(43, 108, 176);
}

.list-icon.icon-databot {
  color: rgb(98, 110, 153);
  background-color: rgb(248, 249, 251);
}


/* Canalys colored bootstrap buttons */
.btn-can-blue {
  color: #ffffff;
  background-color: #0078a8;
  border: 0;
}

.btn-can-blue:hover,
.btn-can-blue:focus,
.btn-can-blue:active,
.btn-can-blue.active,
.open .dropdown-toggle.btn-can-blue {
  color: #ffffff;
  background-color: #006690;
  border-color: #ffffff;
}

.btn-can-blue:active,
.btn-can-blue.active,
.open .dropdown-toggle.btn-can-blue {
  background-image: none;
}

.btn-can-blue.disabled,
.btn-can-blue[disabled],
fieldset[disabled] .btn-can-blue,
.btn-can-blue.disabled:hover,
.btn-can-blue[disabled]:hover,
fieldset[disabled] .btn-can-blue:hover,
.btn-can-blue.disabled:focus,
.btn-can-blue[disabled]:focus,
fieldset[disabled] .btn-can-blue:focus,
.btn-can-blue.disabled:active,
.btn-can-blue[disabled]:active,
fieldset[disabled] .btn-can-blue:active,
.btn-can-blue.disabled.active,
.btn-can-blue[disabled].active,
fieldset[disabled] .btn-can-blue.active {
  background-color: #0078a8;
  border-color: #ffffff;
}

.btn-can-blue .badge {
  color: #0078a8;
  background-color: #ffffff;
}

.btn-can-green {
  color: #ffffff;
  background-color: #7dad47;
  border: 0;
}
.btn-can-green:hover,
.btn-can-green:focus,
.btn-can-green:active,
.btn-can-green.active,
.open .dropdown-toggle.btn-can-green {
  color: #ffffff;
  background-color: #699636;
  border-color: #ffffff;
}
.btn-can-green * {
  color: #fff;
}
.btn-can-green:active,
.btn-can-green.active,
.open .dropdown-toggle.btn-can-green {
  background-image: none;
}

.btn-can-green.disabled,
.btn-can-green[disabled],
fieldset[disabled] .btn-can-green,
.btn-can-green.disabled:hover,
.btn-can-green[disabled]:hover,
fieldset[disabled] .btn-can-green:hover,
.btn-can-green.disabled:focus,
.btn-can-green[disabled]:focus,
fieldset[disabled] .btn-can-green:focus,
.btn-can-green.disabled:active,
.btn-can-green[disabled]:active,
fieldset[disabled] .btn-can-green:active,
.btn-can-green.disabled.active,
.btn-can-green[disabled].active,
fieldset[disabled] .btn-can-green.active {
  background-color: #7dad47;
  border-color: #ffffff;
}
.btn-can-green .badge {
  color: #7dad47;
  background-color: #ffffff;
}

.actionbox .attachment {
  word-break: break-all;
}
/****Topbar styles *****/
#topbar {
  position: fixed;
  right: 0;
  top: 0;
  left: 240px;
  align-items: center;
  background: white;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  min-height: 55px;
  padding: 0 24px;
  z-index: 200;
  box-shadow: none;
  border-bottom: 1px solid #e7eaec;
}
.expand-sidebar-btn {
  margin-right: 0;
  max-width: 0;
  overflow: hidden;
}

.topbar-page-header {
  display: inline-flex;
  flex: 1 1 auto;
  min-width: 1px;
}

.topbar-page-header h1 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 15px;
  margin-left: -2px;
}

#topbar-actions {
  flex-shrink: 0;
  align-items: center;
  background-color: transparent;
  display: flex;
}

.top-search-wrapper {
  margin-left: 25px;
  margin-bottom: 0;
  margin-top: 5px;
}

.top-search-wrapper input {
  display: inline-block;
  margin-right: -200px;
  line-height: 1 !important;
  background: rgb(248, 249, 251);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transition: background 100ms ease-in, width 100ms ease-out;
  transition: background 100ms ease-in, width 100ms ease-out;
  padding: 9px 10px 9px 32px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: inherit;
  outline: none;
}

.top-search-wrapper form {
  position: relative;
}

.top-search-wrapper svg {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
}

.top-search-wrapper > form > a {
  color: inherit;
  background: white;
  border: 1px solid #e7eaec !important;
  font-size: 12px;
  line-height: 1px !important;
  padding: 8px 10px;
  vertical-align: middle;
  margin-top: -2px;
  text-align: right;
  white-space: nowrap;
  position: absolute;
  top: 19px;
  right: 15px;
  border-radius: 4px;
}

.top-search-wrapper > form > a:hover,
.top-search-wrapper > form > a:active {
  border: 1px solid #e7eaec !important;
}

.topbar-translate > #dropdownTranslateLink > svg {
  fill: rgb(157, 166, 199);
  height: 22px;
  vertical-align: middle;
}

.topbar-user #avatar {
  margin-left: 15px;
  color: #fff;
  background-color: #116bbf;
  padding: 9px;
  border-radius: 50%;
  text-decoration: none;
}

.topbar-user a:after {
  display: none;
}

.expand-sidebar-btn {
  display: flex;
  justify-content: center;
  margin-right: 14px;
  max-width: 43px;
  transition: max-width, margin-right 250ms ease-out;
}

.expand-sidebar-btn button {
  border: none;
  background: none;
}

@media screen and (max-width: 650px) {
  .topbar-translate {
    display:none
  }
  .top-search-wrapper{
	  margin-left:10px;
  }
  .top-search-wrapper input{
	  width: 40vw;
  }
}

/****Sidebar styles *****/
#sidebar {
  position: relative;
  background: #fff;
  height: 100vh;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  transition: margin-left 250ms ease-out, transform 250ms ease-out;
  width: 240px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  top: 0;
  position: fixed;
  z-index: 99;
}

#sidebar.isCollapsed {
  margin-left: -240px;
}
#sidebar a.sidebar-item:hover,
#sidebar a.sidebar-item:focus {
  text-decoration: none;
  background-color: #f3f3f3;
}

.sidebar-inner {
  flex: 1 1 auto;
  min-height: 1px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: space-between;
  background: #fff;
}

.sidebar-header > .sidebar-logo {
  background-image: url(https://www.canalys.com/assets/images/logo.png);
  background-position: 30px 0;
  background-repeat: no-repeat;
  background-size: 110px 26px;
  flex-grow: 1;
  height: 26px;
}

.sidebar-hamburger {
  border: none;
  background: none;
  cursor: pointer;
  flex-grow: 0;
  margin-right: 16px;
  padding: 0 8px;
}

svg.sidebar-hamburger-icon {
  height: 16px;
  width: 25px;
  fill: rgb(157, 166, 199);
}

.sidebar-collapsible {
  background: #fff;
  padding-bottom: 16px;
  padding-top: 0;

  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.sidebar-collapsible:last-child {
  border-bottom: 0;
}

.sidebar-item {
  align-items: center;
  display: flex;
  padding: 0 24px 0 24px;
  height: 32px;
  font-size: 14px;
  /*line-height: 32px;*/
}

#sidebar a.sidebar-item {
  cursor: pointer;
}

#sidebar a.sidebar-item.active {
  background-color: #006690 !important;
}

#sidebar a.sidebar-item.active svg {
  fill: #fff;
  opacity: 1;
}

#sidebar a.sidebar-item.active img {
  filter: brightness(100);
}

#sidebar a.sidebar-item.active .sidebar-item-title {
  color: #fff;
  font-weight: 600;
}

#sidebar a.sidebar-item > svg {
  /*fill: rgb(98, 110, 153);*/
  margin-right: 8px;
  transition: transform 250ms ease-out;
  height: 20px;
  width: 20px;
  opacity: 0.7;
}

a.sidebar-item > img {
  transition: transform 250ms ease-out;
  margin-right: 8px;
  width: 16px;
  height: auto;
  filter: brightness(50%);
}

a.sidebar-item > .sidebar-item-title {
  flex-grow: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  margin-top: 2px;
}

.sidebar-btn-collapsible,
.sidebar-btn-collapsible:hover,
.sidebar-btn-collapsible:focus {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 40px;
  padding: 0 24px 0 24px;
  width: 100%;
  text-decoration: none;
}

.sidebar-btn-collapsible > span {
  font-size: 14px;
  line-height: 22px;
}

.sidebar-scrollable-section {
  flex: 1 1 auto;
  min-height: 1px;
  overflow: hidden;
  position: relative;

  /* added-on */
  /*height: calc(100vh - 217px);*/
}

.sidebar-scrollable {
  min-height: 1px;
  will-change: transform;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 125%;
}

.resize-listener {
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
}

.sidebar-scrollable-content {
  box-sizing: border-box;
  min-height: 100%;
  padding: 1px 0;
  position: relative;

  padding-bottom: 80px;
  width: 80%;
}

#sidebar-action {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
}

#sidebar-action > .sidebar-item {
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  height: 50px;
  padding: 0 24px 0 24px;
}

#sidebar-action .inquiry-icon-wrapper {
  align-items: center;
  border-radius: 50%;
  display: flex;
  color: white;
  height: 24px;
  justify-content: center;
  margin-right: 8px;
  width: 24px;
  background: #7dad47;
  font-weight: 600;
}

#sidebar-action .inquiry-icon-wrapper svg {
  fill: #fff;
}

.sidebar-item-title {
  /*color: rgb(98, 110, 153);*/
}

#sidebar-action .inquiry-icon-wrapper .sidebar-item-title {
  margin-top: 4px;
}
#sidebar-collapsible-services {
  position: relative;
  padding-bottom: 55px;
}

#services-expand-btn {
  position: absolute;
  bottom: 15px;
}

img[alt*="Report"] {
  font-size: 5px;
}

/**** Widget styles ***/
.list-title {
  opacity: 0.95;
  margin-bottom: 5px;
}

.content-list .list-item:last-child {
  border-bottom: none;
}

.list-item-title {
  font-weight: 600;
}

.content-list .list-item {
  border-bottom: 1px solid rgba(150, 150, 150, 0.3);
  display: flex;
  padding: 12px 10px;
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: inherit;
  margin-top: 0px;
  -webkit-box-align: center;
  align-items: center;
}
.content-list .list-item:hover {
  background: #f9f9f9;
}
.content-list .list-item .list-content {
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: inherit;
  margin-top: 0px;
  text-align: left;
  margin-left: 10px;
}

.content-list .list-item .list-content .title {
  box-sizing: border-box;
  min-width: 0px;
  font-weight: 600;
  font-size: 1.5rem;
  overflow: hidden;
  margin-bottom: 4px;
}
.content-list .list-item .list-content .title,
.content-list .list-item .list-content .title > a {
  color: #000;
}
.content-list .list-item .list-content .extra {
  margin-bottom: 5px;
}
.content-list .list-item .list-content .clickicon{
	padding:3px 5px;
	border-radius: 50%;
	margin-left:5px;
	displaY:inline-block;
	background-color: rgba(0, 0, 0, .065)
	
}
.content-list .list-item .list-content .clickicon svg {
  vertical-align: bottom;
}

.content-list .list-icon {
  margin-right: 5px;
}

.content-list .list-icon svg {
  fill: #006690;
  display: inline-block;
  font-size: 24px;
  user-select: none;
  outline: none;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  flex-grow: 0;
  box-sizing: border-box;
  min-width: 0px;
  width: 20px;
  height: 20px;
}

.content-list .list-content .extra {
  box-sizing: border-box;
  min-width: 0px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  overflow: hidden;
}

/* Styling for grid list items */
.grid-list .row:not(:last-child) .gridbox {
  border-bottom: 1px solid #e6e6e8;
}
.grid-list .row:last-child {
  border-bottom: none;
}
.row .gridbox:not(:last-child) {
  border-right: 1px solid #e6e6e8;
}
.gridbox {
  position: relative;
  padding: 0;
}
.gridbox-title,
.gridbox-issue {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.3em;
  font-weight: bold;
}
.gridbox-meta * {
  padding: 0 !important;
}
.gridbox-link {
  z-index: 999;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
}
.gridbox-image-wrapper {
  background: #000;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0 25px;
}

.gridbox-image {
  padding: 0;
  width: 100%;
  height: auto;
}
.gridbox-image,
.gridbox .padding {
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gridbox-image-wrapper div {
  z-index: 998;
  display: none;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gridbox-image-wrapper div a h4 {
  text-align: center;
  text-transform: uppercase;
  border: 3px solid #fff;
  font-weight: bold;
  color: white;
}
a.gridbox-link:hover ~ .gridbox-image-wrapper img {
  opacity: 0.5;
  -moz-transform: scale(1.25);
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}
a.image-link-download {
  z-index: 1000 !important;
}

a.attachmentLink {
  position: absolute;
  color: #337ab7;
  text-decoration: underline;
  z-index: 1000;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-0 {
  padding: 0;
}
.m-0 {
  margin: 0;
}

/**** filters ***/
#row-filters {
  margin: 15px 0;
}

#row-filters ul {
  padding-left: 0;
}

#row-filters ul li.filter-col {
  display: inline-block;
  list-style-type: none;
  margin-right: 15px;
}

#row-filters ul li.filter-col button {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  background: white;
  font-size: 13spx;
  padding: 10px 16px;
}

#row-filters ul li.filter-col button.grey {
  background: #ccc;
}

#row-filters ul > li.filter-col button > svg {
  margin-left: 5px;
  width: 16px;
  vertical-align: middle;
}

#row-filters ul li.filter-col:last-child() {
  margin-right: none;
}
.search-fake-input {
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  background: white;
  width: 100%;
  padding: 8px 15px;
  max-width: 800px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 5 px rgb(0 0 0 / 5%);
  margin-top: 22px;
}

.search-fake-input input:focus {
  outline: none;
}

.search-fake-input input {
  line-height: 2.8rem;
  padding-right: 30px;
  padding: 0 10px;
  width: 100%;
  outline: none;
  border: 0;
  color: #494949;
  font-size: 14px;
}

.search-fake-input button {
  border: none;
  display: inline-block;
  height: 24px;
  position: relative;
  top: -3px;
  vertical-align: middle;
  width: 24px;
  padding: 0 10px;
  margin-right: 15px;
  margin-top: 5px;
  background: none;
}
#contentlist .result-card > .result-card-body {
  border-bottom: 1px solid #e2e2e2;
  margin: 0 24px 24px;
  padding-bottom: 24px;
  width: 100%;
}

#contentlist .result-card > .result-card-body > .result-card-content {
  display: flex;
  flex-direction: row;
  margin-bottom: 6px;
  width: 100%;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text {
  margin: 0;
  flex-grow: 1;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text
  > .tag {
  font-size: 0.6875rem;
  font-weight: 500;

  letter-spacing: 0.5px;
  line-height: 0.6875rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text
  > a {
  text-decoration: none;
  color: inherit;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text
  .title {
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 2.5rem;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text
  .desc {
  font-size: 1.6rem;
  overflow: hidden;
  line-height: 1.4;
  opacity: 0.95;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text
  .date {
  opacity: 0.95;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .result-card-text
  .issue {
  font-size: 1.8rem;
  font-weight: 500;
}

#contentlist
  .result-card
  > .result-card-body
  > .result-card-content
  > .image-wrapper {
  margin: 0 40px 0 0px;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  min-width: 350px;
  min-height: 190px;
  height: 100%;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #contentlist .result-card > .result-card-body > .result-card-content {
    flex-direction: column;
  }
  #contentlist
    .result-card
    > .result-card-body
    > .result-card-content
    > .result-card-text {
    margin-top: 1em;
  }
  #contentlist
    .result-card
    > .result-card-body
    > .result-card-content
    > .image-wrapper {
    min-width: auto;
  }
  .search-fake-input button {
  	padding: 0;
  }
  .grid-item:not(.featured) .content-item, .grid-item.featured .content-item {
  	display: inline-block;
  }
  .grid-item:not(.featured) img {
  	width:100%;
  }
  .grid-item:not(.featured) .content {
  	padding: 1.2em 0.5em;
  }
}

.modal-body {
  background-color: #fff;
  margin: 8px;
  padding: 8px;
}
.modal-body .row {
  margin-left: 0px;
  margin-right: 0px;
}

.widget-wrapper .card {
  position: relative;
}
.widget-wrapper .panel-body p {
  font-size: 14px;
  color: #fff;
}
#clientHeartbeat {
  padding: 0;
}
#hb-graph {
  width: 100%;
  height: auto;
  min-height: 150px;
}
#currentGrowth{
	padding:6px 12px;
	background: #006690;
	color:#FFF;
}
.hb-well {
	margin-bottom: 0;
	padding: 25px 19px;
}
.hb-region {
	font-weight: 600;
	background: #80b918;
	padding: 8px 6px;
    color: #fff;
}
.hb-region[disabled] {
    background: #bebebe;
    opacity: 0.75;
}
.hb-region:hover, .hb-region:focus, .hb-region:active, .hb-region.active {
	color: #ffffff;
	background: #70a908
}

/*
  * slides 
  */
.slides-countries .list-group-item:hover:not(.active) {
	color: #006690;
}
.slides-countries .list-group-item:hover:not(.active) .glyphicon {
	display: block !important;
}

.slides-accordion {
	margin-top: 20px;
}
.slides-accordion > .row > [class^="col-"] {
	padding: 0;
}
.slides-accordion [name^="slides-"],
.slides-accordion [name^="slides-"]:not(:checked) ~ .slides-accordion-body,
.slides-accordion [name^="slides-"]:not(:checked) ~ .slides-accordion-header .collapse-btn,
.slides-accordion [name^="slides-"]:checked ~ .slides-accordion-header .expand-btn {
	display: none;
}
.slides-accordion [name^="slides-"]:checked ~ .slides-accordion-header span {
	color: #000;
}
.slides-accordion .row:first-child .slides-accordion-header {
	border-top: 0;
}
.slides-accordion-header {
	border-top: 1px solid #ccc;
}
.slides-accordion-header > div {
	padding: 0;
}
.slides-accordion-header label {
	color: #444;
	display: flex;
	font-size: 24px;
	font-weight: normal;
	margin: 0;
	padding: 8px 15px 6px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.slides-accordion-header label:hover {
	cursor: pointer;
}
.slides-accordion-header label:active {
	background-color: rgba(0,0,0, .03);
}
.slides-accordion-header label .fas {
	align-self: center;
	color: #444;
	font-size: 13px;
	margin-left: auto;
}
.slides-accordion-body {
	margin-top: 10px;
}
.slides-accordion-body .nav.nav-tabs li a {
	color: #777;
}
.slides-accordion-body .nav.nav-tabs li.active a {
	color: #337ab7;
}
.slides-accordion-body .tab-content {
    padding: 10px 0;
    position: relative;
}
.slides-accordion-body .tab-content > .tab-pane {
    opacity: 0;
    top: 10px;
    bottom: 10px;
    left: 0;
    transition: none;
    width: 100%;
    z-index: 1;
}
.slides-accordion-body .tab-content > .tab-pane.active {
    transition: opacity 1s;
    opacity: 1;
}
.slides-accordion-body .tab-content > .tab-pane form {
    padding-bottom: 100px;
}
.slides-accordion-body .list-group.slides-countries .list-group-item {
	display: flex;
	position: relative;
	padding: 0 15px 0 20px;
	overflow: hidden;
}
.slides-accordion-body .list-group.slides-countries .list-group-item:not(.active) a {
	color: #555;
	font-size: 13px;
}
.slides-accordion-body .list-group.slides-countries .list-group-item:not(.active) a:hover {
	background: 0;
	color: #0074A3;
}
.slides-accordion-body .list-group.slides-countries .list-group-item a {
	color: #fff;
	padding: 10px 0;
	flex-grow: 1;
	transition: transform 400ms ease-in-out, color 200ms ease;
}
.slides-accordion-body .list-group.slides-countries .list-group-item.active > span {
	flex-grow: 1;
	padding: 10px 0;
}
.slides-accordion-body .list-group.slides-countries .list-group-item a:hover {
	text-decoration: none;
	transform: translate3d(10px, 0, 0);
}
.slides-accordion-body .list-group.slides-countries .list-group-item:not(.active) .fas {
	color: #0074a3;
}
.slides-accordion-body .list-group.slides-countries .list-group-item .fas {
	opacity: 0;
	position: absolute;
	top: 12px;
	left: 7px;
	transform: translate3d(-25px, 0, 0);
	transition: opacity 450ms ease-in-out, transform 300ms ease-in-out;
}
.slides-accordion-body .list-group.slides-countries .list-group-item:hover .fas {
	opacity: 1;
	transform: translate3d(-27px, 0, 0);
}
.slides-accordion-body .list-group.slides-countries .list-group-item .material-switch {
	align-self: center;
	margin-left: auto;
	padding-left: 10px;
}
.material-switch > input[type="checkbox"] { display: none; }
.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px; 
}
.material-switch > label::before {
    background: #000;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: #FFF;
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}
.material-switch > input[type="checkbox"].check-all + label::after {
    background: #235d8f;
}
.material-switch > input[type="checkbox"].check-all:checked + label::after {
    background: #fff;
}


@media only screen and (max-width: 768px) {
  .rowmview {
    display: flex;
    flex-flow: column;
    padding: 11px 22px !important;
  }
  .ltbview {
    order: 2;
  }
  .rttview {
    order: 1;
  }

  .content-body {
  /*.content-body-widgets-panel:has(> #xiaomi-dash) {*/
    clear: both;
    display: block;
    width: auto;
  }

  .content-body-widgets-panel .widget-wrapper {
    display: none;
  }

  .content-body-widgets-panel #xiaomi-dash {
    display: block
  }
}

#informa-ribbon{
	display:none;
}
#informa-ribbon.showinformaribbon{
	display:block;
}
.informa-ribbon {
  width: 100%;
  color: #fff;
  height: 35px;
  font-size: 13px;
  line-height: 1.125rem;
  position: absolute;
  z-index: 1032;
  top: 0;
  left: 0;
  background: #000;
}
.informa-ribbon p{
	color:#FFF;
	line-height:24px;
}

.informa-ribbon .pop-out__reset-password,
.informa-ribbon .sortable-table__list-toggler,
.informa-ribbon a {
  color: #fff !important
}

.informa-ribbon__title {
  -webkit-box-shadow: 0;
  box-shadow: 0;
  border: 0;
  height: 16px;
  width: 92px;
  background: url('https://www.canalys.com/iribbon-logo.gif') top center no-repeat;
  font-size: 0;
  color: #525A5C;
  margin: 10px auto;
  clear: both;
  cursor: pointer;
  display: block
}

.informa-ribbon__wrapper {
  background: #525A5C;
  border-bottom: 1px solid #A5ACAF;
  width: 100%;
  padding: 0 2rem;
  z-index: 9089
}

.informa-ribbon__detail {
  overflow: hidden;
  max-height: 0;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: max-height ease-in-out .5s;
  transition: max-height ease-in-out .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

@media (max-width:480px) {
  .informa-ribbon__wrapper {
    padding: 0 1rem
  }

  .informa-ribbon__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.informa-ribbon__left,
.informa-ribbon__right {
  float: left;
  margin: 40px 0;
  max-width: 570px;
  width: 47%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  line-height: 24px;
  line-height: 1.5rem;
  padding-right: 2rem
}

@media (max-width:480px) {

  .informa-ribbon__left,
  .informa-ribbon__right {
    margin: 0;
    padding: 2rem 0;
    text-align: center;
    width: 100%
  }
}

.informa-ribbon__right {
  border-left: 1px solid #A5ACAF;
  padding-right: 0;
  padding-left: 2rem
}

@media (max-width:480px) {
  .informa-ribbon__right {
    border-left: 0;
    border-top: 1px solid #A5ACAF;
    padding-left: 0
  }
}

.informa-ribbon__detail p:last-child {
  margin-bottom: 0
}

.informa-ribbon__detail ul,
.informa-ribbon__detail ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block
}

.informa-ribbon__detail ul li {
  padding: 0 10px 0 5px;
  line-height: 1em;
  border-right: 1px solid #A5ACAF
}

.informa-ribbon__detail ul li:last-child {
  border: 0
}

.informa-ribbon__detail ul li.iribbon-mainlink {
  padding-left: 0
}

.informa-ribbon__detail ul li a {
  text-transform: uppercase;
  text-decoration: none;
}

.informa-ribbon__detail ul li.iribbon-mainlink .pop-out__reset-password,
.informa-ribbon__detail ul li.iribbon-mainlink .sortable-table__list-toggler,
.informa-ribbon__detail ul li.iribbon-mainlink a {
  text-transform: none;
  font-weight: 700
}

.show .informa-ribbon__detail {
  max-height: 400px
}

.show .informa-ribbon__title {
  background-position: bottom center
}
#topbar.showinformaribbon, #sidebar.showinformaribbon{
	top:35px;
}
#content-body.showinformaribbon{
	margin-top: 90px;
}