/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.6.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2016 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  font-family: "Open Sans", Arial, sans-serif;
  text-align: left !important;
}
.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  /* top: 100%; */
  /* left: -9999px; */
  top: -999999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #346FFA;
  border-top: 0;
  background: #fff;
  /* box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); */

  max-height: 405px;
  overflow-y: auto;
}
.chosen-container.chosen-with-drop .chosen-drop {
  /* left: 0; */
  top: 100%;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 12px;
  height: 42px;
  line-height: 40px;

  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 7px;
  border: 1px solid #E8E8E8;

  background-clip: padding-box;
  box-shadow: none;
  color: #575757;
  text-decoration: none;
  white-space: nowrap;
}

.chosen-container-single:hover .chosen-single {
  border: 1px solid #CACACA;
}

.chosen-container-single .chosen-single > span {
  display: block;
  overflow: hidden;
  margin-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* color: #192c59; */
  color: #111155;
}
.chosen-container-single .chosen-default span {
  color: #828DA5 !important;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}


.chosen-noborder .chosen-single {
  border: none;
  padding: 0 0 0 10px;
  background: none;
}
.chosen-noborder .chosen-single span {
  margin-right: 30px;
}


.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('/assets/css/chosen/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 35px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('/assets/css/chosen/chosen-sprite.png') no-repeat -3px -23px;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #E8E8E8;
  background: url('/assets/css/chosen/chosen-sprite.png') no-repeat 100% -24px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 7px 7px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
/* проблема с фокусом на больших разрешениях переносит в начало таблицы
  position: absolute;
  left: -9999px;
*/
  display: none;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
/*
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
*/
  padding: 0;
  margin: 0;
  /* max-height: 400px; */
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0 !important;
  padding: 0px 10px;
  list-style: none;
  line-height: 40px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
  font-size: 15px;
  color: #575757;
}

.chosen-noborder .chosen-results li {
  padding: 6px 10px;
}


.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #E0EDFF;
  color: #000;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
/*
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
*/
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 5px !important;
  width: 100%;
  height: auto;
  min-height: 30px;
  border: 1px solid #CCC; /* #aaa */
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: none;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #E8E8E8;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('/assets/css/chosen/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #346FFA;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #346FFA;
  -moz-border-radius-bottomright: 0 !important;
  border-bottom-right-radius: 0 !important;
  -moz-border-radius-bottomleft: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom: none !important;
  background: #FFF;
  box-shadow: none;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -32px -23px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url('/assets/css/chosen/chosen-sprite.png') no-repeat -30px -20px;
  background: url('/assets/css/chosen/chosen-sprite.png') no-repeat -30px -20px;
  direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}


.chosen-container.error .chosen-single,
.chosen-container.error .chosen-drop {
  border-color: #F00;
}

/* @end */
/* @group Retina compatibility */
/*
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url('/assets/css/chosen/chosen-sprite@2x.png') !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
@font-face { font-family: 'Roboto'; src: url("/assets/fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Bold.woff") format("woff"); font-weight: bold; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url("/assets/fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Medium.woff") format("woff"); font-weight: 500; font-style: normal; font-display: swap;  }
@font-face { font-family: 'Roboto'; src: url("/assets/fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Regular.woff") format("woff"); font-weight: normal; font-style: normal; font-display: swap; }


html {
  font-size: 1rem;
}

body {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-y: scroll;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  /* background-color: #F8F8F8; */
  background-color: #EEE;
  color: #222;
}

body, html, .page-wrapper {
  height:      100%;
  min-height:  100%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  padding: 8px 0;
  margin: 0;
  line-height: 1.5;
}


h1, h3 {
  font-size: 20px;
  margin: 0 0 15px 0;
  padding: 0;
}

h1 strong,
h3 strong {
  font-size: 22px;
}


h2 {
  font-size: 18px;
  margin: 20px 0 10px 0;
  padding: 0;
}



.content h1 {
  font-size: 34px;
  color: #00233F;
  margin-top: 5px;
}

.content h2 {
  font-size: 22px;
  color: #333;
}

.page .content li {
  padding-bottom: 10px;
  line-height: 1.5;
  margin-left: 14px;
}


.section-title {
  color: #002D52;
  font-size: 24px;
  font-weight: bold;
}


.link,
a:link {
	color: #346FFA;
  outline: none;
	-webkit-transition-property: border, background, color;
	transition-property: border, background, color;
	-webkit-transition-duration: .05s;
	transition-duration: .05s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;

  cursor: pointer;
  text-decoration: underline;
}

a:visited {
  color: #346FFA;
}

.link:hover,
a:hover {
	/* color: #ED1C24; */
  outline: none;
  text-decoration: none;
}


.error {
  color: #C00;
  font-size: 18px;
  padding: 20px 0;
}


input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 1px solid #CCC;
  border-radius: 3px;
  padding: 6px 8px;
  line-height: 16px;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
}


/*
.ubcontent button,
.ubcontent .button {
  width: 100%;
  margin: 10px 0 0 0;
  border: none;
  text-align: center;
  padding: 18px 35px !important;
  margin: 10px 0 0 0;
  background: #2362CE;
  box-shadow: 0px 5px 8px rgba(201, 201, 201, 0.4);
  border-radius: 7px;
  height: auto !important;
  line-height: 1 !important;
  font-weight: bold;
  font-size: 18px;
  color: #FFF;
  text-transform: none;
  cursor: pointer;
}

.ubcontent button:hover,
.ubcontent .button:hover {
  box-shadow: none;
}
*/

/*
.button,
.button-primary {
  border-radius: 3px;
  color: #fff !important;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 0 6px !important;
  text-decoration: none !important;
  white-space: nowrap;
  text-transform: uppercase;
  vertical-align: middle;
  height: 32px;
  line-height: 32px;
}
*/

button,
.button,
.button-primary {
  display: inline-block;
  border: none;
  text-align: center;
  padding: 18px 25px !important;
  background: #2362CE;
  box-shadow: 0px 5px 8px rgba(201, 201, 201, 0.3);
  border-radius: 7px;
  height: auto !important;
  line-height: 1 !important;
  font-weight: bold;
  font-size: 18px;
  color: #FFF;
  text-transform: none;
  cursor: pointer;
}


button:hover,
.button:hover,
.button-primary:hover {
  background: #044DCC;
}

/*
.button-green {
  background: #7fb919;
  border: 1px solid #639809;
  box-shadow: 0 1px 0 rgba(176, 218, 104, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
}

.button-green:hover {
  box-shadow: none;
  background: #84BD21;
  border-color: #558404;
}


.button-blue,
.button-primary {
  background: #00a0d2;
  border: 1px solid #0073aa;
  box-shadow: 0 1px 0 rgba(120, 200, 230, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
}

.button-blue:hover,
.button-primary:hover {
  background: #089CDD;
  border: 1px solid #005588;
  box-shadow: none;
}
*/

.button-gray {
  background: #DDD !important;
  /* border: 1px solid #C5C5C5; */
  color: #555 !important;
  box-shadow: 0px 5px 8px rgba(201, 201, 201, 0.2);
}

.button-gray:hover {
  background: #D5D5D5 !important
}



/**
 * Checkbox
 */
.wmt-checkbox input[type="checkbox"] {
  display: none;
}

.wmt-checkbox {
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat 0 -160px;
	width: 25px;
	height: 25px;
	cursor: pointer;
	margin: 0 4px 0 0;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wmt-checkbox.checked {
  background-position: -80px -160px;
}
/*
.wmt-checkbox + span {
  line-height: 22px;
  vertical-align: top;
}
*/


select {
  height: 43px !important;
  line-height: 43px !important;
  padding-left: 9px !important;
  border: 1px solid #E8E8E8;
  vertical-align: middle;
  background: #FFF;
  border-radius: 7px;
}

/*
.chosen-container-single .chosen-single {
  height: 32px !important;
  line-height: 28px !important;
  padding-left: 9px !important;
}

.chosen-container-single .chosen-single div b {
  position: relative;
  top: 2px !important;
  right: 0px !important;
}
.chosen-container .chosen-results li {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  line-height: 24px !important;
}
*/


.chosen-with-image .chosen-single {
  padding-left: 0px;
}



.wmt-wrapper .hidden {
  display: none;
}

.invisible {
  left: -9999em;
  top: -9999em;
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.sep {
  font-size: 12px;
  color: #AAA;
  margin: 0 8px;
}


.modification-date {
  padding: 12px 0;
  text-align: right;
}

.modification-date time {
  font-style: italic;
}


/**
 * Таблицы
 */

.table {
  display: table;
}

.tr {
  display: table-row;
}

.td {
  display: table-cell;
}


.table-zebra th {
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  padding: 0 12px 8px 12px;
}

.table-zebra td {
  padding: 12px;
  font-size: 15px;
  border: none;
  cursor: default;
}

.table-zebra {
  border-collapse: separate;
  border-spacing: 0;
}


.table-zebra > thead > tr > th:first-child,
.table-zebra > tbody > tr > td:first-child {
  padding-left: 0;
}

.table-zebra > tbody > tr td{
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  border-right: none;
  border-left: none;
}

.table-zebra > tbody > tr:nth-child(2n) td{
  /* background: #EEE; */
  background: #FCFCFC;
  border-top: 1px solid #FCFCFC;
  border-bottom: 1px solid #FCFCFC;
}

.table-zebra > tbody > tr:hover td {
  /** background: #FCFCFC; */
  /* background: #FDF3F5; */
  border-top: 1px solid #CCC !important;
  border-bottom: 1px solid #CCC !important;
}



/**
 * Макет cтраницы
 */
.page-wrapper {
	width: 100%;
  background: url( '/assets/images/gradient2.webp' ) no-repeat;
  /* background-size: 100% 431px; */
  /* background-size: 100% 95px; */
  background-size: 100% 86px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.cabinet .page-wrapper,
.page-contacts .page-wrapper,11
.page-404 .page-wrapper {
  background-size: 100% 180px;
}

.page-columns {
  max-width: 1220px;
  width: 100%;
/* padding: 10px 40px 0 40px; */
  padding: 6px 40px 0 40px;
	margin: 0 auto 0 auto;
  box-sizing: border-box;
/*  min-height: 100%; */
  display: flex;
}


.main {
  box-sizing: border-box;
  min-height: 100%;
  /* max-width: 1000px; */
  width: 100%;
  /* padding: 14px 0 0 0; */
  padding: 3px 0 0 0;
}

footer {
  display: block;
  margin: 0 0 0 0;
  padding: 30px 30px 20px 30px;
  /*height: 180px; */
  position: relative;
/*  background: #FFF; */
}

.footer-content {
  display: table;
  margin: 0 auto;
	max-width: 1140px;
  width: 100%;
}

footer:after {
  content: "";
  background: url( '/assets/images/gradient2.webp' ) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 600px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
}

.cabinet footer:after,
.page-contacts footer:after {
  height: 270px;
}



/**
 * Топ меню
 */

.topline {
  padding: 0 10px;
  position: relative;
  z-index: 10;
}


.topline > img,
.topline > .logolink > img {
  width: 100px;
}


.topline > div {
  vertical-align: middle;
  white-space: nowrap;
  float: right;
}


.topmenu-content #balance {
  font-weight: normal;
  padding: 7px 13px 7px 13px;
  border: 1px solid #DAE1EA;
  border-radius: 7px;
  background: #FFF;
  vertical-align: top;
  box-sizing: border-box;
  display: inline-block;
  margin-right: 25px;
}

.u0 .cabinet-link,
.u0 .auth-button,
.u0 .topmenu-content #balance {
  margin-bottom: 12px;
}

.u0 .topmenu-content #balance {
  display: inline-block;
  height: 40px;
  padding: 9px 13px 0 13px;
  vertical-align: middle;
}

.u1 .topmenu-content #balance {
  cursor: pointer;
}

.u1 .topmenu-content #balance:hover {
  background: #F4FBFF;
}

.currency {
  font-weight: normal;
  color: #222;
  margin-left: 4px;
}


.username.cabinet-link {
  margin-bottom: 4px;
  text-decoration: none !important;
}


.cabinet-link,
.auth-button {
  height: 40px;
  line-height: 35px;
  font-style: normal;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #DAE1EA;
  box-sizing: border-box;
  border-radius: 7px;
  vertical-align: top;
  cursor: pointer;
}

.cabinet-link > span,
.auth-button > span {
  margin-left: 22px;
  padding-right: 22px;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: #346FFA;
  vertical-align: middle;
  position: relative;
  line-height: 1;
  left: 11px;
}

.cabinet-link > span:before,
.auth-button > span:before {
  content: "";
  position: absolute;
  background: url( '/assets/images/sprite.webp' ) no-repeat -110px 0;
  width: 17px;
  height: 16px;
  top: -1px;
  left: -22px;
}

.cabinet-link:hover,
.auth-button:hover {
  background: #2362CE;
  box-shadow: 0px 5px 8px rgba(201, 201, 201, 0.25);
}

.cabinet-link:hover > span,
.auth-button:hover > span {
  color: #FFF;
}

.cabinet-link:hover > span:before,
.auth-button:hover > span:before {
  background-position: -140px 0;
}

.u1 .cabinet-link {
  height: 56px;
  line-height: 56px;
}


/**
 * Mobile menu
 */
.mobile-menu-icon {
  display: none;
  background: url( '/assets/images/sprite.webp' ) no-repeat -240px 0;
  width: 42px;
  height: 30px;
  padding-left: 51px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
  position: relative;
  z-index: 100000;
  right: 70px;
  top: 18px;
}

.topmenu-content-wrapper {
  cursor: pointer;
  padding-top: 8px;
}

.topmenu-content {
  cursor: auto;
  /* padding-top: 18px; */
}


.topmenu-content > * {
  display: inline-block;
}

.u0 .topmenu-content.closed {
  padding-top: 5px;
}

.u1 .topmenu-content.closed {
  margin-top: -4px;
}

/*
.topmenu:hover .topmenu-content-wrapper {
  display: block;
}
*/



