
  main p {
    margin: 1em 0;
  }
  
  main img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }
  .author {
    margin-bottom: 1em;
    display: flex;
    background: rgba(0, 114, 172, .4);
    padding: .5rem;
  }
  .author img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
    margin: 0;
  }
  .author__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
  }
  .author__content p{
    margin: 0;
    margin-bottom: .35rem;
  }
  
  @media screen and (max-width: 439px) {
    .author {
      flex-direction: column;
      justify-content: center;
      align-items: center
    }
    .author__content {
    margin-left: 0;
  }
  .author__content p{
    text-align: center;
    margin-bottom: 0;
    margin-top: .65rem
  }
  }
  .quote {
    display: inline;
    float: right;
    width: 40%;
    position: relative;
    border-left: 4px solid silver;
    padding: 50px 1rem;
    margin: 1rem 0;
    box-sizing: border-box;
    margin-left: 1rem;
  }
  .quote:after, .quote:before {
    position: absolute;
    content: '';
    width: 44px;
    height: 44px;
  }
  .quote:after {
    background: url(../img/quote-start.svg) no-repeat;
    top: .15rem;
    left: .5rem;
    background-size: contain;
    background-position: center;
  }
  .quote:before {
    background: url(../img/quote-end.svg) no-repeat;
    bottom: .15rem;
    right: .5rem;
    background-size: contain;
    background-position: center;
  }
  @media screen and (max-width: 769px) {
    .quote {
      width: 100%;
      display: block;
      float: revert;
      margin-left: 0;
    }
  }
  
  /**/
  
  .formFb {
     box-sizing: border-box;
  }
  .formFb{
  width: 100%;
  max-width: 455px;
  font-size: 17px;
  padding: .6em 1em;
  display: block;
  margin: 20px auto;
  border-radius: .5em;
  background-image: linear-gradient(90deg, #3580ed 50%, transparent 50%), linear-gradient(90deg, #3580ed 50%, transparent 50%), linear-gradient(0, #3580ed 50%, transparent 50%), linear-gradient(0, #3580ed 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 10px 2px, 10px 2px, 2px 10px, 2px 10px;
  animation: marching-ants 400ms infinite linear;
  }
  @keyframes marching-ants {
  0% {
  background-position: 0 0, 10px 100%, 0 10px, 100% 0;
  }
  100% {
  background-position: 10px 0, 0 100%, 0 0, 100% 10px;
  }
  }
  .formFb__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  .formFb__text {
  display: block;
  margin: 0;
  }
  .formFb__action {
  margin-bottom: .5em;
  text-align: center;
  }
  .formFb__counter {
  font-size: .925em;
  text-align: center;
  }
  .formFb__counter span {
  font-weight: bold !important;
  }
  .formFb__counter .red {
  color: #f20 !important;
  }
  .formFb__img {
  max-width: 250px;
  margin: 1em 0;
  }
  .formFb__img img {
  width: 100%;
  max-width: 100%;
  }
  .formFb__price {
  display: flex;
  align-items: center;
  flex-direction: column;
  }
  .formFb__price--p {
   display: flex;
   align-items: center;
   flex-direction: column;
  }
  .formFb__price--old {
  font-size: 1.15em;
  text-decoration: line-through;
  margin-top: .5em;
  }
  .formFb__price--txt {
  /*margin-bottom: .15em;*/
  font-weight: bold;
  font-size: 1.25em;
  }
  .formFb__price--new {
  font-size: 2em;
  font-weight: bold;
  color: #f20;
  }
  .formFb__timer {
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  .formFb__timer p {
  /*margin-right: .5em;*/
  margin-bottom: .25em;
  }
  .formFb__timer .timer {
  display: flex;
  font-size: 2em;
  color: rgb(88, 88, 88);
  }
  .formFb__timer .timer .hour {
  margin-right: .15em;
  }
  .formFb__timer .timer .minute {
  margin: 0 .15em;
  }
  .formFb__timer .timer .second {
  margin-left: .15em;
  }
  .formFb__inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  max-width: 300px;
  width: 100%;
  }
  .formFb__inputs label {
  font-size: .941175em;
  margin-bottom: .25em;
  }
  .formFb__inputs input {
  display: block;
  border: 1px solid #3578e563;
  padding-left: 10px;
  padding: .5em .65em;
  width: 100%;
  margin: 0 auto;
  }
  .formFb__btn {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: .65em 0;
  margin-bottom: 1em;
  background: #3580ed;
  border: 1px solid #3580ed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  font-size: 1em;
  transition: transform .4s;
  cursor: pointer;
  }
  .formFb__btn:hover, .formFb__btn:active {
  transform: scale(.95);
  }
  .formFb__steps {
   display: flex;
   width: 100%;
   max-width: 300px;
   justify-content: space-between;
   margin-bottom: 1em;
  }
  .formFb__step {
   width: 50px;
   min-width: 50px;
   max-width: 50px;
   height: 50px;
   position: relative;
  }
  .formFb__step--line {
   flex-grow: 1;
   padding: .5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
  }
  .formFb__step--line:after {
   position: absolute;
   width: 80%;
   content: '';
   height: 1px;
   top: 50%;
   transform: translateY(-50%);
   left: 10%;
   border-bottom: 2px dashed #3580ed;
  }
  .formFb__step img {
   width: 100%;
   max-width: 100%;
  }
  
  
  /**/
  
  .fbcontainer{
      padding: 10px 0;
  }
  
  .fbcontainer .block {
    display: block;
    font-size: 17px;
  }
  .facebook{
      background-color: #fff;
      border-radius: 10px 10px 0 0;
      box-shadow: 0px 0px 10px #eee;
  }
  
  .fbhead{
      display: flex;
      justify-content: space-between;
  }
  
  .fbtitle{
      font-size: 20px;
      font-weight: 500;
  }
  
  .stars{
      color: #5890ff;
      cursor: pointer;
  }
  
  .stars i:hover{
      color: #95b5f4;
  }
  
  .stars_number{
      font-weight: bold;
      margin-right: 5px;
  }
  
  .avatar{
      margin-right: 10px;
  }
  
  .avatars{
      position: relative;
      height: 35px;
      margin-bottom: 5px;
  }
  
  .avatars img{
      width: 35px;
      border-radius: 50px;
      border: 2px solid #fff;
  }
  
  .avatars img:nth-child(1){
      position: absolute;
      z-index: 5;
  }
  
  .avatars img:nth-child(2){
      position: absolute;
      left: 27px;
      z-index: 4;
  }
  
  .avatars img:nth-child(3){
      position: absolute;
      left: 54px;
      z-index: 3;
  }
  
  .avatars img:nth-child(4){
      position: absolute;
      left: 81px;
      z-index: 2;
  }
  
  .avatars img:nth-child(5){
      position: absolute;
      left: 108px;
      z-index: 1;
  }
  
  .fbrecommends_numbers span{
      color: gray;
      font-size: 14px;
  }
  
  .fbrecommends_numbers i{
      color: #f36b7f;
      margin-right: 5px;
  }
  
  .fbrecommends{
      margin: 10px 0;
  }
  
  .lined{
      border-bottom: 1px solid gray;
  }
  
  .fbcomments{
      box-shadow: 0px 10px 10px #eee;
      border-radius: 0 0 10px 10px;
  }
  
  .avatar img{
      width: 50px;
      height: 50px;
      border-radius: 50px;
  }
  
  .onecomment{
      background-color: #eeee;
      border-radius: 10px;
      padding: 10px;
      display: flex;
      position: relative;
      margin-top: 10px;
  }
  
  .name, .date{
      color: gray;
  }
  .date span {
      color: gray;
      font-size: .75rem;
      font-weight: bold;
  }
  .name i{
      color: #f36b7f;
      margin: 0 5px;
  }
  
  .text{
      margin-top: 10px;
  }
  
  .fb-absolute{
      position: absolute;
      right: 10px;
      width: 25px;
      height: 25px;
      border-radius: 50px;
      background: rgb(217, 217, 217);
      text-align: center;
      color: #fff;
      line-height: 25px !important;
  }
  
  input[type='file']{
      opacity: 0;
      width: 1px;
      height: 1px;
  }
  
  
  #commentForm .form__avatar {
      overflow: hidden;
  }
  .avatar {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
  .avatar img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  
  .form__avatar{
      display: flex;
      width: 50px;
      height: 50px;
      background: url(../img/userpic.png);
      background-size: cover;
      border-radius: 50px;
      cursor: pointer;
  }
  
  .form__inputs{
      width: 100%;
  }
  
  #commentPush{
      width: 95%;
      background-color: #5890ff;
      color: #fff;
      border: none;
      padding: 10px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
      max-width: 300px;
      margin-top: 10px;
  }
  
  #inputCommentText{
      width: 90%;
      border: 2px solid #eee;
      padding: 5px;
      margin-top: 10px;
      max-width: 290px;
      border-radius: 5px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      resize: none;
      font-size: 16px;
  }
  
  #inputCommentName{
      width: 90%;
      border: 2px solid #eee;
      padding: 5px;
      max-width: 290px;
      border-radius: 5px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      resize: none;
      font-size: 16px;
  }
  
  #commentPush i{
      margin-left: 5px;
  }
  
  .live img{
      border-radius: 10px;
      margin-top: 10px;
  }
  .fbcontainer a {
    font-weight: bold;
  }
  body {
    position: relative;
  }
  #inputCommentName {
    display: block;
  }
  #inputCommentText {
    display: block;
  }
  .patient {
    margin-bottom: 1rem;
  }
  .patient img {
    display: block;
    margin-bottom: .4rem;
  }
  .patient p{
    margin: 0;
    margin-top: .15rem;
    font-weight: bold;
    text-align: center;
  }
  .blank__red {
    padding: .5rem;
    background: red;
    color: #fff;
    text-align: center;
  }
  .blank__red span {
    color: inherit;
    font-weight: bold;
  }
  .flex {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 1rem;
  }
  
  .flex a {
      width: 100%;
      max-width: 600px;
      padding: 1rem;
      background: #3578e5;
      background: linear-gradient(90deg, #041e37 0, rgba(9, 70, 121, 1) 35%, #5181b0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none !important;
      color: #fff;
      line-height: 1.2;
      font-size: 2rem;
      border-radius: 1rem;
      transition: transform .4s;
  }
  
  .flex a:hover, .flex a:active {
      transform: scale(.95);
  }
  .name {
    padding-right: 30px;
  }
  .formFb__price--new:after{
    content: '*';
  }