@charset "UTF-8";
/*form start*/
.form-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}
.form-card h4 {
  font-size: 19px;
  text-align: left;
  margin-bottom: 25px;
}
.form-card h2 {
  font-size: 31px;
  font-weight: bold;
  text-align: left;
}

.form-card h2 {
  margin-bottom: 20px;
  color: #333;
}

.form {
  display: flex;
  flex-direction: column;
}

.label-normal {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: left;
}

.no-label {
  font-size: 14px;
  text-align: left;
  display: block;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 38px;
  padding: 12px 22px 6px 6px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  border: 1px solid #ced4da;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat;
}
.custom-select:disabled, .custom-select[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.no-arrows {
  -moz-appearance: textfield;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form label {
  text-align: left;
  margin-bottom: 8px;
  color: #555;
}

.form input {
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px 6px 6px 6px;
  margin-bottom: 4px;
  border: 1px solid #ccc;
  max-height: 38px;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}
.form input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form input:disabled, .form input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form button {
  background-color: #4caf50;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.form button:disabled, .form button[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-row {
  text-align: left;
  position: relative;
  margin-bottom: 25px;
}
.form-row .all-cback-inp-span {
  color: red;
  font-size: 11px;
  margin-bottom: -13px;
  display: none;
  text-align: left;
}
.form-row.error .all-cback-inp-span {
  display: block;
}
.form-row.error input {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.error .file-label {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.error .custom-select {
  border-color: #dc3545;
}

.form-row.error input {
  border-color: red;
}
.form-row.error input:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.file-label {
  margin-bottom: 0;
  border: 1px solid #717d87;
  border-radius: 4px;
  display: flex;
  height: 44px;
  width: 185px;
  align-items: center;
  cursor: pointer;
}
.file-label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px;
  background: url("../images/add-file.svg");
  background-size: contain;
}

.form label.file-label {
  margin-bottom: 0;
}

.form-row label:not(.no-label) {
  position: absolute;
  top: 0;
  left: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: black;
  pointer-events: none;
  transition: 0.5s;
}

/*.form-row input:valid + label:not(.no-label)
*/
.form-row input:focus + label:not(.no-label),
.form-row textarea:focus + label:not(.no-label),
.form-row input:not(:placeholder-shown) + label:not(.no-label),
.form-row textarea:not(:placeholder-shown) + label:not(.no-label),
.form-row.active label:not(.no-label) {
  top: -8px;
  left: 7px;
  color: gray;
  z-index: 1;
  font-size: 9px;
}

input[type=time] {
  background: white;
}

.form-row.timeinp label:not(.no-label) {
  top: -8px;
  left: 7px;
  color: gray;
  font-size: 9px;
}

.form-outro {
  text-align: left;
  margin-bottom: 25px;
}
.form-outro .small {
  font-size: 10px;
  display: block;
  margin-bottom: 10px;
}
.form-outro .small a {
  color: #39b54a;
}
.form-outro a:hover, .form-outro a:focus {
  text-decoration: underline;
}

.d-block {
  font-size: 14px;
  color: #39b54a;
  font-weight: 700;
}
.d-block:hover, .d-block:focus {
  text-decoration: underline;
}

.login-pre {
  margin-bottom: 15px;
}
.login-pre a {
  color: #39b54a;
}
.login-pre a:hover, .login-pre a:focus {
  text-decoration: underline;
}
.login-pre p {
  font-size: 14px;
  text-align: left;
}

.btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-right {
  justify-content: flex-end;
}

/*form end*/
.form .row .p-1-3,
.form .row .p-2-3 {
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  .form .row .p-2 {
    margin: 0;
  }
}
/*radio start*/
.custom-control-label:after, .custom-control-label:before {
  position: absolute;
  top: 0;
  left: 0px;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid #39b54a;
}

.custom-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  vertical-align: top;
  padding-left: 25px;
}
.custom-control-label:hover, .custom-control-label:focus {
  color: #39b54a;
}

.custom-radio .custom-control-label:before {
  border-radius: 50%;
}

.custom-control-label:after {
  background: 50%/50% 50% no-repeat;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 30px;
  padding-left: 0px;
}

.custom-control-input:focus ~ .custom-control-label {
  color: #39b54a;
}

.custom-control-input:checked ~ .custom-control-label:before {
  color: #fff;
  background-color: #39b54a;
  border-radius: 50%;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.legend {
  font-weight: bold;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-control-label:after {
  background: 50%/50% 50% no-repeat;
}

fieldset {
  margin-bottom: 25px;
  text-align: left;
}
fieldset .all-cback-inp-span {
  color: red;
  font-size: 11px;
  margin-bottom: -13px;
  display: none;
  text-align: left;
}
fieldset.error .all-cback-inp-span {
  display: block;
}

legend {
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-control {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0px;
}

.col-radio .custom-control {
  margin-bottom: 15px;
}

/*radio end*/
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox:focus + label:before {
  border-color: #39b54a;
}
.styled-checkbox + label {
  left: unset !important;
  top: unset !important;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 35px;
  font-size: 13px;
  line-height: 15px;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  margin-left: -35px;
  margin-top: -4px;
  background: white;
  border: 1px solid #ccc;
}
.styled-checkbox:checked + label:before {
  background: #39b54a;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

.textarea {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px 6px 6px 6px;
  margin-bottom: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}
.textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.error .textarea {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px top 10px;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: transparent;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: transparent;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: transparent;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: transparent;
}

input::placeholder {
  color: transparent;
}

textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: transparent;
}

textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: transparent;
}

textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: transparent;
}

textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: transparent;
}

textarea::placeholder {
  color: transparent;
}

@media screen and (max-width: 576px) {
  .form .row .p-2,
  .form .row .p-3 {
    margin: 0 0 0px 0;
  }
}
/*vehicle choose start*/
.veh-ttl {
  display: flex;
  margin: 20px 0;
}
.veh-ttl span {
  text-align: center;
  padding: 0 5px;
  font-size: 17px;
  font-weight: bold;
  width: 150px;
  max-width: 200px;
}
.veh-ttl span span {
  font-weight: 300;
  padding: 0 !important;
  display: block;
  margin: 0 !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 0.8rem;
}
.veh-ttl span:nth-child(1) {
  width: 105px;
  text-align: right;
  margin-right: 25px;
  padding-left: 0;
}

#vehicle-row > div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
#vehicle-row > div .helper-col {
  display: flex;
  width: 300px;
  align-items: flex-start;
  justify-content: center;
}
#vehicle-row > div .helper-col .custom-control-label {
  color: white;
  user-select: none;
}
#vehicle-row > div .helper-col .custom-control-label {
  padding-left: 20px;
}
#vehicle-row > div .helper-col .custom-control {
  width: 50%;
  margin-left: 10px;
  padding: 0 20px;
  margin-top: 40px;
  text-align: center;
}
#vehicle-row > div .veh-row {
  display: flex;
}
#vehicle-row > div .custom-control {
  margin: 0 25px 0px 0;
}
#vehicle-row > div .veh-row > .custom-control .custom-control-label {
  width: 265px;
}
#vehicle-row > div .custom-control-label.veh-controll:after, #vehicle-row > div .custom-control-label.veh-controll:before {
  top: unset;
  bottom: 50%;
  left: unset;
  right: 55px;
  transform: translateY(-50%);
}
#vehicle-row > div .custom-control-label.veh-controll {
  color: transparent;
  display: flex;
  padding: 0px;
  width: 210px;
  height: 135px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  user-select: none;
}
#vehicle-row > div .custom-control-label.veh-controll span {
  background: white;
  position: absolute;
  top: calc(100% - 45px);
  color: black;
  left: 0;
  padding: 0px;
  font-size: 14px;
  width: 135px;
  text-align: center;
}
#vehicle-row > div #vehicle26 + .custom-control-label.veh-controll {
  background: url("../images/26ft.jpg");
}
#vehicle-row > div #vehicle24 + .custom-control-label.veh-controll {
  background: url("../images/24ft.jpg");
}
#vehicle-row > div #vehicle2000 + .custom-control-label.veh-controll {
  background: url("../images/20ft-b.jpg");
}
#vehicle-row > div #vehicle20 + .custom-control-label.veh-controll {
  background: url("../images/20ft.jpg");
}
#vehicle-row > div #vehicle16 + .custom-control-label.veh-controll {
  background: url("../images/16ft.jpg");
}
#vehicle-row > div #vehicle12 + .custom-control-label.veh-controll {
  background: url("../images/12ft.jpg");
}
#vehicle-row > div #vehicle8 + .custom-control-label.veh-controll {
  background: url("../images/8ft.jpg");
}
#vehicle-row > div #vehicle4 + .custom-control-label.veh-controll {
  background: url("../images/4ft.jpg");
}
#vehicle-row > div #vehiclepickup + .custom-control-label.veh-controll {
  background: url("../images/4ft.jpg");
}
#vehicle-row > div #vehicleminibus + .custom-control-label.veh-controll {
  background: url("../images/Minibus.jpg");
}
#vehicle-row > div #vehicleminivan + .custom-control-label.veh-controll {
  background: url("../images/Minivan.jpg");
}
#vehicle-row > div #vehiclecar + .custom-control-label.veh-controll {
  background: url("../images/Car.jpg");
}
#vehicle-row > div #vehicleany + .custom-control-label.veh-controll {
  background: url("../images/Car.jpg");
  margin-bottom: 25px;
}
#vehicle-row > div #vehicleminivan_wheelchair_accessble + .custom-control-label.veh-controll {
  background: url("../images/MinivanWheelchairAccessible.jpg");
}