/**
 * Header
 */

/*
.header:before {
  content: "";
  background: url( '/assets/images/gradient.png' ) no-repeat;
  width: 1232px;
  height: 431px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
*/

.header {
/*  margin: 8px -8px 0 -8px; */
  margin: 8px 0 0 0;
  text-align: center;
  position: relative;
}

.header h1 {
  font-weight: bold;
  font-size: 36px;
  color: #00233F;
  padding: 45px 20px 0 20px;
  margin: 0;
}

/* .header h1 + div, */
.header h2 {
  font-size: 20px;
  font-weight: normal;
  color: #47657C;
  line-height: 26px;
  padding: 14px 15px 40px 15px;
  margin: 0;
}

/*
.header h1 + div .pro,
.header h1 .pro
*/
.pro {
  background: #FFDE69;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 5px;
  color: #000;
  line-height: 1.6;
}

.header h1 + div {
 /* padding: 14px 15px 40px 15px; */
 padding: 5px 15px 14px 15px;
 line-height: 1.3;
}


.voice-form h1 {
  padding: 0 0 0 0 !important;
}

.voice-form h1 + div {
  padding-left: 0;
  padding-right: 0;
}





/**
 * Описание страницы
 */

.content {
  /* border-radius: 20px; */
  border-radius: 4px;
  background: #FFF;
  margin: 11px 0 0 0;
  border-radius: 0 0 4px 4px;
  padding: 25px 0;
/*  margin: 50px 0 0 0; */
}

.content.index {
  margin-top: 0 !important;
  padding-top: 10px;
  /* margin-top: 25px !important; */
}

.u1 .topline  + .content,
.u1 .topline  + .content-wrapper {
  margin-top: 6px;
}


.page .page-columns {
  margin-left: auto;
  margin-right: auto;
}

.content > div {
  margin-top: 34px;
}

.content > .h1-wrapper,
.content > h1 {
  margin-top: 24px;
}

.content > * {
  padding-left: 45px;
  padding-right: 45px;
}

#textlist ~ .faq {
  margin-top: 15px !important;
}

#textlist {
  display: none;
}


.tglink .contact-telegram {
  position: relative;
  margin-left: 6px;
}

.tglink .contact-telegram:before {
  top: 2px;
}

.faq,
.page-description {
  margin-top: 0;
  line-height: 1.8;
  font-size: 16px;
}

.faq ul,
.page-description ul {
  padding-top: 10;
  margin: 0;
  padding-left: 12px;
}

.faq .section-title,
.page-description .section-title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}


.faq .question {
  font-size: 18px;
  font-weight: bold;
}

.faq .answer {
  margin-bottom: 12px;
}

/**
 * Ссылки Faq
 */

.faq-links > a {
  font-size: 16px;
  border: 1px solid #8FADD0;
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  color: #9EB9D9;
  margin-right: 20px;
  margin-top: 20px;
  white-space: nowrap;
  display: inline-block;
}

.faq-links > a:last-child {
  margin-right: 0;
}

.faq-links > a:hover {
  color: #002D52;
  background: #E0EDFF;
  border-color: #E0EDFF;
}


/**
 * Кнопки поделиться
 */

.share-section {
  margin: 50px 0 0 0;
  position: relative;
}

/*
.share-section:before {
  content: "";
  background: url( '/assets/images/gradient.png' ) no-repeat;
  width: 1232px;
  height: 431px;
  position: absolute;
  top: -255px;
  left: -8px;
  z-index: -1;
}
*/

.share-title {
  font-weight: bold;
  font-size: 24px;
  display: table;
  margin: 0 auto 0 auto;
  position: relative;
  padding-left: 24px;
}

.share-title:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat 0 0;
  width: 26px;
  height: 26px;
  left: -13px;
  top: 3px;
}

.share-section .ya-share2 {
  display: table;
  margin: 24px auto 0 auto;
}

.share-section .ya-share2__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-section .ya-share2__list > * {
  display: inline-block;
  width: 190px;
  height: 60px;
  background: #FFF;
  border: 1px solid #C2D5EC;
  border-width: 1px 0 1px 1px;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
}

.share-section .ya-share2__list > *:first-child {
  border-radius: 8px 0px 0px 8px;
}

.share-section .ya-share2__list > *:last-child {
  border-radius: 0px 8px 8px 0px;
  border-width: 1px;
}


.share-section .ya-share2__title {
  display: none;
}

.share-section .ya-share2__link {
  width: 100%;
  height: 100%;
  display: block;
}

.share-section .ya-share2__badge {
  overflow: visible !important;
}
.share-section .ya-share2__badge:after {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.share-section .ya-share2__item_service_vkontakte .ya-share2__badge {
  background: url( '/assets/images/sprite.webp' ) no-repeat 0 -40px;
  display: inline-block;
  width: 32px;
  height: 18px;
  margin-top: 21px;
  text-align: center;
}

.share-section .ya-share2__item_service_vkontakte:hover {
  background: radial-gradient(50% 132.5% at 50% 50%, #7DB6F7 0%, #4E7DB2 100%);
  box-shadow: 0px 14px 33px 1px #90BBEB;
  border: none;
}

.share-section .ya-share2__item_service_vkontakte:hover .ya-share2__badge {
  background-position: 0 -80px;
}


.share-section .ya-share2__item_service_facebook .ya-share2__badge {
  background: url( '/assets/images/sprite.webp' ) no-repeat -50px -40px;
  display: inline-block;
  width: 13px;
  height: 26px;
  margin-top: 17px;
  text-align: center;
}

.share-section .ya-share2__item_service_facebook:hover {
  background: radial-gradient(50% 150.83% at 50% 50%, #5D94F1 0%, #2362CE 100%);
  box-shadow: 0px 14px 33px 1px #81AFFF;
  border: none;
}

.share-section .ya-share2__item_service_facebook:hover .ya-share2__badge {
  background-position: -50px -80px;
}


.share-section .ya-share2__item_service_odnoklassniki .ya-share2__badge {
  background: url( '/assets/images/sprite.webp' ) no-repeat -80px -40px;
  display: inline-block;
  width: 19px;
  height: 31px;
  margin-top: 13px;
  text-align: center;
}

.share-section .ya-share2__item_service_odnoklassniki:hover {
  background: radial-gradient(50% 132.5% at 50% 50%, #FABE7D 0%, #E77D08 100%);
  box-shadow: 0px 14px 33px 1px rgba(231, 125, 8, 0.5);
  border: none;
}

.share-section .ya-share2__item_service_odnoklassniki:hover .ya-share2__badge {
  background-position: -80px -80px;
}


.share-section .ya-share2__item_service_telegram .ya-share2__badge {
  background: url( '/assets/images/sprite.webp' ) no-repeat -110px -40px;
  display: inline-block;
  width: 27px;
  height: 23px;
  margin-top: 19px;
  text-align: center;
  position: relative;
  padding-left: 32px;
  margin-left: -90px;
}

.share-section .ya-share2__item_service_telegram .ya-share2__badge:after {
  content: "@voiceBot";
  display: inline-block;
  color: #B9CFE9;
  font-size: 18px;
  font-weight: 900;
}

.share-section .ya-share2__item_service_telegram:hover {
  background: radial-gradient(50% 132.5% at 50% 50%, #81D4FC 0%, #2BA0D9 100%);
  box-shadow: 0px 14px 33px 1px rgba(43, 160, 217, 0.5);
  border: none;
}

.share-section .ya-share2__item_service_telegram:hover .ya-share2__badge {
  background-position: -110px -80px;
}

.share-section .ya-share2__item_service_telegram:hover .ya-share2__badge:after {
  color: #FFF;
}


.share-section .ya-share2__item_service_whatsapp .ya-share2__badge {
  background: url( '/assets/images/sprite.webp' ) no-repeat -150px -40px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-top: 18px;
  text-align: center;
  position: relative;
  padding-left: 32px;
  margin-left: -85px;
}

.share-section .ya-share2__item_service_whatsapp .ya-share2__badge:after {
  content: "@voicebot";
  display: inline-block;
  color: #B9CFE9;
  font-size: 18px;
  font-weight: 900;
}

.share-section .ya-share2__item_service_whatsapp:hover {
  background: radial-gradient(50% 132.5% at 50% 50%, #77F090 0%, #1AD03F 100%);
  box-shadow: 0px 14px 33px 1px rgba(26, 208, 63, 0.5);
  border: none;
}

.share-section .ya-share2__item_service_whatsapp:hover .ya-share2__badge {
  background-position: -150px -80px;
}

.share-section .ya-share2__item_service_whatsapp:hover .ya-share2__badge:after {
  color: #FFF;
}



.share-section .ya-share2__item_service_viber .ya-share2__badge {
  background: url( '/assets/images/sprite.webp' ) no-repeat -150px -40px;
  display: inline-block;
  width: 26px;
  height: 28px;
  margin-top: 17px;
  text-align: center;
  position: relative;
  padding-left: 32px;
  margin-left: -90px;
}

.share-section .ya-share2__item_service_viber .ya-share2__badge:after {
  content: "@voice_bot";
  display: inline-block;
  color: #B9CFE9;
  font-size: 18px;
  font-weight: 900;
}

.share-section .ya-share2__item_service_viber:hover {
  background: radial-gradient(50% 132.5% at 50% 50%, #BA70ED 0%, #7C4D9C 100%);
  box-shadow: 0px 14px 33px 1px rgba(124, 77, 156, 0.5);
  border: none;
}

.share-section .ya-share2__item_service_viber:hover .ya-share2__badge {
  background-position: -150px -80px;
}

.share-section .ya-share2__item_service_viber:hover .ya-share2__badge:after {
  color: #FFF;
}

.share-section .ya-share2__icon {
  background-image: none !important;
  display: none !important;
}

.share-section .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item {
  margin: 0 !important;
}



.share-index {
  padding-bottom: 20px;
}

.share-index .ya-share2__list > * {
  border: none !important;
  border-radius: 0 !important;
}

.share-index .ya-share2__list > *:hover {
  box-shadow: none !important;
  border-radius: 0 !important;
}

.share-index .share-title {
  font-size: 18px;
  line-height: 1.5;
}

.share-index .share-title:before {
  background: none !important;
}

.share-index .ya-share2 {
  margin-top: 12px;
}


/**
 * Футер
 */

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-content > * {
  display: inline-block;
  vertical-align: top;
  margin: 46px 50px 0 0;
}

.footer-content > *:last-child {
  margin-right: 0;
}

.footer-logo {
  margin-top: 20px;
}

.footer-logo div {
  font-size: 16px;
  line-height: 1.6;
  color: #B5B5B5;
  margin-top: 8px;
}

.footer-logo span {
  display: block;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  color: #002D52;
  margin-bottom: 6px;
}


.about-links {
  margin: 0;
  padding: 0;
  line-height: 2;
}

.about-links li {
  display: inline-block;
  margin-right: 60px;
}

.about-links li:last-child {
  margin-right: 0;
}

.about-links a {
  display: inline-block;
  color: #515151;
  text-decoration: none;
  font-size: 16px;
}

.about-links a:hover {
  color: #346FFA;
  text-decoration: underline;
}


.contact-links {
  line-height: 2;
}

.contact-links > a {
  text-decoration: none !important;
  position: relative;
  display: inline-block;
  font-size: 16px;
}

.contact-links > a:hover {
  text-decoration: underline !important;
}

.contact-telegram {
  padding-left: 28px;
}

.contact-telegram:before {
  content: "";
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -40px 0;
  width: 21px;
  height: 18px;
  position: absolute;
  top: 8px;
  left: 0;
}

.contact-email {
  padding-left: 29px;
}

.contact-email:before {
  content: "";
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -80px 0;
  width: 19px;
  height: 15px;
  position: absolute;
  top: 9px;
  left: 0;
}



/**
 * Блок ввода текста
 */

.vb-table {
  display: table;
  width: 100%;
}

.vb-table > * {
  display: table-cell;
}


.vb-left {
  padding-right: 25px;
}


.vb-right ul,
.vb-right li {
  list-style: none;
  padding: 0;
  margin: 0;
}


.vb-right b {
  font-weight: normal;
}

.vb-right .username {
  margin-bottom: 18px;
}

.vb-right .button {
  width: 100%;
}

.vb-content {
  display: table;
  width: 100%;
  margin-bottom: 8px !important;
}

.vb-content > li {
  display: tr
}

.vb-content > li > span {
   display: table-cell;
   padding-bottom: 12px;
}

.vb-symbols > li > span:first-child {
  width: 59px;
  min-width: 59px;
  height: 22px;
  white-space: nowrap;
}

.vb-content > li > span:last-child {
  padding-left: 12px;
}

.vb-right .vb-content > li > span:last-child {
  width: 100%;
  text-align: right;
}

.icon-voice-regular {
  background: url( "/assets/images/gender/male.png" ) no-repeat;
  width: 59px;
  height: 22px;
}

.icon-voice-pro {
  background: url( "/assets/images/gender/male-pro.png" ) no-repeat;
}

.icon-voice-free {
  background: url( "/assets/images/gender/male-free.png" ) no-repeat;
}

.vb-title {
  font-weight: bold;
  white-space: nowrap;
}

div.vb-title {
  padding-bottom: 12px;
}



@media screen and (max-width: 950px) {
/*
  .vb-table {
    display: flex;
    flex-direction: column-reverse;
  }
*/

  .vb-left {
    padding-right: 0;
  }

  .vb-right {
    text-align: left;
    background: #fafafa;
    padding: 12px;
    border: 1px solid #EEE;
    border-radius: 4px;
    margin: 40px auto 40px auto;
  }


  .vb-table,
  .vb-table > * {
    display: block;
  }

/*
  .vb-content,
  .vb-title {
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
*/

  .vb-content {
    margin-bottom: 3px !important;
  }

  .vb-content,
  .vb-title {
    width: 100%;
    max-width: 100%;
    margin-left: 12px !important;
    margin-right: 0 !important;
    text-align: left;
  }

  .vb-content > li {
    display: inline-block;
  }

  .vb-symbols > li {
    margin-right: 30px;
  }

  .vb-right .vb-content > li > span:last-child {
    text-align: left;
  }

  .icon-voice-regular {
    position: absolute;
  }

  .icon-voice-regular + span {
    padding-left: 32px !important;
  }
}

/*
@media screen and (max-width: 860px) {
  .vb-right {
    text-align: left;
  }

  .vb-content {
    margin-bottom: 3px !important;
  }

  .vb-content,
  .vb-title {
    width: 100%;
    max-width: 100%;
    margin-left: 12px !important;
    margin-right: 0 !important;
    text-align: left;
  }
}
*/


.voice-form {
  /* max-width: 1136px; */
  margin: 0 auto;
  padding: 10px 35px 10px 35px;
  margin-top: 12px;
  background: #FFFFFF;
  /* border-radius: 20px; */
  border-radius: 0 0 4px 4px;
}



.voice-options > *,
#dialog-voices > * > * {
  display: inline-block;
  margin-bottom: 18px;
  margin-right: 10px;
  vertical-align: top;
}


.voice-language .chosen-results li,
.voice-language .chosen-single span {
  background-repeat: no-repeat;
  padding-left: 53px !important;
  background-size: 29px 20px;
  background-position: 10px 11px;
}

.voice-image .chosen-results li,
.voice-image .chosen-single > span {
  background-repeat: no-repeat;
  background-size: 59px 22px;
  background-position: 10px 9px;
  padding-left: 41px !important;
}

.voice-image .chosen-single > span.v-male-free,
.voice-image .chosen-single > span.v-female-free,
.voice-image .chosen-results li.v-male-free,
.voice-image .chosen-results li.v-female-free {
  padding-left: 76px !important;
}

.voice-image .chosen-single > span.v-male-pro,
.voice-image .chosen-single > span.v-female-pro,
.voice-image .chosen-results li.v-male-pro,
.voice-image .chosen-results li.v-female-pro {
  padding-left: 76px !important;
}

.voice-image .chosen-single > span.v-male,
.voice-image .chosen-single > span.v-female,
.voice-image .chosen-results li.v-male,
.voice-image .chosen-results li.v-female {
  padding-left: 41px !important;
}

/* Make the image fit nicely to the left of the dropdown. */
.chosen-with-image .chosen-single {
  padding-left: 2px;
}
/*
.chosen-with-image .chosen-single span {
  background-position: left 2px;
}
*/

/* Let the "No results match" text fill the whole width. */
.chosen-with-image .chosen-results .no-results {
  padding-left: inherit;
}


.voice-form .chosen-results li {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.voice-options {
  position: relative;
}

.voice-form .chosen-drop {
  width: auto !important;
  min-width: 100%;
  max-width: 95vw;
  border-top: 1px solid #346FFA !important;
  /* border-radius: 7px 7px 7px 7px; */
}
/*
.voice-form .chosen-drop li {
  padding-right: 10px !important;
}
*/

.voice-form .chosen-with-drop .chosen-single {
  position: relative;
}

.voice-form .chosen-with-drop .chosen-single:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  background: #FFF;
  height: 2px;
  width: 100%;
  left: 0;
  z-index: 10000;
}


.chosen-container.voice-image .chosen-results {
  -moz-column-count: 3;
  -webkit-column-count: 3;
  -o-column-count: 3;
  column-count: 3;

  -moz-column-gap: 5px;
  -webkit-column-gap: 5px;
  -o-column-gap: 5px;
  column-gap: 5px;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.chosen-container .v-play {
  background: url( '/assets/images/sprite.webp' ) no-repeat -210px -260px;
  display: inline-block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 6px;
  right: 10px;
}

.chosen-container .v-pause {
  background: url( '/assets/images/sprite.webp' ) no-repeat -210px -330px;
  display: inline-block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 6px;
  right: 10px;
}

.chosen-results > li.v-sample {
  position: relative;
  padding-right: 32px;
  padding-right: 60px;
}

/*
 .chosen-results > li.v-sample.v-male-pro {
  padding-right: 40px;
}
*/



/*
.chosen-container.voice-image.chosen-with-drop .chosen-drop {

  left: -50%;
  transform: translate( -20%, 0 );
}
*/

/*
.voices-select {
  margin-right: 6px;
  margin-bottom: 18px;
}

.voices-select > * {
  display: inline-block;
  margin-right: 12px;
}


.voices-select ~ div > span {
  margin-right: 18px;
}

.voices-select ~ div > span > span:first-child {
  position: relative;
  top: -1px;
  margin-right: 6px;
  vertical-align: middle;
  color: #222;
}
*/

#voice-text {
  height: 260px;
  margin: 0 0 18px 0;
  padding: 25px;
  background: #FFFFFF;
  border: 1px solid #CAD9EB;
  border-radius: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.voice-form .ri-size-16 .voting-info,
.voice-form .ri-size-16 .rating-loading-text,
.voice-form .vn-wrapper {
  font-size: 19px;
  position: relative;
  top: -1px;
}



.voice-buttons {
  margin: 10px auto 0 auto;
  display: table;
}

#txt-to-voice {
  display: inline-block;
  width: 190px;
  height: 42px;
  line-height: 40px;
  text-align: center;
  background: #2362CE;
  box-shadow: 0px 5px 8px rgba(201, 201, 201, 0.25);
  border-radius: 7px;
  margin-right: 18px;
  cursor: pointer;
}


#txt-to-voice > span {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #FFF;
  vertical-align: middle;
  position: relative;
  line-height: 1;
  left: 15px;
}

#txt-to-voice > span:before {
  content: "";
  position: absolute;
  background: url( '/assets/images/sprite.webp' ) no-repeat -170px 0;
  width: 20px;
  height: 22px;
  top: -1px;
  left: -30px;
}

#txt-to-voice:hover {
  background: #2362CE;
  box-shadow: 0px 5px 8px rgba(201, 201, 201, 0.25);
}

#txt-to-voice:hover > span {
  color: #FFF;
  text-shadow: 0px 5px 4px #1C52AE;
}

#txt-to-voice:hover > span:before {
  background-position: -200px -0;
  width: 28px;
  height: 31px;
  margin-left: -4px;
}


.voice-buttons .buttons-right {
  float: right;
}

.voice-buttons .buttons-right > * {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

.voice-buttons .buttons-right > *:last-child {
  margin-right: 0;
}


#text-charsets {
  white-space: nowrap;
  text-align: right;
  color: #9EB9D9;
  font-size: 15px;
  font-weight: normal;
}

/*
#text-charsets span {
  display: inline-block;
  padding: 4px 6px;
  background: rgba(127, 185, 25, 0.9);
  border-radius: 4px;
  margin-left: 6px;
}
*/


/**
 * Редактирование параметров текста для озвучки
 */

.voice-tools {
  margin-bottom: 5px;
}

.voice-tools > * {
  display: inline-block;
  margin-right: 10px;
  background: #56AAEC;
  padding: 9px 11px;
  /*border: 1px solid #56AAEC;*/
  border-radius: 4px;
  color: #FFF;
  cursor: pointer;
  margin-bottom: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.voice-tools > *:hover {
  background-color: #215CFE;
}

#voice-pause {
  background: #56AAEC url( '/assets/images/tools/pause.png' ) no-repeat 8px 6px;
  padding-left: 36px;
}

#voice-pause:hover {
  background: #2362CE url( '/assets/images/tools/pause.png' ) no-repeat 8px 6px;
}

