_doc.scss 2.69 KB
.doc-btn {
  margin-top: 29px;
  .btn_ {
    background: #fff !important;
    color:#333;
    padding: 0 22px;
  }
}

.doc-name {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.doc-surname {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 6px;
}

.specialty {
  font-size: 11px;
  text-transform: uppercase;
  color: $link-color;
  margin-top: 12px;
  a {
    text-decoration: none;
  }
}

.doc-txt {
  margin-top: 15px;
  font-size: 14px;
}

.doctor-img {
  width: 165px;
  height: 165px;
  display: table-cell;
  vertical-align: bottom;
  overflow: hidden;
  background: grey;
  text-align: center;
  border-radius: 100%;
  @include Gradient-horisontal(#f5f5f5, #e6e6e6);
  img {
    vertical-align: bottom;
    max-width: 100%;
    max-height: 100%;
  }
}

.doctors-col {
  margin-top: 60px;
  &:nth-child(2n +3) {
    clear: both;
  }
}

.slider-doctors-wrapper {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .doctor-img {
    width: 95px;
    height: 95px;
  }
}
@media (max-width: 767px) {
  .doctor-img {
    width: 165px;
    height: 165px;
  }
  .doctors-col {
    text-align: center;
    &:nth-child(2n +3) {
      clear: none;
    }
    .doctor-img-wr {
      display: inline-block;
      width: 165px !important;
      float: none;
      margin-bottom: 16px;
      padding: 0 !important;
    }
  }

  .doc-btn {
    text-align: center;
    .btn_ {
      display: inline-block;
      float: none;
    }
  }
}

/***slider doc***/

.slider-doc-items {
  float: left;
  //margin-left: -23px;
}


.slider-doctors-wrapper {
  position: relative;
  padding-bottom: 20px;
  margin-top: 27px;
  .owl-nav {
    display: none;
  }
}
.slider-doc-main {
  width: 40%;
  height: 100%;
  left: 50%;
  margin-left: -20%;
  position: absolute;
  @include Gradient-horisontal(#f3f3f3,#e6e6e6)
}

.slider-doc-main-item-img {
  float: left;
  display: table;
  height: 100%;
  div {
    vertical-align: bottom;
    display: table-cell;
    img {
      vertical-align: bottom;
    }
  }
}

.slider-doc-main-item-txt {
  float: left;
  display: inline-block;
  max-width: 368px;
  margin-top: 114px;

  .doc-name, .doc-surname, .specialty, .doc-txt, .doc-btn  {
    float: left;
    clear: both;
  }
}

.slider-doc-main-items {
  display: table;
  height: 100%;
}

.btns-doc {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 18px;
  div {
    cursor: pointer;
    width: 10px;
    height: 18px;
    float: left;
    background: url("../images/slider-left.svg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 10px 18px;
    &.right {
      float: right;
      background: url("../images/slider-right.svg");
    }
  }
}