
/*form styles*/

html, body{
    font-family: 'Roboto' !important;
    overflow-x: hidden;
}

#msform {
    position: relative;
    margin-top: 30px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 8px;
    /*box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);*/
    padding: 20px 30px;
    box-sizing: border-box;
   /* width: 80%;
    margin: 0 10%;*/

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 17px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 17px;
    color: rgb(6, 18, 87);
    background-color: rgb(243, 243, 247);
    border: 0;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ef4136;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #2098ce;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous {
    width: 47%;
    background: #cf2e2e6b;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 14px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #aCbEd0;
}

/*headings*/
.fs-title {
    font-size: 40px;
    color: #2C3E50;
    margin-bottom: 25px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    padding: 0;
}
#progressbar li {
    font-size: 17px;
    width: 24%;
    text-align: center;
    display: inline-block;
    position: relative;
    color: #000;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 33px;
    height: 33px;
    line-height: 33px;
    display: block;
    font-size: 16px;
    color: #333;
    background: #b9b9c5;
    border-radius: 25px;
    margin: 0 auto 10px auto;
    color: #fff;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #dedede;
    position: absolute;
    left: -50%;
    top: 16px;
    z-index: -1;
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps blue*/
/*The number of the step and the connector before it = blue*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #EF4136;
    color: white;
}
.left-item h2 {
    text-align: center;
    margin-bottom: 45px;
    font-size: 45px;
    color: #000;
    font-weight: 600;
}
.form-item-field fieldset {
    width: 100%;
}
label {
    font-size: 18px;
    margin-bottom: 13px;
    color: #061257;
}
#msform .action-button {
    background: #CF2E2E;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 12px 5px;
    margin: 10px 5px;
    width: 50%;
    font-size: 20px;
}
.form-item-field {
    width: 90%;
    margin: 0 auto;
}

input[type=date][placeholder]:invalid::before, input[type=month][placeholder]:invalid::before, input[type=week][placeholder]:invalid::before {
    color: #999;
    color: var(--placeholder-color);
    content: attr(placeholder);
    width: 100%;
}
.checkbox-item input[type="checkbox"] {
    width: auto !important;
}
.checkbox-item label {
    padding-left: 0;
}
.three-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.three-item button.flexble {
    text-transform: capitalize;
    padding: 13px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 17px;
    color: rgb(6, 18, 87);
    background-color: rgb(243, 243, 247);
    border: 0;
    border-radius: 50px;
    border: 2px solid #cf2e2e !important;
}
.three-item input {
    border-radius: 50px !important;
    border: 2px solid #cf2e2e !important;
    padding: 12px 25px !important;
}
.input-field {
    margin-bottom: 20px;
}
.four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.day-check-box {
    display: none;
}
.daybox {
    text-align: center;
}
.checkbox-item {
    margin-bottom: 20px;
}
.checkbox-item label {
    margin: 0;
    padding-left: 10px;
}
.daybox {
 /*   text-align: center;
    cursor: pointer;
    padding: 17px 16px;
    border-radius: 8px;
    border-color: rgba(0, 0, 0, 0);
    border-width: 1px;
    border-style: solid;
    outline: rgba(0, 0, 0, 0) solid 2px;
    background-color: rgb(243, 243, 247);
    margin-bottom: 20px;*/
    position: relative;
}
.daybox input[type="checkbox"] {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    /* transform: scale(0); */
    /* user-select: none; */
    height: 100%;
    cursor: pointer;
}
.box-item label.InputWrapper {
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 25px 16px;
    border-radius: 8px;
    border-color: rgba(0, 0, 0, 0);
    border-width: 1px;
    border-style: solid;
    outline: rgba(0, 0, 0, 0) solid 2px;
    background-color: rgb(243, 243, 247);
    margin-bottom: 20px;
}
.daybox input[type="checkbox"]:checked+label {
  background: #CF2E2E !important;
  display: block;
  color: #fff;
}
p.time-text {
    margin: 0;
}
.checkbox-item {
    display: none;
}
.day-check-box {
    display: none;
}
.two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.daybox input[type="radio"] {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    /* transform: scale(0); */
    /* user-select: none; */
    height: 100%;
    cursor: pointer;
}
.daybox input[type="radio"]:checked+label {
  background: #CF2E2E !important;
  display: block;
  color: #fff;
}
.icon-item i {
    font-size: 35px;
}


