  #post-detail{
    margin-bottom: 30px;
}

#post-detail .post-header{
    padding: 30px 0;
    margin-bottom: 40px;
    background-position: center;
    background: #e9e1dd;
}

#post-detail .post-header .post-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

#post-detail .post-content p,
#post-detail .post-content ul,
#post-detail .post-content ol {
    margin: 25px 0;
    font-family: var(--custom-first-font);
    line-height: 1.4;
    font-weight: 400;
    color: #000;
}

#post-detail .post-content h1 {
    font-size: 28px;
}

#post-detail .post-content h2 {
    font-size: 24px;
}

#post-detail .post-content h3 {
    font-size: 20px;
}

#post-detail .post-content h4,
#post-detail .post-content h5 {
    font-size: 16px;
}

#post-detail .post-content h1,
#post-detail .post-content h2,
#post-detail .post-content h3,
#post-detail .post-content h4 {
    margin: 25px 0;
    line-height: 1.2;
    font-family: var(--custom-first-font);
    color: #000;
    font-weight: bold;
}

#detail-content .post-content ol {
    list-style: decimal !important;
    padding-left: 20px;
}

#post-detail.post-content ul {
    padding-left: 20px;
}

#post-detail.post-content ul li {
    list-style: disc;
}

#post-detail.post-content p img {
    margin-bottom: 20px;
}

#post-detail .post-content a {
    color: #000;
    font-weight: 600;
}

#post-detail .post-content img {
    max-width: 100%;
    height: auto;
}

#post-detail .post-header .contents{
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

#post-detail .post-header .post-category {
    font-weight: 600;
    color: #000;
    font-size: 26px;
    font-weight: 400;
}

#post-detail .post-header .post-title {
    color: #000;
    font-size: 48px;
    font-weight: 900;
}

#post-detail .post-content figure {
    margin: 0px;
    border: 6px solid var(--primary-brown);
    border-radius: 25px;
    overflow: hidden;
}

#post-detail .sidebar-related-posts {
    margin-top: 30px;
    background-color: var(--head-color);
    box-shadow: -2.94px 4px 7px #121A0D00;
    border-radius: 17px;
    overflow: hidden;
}

#post-detail .sidebar-related-posts .sidebar-related-title {
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    padding: 25px 0;
}

#post-detail .sidebar-related-posts  .sidebar-related-item {
    padding: 7px 30px;
    color: #000000;
    font-size: 18px;
    transition: all 0.5s;
}

#post-detail .sidebar-related-posts  .sidebar-related-item a {
    color: #fff;
}

#post-detail .sidebar-related-posts  .sidebar-related-item:hover{
    color: #000;
    opacity: 0.5;
}

#post-detail .sidebar-related-posts .sidebar-related-item.one-bg {
    background-color: #bc9f77;
}

/* form */

#sidebar-area .sidebar-form {
  background:radial-gradient(closest-side at 50% 50%, var(--primary-brown) 0%, var(--secondary-brown) 100%) 0% 0% no-repeat padding-box;
  padding: 45px 28px;
  overflow: hidden;
  position: relative;
  box-shadow: -2.94px 4px 7px #121A0D00;
  border-radius: 17px;
}

#sidebar-area .sidebar-form-title {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

#sidebar-area .sidebar-form .input-area {
  margin-bottom: 15px;
}

#sidebar-area .sidebar-form #sidebar-form {
  position: relative;
  z-index: 1;
}

#sidebar-area .sidebar-form .input-area input {
  padding: 20px 30px;
  width: 100%;
  border-radius: 9px;
  color: #000;
}

#sidebar-area .sidebar-form .input-area input::placeholder {
  color: #000;
  font-size: 18px;
}

#sidebar-area .sidebar-form .input-area input#phoneNumber {
  color: #000;
  font-size: 18px;
  padding: 20px 50px!important;
}

#sidebar-area .sidebar-form .input-area label {
  width: 100%;
  border: 1px dashed #fff;
  padding: 15px 26px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  border-radius: 9px;
  text-align: center;
  cursor: pointer;
}