#vehicle-row.short_view > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
#vehicle-row.short_view > div .helper-col {
  display: none;
}
#vehicle-row.short_view > div .veh-row {
  margin-bottom: 20px;
  display: flex;
}
#vehicle-row.short_view > div .custom-control {
  margin: 0 25px 25px 0;
}
#vehicle-row.short_view > div .custom-control-label.veh-controll:after, #vehicle-row.short_view > div .custom-control-label.veh-controll:before {
  top: unset;
  bottom: 0px;
  left: unset;
  right: 50%;
  transform: translateX(50%);
}
#vehicle-row.short_view > div .custom-control-label.veh-controll {
  color: transparent;
  display: flex;
  padding: 0px;
  width: 150px;
  height: 155px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  user-select: none;
}
#vehicle-row.short_view > div .custom-control-label.veh-controll span {
  background: white;
  height: 36px;
  position: absolute;
  top: calc(100% - 65px);
  color: black;
  left: 0;
  padding: 0px;
  font-size: 14px;
  width: 100%;
  text-align: center;
}
#vehicle-row.short_view > div .custom-control-input:checked ~ .custom-control-label:before,
#vehicle-row.short_view > div .custom-control-input:checked ~ .custom-control-label:after {
  filter: saturate(0.2);
}
#vehicle-row.short_view > div .custom-control-input:checked ~ .custom-control-label {
  filter: saturate(4);
}