/*upload css item*/
.upload__box {
    padding: 0;
    margin-bottom: 25px;
}
.upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.upload__img-wrap {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
    width: 80%;
} 
.upload__btn-box {
    width: 20%;
}
.upload__btn {
    font-weight: 600;
    color: #fff;
    text-align: center;
    min-width: 166px;
    padding: 5px;
    transition: all .3s ease;
    cursor: pointer;
    border: 2px solid;
    background-color: #cf2e2e;
    border-color: #cf2e2e;
    border-radius: 10px;
    line-height: 26px;
    font-size: 16px;
    height: 150px;
    display: grid;
    align-items: center;
    width: 150px;
}
    
.upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all .3s ease;
}
    
.upload__btn {
  margin-bottom: 10px;
}
 
  
  /*.upload__img-wrap {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
    }*/
    
    &-box {
      width: 200px;
      padding: 0 10px;
      margin-bottom: 12px;
    }
    
    .upload__img-close {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 10px;
        right: 10px;
        text-align: center;
        line-height: 24px;
        z-index: 1;
        cursor: pointer;
    }

.upload__img-close:after {
    content: 'x';
    font-size: 19px;
    color: white;
}
.upload__btn p {
    margin: 0;
}

.upload__img-box .img-bg {
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.upload__img-box {
    height: auto;
    width: 100%;
}
.upload__btn p {
    font-size: 40px;
}
.price-field input#price {
    padding-left: 52px;
}
.input-field.price-field {
    position: relative;
}
span.icon-item {
    position: absolute;
    bottom: 15px;
    box-sizing: border-box;
    pointer-events: none;
    left: -2px;
    width: 56px;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    font-weight: 700;
}
.price-field span.icon-item {
    margin: 0;
}

/*end*/


/*review page css start*/
 .items{
    width:90%;
    margin:0px auto;
    margin-top: 100px;
  }
  .slick-slide{
    margin:10px;
  }
  .slick-slide img{
    width:100%;
    border: 0px solid #fff;
  }
 .product-item-slider {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 70px;
}
.slider-img  img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}
.slick-prev, .slick-next {
    width: 34px !important;
    height: 34px !important;
    background: #EF4136 !important;
    border-radius: 50px;
    color: #fff !important;
}
.content-item  h2 {
    font-size: 45px;
    color: rgb(6, 18, 87);
    font-weight: 700;
}
.text-item {
    row-gap: 12px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
}
.content-item  p {
    margin: 0;
    font-size: 19px;
    color: rgb(106, 113, 154);
}
.d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-profile-hide .d-flex{
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-direction: column;
}

.update-profile-hide .d-flex a{
    text-decoration: none;
    color:#000;
}