#sidebar-area .sidebar-form .form-button {
    width: 100%;
    background: var(--gradient-secondary);
    padding: 15px;
    border-radius: 9px;
    color: #000;
    font-size: 20px;
    border: 2px solid #fff;
    font-weight: 500;
    cursor: pointer;
}


/* pagination */

.pagination {
  margin-top: 30px;
  display: block;
  width: 100%;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  color: #F1C130;
  margin-right: 8px;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li:hover a {
  color: #1D719D;
}
.pagination ul li.active a {
  border-color: #F1C130;
  background-color: #F1C130;
  color: #fff;
  font-weight: 700;
}
.pagination ul li span,
.pagination ul li a {
  border: solid 1px #e4e4e4;
  background-color: #f4f4f4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #939393;
  font-size: 16px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}



#phoneNumber{
    padding: 15px 50px!important;
}

/* category */
#our-services {
    margin-bottom: 30px;
}
.our-services-list .col-sm-6 {
    margin-bottom: 25px;
}

#our-services .our-services-list .os-item {
    border-radius: 30px;
    background-color: #fff;
    box-shadow: -2.94px 4px 7px #121A0D21;
    overflow: hidden;
}

#our-services .os-item .os-content-wrapper {
    padding: 25px 20px;
    background: #f3f3f3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#our-services .os-item .os-thumb{
    margin: 0px;
}

#our-services .os-content-wrapper .os-thumb {
    margin: 0px;
}

#our-services .os-content-wrapper .os-title {
    color: var(--head-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

#our-services .os-content-wrapper .os-desc{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
    font-size: 18px;
}

/* iletişim */
#post-detail.contact-page {
    margin-bottom: 30px;
}

#post-detail .contact-address-col iframe {
    border: 5px solid #000;
    border-radius: 30px;
    height: 410px;
}

#post-detail .contact-address-col .contact-address-title {
    color: #010101;
    /* padding: 15px 0px; */
    font-size: 30px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 20px;
}

#post-detail .contact-address-col .contact-address-list-item {
    gap: 15px;
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.contact-address-list {
    padding: 30px 10px;
}
#post-detail .contact-address-col .contact-address-list-item a{
    gap: 15px;
    color: #000;
}

#post-detail .contact-address-col .contact-address-list-item svg {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 8px;
}

#post-detail .contact-address-col .contact-address-button-cont {
    margin-top: 40px;
}

#post-detail .contact-address-col .contact-page-whatsapp-btn {
    width: 100%;
    display: flex;
    background: linear-gradient(93deg, #27A11A 0%, #34D923 100%) 0% 0% no-repeat padding-box;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 26px;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

#post-detail .contact-address-col .contact-page-call-btn {
    width: 100%;
    display: flex;
    background: #F1C130;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 26px;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

/* Online Randevu */

#post-detail .meeting-form-area {
    position: relative;
    z-index: 2;
    padding: 60px;
    border-radius: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}

#post-detail .meeting-form-area .contact-panel__title {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

#post-detail .meeting-form-area .contact-panel__desc {
    color: #000;
    font-size: 18px;
    text-align: center;
}

#post-detail .meeting-form-area label {
    font-weight  : 700;
    line-height  : 1;
    margin-bottom: 10px;
}

#post-detail .meeting-form-area label.error {
    color      : red;
    font-size  : 14px;
    font-weight: 400;
    margin     : 7px 0 0 0;
}

#post-detail .meeting-form-area .form-group {
    position     : relative;
    margin-bottom: 30px;
}

#post-detail .meeting-form-area .form-control {
    font-size       : 14px;
    height          : 60px;
    padding         : 0 20px;
    border-radius   : 55px;
    background-color: #ffffff;
    border          : 2px solid #e6e8eb;
}

#post-detail .meeting-form-area .form-control:focus {
    border-color    :#F1C130;
    background-color: #ffffff;
}

#post-detail .meeting-form-area .form-control::-webkit-input-placeholder {
    color: #26365e;
}

#post-detail .meeting-form-area .form-control:-moz-placeholder {
    color: #26365e;
}

#post-detail .meeting-form-area .form-control::-moz-placeholder {
    color: #26365e;
}

