/*
  HTML5 Reset :: reset.css
  -------------------------------------------------------------------
  Подготовлен командой LiveHTML | by LiveHTML :: http://livehtml.ru
  -------------------------------------------------------------------
  Выражаем особую благодарность людям, чьи труды способствовали появлению данного ресета:
  We have learned much from/been inspired by/taken code where offered from:

  Eric Meyer          :: http://ericmeyer.com
  HTML5 Doctor        :: http://html5doctor.com
  and the HTML5 Boilerplate :: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Сбрасываем значения по умолчанию для элементов | Let's default this puppy out
-------------------------------------------------------------------------------*/
@import "../fonts/icomoon/style.css";
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
header,
section,
footer {
  clear: both;
}
/* Всегда показывать полосу прокрутки (чтобы сайт не прыгал, когда на других страницах нет данной полосы)
   force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}
/* Добавляем буллеты к UL и цифры к OL, т.к. в контенте могут использоваться стандартные списки
  we can use default ULs & OLs with bullets */
ul {
  list-style: outside disc;
  margin: 15px 0 15px 30px;
}
ol {
  list-style: outside decimal;
  margin: 15px 0 15px 30px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
td img {
  vertical-align: top;
}
/* Сбрасываем отступы у элементов форм
  Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
  outline: none;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input,
select {
  vertical-align: middle;
}
input[type=radio],
input[type=checkbox] {
  margin: 1px 4px 4px 0;
}
input[type=text],
input[type=password] {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}
/* Решение проблемы с обрезанием стилизованных кнопок в IE | make buttons play nice in IE */
button,
input[type=submit] {
  width: auto;
  overflow: visible;
}
.ie7 input[type=submit],
.ie7 input[type=reset],
.ie7 input[type=button] {
  filter: chroma(color=#000000);
}
/* Курсор-указатель на кликабельных элементах | hand cursor on clickable elements */
input[type=button],
input[type=submit],
button {
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
/* Стандартизируем моноширные элементы | standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: Circle, sans-serif;
}
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  color: #7d7d7d;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
/* Устанавливаем произвольный цвет для выделения (не забываем убрать тень для текста)
  Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
/* ::-moz-selection{ background:#fcd700; color:#fff; text-shadow:none; } */
/* ::selection { background:#fcd700; color:#fff; text-shadow:none; } */
/* Устанавливаем произвольный цвет подсветки ссылок на Apple устройствах: j.mp/webkit-tap-highlight-color */
/* a:link {-webkit-tap-highlight-color:#fcd700;} */
/* Правильный ресайз картинок в IE7
  scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* Сброс float блоков | let's clear some floats */
.clear {
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* Coded in LiveHTML :: http://livehtml.io */
.hack {
  color: red;
}
html {
  min-width: auto;
  width: auto;
  height: 100%;
}
body {
  font: normal normal 14px/1.5 Circle, arial, sans-serif;
  background: #ffffff;
  color: #111111;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 960px;
  min-height: initial;
}
body input,
body textarea,
body button {
  font-family: Circle, arial, sans-serif;
}
body *,
body *:before,
body *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.container {
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 1346px;
  height: auto;
}
@media (max-width: 1345px) {
  .container {
    padding: 0 20px;
    width: 960px;
    height: auto;
  }
}
.header {
  padding: 30px 0 60px;
  z-index: 2;
}
@media (max-width: 1345px) {
  .header {
    padding: 50px 0;
  }
}
.header--logo {
  text-decoration: none;
  color: #111111;
  background: url(../img/header--logo.svg) center center no-repeat;
  background-size: auto 100%;
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 174px;
  height: 47px;
}
@media (max-width: 1345px) {
  .header--logo {
    margin: -3px 0;
    width: 151px;
    height: 41px;
  }
}
.header--auth {
  border: 1px solid #238ce9;
  color: #238ce9;
  text-decoration: none;
  padding: 2px 21px 0;
  margin: -1px 0 0;
  display: block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 15px;
  line-height: 43px;
}
@media (max-width: 1345px) {
  .header--auth {
    margin: -3px 0;
    padding: 0 20px;
    font-size: 14px;
    line-height: 41px;
  }
}
.header--nav-list {
  list-style: none;
  margin: 0 0 0 120px;
  padding: 0;
}
@media (max-width: 1345px) {
  .header--nav-list {
    margin-left: 50px;
  }
}
.header--nav-item {
  margin-right: 57px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
@media (max-width: 1345px) {
  .header--nav-item {
    margin-right: 35px;
  }
}
.header--nav-sub {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  white-space: nowrap;
  z-index: 100;
  background: #ffffff;
  border: 1px solid #0875d6;
  position: absolute;
  top: 100%;
  right: auto;
  bottom: auto;
  left: 0px;
  display: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.header--nav-sub-i {
  font-size: 18px;
  line-height: 43px;
}
.header--nav-sub-i a {
  color: #111111;
  text-decoration: none;
  display: block;
  font-size: 14px;
}
.header--nav-sub-i a:hover {
  color: #238ce9;
}
.header--nav-link {
  text-decoration: none;
  color: #7d7d7d;
  margin: 2px 0 -2px;
  font-size: 17px;
  line-height: 44px;
  display: block;
}
@media (max-width: 1345px) {
  .header--nav-link {
    margin: 0;
    font-size: 14px;
    line-height: 35px;
  }
}
.header--nav-link-icon {
  color: #238ce9;
  margin: 16px 0 -16px 15px;
  transition: 200ms all ease;
  display: inline-block;
  vertical-align: top;
  font-size: 11px;
  line-height: 11px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 1345px) {
  .header--nav-link-icon {
    margin: 12px 0 -12px 10px;
  }
}
.header--nav-item:hover .header--nav-sub {
  display: block;
}
.header--nav-item:hover .header--nav-link {
  color: #111111;
}
.header--nav-item:hover .header--nav-link-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header--drop {
  border: 1px solid #238ce9;
  background: #ffffff;
  margin: 18px 0 0;
  z-index: 100;
  padding: 0 34px;
  position: absolute;
  top: 100%;
  right: 30px;
  bottom: auto;
  left: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 342px;
  height: auto;
  display: none;
}
.header--drop:before,
.header--drop:after {
  content: "";
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  display: block;
  width: 0;
  height: auto;
  position: absolute;
  top: -12px;
  right: 67px;
  bottom: auto;
  left: auto;
}
.header--drop:before {
  border-bottom: 12px solid #238ce9;
}
.header--drop:after {
  margin: 1px 0 0;
  border-bottom: 12px solid #ffffff;
}
@media (max-width: 1345px) {
  .header--drop {
    right: 20px;
  }
  .header--drop:before,
  .header--drop:after {
    right: 62px;
  }
}
.header--drop.nav {
  margin-top: 19px;
  right: 57px;
  padding: 0;
  width: 153px;
  width: auto;
  max-width: 70%;
  height: auto;
  
  word-break: break-word;
  word-wrap: break-word;
}
.header--drop.nav:before,
.header--drop.nav:after {
  right: 63px;
}
@media (max-width: 1345px) {
  .header--drop.nav {
    right: 20px;
  }
  .header--drop.nav:before,
  .header--drop.nav:after {
    right: 16px;
  }
}
.header--drop-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header--drop-list li {
  border-bottom: 1px solid #E8E8E8;
  display: block;
}
.header--drop-list li:last-of-type {
  border: none;
}
.header--drop-list li a {
  text-decoration: none;
  padding: 12px 10px 10px 16px;
  color: #4A4A4A;
  font-size: 14px;
  line-height: 20px;
  display: block;
}
.header--drop-list li a span {
  color: #ffffff;
  background: #F56F23;
  text-align: center;
  margin: -1px 0 0 12px;
  padding: 2px 0 0;
  display: inline-block;
  vertical-align: top;
  width: 21px;
  height: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 12px;
  line-height: 19px;
}
.header--drop-list li label {
  padding: 12px 10px 10px 16px;
  color: #C3C3C3;
  font-size: 14px;
  line-height: 20px;
  display: block;
}
.header--drop-box {
  display: none;
}
.header--drop-box.shown {
  display: block;
}
.header--drop-title {
  padding: 29px 0 24px;
  font-size: 24px;
  line-height: 27px;
}
.header--drop-title2 {
  padding: 18px 0 21px;
  font-size: 20px;
  line-height: 22px;
}
.header--drop-form input {
  border: 1px solid #CDCDCD;
  padding: 0 10px;
  margin: 0 0 11px;
  display: block;
  width: 100%;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 16px;
  line-height: 38px;
}
.header--drop-form button {
  margin: 24px 0 0;
  text-align: center;
  padding: 0;
  border: none;
  background: #238ce9;
  color: #ffffff;
  display: block;
  width: 100%;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 16px;
  line-height: 38px;
}
.header--drop-fields button {
  margin: 30px 0 38px;
  text-align: center;
  padding: 0;
  border: none;
  background: #238ce9;
  color: #ffffff;
  display: block;
  width: 100%;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 16px;
  line-height: 38px;
}
.header--drop-field {
  margin: 0 0 13px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.header--drop-field input {
  border: 1px solid #CDCDCD;
  padding: 0 10px 0 38px;
  display: block;
  width: 100%;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 38px;
}
.header--drop-field-icon {
  text-align: center;
  color: #D4D4D4;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 1px;
  width: 38px;
  height: auto;
  display: block;
  font-size: 16px;
  line-height: 40px;
}
.header--drop-field-icon.icon-mail {
  font-size: 12px;
  line-height: 40px;
}
.header--drop-center {
  text-align: center;
  padding: 18px 0 20px;
}
.header--drop-forgot {
  color: #9B9B9B;
  font-size: 16px;
  line-height: 20px;
}
.header--drop-forgot:hover {
  text-decoration: none;
}
.header--drop-signup {
  color: #238ce9;
  font-size: 16px;
  line-height: 20px;
}
.header--drop-signup:hover {
  text-decoration: none;
}
.header--drop-hr {
  background: #CDCDCD;
  width: auto;
  height: 1px;
}
.header--drop-back {
  color: #238ce9;
  font-size: 14px;
  line-height: 20px;
}
.header--drop-back:before {
  content: "";
  background: url(../img/virtual-box--head-back-icon.svg) no-repeat;
  background-size: 100% auto;
  margin: 5px 6px 0 0;
  display: inline-block;
  vertical-align: top;
  width: 12px;
  height: 10px;
}
.header--drop-back:hover {
  text-decoration: none;
}
.header--drop-back-box {
  padding: 23px 0 0;
}
.header--profile {
  border: 1px solid #9B9B9B;
  text-decoration: none;
  color: #9B9B9B;
  margin: -1px 73px 0 0;
  width: 60px;
  height: 30px;
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@media (max-width: 1345px) {
  .header--profile {
    margin: -6px 0;
  }
}
.header--profile.notify:before {
  content: "";
  background: #F56F23;
  border: 4px solid #ffffff;
  display: block;
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: auto;
  left: auto;
  width: 21px;
  height: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.header--profile i.icon-settings {
  font-size: 14px;
  line-height: 14px;
  display: block;
  position: absolute;
  top: 8px;
  right: auto;
  bottom: auto;
  left: 8px;
}
.header--profile i.icon-down {
  font-size: 6px;
  line-height: 6px;
  display: block;
  position: absolute;
  top: 13px;
  right: 10px;
  bottom: auto;
  left: auto;
}
.header--profile.active {
  border-color: #238ce9;
  color: #238ce9;
}
.header--profile.active:before {
  display: none !important;
}
.service--nav {
  width: 305px;
  height: auto;
}
@media (max-width: 1345px) {
  .service--nav {
    width: 215px;
    height: auto;
  }
}
.service--nav-list {
  list-style: none;
  margin: 0;
  padding: 63px 0 0;
}
@media (max-width: 1345px) {
  .service--nav-list {
    padding: 40px 0 0;
  }
}
.service--nav-item {
  margin: 0 0 38px;
  display: block;
}
@media (max-width: 1345px) {
  .service--nav-item {
    margin: 0 0 20px;
  }
}
.service--nav-item a {
  padding: 0 0 0 56px;
  text-decoration: none;
  color: #7d7d7d;
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  font-size: 20px;
  line-height: 30px;
  transition: .2s;
}
@media (max-width: 1345px) {
  .service--nav-item a {
    padding-left: 35px;
    font-size: 14px;
    line-height: 20px;
  }
}
.service--nav-item a i {
  background: url(../img/service--nav-item.png);
  display: block;
}
.service--nav-item a i.i1 {
  background-position: 0 0;
  position: absolute;
  top: -1px;
  right: auto;
  bottom: auto;
  left: 2px;
  width: 30px;
  height: 30px;
}
@media (max-width: 1345px) {
  .service--nav-item a i.i1 {
    background-position: 0 0;
  }
}
.service--nav-item a i.i2 {
  background-position: 0 -31px;
  position: absolute;
  top: 1px;
  right: auto;
  bottom: auto;
  left: 2px;
  width: 30px;
  height: 28px;
}
@media (max-width: 1345px) {
  .service--nav-item a i.i2 {
    background-position: 0 -20px;
  }
}
.service--nav-item a i.i3 {
  background-position: -3px -64px;
  position: absolute;
  top: 3px;
  right: auto;
  bottom: auto;
  left: 5px;
  width: 24px;
  height: 22px;
}
@media (max-width: 1345px) {
  .service--nav-item a i.i3 {
    background-position: 0 -40px;
  }
}
.service--nav-item a i.i4 {
  background-position: -3px -93px;
  position: absolute;
  top: 1px;
  right: auto;
  bottom: auto;
  left: 6px;
  width: 24px;
  height: 24px;
}
@media (max-width: 1345px) {
  .service--nav-item a i.i4 {
    background-position: 0 -60px;
  }
}
.service--nav-item a i.i5 {
  background-position: -3px -124px;
  position: absolute;
  top: 4px;
  right: auto;
  bottom: auto;
  left: 5px;
  width: 24px;
  height: 23px;
}
@media (max-width: 1345px) {
  .service--nav-item a i.i5 {
    background-position: 0 -80px;
  }
}
.service--nav-item a i.i6 {
  background-position: -5px -157px;
  position: absolute;
  top: 10px;
  right: auto;
  bottom: auto;
  left: 7px;
  width: 21px;
  height: 14px;
}
@media (max-width: 1345px) {
  .service--nav-item a i.i6 {
    background-position: 0 -100px;
  }
}
@media (max-width: 1345px) {
  .service--nav-item a i {
    background-size: 40px auto;
    width: 20px !important;
    height: 20px !important;
    position: absolute !important;
    top: -1px !important;
    right: auto !important;
    bottom: auto !important;
    left: 2px !important;
  }
}
.service--nav-item a span {
  color: #9B9B9B;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: auto;
  left: auto;
}
a,
.service--nav-item:hover a,
.service--nav-item.active a {
  color: #238ce9;
}
.service--nav-item:hover a i.i1,
.service--nav-item.active a i.i1 {
  background-position: -30px 0;
}
@media (max-width: 1345px) {
  .service--nav-item:hover a i.i1,
  .service--nav-item.active a i.i1 {
    background-position: -20px 0;
  }
}
.service--nav-item:hover a i.i2,
.service--nav-item.active a i.i2 {
  background-position: -30px -31px;
}
@media (max-width: 1345px) {
  .service--nav-item:hover a i.i2,
  .service--nav-item.active a i.i2 {
    background-position: -20px -20px;
  }
}
.service--nav-item:hover a i.i3,
.service--nav-item.active a i.i3 {
  background-position: -33px -64px;
}
@media (max-width: 1345px) {
  .service--nav-item:hover a i.i3,
  .service--nav-item.active a i.i3 {
    background-position: -20px -40px;
  }
}
.service--nav-item:hover a i.i4,
.service--nav-item.active a i.i4 {
  background-position: -33px -93px;
}
@media (max-width: 1345px) {
  .service--nav-item:hover a i.i4,
  .service--nav-item.active a i.i4 {
    background-position: -20px -60px;
  }
}
.service--nav-item:hover a i.i5,
.service--nav-item.active a i.i5 {
  background-position: -33px -124px;
}
@media (max-width: 1345px) {
  .service--nav-item:hover a i.i5,
  .service--nav-item.active a i.i5 {
    background-position: -20px -80px;
  }
}
.service--nav-item:hover a i.i6,
.service--nav-item.active a i.i6 {
  background-position: -35px -157px;
}
@media (max-width: 1345px) {
  .service--nav-item:hover a i.i6,
  .service--nav-item.active a i.i6 {
    background-position: -20px -100px;
  }
}
.service--box {
  width: 935px;
  height: auto;
}
@media (max-width: 1345px) {
  .service--box {
    padding: 0 0 50px;
    width: 656px;
    height: auto;
  }
}
.profile {
  border: 1px solid #CDCDCD;
  padding: 55px 0 60px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 1345px) {
  .profile {
    padding: 35px 0 0;
  }
}
.profile--item {
  padding: 0 0 0 126px;
  min-height: 40px; /* for posa icon*/
  
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  height: auto;
}
@media (max-width: 1345px) {
  .profile--item {
    padding: 0 10px 0 72px;
  }
}
.profile--item.half {
  margin: 0 0 75px;
  width: 49%;
  height: auto;
}
@media (max-width: 1345px) {
  .profile--item.half {
    margin: 0 0 40px;
    width: 50%;
    height: auto;
  }
}
.profile--item-icon.i1 {
  background: url(../img/profile--item-icon-i1.png) no-repeat;
  position: absolute;
  top: 5px;
  right: auto;
  bottom: auto;
  left: 54px;
  width: 49px;
  height: 49px;
}
@media (max-width: 1345px) {
  .profile--item-icon.i1 {
    width: 32px;
    height: 32px;
  }
}
.profile--item-icon.i2 {
  background: url(../img/profile--item-icon-i2.png) no-repeat;
  position: absolute;
  top: 5px;
  right: auto;
  bottom: auto;
  left: 54px;
  width: 46px;
  height: 49px;
}
@media (max-width: 1345px) {
  .profile--item-icon.i2 {
    width: 30px;
    height: 33px;
  }
}
.profile--item-icon.i3 {
  background: url(../img/profile--item-icon-i3.png) no-repeat;
  position: absolute;
  top: 2px;
  right: auto;
  bottom: auto;
  left: 58px;
  width: 42px;
  height: 49px;
}
@media (max-width: 1345px) {
  .profile--item-icon.i3 {
    width: 28px;
    height: 33px;
  }
}
@media (max-width: 1345px) {
  .profile--item-icon {
    background-size: 100% auto!important;
    position: absolute !important;
    top: 3px !important;
    right: auto !important;
    bottom: auto !important;
    left: 32px !important;
  }
}
.profile--item-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 27px;
}
@media (max-width: 1345px) {
  .profile--item-title {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 20px;
  }
}
.profile--item-text {
  font-size: 16px;
  line-height: 17px;
  
  margin: 7px 0;
}
@media (max-width: 1345px) {
  .profile--item-text {
    font-size: 12px;
    line-height: 14px;
  }
}
.profile--item-label {
  display: inline-block;
  padding-left: 6px;
  vertical-align: top;
  font-size: 12px;
}
.profile--item-input {
  border: 1px solid #CDCDCD;
  padding: 0 5px;
  margin: -3px 0 -7px;
  display: none;
  width: 200px;
  height: 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 12px;
  line-height: 15px;
}
.profile--item-text.edit .profile--item-label {
  display: none;
}
.profile--item-text.edit .profile--item-input {
  display: inline-block;
  vertical-align: top;
}
.profile--item-links {
  padding: 36px 0 0;
}
@media (max-width: 1345px) {
  .profile--item-links {
    padding: 25px 0 0;
  }
}
.profile--item-links a {
  color: #9B9B9B;
  margin: 0 34px 0 0;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 1345px) {
  .profile--item-links a {
    margin: 0 20px 0 0;
    font-size: 11px;
    line-height: 12px;
  }
}
.profile--item-edit {
  margin: 4px 0 -4px 11px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.profile--item-text.edit .profile--item-edit {
  display: none;
}
@media (max-width: 1345px) {
  .profile--item-edit {
    margin: 2px 0 0px 7px;
  }
}
.profile--item-edit i {
  background: url(../img/profile--item-edit.svg) center center no-repeat;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
}
.profile--item-table {
  margin: 49px 0 0;
  width: 590px;
  height: auto;
}
@media (max-width: 1345px) {
  .profile--item-table {
    margin: 40px 0 0;
    width: 450px;
    height: auto;
  }
}
.profile--item-table th {
  text-align: left;
  border-bottom: 1px solid #CDCDCD;
  padding: 0 0 11px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
@media (max-width: 1345px) {
  .profile--item-table th {
    padding: 0 0 8px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
  }
}
.profile--item-table th:nth-child(1) {
  width: 233px;
  height: auto;
}
@media (max-width: 1345px) {
  .profile--item-table th:nth-child(1) {
    width: 170px;
    height: auto;
    font-size: 14px;
  }
}
.profile--item-table th:nth-child(2) {
  width: 254px;
  height: auto;
}
@media (max-width: 1345px) {
  .profile--item-table th:nth-child(2) {
    width: 169px;
    height: auto;
   font-size: 14px;
  }
}
.profile--item-table th:nth-child(3) {
  width: 103px;
  height: auto;
}
@media (max-width: 1345px) {
  .profile--item-table th:nth-child(3) {
    width: 125px;
    height: auto;
    font-size: 14px;
  }
}
.profile--item-table td {
  border-bottom: 1px solid #CDCDCD;
  color: #9B9B9B;
  padding: 10px 0;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .profile--item-table td {
    padding: 6px 0;
    font-size: 12px;
    line-height: 12px;
  }
}
.profile--item-table tr:last-of-type td {
  border: none;
}
.notifications {
  padding: 0 0 40px 45px;
}
@media (max-width: 1345px) {
  .notifications {
    padding: 0;
  }
}
.notifications--title {
  padding: 13px 0 0 67px;
  font-size: 24px;
  line-height: 30px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
@media (max-width: 1345px) {
  .notifications--title {
    padding: 0 0 0 45px;
    font-size: 18px;
    line-height: 33px;
  }
}
.notifications--title-icon {
  background: url(../img/notifications--title-icon.png) no-repeat;
  position: absolute;
  top: 1px;
  right: auto;
  bottom: auto;
  left: -1px;
  display: block;
  width: 41px;
  height: 52px;
}
@media (max-width: 1345px) {
  .notifications--title-icon {
    background-size: 100% auto;
    width: 26px;
    height: 33px;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
}
.notifications--table {
  margin: 58px 0 0;
  width: 890px;
  height: auto;
}
@media (max-width: 1345px) {
  .notifications--table {
    margin: 40px 0 0;
    width: 650px;
    height: auto;
  }
}
.notifications--table th {
  text-align: left;
  border-bottom: 1px solid #CDCDCD;
  padding: 0 0 10px;
  font-size: 16px;
  line-height: 20px;
}
.notifications--table th:nth-child(1) {
  padding-left: 41px;
  width: 512px;
  height: auto;
}
@media (max-width: 1345px) {
  .notifications--table th:nth-child(1) {
    padding-left: 28px;
    width: 315px;
    height: auto;
  }
}
.notifications--table th:nth-child(2) {
  width: 378px;
  height: auto;
}
@media (max-width: 1345px) {
  .notifications--table th:nth-child(2) {
    width: 335px;
    height: auto;
  }
}
.notifications--table td {
  border-bottom: 1px solid #CDCDCD;
  padding: 17px 0 11px;
  vertical-align: middle;
  font-size: 13px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .notifications--table td {
    padding: 10px 0;
    font-size: 10px;
    line-height: 14px;
  }
}
.notifications--table td:nth-child(1) {
  padding-left: 41px;
}
@media (max-width: 1345px) {
  .notifications--table td:nth-child(1) {
    padding-left: 28px;
  }
}
.notifications--table td:nth-child(2) {
  color: #9B9B9B;
  padding-bottom: 17px;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .notifications--table td:nth-child(2) {
    padding: 10px 0;
    font-size: 12px;
    line-height: 14px;
  }
}
.notifications--table td span {
  margin: 0 0 1px;
  font-size: 16px;
  line-height: 20px;
  display: block;
}
@media (max-width: 1345px) {
  .notifications--table td span {
    margin: 0 0 2px;
    font-size: 12px;
    line-height: 14px;
  }
}
.notifications--table tr.active td {
  background: rgba(35, 140, 233, 0.04);
}
.notifications--table tr:last-of-type td {
  border: none;
}
.history {
  padding: 2px 0 40px 8px;
}
@media (max-width: 1345px) {
  .history {
    padding: 0;
  }
}
.history--download {
margin: 0px 0 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    border-radius: 60px;
    background: #238ce9;
    line-height: 40px;
    padding: 0 10px 0 10px;
    }
    
.history--item {
  border: 1px solid #CDCDCD;
  text-decoration: none;
  color: #9B9B9B;
  padding: 24px 23px 25px;
  margin: 0 0 10px;
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 16px;
}
.history--item-date {
  position: absolute;
  top: 25px;
  right: 32px;
  bottom: auto;
  left: auto;
  font-size: 14px;
  line-height: 20px;

  max-width: 100px;
  text-align: right;
}
.history--item-title {
  color: #111111;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 22px;
  display: block;
}
.history--item-price {
  color: #111111;
  font-weight: 500;
  margin: 0 0 10px;
  display: block;
}
.billing {
  margin: 0 -1px 0 0;
  padding: 61px 0 0 43px;
}
@media (max-width: 1345px) {
  .billing {
    margin: 0;
    padding: 0;
  }
}
.billing--columns {
  border: 1px solid #7d7d7d;
  margin: 0 0 45px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.billing--column {
  border-left: 1px solid #CDCDCD;
  width: 297px;
  height: 175px;
}
@media (max-width: 1345px) {
  .billing--column {
    width: 33.333333%;
    height: 170px;
  }
}
.billing--column.c1 {
  padding: 39px 0 0 50px;
  border: none;
}
@media (max-width: 1345px) {
  .billing--column.c1 {
    padding: 39px 0 0 30px;
  }
}
.billing--column.c2 {
  text-align: left;
  padding: 40px 0 0 30px;
}
@media (max-width: 1345px) {
  .billing--column.c2 {
    padding: 40px 30px 0;
  }
}
.billing--column.c3 {
  text-align: left;
  padding: 40px 30px 0 40px;
}
@media (max-width: 1345px) {
  .billing--column.c3 {
    padding: 40px 30px 0;
  }
}
.billing--c1-title {
  margin: 0px 0 20px;
  font-size: 16px;
  line-height: 20px;
}
.billing--c1-text {
  margin: 10px 0 10px;
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 1345px) {
  .billing--c1-text {
    font-size: 14px;
    line-height: 14px;
  }
}
.billing--c1-link {
  color: #238ce9;
  font-size: 14px;
 
}
.billing--c1-link:hover {
  text-decoration: none;
}
.billing--c2-title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
}
.billing--c2-price {
  font-size: 14px;
  line-height: 40px;
      color: #238ce9;
}
.billing--c2-price {
}
.billing--btn {
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #238ce9;
  //width: 240px;
  height: 60px;
  display: block;
  font-size: 16px;
  line-height: 60px;
  border-radius: 60px;
}
.billing-edit {
  margin: 0 0 0 57px;
  padding: 62px 0 0;
  width: 567px;
  height: auto;
}
@media (max-width: 1345px) {
  .billing-edit {
    margin: 0;
    padding: 0;
    width: 600px;
    height: auto;
  }
}
.billing-edit--title {
  text-transform: uppercase;
  color: #9B9B9B;
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 14px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.billing-edit--title:before {
  content: "";
  z-index: 1;
  background: #CDCDCD;
  display: block;
  width: auto;
  height: 1px;
  position: absolute;
  top: 6px;
  right: 0;
  bottom: auto;
  left: 0;
}
.billing-edit--title span {
  background: #ffffff;
  z-index: 2;
  padding: 0 4px 0 0;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.billing-edit--fields {
  margin: 0 -10px;
}
.billing-edit--fields + .billing-edit--title {
  margin: 26px 0 15px;
}
.billing-edit--field {
  padding: 0 10px 16px;
  width: 50%;
  height: auto;
}
.billing-edit--field input {
  border: 1px solid #CDCDCD;
  padding: 0 20px;
  display: block;
  width: 100%;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 40px;
}
.billing-edit--field input[disabled] {
  background: #F3F3F3;
}
.billing-edit--btn {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #238ce9;
  width: auto;
  height: 40px;
  display: block;
  font-size: 12px;
  line-height: 40px;
}
.virtual-boxes {
  padding: 34px 0 0;
}
@media (max-width: 1345px) {
  .virtual-boxes {
    padding-top: 38px
  }
}
.virtual-boxes--block1{
  margin-bottom: 15px;
}
.virtual-boxes--new {
  color: #238ce9;
  text-decoration: none;
  margin: 0 0 34px;
  padding: 0 0 0 24px;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.virtual-boxes--new:before,
.virtual-boxes--new:after {
  content: "";
  background: #238ce9;
  display: block;
}
.virtual-boxes--new:before {
  width: 14px;
  height: 1px;
  position: absolute;
  top: 9px;
  right: auto;
  bottom: auto;
  left: 1px;
}
.virtual-boxes--new:after {
  width: 1px;
  height: 14px;
  position: absolute;
  top: 3px;
  right: auto;
  bottom: auto;
  left: 8px;
}
.virtual-boxes--grid {
  margin: 0 -10px;
}
@media (max-width: 1345px) {
  .virtual-boxes--grid {
    margin: 0 -7px;
  }
}
.virtual-boxes--item {
  padding: 0 10px 20px;
  width: 50%;
  height: auto;
}
@media (max-width: 1345px) {
  .virtual-boxes--item {
    padding: 0 7px 14px;
  }
}
.virtual-boxes--item-in {
  padding: 20px 20px 10px;
  border: 1px solid #CDCDCD;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
@media (max-width: 1345px) {
  .virtual-boxes--item-in {
    padding: 20px 20px 10px;
  }
}
.virtual-boxes--item-check {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 24px;
  bottom: auto;
  left: auto;
}
@media (max-width: 1345px) {
  .virtual-boxes--item-check {
    position: absolute;
    top: 30px;
    right: 20px;
    bottom: auto;
    left: auto;
  }
}
.virtual-boxes--item-check span {
  background: #A1A1A1;
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 30px;
  height: 17px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.virtual-boxes--item-check span:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  top: 2px;
  right: auto;
  bottom: auto;
  left: 2px;
  width: 13px;
  height: 13px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.virtual-boxes--item-check input[type=checkbox] {
  display: none;
}
.virtual-boxes--item-check input[type=checkbox]:checked + span {
  background: #92D14D;
}
.virtual-boxes--item-check input[type=checkbox]:checked + span:before {
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: auto;
  left: auto;
}
.virtual-boxes--item-check-offset {
  width: 87%; /*тк справа posabs*/
}
.virtual-boxes--item-ip {
  min-height: 20px;
  overflow: hidden;
  /*width: 87%; /*тк справа posabs*/
  word-wrap: break-word;
  word-break: break-word;
  
  color: #9B9B9B;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .virtual-boxes--item-ip {
    font-size: 14px;
    line-height: 20px;
  }
}
.virtual-boxes--item-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 27px;
}
@media (max-width: 1345px) {
  .virtual-boxes--item-title {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 27px;
  }
}
.virtual-boxes--input {
  font-size: 14px;
  line-height: 20px;
  
  background: #fff;
}
.virtual-boxes--item-field {
  color: #9B9B9B;
  font-size: 14px;
  line-height: 20px;
  
  //padding: 0 0 13px;
  //height: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 1345px) {
  .virtual-boxes--item-field {
    //padding: 0 0 20px;
    font-size: 14px;
    line-height: 20px;
  }
}
.virtual-boxes--item-field .green {
  color: #76AD3A;
}
.virtual-boxes--item-field .red {
  color: #E83C3C;
}
.virtual-boxes--item-field .gray {
  color: #5a5a5a;
}
.virtual-boxes--item-field .small {
  font-size: 14px;
  line-height: 20px;
}
.virtual-boxes--item-more {
  border-top: 1px solid #CDCDCD;
  text-decoration: none;
  color: #238ce9;
  text-align: center;
  margin: 14px -20px 0;
  padding: 10px 0 0px;
  display: block;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .virtual-boxes--item-more {
    font-size: 14px;
    line-height: 20px;
  }
}
.virtual-box {
  margin: 0 0 50px;
  border: 1px solid #CDCDCD;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@media (max-width: 1345px) {
  .virtual-box {
    margin: 0;
  }
}
.virtual-box--head {
  border-bottom: 1px solid #CDCDCD;
  padding: 0 0 21px;
}
.virtual-box--head-back {
  text-decoration: none;
  color: #238ce9;
  margin: 30px 0 0 49px;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .virtual-box--head-back {
    margin: 30px 0 0 30px;
  }
}
.virtual-box--head-back-icon {
  background: url(../img/virtual-box--head-back-icon.svg) no-repeat;
  margin: 3px 6px 0 0;
  display: inline-block;
  vertical-align: top;
  width: 15px;
  height: 13px;
}
.virtual-box--head-info {
  margin: 28px 0 0 55px;
}
.virtual-box--head-info .virtual-boxes--item-title {
  margin top: -5px;
}
@media (max-width: 1345px) {
  .virtual-box--head-info {
    margin-left: 45px;
  }
}
.virtual-box--head-info2 {
  margin: 28px 0 0 57px;
  max-width: 40%;
}
.virtual-box--head-info2 .virtual-boxes--item-field {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .virtual-box--head-info2 {
    margin-left: 45px;
  }
}
.virtual-box--head-btns {
  margin: 34px 37px 0 0;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 1345px) {
  .virtual-box--head-btns {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    height: auto;
  }
}
.virtual-box--head-btn {
  border: 1px solid #9B9B9B;
  margin: 0 0 0 20px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  width: 46px;
  height: 41px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@media (max-width: 1345px) {
  .virtual-box--head-btn {
    margin: 0 10px;
  }
}
.virtual-box--head-btn i {
  margin: 11px 0 0;
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
}
.virtual-box--head-btn i.i1 {
  background: url(../img/virtual-box--head-btn-i1.svg) no-repeat;
  width: 17px;
  height: 18px;
}
.virtual-box--head-btn i.i2 {
  background: url(../img/virtual-box--head-btn-i2.svg) no-repeat;
  width: 18px;
  height: 18px;
}
.virtual-box--head-btn i.i3 {
  background: url(../img/virtual-box--head-btn-i3.svg) no-repeat;
  width: 18px;
  height: 18px;
}
.virtual-box--head-btn:hover,
.virtual-box--head-btn.active {
  border-color: #238ce9;
}
.virtual-box--head-btn:hover i.i1 {
  background-image: url(../img/virtual-box--head-btn-i1-h.svg);
}
.virtual-box--head-btn:hover i.i2 {
  background-image: url(../img/virtual-box--head-btn-i2-h.svg);
}
.virtual-box--head-btn:hover i.i3 {
  background-image: url(../img/virtual-box--head-btn-i3-h.svg);
}
.virtual-box--cfg {
  border-bottom: 1px solid #CDCDCD;
  padding: 32px 49px 36px;
}
.virtual-box--cfg .popups--btns {
  margin: 7px 0 0;
}
@media (max-width: 1345px) {
  .virtual-box--cfg {
    padding: 30px;
  }
}
.virtual-box--stats {
  border-bottom: 1px solid #CDCDCD;
  padding: 34px 49px 36px;
}
@media (max-width: 1345px) {
  .virtual-box--stats {
    padding: 30px;
  }
}
.virtual-box--stats-title {
  margin: 0 0 39px;
}
.virtual-box--stats-label {
  margin: 0 38px 0 0;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 1345px) {
  .virtual-box--stats-tabs {
    margin: 15px 0 0;
    width: 100%;
    height: auto;
  }
}
.virtual-box--stats-tab {
  text-decoration: none;
  border: 1px solid #CDCDCD;
  text-align: center;
  color: #9B9B9B;
  margin: 0 -1px 0 0;
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  font-size: 14px;
  line-height: 28px;
  width: 90px;
  height: 30px;
}
.virtual-box--stats-tab:first-of-type {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.virtual-box--stats-tab:last-of-type {
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.virtual-box--stats-tab.active {
  z-index: 2;
  color: #238ce9;
  border: 1px solid #238ce9;
  background: rgba(35, 140, 233, 0.1);
}
@media (max-width: 1345px) {
  .virtual-box--stats img {
    width: 100%;
    height: auto;
  }
}
.virtual-box--history {
  border-bottom: 1px solid #CDCDCD;
  padding: 35px 0 20px 49px;
}
@media (max-width: 1345px) {
  .virtual-box--history {
    padding: 30px;
  }
}
.virtual-box--history-title {
  margin: -5px 0 25px;
    font-size: 18px;
    line-height: 5px;
}
.virtual-box--history-table {
  margin: 0 0 13px;
  width: 100%;
  height: auto;
}
.virtual-box--history-table td {
    border-top: 1px solid #CDCDCD;
    padding: 15px 0;
    font-size: 14px;
    line-height: 10px;
}
.virtual-box--history-table td:nth-child(1) {
  width: 68%;
  height: auto;
}
.virtual-box--history-table td:nth-child(2) {
  color: #9B9B9B;
  width: 42%;
  height: auto;
}
.virtual-box--history a {
  color: #238ce9;
  font-size: 14px;
  line-height: 10px;
}
.virtual-box--firewall {
  padding: 35px 49px 36px;
}
@media (max-width: 1345px) {
  .virtual-box--firewall {
    padding: 30px;
  }
}
.virtual-box--firewall-title {
  margin: -20px 0 15px;
  font-size: 18px;
  line-height: 30px;
}
.virtual-box--firewall-label {
  margin-right: 55px;
  font-size: 14px;
  line-height: 15px;
}
.virtual-box--firewall-table {
  margin: 30px 0 20px;
  width: 886px;
  height: auto;
}
@media (max-width: 1345px) {
  .virtual-box--firewall-table {
    width: 100%;
    height: auto;
  }
}
.virtual-box--firewall-table th {
  text-align: left;
  border-bottom: 1px solid #CDCDCD;
  padding: 0 0 9px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.virtual-box--firewall-table th:nth-child(1) {
  width: 437px;
  height: auto;
}
.virtual-box--firewall-table th:nth-child(2) {
  width: 295px;
  height: auto;
}
@media (max-width: 1345px) {
  .virtual-box--firewall-table th {
    width: 50% !important;
    height: auto !important;
  }
}
.virtual-box--firewall-table td {
  border-bottom: 1px solid #CDCDCD;
  padding: 10px 0;
  width: 68%;
}
.virtual-box--firewall-table tr:last-of-type td {
  border: none;
}
.virtual-box--firewall a {
  color: #238ce9;
  font-size: 14px;
  line-height: 20px;
}
.app {
  padding-left: 40px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  font-size: 14px;
  line-height: 20px;
}
.app--icon {
  background: #D8D8D8;
  border: 1px solid #979797;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.radio {
  cursor: pointer;
  display: block;
}
.radio span {
  padding: 0 30px 0 30px;
  font-size: 14px;
  line-height: 15px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
}
.radio span:before {
  content: "";
  border: 2px solid #CDCDCD;
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.radio input[type="radio"] {
  display: none;
}
.radio input[type="radio"]:checked + span:before {
  background: #238ce9;
  border-color: #238ce9;
}
.radio input[type="radio"]:checked + span:after {
  content: "";
  border: 2px solid #ffffff;
  display: block;
  position: absolute;
  top: 2px;
  right: auto;
  bottom: auto;
  left: 2px;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.popups {
  background: rgba(0, 0, 0, 0.24);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.popups--item {
  background: #ffffff;
  border: 1px solid #CDCDCD;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.23);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.23);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: none;
  
  padding: 30px;
}
.popups--item.new {
  padding: 33px 49px 57px;
  width: 935px;
  height: auto;
}
@media (max-width: 1345px) {
  .popups--item.new {
    padding: 30px;
    width: 650px;
    height: auto;
  }
}
.popups--bigField {
  margin: 0 0 44px;
}
.popups--bigField label {
  margin: 0 0 3px;
  color: #9B9B9B;
  display: block;
  font-size: 18px;
  line-height: 20px;
}
.popups--bigField input {
  border: none;
  border-bottom: 1px solid #CDCDCD;
  display: block;
  font-size: 16px;
  width: 442px;
  height: auto;
}
.popups--radios {
  margin: 0 0 45px;
  width: 294px;
  height: auto;
}
.popups--radios-title {
  margin: 0 30px 20px;
  font-size: 16px;
  line-height: 20px;
}
.popups--title {
  font-size: 24px;
  line-height: 27px;
}
.popups--title-label {
  margin: 0 60px 0 0;
  font-size: 16px
}
.popups--title .radio {
  margin: 7px 0 0;
}
@media (max-width: 1345px) {
  .popups--title .radio {
    margin: 7px 0 3px;
  }
}
.popups--fields {
  margin: 0px -11px 0 0;
}
.popups--field {
  padding: 0 78px 0 0;
  margin: 0 0 23px;
  width: 440px;
  height: auto;
}
@media (min-width: 1346px) {
  .popups--field:nth-child(2n) {
    padding: 0;
    width: 406px;
    height: auto;
  }
  .popups--field:nth-child(2n) label.m {
    width: 228px;
    height: auto;
  }
}
@media (max-width: 1345px) {
  .popups--field {
    padding: 0 10px 0 0;
    margin: 0 0 15px;
    width: 100%;
    height: auto;
  }
}
.popups--field label {
  font-size: 16px;
  line-height: 28px;
  display: block;
}
.popups--field label.m {
  width: 185px;
  height: auto;
}
.popups--field label.s {
  font-size: 14px;
  line-height: 28px;
}
@media (max-width: 1345px) {
  .popups--field label.m {
    width: 480px;
    height: auto;
  }
}

.popups--field input {
  margin: 0 10px 0 0;
  border: 1px solid #CDCDCD;
  text-align: center;
  width: 64px;
  height: 28px;
  display: block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 26px;
}
.popups--field span.price {
  color: #238ce9;
  display: block;
  font-size: 14px;
  line-height: 28px;
}
.popups--btns {
  margin: 35px 0 0;
}
@media (max-width: 1345px) {
  .popups--btns {
    margin: 10px 0 0;
  }
}
.popups--btn {
  border: 1px solid #238ce9;
  text-decoration: none;
  color: #238ce9;
  text-align: center;
  width: 130px;
  height: 40px;
  display: block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 16px;
  line-height: 38px;
}
.popups--cancel {
  text-decoration: none;
  color: #CDCDCD;
  text-align: center;
  width: 170px;
  height: 40px;
  display: block;
  font-size: 16px;
  line-height: 40px;
}
.ports-page {
  border: 1px solid #CDCDCD;
  margin: 13px 0 0 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@media (max-width: 1345px) {
  .ports-page {
    margin: 0;
  }
}
.ports-page--table {
  width: 100%;
  height: auto;
}
.ports-page--table th {
  text-align: left;
  padding: 20px 0 20px;
  font-size: 16px;
  line-height: 0px;
  font-weight: 400;

}
.ports-page--table th:nth-child(1) {
  padding-left: 23px;
}
.ports-page--table td {
  border-top: 1px solid #CDCDCD;
  color: #4A4A4A;
  padding: 18px 0 16px;
  vertical-align: middle;
  line-height: 20px;
}
.ports-page--table td:nth-child(1) {
  padding-left: 23px;
  width: 192px;
  height: auto;
}
.ports-page--table td:nth-child(2) {
  width: 118px;
  height: auto;
}
.ports-page--table td:nth-child(3) {
  width: 169px;
  height: auto;
}
.ports-page--table td:nth-child(4) {
  width: 120px;
  height: auto;
}
.ports-page--table td:nth-child(5) {
  width: 190px;
  height: auto;
}
.ports-page--table td > span {
  color: #9B9B9B;
  margin: 0 0 8px;
  display: block;
  font-size: 14px;
  line-height: 10px;
}
.ports-page--box {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: inline-block;
  vertical-align: top;
}
.ports-page--change {
  color: #238ce9;
  font-size: 14px;
  line-height: 20px;
}
.ports-page--drop {
  border: 1px solid #238ce9;
  background: #ffffff;
  z-index: 100;
  padding: 10px 0 0;
  position: absolute;
  top: 38px;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 302px;
  height: auto;
  display: none;
}
.ports-page--drop:before,
.ports-page--drop:after {
  content: "";
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  margin: 0 0 0 -11px;
  display: block;
  width: 0;
  height: auto;
  position: absolute;
  top: -12px;
  right: auto;
  bottom: auto;
  left: 50%;
}
.ports-page--drop:before {
  border-bottom: 12px solid #238ce9;
}
.ports-page--drop:after {
  margin-top: 1px;
  border-bottom: 12px solid #ffffff;
}
.ports-page--drop-item {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.ports-page--drop-item span {
  color: #4A4A4A;
  padding: 12px 0 10px 67px;
  border-bottom: 1px solid #CDCDCD;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 20px;
}
.ports-page--drop-item span:before {
  content: "";
  border: 2px solid #D1D1D1;
  display: block;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  position: absolute;
  top: 24px;
  right: auto;
  bottom: auto;
  left: 27px;
}
.ports-page--drop-item span:after {
  content: "";
  background: #92D14D;
  display: none;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  position: absolute;
  top: 28px;
  right: auto;
  bottom: auto;
  left: 31px;
}
.ports-page--drop-item input {
  display: none;
}
.ports-page--drop-item input:checked + span:after {
  display: block;
}
.ports-page--drop-label {
  color: #9B9B9B;
  margin: 0 0 8px;
  display: block;
  font-size: 13px;
  line-height: 15px;
}
.ports-page--drop-add {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  height: 56px;
}
.ports-page--drop-add:before,
.ports-page--drop-add:after {
  content: "";
  background: #238ce9;
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ports-page--drop-add:before {
  width: 2px;
  height: 18px;
}
.ports-page--drop-add:after {
  width: 18px;
  height: 2px;
}
.additionals {
  border: 1px solid #CDCDCD;
  margin: 13px 0 50px 1px;
  padding: 0 73px 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@media (max-width: 1345px) {
  .additionals {
    margin: 0;
    padding: 0 35px 30px;
  }
}
.additionals--title {
  padding: 59px 0 50px;
}
@media (max-width: 1345px) {
  .additionals--title {
    padding: 40px 0;
  }
}
.additionals--label {
  font-size: 18px;
  line-height: 45px;
}
.additionals--fields {
  margin: 0 -80px 40px 0;
}
@media (max-width: 1345px) {
  .additionals--fields {
    margin: 0 -35px 15px 0;
  }
}
.additionals--fields .checkbox {
  margin: 0 0 20px;
}
.additionals--fields .checkbox:nth-child(3n+1) {
  width: 300px;
  height: auto;
}
.additionals--fields .checkbox:nth-child(3n+2) {
  width: 300px;
  height: auto;
}
.additionals--fields .checkbox:nth-child(3n) {
  width: 260px;
  height: auto;
}
@media (max-width: 1345px) {
  .additionals--fields .checkbox {
    margin: 0 0 20px;
    width: 50% !important;
    height: auto !important;
  }
}
.additionals--tools {
  border-top: 1px solid #B8B8B8;
}
.additionals--tools-label {
  color: #4A4A4A;
  padding: 29px 0;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .additionals--tools-label {
    padding: 23px 0 0;
  }
}
.additionals--tools-label span {
  color: #238ce9;
  margin: 0 0 0 28px;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 1345px) {
  .additionals--tools-label span {
    margin: 0 0 0 15px;
  }
}
.additionals--tools-btn {
  color: #ffffff;
  background: #238ce9;
  text-align: center;
  text-decoration: none;
  margin: 21px 0 0;
  width: 148px;
  height: 37px;
  display: block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 37px;
}
@media (max-width: 1345px) {
  .additionals--tools-btn {
    margin: 15px 0 0;
  }
}
.select {
  margin: 2px 0 0 31px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.select_in {
  background: #ffffff;
  color: #4A4A4A;
  cursor: pointer;
  border: 1px solid #979797;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 300px;
  height: 40px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.select i.icon-down {
  position: absolute;
  top: 17px;
  right: 15px;
  bottom: auto;
  left: auto;
  display: block;
  font-size: 7px;
  line-height: 7px;
}
.select_title {
  padding: 0 35px 0 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  font-size: 16px;
  line-height: 43px;
}
.select_list {
  margin: 5px 0 0 0;
  pading: 5px;
  overflow-y: auto;
  list-style: none;
  background: #ffffff;
  z-index: 1000;
  border: 1px solid #238ce9;
  position: absolute;
  top: 100%;
  right: auto;
  bottom: auto;
  left: auto;
  display: none;
  width: 100%;
  height: auto;
  max-width: initial;
  max-height: 200px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.select_list li {
  padding: 7px 30px 7px 12px;
  color: #4A4A4A;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid #CDCDCD;
  line-height: 30px;
}
.ports-page--search{
	border-bottom: 1px solid #CDCDCD;
}
.ports-page--search input[type="text"]:focus::-webkit-input-placeholder {color: transparent}
.ports-page--search input[type="text"]:focus::-moz-placeholder          {color: transparent}
.ports-page--search input[type="text"]:focus:-moz-placeholder           {color: transparent}
.ports-page--search input[type="text"]:focus:-ms-input-placeholder      {color: transparent}
.ports-page--search input[type="text"]{
	width:80%;
	margin-left:10%;
	height: 38px;
	border: solid #CDCDCD 1px;
	  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding-left: 10px;
	margin-bottom: 20px;
	margin-top:10px;
	font-size: 14px;
	border-color: #cdcdcd;
	
}
.select_list li:hover {
  background: #eee;
}
.checkbox {
  cursor: pointer;
  display: block;
}
.checkbox span {
  padding: 0 0 0 33px;
  color: #7b7b7b;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
}
.checkbox span:before {
  content: "";
  border: 1px solid #CDCDCD;
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"]:checked + span:before {
  background: #238ce9;
  border-color: #238ce9;
}
.checkbox input[type="checkbox"]:checked + span:after {
  color: #ffffff;
  text-align: center;
  padding: 2px 0 0;
  content: "\e900";
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  font-size: 9px;
  line-height: 16px;
  width: 18px;
  height: auto;
}
.detail-btn {
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #238ce9;
    width: 240px;
    height: 60px;
    display: block;
    font-size: 16px;
    line-height: 60px;
    border-radius: 60px;
}
.header {
	font-size: 16px !important;
}
.sub-header {
	font-size: 14px !important;
}
.intext{
	font-size: 12px !important;
	
}




/*SANZ16*/

.header--overlay {
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
}


.hide { display: none;}
.tac { text-align: center; }
.children_mga.children_mga >*{margin: auto;}

.taj, .taj_plus {
  text-align: justify;
}
.taj_plus:after {
    content: '';
    display: inline-block;
    width: 100%;
}


.service--box.right>* {
  display: none;
}
X.service--box.right>*:target {
  display: block; /*а вдруг flex или др?*/
}

.popups {
    z-index: 100; /*>= выпадашкам в .service.container*/
}

.common-input {
  margin: 0 10px 0 0;
  border: 1px solid #CDCDCD;
  text-align: center;
  height: 28px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 26px;
}
.billing-paying--block .common-input {
  
  display: block;
  width: 64px;
}



/*spinner start*/
.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
/*spinner end*/

.spinner_square {
  /*width: 40px;*/
  /*height: 40px;*/
  /*background-color: #333;*/
  /*margin: 100px auto;*/
  
  -webkit-animation: sk-rotateplane 2.4s infinite ease-in-out;
  animation: sk-rotateplane 2.4s infinite ease-in-out;
}


@keyframes sk-rotateplane {
  0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); } 
  25% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } 
  50% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
  75% { transform: perspective(120px) rotateX(-360deg) rotateY(-179.9deg); }
  100% { transform: perspective(120px) rotateX(-360deg) rotateY(-360deg); }
}

.label {
  //display: inline-block;
}


/*together*/
.profile--item-text.big .profile--item-label {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 20px;
}
.profile--item-text.big .profile--item-input {
  margin: 0;
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 20px;
}



.profile--item-input + .profile--item-input {
    margin-top: 6px;
}


.popups--field span.price {
  display: none;
}


.profile--save-btn{
  
  display: block;
  border-top: 1px solid #CDCDCD;
  padding: 10px 0 ;
  
  font-size: 16px;
  line-height: 20px;
  
  text-align: center;
  text-decoration: none;
  color: #238ce9;
}


.popups--field input {
  background-color: #f9f9f9;
}

.oval,
.billing-paying {
  border: 1px solid #CDCDCD;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.billing-paying {
  width: 300px;
}

.billing-paying .billing-paying--block{
  float: left;
  width: 50%;
  padding: 5px;
}


.billing--bilpay {
  margin-left: 15px;
}
.common--btn 
, .billing--btn2 {
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #238ce9;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 60px;
}
.common--btn.red { background-color: #f51f1a;}
.common--btn.green { background-color: #7fc742;}

.feedback .common--btn { width: 122px; }


.billing-ctr {
  min-width: 260px;
}

.history--item-date{
  top: 0;
  right: 0;
}
.history--item-date ,
.history--item {
  padding: 10px;
}


.profile textarea {
  width: 100%;
  height: 75px;
  font-size: 14px;
  border: 1px solid #ccc;
  display: block;
  margin: 10px 0;
  padding: 5px;
}

.profile-item {
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    border: 1px solid #CDCDCD;
}

.profile--item:not(.half) .profile-item select
,.profile--item:not(.half) .profile--item-text 
{
    display: inline-block;
    width: 50%;
}



.relogin {
  width: 342px;
}


.feedback--ctr {
  width: 306px;
}
.feedback--ctr .common-btn {
  width: 115px;
}
.feedback textarea {
  width: 100%;
  padding: 3px;
  font-size: 14px;
}



#thanks {
  width: 260px;
  height: 127px;
  border-radius: 3px;
}