body {
  margin: 0;
  padding: 0;

  font: 400 14px "Open Sans", sans-serif;

  background: #ffffff url(../images/shutterstock.png) no-repeat;
  background-position: right;
  -webkit-background-size: cover;
          background-size: cover;
  background-attachment: fixed;
}

a {
  color: #000000;
}
a:hover {
  color: #666666;
}

a img {
  border: none;
}

.title {
  font: 700 italic 48px "Open Sans", sans-serif;
  text-align: center;
  color: white;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #000000,

  1px -1px 0 #000000,

  -1px 1px 0 #000000,

  1px 1px 0 #000000;
}

.container {
  position: relative;

  display: table;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 960px;
  margin: 30px auto;
  padding: 30px 15px;

  font-size: 0;

  background: white;
  -webkit-box-shadow: 0 0 13px #000000;
          box-shadow: 0 0 13px #000000;
}

.header {
  position: absolute;
  top: 20px;
  right: 0;
}
.header__list {
  margin: 0;
  padding: 0;

  list-style: none;
}
.header__listItem {
  display: inline-block;
  height: 30px;
  padding: 5px 15px;

  line-height: 30px;
  vertical-align: top;
}
.header__listItem:hover {
  background: #000000;
}
.header__listItem:hover .header__listItemA {
  color: #ffffff;
}
.header__listItemA {
  display: block;
  width: 100%;
  height: 100%;

  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
}

.sidebar {
  display: inline-block;
  width: 230px;
  margin: -120px 0 0;

  vertical-align: top;
}
.sidebar__avatar {
  width: 155px;
  margin-top: 70px;
  margin-bottom: 18px;
  margin-left: 16px;
}
.sidebar__social {
  margin: 0;
  padding: 0;

  list-style: none;
}
.sidebar__socialItem {
  display: inline-block;

  vertical-align: top;
}
.sidebar__news {
  margin: 0;
  padding: 0;

  list-style: none;
}
.sidebar__newsTitle {
  font-size: 16px;
}
.sidebar__newsItem {
  display: table;
  margin: 20px 0;
  padding-bottom: 20px;

  font-size: 0;

  border-bottom: 1px dashed #666666;
}
.sidebar__newsItem._last {
  border: none;
}
.sidebar__newsItemImg {
  display: inline-block;
  width: 100px;
  min-width: 100px;
  margin-right: 15px;

  vertical-align: top;
}
.sidebar__newsItemText {
  display: inline-block;
  width: 50%;

  vertical-align: top;
}
.sidebar__newsItemTextA {
  font-size: 13px;
  line-height: 20px;
  color: #666666;
}
.sidebar__socialItem img {
  min-width: 53px;
}
.content {
  /* display: inline-block; */
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* margin-left: 20px; */
  padding: 15px 20px;

  font-size: 14px;
  vertical-align: top;

  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #cccccc;
  -webkit-border-radius: 2px;
          border-radius: 2px;
}
.content__text {
  color: #666666;
}
.content__text._bold {
  font-weight: bold;
}
.content__img {
  display: block;
  margin: 30px auto;
}
.content__imgA {
  display: block;
}
.content__list {
  color: #666666;
}

.comment-block__title {
  padding-bottom: 20px;

  font: 400 italic 28px "Open Sans", sans-serif;

  border-bottom: 3px dotted #cccccc;
}

.comment {
  display: table;
  margin-top: 20px;

  font: 400 0 "Open Sans", sans-serif;
}
.comment__author {
  display: table;
  margin: 0 0 15px 120px;

  font-size: 0;
  font-style: italic;
}
.comment__authorName {
  display: inline-block;
  margin: 0 10px 0 0;

  font-size: 18px;
  vertical-align: bottom;
}
.comment__authorDate {
  display: inline-block;

  font-size: 12px;
  vertical-align: bottom;
}
.comment__avatar {
  display: inline-block;

  vertical-align: top;
}
.comment__text {
  position: relative;

  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 750px;
  min-height: 100px;
  margin: 0 50px;
  padding: 15px;

  font: 400 14px/20px "Open Sans", sans-serif;
  vertical-align: top;

  border: 1px solid #cccccc;
}
.comment__text::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -15px;

  width: 15px;
  height: 19px;

  background: #ffffff url(../fonts/arrow.svg) no-repeat 50% 50%;
}
.comment__text._topicAuthor::before {
  display: none;
}
.comment__text._topicAuthor::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -15px;

  width: 15px;
  height: 19px;

  background: #ffffff url(../fonts/arrow.svg) no-repeat 50% 50%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.comment__img {
  display: block;
  margin: 10px auto;
}

footer p {
  text-align: center;
  color: #000000;
}