#post-detail .meeting-form-area .form-control:-ms-input-placeholder {
    color: #26365e;
}

#post-detail .meeting-form-area textarea.form-control {
    border-radius: 20px;
    min-height   : 105px;
    padding-top  : 10px;
}

#post-detail .meeting-form-area .form__title {
    font-size    : 18px;
    line-height  : 1;
    margin-bottom: 20px;
}

/* Input Radio */
#post-detail .meeting-form-area .label-radio {
    display      : block;
    position     : relative;
    padding-left : 26px;
    margin-bottom: 0;
    cursor       : pointer;
    font-size    : 13px;
    font-weight  : 400;
    color        : #848e9f;
}

#post-detail .meeting-form-area .label-radio input {
    position: absolute;
    z-index : -1;
    opacity : 0;
}

#post-detail .meeting-form-area .radio-indicator {
    position     : absolute;
    top          : -1px;
    left         : 0;
    height       : 17px;
    width        : 17px;
    background   : transparent;
    border       : 2px solid #eaeaea;
    border-radius: 50%;
}

::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
    opacity: 0;
}

/* doctor page */
  #post-detail .post-header.doctor-header{
      margin-bottom: 0px;
  }
  #post-detail .doctor-inner-area {
      background-color: #aa928842;
      padding: 50px 0 0;
      margin-bottom: 80px;
  }

  #post-detail .doctor-inner-area .doctor-image {
      padding: 25px;
      background: #fff;
      height: 100%;
  }

  #post-detail .doctor-inner-area .doctor-btn-group {
      margin-top: 25px;
      gap: 20px;
  }

  #post-detail .doctor-inner-area .doctor-btn-group .doctor-link-1 {
      min-width: 180px;
      display: inline-block;
      text-align: center;
      padding: 6px;
      background: var(--secondary-brown);
      border-radius: 9px;
      color: var(--text-light);
      font-size: 16px;
  }

  #post-detail .doctor-inner-area .doctor-btn-group .doctor-link-2 {
      min-width: 180px;
      display: inline-block;
      text-align: center;
      padding: 6px;
      background: var(--gradient-primary);
      border-radius: 9px;
      color: var(--text-dark);
      font-size: 16px;
  }

  #post-detail .doctor-inner-area .post-scroll{
      max-height: 540px;
      overflow-y: scroll;
  }

  #post-detail .doctor-inner-area .post-content p,
  #post-detail .doctor-inner-area .post-content ul,
  #post-detail .doctor-inner-area .post-content ol {
      margin: 25px 0;
      font-family: var(--custom-first-font);
      line-height: 1.4;
      font-weight: 400;
      font-size: 16px;
      color: #000;
  }

  #post-detail .doctor-inner-area .post-content h1 {
      font-size: 28px;
  }

  #post-detail .doctor-inner-area .post-content h2 {
      font-size: 24px;
  }

  #post-detail .doctor-inner-area .post-content h3 {
      font-size: 20px;
  }

  #post-detail .doctor-inner-area .post-content h4,
  #post-detail .doctor-inner-area .post-content h5 {
      font-size: 16px;
  }

  #post-detail .doctor-inner-area .post-content h1,
  #post-detail .doctor-inner-area .post-content h2,
  #post-detail .doctor-inner-area .post-content h3,
  #post-detail .doctor-inner-area .post-content h4 {
      line-height: 1.2;
      font-family: var(--custom-first-font);
      color: #000;
      font-weight: bold;
  }



  #post-detail .doctor-inner-area .post-content a {
      color: #000;
      font-weight: 600;
  }

  #post-detail .doctor-inner-area .post-content img {
      max-width: 100%;
      height: auto;
  }

  #post-detail .doctor-inner-area .post-header .contents{
      line-height: 1.2;
      width: 100%;
      text-align: center;
  }

  #post-detail .doctor-inner-area .post-right-detail {
      height: 100%;
      background-color: #fff;
      padding: 25px;
      max-height: 550px;
      overflow-y: auto;
  }

  #post-detail .doctor-inner-area .post-detail-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #aa9288;
  }
