@font-face {
  font-family: 'wheel';
  src: url('../font/wheel.eot?72772783');
  src: url('../font/wheel.eot?72772783#iefix') format('embedded-opentype'),
    url('../font/wheel.woff2?72772783') format('woff2'), url('../font/wheel.woff?72772783') format('woff'),
    url('../font/wheel.ttf?72772783') format('truetype'), url('../font/wheel.svg?72772783#wheel') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'wheel';
    src: url('../font/wheel.svg?72772783#wheel') format('svg');
  }
}
*/

[class^='icon-']:before,
[class*=' icon-']:before {
  font-family: 'wheel';
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-reply:before {
  content: '\e801';
} /* '' */
.icon-reply-all:before {
  content: '\e802';
} /* '' */
.icon-cw:before {
  content: '\e803';
} /* '' */

/*Screen for display message about the lose of connection on the Wheel page*/
.wheel-disconnect-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 50000;
  display: none;
}

.wheel-tpls-disconnect-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 50001;
  display: none;
}

.disconnect-screen-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader {
  margin-bottom: 10px;
  min-height: 60px;
  background: none;
}

.preloader:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  height: 100%;
  width: 100%;
  display: block !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wheel-desc-limited {
  display: block;
  max-width: 100px;
  width: 100px;
}
.wheel-desc-wrapper {
  display: flex;
}
.wheel-desc-start {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-weight: 400;
  font-size: 10px;
}
.wheel-desc-end {
  flex: 0 0 auto;
  display: block;
  font-weight: 400;
  font-size: 10px;
}

.preloader:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 4px rgba(0, 0, 0, 0.25) solid;
  border-top: 4px #1071b6 solid;
  border-radius: 50%;
  -webkit-animation: preloader 0.6s infinite linear;
  animation: preloader 0.6s infinite linear;
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
