/*! HTML5 Boilerplate v7.2.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

button {
  border: none;
  background-color: transparent;
}

a {
  color: inherit;
  text-transform: none;
  text-decoration: none;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.img_text{
	  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%!important;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

.div_navigation{
	border: 4px double #8b8bff!important;
	padding:5px!important;
	margin:10px!important;
}

.div_footer{
	border: 1px solid #8b8bff!important;
	padding:5px!important;
	margin:10px!important;
}
/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade_clRepl_ {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden_clRepl_ {
  display: none !important;
}

.center_clRepl_ {
  text-align: center;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only_clRepl_ {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

.container_clRepl_ {
  width: 100%;
}

.main_clRepl_ {
  position: relative;
  transition: all 0.5s ease-in-out;
}

.mainTextWrap_clRepl_ {
  padding: 50px 20px 20px 20px;
}

.contentHeader_clRepl_ {
  font-size: 24px;
  line-height: 1.3;
}

.content_clRepl_ p, .contentTable_clRepl_ {
  margin-bottom: 15px;
}

.banner_clRepl_ {
  display: block;
}

.banner_clRepl_ img {
  width: 100%;
}

.navToggle_clRepl_ {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer;
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: 1;
}

.toggleIcon_clRepl_ {
  float: left;
  margin: 0.438em;
}

.toggleIconLine_clRepl_:nth-of-type(2n), .toggleIconLine_clRepl_:nth-of-type(3n) {
  margin-top: 2px;
}

.toggleIconLine_clRepl_ {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.navWrap_clRepl_ {
  min-height: 46px;
}

.headerNav_clRepl_ {
  font-size: 1rem;
  font-weight: 600;
  clear: both;
  color: #fff;
  padding: 20px;
}

.headerNavWrap_clRepl_ {
  overflow: hidden;
  clear: both;
  transition: height 0.5s ease-in-out;
}

.headerNavItem_clRepl_ {
  transition: background-color 0.25s ease-out;
}

.headerNav_clRepl_ a {
  display: block;
  padding: 5px 10px;
  margin: 2px 5px;
}

.button_clRepl_ {
  padding: 10px 30px;
  font-size: 17px;
  border-radius: 45px;
  background-color: #ccc;
  cursor: pointer;
}

ul {
  list-style: square;
}

.content_clRepl_ img {
  width: 80%;
}

.lineHeader_clRepl_ {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 700;
  padding-bottom: 5px;
}

.recentItems_clRepl_ li {
  padding: 5px 0;
  border-bottom: 1px dotted #e5e5e5;
}

.recentItems_clRepl_ {
  list-style: none;
  padding: 0;
}

.mainTextWrap_clRepl_ > *:nth-child(2n) {
  padding-left: 2%;
}

.contentTable_clRepl_ {
  width: 100%;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.contentTableRow_clRepl_ {
  display: flex;
}

.contentTable_clRepl_ .contentTableCol_clRepl_ {
  width: 70%;
  padding: 10px;
  border: 1px solid #ccc;
}

.contentTable_clRepl_ .contentTableCol_clRepl_:first-of-type {
  width: 30%;
  border: 1px solid #ccc;
}

.contentTableCaption_clRepl_ {
  padding: 10px;
  font-size: 18px;
  text-align: left;
  font-weight: bold;
}

.breadCrumbs_clRepl_ li {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.breadCrumbs_clRepl_ ul {
  padding-left: 0;
}

.breadCrumbs_clRepl_ li a:before,
.breadCrumbs_clRepl_ li a:after {
  border-right: 1px solid #666666;
  content: '';
  display: block;
  height: 30%;
  position: absolute;
  left: 0;
  right: 10px;
  top: 5px;
  transform: skewX(45deg);
}

.breadCrumbs_clRepl_ li a:after {
  bottom: 4px;
  top: auto;
  transform: skewX(-45deg);
}

.breadCrumbs_clRepl_ a:hover {
  text-decoration: underline;
}

.navWrap_clRepl_ {
  position: absolute;
  top: 0;
  width: 100%;
}

.rating_clRepl_ {
  margin-bottom: 20px;
  align-items: center;
  text-align: center;
}

.ratingInput_clRepl_ {
  display: none;
}

.ratingLabel_clRepl_ {
  cursor: pointer;
  padding: 0 5px;
  font-size: 25px;
  line-height: 0.6;
}

.ratingIcon_clRepl_ {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
  color: orange;
}

.ratingInput_clRepl_:checked ~ .ratingLabel_clRepl_ .ratingIcon_clRepl_ {
  color: #ddd;
}

.ratingIcon_clRepl_:before {
  content: "\2605";
}

.feedback_clRepl_ {
  margin-bottom: 20px;
}

.feedback_clRepl_ h2 {
  margin-top: 0;
}

.feedbackItem_clRepl_ {
  padding: 20px;
  border-radius: 16px;
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
}

.feedbackTop_clRepl_ {
  display: flex;
}

.feedbackImg_clRepl_ {
  max-width: 60px;
  margin-right: 14px;
  align-self: center;
}

.feedbackInfo_clRepl_ p {
  margin: 0;
  font-size: 14px;
}

.feedbackInfo_clRepl_ .feedbackDate_clRepl_ {
  font-size: 12px;
  margin-top: 3px;
  opacity: 0.8;
}

.feedbackBody_clRepl_ {
  margin-bottom: 0;
}

.formTitle_clRepl_, .formSubTitle_clRepl_ {
  text-align: center;
}

.formTitle_clRepl_ {
  margin-bottom: 0;
}

.formSubTitle_clRepl_ {
  margin-top: 0;
}

.formSection_clRepl_ {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.formSection_clRepl_ label {
  font-size: 14px;
  font-weight: 700;
}

.formSection_clRepl_ textarea, .formSection_clRepl_ input {
  width: 100%;
  line-height: 1.5;
  padding: 5px;
  transition: .2s ease-in-out;
  resize: none;
  border-radius: 6px;
}

.formSection_clRepl_ .error_clRepl_ {
  border-color: #881209 !important;
}

.form_clRepl_ .submit_clRepl_ {
  margin: auto;
  display: block;
  padding: 12px 50px;
}

.response_clRepl_ {
  text-align: center;
}

.ftr-mobile-btn-wrap_clRepl_ {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  bottom: -80px;
  opacity: 0;
  visibility: hidden;
  padding: 16px;
  transition: .2s ease-in-out;
}

.ftr-mobile-btn_clRepl_ {
  animation: shake_clRepl_ 5s cubic-bezier(.36,.07,.19,.97);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  animation-iteration-count: infinite;
}

.ftr-mobile-btn-wrap_clRepl_.visible_clRepl_ {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .headerNavWrap_clRepl_ {
     height: 0;
   }

  .rating_clRepl_ span {
    display: block;
  }
}

@media (min-width: 768px) {
/* Стили для устройств с шириной viewport, находящейся в диапазоне 768px - 991px */
}

