.rating {
    --dir: right;
    --fill: #323232;
    --fillbg: rgba(100, 100, 100, 0.15);
    --heart: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.328l-1.453-1.313q-2.484-2.25-3.609-3.328t-2.508-2.672-1.898-2.883-0.516-2.648q0-2.297 1.57-3.891t3.914-1.594q2.719 0 4.5 2.109 1.781-2.109 4.5-2.109 2.344 0 3.914 1.594t1.57 3.891q0 1.828-1.219 3.797t-2.648 3.422-4.664 4.359z"/></svg>');
    --star: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.25l-6.188 3.75 1.641-7.031-5.438-4.734 7.172-0.609 2.813-6.609 2.813 6.609 7.172 0.609-5.438 4.734 1.641 7.031z"/></svg>');
    --stars: 5;
    --starsize: 2.0rem;
    --symbol: var(--star);
    --value: 1;
    --w: calc(var(--stars) * var(--starsize));
    --x: calc(100% * (var(--value) / var(--stars)));
    block-size: var(--starsize);
    inline-size: var(--w);
    position: relative;
    touch-action: manipulation;
    -webkit-appearance: none;
}

[dir="rtl"] .rating {
    --dir: left;
}

.rating::-moz-range-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
}

.rating::-webkit-slider-runnable-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
    -webkit-mask: repeat left center/var(--starsize) var(--symbol);
}

.rating::-moz-range-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
}

.rating::-webkit-slider-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
    -webkit-appearance: none;
}

.rating,
.rating-label {
    display: block !important;
    font-family: ui-sans-serif, system-ui, sans-serif;
    width: 101px !important;
}

.rating-label {
    margin-block-end: 1rem;
}

/* NO JS */
.rating--nojs::-moz-range-track {
    background: var(--fillbg);
}

.rating--nojs::-moz-range-progress {
    background: var(--fill);
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--star);
}

.rating--nojs::-webkit-slider-runnable-track {
    background: var(--fillbg);
}

.rating--nojs::-webkit-slider-thumb {
    background-color: var(--fill);
    box-shadow: calc(0rem - var(--w)) 0 0 var(--w) var(--fill);
    opacity: 1;
    width: 1px;
}

[dir="rtl"] .rating--nojs::-webkit-slider-thumb {
    box-shadow: var(--w) 0 0 var(--w) var(--fill);
}



.ratingsmall {
    --dir: right;
    --fill: #323232;
    --fillbg: rgba(100, 100, 100, 0.15);
    --heart: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.328l-1.453-1.313q-2.484-2.25-3.609-3.328t-2.508-2.672-1.898-2.883-0.516-2.648q0-2.297 1.57-3.891t3.914-1.594q2.719 0 4.5 2.109 1.781-2.109 4.5-2.109 2.344 0 3.914 1.594t1.57 3.891q0 1.828-1.219 3.797t-2.648 3.422-4.664 4.359z"/></svg>');
    --star: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.25l-6.188 3.75 1.641-7.031-5.438-4.734 7.172-0.609 2.813-6.609 2.813 6.609 7.172 0.609-5.438 4.734 1.641 7.031z"/></svg>');
    --stars: 5;
    --starsize: 1.5rem;
    --symbol: var(--star);
    --value: 1;
    --w: calc(var(--stars) * var(--starsize));
    --x: calc(100% * (var(--value) / var(--stars)));
    block-size: var(--starsize);
    inline-size: var(--w);
    position: relative;
    touch-action: manipulation;
    -webkit-appearance: none;
}

[dir="rtl"] .ratingsmall {
    --dir: left;
}

.ratingsmall::-moz-range-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
}

.ratingsmall::-webkit-slider-runnable-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
    -webkit-mask: repeat left center/var(--starsize) var(--symbol);
}

.ratingsmall::-moz-range-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
}

.ratingsmall::-webkit-slider-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
    -webkit-appearance: none;
}