@media screen and (max-width: 630px) {
  #vehicle-row > div .helper-col .custom-control {
    margin-top: 24px;
    display: block;
  }
  #vehicle-row > div .veh-row > .custom-control .custom-control-label {
    width: 180px;
    height: 100px;
  }
  #vehicle-row > div .veh-row > .custom-control .custom-control-label span {
    top: calc(100% - 35px);
    line-height: 11px;
    width: 100px;
    font-size: 11px;
  }
  #vehicle-row > div .custom-control-label.veh-controll:after, #vehicle-row > div .custom-control-label.veh-controll:before {
    right: 25px;
  }
  #vehicle-row > div .custom-control {
    margin: 0 10px 0px 0;
  }
  #vehicle-row > div .helper-col {
    width: 110px;
  }
  .veh-ttl span {
    font-size: 14px;
    width: 62px;
    padding: 0 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .veh-ttl span:nth-child(1) {
    width: 90px;
    margin-right: 28px;
    justify-content: center;
  }
  #vehicle-row.short_view > div .veh-row > .custom-control .custom-control-label {
    width: 170px;
    height: 160px;
  }
  #vehicle-row.short_view > div .veh-row > .custom-control .custom-control-label span {
    top: calc(100% - 53px);
    line-height: 11px;
    width: 100%;
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  #vehicle-row.short_view > div .veh-row > .custom-control .custom-control-label {
    width: 130px;
    height: 140px;
  }
}
#vehicle-row + .form {
  display: none;
}

/*vehicle choose end*/
header {
  margin-bottom: 30px;
}

.form-row-storage {
  margin-bottom: 5px;
}

.message_page {
  max-width: 700px;
  margin: auto;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preview-services {
  position: relative;
}

.print {
  background: unset;
  color: black;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  transition: 0s;
}
.print img {
  filter: invert(1);
  width: 25px;
  margin-right: 6px;
}
.print:hover, .print:focus {
  transition: 0s;
  background: transparent;
  color: #39b54a;
}
.print:hover img, .print:focus img {
  filter: invert(60%) sepia(12%) saturate(2619%) hue-rotate(77deg) brightness(96%) contrast(84%);
}

@media screen and (max-width: 992px) {
  .print {
    display: none;
  }
}
.photo-preview {
  display: flex;
  flex-wrap: wrap;
}
.photo-preview .upload__img-box {
  width: 20%;
  margin-bottom: 20px;
  margin-right: 10px;
}
.photo-preview .upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}
.photo-preview .img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover !important;
  position: relative;
  padding-bottom: 100%;
}
.photo-preview .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;
}
.photo-preview img {
  display: block;
}

#date-range {
  display: flex;
  align-items: center;
}
#date-range span {
  padding: 0 10px;
}
#date-range .form-row {
  margin-bottom: 0;
  width: calc(50% - 10px);
}

.select-date h4 svg {
  color: #39b54a;
}
.select-date .contains-image {
  margin-bottom: 35px;
}

.select-places {
  margin-top: 80px;
}
.select-places .row {
  position: relative;
}
.select-places .row:after {
  position: absolute;
  content: "";
  top: -30px;
  left: 50%;
  height: 25px;
  background: url("../images/moving_arrow.svg") center no-repeat;
  background-size: contain;
  z-index: 1;
  width: 42%;
  transform: translateX(-50%);
}

.address-to-list {
  margin-bottom: 30px;
}
.address-to-list.hide {
  display: none;
}
.address-to-list .item-addr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.address-to-list .item-addr .clear-address button {
  border: none;
  background: transparent;
}
.address-to-list .item-addr .clear-address button img {
  filter: brightness(0);
  width: 15px;
}

.add_more_destination button {
  color: #333;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 16px;
}
.add_more_destination button:hover, .add_more_destination button:focus {
  text-decoration: underline;
}
.add_more_destination button:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  margin-bottom: -6px;
  background: url("../images/plus-ico.svg") no-repeat;
  background-size: contain;
}

.card-moving {
  position: relative;
  background: #ebf0f7;
  padding: 20px 40px;
}
.card-moving.min-450 {
  min-height: 450px;
}
.card-moving:not(:nth-child(1)) {
  margin-top: 60px;
}
.card-moving:before {
  content: "";
  z-index: 2;
  position: absolute;
  top: -65px;
  left: 50%;
  width: 99px;
  height: 99px;
  transform: translateX(-50%);
}
.card-moving h4 {
  padding-top: 55px;
  margin-bottom: 30px;
}

.card-moving-from:before {
  background: url("../images/moving_from.svg") center;
  background-size: contain;
}

