.chef-profile-header {
    padding: 33px;
    background: #F4D1B6;
    border-radius: 4px;
}

.chef-profile-header .container,
.chef-profile-body .container {
    max-width: 1100px;
    margin: auto;
}

.chef-profile-back-link {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #3A3A3A;
    padding-left: 25px;
    position: relative;
}

.chef-profile-back-link:before {
    content: '';
    background-image: url('../img/icon-arrow-left.png');
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}

.chef-profile-header-inner {
    margin-top: 40px;
    display: flex;
    flex-flow: row;
}

.chef-profile-image-wrap {
    width: 148px;
    height: 148px;
    overflow: hidden;
    border-radius: 50%;
    border: solid 5px #ffffff;
}

.chef-profile-details-wrap {
    width: calc(100% - 148px);
    padding-left: 24px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #555555;
}

.chef-profile-details-wrap .cdl-name {
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    color: #3A3A3A;
    margin-bottom: 13px;
}

.chef-profile-details-wrap .cdl-meta-separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: #CBBCB1;
}

.chef-profile-details-wrap .cdl-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.chef-profile-details-wrap .cdl-rating span,
.chef-profile-details-wrap .cdl-experience span {
    font-size: 13px;
    color: rgba(85, 85, 85, 80%);
}
.chef-profile-details-wrap .cdl-rating span {
    font-size: 20px;
}
.chef-profile-details-wrap .cdl-rating span a {
    color: rgba(62, 62, 62, 80%);
}
.chef-profile-details-wrap .cdl-rating span a:hover {
    text-decoration: underline;
}

.chef-profile-details-wrap .cdl-experiences {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    max-width: 700px;
}

.chef-profile-details-wrap .cdl-experience {
    background: #FFFFFF;
    padding: 4px 15px;
    border-radius: 15px;
    white-space: nowrap;
}

.chef-profile-details-wrap .cdl-location img {
    margin-right: 8px;
}

.chef-profile-details-wrap .cdl-rating img {
    display: inline-block;
    vertical-align: baseline;
}

.chef-profile-body {
    margin: 30px;
}

.chef-profile-body section {
    margin-bottom: 15px;
    max-width: 768px;
}

.chef-profile-body section.chef-profile-overview {
    background: #F9F9F9;
    border: 1px solid #EBEBEB;
    border-radius: 4px;
    padding: 32px;
}

.chef-profile-section-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: #3A3A3A;
    margin-bottom: 15px;
}
.comments-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: #3A3A3A;
}

.chef-profile-section-subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #3A3A3A;
    margin-bottom: 10px;
}

.chef-profile-section-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #3A3A3A;
}

.chef-profile-overview-items {
    padding: 10px 0 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
}

.chef-profile-overview-items li {
    width: 40%;
    font-size: 15px;
    line-height: 22px;
    color: #3A3A3A;
    margin-bottom: 15px;
}
.chef-profile-overview-items img {
    width: 20px;
    height: auto;
    margin-right: 4px;
}
.chef-profile-overview-items li:last-child {
    margin-bottom: 0;
}

.chef-profile-specialties .list-label {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    margin-right: 10px;
}

.chef-profile-specialties span.list-item {
    font-size: 15px;
    background: #FFF5EC;
    padding: 4px 16px;
    margin: 0 6px 10px 0;
    display: inline-block;
    border-radius: 16px;
    color: #F45C35;
}

.chef-profile-section-text .cps-read-more,
.chef-profile-section-text .cps-read-less {
    color: #F15941;
    text-decoration: underline;
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
}

.chef-profile-section-text-inner {
    display: none;
}

.chef-profile-section-text-inner.visible {
    display: block;
}

.chef-profile-specialties.hidden {
    display: none;
}

.chef-profile-body .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 0;
}

.chef-profile-body .tooltip .tooltiptext {
    width: 290px;
    height: 64px;
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: left;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    left: -48px;
    font-size: 15px;
    z-index: 1;
    line-height: 23px;
    padding: 10px 20px 20px 20px;
    bottom: 35px;
 }

 .chef-profile-body .tooltip:hover .tooltiptext {
    visibility: visible;
}

.chef-profile-body .tooltip .tooltiptext:before{
    content:'';
    display:block;
    width: 0;
    height: 0;
    position: absolute;
    left: 45%;
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid black;
}