#voice-clear {
  background: #56AAEC url( '/assets/images/tools/clear.png' ) no-repeat 8px 6px;
  padding-left: 36px;
}

#voice-clear:hover {
  background: #2362CE url( '/assets/images/tools/clear.png' ) no-repeat 8px 6px;
}

#txtundo {
  background: #56AAEC url( '/assets/images/tools/undo.png' ) no-repeat 8px 5px;
  width: 40px;
}

#txtundo:hover {
  background: #2362CE url( '/assets/images/tools/undo.png' ) no-repeat 8px 5px;
}

#txtredo {
  background: #56AAEC url( '/assets/images/tools/redo.png' ) no-repeat 8px 7px;
  width: 40px;
}

#txtredo:hover {
  background: #2362CE url( '/assets/images/tools/redo.png' ) no-repeat 8px 7px;
}

#voice-prosody {
  background: #56AAEC url( '/assets/images/tools/prosody.png' ) no-repeat 8px 7px;
  padding-left: 36px;
}

#voice-prosody:hover {
  background: #2362CE url( '/assets/images/tools/prosody.png' ) no-repeat 8px 7px;
}

#voice-dialog {
  background: #56AAEC url( '/assets/images/tools/dialog.png' ) no-repeat 8px 7px;
  padding-left: 56px;
}

#voice-dialog:hover {
  background: #2362CE url( '/assets/images/tools/dialog.png' ) no-repeat 8px 7px;
}


#word-stress {
  position: relative;
  padding-left: 30px;
}

#word-stress i {
  font-size: 60px;
  position: absolute;
  top: -5px;
  left: -2px;
}



.dialog-options {
  border-top: 1px solid #E4F0FF;
  padding-top: 18px;
}

#dialog-voices > .dialog-options:last-child {
  border-bottom: 1px solid #E4F0FF;
  margin-bottom: 18px;
}


.dialog-options > * {
  display: inline-block;
  margin-right: 18px;
  margin-bottom: 18px;
  vertical-align: top;
}

.dialog-wrap {
  display: inline-block;
  height: 42px;
  line-height: 42px;
  background: #E8F5FD;
  padding: 0 12px;
  border-radius: 7px;
  color: #000;
  border: 1px solid #E8E8E8;
  cursor: pointer;
  margin-right: 15px;
}

dialog-wrap:hover {
  background: #D6EEFD;
}

.dialog-delete {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url( '/assets/images/sprite.webp' ) no-repeat -120px -160px;
  position: relative;
  top: 0;
  margin-right: 0 !important;
  cursor: pointer;
}

.dialog-wrap-delete {
  position: relative;
  top: -1px;
  white-space: nowrap;
  margin-right: 0;
  vertical-align: top;
}


#ssml-tags {
  padding: 0;
  margin: 10px 0 6px 0;
  list-style: none;
  display: none;
}

#ssml-tags > li {
  padding: 6px 10px;
  margin: 0 18px 18px 0;
  list-style: none;
  display: inline-block;
  border: 1px solid #CCC;
  border-radius: 2px;
  background: #EEE;
  cursor: pointer;
}


#ssml-tags > li:hover {
  background: #FAFAFA;
}


/**
 * Результаты озвучки
 */

/*
#audio-results {
  margin: 40px 0 20px 0;
}
*/

#audio-results {
  margin-top: 0;
  padding: 0;
}

#audio-results > * {
  border-bottom: 1px solid #CAD9EB;
  padding: 35px 0 35px 0;
}

#audio-results > *:last-child {
  border-bottom: none;
}


#audio-results .audio-wrapper .audio {
  padding: 0 45px;
}

/*
.audio-text .ubcontent {
  max-width: 700px;
  line-height: 1.5;
}
*/

.at-toggle {
  position: absolute;
  top: 11px;
  right: 0;
  background: #FFF;
  font-size: 14px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.at-toggle.opened  {
  display: block;
  text-align: right;
  position: static;
}

.audio-text-wrapper {
  width: calc( 100% - 300px );
  white-space: nowrap;
  overflow: hidden;
  text-align: right;
  position: relative;
}

.audio-text-wrapper.opened {
  order: 1;
  width: 100%;
  white-space: normal;
}

.audio-text-wrapper.opened .audio-text {
  width: 100% !important;
  margin: 12px 0 0 0 !important;
  position: static;
}


.audio-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  line-height: 1.5;
  position: relative;
  top: 10px;
  font-size: 14px;
}



@media screen and (max-width: 600px) {
  .at-toggle  {
    display: block;
    text-align: right;
    position: static;
  }

  .audio-text-wrapper {
    order: 1;
    width: 100%;
    white-space: normal;
  }

  .audio-text-wrapper .audio-text {
    width: 100% !important;
    margin: 12px 0 0 0 !important;
    position: static;
  }

}


.waveform-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.waveform  {
  display: inline-block;
  width: 100%;
}


.voice-info {
  text-align: center;
  margin-bottom: 15px;
}

.audio-main .voice-info {
  margin-right: 30px;
}

.voice-info > * {
  vertical-align: middle;
}

.voice-info img + span {
  font-weight: bold;
  font-size: 18px;
  margin-left: 12px;
}

/*
.play-button {
  border: 1px solid #CCC;
  border-radius: 100px;
  padding: 0;
  display: inline-block;
  text-align: center;
  margin-right: 16px;
  position: relative;
  top: -8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.play-button span {
  display: inline-block;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 0;
  position: absolute;
  top: 6px;
  left: 13px;

  border-color: transparent transparent transparent #202020;
  transition: 100ms all ease;
  cursor: pointer;


  border-style: solid;
  border-width: 12px 0 12px 16px;
}


.play-button:hover span {
  border-color: transparent transparent transparent #404040;
}

.play-button.paused span {
  border-style: double;
  height: 20px;
  border-width: 0px 0 0px 14px;
  top: 9px;
  left: 12px;
}
*/