.card-moving-to:not(.nd):before {
  background: url("../images/moving_to.svg") center;
  background-size: contain;
}

@media screen and (max-width: 576px) {
  .card-moving {
    padding: 20px 15px;
  }
}
.items-category-wrapper {
  border: 2px solid #e9eef2;
  padding: 30px;
  margin-bottom: 30px;
}
.items-category-wrapper:nth-child(1) {
  position: relative;
  z-index: 1;
  background: white;
}
.items-category-wrapper.highlight {
  position: relative;
  border-color: #dd5c60;
}
.items-category-wrapper.highlight .mb-4 path {
  fill: #dd5c60;
}
.items-category-wrapper .label-highlight {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-color: #e31e24;
  background: #e31e24;
  color: white;
  font-size: 15px;
  padding: 6px 16px;
  border-radius: 10px;
  text-transform: uppercase;
}
.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-fill {
  flex: 1 1 auto;
}

.btns-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 30px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append, .input-group-prepend {
  display: flex;
}

input.plus-minus-inp::-webkit-outer-spin-button,
input.plus-minus-inp::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.plus-minus-inp {
  display: block;
  width: 100%;
  text-align: center;
  height: 31px;
  padding: 5px;
  -moz-appearance: textfield;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.plus-minus-inp[readonly] {
  background-color: #e9ecef;
}

.items-to-move.hide {
  display: none !important;
}

.items_continue {
  display: none;
}

.move-item-row {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-services .items-list-cont-out-2 {
  display: flex;
  flex-wrap: wrap;
  column-count: unset;
}
.preview-services .items-list-cont-out-2 .items-category-wrapper {
  width: calc(33.33% - 14px);
}

.items-list-cont-out-2 {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 16px;
}
.items-list-cont-out-2 .items-category-wrapper {
  break-inside: avoid;
}

.items-list-cont-out {
  display: flex;
  margin-left: -30px;
}

.move-itm-col {
  box-sizing: border-box;
  background-clip: padding-box;
  width: 33.3333%;
  border-width: 0px 0px 0px 30px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
}

.mb-4 {
  margin-bottom: 15px;
}

.input-group button {
  border-radius: 13px;
  border: none;
  background: #6c757d;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-group button svg {
  width: 10px;
  color: white;
}
.input-group button:disabled {
  background: #6c757d;
  opacity: 0.65;
  cursor: default;
}
.input-group button:disabled:hover, .input-group button:disabled:focus {
  background-color: #6c757d;
  border-color: #6c757d;
}
.input-group button:hover, .input-group button:focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.input-group .input-group-prepend button {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.input-group .input-group-append button {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.non-edit .input-group-append, .non-edit .input-group-prepend {
  display: none;
}

@media screen and (max-width: 992px) {
  .move-itm-col {
    width: 50%;
  }
  .items-list-cont-out {
    flex-wrap: wrap;
  }
  .preview-services .items-list-cont-out-2 {
    column-count: unset;
  }
  .preview-services .items-list-cont-out-2 .items-category-wrapper {
    width: calc(50% - 14px);
  }
  .items-list-cont-out-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 620px) {
  .move-itm-col {
    width: 100%;
  }
  .items-list-cont-out-2 {
    grid-template-columns: 1fr;
  }
  .preview-services .items-list-cont-out-2 {
    column-count: unset;
  }
  .preview-services .items-list-cont-out-2 .items-category-wrapper {
    break-inside: avoid;
    width: 100%;
  }
}
#delivery-order-form {
  padding-bottom: 50px;
}

.delivery-order-step2.hide {
  display: none !important;
}

.delivery-order-step1.hide {
  display: none !important;
}

.popular-label {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 34px;
  font-size: 10px;
  background: #2a8136;
  color: white;
  border-radius: 9px;
  padding: 2px 7px;
}
.popular-label.v20 {
  left: 18px;
}

@media screen and (max-width: 630px) {
  .popular-label {
    font-size: 8px;
    top: 10px;
    left: 0px;
  }
  .popular-label.v20 {
    left: 0px;
  }
}
.truck-chose.fixed .veh-ttl {
  background: white;
  position: fixed;
  top: 58px;
  padding: 25px 0 10px;
  z-index: 2;
}
.truck-chose.fixed .mb-20 {
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  .visible .items_continue {
    display: block;
  }
  .items_continue {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 40px;
  }
  .items_continue button {
    border: none;
    padding: 21px 0;
    background: #39b54a;
    color: white;
    text-align: center;
    display: block;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .truck-chose.fixed .veh-ttl {
    top: 29px;
    padding: 15px 0 8px;
  }
}
.truck-chose {
  margin-bottom: 0 !important;
}

.truck-chose.hide {
  display: none !important;
}

.building-waste .p-3:hover {
  text-decoration: underline;
}

.team-list {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}
.team-list .description_block {
  border-radius: 5px;
  position: absolute;
  top: -15px;
  right: 11px;
  background: white;
}
.team-list .description_block img {
  width: 20px;
}
.team-list .person {
  display: flex;
  align-items: center;
}
.team-list .person span {
  display: block;
  margin-left: 10px;
  color: #b9b9b9;
}
.team-list .person img {
  margin: 0 1px;
  height: 30px;
  width: auto;
}
.team-list .team-text {
  display: block;
  font-weight: bold;
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
}
.team-list button {
  position: relative;
  background: transparent;
  border: 1px solid #999999;
  padding: 15px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
}
.team-list button.active {
  border-color: #39b54a;
  background: #39b54a;
  color: white;
  font-weight: bold;
}
.team-list button.active .team-text {
  color: white;
}
.team-list button.active .person img {
  filter: brightness(0) invert(1);
}
.team-list button.active .person span {
  color: white;
}

@media screen and (max-width: 620px) {
  .team-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-list button {
    width: 180px;
    margin-bottom: 15px;
    height: 80px;
  }
  .team-list .team-text {
    font-size: 15px;
  }
}
/* preview start*/
.preview-container-in .edit-btn {
  display: none;
}

.preview-container-in .edit {
  display: none;
}

@media screen and (min-width: 700px) {
  .preview-container-quote .row .p-2:first-child {
    padding-right: 20px;
  }
  .preview-container-quote .row .p-2:nth-child(2) {
    padding-left: 20px;
  }
}
#map {
  min-height: 250px;
  height: var(--popH);
  max-height: calc(90vh - 175px);
}

.google-map {
  max-height: calc(90vh - 175px);
  width: 100%;
  margin-right: 0px;
}
.google-map iframe {
  width: 100%;
  height: 100px;
}

.prev-address {
  display: flex;
  margin-bottom: 40px;
}
.prev-address .destination-container {
  width: calc(50% - 10px);
  padding: 20px 30px;
  height: 100%;
  background-color: #ebf0f7;
}
.prev-address .addr-text {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.prev-address .addr-text > .addr-text-item {
  height: 100%;
  width: calc(50% - 10px);
  margin-right: 20px;
  padding: 20px 30px;
  background-color: #ebf0f7;
}
.prev-address .addr-text srtong {
  text-transform: capitalize;
}
.prev-address .addr-text h4 {
  max-width: calc(100% - 100px);
  margin-bottom: 20px;
}
.prev-address .addr-text p {
  margin-top: 10px;
}

.edit-btn {
  position: absolute;
  top: -2px;
  right: -15px;
}
.edit-btn button {
  padding: 8px 10px;
  display: flex;
  color: #39b54a;
  font-size: 16px;
  border: none;
  background: #ebf0f7;
  align-items: center;
}
.edit-btn button img {
  width: 20px;
  margin-right: 8px;
}
.edit-btn button:hover, .edit-btn button:focus {
  text-decoration: underline;
}

.destination-container .flex {
  position: relative;
}

.addr-text-item {
  margin-bottom: 30px;
  position: relative;
  display: flex;
}

.addr-text-item-to {
  flex-direction: column;
}
.addr-text-item-to .addr-text-item-info {
  padding-left: 80px;
}

.addr-text-item-img {
  padding-right: 20px;
}
.addr-text-item-img img {
  width: 58px;
}

@media screen and (max-width: 870px) {
  .prev-address .addr-text {
    flex-direction: column;
  }
  .google-map {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .prev-address .addr-text > .addr-text-item {
    height: auto;
    width: 100%;
  }
  .prev-address .destination-container {
    width: 100%;
    height: auto;
  }
  .prev-address {
    flex-direction: column;
  }
  .prev-address .addr-text {
    width: 100%;
  }
  .edit-btn button {
    font-size: 17px;
  }
  .edit-btn button img {
    width: 13px;
  }
}
@media screen and (max-width: 480px) {
  .edit-btn {
    top: 0;
  }
  .edit-btn button {
    font-size: 14px;
  }
  .addr-text-item {
    flex-direction: column;
  }
  .addr-text-item-img {
    margin-bottom: 10px;
  }
  .addr-text-item-to .addr-text-item-info {
    padding-left: 30px;
  }
  #moving_from_preview {
    padding-left: 30px;
  }
  .addr-text-item .addr-text-item-img + .addr-text-item-info h4 {
    margin-bottom: 35px;
    position: relative;
  }
  .addr-text-item .addr-text-item-img + .addr-text-item-info h4:before {
    content: "";
    display: inline-block;
    margin-bottom: -25px;
    width: 78px;
    height: 58px;
    background: url("../images/moving_from.svg") no-repeat;
    background-size: contain;
  }
  .addr-text-item .addr-text-item-img img {
    display: none;
    width: 35px;
  }
}
/* preview end*/
.prev-btn {
  border: none;
  color: black;
  margin-bottom: -96px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 10px;
}

.prev-btn-nopos {
  margin-bottom: 0;
}

.waste-service-info {
  padding-left: 80px;
}

.action-row {
  position: absolute;
  right: 10px;
  top: 10px;
}
.action-row .btn {
  font-size: 20px;
  padding: 9px 34px;
}

.preview-page.expert .print {
  display: none;
}

.page-title {
  display: flex;
  margin-bottom: 10px;
  position: relative;
}
.page-title #priceType-preview {
  font-size: 14px;
  margin-left: 5px;
  margin-top: -25px;
  color: #3198f6;
  font-weight: normal;
}
.page-title #priceType-preview img {
  margin-right: 5px;
}

@media screen and (max-width: 576px) {
  .preview-services > .custom-padding {
    padding-top: 0;
  }
  .action-row {
    top: -10px;
  }
  .action-row .btn {
    font-size: 17px;
    padding: 9px 34px;
  }
}
#show-map-popup {
  display: inline-flex;
  align-items: center;
}
#show-map-popup img {
  width: 30px;
  margin-right: 14px;
}