@media screen and (max-width: 960px) {
  .container {
    width: 100%;
    padding-top: 15px;
  }
  .sidebar {
    display: none;
  }
  .header {
    position: relative;
    top: 0;
    right: 50%;

    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
  .content {
    width: 100%;
    margin: 0;
  }
  .content__img {
    width: 90%;
  }
  .comment {
    width: 100%;
  }
  .comment__text {
    width: 80%;
    margin: 0 0 0 50px;
  }
  .comment__text._topicAuthor {
    margin: 0 50px 0 0;
  }
  .comment__img {
    width: 60%;
  }
}

@media screen and (max-width: 650px) {
  .comment__avatar {
    width: 13%;
  }
  .comment__text {
    margin: 0 0 0 15px;
  }
  .comment__text._topicAuthor {
    margin: 0 15px 0 0;
  }
  .comment__authorDate {
    display: block;
  }
}
.button.glass {
  text-shadow: rgba(255,255,255,0.5) 0 -1px 0, rgba(0,0,0,0.18) 0 0.18em 0.15em;
}

.button.pink {
  color: hsl(340, 100%, 30%) !important;

  background-color: hsl(340, 100%, 75%);
  -webkit-box-shadow: inset rgba(255,254,255,0.6) 0 0.3em 0.3em, inset rgba(0,0,0,0.15) 0 -0.1em 0.3em, hsl(340, 70%, 50%) 0 0.1em 3px, hsl(340, 80%, 40%) 0 0.3em 1px, rgba(0,0,0,0.2) 0 0.5em 5px;
          box-shadow: inset rgba(255,254,255,0.6) 0 0.3em 0.3em, inset rgba(0,0,0,0.15) 0 -0.1em 0.3em, hsl(340, 70%, 50%) 0 0.1em 3px, hsl(340, 80%, 40%) 0 0.3em 1px, rgba(0,0,0,0.2) 0 0.5em 5px;
}
.round,
.round.glossy:after,
.round.glass:after {
  border-top: none;
  -webkit-border-radius: 1em;
          border-radius: 1em;
}
.button.glossy::after,
.button.glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;

  width: 90%;
  height: 60%;
}
.button.pink:hover {
  background-color: hsl(340, 100%, 83%);
}

.button:hover {
  background-color: hsl(0, 0%, 83%);
}
.button:active {
  background-image: -webkit-gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0) )), url(../images/noise.png);
  background-image:    -moz-gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0) )), url(../images/noise.png);
  background-image:         gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0) )), url(../images/noise.png);
  -webkit-box-shadow: inset rgba(255,255,255,0.6) 0 0.3em 0.3em, inset rgba(0,0,0,0.2) 0 -0.1em 0.3em,
  rgba(0,0,0,0.4) 0 0.1em 1px,
  rgba(0,0,0,0.2) 0 0.2em 6px;
          box-shadow: inset rgba(255,255,255,0.6) 0 0.3em 0.3em, inset rgba(0,0,0,0.2) 0 -0.1em 0.3em,
  rgba(0,0,0,0.4) 0 0.1em 1px,
  rgba(0,0,0,0.2) 0 0.2em 6px;
  -webkit-transform: translateY(0.2em);
      -ms-transform: translateY(0.2em);
          transform: translateY(0.2em);
}

.button:focus {
  color: rgba(254,255,255,0.9) !important;
  text-shadow: rgba(0,0,0,0.2) 0 1px 2px;

  outline: none;
}

.button[disabled],
.button[disabled]:hover,
.button.disabled,
.button.disabled:hover {
  color: rgba(0,0,0,0.2) !important;
  text-shadow: none !important;

  background-color: rgba(0,0,0,0.05);
  background-image: none;
  border-top: none;
  -webkit-box-shadow: inset rgba(255,254,255,0.4) 0 0.3em 0.3em, inset rgba(0,0,0,0.1) 0 -0.1em 0.3em,
  rgba(0,0,0,0.3) 0 0.1em 1px,
  rgba(0,0,0,0.2) 0 0.2em 6px;
          box-shadow: inset rgba(255,254,255,0.4) 0 0.3em 0.3em, inset rgba(0,0,0,0.1) 0 -0.1em 0.3em,
  rgba(0,0,0,0.3) 0 0.1em 1px,
  rgba(0,0,0,0.2) 0 0.2em 6px;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  cursor: default;
  opacity: 0.5;
}
.button {
  position: relative;

  display: inline-block;
  margin: 0.5em;
  padding: 0.5em 0.6em 0.4em 0.6em;

  font: 24px/1em "Droid Sans", sans-serif !important;
  font-weight: bold !important;
  color: hsl(0, 0%, 40%) !important;
  text-decoration: none !important;
  text-shadow: rgba(255,255,255,0.5) 0 1px 0 ;

  background-color: hsl(0, 0%, 75%);
  background-image: -webkit-gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0.7) )), url(../images/noise.png);
  background-image: -moz-radial-gradient(top, ellipse cover, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%), url(../images/noise.png);
  background-image:         gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0.7) )), url(../images/noise.png);
  border-top: 1px solid rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  -webkit-border-radius: 8px;
          border-radius: 8px;
  -webkit-box-shadow: inset rgba(255,254,255,0.6) 0 0.3em 0.3em, inset rgba(0,0,0,0.15) 0 -0.1em 0.3em,
  hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
  rgba(0,0,0,0.2) 0 0.5em 5px;
          box-shadow: inset rgba(255,254,255,0.6) 0 0.3em 0.3em, inset rgba(0,0,0,0.15) 0 -0.1em 0.3em,
  hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
  rgba(0,0,0,0.2) 0 0.5em 5px;

  -webkit-transition: background 0.2s ease-in-out;
       -o-transition: background 0.2s ease-in-out;
          transition: background 0.2s ease-in-out;

  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}




.button:before {
  font: 1.2em/0 "Pictos", sans-serif;
  /*
	content: 		attr(data-icon); 
	margin-right: 	0.4em;
*/
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.comment__avatar {
  min-width: inherit;
  max-width: 50px;
}
a {
  font-weight: 800;
}
.product {
  max-width: 320px;
}

.mark {
  margin: 0;

  font-weight: bold;
  text-align: center;
}