.audio-tools {
/*
  position: relative;
  top: 5px;
*/
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.audio-tools:after {
  content:'';
  width:100%;
  order:0;
  display: inline-flex;
}

.audio-info > * {
  display: inline-block;
  vertical-align: middle;
}


.duration,
.duration-current {
  font-size: 15px;
  color: #9EB9D9;
  margin-top: 35px;
}

.audio-wrapper.active .duration,
.audio-wrapper.active .duration-current {
  color: #2362CE;
}


.audio-buttons {
  margin-top: 10px;
  padding-left: 5px;
}

.audio-buttons > * {
  margin-right: 12px;
}

.audio-buttons > *:last-child {
  margin-right: 0;
}

.sample-play,
.play-button {
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat 0 -330px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.play-button:hover {
  background-position: -70px -330px;
}

.sample-play,
.play-button.paused {
  background-position: 0 -260px;
}

.sample-play:hover,
.play-button.paused:hover {
  background-position: -70px -260px;
}


.audio-download,
.audio-delete {
  position: relative;
  display: inline-block;
  cursor: pointer;
}


.audio-main .play-button {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -5px;
}

.audio-main .waveform {
  width: calc( 100% - 70px ) !important;
}

.audio-download {
  padding-left: 30px;
}

.audio-delete {
  padding-left: 24px;
}

.audio-download:before {
  content: "";
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -250px -290px;
  width: 24px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 2px;
  opacity: 0.6;
  left: 0;
}


.audio-delete:before {
  content: "";
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -250px -320px;
  width: 24px;
  width: 24px;
  height: 20px;
  cursor: pointer;
  top: 0;
  opacity: 0.6;
  position: absolute;
  left: 0;
}


.audio-download:hover,
.audio-delete:hover {
  text-decoration: underline;
}

.audio-download:hover:before,
.audio-delete:hover:before {
  opacity: 1 !important;
}


.audio-info-top:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.audio-info-top {
  padding-left: 8px;
}

.audio-info-top > * {
  display: inline-block;
}

.audio-info-top .duration {
  float: right;
  margin-top: 2px;
}




.audio-share {
  position: relative;
  display: inline-block;
}

.audio-share-link {
  display: inline-block;
  position: relative;
  padding-left: 27px;
  cursor: pointer;
  top: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.audio-share-link:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url( '/assets/images/sprite.webp' ) no-repeat -250px -260px;
  cursor: pointer;
  position: absolute;
  opacity: 0.6;
  left: 0;
  top: 2px;
}

.audio-share-link:hover {
  text-decoration: underline;
}

.audio-share-link:hover:before {
  opacity: 1 !important;
}

.audio-share-window {
  display: none;
  position: absolute;
  background: #FEFEFE;
  /* border: 1px solid #CAD9EB; */
  box-shadow: 0px -1px 10px -1px #DDD;
  z-index: 10;
  top: -54px;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 5px;
}

.audio-share-window:after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -20px;
  border: 10px solid transparent;
  border-top: 10px solid #E5E5E5;
}

.audio-share-window * {
  display: inline-block;
}

.audio-share-buttons > * {
  cursor: pointer;
  text-decoration: none !important;
  margin: 0 10px;
  vertical-align: middle;
}

.share-vk {
  background: url( '/assets/images/sprite.webp' ) no-repeat -150px -120px;
  width: 30px;
  height: 20px;
}

.share-ok {
  background: url( '/assets/images/sprite.webp' ) no-repeat -190px -120px;
  width: 20px;
  height: 30px;
}

.share-tg {
  background: url( '/assets/images/sprite.webp' ) no-repeat -220px -120px;
  width: 30px;
  height: 25px;
}

.share-whatsapp {
  background: url( '/assets/images/sprite.webp' ) no-repeat -260px -120px;
  width: 24px;
  height: 24px;
}

.share-viber {
  background: url( '/assets/images/sprite.webp' ) no-repeat -150px -160px;
  width: 24px;
  height: 24px;
}

.share-copy {
  background: url( '/assets/images/sprite.webp' ) no-repeat -180px -160px;
  min-width: 18px;
  height: 21px;
}

.share-copy span {
  margin-left: 30px;
  display: none;
}


/*
.audio-download {
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat 0 -200px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  top: -3px;
}

.audio-download:hover {
  background-position: -60px -200px;
}

.audio-delete {
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -120px -200px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  top: -3px;
}

.audio-delete:hover {
  background-position: -180px -200px;
}
*/

/**
 * Категории звуков
 */

.categories-table > thead > tr > th:first-child {
  min-width: 250px !important;
}


.category-parent {
  font-weight: bold;
  font-size: 22px;
  text-decoration: none !important;
}


.category-parent:hover {
  text-decoration: underline !important;
}

.category-list {
  margin-top: 28px !important;
}


.category-list ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 0 0;

  -moz-column-count: 4;
  -webkit-column-count: 4;
  -o-column-count: 4;
  column-count: 4;

  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  -o-column-gap: 20px;
  column-gap: 20px;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.category-list li {
  padding: 0 0 12px 0;
  margin: 0 !important;
}

.category-list li:first-child {
  padding-top: 0;
}


/**
 * Примеры голосов
 */
/*
.sample-link {
  text-align: right;
  margin-right: 20px;
  margin-bottom: 12px;
  color: #000;
}
*/

.sample-voices-wrapper .section-title {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
}

.sample-voices {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 20px;
}

.sample-voices th {
  text-align: left;
  padding: 12px;
}

.sample-voices td:nth-child( 2 ) {
  white-space: nowrap;
  vertical-align: middle;
  width: 100%;
}


.sample-voices td:nth-child( 2 ) span {
  position: relative;
  top: -4px;
  left: 6px;
}

.sample-voices td:last-child {
  white-space: nowrap;
}

.sample-voices td {
  padding: 12px;
}

.sample-voices tr:nth-child( 2n ) td {
  background: #EFF3FE;
}

.sample-voices tr:hover td {
  background: #FCFCFC;
}

.sample-voices th:nth-child( 3 ),
.sample-voices th:nth-child( 4 ),
.sample-voices td:nth-child( 3 ),
.sample-voices td:nth-child( 4 ) {
  text-align: center;
}

.sample-voices td:last-child {
  width: 100%;
}


.voice-test {
  background: #BCDAFE;
  color: #222;
  font-weight: normal;
}

.voice-test:hover {
  background: #B5D5FF;
}




.voice-sample {
  position: fixed;
  bottom: 0;
  width: 640px;
  left: 50%;
  margin-left: -320px;
  background: #FFF;
  box-shadow: -2px 1px 17px 2px #DDD;
  border-radius: 10px 10px 0 0;
  padding: 20px 20px 15px 25px;
  z-index: 9999;
}

.voice-sample .duration,
.voice-sample .duration-current {
  margin-top: 10px;
}

.voice-sample .voice-info {
  margin-bottom: 20px;
  text-align: left;
}

.voice-sample .audio {
  padding: 0 !important;
}

.voice-sample .waveform {
  width: 500px;
  margin-left: 15px;
}

.voice-sample .play-button {
  margin-top: 5px;
  vertical-align: top;
}



/**
 * Примеры голосов на главной
 */

.voice-examples .waveform-wrapper {
  position: relative;
}

.voice-examples .voice-name {
  display: inline-block;
  position: relative;
  padding: 0 12px 0 20px;
  top: -30px;
}

.voice-examples .voice-name:hover {
  text-decoration: none !important;
}

.voice-examples .duration {
  display: inline-block;
  position: relative;
  top: -30px;
}

@media screen and (max-width: 640px) {
  .voice-examples .duration {
    right: -6px;
  }
}


/**
 * Звуки
 */

.page-sounds .content > ul {
  padding: 0;
}

.sounds ul {
  list-style: none;
  margin: 0;
}

.sounds .audio-wrapper {
  border-bottom: 1px solid #CAD9EB;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0;
}

.sounds .waveform-wrapper {
  padding: 12px 0;
}

.page-sounds-single .audio-wrapper {
  border-bottom: none;
}

.sounds h1 + .audio-wrapper {
  padding-top: 20px;
}

.sounds .audio-wrapper:last-child {
  border-bottom: none;
}

.sound .audio {
  padding: 0;
}

.sound .play-button {
  margin-top: 5px;
  vertical-align: top;
}
.sound .waveform {
  /* width: calc( 100% - 180px ); */
  width: calc( 100% - 76px );
  margin-left: 15px;
  display: inline-block;
}

.sound .duration,
.sound .duration-current {
  margin-top: 20px;
}

.sound .duration-current {
  margin-left: 13px;
}


.sound-info {
  margin-bottom: 22px;
  position: relative;
}

.sound-name {
  font-size: 18px;
  text-decoration: none;
}

.sounds .voice-name:hover {
  text-decoration: underline;
}

.sound-info .right {
  float: right;
  margin-top: -2px;
}

.sound-info .right > * {
  display: inline-block;
  margin-right: 16px;
  margin-top: 0 !important;
  vertical-align: bottom;
}

.sound-info .right > span {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #666;
  white-space: nowrap;
  min-height: 16px;
  padding-left: 24px;
  vertical-align: middle;
}

.sound-info .fsize:before {
  content: '';
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -220px -400px;
  width: 16px;
  height: 15px;
  position: absolute;
  left: 0;
}

.sound-info .bitrate:before {
  content: '';
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -250px -400px;
  width: 18px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 1px;
}

.sound-info .dcounter {
  padding-left: 26px;
}

.sound-info .dcounter:after {
  content: '';
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -280px -400px;
  width: 20px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 1px;
}

/*
.sound-info .right > span {
  font-size: 13px;
  font-weight: normal;
  color: #666;
  white-space: nowrap;
}

.sound-info .right > span b {
  color: #444;
}
*/

.sound-info .right > *:last-child {
  margin-right: 0;
}

.sound-info .right .ya-share2 {
  position: relative;
  top: 3px;
}




.page-sounds-single .sound-info .right {
  float: none;
}



.page-sounds-single .sounds h1 + .audio-wrapper {
  padding-top: 0;
}



.sound .audio-tools {
  margin-top: 4px;
}

.downloadlist {
  display: flex;
  justify-content: space-between;
  width: 72%;
}

.sound .audio-download {
  position: relative;
  margin-right: 12px;
}

.sound .audio-download:last-child {
  margin-right: 0;
}

.sound .audio-download:before {
  content: '';
  position: absolute;
  bottom: -9px;
  font-weight: bold;
  color: #1C6AC4;
  background: #F8FAFD;
  border: 1px solid #D9EAFA;
  font-size: 12px;
  padding: 9px 4px 3px 7px;
  line-height: 1;
  border-radius: 20px;
}

.sound .audio-download:hover:before {
  background: #FFF;
}

.sound .audio-download.mp3:before {
  content: 'mp3';
  left: 8px;
  padding-left: 4px;
}

.sound .audio-download.wav:before {
  content: 'wav';
  left: 10px;
}

.sound .audio-download.m4r:before {
  content: 'm4r';
  left: 10px;
}

.sound .audio-download.ogg:before {
  content: 'ogg';
  left: 10px;
}



/**
 * Поиск звуков
 */
.page-sounds-search h1 {
  margin-bottom: 0;
}

.found-categories {
  margin-top: 30px !important;
}

.found-categories a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  margin: 0 16px 16px 0;
  background: #F5F5F5;
  border: 1px solid #DDD;
  border-radius: 4px;
}

.found-categories a:hover {
  background: #F9F9F9;
  box-shadow: 0 0 8px #CCC;
}


/**
 * Звуки в две колонки
 */

.sounds-one-columns > * {
  border: none !important;
  width: 100% !important;
}

.sounds-two-columns {
  margin-top: 0 !important;
}

.sounds-two-columns > * {
  float: left;
  width: calc( 50% - 30px );
  /* height: 235px; */
  height: 259px;
  margin-right: 60px !important;
}

.sounds-two-columns > *:nth-child( 2n ) {
  margin-right: 0 !important;
}

.sounds-two-columns:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.sounds-two-columns .sound-info > a {
  white-space: nowrap;
  overflow: hidden;
  width: 96%;
  max-width: 900px;
  display: inline-block;
  text-overflow: ellipsis;
}


/**
 * Похожие звуки
 */
.related-sounds h2 {
  font-size: 30px;
  margin-bottom: 0;
  padding: 0 0 5px 0;
}

.related-sounds ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.related-sounds li {
  margin: 8px 0 !important;
  font-size: 19px;
}


/**
 * Похожие категории звуков
 */
.page-sounds-in-category .sounds {
  padding-bottom: 0;
}

.related-categories {
  margin-top: 20px;
  text-align: center;
}

.related-categories h2 {
  font-size: 30px;
  margin-bottom: 10px;
  padding: 0;
}

.related-categories ul {
  margin: 0 -30px 0 0;
  padding: 0 0 15px 0;
}

.related-categories ul:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.related-categories li {
  display: inline-block;
  padding: 0;
  width: 25%;
  text-align: center;
  vertical-align: top;
}

.related-categories a {
  display: block;
  margin: 10px 30px 0 0;
  text-decoration: none;
  font-weight: bold;
}

.related-categories a:hover {
  text-decoration: underline;
}

.related-categories img {
  width: 100%;
  border: 1px solid #053B79;
  border-radius: 4px;
  margin-bottom: 5px;
}

.related-categories a span {
  display: block;
  height: 42px;
}


/**
 * Рейтинг на странице звуков в категории
 */

.content.sounds .additional-description .rating-wrap {
  margin: 10px 0 0 auto;
}


/**
 * Breadcrumbs
 */
.breadcrumbs {
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: #444;
  font-size: 13px;
}

.breadcrumbs > *:after {
  content: ">";
  display: inline-block;
  margin: 0 4px 0 8px;
  color: #AAA;
}

.breadcrumbs > *:last-child:after {
  display: none;
}



/**
 * Unibox
 */
.ubcontent .ubtitle {
  font-size: 24px;
}

.ubcontent button,
.ubcontent .button {
  width: 100%;
  margin: 10px 0 0 0;
}


/**
 * Регистрация и авторизация через сервисы
 */

.service-auth {
  margin-top: 20px;
}

.service-auth > span {
  margin: 0 0 6px 0;
  font-size: 15px;
  display: block;
  color: #8593b2;
  text-align: center;
}

.service-auth ul {
  list-style: none;
/*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
*/
  padding: 0;
  display: table;
  margin: 0 auto;
  border-spacing: 12px;
}

.service-auth li {
  border-radius: 3px;
  /* width: calc(25% - 8px); */
  width: 54px;
  height: 54px;
  display: table-cell;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.service-auth li:hover {
  opacity: 0.9 !important;
}

.service-auth li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
}