@media print {
  .layout {
    background: white !important;
  }
  .addr-text-item-to .addr-text-item-info {
    padding-left: 0;
  }
  .preview-page {
    background: white;
  }
  .action-row {
    display: none;
  }
  footer {
    display: none;
  }
  .edit-btn button {
    display: none;
  }
  .edit {
    display: none;
  }
  .items-category-wrapper .mb-4 {
    display: none;
  }
  .addr-text-item-img {
    display: none;
  }
  .card-tips .card-t-content {
    min-height: unset;
  }
  .btns-row {
    display: none;
  }
  #print {
    display: none;
  }
  header {
    display: none;
  }
}
/*preview page start*/
@media screen and (max-width: 576px) {
  .layout.loaded {
    background: white !important;
  }
  .other-service-block-container .flex {
    flex-direction: column;
  }
}
@media screen and (min-width: 576px) {
  .preview-page {
    max-width: 1250px;
    margin: 0 auto 40px auto;
    background-color: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.33);
    border-radius: 15px;
    padding: 30px;
  }
}
.details-order p {
  margin-bottom: 8px;
}

/*preview page end*/
/*moving start*/
.choose-pricing .pr_we_include {
  display: flex;
  align-items: center;
}
.choose-pricing .pr_we_include span.pricing-prem-open-popup {
  cursor: pointer;
  margin-top: 6px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
}
.choose-pricing .pr_we_include span.pricing-prem-open-popup:hover, .choose-pricing .pr_we_include span.pricing-prem-open-popup:focus {
  text-decoration: underline;
}
.choose-pricing .pr_we_include span.pricing-prem-open-popup:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  background: url("../images/question.svg") center no-repeat;
  background-size: 15px;
  width: 16px;
  height: 16px;
}
.choose-pricing .pr_we_include span.pricing-economy-open-popup {
  opacity: 1;
  cursor: pointer;
  width: 176px;
  margin-right: 35px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
}
.choose-pricing .pr_we_include span.pricing-economy-open-popup:hover, .choose-pricing .pr_we_include span.pricing-economy-open-popup:focus {
  text-decoration: underline;
}
.choose-pricing .pr_we_include span.pricing-economy-open-popup:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  background: url("../images/question.svg") center no-repeat;
  background-size: 15px;
  width: 16px;
  height: 16px;
}