.ratingsmall,
.ratingsmall-label {
    display: block !important;
    font-family: ui-sans-serif, system-ui, sans-serif;
    width: 74px !important;
}

.ratingsmall-label {
    margin-block-end: 1rem;
}

/* NO JS */
.ratingsmall--nojs::-moz-range-track {
    background: var(--fillbg);
}

.ratingsmall--nojs::-moz-range-progress {
    background: var(--fill);
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--star);
}

.ratingsmall--nojs::-webkit-slider-runnable-track {
    background: var(--fillbg);
}

.ratingsmall--nojs::-webkit-slider-thumb {
    background-color: var(--fill);
    box-shadow: calc(0rem - var(--w)) 0 0 var(--w) var(--fill);
    opacity: 1;
    width: 1px;
}

[dir="rtl"] .ratingsmall--nojs::-webkit-slider-thumb {
    box-shadow: var(--w) 0 0 var(--w) var(--fill);
}



.ratingmedium {
    --dir: right;
    --fill: #323232;
    --fillbg: rgba(100, 100, 100, 0.15);
    --heart: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.328l-1.453-1.313q-2.484-2.25-3.609-3.328t-2.508-2.672-1.898-2.883-0.516-2.648q0-2.297 1.57-3.891t3.914-1.594q2.719 0 4.5 2.109 1.781-2.109 4.5-2.109 2.344 0 3.914 1.594t1.57 3.891q0 1.828-1.219 3.797t-2.648 3.422-4.664 4.359z"/></svg>');
    --star: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.25l-6.188 3.75 1.641-7.031-5.438-4.734 7.172-0.609 2.813-6.609 2.813 6.609 7.172 0.609-5.438 4.734 1.641 7.031z"/></svg>');
    --stars: 5;
    --starsize: 2.0rem;
    --symbol: var(--star);
    --value: 1;
    --w: calc(var(--stars) * var(--starsize));
    --x: calc(100% * (var(--value) / var(--stars)));
    block-size: var(--starsize);
    inline-size: var(--w);
    position: relative;
    touch-action: manipulation;
    -webkit-appearance: none;
}

[dir="rtl"] .ratingmedium {
    --dir: left;
}

.ratingmedium::-moz-range-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
}

.ratingmedium::-webkit-slider-runnable-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
    -webkit-mask: repeat left center/var(--starsize) var(--symbol);
}

.ratingmedium::-moz-range-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
}

.ratingmedium::-webkit-slider-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
    -webkit-appearance: none;
}

.ratingmedium,
.ratingmedium-label {
    display: block !important;
    font-family: ui-sans-serif, system-ui, sans-serif;
    width: 102px !important;
}

.ratingmedium-label {
    margin-block-end: 1rem;
}

/* NO JS */
.ratingmedium--nojs::-moz-range-track {
    background: var(--fillbg);
}

.ratingmedium--nojs::-moz-range-progress {
    background: var(--fill);
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--star);
}

.ratingmedium--nojs::-webkit-slider-runnable-track {
    background: var(--fillbg);
}

.ratingmedium--nojs::-webkit-slider-thumb {
    background-color: var(--fill);
    box-shadow: calc(0rem - var(--w)) 0 0 var(--w) var(--fill);
    opacity: 1;
    width: 1px;
}

[dir="rtl"] .ratingmedium--nojs::-webkit-slider-thumb {
    box-shadow: var(--w) 0 0 var(--w) var(--fill);
}


.skillbar-wrapper {
    margin: 1.5em auto;
    max-width: 960px;
}

.skillbar {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    background: white;
    height: 10px;
    align-content: center;
}

.skillbar-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    font-size: 13px;
    color: black;
    margin: 0;
}

.skillbar-title span {
    display: block;
    background: white;
    padding: 0px 58px 0px 0px;
    height: 10px;
    line-height: 10px;
}