.service-auth .google {
  background: #FFF;
  border: 1px solid #CCC;
}
.service-auth .google:before {
  background: url('/assets/images/sprite.webp') no-repeat 0 -120px;
  width: 29px;
  height: 29px;
  margin-top: -14px;
  margin-left: -14px;
}

.service-auth .google:hover {
  border-color: #4c86d3;
}


.service-auth .facebook {
  background: #4267B2;
}
.service-auth .facebook:before {
  background: url( '/assets/images/sprite.webp' ) no-repeat -40px -120px;
  width: 17px;
  height: 29px;
  margin-top: -14px;
  margin-left: -8px;
}

.service-auth .vk {
  background: #4A76A8;
}
.service-auth .vk:before {
  background: url( '/assets/images/sprite.webp' ) no-repeat -70px -120px;
  width: 37px;
  height: 22px;
  margin-top: -11px;
  margin-left: -19px;
}

.service-auth .yandex {
  background: #FF0000;
}
.service-auth .yandex:before {
  background: url( '/assets/images/sprite.webp' ) no-repeat -120px -120px;
  width: 15px;
  height: 29px;
  margin-top: -14px;
  margin-left: -8px;
}




/**
 * Формы регистрации и авторизации
 */

#window-signin .ubtitle,
#window-signup .ubtitle {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #002D52;
  margin-top: 10px;
  margin-bottom: 10px;
}

.signform > * {
  max-width: 320px;
}

.signform .form-result {
  border-radius: 7px;
  padding: 10px 14px !important;
}

.signform input[type="text"],
.signform input[type="email"],
.signform input[type="password"] {
  width: 100%;
  border: 1px solid #CAD9EB;
  box-sizing: border-box;
  border-radius: 7px;
  /* line-height: 55px; */
  padding: 17px 18px;
  color: #444;
  font-size: 16px;
  margin-bottom: 10px;
}



/**
 * Форма восставновления пароля
 */
#form-reset {
  padding-bottom: 0 !important;
}



/**
 * Форма авторизации
 */

.long-and-reset {
  margin: 12px 0;
}

.long-and-reset:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

#reset-password-link {
  float: right;
  font-size: 16px;
}


.long-session {
  font-size: 16px;
  float: left;
}

.long-session > * {
  vertical-align: middle;
}

.authreg {
  background: #FFFFFF;
  border: 1px solid #CAD9EB;
  box-sizing: border-box;
  border-radius: 7px;
  padding: 18px 35px !important;
  text-transform: none;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #9EB9D9;
}

/**
 * Форма регистрации
 */

body:after {
  left: -9999em;
  top: -9999em;
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  content:url('/background.php');
}



/**
 * Капча
 */

.td.captcha + .td {
  vertical-align: top;
}

.td.captcha + .td input {
  border-radius: 0 7px 7px 0;
}

.captcha-img {
  border-radius: 7px 0 0 7px;
  border: 1px solid #CCC;
  border-right: none;
  width: auto;
  max-width: 150px;
  height: 55px;
}

.reload {
  color: #4c86d3;
  text-decoration: underline;
  cursor: pointer;

  display: block;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.reload:hover {
  text-decoration: none;
}



/**
 * Результаты отправки формы
 */

.form-result-wrapper > .form-result:last-child {
  margin-bottom: 14px !important;
}

.form-result {
  display: table;
  list-style: none;
  font-size: 13px;
  line-height: 1.5;
  padding: 4px 6px;
  border-radius: 2px;
  margin: 0 !important;
  width: 100%;
}

.form-result > * {
  padding: 2px 0 !important;
  line-height: 1.4;
  text-align: left;
}

.form-result > *:first-child {
  padding-top: 0 !important;
}


.form-error {
  background: #FEE !important;
  border: 1px solid #F00;
  color: #F00 !important;
}

.form-success {
  background: #EFE !important;
  border: 1px solid #0C0;
  color: #080 !important;
}



/**
 * Пагинация
 */

.pagination {
  margin: 25px 0 30px 0;
  line-height: 1;
}

.pagination > * {
  display: inline-block;
}

.pagination .before {
  color: #212223;
  font-size: 14px;
  margin-right: 20px;
}

.pagination a,
.pagination .page-link {
  margin: 0 0 0 5px;
  color: #000000;
  font-size: 18px;
  padding: 10px;
  text-decoration: none;
  cursor: pointer;
}

.pagination a:hover,
.pagination .page-link:hover {
  background: #346FFA;
  color: #ffffff;
}

.pagination .page-current {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  background: #346FFA;
  margin: 0 !important;
  padding: 10px;
}


/**
 * Pagination

.pagination {
  margin: 12px 0 6px 0;
  line-height: 1;
}

.pagination span, .pagination a {
  margin: 0px 3px;
  font-size: 1.1em;
}

.pagination span {
  color: #000;
}
 */


/**
 * Тарифы
 */


.tarifflist  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tarifflist {
  padding-left: 30px;
  padding-right: 30px;
}

.tariff {
  width: 300px;
  padding: 0px;
  float: left;
  margin-right: 3px;
  border: #cdd2d8 1px solid;
  background: #fff;
  border-radius: 5px;
  box-shadow: #ececec 0px 1px 2px 1px;
  font-size: 14px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 20px;
  color: #333;
  cursor: pointer;
}

.tariff:last-child {
  margin-right: 0;
}

.tariff:hover {
  color: #000;
}

.tariff.independent {
  font-size: 26px;
  display: block;
  text-align: center;
  padding: 20px;
  min-height: 224px;
}

.tariff-name {
  font-weight: bold;
  font-size: 30px;
  background: #d4e7f7;
  display: block;
  text-align: center;
  padding: 10px;
}

.tariff-name .tariff-price-final {
  text-decoration: line-through;
  color: #b96a6a;
  font-weight: 500;
  font-size: 75%;
  display: none;
}

.tariff-info {
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.tariff-info > * {
  margin-bottom: 20px;
}

.price-info span {
  font-size: 18px;
}

.charsets-premuim-info b {
  font-size: 32px;
  font-weight: 400;
  display: block;
}

.charsets-info {
  font-size: 12px;
}

/*
.tariff-button {
  border: none;
  padding: 12px;
  margin: 10px 0 0 0;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  outline: none;
  background: #0091ef;
  width: 100%;
  cursor: pointer;
  text-align: center;
}

.tariff-button:hover {
  background-color: #40b4ff;
}
*/

.tariff .button {
  width: 100%;
  margin: 10px 0 0 0;
}


/**
 * Кабинет пользователя
 */

.cabinet {
  background: #FCFDFF;
}

.cabinet h1 {
  padding-top: 0 !important;
  padding-left: 30px;
  padding-right: 0 !important;
  color: #00345E;
  font-size: 34px;
  position: relative;
  top: -12px;
}

.cabinet .page-wrapper {
  padding-top: 0;
/*  background: none !important; */
}

.cabinet .header {
  display: flex;
/*
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
*/
  align-items: center;
  justify-content: space-between;
/*
  margin-left: 20px;
  margin-right: 20px;
*/
  padding-left: 10px;
  padding-right: 10px;
}

.cabinet .logolink {
  position: relative;
  top: -11px;
}

.cabinet .page-columns,
.cabinet .header,
.cabinet .footer-content,
.cabinet-data {
  max-width: 1156px !important;
}


.cabinet-data {
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  width: 100% !important;
}

.cabinet-data > * {
  padding: 0 30px;
}

#payments-history td,
#charges-history td {
  white-space: nowrap;
}

#payments-history table > tbody > tr > td:nth-child(4) {
  white-space: normal !important;
  min-width: 220px;
}

#charges-history table > tbody > tr > td:nth-child(2) {
  white-space: normal !important;
  min-width: 220px;
}

/*
.cabinet h1 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  line-height: 1;
}
*/
/*
.cabinet footer:after {
  background: none;
}

.cabinet .footer-content {
  max-width: 1200px;
}
*/
/*
.cabinet-data {
  max-width: 1200px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background: #fff;
  box-shadow: 0 0 10px 1px #D6E3FE;
}
*/


/** окно оплаты */
#payment-window .line {
  padding: 20px 0 5px 0;
}

#payment-window .line:first-child {
  padding-top: 0;
}

#payment-window .ubtitle {
  font-weight: bold;
}

#payment-window label {
  margin-bottom: 6px;
  display: block;
  font-weight: bold;
  color: #56546c;
}

#payment-window button {
  padding: 14px 20px !important;
}

#payment-window label + input[type="text"],
#payment-window label + input[type="email"] {
  width: 100%;
  border: 1px solid #CAD9EB;
  box-sizing: border-box;
  border-radius: 7px;
/*  padding: 17px 18px; */
  padding: 8px 10px;
  color: #444;
  font-size: 16px;
  margin-bottom: 5px;
}

#payment-window .note {
  font-size: 13px;
  color: #777;
  white-space: normal;
  max-width: 250px;
}


.tariff-payment-info p {
  padding: 0 0 0 0;
}

#payment-input {
  width: 140px !important;
  vertical-align: top;
  margin-top: 1px;
}

#payment-input + div {
  vertical-align: top;
  position: relative;
  top: -2px;
  font-size: 14px;
  margin-left: 10px;
  display: inline-block;
  color: #333;
  text-align: right;
}

#payment-window .ubcontent {
  padding-bottom: 10px 26px 22px 26px;
}

#payment-window select {
  height: 37px;
  line-height: 36px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  /* width: 250px; */
  width: 320px;
}

@media screen and (max-width: 420px) {
  #payment-window select {
    width: 220px;
  }

  #payment-window .note {
    width: 220px;
  }

  #payment-input {
    width: 100px !important;
  }
}

@media screen and (max-width: 350px) {
  #payment-window select {
    width: 200px;
  }

  #payment-window .note {
    width: 200px;
  }

  #payment-input {
    width: 70px !important;
  }
}

#payment-window .chosen-container,
#payment-window .chosen-container .chosen-results li {
  font-size: 14px;
}

#payment-window .chosen-container-single .chosen-single div {
  width: 25px;
}

#payment-window .chosen-container-single .chosen-single {
  height: 37px;
  line-height: 36px;
  padding-left: 6px;
  border-radius: 5px;
  border: 1px solid #CAD9EB;
}

#payment-window .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #346FFA;
}

#payment-window .chosen-container .chosen-results li  {
  padding: 6px 6px 6px 8px;
  line-height: 26px;
}

#payment-window .chosen-container-single .chosen-single div b {
  background-position: -5px -27px;
}

#payment-window .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -35px -27px;
}


.cabinet .section {
  margin-top: 40px;
}

.cabinet .section-title {
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
  margin-bottom: 16px;
}


.cabinet .pagination {
  font-size: 14px;
}

.userinfo {
  list-style: none;
  margin: 0;
}

.userinfo > li {
  margin: 10px 0;
}

.cabinet h1 a {
  float: right;
  font-weight: normal;
  font-size: 16px;
}


/**
 * Adaptive Table
 */

.adaptive-table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: auto;

  /* min-width: 100%; */
  width: 100%;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.adaptive-table-wrapper > table {
  margin: 0 !important;
}


.adaptive-table-wrapper.mobile {
  padding-bottom: 0;
  margin-bottom: 12px;
}

.adaptive-table-fixcolumns {
  display: table;
  width: 100%;
}

.adaptive-table-fixcolumns > * {
  display: table-cell;
  position: relative;
  vertical-align: top;
}

.adaptive-left-column {
  width: 1px;
  white-space: nowrap;
  z-index: 101;
}

.adaptive-left-column > table {
/*  border-right: 1px solid #ebedf1; */
  margin: 0 !important;
}

.adaptive-right-column {
  width: 100%;
}

.adaptive-right-content {
  z-index: 1;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.adaptive-right-content > table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.adaptive-right-content.mobile {
  padding-bottom: 0 !important;
  margin-bottom: 12px;
}


.adaptive-right-content .tdfix + td {
  border-left: none !important;
}

.adaptive-right-content {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: auto;

  margin-left: -1px;
}



/**
 * Бонус за рейтинг
 */
#window-rating-bonus .rating-wrap {
  float: none;
  margin-right: auto;
  padding-bottom: 18px;
}

#window-rating-bonus  .ubtitle {
  margin-bottom: 20px;
}

#rating-bonus-added {
  padding-top: 12px;
  color: #448819;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: -26px;
  display: none;
}


/**
 * Бонус за комментарии
 */



/**
 * Preloader
 */
#wmt-alert-overlay,
#wmt-confirm-overlay,
#wmt-preloader-overlay {
  display: none;
  position: fixed;
  overflow: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba( 255, 255, 255, 0.5 );
  z-index: 2147483647;
}

.preloader-wrapper {
  display: table;
  box-sizing: border-box;
	width: 180px;
  padding: 20px;
  text-align: center;
  position: absolute;
	top: 50%;
	left: 50%;
  margin-top: -70px;
  margin-left: -90px;
  border-radius: 4px;
  box-shadow: 0 0 20px #CCC;
  border: 1px solid #DDD;
  z-index: 100052;
  background: #FFF;
}

.wmt-preloader-text {
  font-size: 16px;
  color: #222;
  line-height: 1;
  padding-bottom: 10px;
  white-space: nowrap;
  line-height: 1.5;
}

#wmt-preloader-addtext {
  color: #B00;
  margin: 0 0 6px 0;
  text-align: center;
}

#wmt-preloader{
	width: 180px;
	height: 22px;
	position: relative;
  display: table;
  margin: 0 auto;
}


.visible6 {
	width: 180px !important;
}

.visible6 #wmt-preloader {
	width: 140px !important;
}

.visible6 #wmt-preloader-7,
.visible6 #wmt-preloader-8 {
  display: none;
}