.pricing-chose-cont {
  display: flex;
}
.pricing-chose-cont button {
  position: relative;
  background: transparent;
  border: 1px solid #999999;
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
}
.pricing-chose-cont button:hover, .pricing-chose-cont button:focus {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.pricing-chose-cont button span {
  font-size: 19px;
}
.pricing-chose-cont button span.pricing-c-ttl {
  position: absolute;
  font-size: 11px;
  font-weight: bold;
  left: 5px;
  top: 5px;
}
.pricing-chose-cont button img {
  object-fit: contain;
  margin-right: 10px;
  width: 56px;
  height: 45px;
}
.pricing-chose-cont button:nth-child(1).active img {
  filter: brightness(0) invert(1);
}
.pricing-chose-cont button.active {
  border-color: #39b54a;
  background: #39b54a;
  color: white;
  font-weight: bold;
}
.pricing-chose-cont button:disabled {
  border-color: #ebebeb;
  background: #ebebeb;
  color: #c3c3c3;
  cursor: default;
}
.pricing-chose-cont button:disabled:hover, .pricing-chose-cont button:disabled:focus {
  box-shadow: unset !important;
}
.pricing-chose-cont button:disabled img {
  opacity: 0.6;
}
.pricing-chose-cont.error button {
  border-color: #e31e24;
}

.pricing-chose-cont button span span {
  display: block;
  font-size: 14px;
  width: 65px;
  text-align: left;
  line-height: 13px;
}

@media screen and (max-width: 576px) {
  .choose-pricing .pr_we_include span.pricing-economy-open-popup {
    width: 132px;
    margin-top: 3px;
  }
  .choose-pricing .pr_we_include span.pricing-prem-open-popup {
    margin-top: 3px;
  }
  .pricing-chose-cont button {
    height: 80px;
  }
  .pricing-chose-cont button span {
    font-size: 16px;
  }
  .pricing-chose-cont button img {
    width: 26px;
    height: 26px;
  }
}
/*moving end*/
/*finalize popup start*/
#finalize-order {
  background: rgb(232, 228, 216);
  max-height: unset;
  max-width: unset;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
}
#finalize-order .popup_title2 {
  padding-top: 15px;
  border-bottom: none;
  text-align: center;
}
#finalize-order .card-tips {
  border: none;
  background: white;
  margin: 0 auto 25px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.33);
  border-radius: 15px;
}
#finalize-order .form .non-label input {
  padding: 11px 6px 11px 6px;
}
#finalize-order .popup_content2 {
  background: rgb(232, 228, 216);
}

#finalize-order .popup_bottom2 > div {
  padding: 5px 0;
  display: flex;
  justify-content: center;
}