.update-profile-hide .d-flex img{
    margin-top: 48px;
    width: 80px;
}
.text-item path {
    fill: rgb(106, 113, 154) !important;
}
p.price-item {
    color: rgb(6, 18, 87);
    font-weight: 600;
    font-size: 24px;
}
.button-item a {
    display: inline-block;
    background: #EF4136;
    color: #fff;
    padding: 10px 43px;
    font-size: 19px;
    border-radius: 50px;
    text-decoration: unset;
}
.review-detail {
    gap: 25px;
}
.listing-detail p {
    color: rgb(106, 113, 154);
    font-size: 17px;
    font-weight: 600;
}
.review-img img {
    width: 100px;
    border-radius: 100px;
}
a.name {
    color: rgb(6, 18, 87);
    font-size: 24px;
    display: inline-block;
    font-weight: 600;
    text-decoration: unset;
    margin-bottom: 7px;
}
.rating-item {
    margin-bottom: 10px;
}
span.rating-number {
    color: rgb(255, 127, 0);
    font-size: 22px;
    font-weight: 600;
}
span.star {
    color: rgb(255, 127, 0);
    font-size: 22px;
}
span.rating-total {
    color: rgb(106, 113, 154);
    font-size: 18px;
    font-weight: 600;
}
span.complete {
    color: rgb(6, 18, 87) !important;
    font-size: 18px;
    font-weight: 600;
}
.CompletionRate span {
    color: rgb(106, 113, 154);
    font-size: 18px;
}
.listing-detail {
    margin-bottom: 40px;
}
.listing-content {
    padding-bottom: 40px;
}
p.small-text {
    color: rgb(106, 113, 154);
    font-size: 16px;
    font-weight: 600;
}
p.descprtion {
    color: rgb(56, 65, 121);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
.title-item.text-left {
    width: 70%;
}
.right-content.price-item {
    width: 5%;
}
.PackageCard {
    width: 25%;
    text-align: right;
}
.package-box {
    border-radius: 12px;
    background-color: rgb(243, 247, 255);
    margin-bottom: 24px;
    padding: 16px 24px;
}
.title-item  h3 {
    margin-top: 0;
    font-size: 30px;
    font-weight: 600;
    color: rgb(6, 18, 87);
}
.price-item h3 {
    text-align: center;
    font-size: 30px;
    color: #ef4136;
    font-weight: 600;
}
.package-btn a {
    display: inline-block;
    background: #EF4136;
    color: #fff;
    padding: 10px 43px;
    font-size: 19px;
    border-radius: 50px;
    text-decoration: unset;
    margin-bottom: 18px;
}
.PackageCard p {
    color: rgb(106, 113, 154);
    font-size: 19px;
    font-weight: 600;
}
.package-top {
    margin-bottom: 20px;
}
.package-descprtion p {
    color: rgb(56, 65, 121);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
.review-contact {
    padding: 40px 0px;
}
p {
    font-size: 17px;
    color: rgb(56, 65, 121);
}
.review-img-item img {
    width: 70px;
    border-radius: 100px;
}
.d-flex.review-content {
    align-items: start;
}
.review-box {
    padding: 40px 20px;
    border-radius: 10px;
    background: #f3f7ff;
}
a.review-title {
    display: inline-block;
    color: rgb(6, 18, 87);
    font-size: 19px;
    text-decoration: unset;
    font-weight: 600;
    margin-bottom: 8px;
}
a.review-name {
    color: rgb(106, 113, 154);
    font-size: 18px;
    text-decoration: unset;
}
span.days {
    color: rgb(106, 113, 154);
    font-size: 18px;
    text-decoration: unset;
    padding-left: 10px;
}
.mb-4 {
    margin-bottom: 30px;
}
.daybox input[type="checkbox"]:checked+label p {
    color: #fff !important;
}
.daybox input[type="radio"]:checked+label p {
    color: #fff !important;
}
/*end*/


/*task page css start*/
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #EF4136;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #EF4136;
  cursor: pointer;
  border-radius: 50px;
}

/*filter css start*/
.filter-price {
  border: 0;
  padding: 0;
  margin: 0; 
}

.price-title {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-field {
    position: relative;
    width: 100%;
    height: auto;
}

.price-field input[type=range] {
    position: absolute;
}

/* Reset style for input range */

.price-field input[type=range] {
  width: 100%;
  height: 4px; 
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: red;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
  outline: 0;
}

.price-field input[type=range]::-ms-track {
  width: 188px;
  height: 4px; 
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 5px;
}

/* Style toddler input range */

.price-field input[type=range]::-webkit-slider-thumb { 
  /* WebKit/Blink */
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -4px;
    background-color: #red;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

.price-field input[type=range]::-moz-range-thumb { 
  /* Firefox */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin-top: -5px;
  background-color: #000;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type=range]::-ms-thumb  { 
  /* IE */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin-top: -5px;
  background-color: #000;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

/* Style track input range */

.price-field input[type=range]::-webkit-slider-runnable-track { 
  /* WebKit/Blink */
  width: 188px;
  height: 4px;
  cursor: pointer;
  background: red;
  border-radius: 5px;
}

.price-field input[type=range]::-moz-range-track { 
  /* Firefox */
  width: 188px;
  height: 4px;
  cursor: pointer;
  background: red;
  border-radius: 5px;
}

.price-field input[type=range]::-ms-track { 
  /* IE */
  width: 188px;
  height: 4px;
  cursor: pointer;
  background: red;
  border-radius: 5px;
}

/* Style for input value block */

.price-wrap {
    display: flex;
    justify-content: center;
    color: #000;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 7px;
}

.price-wrap-1, 
.price-wrap-2 {
  display: flex;
}

.price-title {
  margin-right: 5px;
  backgrund: #d58e32;
}

.price-wrap_line {
  margin: 0 10px;
}

.price-wrap #one, 
.price-wrap #two {
  width: 30px;
  text-align: right;
  margin: 0;
  padding: 0;
  margin-right: 2px;
  background:  0;
  border: 0;
  outline: 0;
  color: #000;
  font-family: 'Karla', 'Arial', sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-wrap label {
  text-align: right;
}

/* Style for active state input */
    
.price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #000;
  transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #000;
  transition-duration: 0.3s;
}
.price-wrap label {
    margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-item .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 23px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    border-radius: 50px;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50px;
}

.switch input:checked + .slider {
  background-color: #2196F3;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.content_navbar {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 5px 18px;
    box-shadow: unset;
    justify-content: space-between;
}
section.browse-task-section {
    padding: 0px 0px;
    background: transparent;
    padding-bottom: 0;
}
.box-wrapper {
    position: absolute;
    /*display: none;*/
}
.search-form input {
    background-color: #f3f3f7;
    border-radius: 5px;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 17px;
    height: 47px;
    margin: 0;
    min-height: 32px;
    overflow: hidden;
    padding: 6px 32px 8px 15px;
    text-indent: 12px;
    text-overflow: ellipsis;
    transition: width .2s ease-out;
    width: 100%;
    border: 0;
    outline: unset;
    font-weight: 500;
    color: #000;
    border: 1px solid;
}
.search-form button.search-icon {
    background: transparent;
    position: absolute;
    right: 9px;
    top: 8px;
    border: 0;
}
form.search-form {
    position: relative;
}
.PillButton {
    color: rgb(6, 18, 87);
    background-color: rgba(0, 0, 0, 0);
    border-radius: 64px;
    padding: 5px 12px 8px 12px;
    transition: opacity 0.1s ease 0s, background-color 0.1s ease 0s;
    text-transform: none;
    white-space: nowrap;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: unset;
}
.PillButton:hover {
    background: #EF4136;
    color: #fff !important;
}
.PillButton  svg {
    position: relative;
    top: 0;
}
/*.category-filter.box-wrapper {
    display: block;
}*/
.box-wrapper {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid #ccc;
    padding: 20px 30px;
    border-radius: 10px;
    top: 22px;
    z-index: 9999;
    background: #fff;
}
.category-search {
    width: 100%;
    position: relative;
}
.text-btn {
    width: 30%;
    text-align: right;
}
.category-search input {
    background-color: #f3f3f7;
    border-radius: 50px;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 14px;
    height: 41px;
    margin: 0;
    min-height: 32px;
    overflow: hidden;
    padding: 0 0px 0px 46px;
    text-indent: 12px;
    text-overflow: ellipsis;
    transition: width .2s ease-out;
    width: 100%;
    border: 0;
    outline: unset;
}
span.search-icon {
    position: absolute;
    left: 17px;
    font-size: 18px;
    top: 9px;
}
.mb-20 {
    margin-bottom: 20px;
}
.text-btn a {
    background: #EF4136;
    width: 100%;
    display: inline-block;
    padding: 7px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: unset;
}
.check-item label {
    margin-left: 10px;
    position: relative;
    top: -2px;
}
.check-item input[type=checkbox] {
    width: 23px;
    height: 18px;
}
.btn-item a {
    background: #EF4136;
    width: 100%;
    display: inline-block;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
    text-decoration: unset;
}
.button-wrapper {
    margin-top: 35px;
}
button.optiongroup {
    min-height: 50px;
    color: rgb(6, 18, 87);
    background-color: rgb(243, 243, 247);
    border-radius: 8px;
    padding: 0px;
    margin-right: 8px;
    border: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}
.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.filed-item .input-field {
    margin-bottom: 10px;
}
.filed-item input {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgb(6, 18, 87) !important;
    border-radius: 8px;
    font-size: 18px;
    font-weight: initial;
    line-height: 24px;
    letter-spacing: 0.15px;
    box-shadow: none;
    border: 0;
    background: rgb(243, 243, 247);
    padding: 15px 20px !important;
    outline: unset;
}
.distance-field p {
    font-size: 14px;
    font-weight: 600;
}
.distance-wrapper {
    margin-top: 22px;
}
.slidecontainer p {
    text-align: center;
}
.price-item {
    width: 350px;
}
.price-wrapper {
    margin-top: 35px;
}
.switch-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.switch-text {
    width: 90%;
}
.full-screen.overlay {
    position: fixed;
    inset: 0px;
    background-color: rgb(6 18 87 / 38%);
    animation: 0.185s ease-out 0s 1 normal forwards running mask-fade-in;
    z-index: 12;
}
.loc-box  .left-item {
    width: 70%;
}
.loc-box  .right-item {
    width: 30%;
}
.loc-box.d-flex {
    align-items: center;
    padding: 25px 35px;
    position: relative;
    width: 70%;
}
.group-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.list-img img {
    width: 100%;
}
.group-box a.location-item {
    text-decoration: unset;
}
p.title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}
.price-text p {
    font-size: 25px;
    font-weight: 700;
    color: #EF4136;
}
.Block-sec {
    display: flex;
    align-items: center;
    gap: 13px;
}
.Block-sec i {
    color: rgb(155, 160, 188);
    font-size: 18px;
}
.Block-sec p {
    margin: 0;
}
.Block-sec svg {
    width: 20px;
    height: 20px;
}
.Block-sec svg path {
    fill: rgb(155 160 188);
}
.Block-sec:last-child {
    margin: 0;
}
.group-box:hover {
    background: rgb(230, 231, 238);
    background: #faf9fd;
}
p.open-text {
    color: #EF4136;
    font-size: 18px;
    font-weight: 600;
}
.avtar-img img {
    width: 60px;
    height: 60px;
    max-width: 60px;
}
/* .avtar-img {
    position: absolute;
    bottom: 12px;
    right: 18px;
} */
.price-text {
    text-align: right;
}
section.browse-area.all-group {
    background: #f3f3f7;
    padding: 50px 0px;
}
.location-group {
    /* height: 70vh;
    overflow-y: auto; */
    transition: height .3s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.location-group-item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.marker-map iframe {
    width: 100%;
    height: 70vh;
}
/*end*/
/*end*/


/*23-11-2023 css start*/

.category-filter.box-wrapper {
    width: 700px;
    height: 700px;
    overflow: hidden;
    overflow-y: scroll;
}
.dropdown-menu {
    padding: 0;
    border: 0;
}
.location-menu-flyout.box-wrapper {
    width: 400px;
}
.other-item.box-wrapper {
    width: 365px;
}
.filter-box label.InputWrapper {
    padding: 15px;
}
.filter-box p.first-text {
    margin: 0;
}
/*end*/

.reply-box.reply-item {
    width: 93%;
    margin: 0;
    position: relative;
    left: 51px;
}

/*25-01-2024 css start*/
.trustpilot-box  h3 {
    color: #000000;
    font-size: 25px;
    margin-bottom: 15px;
}
.line-item {
    width: 10%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 30px;
    height: 3px;
    background: #ee4135;
}
/*end*/



/*08-02-2024 css start*/
.list-slider .slick-slide {
    margin: 0 !important;
    width: 100% !important;
    background-color: #fff;
}
.list-slider button.slick-prev {
    left: 7px;
    z-index: 99999;
}
.list-slider button.slick-next {
    right: 7px;
}
/* .drop-down-item {
    width: 60%;
} */


/*end*/


/*08-10-2025 css start*/

.search-input.task-menu__flyout-anchor {
    width: 70%;
}
body .list-img  img {
    max-height: 420px;
    height: 100%;
}
section.browse-area.all-group .col-lg-12 .marker-map {
    display: none;
}
section.browse-area.all-group .marker-map {
    display: none;
}

/* end */

/*15-10-2025 css start*/

button.search-icon.site-btn {
    background-color: #222325;
    color: #fff;
}
button.search-icon.site-btn {
    border-radius: 0 4px 4px 0;
    display: block;
    font-size: 14px;
    text-shadow: none;
    right: 0;
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    padding: 8px 16px;
}
.submit-button-icon {
    fill: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.submit-button-icon svg {
    filter: invert(1);
}
.location-group-item .group-box a {
    display: flex;
}
.location-group-item .list-slider {
    margin-bottom: 0 !important;
    width: 30% !important;
}
.location-group-item .slick-dots {
    bottom: 0;
}
.location-group-item  .slick-list.draggable {
    height: 100% !important;
}
.location-group-item  .slick-track {
    height: 100%;
}
.location-group-item .group-box:last-child {
    margin-bottom: 0 !important;
}
.inner-loc-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.Block-sec.open {
    margin-top: 15px;
}
.user-avtar-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
body .list-img  img {
    height: 240px !important;
    object-fit: inherit;
}
body p.title {
    margin-bottom: 0;
}
body .loc-box  .left-item {
    width: 90%;
}
body .loc-box  .right-item {
    width: 16%;
}
.search-form input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }
.search-form input[type="search"]::-webkit-search-decoration,
.search-form input[type="search"]::-webkit-search-results-button,
.search-form input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
.price-text p {
    margin: 0 !important;
}
body section.browse-area.all-group .loc-box.d-flex {
    width: 100%;
}
.user-avtar-main.user-m {
    flex-direction: row-reverse !important;
    justify-content: flex-end;
}

.location-group.location-task .group-box {
    width: 49%;
}
section.browse-area.all-group .inner-loc-main{
    flex-wrap: wrap;
}



@media(max-width: 992px){
.search-input.task-menu__flyout-anchor {
    width: 100% !important;
}
    .container, .container-md, .container-sm {
        max-width: 100% !important;
        padding: 0px 20px !important;
    }
}



@media(max-width: 768px){
.location-group-item .group-box a {
    display: flex;
    flex-direction: column;
}
.location-group-item .list-slider {
    width: 100% !important;
}
.location-group-item .list-slider .slick-track {
    width: 100% !important;
}
body .list-img  img {
    height: auto !important;
}
.loc-box.d-flex {
    width: 100% !important;
}
body .inner-loc-main {
    gap: 15px;
    flex-wrap: wrap;
}
.location-group.location-task .group-box {
    width: 100% !important;
}
body .loc-box.d-flex {
    padding: 20px;
}
}



@media(max-width: 480px){
body .loc-box  .left-item {
    width: 75%;
}
body .loc-box  .right-item {
    width: 25%;
}
}

#Form-custom-style {
    height: 60px;
    background: #f3f3f7;
    border-radius: 30px;
    border: none;
    font-size: large;
}

#Form-custom-style option{
    font-size: large;
}
#Form-custom-style:hover{
     border: 1px solid #ee4135;
}

/* end */