body .chef-profile-body .availability button#show_availability{
    background: none;
    color: #F45C35;
    padding: 0;
}
body .chef-profile-body .book-me-section form select{
    width: calc(100% - 205px);
    margin-right: 5px;
    float: left;
    background-image:none;
    outline:none;
    border-color: #DDD;
    padding: 13px;
}
body .chef-profile-body .book-me-section form{
    width:100%;
}
body .chef-profile-body .book-me-section .book-me-section-wrap.needtofix form{
    max-width: 700px;
    margin: auto;
}
body .chef-profile-body .book-me-section .book-me-section-wrap{
    /* animation: silde_to_top 2s; */
}
@-webkit-keyframes silde_to_top {
    from {bottom: 100px;}
    to {bottom: 0;}
}
body .chef-profile-body .book-me-section .book-me-section-wrap.needtofix{
    position: fixed;
    width: 100%;
    padding: 20px;
    padding-bottom: 2px;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background: white;
    border-top: 1px solid #ebebeb;
}
body .chef-profile-body .book-me-section .book-me{
    border-radius: 5px;
    font-size: 18px;
    padding-top: 10px !important;
    padding-right: 40px !important;
    padding-bottom: 9px !important;
    padding-left: 40px !important;
    margin-bottom: 15px;
    cursor: pointer;
    width: 200px;
}

@media (max-width: 768px) {
    .chef-profile-page {
        margin-left: -20px;
        margin-right: -20px;
    }

    .chef-profile-header {
        border-radius: 0;
    }

    .chef-profile-header-inner {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .chef-profile-details-wrap {
        padding-left: 0;
        width: 100%;
    }

    .chef-profile-details-wrap .cdl-name {
        text-align: center;
        margin-top: 20px;
    }

    .chef-profile-details-wrap .cdl-meta,
    .chef-profile-details-wrap .cdl-experiences {
        justify-content: center;
    }

    .chef-profile-body {
        margin: 30px 15px;
    }

    .chef-profile-body section.chef-profile-overview {
        padding: 20px;
    }

    .chef-profile-overview-items {
        flex-flow: column;
    }

    .chef-profile-overview-items li {
        width: 100%;
    }
}

@media (max-width: 544px) {
    body .chef-profile-body .book-me-section-wrap .book-me{
        padding-top: 8px !important;
        padding-bottom: 7px !important;
        width: 100%;
    }
    body .chef-profile-body .book-me-section-wrap form select{
        min-height: 50px;
        float: none;
        margin-bottom: 5px;
        width: 100%;
    }
    .chef-profile-page {
        margin-left: -0.54em;
        margin-right: -0.54em;
    }

    .chef-profile-details-wrap .cdl-experiences {
        max-width: 260px;
        margin: auto;
    }
}

/*availability calendar*/
.availability .heading {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.availability .legend {
    display: flex;
    list-style: none;
    margin-left: 0;
    
}
.availability .legend .status:not(:first-child) {
    margin-left: 20px;
}
.availability .legend .status:before {
    content: "";
    display: inline-block;
    border-radius: 4px;
    background: #EFEFEF;
    border: 1px solid #EFEFEF;
    width: 16px;
    height: 18px;
    transform: translateY(3px);
    margin-right: 5px;
}
.availability .legend .status.available:before {
    border-radius: 4px;
    border: 1px solid #EBEBEB;
    background: #FFF;
}
.availability .ec-day.ec-today {
    background-color: transparent;
}

.availability #bookly-tbs .ec .ec-event:before,
.availability #bookly-tbs .ec .ec-event:hover:before {
    background-color: #efefef;
    z-index: 3;
}
.availability #bookly-tbs .ec .ec-event {
    background-color: #efefef !important;
}
.availability #bookly-tbs .ec .ec-events {
    margin-right: 0;
}

.availability .the_calendar {
    padding-top: 15px;
}

.hide_temporarily {
  position: absolute;
/*  width: 1px;*/
  height: 1px;
  padding: 0;
  margin: -1px; 
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  left: -3000px;
}
.availability .preloader {
    padding: 25px;
    font-size: 22px;
}


.availability-message {
    display: flex;
    border: solid 1px #FFF5EC;
    background: #FFF5EC;
    border-radius: 15px;
    padding-left: 19px;
}

.availability-message > span:first-child {
    width: 28px;
    display: block;
}

.availability-message > span:last-child {
    width: calc(100% - 25px);
}