#finalize-order.default_popup2 .popup_content2 {
  max-height: calc(var(--vh, 1vh) * 100 - 135px);
  height: auto;
}

.fin_submission .card-t-title {
  text-align: center;
}

.fin_customer_name {
  margin-top: 10px;
}
.fin_customer_name .card-t-title {
  text-align: center;
}
.fin_customer_name .form-row {
  width: 80%;
}

@media screen and (max-width: 576px) {
  #finalize-order.default_popup2 {
    max-height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    border-radius: 0;
  }
  #finalize-order.default_popup2 .popup_content2 {
    max-height: calc(var(--vh, 1vh) * 100 - 165px);
    height: calc(var(--vh, 1vh) * 100 - 165px);
  }
  #finalize-order.default_popup2 {
    max-height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    border-radius: 0;
  }
}
/*finalize popup end*/
.specify-delivery {
  position: relative;
}

.inp-error-text {
  display: none;
  position: absolute;
  bottom: -13px;
  font-size: 12px;
  color: #e31e24;
}

.error .inp-error-text {
  display: block;
}

/*preview admin start */
/*orders start*/
.row-i {
  margin-bottom: 5px;
}

.from-to {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}
.from-to p {
  margin-bottom: 0;
}
.from-to p:first-child {
  margin-right: 10px;
}

.orders-list {
  margin-bottom: 30px;
  border: 1px solid #f2f2f2;
}

.mobile_ttl {
  display: none;
}

.order-row-container {
  background: #f2f2f2;
}
.order-row-container .order-row > div p {
  text-transform: capitalize;
}

.order-row-total {
  display: flex;
  align-items: center;
  padding: 5px;
}
.order-row-total > div {
  margin-right: 25px;
}

.mobile {
  display: none;
}

.order-row {
  display: flex;
  align-items: center;
}
.order-row > div {
  padding: 8px 5px;
}
.order-row > div p {
  font-size: 14px;
}
.order-row > div:nth-child(1) {
  min-width: 70px;
  width: 11%;
}
.order-row > div:nth-child(2) {
  width: 16%;
}
.order-row > div:nth-child(3) {
  width: 13%;
  min-width: 80px;
}
.order-row > div:nth-child(4) {
  min-width: 80px;
  width: 11%;
}
.order-row > div:nth-child(5) {
  width: 12%;
}
.order-row > div:nth-child(6) {
  min-width: 80px;
  width: 16%;
}
.order-row > div:nth-child(7) {
  width: 12%;
}
.order-row > div:nth-child(8) {
  width: 10%;
}
.order-row > div:nth-child(9) {
  width: 10%;
}

.order-row-title p {
  font-weight: bold;
}

.order-row {
  border-bottom: 1px solid #e0e0e0;
}
.order-row:last-child {
  border-bottom: none;
}
.order-row button {
  border: none;
  background: transparent;
  color: #39b54a;
}
.order-row button:hover, .order-row button:focus {
  text-decoration: underline;
}
.order-row button:disabled {
  cursor: default;
  color: #999999;
}
.order-row button:disabled:hover, .order-row button:disabled:focus {
  text-decoration: none;
}

.bids-not-found {
  margin-bottom: 34px;
  background: #f2f2f2;
  padding: 20px 30px;
  border: 1px solid #f2f2f2;
}
.bids-not-found span {
  font-weight: bold;
}

.no-bids {
  padding: 10px 25px;
}

.bids-list-container {
  overflow-x: auto;
  margin-bottom: 20px;
}

.acceptBidBtn {
  color: #39b54a;
}

.payment_addition_info {
  min-height: 175px;
  margin-bottom: 35px;
}

@media screen and (max-width: 1180px) {
  .bids-block {
    width: 100%;
  }
}
@media screen and (max-width: 860px) {
  .orders-list {
    min-width: 940px;
  }
}
.show-mobile {
  display: none !important;
}

