:root {
    --purple:#4F46E5;
    --purple-filter:invert(25%) sepia(50%) saturate(5338%) hue-rotate(240deg) brightness(93%) contrast(94%);
    --green:#117639;
    --green-filter:invert(30%) sepia(10%) saturate(7178%) hue-rotate(110deg) brightness(101%) contrast(87%);
    --pink:#B558FE;
    --pink-filter:invert(53%) sepia(67%) saturate(5699%) hue-rotate(247deg) brightness(102%) contrast(99%);
    --orange:#fe8758;
    --orange-filter:invert(60%) sepia(92%) saturate(845%) hue-rotate(322deg) brightness(102%) contrast(99%);
    --yellow:#dadd3a;
    --yellow-filter:invert(88%) sepia(83%) saturate(494%) hue-rotate(0deg) brightness(90%) contrast(92%);
    --blue:#588cfe;
    --blue-filter:invert(65%) sepia(95%) saturate(4064%) hue-rotate(202deg) brightness(101%) contrast(99%);
    --nevyblue:#585bfe;
    --nevyblue-filter:invert(29%) sepia(99%) saturate(1198%) hue-rotate(222deg) brightness(102%) contrast(106%);
    --enggreen:#3dcfb0;
    --enggreen-filter:invert(84%) sepia(33%) saturate(710%) hue-rotate(103deg) brightness(102%) contrast(99%);
}
.purple {
    background-color: var(--purple);
}
.green {
    background-color: var(--green);
}
.pink {
    background-color: var(--pink);
}
.orange {
    background-color: var(--orange);
}
.yellow {
    background-color: var(--yellow);
}
.blue {
    background-color: var(--blue);
}
.nevyblue {
    background-color: var(--nevyblue);
}
.enggreen {
    background-color: var(--enggreen);
}
.color_purple {
    color: var(--purple) !important;
}
.color_green {
    color: var(--green) !important;
}
.color_pink {
    color: var(--pink) !important;
}
.color_orange {
    color: var(--orange) !important;
}
.color_yellow {
    color: var(--yellow) !important;
}
.color_blue {
    color: var(--blue) !important;
}
.color_nevyblue {
    color: var(--nevyblue) !important;
}
.color_enggreen {
    color: var(--enggreen) !important;
}
.filter_purple {
    filter: var(--purple-filter);
}
.filter_green {
    filter: var(--green-filter);
}
.filter_pink {
    filter: var(--pink-filter);
}
.filter_orange {
    filter: var(--orange-filter);
}
.filter_yellow {
    filter: var(--yellow-filter);
}
.filter_blue {
    filter: var(--blue-filter);
}
.filter_nevyblue {
    filter: var(--nevyblue-filter);
}
.filter_enggreen {
    filter: var(--enggreen-filter);
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
ul, li, ol {
    list-style: none;
}
a, a:hover, a:active, a:visited {
    text-decoration: none;
}
p {
    font-family: 'Poppins';
    font-size: 15px;
    color: #000;
    line-height: 23px;
    margin: 0 0 15px 0;
}
p:last-child {
    margin: 0;
}
.details_page {
    padding: 40px 0;
}
/* ---------------------------------------------------------------*/
.search-section {
    padding: 30px 0 60px 0;
    min-height: calc(100vh - 384px);
}
.search_inner {
    padding: 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.listing_page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.search_div {
    padding: 0 60px;
    margin-bottom: 30px;
}
.user-address {
    display: flex;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    width: 70%;
}
.user-address .detect-loc {
    right: 10px;
    position: absolute;
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.user-address input[type=text]::-ms-clear {
    display: none;
}
.user-address .user_info_input {
    width: calc(100% - 240px);
    width: -o-calc(100% - 240px);
    width: -moz-calc(100% - 240px);
    width: -webkit-calc(100% - 240px);
    max-width: 100%;
    position: relative;
}
.user-address.has-not-categories .user_info_input {
    width: 100%;
    max-width: 100%;
}
.search-page-wrap {
    max-width: 490px;
}
.user-address .user_info_input:before {
    content: '';
    width: 40px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/location.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 24px;
    pointer-events: none;
    z-index: 1;
}
[dir="rtl"] .user-address .user_info_input .error {
    right: 0px;
    text-align: right;
}
.user-address .user_info_input .error {
    color: #f00;
    font-weight: normal;
    margin: 0 0 0;
    text-align: left;
    position: absolute;
    font-size: 13px;
    left: 0;
    bottom: -20px;
}
.user_info_input input {
    padding-left: 20px;
    height: 50px;
    border-radius: 0px;
    font-size: 15px;
    width: 100%;
    border-style: solid;
    border-width: 0;
    border-color: #e0e0e0;
    outline: none;
    padding: 0 60px 0 40px;
    background-color: #FFFFFF;
}
.search-btn {
    padding: 14px 30px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #00A9B7;
    outline: none;
    border: none;
    color: #fff;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    cursor: pointer;
    font-weight: 600;
}
.search-btn:hover {
    background-color: #005E66;
}
.user-address .service-input {
    padding: 0 15px;
    font-size: 15px;
    border-style: solid;
    border-color: #cccccc;
    border-width: 0 1px 0 0;
    background-color: #FFFFFF;
    outline: none;
    width: 300px;
}
.user-address select {
    padding: 0 33px 0 13px;
    font-size: 15px;
    border-style: solid;
    border-color: #cccccc;
    border-width: 0 1px 0 0;
    background-image: url(../img/down-arrow_.svg);
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 20px;
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -moz-appearance: tab;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    outline: none;
    width: 240px;
}
/* ----------------------------------------------- */
.cl__inner {
    font-family: 'Poppins';
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.cl__inner::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}
.cl__inner::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #00a9b7;
    background-color: #555;
}
.cl__inner li {
    position: relative;
}
.cl__inner .add-favorate {
    position: absolute;
    z-index: 2;
    left: 5px;
    top: 10px;
}
.cl__inner .add-favorate .fav-check {
    display: inline-block;
    width: 24px;
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}
.cl__inner .add-favorate .fav-check input[type="checkbox"] {
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.cl__inner .add-favorate .fav-check .custom-check {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url(../img/favorate.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.cl__inner .add-favorate .fav-check input[type="checkbox"]:checked~.custom-check {
    background-image: url(../img/favorate-fill.svg);
    background-position: center center;
    background-repeat: no-repeat;
}
.cl__inner li .food-detail {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    color: #626262;
    margin-top: -3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 21px;
}
.cl__inner li .outeranchor {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0px 8px 0 rgba(23, 23, 23, 0.1);
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    gap: 20px;
    align-items: center;
}
.cl__inner li .outeranchor .provider-img {
    width: 170px;
    height: 150px;
    border: 1px solid #ddd;
}
.cl__inner .provider-img {
    background-color: #fff; /*#ddd*/
    border-radius: 10px;
    background-size: 100% auto;/*cover*/
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}
.cl__inner .provider-img::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 63%;
}
.cl__inner .provider-img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 30%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    z-index: -1;
}
.procapt {
    padding: 0;
    width: calc(100% - 190px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.procapt>a {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.cl__inner li strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    position: relative;
    margin-bottom: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.cl__inner li strong .item-list-name {
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000;
    text-transform: capitalize;
    font-size: 20px;
}
.cl__inner li strong .rating {
    position: absolute;
    right: 0;
    top: 0;
}
.span-row {
    display: flex;
    align-items: center;
    font-size: 15px;
    flex-wrap: wrap;
    padding: 15px 0 0 0;
    justify-content: space-between;
    gap: 15px;
}
.distance, .rating {
    background-color: #F5F5F5;
    display: inline-block;
    font-size: 13px;
    box-sizing: border-box;
}
.distance span {
    font-weight: 600;
}
.on-nos {
    color: #626262;
}
.span-row span.dot {
    width: 4px;
    height: 4px;
    background-color: #b0b0b0;
    border-radius: 50%;
}
.rating {
    color: #00A9B7;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: flex-start;
}
.rating img {
    width: 14px;
    margin-right: 5px;
    filter: invert(80%) sepia(68%) saturate(2303%) hue-rotate(353deg) brightness(103%) contrast(102%);
    -webkit-filter: invert(80%) sepia(68%) saturate(2303%) hue-rotate(353deg) brightness(103%) contrast(102%);
    -moz-filter: invert(80%) sepia(68%) saturate(2303%) hue-rotate(353deg) brightness(103%) contrast(102%);
    -o-filter: invert(80%) sepia(68%) saturate(2303%) hue-rotate(353deg) brightness(103%) contrast(102%);
    -ms-filter: invert(80%) sepia(68%) saturate(2303%) hue-rotate(353deg) brightness(103%) contrast(102%);
    margin-top: -3px;
}
.provider-img .rating {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    background-color: transparent;
    padding: 10px 15px;
}
.distance {
    color: #626262;
    background-color: transparent;
    font-size: 14px;
    line-height: 18px;
    flex: 1;
}
.delivery_time_ico {
    width: 10px;
    vertical-align: middle;
    margin-top: -3px;
}
.on-nin {
    color: #626262;
}
.info-block {
    font-size: 13px;
    color: #404040;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    row-gap: 10px;
    background-color: #FBFDFF;
    box-shadow: 0 0 0 1px #F5F5F5 inset;
    border-radius: 12px;
}
.info-block .socail-media-list {
    line-height: normal;
}
.info-block img {
    width: 15px;
}
.info-block i {
    font-size: 18px;
}
.info-block i.available {
    color: #23B14D;
}
.info-block span {
    font-weight: 600;
}
.info-block .info-block-item {
    display: flex;
    align-items: flex-start;
    line-height: 16px;
    width: 100%;
    font-size: 14px;
    align-items: center;
    gap: 7px;
}
.us_info_right .info-block {
    padding: 10px 0;
    row-gap: 5px;
    border-top: none;
}
.us_info_right .info-block .info-block-item, .us_info_right .info-block .info-block-item i {
    font-size: 13px;
}
.view-details-btn, .details-gen-btn {
    background-color: #00A9B7;
    color: #FFFFFF;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 36px;
    align-items: center;
}
.view-details-btn.tag-btn {
    padding: 4px 10px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    background-color: transparent !important;
    position: relative;
    z-index: 0;
}
.background_layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 20px;
    opacity: 0.1;
}
.view-details-btn:hover, .details-gen-btn:hover {
    background-color: #005E66;
}
.socail-media-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.details-gen-btn {
    border-radius: 3px;
    font-size: 16px;
    padding: 7px 15px;
    min-height: initial;
}
.details-gen-btn i {
    margin-right: 10px;
}
.availability-details {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    text-align: center;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 25px;
}
.availability-details i {
    font-size: 18px;
}
.search_right {
    width: 68%;
}
.search_left {
    width: 30%;
}
.radio_list {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.radio-combo {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.radio-main {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.radio-hold input {
    margin: 0;
    vertical-align: top;
    position: absolute;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    opacity: 0;
    cursor: pointer;
}
.radio-hold {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.radio-button {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 1px #00A9B7 inset;
    display: inline-block;
    border-radius: 50%;
    pointer-events: none;
    vertical-align: top;
    position: relative;
}
.radio-button:after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #00A9B7;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.66);
    -webkit-transform: scale(0.66);
    -moz-transform: scale(0.66);
    -ms-transform: scale(0.66);
    -o-transform: scale(0.66);
    display: block;
    margin: -8px 0 0 -8px;
}
.radio-hold input:checked~.radio-button:after {
    opacity: 1;
    visibility: visible;
}
.radio-combo label {
    font-size: 15px;
    cursor: pointer;
}
.select__category {
    background-color: #f8f8f8;
    padding: 25px 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.sort_by_box {
    margin: 0 0 40px 0;
}
.s_categ_title {
    margin: 0 0 15px 0;
}
.s_categ_title>* {
    font-size: 18px;
    color: #000;
    display: block;
    width: 100%;
    font-weight: 600;
    line-height: 24px;
}
.cl__inner li.rest-closed .outeranchor:before {
    content: attr(data-status);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.search_right .map {
    height: 100%;
    width: 100%;
}
.search_right .map iframe {
    width: 100%;
    height: 100%;
}
.cl__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px 0;
}
.cl_top_left {
    width: 100%;
}
.cl_top_right {
    margin: 0 0 15px 0;
}
.cl_top_right select {
    padding: 10px 33px 10px 13px;
    font-size: 15px;
    border: 1px solid #dedede;
    background-image: url('../img/down-arrow_.svg');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -moz-appearance: tab;
    -webkit-appearance: none;
    background-color: #fff;
    outline: none;
    width: 100%;
}
.found_title {
    font-size: 18px;
    color: #000;
    display: block;
    line-height: normal;
    font-family: 'Poppins';
    font-weight: 400;
}
.found_title span {
    color: #00A9B7;
    font-weight: 600;
}
.select-service-msg {
    text-align: center;
    padding: 40px 0;
}
.select-service-msg img {
    width: 100px;
    margin-bottom: 15px;
}
.select-service-msg p {
    font-size: 20px;
    line-height: 28px;
}
.tab__section{
  padding: 0 0 60px 0;
  border-top: 1px solid #d3d4d5;
}
.tab__section_inner .head-area {
    margin: 20px 0;
}
.tab__section .head-area h3  {
  font-weight: 500;
  font-size: 24px;
  line-height: 45px;
  color: #00a9b7;
  text-transform: capitalize;
  text-align: center;
}
.tab__section_inner{
  max-width: 1024px;
  padding: 0 15px;
  margin: 0 auto;
  padding: 0 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.tab__section_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.tab__section_list li{
  border: 1px solid #00A9B7;
  padding: 7px 10px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background-color: #f6feff;
}
.tab__section_list li > *{
  color: #00A9B7;
}
/* ---------------------------------------------------------------
  Detail Page CSS
--------------------------------------------------------------*/
.us_info_section {
    padding: 40px 0;
    box-shadow: 0 5px 35px 0 rgba(158, 127, 103, .12);
}
.us_info_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.us_info_box, .us_info_details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.us_info_box{
    gap: 15px;
}
.us_info_details{
    flex: 1;
}
.us_info_img {
    width: 90px;
    height: 90px;
    border: 1px solid #ccc;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}
.us_info_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.us_info_right {
    width: calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -ms-calc(100% - 110px);
    width: -o-calc(100% - 110px);
}
.usi_name {
    margin: 0 0 10px 0;
}
.usi_title {
    font-size: 22px;
    text-transform: capitalize;
    color: #000;
    display: block;
    width: 100%;
    line-height: 1.2em;
}
.details_page .tab_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.details_page .tab-switch {
    width: 100%;
    padding: 0;
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 17px;
    font-weight: 400;
    background-color: #fff;
    margin-bottom: 35px;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-y: hidden;
    overflow-x: auto;
}
.details_page .tab-switch li {
    text-align: center;
}
.detail-caption {
    display: block !important;
    margin-bottom: 30px;
}
/* Other styles */
.details_page .tab-switch a {
    display: inline-block;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    bottom: -1px;
    transition: 0.3s;
    color: #000;
    text-transform: capitalize;
    font-size: 18px;
    padding-bottom: 15px;
    border-radius: 0;
    height: auto;
    min-width: inherit;
    line-height: normal;
}
.details_page .tab-switch li.active a {
    border-color: #00a9b7;
    color: #00a9b7;
    bottom: 0;
}
.details_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    font-family: 'Poppins';
}
.details-title-hightlight {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    background: #e1fbff;
    padding: 8px 0 8px 28px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 30px;
    color: #353535;
}
.text_box:not(:last-child) {
    margin: 0 0 20px 0;
}
.bold__titlle {
    color: #00a9b7;
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 10px 0;
    font-family: 'Poppins';
}
.details_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.details_list ul li {
    position: relative;
    padding-left: 23px;
    line-height: 23px;
    background: #e1fbff;
    padding: 8px 8px 8px 28px;
    border-radius: 4px;
    cursor: default;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.details_list ul li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 10px;
    top: 16px;
    background-color: #00a9b7;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.accordion_main .details_list ul li::before {
    top: 16px;
}
.accordion_main .details_list ul li, .accordion_main .book-service-btn button {
    font-size: 15px;
}
.post-task-section {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}
.post-task-section .book-service-btn {
    margin-top: 15px;
}
.details_inner .info-block {
    border: none;
    padding: 0;
    font-size: 14px;
    row-gap: 12px;
}
.info-block.for_detail {
    padding: 15px;
    gap: 10px;
}
.details_inner .info-block>div {
    display: block;
    width: 100%;
}
.download-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}
.download-apps a {
    max-width: 200px;
}
.gallery-slider .slider.gallery-for {
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    gap: 30px;
}
.gallery-slider .slider.slider-nav,
.gallery-slider .slider.gallery-nav {
    max-width: 16%;
    height: 491px;
    overflow: hidden;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.sg-image {
    text-align: center;
    position: relative;
}
.sg-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 46.33%;
}
.sg-image>img {
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-image .thumbImg {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 0 10px 0;
}
.slick-initialized .slick-slide.slick-current .thumbnail-image .thumbImg {
    border: 1px solid #00a9b7;
}
.thumb-image .slick-slide {
    padding: 0 10px;
}
.thumb-image .slick-list {
    margin: 0 -10px;
}
.white-bg-box {
    border-radius: 8px;
    max-width: 1310px;
    margin: 0 auto;
    background-color: #fff;
    padding: 15px;
}
.accordion_box {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.ac-panel {
    box-shadow: 0px 0px 4px 0px rgba(8, 15, 52, 0.25);
    border-radius: 8px;
    background: #fff;
}
.ac-panel .accordion {
    cursor: pointer;
    padding: 10px 60px 10px 15px;
    width: 100%;
    height: auto;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    position: relative;
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    background: #FFF;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.accordion[aria-expanded='true'] {
    background-color: #00a9b7;
    color: #fff;
}
.ac-panel .accordion:after {
    content: "";
    background-color: #00a9b7;
    color: #fff;
    position: absolute;
    text-align: center;
    right: 15px;
    top: 9px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(../img/pluse.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.accordion[aria-expanded='true']:after {
    background-color: #fff;
    background-image: url(../img/close.svg);
}
.ac_content {
    padding: 15px;
    display: none;
}
.ac_content .details_list i {
    margin-left: 10px;
    cursor: pointer;
}
.ac_content .details_list ul, .credentials-main .details_list ul {
    grid-template-columns: repeat(1, 1fr);
}
.rating_ .rating-reviews {
    margin-right: 10px;
}
.rating-stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 3px;
}
.rating-stars::before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, #FFC107 var(--percent), #D4D4D4 var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: -5px;
}
.rating-help {
    margin-left: 10px;
    cursor: pointer;
}
.review-main {}
.review-main .loader, .slot-content .loader {
    display: none;
    text-align: center;
}
.review_box {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 15px;
}
.review_box:not(:last-child) {
    margin: 0 0 20px 0;
}
.rating_title {
    font-size: 16px;
    color: #000;
    line-height: normal;
    display: block;
    width: calc(100% - 65px);
    width: -webkit-calc(100% - 65px);
    width: -moz-calc(100% - 65px);
    width: -ms-calc(100% - 65px);
    width: -0-calc(100% - 65px);
}
.rating_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.user_detail {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}
.user_img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.rating_ {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.rating_date {
    font-size: 15px;
    font-style: normal;
}
.review_box p {
    margin-top: 10px;
}
.pagination-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.pagination-section .pagination-left>span {
    font-weight: 600;
}
.pagination-section .pagination-right ul {
    margin-bottom: 0;
    margin-left: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination-section .pagination-right a,
.pagination-section .pagination-right span {
    float: left;
    padding: 0 14px;
    line-height: 38px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-left-width: 0;
    color: #000000;
}
.pagination-section .pagination-right li {
    display: inline;
}
.pagination-section .pagination-right .active a,
.pagination-section .pagination-right .active span {
    color: #ffffff;
    cursor: default;
    background-color: #00A9B7;
    font-weight: 600;
}
.pagination-section .pagination-right li:not(.active) a:hover {
    background-color: #F5F5F5;
}
.pagination-section .pagination-right li:first-child a,
.pagination-section .pagination-right li:first-child span,
.pagination-section .pagination-right .pagination-disabled {
    border-left-width: 1px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}
.review-main .pagination-section {
    margin-top: 20px;
    font-size: 14px;
}
.review-main .pagination-section .pagination-right a,
.review-main .pagination-section .pagination-right span {
    line-height: 32px;
}
.view-more-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.view-more-section .view-more-btn {
    padding: 10px 15px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.view-more-section .view-more-btn:hover {
    background-color: #eeeeee;
}
.business-hours td {
    padding: 10px 15px;
}
.business-hours td.title {
    font-weight: 600;
}
.business-hours td span {
    margin-bottom: 5px;
    display: block;
}
.business-hours td span:last-child {
    margin-bottom: 0;
}
.credentials-table {
    border: 1px solid #ccc;
    max-width: 600px;
    width: 100%;
}
.credentials-table td {
    padding: 10px;
    border: 1px solid #ccc;
}
.credentials-table .title {
    font-weight: 500;
}
.credentials-table .status {
    margin-right: 5px;
}
.credentials-table .status i.not-verified {
    color: #ff0000;
}
.credentials-table .status i.verified {
    color: #23B14D;
}
.credentials-main .details_list ul {
    width: 50%;
}
.credentials-main .details_list ul li {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 20px 5px 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    min-height: 50px;
}
.credentials-main .details_list ul li small {
    font-size: 14px;
}
.credentials-main .details_list ul li:last-child {
    border-bottom: none;
}
.credentials-main .details_list ul li:before {
    top: 13px;
}
.credentials-main .details_list ul li .status {
    font-size: 13px;
    padding: 2px 15px;
    border-radius: 15px;
    font-weight: 500;
}
.credentials-main .details_list ul li .status.verified {
    background-color: #D1E7DD;
    color: #0a3622;
}
.credentials-main .details_list ul li .status.not-verified {
    background-color: #F8D7DA;
    color: #58151c;
}
#services .details_list ul li:first-child .book-service-btn {
    display: block;
}
.book-service-btn button,
.availability-btn, .info-availability-btn, .filter-btn, .share-profile-btn {
    background-color: #00A9B7;
    color: #ffffff;
    padding: 5px 20px;
    border: none;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.book-service-btn button {
    margin: 0;
}
.book-service-btn button:hover,
.availability-btn:hover, .info-availability-btn:hover, .share-profile-btn:hover {
    background-color: #005E66;
}
.info-availability-btn, .filter-btn {
    display: none;
}
.availability-btn {
    display: block;
}
.info-btn-block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-profile-btn {
    margin-left: 15px;
}
.ui-menu .ui-menu-item-wrapper {
    padding: 8px 10px 8px 30px
}
.ui-menu li.ui-autocomplete-category {
    padding: 10px;
    font-weight: bold;
}
.provider-hide {
    display: none;
}
.search-provider-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/loader.gif);
    background-repeat: no-repeat;
    background-position: center calc(50% - 67px);
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.details_page .breadcrumb {
    list-style: none;
    max-width: 1310px;
    margin: 0 auto 30px;
    padding: 0 15px;
}
.details_page .breadcrumb li {
  display: inline;
  font-size: 14px;
  line-height: 22px;
  color: #5d5d5d;
}
.details_page .breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "\f101";
  font-family: FontAwesome;
}
.details_page .breadcrumb li a {
  color: #5d5d5d;
  text-decoration: none;
}
.details_page .breadcrumb li a:hover {
  color: #00A9B7;
}
/* homePage */
/* ============================= 6-10-2024 =========================== */
.hero__section{
    padding: 0;
    overflow: hidden;
}
.hero__inner{
    max-width: 1310px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.hero__left{
    width: 55%;
    padding: 0 15px;
}
.hero__heading{
    margin: 0 0 30px 0;
}
.hero__search_box{
    margin: 0 0 25px 0;
}
.hero__heading h1 {
    font-size: 50px;
    line-height: 55px;
    color: #2f3033;
    display: block;
    font-weight: 600;
}
.hero__right{
    width: 42%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-slider {
    width: 50vw;
    max-height: 640px;
    max-width: 850px;
}
.hero-item{
    position: relative;
}
.hero-item::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 66.5%;
}
.hero__right img{
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.W_100{
    width: 100% !important;
}
.M_0{
    margin: 0 !important;
}
.so__item a {
    color: #00A9B7;
    font-weight: 600;
    cursor: default;
}
.heading__area{
    margin: 0 0 25px 0;
}
.main__title {
    font-weight: 500;
    font-size: 40px;
    font-family: 'poppins';
    line-height: 1.2em;
}
.moreservices__section {
    padding: 50px 0 20px 0;
    margin: 0 0 50px 0;
    background-color: #f3f7f7;
}
.moreservices_inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.moreservices__section .serviceblock strong {
    display: block;
    font-family: 'Rubik';
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 15px;
    line-height: normal;
}
.trending__section{
    padding-bottom: 50px;
}
.trending__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.trending__left{
    width: 47%;
}
.trending__right{
    width: 50%;
}
.btn__box{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    margin: 20px 0 0 0;
}
.main__btn {
    padding: 12px 24px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #00A9B7;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
.main__btn:hover {
    background-color: #005E66;
}
/* Availability */
.availability-content {
    max-width: 540px;
}
.date-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 0 15px 0;
}
.date-tab {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: 100%;
    max-width: 80px;
    min-width: 80px;
    line-height: 22px;
    cursor: pointer;
}
.date-tab.selected, .slot-grid .slot.selected {
    background-color: #00A9B7;
    color: white;
    font-weight: 600;
}
.date-tab span {
    display: block;
}
.slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    min-height: 450px;
}
.available-slots {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.available-slots .label {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
}
.available-slots .label .color-box {
    height: 12px;
    width: 12px;
    margin-top: 3px;
}
.available-slots .label .color-box.available {
    background-color: #00A9B7;
}
.available-slots .label .color-box.not-available {
    background-color: #DADADA;
}
.available-slots .label span {
    margin-left: 10px;
}
.available-slots .slot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.slot-grid .slot {
    background-color: #DADADA;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    flex: 1 0 30%;
    font-weight: 500;
}
/* Chrome, Edge and Safari */
.date-tabs::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
.date-tabs::-webkit-scrollbar-track {
  border-radius: 7px;
  background-color: #FFFFFF;
}
.date-tabs::-webkit-scrollbar-track:hover {
  background-color: #FFFFFF;
}
.date-tabs::-webkit-scrollbar-track:active {
  background-color: #FFFFFF;
}
.date-tabs::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #6E6E6E;
}
.date-tabs::-webkit-scrollbar-thumb:hover {
  background-color: #B1B1B1;
}
.date-tabs::-webkit-scrollbar-thumb:active {
  background-color: #6E6E6E;
}
.share-profile-list {
}
.share-profile-list-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.share-profile-list-item a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.share-profile-list-item:hover a {
    color: #00A9B7;
}
.share-profile-list-item a i {
    margin-right: 10px;
    min-width: 18px;
}
.share-profile-list-item a i > img {
    max-width: 18px;
}
/* ----------------------------------- */
.vehicle-type-price-section{
    margin: 5px 0 0 0;
}
.vehicle-type-price{
    margin: 0px;
}
.vehicle-type-price b {
    font-weight: bold;
}
.vehicle-type-price span , .vehicle-type-price-info{
    color: #6b6868;
    font-size: small;
    font-weight: 500;
}
/* ----------------------------------- */
@media (max-width:1340px) {
    .white-bg-box {
        max-width: calc(100% - 15px);
        max-width: -webkit-calc(100% - 15px);
        max-width: -moz-calc(100% - 15px);
        max-width: -ms-calc(100% - 15px);
        max-width: -o-calc(100% - 15px);
    }
    .search_inner,
    .search_div {
        padding: 15px;
    }
    .search_div,
    .user-address {
        margin-bottom: 0;
    }
}
@media (max-width:1024px) {
    .search_right .map {
        position: relative;
    }
    .search_right .map::before {
        content: '';
        display: block;
        width: 100%;
        padding-top: 56.25%;
    }
    .search_right .map iframe {
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
    }
    .user-address {
        width: 100%;
    }
    .gallery-slider .slider.gallery-for {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero__inner {
        flex-direction: column-reverse;
    }
    .hero__left{
        width: 100%;
    }
    .hero__heading h1 {
        font-size: 45px;
        line-height: 50px;
    }
    .hero__right {
        width: 100%;
        margin: 0 0 30px 0;
        text-align: center;
    }
    .hero-slider {
        width: 100%;
        max-width: 100%;
    }
    .hero__right img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    .heading__area {
        margin: 0 0 15px 0;
    }
    .main__title {
        font-size: 35px;
    }
}
@media (max-width:991px) {
    .search-section {
        padding: 30px 0;
    }
    .select__category {
        padding: 15px;
    }
    .cl__inner {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        padding: 0;
    }
    .gallery-slider .slider.slider-for,
    .gallery-slider .slider.gallery-for,
    .gallery-slider .slider.slider-nav,
    .gallery-slider .slider.gallery-nav {
        max-width: 100%;
        padding: 0;
        width: 100%;
        float: none;
    }
    .gallery-slider .slider.slider-for,
    .gallery-slider .slider.gallery-for {
        margin: 0 0 15px 0;
    }
    .gallery-slider .slider.slider-nav,
    .gallery-slider .slider.gallery-nav {
        max-width: 100%;
        height: auto;
        float: none;
    }
    .details_list ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .search_left {
        width: 100%;
        margin-bottom: 30px;
    }
    .search_right {
        width: 100%;
    }
    .sort_by_box {
        margin-bottom: 20px;
    }
    .filter-btn {
        display: block;
        margin-top: 10px;
    }
    .select__category {
        display: none;
    }
    .hero__section {
        padding: 0 0 40px 0;
    }
    .trending__inner{
        row-gap: 25px;
    }
    .Nearby__Section .trending__inner{
        flex-direction: column-reverse;
    }
    .trending__left {
        width: 100%;
    }
    .trending__right{
        width: 100%;
    }
    .hero__heading h1 {
        font-size: 40px;
        line-height: 45px;
    }
    .credentials-main .details_list ul {
        width: 100%;
    }
}
@media (max-width:767px) {
    .info-availability-btn, .share-profile-btn {
        display: block;
        margin-top: 5px;
        font-size: 14px;
    }
    .availability-btn {
        display: none;
    }
    .gallery-slider .slider.gallery-for {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width:630px) {
    .user-address select {
        padding: 0px 23px 0 10px;
        width: 160px;
        background-position: right 0 center;
    }
    .user-address .user_info_input {
        width: calc(100% - 160px);
        width: -o-calc(100% - 160px);
        width: -moz-calc(100% - 160px);
        width: -webkit-calc(100% - 160px);
    }
    .user_info_input input {
        padding: 0 43px 0 40px;
    }
    .details_list ul {
        grid-template-columns: 1fr;
    }
    .user_img {
        width: 50px;
        height: 50px;
    }
    .rating_title {
        font-size: 16px;
        color: #000;
        line-height: normal;
        display: block;
        width: calc(100% - 65px);
        width: -webkit-calc(100% - 65px);
        width: -moz-calc(100% - 65px);
        width: -ms-calc(100% - 65px);
        width: -o-calc(100% - 65px);
    }
    .rating_ {
        font-size: 15px;
    }
    .rating-stars::before {
        letter-spacing: 0;
        margin-right: 0;
    }
    .book-service-btn button,
    .availability-btn {
        padding: 5px 15px;
        font-size: 15px;
    }
    .usi_name {
        margin: 0 0 5px 0;
    }
    .usi_title {
        font-size: 18px;
    }
    .us_info_img {
        width: 70px;
        height: 70px;
    }
    .us_info_right {
        width: calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -ms-calc(100% - 90px);
        width: -o-calc(100% - 90px);
    }
    .us_info_section {
        padding: 20px 0;
    }
    .pagination-section {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .search_div {
        margin: 0 0 20px 0;
    }
    .deliver-address {
        width: 100%;
    }
    .hero__heading {
        margin: 0 0 20px 0;
    }
    .hero__heading h1 {
        font-size: 30px;
        line-height: 1.2em;
    }
    .main__title {
        font-size: 26px;
    }
}
@media (max-width:580px) {
    .cl__inner li .outeranchor{
        display: block;
    }
    .cl__inner li .outeranchor .provider-img {
        width: 120px;
        height: 110px;
        float: left;
        margin: 0 10px 10px 0;
    }
    .procapt {
        padding: 0;
        width: 100%;
        display: inline;
    }
    .cl__inner li strong {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .info-block {
        row-gap: 7px;
    }

    .availability-details i {
        font-size: 16px;
    }
    .user-address .user_info_input {
        width: 100%;
    }
    .user-address {
        flex-direction: column;
    }
    .user-address select, .user-address .service-input {
        padding: 13px 23px 13px 10px;
        width: 100%;
        background-position: right 0 center;
        border-bottom: 1px solid #cccccc;
        border-right: 0;
    }
    .gallery-slider .slider.gallery-for {
        grid-template-columns: repeat(2, 1fr);
    }
    .credentials-main .details_list ul li {
        padding: 5px 10px 5px 30px;
    }
    .cl__inner li strong{
        display: block;
    }
    .socail-media-list{
        display: block;
    }
    .view-details-btn.tag-btn {
        margin: 0 5px 5px 0;
    }
}
@media (max-width:450px) {
    .info-block .info-block-item, .distance, .availability-details, .view-details-btn {
        font-size: 12px;
    }
    .us_info_img {
        width: 70px;
        height: 70px;
        float: left;
        margin: 0 10px 10px 0;
    }
    .us_info_right {
        width: 100%;
        display: inline;
    }
    .us_info_details{
        display: block;
    }
    .accordion_main .details_list ul li{
        flex-direction: column;
    }
    .ac_content .details_list i {
        margin-left: 3px;
    }
    #services .details_list ul li:first-child .book-service-btn {
        display: block;
        margin: 10px 0 0 0;
    }
    .view-details-btn.tag-btn {
        font-size: 11px !important;
    }
}
@media (max-width:375px) {
    .rating-stars::before {
        font-size: 13px;
    }
    .ac-panel .accordion {
        font-size: 16px;
        line-height: 22px;
    }
    .pagination-section .pagination-right a,
    .pagination-section .pagination-right span {
        padding: 0 11px;
        font-size: 15px;
    }
    .details_list ul li {
        line-height: 21px;
        font-size: 15px;
    }
    .cl__inner li strong .item-list-name {
        font-size: 17px;
    }
    .cl__inner li .outeranchor {
        gap: 15px;
    }
    .view-details-btn,
    .availability-details {
        padding: 7px 10px;
    }
}