.preloader-item {
	position:absolute;
	top:0;
	background-color:rgb(20,107,139);
	width:22px;
	height:22px;
	animation-name:bounce_wmt-preloader;
		-o-animation-name:bounce_wmt-preloader;
		-ms-animation-name:bounce_wmt-preloader;
		-webkit-animation-name:bounce_wmt-preloader;
		-moz-animation-name:bounce_wmt-preloader;
	animation-duration:1.5s;
		-o-animation-duration:1.5s;
		-ms-animation-duration:1.5s;
		-webkit-animation-duration:1.5s;
		-moz-animation-duration:1.5s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
	transform:scale(.3);
		-o-transform:scale(.3);
		-ms-transform:scale(.3);
		-webkit-transform:scale(.3);
		-moz-transform:scale(.3);
	border-radius:14px;
		-o-border-radius:14px;
		-ms-border-radius:14px;
		-webkit-border-radius:14px;
		-moz-border-radius:14px;
}

#wmt-preloader-1{
	left:0;
	animation-delay:0.6s;
		-o-animation-delay:0.6s;
		-ms-animation-delay:0.6s;
		-webkit-animation-delay:0.6s;
		-moz-animation-delay:0.6s;
}

#wmt-preloader-2{
	left:22px;
	animation-delay:0.75s;
		-o-animation-delay:0.75s;
		-ms-animation-delay:0.75s;
		-webkit-animation-delay:0.75s;
		-moz-animation-delay:0.75s;
}

#wmt-preloader-3{
	left:45px;
	animation-delay:0.9s;
		-o-animation-delay:0.9s;
		-ms-animation-delay:0.9s;
		-webkit-animation-delay:0.9s;
		-moz-animation-delay:0.9s;
}

#wmt-preloader-4{
	left:67px;
	animation-delay:1.05s;
		-o-animation-delay:1.05s;
		-ms-animation-delay:1.05s;
		-webkit-animation-delay:1.05s;
		-moz-animation-delay:1.05s;
}

#wmt-preloader-5{
	left:90px;
	animation-delay:1.2s;
		-o-animation-delay:1.2s;
		-ms-animation-delay:1.2s;
		-webkit-animation-delay:1.2s;
		-moz-animation-delay:1.2s;
}

#wmt-preloader-6{
	left:112px;
	animation-delay:1.35s;
		-o-animation-delay:1.35s;
		-ms-animation-delay:1.35s;
		-webkit-animation-delay:1.35s;
		-moz-animation-delay:1.35s;
}

#wmt-preloader-7{
	left:135px;
	animation-delay:1.5s;
		-o-animation-delay:1.5s;
		-ms-animation-delay:1.5s;
		-webkit-animation-delay:1.5s;
		-moz-animation-delay:1.5s;
}

#wmt-preloader-8{
	left:157px;
	animation-delay:1.64s;
		-o-animation-delay:1.64s;
		-ms-animation-delay:1.64s;
		-webkit-animation-delay:1.64s;
		-moz-animation-delay:1.64s;
}



@keyframes bounce_wmt-preloader{
	0%{
	transform:scale(1);
		background-color:rgb(20,107,139);
	}

	100%{
	transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-o-keyframes bounce_wmt-preloader{
	0%{
	-o-transform:scale(1);
		background-color:rgb(20,107,139);
	}

	100%{
	-o-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-ms-keyframes bounce_wmt-preloader{
	0%{
	-ms-transform:scale(1);
		background-color:rgb(20,107,139);
	}

	100%{
	-ms-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-webkit-keyframes bounce_wmt-preloader{
	0%{
	-webkit-transform:scale(1);
		background-color:rgb(20,107,139);
	}

	100%{
	-webkit-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}

@-moz-keyframes bounce_wmt-preloader{
	0%{
	-moz-transform:scale(1);
		background-color:rgb(20,107,139);
	}

	100%{
	-moz-transform:scale(.3);
		background-color:rgb(255,255,255);
	}
}



/**
 * Alert
 */

#wmt-confirm-overlay,
#wmt-alert-overlay {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: auto;
}

.wmt-confirm-wrapper,
.wmt-alert-wrapper {
  display: table;
  box-sizing: border-box;
	width: auto;
  padding: 20px;
  text-align: center;
  position: absolute;
   border-radius: 4px;
  box-shadow: 0 0 20px #CCC;
  border: 1px solid #DDD;
  z-index: 100052;
  background: #FFF;
  max-width: 400px;
}

#wmt-confirm-text,
#wmt-alert-text {
  font-size: 18px;
  color: #222;
  line-height: 1.5;
  padding-bottom: 10px;
}


#wmt-confirm-buttons > *,
#wmt-alert-button {
  margin-top: 20px;
  padding: 8px 10px !important;
  font-size: 14px;
}

#wmt-confirm-buttons > * {
  margin-left: 20px;
  margin-right: 20px;
}



/**
 * Окно с бонусами и призывами к регистрации
 */
.reginfo-title  {
  width: 400px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
}

.reginfo-message {
  text-align: center;
  font-size: 16px;
  padding-bottom: 15px;
  width: 400px;
  line-height: 1.5;
}


.reginfo-note {
  text-align: center;
  font-size: 16px;
  color: #555;
  padding-bottom: 20px;
}

.window-low-balance .low-balance-info {
  padding-bottom: 12px;
}

#check-telegram-registration {
  margin-top: 30px;
}



/*
#repost-buttons {
  list-style: none;
  padding: 0;
  display: table;
  margin: 20px auto 0 auto;
  border-spacing: 0;
}

#repost-buttons li {
  border-radius: 3px;
  /* width: calc(25% - 8px); * /
  width: 54px;
  height: 54px;
  display: table-cell;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

#share-vk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}


#repost-buttons li:first-child {
  position: relative;
  left: -20px;
}

#repost-buttons li:last-child {
  position: relative;
  right: -20px;
}


#repost-buttons li:hover {
  opacity: 0.9 !important;
}

#repost-buttons li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
}

#repost-buttons .facebook {
  background: #4267B2;
}
#repost-buttons .facebook:before {
  background: url( '/assets/images/sprite.webp' ) no-repeat -40px -120px;
  width: 17px;
  height: 29px;
  margin-top: -14px;
  margin-left: -8px;
}

#repost-buttons .vk {
  background: #4A76A8;
}
#repost-buttons .vk:before{
  background: url( '/assets/images/sprite.webp' ) no-repeat -70px -120px;
  width: 37px;
  height: 22px;
  margin-top: -11px;
  margin-left: -19px;
}
*/

#repost-buttons {
  list-style: none;
  padding: 0 4px 0 0;
  display: block;
  border-spacing: 0;
}


#repost-buttons li {
  width: 100%;
  height: 54px;
  display: block;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  position: relative;
  white-space: nowrap;
}


#repost-buttons li:first-child {
  margin-bottom: 20px;
}


#repost-buttons li > * {
  display: inline-block;
  vertical-align: top;
}

#repost-buttons i {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 50px;
  border-radius: 3px;
}


#repost-buttons i:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
}

#repost-buttons .facebook i {
  background: #4267B2;
}
#repost-buttons .facebook i:before {
  background: url( '/assets/images/sprite.webp' ) no-repeat -40px -120px;
  width: 17px;
  height: 29px;
  margin-top: -14px;
  margin-left: -8px;
}

#repost-buttons .vk i {
  background: #4A76A8;
}
#repost-buttons .vk i:before{
  background: url( '/assets/images/sprite.webp' ) no-repeat -70px -120px;
  width: 37px;
  height: 22px;
  margin-top: -11px;
  margin-left: -19px;
}


#repost-buttons input[type="text"] {
  height: 50px;
  font-size: 18px;
  width: calc( 100% - 83px );
  border-left: none;
  border-radius: 0 4px 4px 0 !important;
  margin-left: -1px;
}

#repost-buttons input[type="text"]:focus {
  /* border: none; */
  box-shadow: none;
  outline: none;
}


#repost-buttons span {
  position: relative;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  width: 55px;
  height: 50px;
  cursor: pointer;
}

#repost-buttons span:before {
  display: inline-block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  width: 33px;
  height: 32px;
  background: url( '/assets/images/sprite.webp' ) no-repeat -210px -160px;
}

/*
#repost-buttons span {
  background: url( '/assets/images/tick.png' ) no-repeat;
  width: 21px;
  height: 15px;
  display: inline-block;
}
*/

/**
 * Дополнительное описание
 */
.additional-description {
  margin-top: 10px !important;
}

.additional-description ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.additional-description li {
  margin-left: 0 !important;
}

.additional-description ul span {
  font-weight: bold;
}

.additional-description p {
  padding: 4px 0;
}


/**
 * Выбор языка
 */
.cabinet-link,
.authlink {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

#language-select {
  display: inline-block;
  position: relative;
  margin: 0 -12px 12px 0;
  vertical-align: top;
/*
  vertical-align: middle;
  top: 0px;
*/
}

#current-language {
  border: 1px solid #DAE1EA;
  border-radius: 7px;
  background: #FFF;
  padding: 8px 13px 0 13px;
  height: 40px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
  cursor: pointer;
/*
  position: relative;
  top: 7px;
*/
}

#current-language:hover {
  background: #F4FBFF;
}

.u1 #language-select {
  vertical-align: top;
  margin-top: 0;
}

.u1 #current-language {
  height: 56px;
  line-height: 35px;
}

.u1 #current-language > * {
  vertical-align: middle;
}


#language-links {
  position: absolute;
  z-index: 5;
  background: #FFF;

  text-align: left;

  padding: 8px 14px 10px 14px;
  border-radius: 7px;
  border: 1px solid #DAE1EA;

  box-shadow: 0 4px 12px rgba(201, 201, 201, 0.25);

  -moz-column-count: 3;
  -webkit-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
  margin-left: -305px;
  margin-top: 20px;

  width: auto !important;
  height: auto !important;
}


.u0 #language-links {
  margin-left: -305px;
}


#language-select img {
  width: 30px;
  height: 21px;
  vertical-align: middle;
  margin-right: 6px;
  cursor: pointer;
}


#language-select a,
#language-links > span {
  display: inline-block;
  padding: 12px 8;
  margin: 4px 0;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: top !important;
  height: 25px;
}

#language-select a:hover {
  text-decoration: underline;
}


#language-select span,
#language-select b {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: 1px;
}

#language-links b {
  text-decoration: underline;
  font-weight: normal;
  cursor: pointer;
}



/**
 * Адаптивный дизайн
 */


@media screen and (max-width: 1220px) {
  body:not(.with-sidebar) .page-columns {
    padding-left: 0;
    padding-right: 0;
  }

  body:not(.with-sidebar) #language-select {
    margin-right: 6px;
  }
}



@media screen and (max-width: 1180px) {
/*
  .page-columns {
    padding-bottom: 60px;
  }
*/
/*
  .voice-form {
    margin: 0 20px;
  }
*/

  /** Кнопки поделиться */

  .share-section .ya-share2__list > * {
    width: 160px;
  }

  /** Футер */

  footer {
    height: auto;
  }

  .page-contacts footer:after,
  .page-404 footer:after {
    height: 600px;
  }

  /**
   * Категории звуков
   */
  .category-list ul {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
  }
}


@media screen and (max-width: 1000px) {

  /** Хеадер */

  .header h1 {
    padding-top: 35px;
  }


  /**
   * Звуки
   */
  .sound-info .sound-name {
    margin-bottom: 0;
  }

  .sound-info .right {
    float: none;
    display: block;
    margin-top: 6px;
  }


  /** Кнопки поделиться */

  .share-section .ya-share2 {
    width: 91%;
  }

  .share-section .ya-share2__list {
    width: 100%;
  }

  .share-section .ya-share2__list > * {
    width: 33.33%;
  }

  .share-section .ya-share2__list > :first-child {
    border-radius: 8px 0px 0px 0;
  }

  .share-section .ya-share2__list > :last-child {
    border-radius: 0px 0 8px 0px;
  }

  .share-section .ya-share2__list > :first-child,
  .share-section .ya-share2__list > :nth-child(2),
  .share-section .ya-share2__list > :nth-child(3) {
    border-bottom: none;
  }

  .share-section .ya-share2__list > :nth-child(3) {
    border-right: 1px solid #C2D5EC;
    border-radius: 0px 8px 0 0px;
  }

  .share-section .ya-share2__list > :nth-child(4) {
    border-radius: 0 0px 0 8px;
  }


  /** Футер */

  .about-links li {
    margin-right: 15px;
  }

  .footer-logo div,
  .about-links a,
  .contact-links a {
    font-size: 15px;
  }

  .footer-content > * {
    margin-top: 0;
  }
}


@media screen and (max-width: 900px) {
/*
  .page-columns {
    padding-bottom: 50px;
  }
*/

  /** Хеадер */

  .header h1 {
    padding-top: 25px;
    font-size: 34px;
  }

  .header h2 {
    font-size: 19px;
  }

  .voice-form {
    padding-left: 18px;
    padding-right: 18px;
  }


  .dialog-wrap {
    font-size: 14px;
  }


  #audio-results .audio-wrapper .audio {
    padding: 0 25px;
  }

  /** Текст на главной странице */

  .conent.index {
    margin-top: 40px !important;
  }

  .page-columns {
    padding-left: 25px;
    padding-right: 25px;
  }

  .content > * {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page .content {
    padding-top: 5px;
  }

  .content h1 {
    font-size: 32px;
    margin-top: 0;
  }

  .content h2 {
    font-size: 20px;
  }


  /**
   * Звуки
   */

  .related-categories li {
    width: 33.33%;
  }


  /** Футер */

  .about-links li {
    margin-right: 0;
    display: block;
  }
}