@media screen and (max-width: 576px) {
  .show-mobile {
    display: block !important;
  }
  .hide-mob {
    display: none !important;
  }
  .container .my-requests-page .container-small.custom-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .order-row-container {
    border: 1px solid #e0e0e0;
    background: white;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column-reverse;
  }
  .orders-list {
    border: none;
  }
  .order-row-total {
    background: white;
  }
  .mobile_ttl {
    font-weight: bold;
    margin-right: 5px;
    display: block;
  }
  .order-row-title {
    display: none;
  }
  .order-row {
    background: #f2f2f2;
    flex-wrap: wrap;
  }
  .orders-list {
    min-width: unset;
  }
  .order-row > div {
    width: 50% !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .order-row > div p {
    white-space: nowrap;
  }
  .order-row-total > div {
    width: 50%;
  }
  .order-row > div.total-mobile {
    width: 100% !important;
    padding: 0;
  }
  .order-row > div.total-mobile .order-row-total {
    background: white;
  }
  .order-row + .order-row-total {
    display: none;
  }
  .order-row > div:nth-child(9) {
    width: 100% !important;
  }
  .order-row > div:nth-child(9) button {
    background: #39b54a;
    margin: auto;
    color: white;
    padding: 10px 40px;
  }
  .order-row > div:nth-child(9) button:disabled {
    background: #cfcfcf;
    color: #8d8b8b;
  }
  .order-row-total p span {
    white-space: nowrap;
    display: block;
  }
}
@media screen and (max-width: 390px) {
  .order-row > div {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*orders end*/
.exp_data {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.exp_data .read_reviews {
  font-size: 15px;
  color: #597a35;
  margin-left: 7px;
  text-decoration: underline;
}
.exp_data span {
  text-transform: uppercase;
  color: #39b54a;
  font-weight: 500;
  font-size: 21px;
  display: block;
  margin-right: 10px;
}

/*preview admin end */
.error .select2-container--default .select2-selection--single {
  border-color: red;
}

/*auth start*/
.popup_login_navs.serv {
  padding: 0;
  display: flex;
  background: white;
  margin-bottom: 30px;
}
.popup_login_navs.serv a {
  text-align: center;
}

.last-step-register-page {
  display: flex;
  justify-content: center;
}
.last-step-register-page .login-block {
  flex-direction: column;
}
.last-step-register-page h3 {
  text-align: center;
}
.last-step-register-page .auth-bl .btn {
  display: block;
  margin: auto;
}
.last-step-register-page .auth-bl .login-block .main_login {
  border: none;
  width: 100%;
}
.last-step-register-page .auth-bl .login-block .other_login {
  width: 100%;
  margin-top: 80px;
}
.last-step-register-page .auth-bl-page {
  width: 100%;
  max-width: 600px;
  display: none;
}
.last-step-register-page .auth-bl-page.active {
  display: block;
}
.last-step-register-page .auth-container {
  display: none;
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
}
.last-step-register-page .auth-container .btn-row {
  justify-content: center;
}
.last-step-register-page .auth-container.active {
  display: block;
}

@media screen and (max-width: 480px) {
  .last-step-register-page .auth-container {
    padding: 0;
  }
  .last-step-register-page .auth-bl .login-block .other_login {
    margin-top: 25px;
  }
  .last-step-register-page .auth-bl .login-block .other_login .other-login-in {
    padding: 0;
  }
}
/*auth end*/
/*time picker start*/
.styled-checkbox#timeNow + label:before {
  margin-top: 0;
}

.styled-checkbox#timeNow:checked + label:after {
  top: 9px;
}

:root {
  --main-color: #1a535c;
  --secondary-color: #4ecdc4;
  --white-color: #f7fff7;
  --main-accent-color: #ff6b6b;
  --secondary-accent-color: #ffe66d;
  --dark-color: #2D232E;
}

.time {
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px 6px 6px 6px;
  margin-bottom: 4px;
  border: 1px solid #ccc;
  max-height: 38px;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}
.time.readonly {
  background-color: #e9ecef;
  opacity: 1;
}

.error .time {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.time .selected {
  text-align: left;
  font-size: 15px;
  color: black;
}

.time .time-btn {
  transition: all ease-out 0.3s;
  cursor: pointer;
}

.time .time-btn:hover {
  color: #00c100;
  text-shadow: 2px 2px 5px #000000;
}

.time .time-btn.active {
  color: #1ed558;
}

#time-picker {
  padding: 10px;
  width: 100%;
  position: absolute;
  background: #dee7d5;
  color: black;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all ease-out 0.3s;
  top: 75%;
  z-index: 12;
  pointer-events: none;
  min-width: 310px;
}

#time-picker.active {
  opacity: 1;
  top: 102%;
  pointer-events: all;
}

span.chose_time_text {
  padding-left: 14px;
  padding-bottom: 6px;
  display: block;
}

#time-picker.active .item {
  cursor: pointer;
  transition: all ease-out 0.3s;
  transition-duration: 0.3s;
  opacity: 0.5;
  display: block;
  transform-origin: center;
}

#time-picker.active .item:hover {
  text-shadow: 2px 2px 5px black;
  opacity: 1;
  transform: scale(1.2, 1.2);
}

#time-picker.active .item.active {
  opacity: 1;
  color: var(--secondary-accent-color);
}

.pb-2 {
  display: flex;
}

.pb-4 {
  display: flex;
}
.pb-4 .col-time {
  margin: 7px 15px 7px 15px;
  width: calc(25% - 30px);
}

.pb-6 {
  display: flex;
}
.pb-6 .col-time {
  margin: 7px 15px 7px 15px;
  width: calc(16.6% - 30px);
}

/*time picker end*/
#vehicle-row .vehicle-row-any .custom-control {
  border-right: 1px solid #c7c7c7;
  margin-right: 60px;
  padding-right: 25px;
}

@media screen and (max-width: 480px) {
  #vehicle-row .vehicle-row-any .custom-control {
    border-right: unset;
    border-bottom: 1px solid #c7c7c7;
  }
  #vehicle-row.short_view > div {
    flex-direction: column;
  }
}

/* ─── react-day-picker overrides ─── */
.td-datepicker-wrap button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}
.td-datepicker-wrap a {
  color: inherit;
}
.td-datepicker-wrap .rdp-day_selected,
.td-datepicker-wrap .rdp-day_selected:hover {
  background-color: #39b54a;
  color: #fff;
}
.td-datepicker-wrap .rdp-day_range_middle {
  background-color: #d4f0d8;
  color: #333;
}