.fixed-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  z-index: 8;
  font-size: 0; }
  .fixed-btn a {
    width: 68px;
    height: 68px;
    display: block;
    box-shadow: 0px 0px 47.5px 2.5px rgba(58, 152, 66, 0.4);
    border-radius: 50%; }
    .fixed-btn a img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 50%; }
  @media (max-width: 768px) {
  .fixed-btn {
    right: 20px;
    bottom: 20px; } }

.sample-popup {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .sample-popup.opened {
    opacity: 1;
    visibility: visible; }
  .sample-popup .sample-popup-in {
    text-align: left;
    position: relative;
    flex: 0 0 auto;
    margin: auto;
    max-width: 100%;
    box-sizing: border-box;
    display: inline-block;
    width: 320px;
    padding: 45px 60px 27px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    text-align: center;
    color: #000;
    font-family: Montserrat, sans-serif;
    line-height: 1.2; }
  .sample-popup .sample-close {
    z-index: 2;
    position: absolute;
    cursor: pointer;
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
    border-radius: 50%;
    background: #d2d0ca;
    display: flex;
    font-size: 0;
    justify-content: center;
    align-items: center; }
  .sample-popup .sample-popup-image {
    font-size: 0;
    width: 100px;
    margin: 0 auto 25px; }
    .sample-popup .sample-popup-image img {
      border-radius: 50%; }
  .sample-popup .sample-popup-title {
    font-size: 23px;
    font-weight: 500;
    padding: 0 0 11px;
    font-family: Montserrat Alternates, sans-serif; }
  .sample-popup .sample-popup-text {
    color: #cfb172;
    font-size: 13px;
    padding: 0 0 25px; }
  .sample-popup .sample-popup-phone {
    font-size: 15px;
    font-weight: 500;
    padding: 0 0 10px; }
    .sample-popup .sample-popup-phone a {
      text-decoration: none;
      color: inherit; }
  .sample-popup .sample-popup-mail {
    color: #cfb172;
    font-size: 15px;
    padding: 0 0 15px; }
    .sample-popup .sample-popup-mail a {
      text-decoration: none;
      color: inherit; }
  .sample-popup .sample-popup-list a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    min-height: 36px;
    border: 1px solid #d2d0ca;
    padding: 9px 10px;
    text-align: center;
    color: #000;
    font-size: 13px; }
    .sample-popup .sample-popup-list a i {
      flex: 0 0 14px;
      height: 14px;
      font-size: 0;
      margin: 0 10px 0 0; }
      .sample-popup .sample-popup-list a i img {
        max-width: 100%;
        max-height: 100%; }
    .sample-popup .sample-popup-list a:hover {
      text-decoration: underline; }
    .sample-popup .sample-popup-list a + a {
      margin-top: 5px; }
  .sample-popup .sample-popup-btn {
    padding: 20px 0 0;
    text-align: center; }
    .sample-popup .sample-popup-btn a {
      display: inline-block;
      vertical-align: top;
      position: relative;
      padding: 0 16px 0 0;
      color: #7f7f7f;
      font-size: 13px;
      text-decoration: underline; }
    .sample-popup .sample-popup-btn a i {
      position: absolute;
      right: 0;
      top: 50%;
      width: 6px;
      height: 10px;
      font-size: 0;
      margin-top: -5px;
      display: block; }
    .sample-popup .sample-popup-btn a:hover {
      text-decoration: none; }
