/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}
.slot-wrapper {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.slot-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
}

.slot-btn {
    background: #1abc9c;
    color: #000;
    border: none;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.slot-btn:hover {
    background: #16a085;
}

.slot-btn:disabled {
    background: #e74c3c;
    color: #fff;
    cursor: not-allowed;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

label.required:after {
  content: '*';
  color: #DC3545 !important;
  margin-left: 2px;
}
.dashboard-body .table .btn.btn-sm{
  padding: 8px;
  font-size: 15px;
  border-radius: 4px;
}

.dashboard-body .btn--lg{
  padding: 15px 25px;
}

.badge--pending,
.badge--warning,
.badge--success,
.badge--primary,
.badge--danger,
.badge--dark {
    border-radius: 999px;
    padding: 2px 15px;
    position: relative;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.badge--warning {
    background-color: rgba(255, 159, 67, 0.1);
    border: 1px solid #ff9f43;
    color: #ff9f43;
}

.badge--success {
    background-color: rgba(40, 199, 111, 0.1);
    border: 1px solid #28c76f;
    color: #28c76f;
}

.badge--danger {
    background-color: rgba(234, 84, 85, 0.1);
    border: 1px solid #ea5455;
    color: #ea5455;
}

.badge--primary {
    background-color: rgba(115, 103, 240, 0.1);
    border: 1px solid #4634ff;
    color: #4634ff;
}

.badge--dark {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #000000;
    color: #000000;
}


.show-filter {
  display: none;
}
.alert.kyc-alert{
  background: #ffecb5 !important;
  border: #ff9f43;
}


@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}





/* -----------------------------------------------------------------
    -  Doctor details page
----------------------------------------------------------------- */
.profile-header {
    margin-bottom: 2rem;
    position: relative;
}

.profile-header_bg:before {
    content: '';
    position: absolute;
    /* background-color: rgba(0,0,0,0.5); */
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.header-img-top {
    width: 100%;
    height: auto;
}

.header-body {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaedf2;
    margin-top: -3.3rem;
}

.avatar {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    width: 6rem;
    height: 6rem;
}

@media(min-width: 576px) {
    .header-body {
        margin-top: -4.5rem;
    }

    .avatar {
        width: 8rem;
        height: 8rem;
    }

}

.avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.header-avatar .avatar-img {
    border: 4px solid #fff;
}

.header-pretitle {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #677788;
    font-size: 11px;
    margin: 0;
}

.avatar-name {
    font-size: 18px;
    margin: 0;
}

@media(min-width: 576px) {
    .avatar-name {
        font-size: 21px;
    }
}

.review-forms {
    padding: 25px;
    background-color: #f1f1f1;
}


/*Social link -----------------*/

.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.social-links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    background-color: #1b4e9b;
    margin: 0 2px;
    display: inline-block;
    text-align: center;
    font-size: 17px;
    border-radius: 3px;
}

.social-links a:first-child {
    margin-left: 0;
}

.social-links a.tw {
    background-color: #00aeef;
}

.social-links a.ins {
    background-color: #E1306C;
}

.social-links a.pr {
    background-color: #c8232c;
}

.social-links a.li {
    background-color: #0077b5;
}













.doctor-details-content {
    padding-bottom: 70px;
    /*background-color: #f9f9f9;*/
}



/*[Table]
--------------------------*/
.table td,
.table th {
    padding: 8px 10px;
    border-top-color: #e4e5e7
}

.table>thead>tr>th {
    border-bottom: 1px solid #e4e5e7
}

.table-sm td,
.table-sm th {
    padding: 4.8px !important;
    padding: .3rem !important
}

.table-nowrap td,
.table-nowrap th {
    white-space: nowrap
}

.table-sm td,
.table-sm th {
    font-size: 13px;
    font-size: .8125rem
}

.table-bordered {
    border: 1px solid #e4e5e7
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #e4e5e7
}

.dataTables_wrapper .dataTables_paginate .pagination .page-item {
    margin-left: 6.4px;
    margin-left: .4rem
}

.dataTables_wrapper .pagination .page-item>.page-link {
    color: #212529;
    border: 0;
    outline: 0 !important
}

.dataTables_wrapper .dataTables_paginate .pagination .page-item>.page-link {
    border-radius: 3px;
    height: 32px;
    height: 2rem;
    min-width: 32px;
    min-width: 2rem;
    padding: 8px;
    padding: .5rem;
    text-align: center;
    line-height: 16px;
    line-height: 1rem;
    font-weight: 600
}

.dataTables_wrapper .pagination .page-item.active>.page-link {
    background: #37a000;
    color: #fff
}

.dataTables_wrapper .pagination .page-item.first>.page-link,
.dataTables_wrapper .pagination .page-item.last>.page-link,
.dataTables_wrapper .pagination .page-item.next>.page-link,
.dataTables_wrapper .pagination .page-item.previous>.page-link {
    background: #f4f4f5
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
    border: 0;
    border-radius: 5px
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 0;
    background: 0 0
}

.jsgrid input,
.jsgrid select,
.jsgrid textarea {
    border: 1px solid #e4e5e7
}

.jsgrid-filter-row>.jsgrid-cell {
    background: 0 0
}

.jsgrid-cell {
    border: #e4e5e7 1px solid
}

.jsgrid-alt-row>.jsgrid-cell {
    background: rgba(0, 0, 0, .05)
}

.jsgrid-selected-row>.jsgrid-cell {
    background: #c4e2ff;
    border-color: #c4e2ff
}

.ui-widget *,
.ui-widget button,
.ui-widget input,
.ui-widget select {
    font-family: 'Nunito Sans', sans-serif
}

.ui-widget.ui-widget-content {
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, .3);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, .3);
    border: 0
}

