/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN_r8OVuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFUZ0e.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UNirkOVuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url(https://fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCAYag.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url(https://fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7CA.ttf) format('truetype');
}
::-webkit-scrollbar {
  width: 13px;
  height: 13px;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  background: #fff !important;
}
::-webkit-scrollbar-thumb {
  min-height: 20px;
  border: 3px solid transparent;
  background-clip: content-box;
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-corner {
  background: 0 0;
}
html {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: black;
}
body {
  min-width: 950px;
  opacity: 1 !important;
}
a {
  text-decoration: none;
  color: black;
}
a.underline {
  text-decoration: underline;
}
button,
input {
  outline: none;
}
code {
  background: #EEEEEE;
  padding: 10px;
  display: block;
  margin-left: 50px;
  color: #616566;
}
a:hover {
  color: #1eb6cd;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
a.underline:hover {
  text-decoration: underline;
}
b,
.bold {
  font-weight: 600;
}
.clr {
  clear: both;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
p.text-indent {
  text-indent: 30px;
}
.header {
  height: 68px;
  padding-top: 42px;
}
.centerBlock {
  width: 950px;
  margin: 0 auto;
}
.indexMenu {
  padding: 0;
  margin: 0;
  list-style: none;
  float: left;
}
.indexMenu li {
  float: left;
  margin-right: 35px;
}
.firstBlock {
  background: url('../img/header_img.jpg') no-repeat;
  width: 100%;
  height: 620px;
  background-position: center;
}
.firstBlock .headerText {
  float: right;
  width: 550px;
}
.firstBlock .headerText > div {
  width: 100%;
}
.firstBlock .headerText .subHeaderText1 {
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  font-family: 'Roboto Condensed', sans-serif;
  text-align: left;
  margin: 0;
}
.firstBlock .headerText .subHeaderText2 {
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  color: #57c7d6;
  font-family: 'Roboto Condensed', sans-serif;
  text-align: right;
}
.firstBlock .headerText .subHeaderPlus {
  background: url("../img/plus.png") no-repeat;
  width: 48px;
  height: 47px;
  position: absolute;
  margin-left: 417px;
  margin-top: -31px;
}
.firstBlock .service-description {
  margin-top: 0;
}
.firstBlock .service-description h3 {
  margin: 0;
  font-weight: normal;
  display: inline;
}
.firstBlock .container {
  width: 950px;
  margin: 0 auto;
  height: 620px;
  padding-top: 10px;
}
.happyNewYear .firstBlock {
  background: url('../img/header_img_happy.jpg') no-repeat;
  background-position: center;
}
.headerRight {
  float: right;
}
.phoneContainer {
  border: 3px solid #edbd57;
  border-radius: 20px;
  float: left;
  padding: 5px 10px 5px 35px;
  position: relative;
  margin-top: -8px;
  font-weight: 600;
}
.phoneContainer:before {
  content: " ";
  background: url('../img/phone-icon.png') no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  margin-left: -25px;
  margin-top: 2px;
}
.loginBlock {
  float: left;
  margin-right: 40px;
}
.loginBlock a {
  font-weight: 400;
}
.loginBlock:before {
  content: " ";
  background: url('../img/icon-login.png') no-repeat;
  width: 9px;
  height: 12px;
  position: absolute;
  margin-left: -17px;
  margin-top: 4px;
}
.regBlock {
  float: left;
  margin-right: 25px;
}
.regBlock a {
  font-weight: 400;
}
.regBlock:before {
  content: " ";
  background: url('../img/icon-reg.png') no-repeat;
  width: 11px;
  height: 11px;
  position: absolute;
  margin-left: -17px;
  margin-top: 4px;
}
.shareBlock {
  width: 318px;
  height: 44px;
}
.shareBlock span {
  display: block;
  float: left;
}
.shareBlock .socButtons {
  float: right;
  position: relative;
}
.shareBlock .socButtons a {
  display: block;
  float: left;
  margin-right: 7px;
}
.shareBlock .socButtons div {
  width: 20px;
  height: 20px;
}
.shareBlock .socButtons :last-child {
  margin-right: 0;
}
.shareBlock .socButtons .vkButton {
  background: url('../img/social-vk-icon.png') no-repeat;
}
.shareBlock .socButtons .fbButton {
  background: url('../img/social-fb-icon.png') no-repeat;
}
.shareBlock .socButtons .okButton {
  background: url('../img/social-ok-icon.png') no-repeat;
}
.shareBlock .socButtons .twButton {
  background: url('../img/social-tw-icon.png') no-repeat;
}
.shareBlock .socButtons .gpButton {
  background: url('../img/social-gp-icon.png') no-repeat;
}
.shareBlock .socButtons .inButton {
  background: url('../img/social-in-icon.png') no-repeat;
}
.b-share-icon {
  width: 20px !important;
  height: 20px !important;
}
.b-share-icon:before {
  width: 20px;
  height: 20px;
  content: " ";
  opacity: 0;
  background: #1eb6cd;
  position: absolute;
  border-radius: 100%;
}
.b-share-icon:hover:before {
  opacity: 0.7;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.b-share-icon_vkontakte {
  background: url('../img/social-vk-icon.png') no-repeat !important;
}
.b-share-icon_facebook {
  background: url('../img/social-fb-icon.png') no-repeat !important;
}
.b-share-icon_twitter {
  background: url('../img/social-tw-icon.png') no-repeat !important;
}
.b-share-icon_odnoklassniki {
  background: url('../img/social-ok-icon.png') no-repeat !important;
}
.b-share-icon_gplus {
  background: url('../img/social-gp-icon.png') no-repeat !important;
}
.b-share-icon_moimir {
  background: url('../img/social-mail-icon.png') no-repeat !important;
}
.shareBlock .socButtons div:before {
  width: 20px;
  height: 20px;
  content: " ";
  opacity: 0;
  background: #1eb6cd;
  position: absolute;
  border-radius: 100%;
}
.shareBlock .socButtons div:hover:before {
  opacity: 0.5;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.firstBlock .shareBlock {
  width: 280px;
  margin-top: 35px;
  float: left;
}
.firstRightBlock {
  float: right;
  position: relative;
  width: 650px;
}
.firstRightBlock .logo {
  float: right;
  display: block;
}
.firstRightBlock .lineLogo {
  border-top: 2px dashed #e1e1e1;
  width: 425px;
  margin: 25px 0;
  float: right;
}
.font1 {
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
}
.font2 {
  font-size: 22px;
  text-align: right;
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 15px;
}
.color1 {
  color: #1eb6cd;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 15px;
  color: white;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, #f5d289 0%, #e09f13 100%);
  background-image: -o-linear-gradient(top, #f5d289 0%, #e09f13 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5d289), to(#e09f13));
  background-image: linear-gradient(to bottom, #f5d289 0%, #e09f13 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5d289', endColorstr='#ffe09f13', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-repeat: repeat-x;
  border-color: #d89608;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.btn:hover {
  color: white;
}
.btn p {
  font-size: 20px;
  margin: 3px 0;
  text-shadow: 1px 2px 1px rgba(100, 100, 100, 0.5);
  font-weight: 700;
}
.btn p.secondText {
  color: white;
  font-size: 12px;
  font-weight: 400;
  text-shadow: 1px 1px rgba(100, 100, 100, 0.5);
}
.btn.btn-font-upper {
  text-transform: uppercase;
}
.btn350 {
  width: 350px;
}
.btn145 {
  width: 145px;
  border-radius: 10px;
  font-size: 18px;
}
.btn:hover {
  background-image: -webkit-linear-gradient(top, #f5d289 0%, #f3b01f 100%);
  background-image: -o-linear-gradient(top, #f5d289 0%, #f3b01f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5d289), to(#f3b01f));
  background-image: linear-gradient(to bottom, #f5d289 0%, #f3b01f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5d289', endColorstr='#fff3b01f', GradientType=0);
}
.btn:active {
  background-image: -webkit-linear-gradient(top, #af7b0b 0%, #deac43 100%);
  background-image: -o-linear-gradient(top, #af7b0b 0%, #deac43 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#af7b0b), to(#deac43));
  background-image: linear-gradient(to bottom, #af7b0b 0%, #deac43 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaf7b0b', endColorstr='#ffdeac43', GradientType=0);
}
.btnOneLine {
  height: 70px;
  line-height: 70px;
  font-size: 24px;
  padding: 0;
}
.btnOneLine p {
  text-shadow: 1px 1px 1px rgba(100, 100, 100, 0.4);
}
.font3 {
  color: #242527;
  text-align: right;
}
.font4 {
  font-weight: 700;
  display: inline;
  font-size: 14px;
}
h1.fontH2,
h2.fontH2,
h3.fontH2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  border-bottom: 3px solid #16aec7;
  display: inline;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-weight: 400;
}
.howBlock {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
.blockContainer {
  padding-top: 40px;
}
.video {
  border: 5px solid #e1e1e1;
}
.dog_and_phone {
  background: url('../img/dog_and_phone.jpg') no-repeat;
  width: 343px;
  height: 324px;
  position: absolute;
  margin-top: -324px;
  margin-left: 650px;
}
.containerColumns .column {
  float: left;
}
.containerColumns.col2 .column {
  width: 50%;
}
.containerColumns.col3 .column {
  width: 33%;
}
.containerColumns.col4 .column {
  width: 25%;
}
.containerColumns .column ul.list {
  list-style: none;
  padding: 0;
}
.howBlock .containerColumns .column ul.list li {
  padding-right: 10px;
  height: 58px;
  padding-left: 85px;
  margin-bottom: 20px;
}
.howBlock .containerColumns .column ul.list li div {
  line-height: 17px;
  display: table-cell;
  vertical-align: middle;
  height: 58px;
}
.howBlock .containerColumns .column ul.list li:before {
  content: " ";
  position: absolute;
  width: 70px;
  height: 58px;
  margin-left: -85px;
}
.containerColumns .column ul.list li span {
  color: #979797;
}
.containerColumns .column ul.list .icon-1:before {
  background: url('../img/icon-1.png') no-repeat;
}
.containerColumns .column ul.list .icon-2:before {
  background: url('../img/icon-2.png') no-repeat;
  width: 68px;
}
.containerColumns .column ul.list .icon-3:before {
  background: url('../img/icon-3.png') no-repeat;
}
.containerColumns .column ul.list .icon-4:before {
  background: url('../img/icon-4.png') no-repeat;
}
.containerColumns .column ul.list .icon-5:before {
  background: url('../img/icon-5.png') no-repeat;
}
.containerColumns .column ul.list .icon-6:before {
  background: url('../img/icon-6.png') no-repeat;
}
.containerColumns .column ul.list .icon-7:before {
  background: url('../img/icon-7.png') no-repeat;
}
.superBlock {
  background: url('../img/bg_super.png') no-repeat;
  width: 100%;
  height: 1020px;
  background-position: center;
  position: relative;
  margin-top: -215px;
  padding-top: 215px;
}
.superBlock .text {
  position: absolute;
  text-align: center;
  width: 230px;
}
.superBlock .text p {
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 5px;
  font-weight: 400;
}
.superBlock .text span {
  color: #818181;
}
.superBlock .text-1 {
  margin-left: 41px;
  margin-top: 226px;
}
.superBlock .text-2 {
  margin-left: 365px;
  margin-top: 300px;
}
.superBlock .text-3 {
  margin-left: 687px;
  margin-top: 226px;
}
.superBlock .text-4 {
  margin-left: 41px;
  margin-top: 631px;
}
.superBlock .text-5 {
  margin-left: 365px;
  margin-top: 590px;
}
.superBlock .text-6 {
  margin-left: 687px;
  margin-top: 631px;
}
.blockInstall {
  margin-top: 740px;
  background: url('../img/bg_install.png') no-repeat;
  background-position: center;
  height: 174px;
  padding-top: 18px;
}
.blockInstall .btn {
  margin: 0 auto;
  display: block;
}
.textInstall {
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  margin-top: 58px;
}
.tariffBlock {
  background: url('../img/bg_tariffs.png') no-repeat;
  width: 100%;
  height: 844px;
  background-position: center;
  padding-top: 30px;
  position: relative;
}
.tariffBlock .column .c {
  background: white;
  width: 220px;
  height: 590px;
  border-radius: 10px;
  box-shadow: 1px 1px rgba(210, 210, 210, 0.7);
  border: 3px solid rgba(0, 0, 0, 0);
  padding-top: 5px;
}
.tariffBlock .column .c:hover {
  border: 3px solid #16aec7;
  box-shadow: none;
}
.tariffBlock .column .c.active {
  border: 3px solid #16aec7;
  box-shadow: none;
}
.tariffBlock .containerColumns {
  margin-top: 70px;
}
.tariffBlock .tLogo {
  width: 210px;
  height: 164px;
}
.t-desc {
  width: 170px;
  margin: 0 auto;
  position: relative;
  padding-top: 10px;
}
.line170 {
  background: #e1e1e1;
  width: 170px;
  height: 1px;
  margin: 15px auto;
}
.line250 {
  background: #e1e1e1;
  width: 250px;
  height: 1px;
  margin: 19px auto;
}
.line48 {
  background: #e1e1e1;
  width: 48px;
  height: 1px;
  margin-top: 3px;
}
.line63 {
  background: #e1e1e1;
  width: 63px;
  height: 1px;
  margin-top: 3px;
}
.price {
  color: #16aec7;
}
.t-message .price {
  margin: 0 auto;
}
.price .dig {
  font-size: 48px;
  text-align: center;
}
.price .dig p {
  margin: 0;
}
.price-desc {
  text-align: center;
}
.t-desc .addition {
  font-size: 14px;
  text-align: center;
  height: 45px;
  display: table-cell;
  vertical-align: middle;
  width: 170px;
}
.t-desc .addition .addition2 {
  color: #999999;
  font-size: 12px;
  display: inline-block;
  width: 135px;
  height: 34px;
  margin-top: 5px;
}
.t-desc .addition.addition-1 {
  height: 65px;
}
.contactBlock {
  background: url('../img/bg_contacts.jpg') no-repeat;
  width: 100%;
  height: 685px;
  background-position: center;
  position: relative;
}
.form {
  background: white;
  width: 380px;
  height: 280px;
  border-radius: 10px;
  box-shadow: 1px 1px rgba(210, 210, 210, 0.7);
  margin-top: 100px;
  padding: 40px 50px;
}
.font6,
.font8,
.font9 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 27px;
  text-align: center;
  text-transform: uppercase;
  line-height: 35px;
}
.font8 {
  font-size: 17px;
}
.font9 {
  font-size: 23px;
}
.font7 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 40px;
  text-align: left;
}
.form .input {
  margin-bottom: 20px;
  width: 330px;
}
.form .input input[type=text],
.form .input input[type=password] {
  border: none;
  border-top: 1px solid #bdcfd0;
  border-left: 1px solid #bdcfd0;
  height: 35px;
  border-radius: 8px;
  padding: 5px 10px 5px 35px;
  width: 100%;
  outline: none;
}
.form .input:before {
  content: " ";
  width: 10px;
  height: 11px;
  position: absolute;
  margin-left: 15px;
  margin-top: 18px;
}
.form .input-name:before {
  background: url('../img/contact_name.png') no-repeat;
}
.form .input-phone:before {
  background: url('../img/contact_phone.png') no-repeat;
}
.form .input-password:before {
  background: url('../img/icon-password.png') no-repeat;
  height: 12px;
}
.form .input-email:before {
  background: url('../img/email-icon.png') no-repeat;
  width: 11px;
}
.form .input-site:before {
  background: url('../img/site-icon.png') no-repeat;
}
.form .input-ok input,
.form .input-ok select {
  background: #eff8f9;
}
.form .input-error input,
.form .input-error select {
  background: #ffe9e9;
}
.form .warning {
  position: absolute;
  display: none;
  background: #608d9d;
  opacity: 0.9;
  padding: 5px 5px 5px 20px;
  color: white;
  margin-left: 400px;
  margin-top: -38px;
}
.form .warning:before {
  background: #608d9d;
  position: absolute;
  width: 21px;
  height: 20px;
  transform: rotate(45deg);
  margin-left: -31px;
  content: " ";
}
.form .warning:after {
  background: url('../img/warning-icon.png');
  position: absolute;
  width: 14px;
  height: 12px;
  content: " ";
  margin-left: -155px;
  margin-top: 5px;
}
.form .input-oferta .warning {
  margin-left: 266px;
  margin-top: -24px;
}
.form .input-oferta .warning:after {
  margin-left: -258px;
}
.form .input-error .warning {
  display: block !important;
}
.form .btn {
  margin-right: 5px;
  width: 200px;
  border-radius: 8px;
  font-size: 18px;
}
.footer {
  height: 45px;
  padding: 40px;
}
.leftFooter {
  float: left;
  width: 725px;
}
.rightFooter {
  float: right;
  color: #807e7d;
}
.textmedia_logo {
  background: url('../img/textmedia_logo.png');
  width: 117px;
  height: 26px;
}
.footerLogo {
  background: url('../img/footer_logo.png');
  width: 191px;
  height: 80px;
  position: relative;
  margin-top: -20px;
  margin-right: 0;
}
.footer .leftFooter .containerColumns,
.footer .rightFooter .containerColumns {
  margin-top: 5px;
}
.footer .leftFooter .column {
  width: 170px;
  margin-left: 20px;
}
.footer .leftFooter .column:nth-child(2) {
  width: 125px;
}
.footer .leftFooter .column ul,
.footer .rightFooter .column ul {
  margin: 0;
}
.footer .leftFooter .column ul li,
.footer .rightFooter .column ul li {
  margin-bottom: 10px;
}
.layerShadow {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  opacity: 0.8;
  z-index: 3;
}
.formLogin,
.formReg,
.formPartnerReg {
  position: fixed;
  width: 800px;
  top: 40px;
  left: 50%;
  margin-left: -250px;
  z-index: 4;
}
.formLogin .form,
.formReg .form,
.formPartnerReg .form {
  margin-top: 0;
  padding: 30px 50px;
}
.formReg .form,
.formPartnerReg .form {
  height: auto;
}
.reg {
  margin-right: 5px;
}
.reg:before {
  content: " ";
  background: url('../img/icon-reg.png') no-repeat;
  width: 11px;
  height: 11px;
  position: absolute;
  margin-left: -17px;
  margin-top: 4px;
}
.restore {
  margin-left: 20px;
}
.restore:before {
  content: " ";
  background: url('../img/restore-icon.png') no-repeat;
  width: 9px;
  height: 9px;
  position: absolute;
  margin-left: -17px;
  margin-top: 6px;
}
.btn_close {
  background: url('../img/close.png') no-repeat;
  width: 89px;
  height: 18px;
  position: absolute;
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.btn_close:hover {
  opacity: 1;
}
.formLogin .btn_close,
.formReg .btn_close,
.formPartnerReg .btn_close {
  margin-top: -52px;
  margin-left: 341px;
}
.select-tariff select,
.select-register select {
  height: 43px;
  padding: 5px 10px 5px 35px;
  width: 375px;
  border: none;
  border-top: 1px solid #bdcfd0;
  border-left: 1px solid #bdcfd0;
  border-radius: 8px;
  outline: none;
}
.form .select-tariff:before,
.form .select-register:before {
  background: url('../img/site-icon.png') no-repeat;
  height: 12px;
}
ul.list_faqs,
ul.list_advantages {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
ul.list_faqs li,
ul.list_advantages li {
  padding: 0;
  padding-left: 30px;
}
ul.list_faqs .question {
  font-size: 24px;
}
ul.list_faqs .question:before {
  background: url('../img/faq_icon_arrow.png') no-repeat;
  width: 17px;
  height: 12px;
  position: absolute;
  content: " ";
  margin-left: -30px;
  margin-top: 12px;
}
ul.list_faqs .answer {
  color: #616566;
  padding-left: 50px;
}
ul.list_faqs .answer:before {
  width: 26px;
  height: 24px;
  background: url('../img/faq_icon_answer.png') no-repeat;
  position: absolute;
  content: " ";
  margin-left: -50px;
  margin-top: 4px;
}
.faqBlock,
.partnerBlock,
.listBlock {
  background: url('../img/faq_bg.jpg') no-repeat;
  background-position: top center;
}
.faqBlock .shareBlock,
.partnerBlock .shareBlock,
.listBlock .shareBlock {
  float: right;
}
.faqBlock .shareBlock span,
.partnerBlock .shareBlock span,
.listBlock .shareBlock span {
  line-height: 30px;
}
ul.list_advantages li {
  padding: 0;
  padding-left: 35px;
}
ul.list_advantages li span.badge {
  background: #16aec7;
  border-radius: 100%;
  padding: 5px;
  text-align: center;
  display: block;
  float: left;
  color: white;
  width: 15px;
  height: 15px;
  line-height: 15px;
  margin-right: 10px;
  font-size: 15px;
}
ul.list_advantages li .title {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  margin-left: -35px;
}
ul.list_advantages li .advantage_c {
  padding-left: 0px;
}
ul.list_advantages li ul {
  list-style-image: url("../img/list-item-v2.png");
  padding-left: 20px;
}
ul.list_advantages li ul li {
  padding: 5px 0;
  line-height: 20px;
}
.gift {
  color: #D52323;
  font-size: 18px;
  margin-top: 20px;
}
.blueLink {
  color: #1eb6cd;
}
.mobile .formReg,
.mobile .formPartnerReg {
  position: absolute;
}
.mobileMenu {
  display: none;
}
.tariffBlock.mobile {
  display: none;
}
.tariffBlock .containerColumns {
  width: 6000px;
  margin-top: 30px;
}
.tariffBlock .containerColumns .column {
  margin-right: 6px;
}
.tariffBlock .column .c {
  box-shadow: none;
  width: 210px;
  border: 1px solid rgba(200, 200, 200, 0.5) !important;
  padding: 20px 10px;
}
.tariffBlock .containerTariff {
  width: 950px;
  margin: 0 auto;
  overflow: hidden;
}
.tariffBlock .tariff_select {
  width: 35px;
  height: 85px;
  position: absolute;
  cursor: pointer;
  opacity: 0.8;
  margin-top: -370px;
}
.tariffBlock .tariff_select:hover {
  opacity: 1;
}
.tariffBlock .tariff_left {
  background: url('../img/tariff_left.png') no-repeat;
  margin-left: -50px;
}
.tariffBlock .tariff_right {
  background: url('../img/tariff_right.png') no-repeat;
  margin-left: 965px;
}
.agency-block .left-block,
.webmaster-block .left-block {
  float: left;
  width: 270px;
  height: 270px;
  margin-right: 30px;
  margin-top: 30px;
}
.agency-block .left-block {
  background: url('../img/agency.png');
}
.webmaster-block .left-block {
  background: url('../img/webmasters.png');
}
.agency-block .right-block,
.webmaster-block .right-block {
  float: right;
  width: 600px;
}
.agency-block .right-block h2,
.webmaster-block .right-block h2 {
  font-size: 26px;
}
.agency-block .btn,
.webmaster-block .btn {
  border-radius: 8px;
}
.ul.v2 {
  list-style-image: url("../img/list-item-v2.png");
  padding-left: 20px;
}
.ul.v2 li {
  padding: 5px 0;
  line-height: 20px;
}
.help-block {
  font-size: 12px;
  color: #959595;
}
.btn-s {
  padding: 3px 7px;
}
.link_advantages {
  margin-left: 20px;
  position: relative;
  margin-top: -12px;
  border-radius: 5px;
}
#privacy-policy {
  text-align: justify;
}
.code_light {
  margin-left: 50px;
  background-color: #E0E0E0;
  padding: 10px;
}
.oyli .firstRightBlock .font1,
.project_gift .firstRightBlock .font1,
.oyli .firstRightBlock .etTitle,
.project_gift .firstRightBlock .etTitle {
  font-weight: 700 !important;
}
.oyli .firstRightBlock .btn-free-test,
.project_gift .firstRightBlock .btn-free-test {
  margin-top: 25px;
}
.oyli .btn350,
.project_gift .btn350 {
  line-height: 50px;
}
.oyli .red,
.project_gift .red {
  color: #d24a43;
}
.oyli .service-description,
.project_gift .service-description {
  margin-top: 10px;
  font-weight: 400 !important;
}
.oyli .eTimer,
.project_gift .eTimer {
  float: right;
  padding: 15px 0 10px 0;
}
.oyli .action_time,
.project_gift .action_time {
  margin-top: 10px;
}
.oyli .action_time input,
.project_gift .action_time input {
  width: 30px;
  text-align: center;
  margin: 0 5px;
}
.project_gift .big_font p {
  line-height: 72px;
  font-size: 48px;
}
.btnTop {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100000;
  background: white;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
  border: 3px solid #edbd57;
  border-radius: 10px;
  padding: 5px 10px;
  cursor: pointer;
}
.btnTop:hover {
  background: #edbd57;
  color: white;
}
.btnTop.show {
  visibility: visible;
  opacity: 1;
}
.functions {
  background: url('../img/functions.jpg') no-repeat;
  width: 100%;
  min-height: 400px;
  position: relative;
  background-color: #f8f8f8;
}
.functions .listContainer {
  margin-top: 10px;
  padding: 40px 0;
}
.functions ul {
  list-style: none;
  padding: 0;
  margin: 0 1% 0 0;
  float: left;
  width: 19%;
}
.functions ul li.func_1 {
  background: url("../img/func_icon_1.png") 2px 5px no-repeat;
}
.functions ul li.func_2 {
  background: url("../img/func_icon_2.png") left 5px no-repeat;
}
.functions ul li.func_3 {
  background: url("../img/func_icon_3.png") left 5px no-repeat;
}
.functions ul li.func_4 {
  background: url("../img/func_icon_4.png") 2px 5px no-repeat;
}
.functions ul li.func_5 {
  background: url("../img/func_icon_5.png") left 5px no-repeat;
}
.functions ul li.func_6 {
  background: url("../img/func_icon_6.png") 8px 5px no-repeat;
}
.functions ul li.func_7 {
  background: url("../img/func_icon_7.png") left 5px no-repeat;
}
.functions ul li.func_8 {
  background: url("../img/func_icon_8.png") 8px 5px no-repeat;
}
.functions ul li.func_9 {
  background: url("../img/func_icon_9.png") 8px 5px no-repeat;
}
.functions ul li.func_10 {
  background: url("../img/func_icon_10.png") 8px 5px no-repeat;
}
.functions ul li.func_11 {
  background: url("../img/func_icon_11.png") left 5px no-repeat;
}
.functions ul li.func_12 {
  background: url("../img/func_icon_12.png") left 5px no-repeat;
}
.functions ul li.func_13 {
  background: url("../img/func_icon_13.png") left 5px no-repeat;
}
.functions ul li.func_14 {
  background: url("../img/func_icon_14.png") left 5px no-repeat;
}
.functions ul li.func_15 {
  background: url("../img/func_icon_15.png") left 5px no-repeat;
}
.functions ul li.func_16 {
  background: url("../img/func_icon_16.png") left 5px no-repeat;
}
.functions ul li.func_17 {
  background: url("../img/func_icon_17.png") left 5px no-repeat;
}
.functions ul li.func_18 {
  background: url("../img/func_icon_18.png") left 5px no-repeat;
}
.functions ul li.func_19 {
  background: url("../img/func_icon_19.png") left 5px no-repeat;
}
.functions ul li.func_20 {
  background: url("../img/func_icon_20.png") left 5px no-repeat;
}
.functions ul li.func_21 {
  background: url("../img/func_icon_21.png") left 5px no-repeat;
}
.functions ul li.func_22 {
  background: url("../img/func_icon_22.png") left 5px no-repeat;
}
.functions ul li.func_23 {
  background: url("../img/func_icon_23.png") left 5px no-repeat;
}
.functions ul li.func_24 {
  background: url("../img/func_icon_24.png") left 5px no-repeat;
}
.functions ul li.func_25 {
  background: url("../img/func_icon_25.png") left 5px no-repeat;
}
.functions ul li.func_26 {
  background: url("../img/func_icon_26.png") left 5px no-repeat;
}
.functions ul li {
  min-height: 20px;
  min-width: 50px;
  padding: 0 0 10px 38px;
  /*background-position-y: 4px !important;*/
}
/* СБРОС */
.instructions {
  text-align: center;
}
.instructions div,
.instructions span,
.instructions object,
.instructions iframe,
.instructions h1,
.instructions h2,
.instructions h3,
.instructions h4,
.instructions h5,
.instructions h6,
.instructions p,
.instructions blockquote,
.instructions pre,
.instructions abbr,
.instructions address,
.instructions cite,
.instructions code,
.instructions del,
.instructions dfn,
.instructions em,
.instructions img,
.instructions ins,
.instructions kbd,
.instructions q,
.instructions samp,
.instructions small,
.instructions strong,
.instructions sub,
.instructions sup,
.instructions var,
.instructions b,
.instructions i,
.instructions dl,
.instructions dt,
.instructions dd,
.instructions ol,
.instructions ul,
.instructions li,
.instructions fieldset,
.instructions form,
.instructions label,
.instructions legend,
.instructions table,
.instructions caption,
.instructions tbody,
.instructions tfoot,
.instructions thead,
.instructions tr,
.instructions th,
.instructions td,
.instructions article,
.instructions aside,
.instructions canvas,
.instructions details,
.instructions figcaption,
.instructions figure,
.instructions footer,
.instructions header,
.instructions hgroup,
.instructions menu,
.instructions nav,
.instructions section,
.instructions summary,
.instructions time,
.instructions mark,
.instructions audio,
.instructions video,
.instructions hr {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
.instructions body {
  line-height: normal;
  -webkit-font-smoothing: antialiased;
}
.instructions main,
.instructions article,
.instructions aside,
.instructions details,
.instructions figcaption,
.instructions figure,
.instructions footer,
.instructions header,
.instructions hgroup,
.instructions menu,
.instructions nav,
.instructions section {
  display: block;
}
.instructions ul {
  list-style: none;
}
.instructions ol {
  list-style: inside decimal;
}
.instructions blockquote,
.instructions q {
  quotes: none;
}
.instructions blockquote:before,
.instructions blockquote:after,
.instructions q:before,
.instructions q:after {
  content: '';
  content: none;
}
.instructions a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
.instructions a:focus {
  outline: 0;
}
.instructions ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
.instructions del {
  text-decoration: line-through;
}
.instructions table {
  border-collapse: collapse;
  border-spacing: 0;
}
.instructions input,
.instructions textarea,
.instructions button {
  margin: 0;
  padding: 0;
  font-family: inherit;
}
.instructions address {
  font-style: normal;
}
.instructions mark {
  color: inherit;
}
.instructions hr {
  height: 1px;
  background: #ccc;
}
.instructions * {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.instructions .clear {
  width: 100%;
  height: 0;
  overflow: hidden;
  font-size: 0;
  clear: both;
  display: block;
}
.instructions .cleared::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  font-size: 0;
  clear: both;
}
.instructions .callguide-layout {
  padding: 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  color: #071c22;
}
.instructions .callguide-title {
  text-align: center;
  margin: 0px 0px 70px 0px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.instructions .callguide-cols {
  padding-left: 420px;
}
.instructions .callguide-menu {
  float: left;
  margin-left: -420px;
  width: 380px;
  padding: 30px 30px 12px 30px;
  background-color: #ECF4F6;
}
.instructions .callguide-menu li {
  display: block;
  margin-bottom: 18px;
}
.instructions .callguide-menu li a {
  color: #071c22;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.instructions .callguide-menu li a:hover,
.instructions .callguide-menu li.active a {
  opacity: 0.7;
}
.instructions .callguide-menu li.active a {
  cursor: default;
}
.instructions .callguide-block {
  display: none;
}
.instructions .callguide-block.active {
  display: block;
}
.instructions .callstep {
  position: relative;
  padding: 30px 20px;
}
.instructions .callstep:nth-child(2n+1) {
  background-color: #f3f3f3;
}
.instructions .callstep:first-child {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #FFF;
}
.instructions .callstep:nth-child(2n+1):not(:first-child):before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  border: 20px solid transparent;
  border-top: 20px solid #FFF;
}
.instructions .step-cap {
  margin: 0px 0px 17px 0px;
  padding: 0;
  font-size: 26px;
  font-weight: bold;
  color: #43caff;
  text-transform: uppercase;
}
.instructions .callstep:nth-child(2n+1):not(:first-child) .step-cap {
  color: #939292;
}
.instructions .callguide-block h3 {
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 14px 0;
}
.instructions .callguide-block p {
  margin: 15px 0;
}
.instructions .code-block,
.instructions .code-string {
  background-color: #FAFFAC;
  color: #4D0000;
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
}
.instructions .code-block {
  margin: 15px 0;
  padding: 10px;
}
.instructions .code-string {
  padding: 0 5px;
}
.instructions .tabulation {
  padding-left: 25px;
}
.instructions .callguide-content img {
  max-width: 100%;
}
.instructions .image-bordered {
  border: 10px solid #f3f3f3;
}
.mobile .shareBlock {
  display: none;
}
.mobile .instructions .callguide-layout {
  padding-left: 0;
  padding-right: 0;
}
.mobile .instructions .callguide-cols {
  padding-left: 0;
}
.mobile .instructions .callguide-menu {
  float: none;
  margin: 0;
}
.mobile .instructions .callguide-content {
  margin-top: 40px;
}
/****************** notification *******************/
#containerNotification {
  position: fixed;
  right: 10px;
  top: 10px;
  text-align: center;
  max-width: 500px;
  font-size: 14px;
  z-index: 10000;
}
.notification {
  text-align: center;
  padding: 10px 20px;
  max-width: 500px;
  font-size: 14px;
  z-index: 10001;
  margin-bottom: 5px;
  position: relative;
  right: -500px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.notification.notification-status-1 {
  color: #FFFFFF;
  background: #008a8a;
}
.notification.notification-status-2 {
  color: #FFFFFF;
  background: #cc4946;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 20px;
  }
  body {
    min-width: 0;
    max-width: 1000px;
    width: 100%;
  }
  body * {
    box-sizing: border-box;
  }
  h2.fontH2 {
    font-size: 36px;
    line-height: 60px;
    padding-bottom: 2px;
  }
  .header {
    height: 105px;
  }
  .centerBlock,
  .firstRightBlock,
  .firstBlock .container,
  .tariffBlockMobile {
    width: 100%;
    padding: 0 10px;
  }
  .centerBlock .lineLogo,
  .firstRightBlock .lineLogo,
  .firstBlock .container .lineLogo,
  .tariffBlockMobile .lineLogo {
    display: none;
  }
  .howBlock {
    margin-top: 60px;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  }
  .howBlock .video {
    width: 580px;
    margin: 0 auto;
    display: block;
  }
  .mobileMenu {
    display: block;
    background: url('../img/m_menu.png') no-repeat;
    background-size: cover;
    width: 88px;
    height: 88px;
    float: left;
    margin: 8px 0 20px 0;
    cursor: pointer;
  }
  .mobileMenu:hover {
    background: url('../img/m_menu_active.png') no-repeat;
    background-size: cover;
  }
  .mobileMenu.active {
    background: url('../img/m_menu.png') no-repeat;
    background-size: cover;
  }
  .mobileMenu ul {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 7.8rem;
    width: 100%;
    display: none;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    font-size: 2rem;
  }
  .mobileMenu.active ul {
    display: block;
  }
  .mobileMenu ul li {
    margin: 0;
  }
  .mobileMenu ul li a {
    background: #e1a016;
    padding: 2rem 2rem;
    text-transform: uppercase;
    color: white;
    display: block;
  }
  .mobileMenu ul li a:hover {
    background: #cb8e0b;
  }
  .shareBlock {
    float: right;
    width: 160px;
  }
  .phoneContainer {
    font-size: 28px;
    border-radius: 70px;
    padding: 14px 21px 14px 74px;
    margin-top: 17px;
  }
  .phoneContainer:before {
    background: url('../img/m_phone_icon.png') no-repeat;
    width: 30px;
    height: 30px;
    margin-left: -2.8rem;
    margin-top: 0.3rem;
  }
  .indexMenu,
  .loginBlock,
  .regBlock {
    display: none;
  }
  .firstRightBlock {
    float: none;
  }
  .firstRightBlock * {
    text-align: center;
  }
  .firstRightBlock .font2 {
    font-size: 35px;
  }
  .firstRightBlock .pull-right {
    float: none;
    margin: 0 auto;
    display: block;
  }
  .firstBlock {
    background: none !important;
    height: auto;
  }
  .firstBlock .container {
    height: auto;
  }
  .firstBlock .logo {
    margin: 0 auto;
    float: none;
  }
  .firstBlock .service-description {
    font-size: 26px;
    display: block;
    margin: 40px auto 0 auto;
  }
  .firstBlock .service-description * {
    font-size: 26px;
  }
  .firstBlock .shareBlock {
    display: none;
  }
  .dog_and_phone {
    display: none;
  }
  .superBlock,
  .contactBlock {
    display: none;
  }
  .footer {
    height: auto;
    padding: 30px 15px;
    border-top: 1px solid #999;
  }
  .footer .leftFooter {
    width: 35%;
    position: relative;
    margin-top: 5px;
  }
  .footer .leftFooter .containerColumns {
    display: none;
  }
  .btn-free-test {
    width: 500px;
  }
  .howList .column {
    width: 100% !important;
    float: none;
    font-size: 1.2rem;
  }
  .howBlock {
    padding-bottom: 40px;
  }
  .howBlock .containerColumns .column ul.list li {
    height: auto;
  }
  .howBlock .containerColumns .column ul.list li div {
    line-height: 1.8rem;
  }
  .howBlock .containerColumns .column:last-child ul.list {
    margin-bottom: 0;
  }
  .howBlock .containerColumns .column:last-child ul.list li:last-child {
    margin-bottom: 0;
  }
  .tariffBlock {
    display: none;
  }
  .tariffBlock.mobile {
    /*display: none;
      display: block;*/
    margin: 0 auto;
    text-align: center;
    height: auto;
    padding-bottom: 40px;
    background-position: top center;
  }
  .tariffBlock.mobile .blockContainer {
    padding-top: 0;
  }
  .tariffBlock.mobile {
    padding-bottom: 0;
  }
  .tariffBlock.mobile .centerBlock {
    padding: 0;
  }
  .tariffBlock.mobile .centerBlock .containerTariff {
    width: 350px;
    margin: 0 auto;
    overflow: hidden;
  }
  .tariffBlock.mobile .centerBlock .containerTariff .t-desc .addition {
    height: auto;
    font-size: 20px;
  }
  .tariffBlock.mobile .centerBlock .containerTariff .t-desc .addition1,
  .tariffBlock.mobile .centerBlock .containerTariff .t-desc .addition2 {
    font-size: 18px;
    width: 100%;
  }
  .tariffBlock.mobile .centerBlock .containerTariff .tariff8 .addition2 {
    display: block;
    width: auto;
  }
  .tariffBlock.mobile .centerBlock .gift {
    background: white;
    text-align: left;
    padding: 40px 20px;
    margin-bottom: 0;
  }
  .tariffBlock.mobile .tLogo {
    margin: 0 auto;
    width: 300px;
    height: 240px;
    background-size: 100% !important;
  }
  .tariffBlock.mobile .font6 {
    font-size: 7vmin;
  }
  .tariffBlock.mobile .font8 {
    font-size: 4vmin;
  }
  .tariffBlock.mobile .font9 {
    font-size: 6vmin;
  }
  .tariffBlock.mobile {
    background: #eee;
    /*.containerTariff{
         height: 760px;
      }*/
  }
  .tariffBlock.mobile .containerColumns.col4 .column {
    width: 350px;
  }
  .tariffBlock.mobile .column .c {
    box-shadow: none;
    width: 328px;
    height: 770px;
    border: 1px solid rgba(200, 200, 200, 0.5) !important;
    padding: 20px 10px;
  }
  .tariffBlock.mobile .containerColumns {
    width: 6000px;
    margin-top: 30px;
  }
  .tariffBlock.mobile .t-desc,
  .tariffBlock.mobile .t-desc .addition {
    width: 262px;
  }
  .tariffBlock.mobile .t-message .price .dig {
    /*font-size: 10vmin;*/
  }
  .tariffBlock.mobile .btn280 {
    width: 280px;
    height: 50px;
    line-height: 35px;
    font-size: 24px;
  }
  .tariffBlock.mobile .tariff_select {
    width: 83px;
    height: 223px;
    position: absolute;
    cursor: pointer;
    opacity: 0.8;
    margin-top: -450px;
  }
  .tariffBlock.mobile .tariff_select:hover {
    opacity: 1;
  }
  .tariffBlock.mobile .tariff_left {
    background: url('../img/m_tariff_left.png') no-repeat;
    left: 0;
    margin-left: 0;
  }
  .tariffBlock.mobile .tariff_right {
    background: url('../img/m_tariff_right.png') no-repeat;
    right: 0;
    margin-left: 0;
  }
  /*.footer:after{
      content: " ";
      position: absolute;
      left: 0;
      right: 0;
      height: 20px;
      width: 100%;
      background: url("/img/m_shadow_footer.png") no-repeat;
      margin-top: -78px;
      z-index: 2;
      background-position: center center;
   }*/
}
.is_mobile .tariffBlock.mobile {
  display: block;
}
.is_mobile .btnTop {
  display: none !important;
}
.is_mobile .functions {
  padding-top: 30px;
  padding-bottom: 40px;
}
.is_mobile .functions h3 {
  font-size: 22px;
  line-height: 50px;
  padding-bottom: 3px;
}
.is_mobile .functions .listContainer {
  padding: 20px 0 0 0;
  /*ul{
            float: none;
         }*/
}
.is_mobile .functions .listContainer ul {
  width: 100%;
  float: none;
}
.is_mobile .functions .listContainer ul li {
  min-height: 35px;
  padding-bottom: 0;
  padding-left: 45px;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 20px;
}
.is_mobile .formReg {
  width: 100%;
}
.is_mobile .formReg .form {
  width: 500px;
}
.is_mobile .formReg .form .input {
  margin-bottom: 30px;
  width: 100%;
}
.ui.attached.info.message,
.ui.info.message {
  box-shadow: 0 0 0 1px #A9D5DE inset, 0 0 0 0 transparent;
}
.ui.info.message {
  background-color: #F8FFFF;
  color: #276F86;
}
.ui.message {
  font-size: 1em;
}
.ui.message {
  position: relative;
  min-height: 1em;
  margin: 1em 0;
  background: #F8F8F9;
  padding: 1em 1.5em;
  line-height: 1.4285em;
  color: rgba(0, 0, 0, 0.87);
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
  border-radius: 0.28571429rem;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent;
}
.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  font-size: 1.28em;
}
.ui.header {
  border: none;
  margin: calc(2rem - 0.14285em) 0 1rem;
  padding: 0 0;
  font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2857em;
  text-transform: none;
  color: rgba(0, 0, 0, 0.87);
  height: auto;
}
.ui.styled.accordion,
.ui.styled.accordion .accordion {
  border-radius: 0.28571429rem;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15);
}
.ui.accordion .accordion .active.content,
.ui.accordion .active.content {
  display: block;
}
.ui.styled.accordion .accordion .content,
.ui.styled.accordion .content {
  margin: 0;
  padding: 0.5em 1em 1.5em;
}
.ui.accordion .accordion .title ~ .content,
.ui.accordion .title ~ .content {
  /*display: none;*/
}
.ui.styled.accordion .active.title {
  background: 0 0;
  color: rgba(0, 0, 0, 0.95);
}
.ui.styled.accordion .accordion .active.title,
.ui.styled.accordion .accordion .title:hover,
.ui.styled.accordion .active.title,
.ui.styled.accordion .title:hover {
  background: 0 0;
  color: rgba(0, 0, 0, 0.87);
}
.ui.styled.accordion .accordion .title:first-child,
.ui.styled.accordion > .title:first-child {
  border-top: none;
}
.ui.accordion .title:not(.ui) {
  padding: 0.5em 0;
  font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.87);
}
.ui.styled.accordion .accordion .title,
.ui.styled.accordion .title {
  margin: 0;
  padding: 0.75em 1em;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 700;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
  transition: background 0.1s ease, color 0.1s ease;
}
.ui.accordion .accordion .title,
.ui.accordion .title {
  cursor: pointer;
}
.badge.badge-info,
.label.label-info {
  background: #49b6d6;
}
.label-info {
  background-color: #5bc0de;
}
.ui.table {
  width: 100%;
  background: #fff;
  margin: 1em 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0.28571429rem;
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  border-collapse: separate;
  border-spacing: 0;
}
.ui.table:first-child {
  margin-top: 0;
}
.ui.table:last-child {
  margin-bottom: 0;
}
.ui.table td,
.ui.table th {
  -webkit-transition: background 0.1s ease, color 0.1s ease;
  transition: background 0.1s ease, color 0.1s ease;
}
.ui.table thead {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui.table thead th {
  cursor: auto;
  background: #f9fafb;
  text-align: inherit;
  color: rgba(0, 0, 0, 0.87);
  padding: 0.92857143em 0.78571429em;
  vertical-align: inherit;
  font-style: none;
  font-weight: 700;
  text-transform: none;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  border-left: none;
}
.ui.table thead tr > th:first-child {
  border-left: none;
}
.ui.table thead tr:first-child > th:first-child {
  border-radius: 0.28571429rem 0 0 0;
}
.ui.table thead tr:first-child > th:last-child {
  border-radius: 0 0.28571429rem 0 0;
}
.ui.table thead tr:first-child > th:only-child {
  border-radius: 0.28571429rem 0.28571429rem 0 0;
}
.ui.table tfoot {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui.table tfoot th {
  cursor: auto;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
  background: #f9fafb;
  text-align: inherit;
  color: rgba(0, 0, 0, 0.87);
  padding: 0.78571429em 0.78571429em;
  vertical-align: middle;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
.ui.table tfoot tr > th:first-child {
  border-left: none;
}
.ui.table tfoot tr:first-child > th:first-child {
  border-radius: 0 0 0 0.28571429rem;
}
.ui.table tfoot tr:first-child > th:last-child {
  border-radius: 0 0 0.28571429rem 0;
}
.ui.table tfoot tr:first-child > th:only-child {
  border-radius: 0 0 0.28571429rem 0.28571429rem;
}
.ui.table tr td {
  border-top: 1px solid rgba(34, 36, 38, 0.1);
}
.ui.table tr:first-child td {
  border-top: none;
}
.ui.table tbody + tbody tr:first-child td {
  border-top: 1px solid rgba(34, 36, 38, 0.1);
}
.ui.table td {
  padding: 0.78571429em 0.78571429em;
  text-align: inherit;
}
.ui.table > .icon {
  vertical-align: baseline;
}
.ui.table > .icon:only-child {
  margin: 0;
}
.ui.table.segment {
  padding: 0;
}
.ui.table.segment:after {
  display: none;
}
.ui.table.segment.stacked:after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .ui.table:not(.unstackable) {
    width: 100%;
  }
  .ui.table:not(.unstackable) tbody,
  .ui.table:not(.unstackable) tr,
  .ui.table:not(.unstackable) tr > td,
  .ui.table:not(.unstackable) tr > th {
    width: auto!important;
    display: block !important;
  }
  .ui.table:not(.unstackable) {
    padding: 0;
  }
  .ui.table:not(.unstackable) thead {
    display: block;
  }
  .ui.table:not(.unstackable) tfoot {
    display: block;
  }
  .ui.table:not(.unstackable) tr {
    padding-top: 1em;
    padding-bottom: 1em;
    -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
  }
  .ui.table:not(.unstackable) tr > td,
  .ui.table:not(.unstackable) tr > th {
    background: 0 0;
    border: none!important;
    padding: 0.25em 0.75em !important;
    -webkit-box-shadow: none!important;
    box-shadow: none !important;
  }
  .ui.table:not(.unstackable) td:first-child,
  .ui.table:not(.unstackable) th:first-child {
    font-weight: 700;
  }
  .ui.definition.table:not(.unstackable) thead th:first-child {
    -webkit-box-shadow: none!important;
    box-shadow: none !important;
  }
}
.ui.table td .image,
.ui.table td .image img,
.ui.table th .image,
.ui.table th .image img {
  max-width: none;
}
.ui.structured.table {
  border-collapse: collapse;
}
.ui.structured.table thead th {
  border-left: none;
  border-right: none;
}
.ui.structured.sortable.table thead th {
  border-left: 1px solid rgba(34, 36, 38, 0.15);
  border-right: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.structured.basic.table th {
  border-left: none;
  border-right: none;
}
.ui.structured.celled.table tr td,
.ui.structured.celled.table tr th {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
  border-right: 1px solid rgba(34, 36, 38, 0.1);
}
.ui.definition.table thead:not(.full-width) th:first-child {
  pointer-events: none;
  background: 0 0;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: -1px -1px 0 1px #fff;
  box-shadow: -1px -1px 0 1px #fff;
}
.ui.definition.table tfoot:not(.full-width) th:first-child {
  pointer-events: none;
  background: 0 0;
  font-weight: rgba(0, 0, 0, 0.4);
  color: normal;
  -webkit-box-shadow: 1px 1px 0 1px #fff;
  box-shadow: 1px 1px 0 1px #fff;
}
.ui.celled.definition.table thead:not(.full-width) th:first-child {
  -webkit-box-shadow: 0 -1px 0 1px #fff;
  box-shadow: 0 -1px 0 1px #fff;
}
.ui.celled.definition.table tfoot:not(.full-width) th:first-child {
  -webkit-box-shadow: 0 1px 0 1px #fff;
  box-shadow: 0 1px 0 1px #fff;
}
.ui.definition.table tr td.definition,
.ui.definition.table tr td:first-child:not(.ignored) {
  background: rgba(0, 0, 0, 0.03);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.95);
  text-transform: '';
  -webkit-box-shadow: '';
  box-shadow: '';
  text-align: '';
  font-size: 1em;
  padding-left: '';
  padding-right: '';
}
.ui.definition.table thead:not(.full-width) th:nth-child(2) {
  border-left: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
  border-left: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.definition.table td:nth-child(2) {
  border-left: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.table td.positive,
.ui.table tr.positive {
  -webkit-box-shadow: 0 0 0 #a3c293 inset;
  box-shadow: 0 0 0 #a3c293 inset;
}
.ui.table td.positive,
.ui.table tr.positive {
  background: #fcfff5 !important;
  color: #2c662d !important;
}
.ui.table td.negative,
.ui.table tr.negative {
  -webkit-box-shadow: 0 0 0 #e0b4b4 inset;
  box-shadow: 0 0 0 #e0b4b4 inset;
}
.ui.table td.negative,
.ui.table tr.negative {
  background: #fff6f6 !important;
  color: #9f3a38 !important;
}
.ui.table td.error,
.ui.table tr.error {
  -webkit-box-shadow: 0 0 0 #e0b4b4 inset;
  box-shadow: 0 0 0 #e0b4b4 inset;
}
.ui.table td.error,
.ui.table tr.error {
  background: #fff6f6 !important;
  color: #9f3a38 !important;
}
.ui.table td.warning,
.ui.table tr.warning {
  -webkit-box-shadow: 0 0 0 #c9ba9b inset;
  box-shadow: 0 0 0 #c9ba9b inset;
}
.ui.table td.warning,
.ui.table tr.warning {
  background: #fffaf3 !important;
  color: #573a08 !important;
}
.ui.table td.active,
.ui.table tr.active {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
}
.ui.table td.active,
.ui.table tr.active {
  background: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.ui.table tr td.disabled,
.ui.table tr.disabled td,
.ui.table tr.disabled:hover,
.ui.table tr:hover td.disabled {
  pointer-events: none;
  color: rgba(40, 40, 40, 0.3);
}
@media only screen and (max-width: 991px) {
  .ui[class*="tablet stackable"].table,
  .ui[class*="tablet stackable"].table tbody,
  .ui[class*="tablet stackable"].table tr,
  .ui[class*="tablet stackable"].table tr > td,
  .ui[class*="tablet stackable"].table tr > th {
    width: 100%!important;
    display: block !important;
  }
  .ui[class*="tablet stackable"].table {
    padding: 0;
  }
  .ui[class*="tablet stackable"].table thead {
    display: block;
  }
  .ui[class*="tablet stackable"].table tfoot {
    display: block;
  }
  .ui[class*="tablet stackable"].table tr {
    padding-top: 1em;
    padding-bottom: 1em;
    -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
  }
  .ui[class*="tablet stackable"].table tr > td,
  .ui[class*="tablet stackable"].table tr > th {
    background: 0 0;
    border: none!important;
    padding: 0.25em 0.75em;
    -webkit-box-shadow: none!important;
    box-shadow: none !important;
  }
  .ui.definition[class*="tablet stackable"].table thead th:first-child {
    -webkit-box-shadow: none!important;
    box-shadow: none !important;
  }
}
.ui.table [class*="left aligned"],
.ui.table[class*="left aligned"] {
  text-align: left;
}
.ui.table [class*="center aligned"],
.ui.table[class*="center aligned"] {
  text-align: center;
}
.ui.table [class*="right aligned"],
.ui.table[class*="right aligned"] {
  text-align: right;
}
.ui.table [class*="top aligned"],
.ui.table[class*="top aligned"] {
  vertical-align: top;
}
.ui.table [class*="middle aligned"],
.ui.table[class*="middle aligned"] {
  vertical-align: middle;
}
.ui.table [class*="bottom aligned"],
.ui.table[class*="bottom aligned"] {
  vertical-align: bottom;
}
.ui.table td.collapsing,
.ui.table th.collapsing {
  width: 1px;
  white-space: nowrap;
}
.ui.fixed.table {
  table-layout: fixed;
}
.ui.fixed.table td,
.ui.fixed.table th {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui.selectable.table tbody tr:hover,
.ui.table tbody tr td.selectable:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: rgba(0, 0, 0, 0.95) !important;
}
.ui.inverted.table tbody tr td.selectable:hover,
.ui.selectable.inverted.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}
.ui.table tbody tr td.selectable {
  padding: 0;
}
.ui.table tbody tr td.selectable > a:not(.ui) {
  display: block;
  color: inherit;
  padding: 0.78571429em 0.78571429em;
}
.ui.selectable.table tr.error:hover,
.ui.selectable.table tr:hover td.error,
.ui.table tr td.selectable.error:hover {
  background: #ffe7e7 !important;
  color: #943634 !important;
}
.ui.selectable.table tr.warning:hover,
.ui.selectable.table tr:hover td.warning,
.ui.table tr td.selectable.warning:hover {
  background: #fff4e4 !important;
  color: #493107 !important;
}
.ui.selectable.table tr.active:hover,
.ui.selectable.table tr:hover td.active,
.ui.table tr td.selectable.active:hover {
  background: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.ui.selectable.table tr.positive:hover,
.ui.selectable.table tr:hover td.positive,
.ui.table tr td.selectable.positive:hover {
  background: #f7ffe6 !important;
  color: #275b28 !important;
}
.ui.selectable.table tr.negative:hover,
.ui.selectable.table tr:hover td.negative,
.ui.table tr td.selectable.negative:hover {
  background: #ffe7e7 !important;
  color: #943634 !important;
}
.ui.attached.table {
  top: 0;
  bottom: 0;
  border-radius: 0;
  margin: 0 -1px;
  width: calc(100% - (-1px * 2));
  max-width: calc(100% - (-1px * 2));
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #d4d4d5;
}
.ui.attached + .ui.attached.table:not(.top) {
  border-top: none;
}
.ui[class*="top attached"].table {
  bottom: 0;
  margin-bottom: 0;
  top: 0;
  margin-top: 1em;
  border-radius: 0.28571429rem 0.28571429rem 0 0;
}
.ui.table[class*="top attached"]:first-child {
  margin-top: 0;
}
.ui[class*="bottom attached"].table {
  bottom: 0;
  margin-top: 0;
  top: 0;
  margin-bottom: 1em;
  -webkit-box-shadow: none,none;
  box-shadow: none,none;
  border-radius: 0 0 0.28571429rem 0.28571429rem;
}
.ui[class*="bottom attached"].table:last-child {
  margin-bottom: 0;
}
.ui.striped.table tbody tr:nth-child(2n),
.ui.striped.table > tr:nth-child(2n) {
  background-color: rgba(0, 0, 50, 0.02);
}
.ui.inverted.striped.table tbody tr:nth-child(2n),
.ui.inverted.striped.table > tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.05);
}
.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
  background: #efefef !important;
  color: rgba(0, 0, 0, 0.95) !important;
}
.ui.table [class*="single line"],
.ui.table[class*="single line"] {
  white-space: nowrap;
}
.ui.table [class*="single line"],
.ui.table[class*="single line"] {
  white-space: nowrap;
}
.ui.red.table {
  border-top: 0.2em solid #db2828;
}
.ui.inverted.red.table {
  background-color: #db2828 !important;
  color: #fff !important;
}
.ui.orange.table {
  border-top: 0.2em solid #f2711c;
}
.ui.inverted.orange.table {
  background-color: #f2711c !important;
  color: #fff !important;
}
.ui.yellow.table {
  border-top: 0.2em solid #fbbd08;
}
.ui.inverted.yellow.table {
  background-color: #fbbd08 !important;
  color: #fff !important;
}
.ui.olive.table {
  border-top: 0.2em solid #b5cc18;
}
.ui.inverted.olive.table {
  background-color: #b5cc18 !important;
  color: #fff !important;
}
.ui.green.table {
  border-top: 0.2em solid #21ba45;
}
.ui.inverted.green.table {
  background-color: #21ba45 !important;
  color: #fff !important;
}
.ui.teal.table {
  border-top: 0.2em solid #00b5ad;
}
.ui.inverted.teal.table {
  background-color: #00b5ad !important;
  color: #fff !important;
}
.ui.blue.table {
  border-top: 0.2em solid #2185d0;
}
.ui.inverted.blue.table {
  background-color: #2185d0 !important;
  color: #fff !important;
}
.ui.violet.table {
  border-top: 0.2em solid #6435c9;
}
.ui.inverted.violet.table {
  background-color: #6435c9 !important;
  color: #fff !important;
}
.ui.purple.table {
  border-top: 0.2em solid #a333c8;
}
.ui.inverted.purple.table {
  background-color: #a333c8 !important;
  color: #fff !important;
}
.ui.pink.table {
  border-top: 0.2em solid #e03997;
}
.ui.inverted.pink.table {
  background-color: #e03997 !important;
  color: #fff !important;
}
.ui.brown.table {
  border-top: 0.2em solid #a5673f;
}
.ui.inverted.brown.table {
  background-color: #a5673f !important;
  color: #fff !important;
}
.ui.grey.table {
  border-top: 0.2em solid #767676;
}
.ui.inverted.grey.table {
  background-color: #767676 !important;
  color: #fff !important;
}
.ui.black.table {
  border-top: 0.2em solid #1b1c1d;
}
.ui.inverted.black.table {
  background-color: #1b1c1d !important;
  color: #fff !important;
}
.ui.one.column.table td {
  width: 100%;
}
.ui.two.column.table td {
  width: 50%;
}
.ui.three.column.table td {
  width: 33.33333333%;
}
.ui.four.column.table td {
  width: 25%;
}
.ui.five.column.table td {
  width: 20%;
}
.ui.six.column.table td {
  width: 16.66666667%;
}
.ui.seven.column.table td {
  width: 14.28571429%;
}
.ui.eight.column.table td {
  width: 12.5%;
}
.ui.nine.column.table td {
  width: 11.11111111%;
}
.ui.ten.column.table td {
  width: 10%;
}
.ui.eleven.column.table td {
  width: 9.09090909%;
}
.ui.twelve.column.table td {
  width: 8.33333333%;
}
.ui.thirteen.column.table td {
  width: 7.69230769%;
}
.ui.fourteen.column.table td {
  width: 7.14285714%;
}
.ui.fifteen.column.table td {
  width: 6.66666667%;
}
.ui.sixteen.column.table td {
  width: 6.25%;
}
.ui.table td.one.wide,
.ui.table th.one.wide {
  width: 6.25%;
}
.ui.table td.two.wide,
.ui.table th.two.wide {
  width: 12.5%;
}
.ui.table td.three.wide,
.ui.table th.three.wide {
  width: 18.75%;
}
.ui.table td.four.wide,
.ui.table th.four.wide {
  width: 25%;
}
.ui.table td.five.wide,
.ui.table th.five.wide {
  width: 31.25%;
}
.ui.table td.six.wide,
.ui.table th.six.wide {
  width: 37.5%;
}
.ui.table td.seven.wide,
.ui.table th.seven.wide {
  width: 43.75%;
}
.ui.table td.eight.wide,
.ui.table th.eight.wide {
  width: 50%;
}
.ui.table td.nine.wide,
.ui.table th.nine.wide {
  width: 56.25%;
}
.ui.table td.ten.wide,
.ui.table th.ten.wide {
  width: 62.5%;
}
.ui.table td.eleven.wide,
.ui.table th.eleven.wide {
  width: 68.75%;
}
.ui.table td.twelve.wide,
.ui.table th.twelve.wide {
  width: 75%;
}
.ui.table td.thirteen.wide,
.ui.table th.thirteen.wide {
  width: 81.25%;
}
.ui.table td.fourteen.wide,
.ui.table th.fourteen.wide {
  width: 87.5%;
}
.ui.table td.fifteen.wide,
.ui.table th.fifteen.wide {
  width: 93.75%;
}
.ui.table td.sixteen.wide,
.ui.table th.sixteen.wide {
  width: 100%;
}
.ui.sortable.table thead th {
  cursor: pointer;
  white-space: nowrap;
  border-left: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
}
.ui.sortable.table thead th:first-child {
  border-left: none;
}
.ui.sortable.table thead th.sorted,
.ui.sortable.table thead th.sorted:hover {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ui.sortable.table thead th:after {
  display: none;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  content: '';
  height: 1em;
  width: auto;
  opacity: 0.8;
  margin: 0 0 0 0.5em;
  font-family: Icons;
}
.ui.sortable.table thead th.ascending:after {
  content: '\f0d8';
}
.ui.sortable.table thead th.descending:after {
  content: '\f0d7';
}
.ui.sortable.table th.disabled:hover {
  cursor: auto;
  color: rgba(40, 40, 40, 0.3);
}
.ui.sortable.table thead th:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
}
.ui.sortable.table thead th.sorted {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.95);
}
.ui.sortable.table thead th.sorted:after {
  display: inline-block;
}
.ui.sortable.table thead th.sorted:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.95);
}
.ui.inverted.sortable.table thead th.sorted {
  background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
  background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  color: #fff;
}
.ui.inverted.sortable.table thead th:hover {
  background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
  background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  color: #fff;
}
.ui.inverted.sortable.table thead th {
  border-left-color: transparent;
  border-right-color: transparent;
}
.ui.inverted.table {
  background: #333;
  color: rgba(255, 255, 255, 0.9);
  border: none;
}
.ui.inverted.table th {
  background-color: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.ui.inverted.table tr td {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.ui.inverted.table tr td.disabled,
.ui.inverted.table tr.disabled td,
.ui.inverted.table tr.disabled:hover td,
.ui.inverted.table tr:hover td.disabled {
  pointer-events: none;
  color: rgba(225, 225, 225, 0.3);
}
.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
.ui.inverted.definition.table thead:not(.full-width) th:first-child {
  background: #fff;
}
.ui.inverted.definition.table tr td:first-child {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}
.ui.collapsing.table {
  width: auto;
}
.ui.basic.table {
  background: 0 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui.basic.table tfoot,
.ui.basic.table thead {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui.basic.table th {
  background: 0 0;
  border-left: none;
}
.ui.basic.table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ui.basic.table td {
  background: 0 0;
}
.ui.basic.striped.table tbody tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.ui[class*="very basic"].table {
  border: none;
}
.ui[class*="very basic"].table:not(.sortable):not(.striped) td,
.ui[class*="very basic"].table:not(.sortable):not(.striped) th {
  padding: '';
}
.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,
.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child {
  padding-left: 0;
}
.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,
.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child {
  padding-right: 0;
}
.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
  padding-top: 0;
}
.ui.celled.table tr td,
.ui.celled.table tr th {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
}
.ui.celled.table tr td:first-child,
.ui.celled.table tr th:first-child {
  border-left: none;
}
.ui.padded.table th {
  padding-left: 1em;
  padding-right: 1em;
}
.ui.padded.table td,
.ui.padded.table th {
  padding: 1em 1em;
}
.ui[class*="very padded"].table th {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.ui[class*="very padded"].table td {
  padding: 1.5em 1.5em;
}
.ui.compact.table th {
  padding-left: 0.7em;
  padding-right: 0.7em;
}
.ui.compact.table td {
  padding: 0.5em 0.7em;
}
.ui[class*="very compact"].table th {
  padding-left: 0.6em;
  padding-right: 0.6em;
}
.ui[class*="very compact"].table td {
  padding: 0.4em 0.6em;
}
.ui.small.table {
  font-size: 0.9em;
}
.ui.table {
  font-size: 1em;
}
.ui.large.table {
  font-size: 1.1em;
}
/*# sourceMappingURL=main.css.map */