@media screen and (max-width: 850px) {
  .header h1 {
    font-size: 30px;
  }

  .header h2 {
    font-size: 19px;
  }

/*
  .cabinet .header {
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }
*/

  .cabinet .header img {
    width: 90px;
    opacity: 0.9;
  }


  .voice-form {
    padding-left: 14px;
    padding-right: 14px;
  }


  .voice-options > *,
  #dialog-voices > * > *  {
    margin-bottom: 12px;
    margin-right: 7px;
  }

  .voice-tools > * {
    margin-right: 7px;
  }


  .dialog-wrap {
    height: 36px;
    line-height: 36px;
  }


  /* Селекты **/

  .voice-form select {
    height: 36px;
    line-height: 36px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
  }

  .voice-form .chosen-container,
  .voice-form .chosen-container .chosen-results li {
    font-size: 13px;
  }

  .voice-form .chosen-container-single .chosen-single div {
    width: 25px;
  }

  .voice-form .chosen-container-single .chosen-single {
    height: 36px;
    line-height: 32px;
    padding-left: 6px;
    border-radius: 5px;
  }

  .voice-form .chosen-container .chosen-results li  {
    padding: 6px 6px 6px 8px;
    line-height: 26px;
  }

  .voice-form .voice-language .chosen-single span {
    background-position: 0px 7px;
    background-size: 22px 16px;
    padding-left: 30px !important;
  }

  .voice-form .voice-language .chosen-results li {
    background-position: 6px 10px;
    background-size: 22px 16px;
    padding-left: 36px !important;
  }


  .voice-form .voice-image .chosen-single > span  {
    background-position: 0 8px;
    background-size: 49px;
    padding-left: 53px !important;
  }

  .voice-form .voice-image .chosen-results li {
    background-position: 6px 9px;
    background-size: 49px;
    padding-left: 59px !important;
  }

  .voice-form .voice-image .chosen-results li.v-female,
  .voice-form .voice-image .chosen-results li.v-male {
    padding-left: 32px !important;
  }


.chosen-results > li.v-sample {
  padding-right: 40px !important;
}

 .chosen-results > li.v-sample.v-male-pro {
  padding-right: 50px !important;
}


  .voice-form .chosen-container-single .chosen-single div b {
    background-position: -5px -27px;
  }

  .voice-form .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -35px -27px;
  }

  .voice-image .chosen-drop li {
    padding-right: 3px !important;
  }

  .chosen-container.voice-image .chosen-results {
    -moz-column-gap: 1px;
    -webkit-column-gap: 1px;
    -o-column-gap: 1px;
    column-gap: 1px;
  }


  .voice-form .chosen-container-single .chosen-single div b {
    background-position: -2px -65px;
  }

  .voice-form .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -32px -65px;
  }
}


@media screen and (max-width: 800px) {

  /** Хеадер */

  .header h1 {
    font-size: 27px;
    padding-top: 23px;
  }

  .header h2 {
    font-size: 18px;
    padding-bottom: 30px;
  }


  /** Вввод текста */

  #voice-text {
    font-size: 16px;
    padding: 12px;
  }

  .voice-form .ri-size-16 .voting-info,
  .voice-form .ri-size-16 .rating-loading-text,
  .voice-form .vn-wrapper {
    font-size: 16px;
    top: 0;
  }


  /** Рейтинг на главной
  .voice-tools .rating-wrap {
    display: inline-table;
    float: none !important;
  }
  */

  /** Инструменты для озвучки
  .voice-tools > * {
    margin-right: 10px;
    font-size: 15px;
  }

  #voice-dialog,
  #voice-dialog:hover  {
    background-size: 35px;
    padding-left: 50px;
  }

  #voice-clear,
  #voice-clear:hover  {
    background-size: 18px;
    background-position:  8px 9px;
    padding-left: 30px;
  }

  #voice-pause,
  #voice-pause:hover {
    background-size: 18px;
    background-position:  8px 9px;
    padding-left: 30px;
  }

  #txtundo,
  #txtundo:hover,
  #txtredo,
  #txtredo:hover {
    background-size: 20px;
    background-position:  8px 7px;
    width: 35px;
  }

  #txtredo,
  #txtredo:hover {
    background-position:  8px 9px;
  }
  */

  .voice-tools > * {
    height: 37px;
    width: 44px !important;
    vertical-align: top;
    padding: 0 !important;
  }

  .voice-tools .rating-wrap {
    width: auto !important;
    position: relative;
    top: 8px;
  }

  .voice-tools > * > span  {
    display: none;
  }

  #voice-dialog,
  #voice-dialog:hover  {
    background-size: 35px;
    background-position: 4px 7px;
  }

  #txtredo,
  #txtredo:hover {
    background-position: 10px 7px;
  }

  #txtundo,
  #txtundo:hover {
    background-position: 10px 5px;
  }

  #voice-clear,
  #voice-clear:hover {
    background-position: 9px 6px;
  }

  #voice-pause,
  #voice-pause:hover {
    background-position: 10px 7px;
  }



  /** FAQ */
  .faq-links > a {
    font-size: 15px;
    padding: 10px 14px;
    margin-right: 15px;
  }

  /** Футер */

  .about-links li {
    margin-right: 0;
    display: block;
  }

  .footer-content > * {
    margin-right: 40px;
  }


  /**
   * Категории звуков
   */
  .category-list {
    display: table;
    margin: 0 auto;
    width: 80%;
  }

  .category-list ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }
}



@media screen and (max-width: 700px) {
/*
  .page-columns {
    padding-bottom: 10px;
  }
*/

  /** Хеадер */
  .page-wrapper {
    background-size: 100% 86px;
  }

  .voice-form {
    margin-top: 12px;
  }


  .u0 .topmenu-content.closed {
    padding-top: 6px;
  }

  .u1 .topmenu-content.closed {
    margin-top: 0;
  }

/*
  .u1 .topmenu-content.closed {
    padding-top: 12px;
  }
*/

/*
  .topline {
    margin-top: 2px;
  }


  .topmenu-content {
    padding-top: 4px;
  }
*/

  .topline > img {
    width: 100px;
  }

  .topline {
    font-size: 14px;
  }

/*
  .auth-button {
    width: 100px;
    height: 40px;
    line-height: 37px;
  }
*/

  .cabinet-link > span,
  .auth-button > span  {
    font-size: 14px;
  }
/*
  .authlink {
    margin-bottom: 12px;
  }
*/

/*
  .authlink #balance {
    height: 40px;
    padding: 10px;
    margin-top: 8px;
  }
*/

/*
  .u1 #balance {
    margin-top: 0;
    padding: 10px 12px;
  }
*/
/*
  .u1 .topmenu-content.closed {
    padding-top: 7px;
  }
*/

  .header h1 {
    font-size: 24px;
    padding-top: 20px;
  }


  .header h2 {
    font-size: 17px;
  }


  /** content */

  .content h1 {
    font-size: 29px;
    margin-top: 0;
  }

  .content h2 {
    font-size: 19px;
  }


  /** Футер */

  footer:after {
    height: 630px;
  }


  .footer-content {
    /* display: block; */
    text-align: center;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-content > * {
    display: inline-block;
    margin-top: 35px;
  }

/*
  .footer-logo {
    display: block;
    margin-right: 0;
  }

  .footer-logo span {
    display: inline-block;
  }

  .footer-logo span:first-child {
    margin-right: 8px;
  }
*/

  .footer-logo {
    width: 50%;
  }

  .contacts  {
    width: calc( 50% - 40px );
  }

  .footer-title,
  .about,
  .contacts  {
    text-align: left;
  }

  .about  {
    order: 3;
    margin-right: 0;
    margin-top: 20px;
  }

  .about-links li {
    display: inline-block;
    margin-right: 30px;
  }

/*
  .about  {
    display: none;
  }
*/


  /**
   * Категории звуков
   */
  .category-list {
    width: 90%;
  }


  /**
   * Ссылка на кабинет
   */
  .u1 .cabinet-link {
    height: 51px;
    line-height: 51px;
  }


 /**
  * Выбор языка
  */
  .u0 #current-language {
    height: 40px;
    padding: 8px 13px 0 13px;
    box-sizing: border-box;
  }

  .u0 #language-links {
    /* margin-left: -275px; */
    margin-top: 10px;
  }

  .u1 #current-language {
    height: 51px;
    padding: 8px 13px 0 13px;
  }

  .u1 #language-links {
    /* margin-left: -275px; */
    margin-top: 10px;
  }
}



@media screen and (max-width: 640px) {
  body {
    background: none;
  }


  .cabinet .main {
    padding-top: 0;
  }

/*
  .cabinet .header {
    margin-left: 20px;
    margin-right: 20px;
  }
*/

  .voice-form {
    margin: 10px 0 0 0;
    padding-bottom: 10px;
    border-radius: 0;
  }

  #audio-results > * {
    padding: 25px 0 25px 0;
  }

  .content,
  .page .content {
    margin: 20px 0 0 0;
    border-radius: 0;
  }

  .page .content {
    padding-top: 5px;
  }

  .page-columns {
    padding-left: 0;
    padding-right: 0;
  }

  .share-section {
    margin-top: 30px;
  }
}



@media screen and (max-width: 630px) {
  .header h1,
  .voice-form h1 + div {
    text-align: left;
  }

  .header h2 {
    text-align: left;
  }

  .header h2 br {
    display: none;
  }

  .cabinet .header h1 {
    display: none;
  }
}

@media screen and (min-width: 591px) {
  .topline.t1 .topmenu-content-wrapper {
    display: block !important;
  }
}


@media screen and (max-width: 590px) {

  /**
   * topline
   */
  .topline > img {
    margin-right: 20px;
  }

  .topline.t1  .mobile-menu-icon {
    display: block;
  }

  .topline.t1  .topmenu-content {
    background: #E5E5E5;
    padding: 16px 16px 6px 16px;
    border-bottom: 1px solid #CCC;
    border-top: 1px solid #CCC;
    white-space: normal;
  }

  .topline.t1 .topmenu-content-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    /* padding-top: 75px; */
    padding-top: 69px;
    width: 100%;

    -webkit-transition-duration: .05s;
    transition-duration: .05s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }

/*
  .topline > img + div {
    margin-bottom: 10px;
  }
*/


  /** Селекты voice form */
  .chosen-container.voice-image .chosen-results {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
    max-height: none !important;
  }


  /** Кнопки поделиться */
  .share-title:before {
    display: table;
    margin: 0 auto;
    position: static;
  }

  .share-title {
    padding: 0 20px;
    font-size: 20px;
    text-align: center;
  }


  /** content */

  .content h1 {
    font-size: 26px;
    margin-top: 0;
  }

  .content h2 {
    font-size: 19px;
  }



  /**
   * Категории звуков
   */
  .category-list {
    width: 100%;
  }

  /** Футер */
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }


/*
  .about {
    margin-right: 30px;
  }
*/


  /**
   * Окно с бонусами и призывами к регистрации
   */
  .reginfo-title,
  .reginfo-message {
    width: 380px !important;
  }
}



@media screen and (max-width: 520px) {

  .header h1 {
    font-size: 20px;
    padding-top: 15px;
  }

  .header h2 {
    font-size: 14px;
  }

  /** Топ меню для не зарегестрированных пользователей */

  .topline > img {
    width: 100px;
  }

/*
  .u0 .topline {
    text-align: center;
  }

  .u0 .topline > div {
    margin-top: 20px;
    float: none;
  }

  .u0 .page-wrapper {
    min-height: 600px;
    background-size: 100% 600px;
  }
*/

  /** Звуки */
  .related-categories li {
    width: 50%;
  }

  /**
   * Выбор языка
   */
  #language-links {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    -o-column-count: 2;
    column-count: 2;

    left: 50%;
  }


  /**
   * Окно с бонусами и призывами к регистрации
   */
  .reginfo-title,
  .reginfo-message {
    width: 340px !important;
  }
}


@media screen and (max-width: 480px) {
  /** Категории звуков */
  .category-list  {
    width: 100%;
  }
  .category-list ul {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }


  /** Кнопки поделиться */
  .share-title:before {
    display: table;
    margin: 0 auto;
    position: static;
  }

  .share-section  .ya-share2__list > * {
    border-radius: 0 !important;
    width: 50%;
  }


  .share-section .ya-share2__list > :first-child,
  .share-section .ya-share2__list > :nth-child(2),
  .share-section .ya-share2__list > :nth-child(3),
  .share-section .ya-share2__list > :nth-child(4) {
    border-bottom: none;
  }

  .share-section .ya-share2__list > :nth-child(3) {
    border-right: none;
  }

  .share-section .ya-share2__list > :nth-child(2),
  .share-section .ya-share2__list > :nth-child(4)  {
    border-right: 1px solid #C2D5EC;
  }

  .share-section .ya-share2__list > :first-child {
    border-radius: 8px 0 0 0 !important;
  }

  .share-section .ya-share2__list > :nth-child(2) {
    border-radius: 0 8px 0 0 !important;
  }

  .share-section .ya-share2__list > :nth-child(5) {
    border-radius: 0 0 0 8px !important;
  }

  .share-section .ya-share2__list > :nth-child(6) {
    border-radius: 0 0 8px 0 !important;
  }


  .share-index .ya-share2__list > :nth-child(2),
  .share-index .ya-share2__list > :nth-child(4)  {
    border-right: none;
  }

  .share-index .ya-share2__list > :first-child {
    border-radius: 0 !important;
  }

  .share-index .ya-share2__list > :nth-child(2) {
    border-radius: 0 !important;
  }

  .share-index .ya-share2__list > :nth-child(5) {
    border-radius: 0 !important;
  }

  .share-index .ya-share2__list > :nth-child(6) {
    border-radius: 0 !important;
  }


  footer::after {
    height: 820px;
  }


  /**
   * Окно с бонусами и призывами к регистрации
   */
  .reginfo-title,
  .reginfo-message {
    width: 300px !important;
  }
}