/* Устройства со средним экраном (ноутбуки и компьютеры, 992px и выше) */
@media (min-width: 992px) {
  /* Стили для устройств с шириной viewport, находящейся в диапазоне 992px - 1199px */
  .container_clRepl_ {
    width: 95%;
    margin: auto;
  }
}

/* Устройства с большим экраном (компьютеры, 1200px и выше) */
@media (min-width: 1024px) {
  /* Стили для устройств с шириной viewport >1200px */
  .body_clRepl_ {
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: 100vh;
  }
  .container_clRepl_ {
    max-width: 1080px;
    margin: auto;
  }
  .navToggle_clRepl_ {
    display: none;
  }
  .headerNav_clRepl_ {
    padding: 0;
    display: flex;
  }
  .headerNav_clRepl_ a {
    margin: 0;
    padding: 10px 20px;
  }
  .content_clRepl_ p, .contentTable_clRepl_ {
    margin-bottom: 20px;
  }
  .main_clRepl_ section {
    flex: 2;
  }
  .main_clRepl_ aside {
    flex: 1;
  }
  .main_clRepl_:first-child {
    padding-right: 2%;
  }
  .stickyBanner_clRepl_ {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  .mainTextWrap_clRepl_ {
    display: flex;
  }
  .rating_clRepl_ {
    display: inline-flex;
  }
  .rating_clRepl_ span {
    display: inline;
  }
  .ftr-mobile-btn-wrap_clRepl_ {
    display: none;
  }
}

@keyframes shake_clRepl_ {
  1%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  2%, 8% {
    transform: translate3d(2px, 0, 0);
  }

  3%, 5%, 7% {
    transform: translate3d(-4px, 0, 0);
  }

  4%, 6% {
    transform: translate3d(4px, 0, 0);
  }

}