.skillbar-bar {
    height: 2px;
    width: 0%;
    border-radius: 3px;
    transition: 500ms linear;
    transition-property: width, background-color;
}

.skill-bar-percent {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 11px;
    height: 10px;
    line-height: 10px;
    color: rgba(0, 0, 0, 0.4);
    transition: color 500ms ease-out;
}

.complete .skill-bar-percent {
    color: black;
}

.complete.server .skill-bar-percent {
    color: #333;
}

.star5 .skillbar-title {
    background: white;
}

.star5 .skillbar-bar {
    background: #323232;
}


.star4 .skillbar-title {
    background: white;
}

.star4 .skillbar-bar {
    background: #323232;
}

.star3 .skillbar-title {
    background: white;
}

.star3 .skillbar-bar {
    background: #323232;
}

.star2 .skillbar-title {
    background: white;
}

.star2 .skillbar-bar {
    background: #323232;
}

.star1 .skillbar-title {
    background: white;
}

.star1 .skillbar-bar {
    background: #323232;
}

.numberDiv {
    box-shadow: 5px 5px 5px -4px rgba(0, 0, 0, 0.25);
    border: 1px solid transparent;
    color: var(--Primary-Charcoal, #333334);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    height: 125px;
    width: 100px;
    margin: 5px;
    align-content: center;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.align-items-start::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.align-items-start {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.cardsservice-page-imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
    flex-shrink: 0;
    border: 1px solid transparent;
    border-radius: 30px;
    object-fit: cover;
    padding: 0px !important;
}

.pastcardsservice-card {
    max-width: 316px;
    padding: 0 !important;
    box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 24px;
    color: #323232;
    font-family: Lexend;
    cursor: pointer;
}

.pastworkimg {
    border-radius: 8px 8px 0px 0px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
}

.times {
    position: relative;
    font-weight: 600;
}

.heading {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.opening-times {
    width: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 0px 0px 30px;
    box-sizing: border-box;
}

.closed {
    position: relative;
}

.opening-times2 {
    width: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 30px 0px 0px;
    box-sizing: border-box;
}

.titles {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.monday {
    position: relative;
    font-weight: 200;
}

.day-of-the-week {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 5px 0px 0px;
}

.days-of-the-week {
    width: 148px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.lines-child {
    height: 1px;
    background-color: black;
    margin-bottom: 0pc;
}

.lines {
    width: 129px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.day-of-the-week5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 0px 0px 5px;
}

.time-of-day {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
}

.day-and-time1 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    gap: 8px;
    font-size: 24px;
}

.day-and-time {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0px 0px 60px;
    gap: 60px;
    font-size: 28px;
}

.cardsopen-times {
    width: 100%;
    position: relative;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    font-size: 30px;
    color: black;
    font-family: Lexend;
}

.operatingHour {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    align-content: center;
}

.operatingHourDay {
    font-weight: 200;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.servicetitle-text {
    position: relative;
    font-weight: 400;
    display: inline-block;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    font-size: 50%;
}

.servicetitle {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    font-size: 50px;
}

.servicelocation-text {
    position: relative;
    font-weight: 200;
    display: inline-block;
    flex-shrink: 0;
    font-size: 18px;
    color: #323232;
}

.servicelocation {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.div {
    position: relative;
}

.ratingNumber {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.buttonsstars-icon {
    width: 23px;
    position: relative;
    height: 21px;
}

.stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.reviews1 {
    position: relative;
    font-weight: 200;
    font-size: 18px;
}

.reviews {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mainratings {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.ratings {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.servicedescription-text {
    color: #323232;
    font-weight: 300;
    display: inline-block;
    flex-shrink: 0;
    max-height: 253px;
    overflow-y: scroll;
    font-size: 20px;
    width: 100%;

}

.servicedescription {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.nav-iconchat-3 {
    width: 22px;
    position: relative;
    height: 20px;
}

.buttonslong {
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #323232;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #323232;
}

.buttonslong:hover {
    color: #323232;
    text-decoration: none;
}

.info-and-chat {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    box-sizing: border-box;
    text-align: left;
    font-size: 30px;
    color: #323232;
    font-family: Lexend;
    gap: 30px;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
    box-sizing: border-box;
    gap: 0px;
    font-size: 30px;
    color: #323232;
    font-family: Lexend;
    z-index: 1;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: transparent;
}

.serviceTitle-wrapper {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 20px 0px 0px;
    z-index: 0;
}

.hours {
    position: relative;
    font-weight: 200;
}

.servicetime {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 20px 0px 0px;
    z-index: 1;
}

.buttonstiny {
    margin: 0 !important;
    border-radius: 40px;
    background-color: #fff;
    border: 0.3px solid #323232;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    z-index: 3;
    font-size: 20px;
    cursor: pointer;
    color: #323232;
}


.buttonstiny:hover {
    color: #323232;
    text-decoration: none;
}

.lastItemRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px 0px 0px;
    box-sizing: border-box;
    z-index: 2;
    width: 100%;
}

.service-info {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    gap: 15px;
    width: 100%;
}

.service-card-child {
    align-self: stretch;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    max-height: 100%;
    height: 1px;
    background-color: black;
}

.service-card {
    width: 100%;
    margin: 0 !important;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    z-index: 0;
}

.cardsservice-info {
    width: 100%;
    position: relative;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 28px;
    color: #323232;
    font-family: Lexend;
    margin: 30px 0px;
}


.dividerService {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 80px 0px 50px 0px;
    box-sizing: border-box;
    gap: 0px;
    text-align: left;
    font-size: 20px;
    color: #323232;
    font-family: Lexend;
}

.inputsprofile-picture {
    width: 104px;
    position: relative;
    border-radius: 100px;
    background-color: #e3e3e3;
    height: 104px;
    overflow: hidden;
    flex-shrink: 0;
}

.name1 {
    position: relative;
}

.name {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.description1 {
    position: relative;
    font-weight: 200;
}

.descriptionReview {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.name-parent {
    width: 886px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.pic-name-description {
    align-self: stretch;
    height: 164px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px 30px 0px;
    box-sizing: border-box;
    gap: 40px;
}

.buttonsstars-iconReview {
    width: 23px;
    position: relative;
    height: 21px;
}

.starsReview {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.description3 {
    width: 100%;
    position: relative;
    font-weight: 200;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.description2 {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
}

.stars-and-description {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.bottom-lineReview {
    align-self: stretch;
    position: relative;
    border-top: 0.5px solid #323232;
    box-sizing: border-box;
    height: 0.5px;
    opacity: 0.5;
}

.rating-and-description {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    font-size: 22px;
}

.cardsreview-card {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    font-size: 20px;
    color: #323232;
    font-family: Lexend;
}


.ratingPastWork {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

input[type="date"] {
    background: transparent;
    color: white;
    border: none;

    color-scheme: dark;
}

#overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 999;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

#overlay2 {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black background with opacity */
    z-index: 999;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

#calendarModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 3;
    width: 80%;
    display: flex;
    justify-content: center;
}

#editModal,
#addpastWorkModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 40%;
    z-index: 3;
    background-color: white;
    min-height: 52%;
    max-height: 72%;
    border-radius: 10px;
    display: flex;
    padding: 10px;
    flex-direction: column;
}

.closeOverlay {
    font-size: 30px;
    color: white;
    position: absolute;
    right: 3%;
    top: 3%;
}

.calendarDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
}

.add-input-text {
    width: 70%;
    margin: 10px;
    border-radius: 8px;
    border-width: 1px;
    padding: 5px;
    position: relative;
    font-weight: 500;
    color: #323232 !important;
    text-decoration: none;
}

.add-slideshow-container {
    margin-bottom: 15px;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
}

.add-imagesLabel {
    border: 1px black solid;
    width: auto;
    padding: 5px;
    height: 32px;
    border-radius: 10px;
    font-size: small;
    margin-bottom: 0;
    z-index: 5;
    position: relative;
    cursor: pointer;
    color: black !important;
    text-align: center;
}

.add-prev {
    cursor: pointer;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: black;
}

.add-next {
    cursor: pointer;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none;
    background-color: black;
}

.service-add-input-text {
    width: 70%;
    margin: 10px;
    border-radius: 8px;
    border-width: 1px;
    padding: 5px;
    position: relative;
    font-weight: 500;
    color: #323232 !important;
    text-decoration: none;
}

.service-add-slideshow-container {
    margin-bottom: 15px;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 250px;
    width: 100%;
    padding: 0;
}

.service-add-imagesLabel {
    border: 1px black solid;
    width: 110px;
    padding: 5px;
    border-radius: 10px;
}

.service-add-prev {
    cursor: pointer;
    position: absolute;
    top: 43%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: black;
    left: 0;
}

.service-add-next {
    cursor: pointer;
    position: absolute;
    top: 43%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: black;
    right: 0;
}

#chooseServiceDiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 4;
    background-color: white;
    height: 45%;
    border-radius: 10px;
    display: flex;
    padding: 10px;
    flex-direction: column;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
}

#bankingDetailsDiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 4;
    background-color: white;
    height: 45%;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    align-items: center;
    max-width: 400px;
    justify-content: center;
}

#bankingDetailsDiv form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
}

.products {
    display: flex;
    align-items: center;
    margin-top: 0;
    flex-direction: row;
    overflow-x: scroll;
    height: 50px;
    flex-wrap: nowrap;
}



.catDiv {
    margin: 15px 0px;
    display: flex;
    justify-content: center;
}

.cat {
    background: transparent;
    position: relative;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #323232;
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: #323232;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
    height: 40px;
    font-family: Lexend;
}

.cat span {
    margin: 10px;
}

.cat::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
    font-family: Lexend;
}

.cat.catActive {
    color: #fff;
    border: 1px solid #323232;
}

.cat.catActive::before {
    box-shadow: inset 0 0 0 10em #323232;
}


#detailsSection {
    height: 100%;
    overflow: scroll;
    max-height: 86vh;
}

@media screen and (max-width: 770px) {

    #detailsSection {
        max-height: 100%;
    }
}

@media screen and (min-width: 771px) {

    #detailsSection {
        max-height: 86vh;
    }
}

.service-cardGroup {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
}

.serviceImg {
    height: 140px;
    max-width: 140px;
    border-radius: 23px;
    object-fit: cover;
    width: 100%;
}

.pastWorkSlide {
    height: 100%;
}

.pastWorkContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    width: 70%;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.10);
}

#pastworkModal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.pastworkadd-prev {
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: #8E8E8E;
    font-weight: bold;
    font-size: 37px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: transparent;
    text-align: start;
}

.pastworkadd-next {
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: #8E8E8E;
    font-weight: bold;
    font-size: 37px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none;
    background-color: transparent;
    text-align: end;
}

.pastworkadd-prev:hover {
    text-decoration: none;
}

.pastworkadd-next:hover {
    text-decoration: none;
}

.otherImgsDiv {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100px;
    overflow: scroll;
}

.imgsDiv {
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.textDiv {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
}

.textDiv p {
    font-size: 14px;
    letter-spacing: 4px;
}

.otherImg {
    width: 100px;
    height: 100px;
    object-Fit: cover;
    border-Radius: 10px;
    margin: 0px 15px 0px 0px;
}

.imgselected {
    width: 100px;
    border-Radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100px;
    position: absolute;
}

.loginBtn {
    color: red;
    font-size: 15px;
}

#overlay3 {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black background with opacity */
    z-index: 999;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

#reportModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 3;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}