@media screen and (max-width: 470px) {

  /** Топ меню для не зарегестрированных пользователей */
/*
  .u0 .main {
    padding-top: 4px;
  }
*/
  .topline {
    padding-left: 12px;
    padding-right: 12px;
  }
  .topline > img {
    width: 90px;
  }

  .mobile-menu-icon {
    top: 15px;
  }

  .topmenu-content-wrapper {
    padding-top: 69px;
  }


/*
  .u0 .auth-button,
  .u0 .authlink #balance {
    margin-top: 10px;
  }
*/

  .downloadlist {
    margin-top: 8px;
  }


  /** Рейтинг на главной  */
  .voice-tools .rating-wrap {
    display: inline-table;
    float: none !important;
  }

  #voice-dialog {
    margin-right: 14px;
  }


  /* Селекты **/

  .voice-form select {
    height: 36px;
    line-height: 36px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
  }

  .voice-form .chosen-container,
  .voice-form .chosen-container .chosen-results li {
    font-size: 12px;
  }

  .voice-form .voice-image .chosen-single > span {
    background-position: 0 9px;
    background-size: 40px;
    padding-left: 42px !important;
  }

  .chosen-container .chosen-results {
    max-height: 380px;
  }


  /** Инструменты для озвучки *

  .voice-tools > * {
    margin-right: 5px;
    font-size: 14px;
  }

  #voice-dialog,
  #voice-dialog:hover  {
    background-size: 28px;
    padding-left: 43px;
    background-position:  8px 8px;
  }

  #voice-clear,
  #voice-clear:hover  {
    background-size: 13px;
    background-position:  8px 11px;
    padding-left: 25px;
  }

  #voice-pause,
  #voice-pause:hover {
    background-size: 13px;
    background-position:  8px 11px;
    padding-left: 25px;
  }

  #txtundo,
  #txtundo:hover,
  #txtredo,
  #txtredo:hover {
    background-size: 20px;
    background-position:  8px 7px;
    width: 35px;
  }

  #txtredo,
  #txtredo:hover {
    background-position:  8px 9px;
  }
  */


  /** Футер */
  /*
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about,
  .contacts {
    display: block;
    margin: 30px auto 0 auto !important;
    text-align: center !important;
  }

  .footer-title {
    text-align: center !important;
  }

  footer::after {
    height: 850px;
  }
*/
}


@media screen and (max-width: 430px) {

  /** Селекты voice form */
  .chosen-container.voice-image .chosen-results {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
    max-height: none !important;
  }

  .topmenu-content-wrapper {
    padding-top: 69px;
  }

  .mobile-menu-icon {
    top: 14px;
  }


  /** Топ меню для незарегестрированных пользователей */
/*
  .u0 .page-wrapper {
    min-height: 700px;
    background-size: 100% 700px;
  }

  .u0 .topline,
  .u0 .auth-button > span {
    font-size: 13px;
  }
*/

/*
  .u0 .authlink #balance {
    margin-left: 10px;
  }

  .u0 .auth-button {
    width: 80px;
  }
*/

  /** Топ меню для зарегестрированных пользователей */
/*
  .u1 .topline {
    padding: 0 18px;
  }

  .u1 .topline > img {
    width: 90px;
  }
*/

/*
 #language-select {
   margin-right: 25px;
 }
*/

/*
  .u1 #balance {
    top: -4px;
    position: relative;
  }
*/

/*
  .u1 .topline > div {
    display: table;
    margin: 20px auto 0 auto;
    float: none;
  }

  .u1 .page-wrapper {
    min-height: 600px;
    background-size: 100% 600px;
  }
*/


/*
  .cabinet-links,
  .authlink {
    margin-right: 10px;
  }
*/

  /** content */

  .content h1 {
    font-size: 23px;
    margin-top: 0;
  }

  .content h2 {
    font-size: 18px;
  }

  .content p {
    font-size: 15px;
  }


  /** Инструменты для озвучки */

  .voice-tools > * {
    margin-right: 5px;
    font-size: 12px;
  }


  /** footer */

  .footer-logo img {
    width: 85px;
  }

  .footer-content > *  {
    margin-right: 30px;
  }

  .footer-logo div  {
    font-size: 10px;
  }

  .contact-links a {
    font-size: 12px;
  }


  .about-links li {
    display: block;
    margin-right: 0;
  }


  /**
   * Окно с бонусами и призывами к регистрации
   */
  .reginfo-title,
  .reginfo-message {
    width: 280px !important;
  }

  .reginfo-title {
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
  }

  .reginfo-message {
    padding-bottom: 8px !important;
  }

  .reginfo-message p {
    padding: 4px 0 !important;
  }

    /**
   * Окно с бонусами и призывами к регистрации
   */
  #window-low-balance .ubcontent {
    padding: 0 15px 15px 15px !important;
  }

  #window-low-balance .reginfo-message + .signup-link {
    padding: 10px 15px !important;
  }
}


@media screen and (max-width: 380px) {
  .downloadlist {
    width: 65%;
  }

  .audio-download.m4r {
    display: none;
  }

  /**
   * Окно с бонусами и призывами к регистрации
   */
  .reginfo-title,
  .reginfo-message {
    width: 250px !important;
  }
}


@media screen and (max-width: 350px) {

  /** Топ меню для незарегестрированных пользователей */
/*
  .mobile-menu-icon {
    background-position: -240px -40px;
    width: 28px;
    height: 20px;
    font-size: 20px;
    padding-left: 35px;
    line-height: 20px;
    top: 14px;
    right: 60px;
  }
*/

  .mobile-menu-icon {
    top: 8px;
  }

/*
  .u1 .mobile-menu-icon {
    top: 21px;
  }
*/

  .topmenu-content-wrapper {
    padding-top: 57px;
  }

  .topmenu-content {
    padding-left: 8px;
    padding-right: 8px;
  }

  .topline > div {
    white-space: normal;
  }

  .topline > img {
    width: 70px;
  }

  .u1 .topmenu-content #balance {
    margin-right: 10px;
    margin-bottom: 12px;
  }

  .topline.t1 .topmenu-content-wrapper {
    padding-top: 57px;
  }

  /**
   * Выбор языка
   */
  #language-links {
    font-size: 13px;
  }

/*
  .u0 .auth-button,
  .u0 .authlink #balance {
    margin-top: 2px;
  }
*/

  #txt-to-voice {
    width: 150px;
  }

  .share-section .ya-share2__item_service_viber .ya-share2__badge::after,
  .share-section .ya-share2__item_service_whatsapp .ya-share2__badge::after,
  .share-section .ya-share2__item_service_telegram .ya-share2__badge::after  {
    font-size: 16px;
  }


  /**
   * Окно с бонусами и призывами к регистрации
   */
  .reginfo-title,
  .reginfo-message {
    width: 220px !important;
  }
}


@media screen and (max-width: 325px) {
  #language-links {
    font-size: 12px;
  }
}


@media screen and (max-width: 319px) {
  .downloadlist {
    width: 50%;
  }

  .audio-download.wav {
    display: none;
  }
}




/**
 * Реклама
 */

.sidebar-notice-column {
  min-width: 180px;
  position: relative;
}

.sidebar-notice-line {
  position: absolute;
  left: 0;
}

.sidebar-notice-wrapper {
  position: fixed;
  top: 50%;
}

.sidebar-notice {
  display: table-cell;
  position: absolute;
  white-space: nowrap;
  right: 100%;
  padding-right: 25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.voice-form .top-notice {
  margin-top: 0;
}

.top-notice, .middle-notice, .bottom-notice {
  display: table;
  margin: 20px auto;
}

@media screen and (max-width: 1550px) {
  .sidebar-notice-column {
    display: none;
  }
}




/**
 * Левый сайдбар у звуков
 */
.with-sidebar .content-wrapper {
/*
  width: calc( 100% + 280px );
  margin-left: -140px;
*/
  display: table;
  margin-top: 12px;
}


.with-sidebar .content-wrapper {
/*
  width: calc( 100% + 280px );
  margin-left: -140px;
*/
  width: 100%;
  display: table;
  margin-top: 12px;
}


.with-sidebar .page-columns {
  max-width: 1370px;
}

.with-sidebar .content-wrapper > * {
  display: table-cell;
  padding-top: 10px;
  margin-top: 0;
  vertical-align: top;
}

.with-sidebar .content > * {
  padding-left: 30px;
}


#left-column {
  box-sizing: border-box;
  min-height: 100%;
  padding: 0 16px 16px 16px;
  min-width: 240px;
  max-width: 240px;
  background: #FFF;
  border-right: 1px solid #E5E5E5;
}

#left-column > * {
  width: 100%;
  padding: 0 10px 12px 10px;
  margin-bottom: 20px;
  position: relative;
  top: 12px;
/*
  background: #FDFDFD;
  border: 1px solid #FAFAFA;
  border-radius: 4px;
*/
}

.menu-notice {
  padding-top: 20px !important;
  padding-bottom: 8px !important;
}

.side-item-title {
  white-space: normal;
  font-weight: bold;
  margin-bottom: 16px;
}

.side-menu a {
  display: block;
  margin-bottom: 14px;
  line-height: 1.3;
  font-size: 15px;
  text-decoration: none;
}

.side-menu a:hover {
  text-decoration: underline;
}

.side-menu a:last-child {
  margin-bottom: 0;
}

#sidebar-button {
  border: 1px solid #DAE1EA;
  border-radius: 7px;
  background: #FFF;
  padding: 0 13px 0 13px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  margin-right: 20px;
  cursor: pointer;
}

.u1 #sidebar-button {
  height: 56px;
  line-height: 56px;
}


/**
 * Поиск по звукам
 */

.topline.table {
  width: 100%;
}

.topline.table > * {
  display: table-cell;
  vertical-align: middle !important;
  position: static !important;
  float: none !important;
}

#sounds-search {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.searchbox {
  display: table;
  max-width: 550px;
  margin: 0 auto;
}

.searchbox > * {
  display: table-cell !important;
  vertical-align: top;
}

.searchbox > *:first-child {
  width: 100%;
}

.searchbox input[type="text"] {
/*
  width: calc( 100% - 60px );
*/
  height: 40px !important;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 7px 0 0 7px;
  border-color: #DAE1EA;
  outline: none;
}

.searchbox button {
  padding: 3px 10px 3px 39px !important;
  font-size: 14px;
  font-weight: normal;
  border-radius: 0 7px 7px 0;
  height: 40px !important;
  line-height: 38px;
  position: relative;
}

.searchbox button > span {
  vertical-align: top;
  margin-top: 4px;
  font-size: 18px;
}


.searchbox button:before {
  content: "";
  display: inline-block;
  background: url( '/assets/images/sprite.webp' ) no-repeat -190px -400px;
	width: 18px;
	height: 18px;
  position: absolute;
  left: 10px;
}


#mobile-search-button {
  display: none;
  background: url( '/assets/images/sprite.webp' ) no-repeat -240px -80px;
	width: 30px;
	height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 999999;
}



@media screen and (max-width: 1370px) {
  .with-sidebar .page-columns {
    padding-left: 0;
    padding-right: 0;
  }

  .with-sidebar #language-select {
    margin-right: 6px;
  }
}


@media screen and (max-width: 1330px) {
  .page-sounds-search #sidebar-button {
    display: inline-block;
  }

  .page-sounds-search #left-column {
    position: absolute;
    border: 1px solid #E5E5E5;
    padding-top: 25px;
    width: 100%;
    z-index: 999;
    box-shadow: 5px 5px 5px #CCC;
    min-height: 1px;
    display: none;
  }

  .page-sounds-search #left-column .side-menu {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    -o-column-count: 4;
    column-count: 4;

    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    -o-column-gap: 15px;
    column-gap: 15px;

    margin-bottom: 0;
  }

  .page-sounds-search .side-item-title {
    display: none;
  }
}


@media screen and (max-width: 1100px) {
  #sidebar-button {
    display: inline-block;
  }

  #left-column {
    position: absolute;
    border: 1px solid #E5E5E5;
    padding-top: 10px;
    width: 100%;
    z-index: 999;
    box-shadow: 5px 5px 5px #CCC;
    min-height: 1px;
    display: none;
    max-width: 100% !important;
  }

  #left-column .side-menu {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    -o-column-count: 4;
    column-count: 4;

    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    -o-column-gap: 15px;
    column-gap: 15px;

    margin-bottom: 0;
  }

  .side-item-title {
    display: none;
  }
}



@media screen and (max-width: 1050px) {
  .sounds-two-columns > * {
    float: none !important;
    width: 100% !important;
    height: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sounds-two-columns .sound-info > a {
    white-space: normal;
  }

  .found-categories > a:nth-child( n + 5 ) {
    display: none !important;
  }
}


@media screen and (max-width: 1100px) {
  #left-column .side-menu {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
  }
}


@media screen and (max-width: 700px) {
  #left-column .side-menu {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }


  .topline.table  .topmenu {
    text-align: right;
  }

  .topline.table .mobile-menu-icon {
    display: inline-block;
    padding-left: 0;
    top: 2px;
    right: 12px;
  }

  .topline.table .topmenu-content {
    background: #E5E5E5;
    padding: 16px 16px 6px 16px;
    border-bottom: 1px solid #CCC;
    border-top: 1px solid #CCC;
    white-space: normal;
  }

  #sounds-search {
    padding-right: 40px;
  }

  .topline.table .topmenu-content-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 75px;
    width: 100%;

    -webkit-transition-duration: .05s;
    transition-duration: .05s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }
}


@media screen and (max-width: 550px) {
  #mobile-search-button {
    display: inline-block;
    margin-right: 35px;
  }

  #sounds-search {
    display: none;
    position: absolute !important;
    top: 75px;
    left: 0;
    background: #E5E5E5;
    padding: 20px;
    border-bottom: 1px solid #CCC;
    border-top: 1px solid #CCC;
    white-space: normal;
  }
}


@media screen and (max-width: 470px) {
  #left-column .side-menu {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }

  select[name="language"] option,
  select[name="language"] + .chosen-container {
    text-transform: capitalize !important;
  }
}



@media screen and (min-width: 701px) {
  #language-select {
    display: inline-block !important;
  }

  #mobile-menu-icon {
    display: none !important;
  }
}


@media screen and (min-width: 550px) {
  #mobile-search-button {
    display: none !important;
  }

  #sounds-search {
    display: table-cell !important;
  }
}