.ui-dialog .ui-dialog-content {
    padding: 15px
}

.details-form-field:first-child {
    margin-top: 10px
}

.details-form-field:last-child {
    margin-bottom: 10px
}

.details-form-field button {
    display: block;
    width: 100px;
    margin: 0 auto
}

input.error,
select.error {
    border: 1px solid #f99;
    background: #fee
}

label.error {
    float: right;
    margin-left: 100px;
    font-size: .8em;
    color: #f66
}

.config-panel {
    padding: 10px;
    margin: 10px 0;
    background: #fcfcfc;
    border: 1px solid #e9e9e9;
    display: inline-block
}

.config-panel label {
    margin-right: 10px
}

table.dataTable {
    /*color: #677788;*/
    /*font-weight: 300;*/
    font-size: 15px;

}

table.dataTable tfoot td,
table.dataTable tfoot th {
    border-top: 1px solid #e4e5e7;
    border-bottom-width: 0
}

table.table-bordered.dataTable thead th {
    border-top-width: 0
}

table.table-bordered.dataTable tbody tr:first-child td {
    border-top: none
}

td.details-control {
    background: url(../../plugins/datatables/details_open.png) no-repeat center center;
    cursor: pointer
}

tr.details td.details-control {
    background: url(../../plugins/datatables/details_close.png) no-repeat center center
}

.dataTable tbody input,
.dataTable tbody select,
.dataTable tfoot input,
.dataTable tfoot select {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #e4e5e7;
    height: calc(1.5em + .75rem + 2px);
    padding: 6px 12px;
    padding: .375rem .75rem;
    border-radius: .25rem
}

td.highlight {
    background-color: #f5f5f5 !important
}

table.dataTable.display tbody tr>.sorting_1,
table.dataTable.display tbody tr>.sorting_2,
table.dataTable.display tbody tr>.sorting_3,
table.dataTable.order-column tbody tr>.sorting_1,
table.dataTable.order-column tbody tr>.sorting_2,
table.dataTable.order-column tbody tr>.sorting_3 {
    background-color: #fafafa
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: #f1f1f1
}

table.dataTable tbody tr.selected {
    background-color: #b0bed9
}

table.dataTable.display tbody tr.odd.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
    background-color: #a6b4cd
}

table.dataTable.display tbody tr.even.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
    background-color: #acbad5
}

table.dataTable.display tbody tr:hover>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
    background-color: #eaeaea
}

td.highlight {
    font-weight: 700;
    color: #00f
}

tr.group,
tr.group:hover {
    background-color: #ddd !important
}

.toolbar {
    float: left
}

table.dataTable.compact tbody td {
    padding: 4px
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child:before {
    background-color: #37a000
}




.about-text .title {
    /*font-size: 25px;*/
}

.about-text>h2:not(:first-child) {
    margin-top: 3rem;
}

.about-text>h3 {
    margin-top: 1.5rem;
}

.about-text>h2::before,
.about-text>h3::before,
.about-text>h4::before {
    display: block;
    height: 6rem;
    margin-top: -6rem;
    content: "";
}




.about-text .des {
    /*font-size: 16px;*/
    /* color: #373738; */
    line-height: 25px;
    /*color: #677788;*/
    /*font-weight: 300;*/

    /*color: #494f56;*/

}


/*Book Appointment Form-----------*/
.appointment-form {
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eaedf2;
    background-color: #fff;
}

